api-arreya-types 1.0.29 → 1.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -499,10 +499,11 @@ export declare const UpdatePresentationRequestBody: z.ZodObject<{
|
|
|
499
499
|
duration?: number | null | undefined;
|
|
500
500
|
animation?: string | null | undefined;
|
|
501
501
|
}>, "many">>;
|
|
502
|
-
deletedPageIds: z.
|
|
502
|
+
deletedPageIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
503
503
|
allProjects: z.ZodOptional<z.ZodBoolean>;
|
|
504
504
|
projectIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
|
+
deletedPageIds: string[];
|
|
506
507
|
name?: string | undefined;
|
|
507
508
|
projectIds?: string[] | undefined;
|
|
508
509
|
width?: number | undefined;
|
|
@@ -521,7 +522,6 @@ export declare const UpdatePresentationRequestBody: z.ZodObject<{
|
|
|
521
522
|
animation?: string | null | undefined;
|
|
522
523
|
}[] | undefined;
|
|
523
524
|
previewUrl?: string | null | undefined;
|
|
524
|
-
deletedPageIds?: string[] | undefined;
|
|
525
525
|
}, {
|
|
526
526
|
name?: string | undefined;
|
|
527
527
|
projectIds?: string[] | undefined;
|
|
@@ -96,7 +96,7 @@ exports.UpdatePresentationRequestBody = zod_1.z.object({
|
|
|
96
96
|
previewUrl: zod_1.z.string().nullable().optional(),
|
|
97
97
|
settings: zod_1.z.string().nullable().optional(), // should parse to json
|
|
98
98
|
pages: zod_1.z.array(page_type_1.UpdatePage).optional(),
|
|
99
|
-
deletedPageIds: zod_1.z.array(zod_1.z.string()).default([])
|
|
99
|
+
deletedPageIds: zod_1.z.array(zod_1.z.string()).optional().default([]),
|
|
100
100
|
allProjects: zod_1.z.boolean().optional(),
|
|
101
101
|
projectIds: zod_1.z.array(zod_1.z.string()).optional(),
|
|
102
102
|
});
|