mirror of
https://github.com/langgenius/dify.git
synced 2026-05-11 06:37:13 +08:00
19 lines
352 B
TypeScript
19 lines
352 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* EmailPayload
|
|
*/
|
|
export const zEmailPayload = z.object({
|
|
email: z.string(),
|
|
language: z.string().nullish(),
|
|
})
|
|
|
|
export const zPostResetPasswordBody = zEmailPayload
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zPostResetPasswordResponse = z.record(z.string(), z.unknown())
|