api-arreya-types 1.0.50 → 1.0.52
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.
- package/dist/page.type.d.ts +3 -3
- package/dist/page.type.js +1 -1
- package/dist/presentation.type.d.ts +5 -5
- package/package.json +1 -1
package/dist/page.type.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const Page: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
|
-
name: z.
|
|
4
|
+
name: z.ZodString;
|
|
5
5
|
presentationId: z.ZodString;
|
|
6
6
|
layout: z.ZodString;
|
|
7
7
|
duration: z.ZodNumber;
|
|
@@ -14,7 +14,7 @@ export declare const Page: z.ZodObject<{
|
|
|
14
14
|
updatedAt: z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
id: string;
|
|
17
|
-
name: string
|
|
17
|
+
name: string;
|
|
18
18
|
createdAt: Date;
|
|
19
19
|
updatedAt: Date;
|
|
20
20
|
preview: string;
|
|
@@ -27,7 +27,7 @@ export declare const Page: z.ZodObject<{
|
|
|
27
27
|
template: boolean;
|
|
28
28
|
}, {
|
|
29
29
|
id: string;
|
|
30
|
-
name: string
|
|
30
|
+
name: string;
|
|
31
31
|
createdAt: string | Date;
|
|
32
32
|
updatedAt: string | Date;
|
|
33
33
|
preview: string;
|
package/dist/page.type.js
CHANGED
|
@@ -5,7 +5,7 @@ var zod_1 = require("zod");
|
|
|
5
5
|
var zod_utils_1 = require("./zod-utils");
|
|
6
6
|
exports.Page = zod_1.z.object({
|
|
7
7
|
id: zod_1.z.string(),
|
|
8
|
-
name: zod_1.z.string()
|
|
8
|
+
name: zod_1.z.string(),
|
|
9
9
|
presentationId: zod_1.z.string(),
|
|
10
10
|
layout: zod_1.z.string(),
|
|
11
11
|
// backgroundColor: z.string(),
|
|
@@ -164,7 +164,7 @@ export declare const PresentationExtended: z.ZodObject<z.objectUtil.extendShape<
|
|
|
164
164
|
}, {
|
|
165
165
|
pages: z.ZodArray<z.ZodObject<{
|
|
166
166
|
id: z.ZodString;
|
|
167
|
-
name: z.
|
|
167
|
+
name: z.ZodString;
|
|
168
168
|
presentationId: z.ZodString;
|
|
169
169
|
layout: z.ZodString;
|
|
170
170
|
duration: z.ZodNumber;
|
|
@@ -177,7 +177,7 @@ export declare const PresentationExtended: z.ZodObject<z.objectUtil.extendShape<
|
|
|
177
177
|
updatedAt: z.ZodUnion<[z.ZodDate, z.ZodEffects<z.ZodString, Date, string>]>;
|
|
178
178
|
}, "strip", z.ZodTypeAny, {
|
|
179
179
|
id: string;
|
|
180
|
-
name: string
|
|
180
|
+
name: string;
|
|
181
181
|
createdAt: Date;
|
|
182
182
|
updatedAt: Date;
|
|
183
183
|
preview: string;
|
|
@@ -190,7 +190,7 @@ export declare const PresentationExtended: z.ZodObject<z.objectUtil.extendShape<
|
|
|
190
190
|
template: boolean;
|
|
191
191
|
}, {
|
|
192
192
|
id: string;
|
|
193
|
-
name: string
|
|
193
|
+
name: string;
|
|
194
194
|
createdAt: string | Date;
|
|
195
195
|
updatedAt: string | Date;
|
|
196
196
|
preview: string;
|
|
@@ -242,7 +242,7 @@ export declare const PresentationExtended: z.ZodObject<z.objectUtil.extendShape<
|
|
|
242
242
|
}[];
|
|
243
243
|
pages: {
|
|
244
244
|
id: string;
|
|
245
|
-
name: string
|
|
245
|
+
name: string;
|
|
246
246
|
createdAt: Date;
|
|
247
247
|
updatedAt: Date;
|
|
248
248
|
preview: string;
|
|
@@ -275,7 +275,7 @@ export declare const PresentationExtended: z.ZodObject<z.objectUtil.extendShape<
|
|
|
275
275
|
}[];
|
|
276
276
|
pages: {
|
|
277
277
|
id: string;
|
|
278
|
-
name: string
|
|
278
|
+
name: string;
|
|
279
279
|
createdAt: string | Date;
|
|
280
280
|
updatedAt: string | Date;
|
|
281
281
|
preview: string;
|