We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3958dd7 commit 0b6a277Copy full SHA for 0b6a277
apps/sim/app/api/tools/pipedrive/get-files/route.ts
@@ -33,7 +33,7 @@ interface PipedriveApiResponse {
33
34
const PipedriveGetFilesSchema = z.object({
35
accessToken: z.string().min(1, 'Access token is required'),
36
- sort: z.string().optional().nullable(),
+ sort: z.enum(['id', 'update_time']).optional().nullable(),
37
limit: z.string().optional().nullable(),
38
start: z.string().optional().nullable(),
39
downloadFiles: z.boolean().optional().default(false),
0 commit comments