mirror of
https://github.com/langgenius/dify.git
synced 2026-05-11 06:37:13 +08:00
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
export const zGetAllWorkspacesQuery = z.object({
|
|
limit: z.int().gte(1).lte(100).optional().default(20),
|
|
page: z.int().gte(1).lte(99999).optional().default(1),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetAllWorkspacesResponse = z.record(z.string(), z.unknown())
|