waha-shared 1.0.264 → 1.0.266
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/assets/fonts/fonts.css +1 -1
- package/dist/data/languageAssets/languageAssets.json +11 -1
- package/dist/data/languages/languages.json +3 -0
- package/dist/data/mediaDurations/mediaDurations.json +11 -1
- package/dist/data/releaseNotes/releaseNotes.json +137 -2
- package/dist/data/translationsApp/index.d.ts +16 -1
- package/dist/data/translationsApp/translationsApp.json +2951 -62
- package/dist/data/translationsApp/translationsApp.schema.json +17 -2
- package/dist/data/translationsApp/translationsApp.zod.d.ts +347 -1
- package/dist/data/translationsApp/translationsApp.zod.js +22 -8
- package/dist/data/translationsSet/translationsSet.schema.json +1 -1
- package/dist/data/translationsSet/translationsSet.zod.js +1 -1
- package/dist/functions/scripturePassages.d.ts +24 -0
- package/dist/functions/scripturePassages.js +29 -4
- package/dist/types/analytics.d.ts +7 -1
- package/dist/types/microLessons.d.ts +12 -12
- package/dist/types/microLessons.js +48 -18
- package/dist/types/users.d.ts +34 -41
- package/dist/types/users.js +3 -19
- package/dist/types/webContent.js +2 -0
- package/package.json +1 -1
|
@@ -7,15 +7,19 @@ exports.MicroLessonLanguagesResponseSchema = exports.MicroLessonSubmissionSchema
|
|
|
7
7
|
const v4_1 = __importDefault(require("zod/v4"));
|
|
8
8
|
const users_1 = require("./users");
|
|
9
9
|
const webContent_1 = require("./webContent");
|
|
10
|
-
exports.MicroLessonRadioButtonSchema = v4_1.default
|
|
10
|
+
exports.MicroLessonRadioButtonSchema = v4_1.default
|
|
11
|
+
.object({
|
|
11
12
|
heading: v4_1.default.string().optional(),
|
|
12
13
|
body: v4_1.default.string().optional(),
|
|
13
|
-
})
|
|
14
|
-
|
|
14
|
+
})
|
|
15
|
+
.describe('A single radio button option for a micro lesson page. Heading will show in bold and body will show in regular, gray text.');
|
|
16
|
+
exports.MicroLessonCtaButtonSchema = v4_1.default
|
|
17
|
+
.object({
|
|
15
18
|
show: v4_1.default.boolean(),
|
|
16
19
|
label: v4_1.default.string(),
|
|
17
20
|
href: v4_1.default.string(),
|
|
18
|
-
})
|
|
21
|
+
})
|
|
22
|
+
.describe('A call-to-action button that will appear at the bottom of a micro lesson page.');
|
|
19
23
|
exports.MicroLessonSchema = v4_1.default.object({
|
|
20
24
|
title: v4_1.default.string(),
|
|
21
25
|
subtitle: v4_1.default.string().optional(),
|
|
@@ -23,44 +27,70 @@ exports.MicroLessonSchema = v4_1.default.object({
|
|
|
23
27
|
isDraft: webContent_1.IsDraftSchema,
|
|
24
28
|
seekerFriendly: webContent_1.SeekerFriendlySchema,
|
|
25
29
|
platform: webContent_1.PlatformSchema,
|
|
26
|
-
image: v4_1.default
|
|
30
|
+
image: v4_1.default
|
|
31
|
+
.string()
|
|
32
|
+
.describe("Cover image for the micro lesson. Will display on the micro lesson's card."),
|
|
27
33
|
category: webContent_1.CategorySchema,
|
|
28
34
|
campaign: v4_1.default
|
|
29
35
|
.string()
|
|
30
36
|
.optional()
|
|
31
37
|
.describe('Optional campaign identifier for tracking purposes.'),
|
|
32
|
-
pages: v4_1.default
|
|
38
|
+
pages: v4_1.default
|
|
39
|
+
.array(v4_1.default
|
|
33
40
|
.object({
|
|
34
|
-
heading: v4_1.default
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
41
|
+
heading: v4_1.default
|
|
42
|
+
.string()
|
|
43
|
+
.describe('The heading of the page. Will appear in large, bold text.'),
|
|
44
|
+
body: v4_1.default
|
|
45
|
+
.string()
|
|
46
|
+
.optional()
|
|
47
|
+
.describe('The body text of the page. Will appear below the heading in regular, gray text.'),
|
|
48
|
+
icon: v4_1.default
|
|
49
|
+
.string()
|
|
50
|
+
.optional()
|
|
51
|
+
.describe('An svg icon to display on the page. This will appear fairly small, left-aligned above the heading.'),
|
|
52
|
+
image: v4_1.default
|
|
53
|
+
.string()
|
|
54
|
+
.optional()
|
|
55
|
+
.describe('The image to display on the page. This will appear full width and below the heading.'),
|
|
38
56
|
audio: webContent_1.AudioSchema,
|
|
39
57
|
video: webContent_1.VideoSchema,
|
|
40
58
|
textInput: v4_1.default
|
|
41
59
|
.object({
|
|
42
|
-
show: v4_1.default
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
60
|
+
show: v4_1.default
|
|
61
|
+
.boolean()
|
|
62
|
+
.describe('Whether or not the page should show a text input field or not.'),
|
|
63
|
+
placeholder: v4_1.default
|
|
64
|
+
.string()
|
|
65
|
+
.optional()
|
|
66
|
+
.describe('The placeholder text that will appear in the text input field before the user starts typing.'),
|
|
67
|
+
showCopyButton: v4_1.default
|
|
68
|
+
.boolean()
|
|
69
|
+
.optional()
|
|
70
|
+
.describe('Whether or not there should be a copy/share button below the text input field. Button will say "Share" on the mobile app version of the micro lesson and will open the share sheet. Button will say "Copy to Clipboard" on the web version and will copy the text to the user\'s clipboard.'),
|
|
71
|
+
prefilledText: v4_1.default
|
|
72
|
+
.string()
|
|
73
|
+
.optional()
|
|
74
|
+
.describe('The prefilled text that will auto-populate the text input field of the page. Useful if you want to prefill a share message that the user can edit and send.'),
|
|
46
75
|
})
|
|
76
|
+
.describe('Options for the text input field of the page.')
|
|
47
77
|
.optional(),
|
|
48
78
|
ctaButton: exports.MicroLessonCtaButtonSchema.optional(),
|
|
49
79
|
radioButtons: v4_1.default.array(exports.MicroLessonRadioButtonSchema).optional(),
|
|
50
80
|
platform: webContent_1.PlatformSchema.optional(),
|
|
51
81
|
notification: v4_1.default
|
|
52
82
|
.object({
|
|
53
|
-
title: v4_1.default.string()
|
|
54
|
-
body: v4_1.default.string()
|
|
83
|
+
title: v4_1.default.string(),
|
|
84
|
+
body: v4_1.default.string(),
|
|
55
85
|
delayInHours: v4_1.default
|
|
56
86
|
.number()
|
|
57
|
-
.optional()
|
|
58
87
|
.describe('The delay in hours before the notification is sent.'),
|
|
59
88
|
})
|
|
60
89
|
.optional()
|
|
61
90
|
.describe('Optional notification to send after the lesson is completed.'),
|
|
62
91
|
})
|
|
63
|
-
.describe('
|
|
92
|
+
.describe('A single page of the micro lesson.'))
|
|
93
|
+
.describe('The pages that make up the micro lesson. The last page is the completion page and will always have a button redirecting the user back.'),
|
|
64
94
|
});
|
|
65
95
|
exports.ResponseMicroLessonSchema = v4_1.default.object({
|
|
66
96
|
id: v4_1.default.string(),
|
package/dist/types/users.d.ts
CHANGED
|
@@ -94,32 +94,12 @@ export declare const CompletionEventSchema: z.ZodObject<{
|
|
|
94
94
|
manual: z.ZodOptional<z.ZodBoolean>;
|
|
95
95
|
}, z.core.$strip>;
|
|
96
96
|
export type CompletionEvent = z.infer<typeof CompletionEventSchema>;
|
|
97
|
-
declare const WorksheetAnswerSchema: z.ZodObject<{
|
|
98
|
-
question: z.ZodString;
|
|
99
|
-
answer: z.ZodString;
|
|
100
|
-
}, z.core.$strip>;
|
|
101
|
-
export type WorksheetAnswer = z.infer<typeof WorksheetAnswerSchema>;
|
|
102
|
-
declare const WorksheetCompletionEventSchema: z.ZodObject<{
|
|
103
|
-
startTime: z.ZodNumber;
|
|
104
|
-
completionTime: z.ZodOptional<z.ZodNumber>;
|
|
105
|
-
worksheetId: z.ZodString;
|
|
106
|
-
answers: z.ZodArray<z.ZodObject<{
|
|
107
|
-
question: z.ZodString;
|
|
108
|
-
answer: z.ZodString;
|
|
109
|
-
}, z.core.$strip>>;
|
|
110
|
-
country: z.ZodOptional<z.ZodString>;
|
|
111
|
-
region: z.ZodOptional<z.ZodString>;
|
|
112
|
-
city: z.ZodOptional<z.ZodString>;
|
|
113
|
-
didApply: z.ZodOptional<z.ZodBoolean>;
|
|
114
|
-
notificationText: z.ZodOptional<z.ZodString>;
|
|
115
|
-
feedback: z.ZodOptional<z.ZodString>;
|
|
116
|
-
}, z.core.$strip>;
|
|
117
|
-
export type WorksheetCompletionEvent = z.infer<typeof WorksheetCompletionEventSchema>;
|
|
118
97
|
export declare const WahaShareContentSchema: z.ZodEnum<{
|
|
119
98
|
lesson: "lesson";
|
|
120
99
|
note: "note";
|
|
121
100
|
setLink: "setLink";
|
|
122
101
|
lessonLink: "lessonLink";
|
|
102
|
+
notification: "notification";
|
|
123
103
|
app: "app";
|
|
124
104
|
passcode: "passcode";
|
|
125
105
|
lessonAudio: "lessonAudio";
|
|
@@ -129,7 +109,6 @@ export declare const WahaShareContentSchema: z.ZodEnum<{
|
|
|
129
109
|
meetingInvite: "meetingInvite";
|
|
130
110
|
articleLink: "articleLink";
|
|
131
111
|
videoLink: "videoLink";
|
|
132
|
-
notification: "notification";
|
|
133
112
|
meetingSchedule: "meetingSchedule";
|
|
134
113
|
scriptureText: "scriptureText";
|
|
135
114
|
mt: "mt";
|
|
@@ -147,6 +126,7 @@ export declare const ShareLogEventSchema: z.ZodObject<{
|
|
|
147
126
|
note: "note";
|
|
148
127
|
setLink: "setLink";
|
|
149
128
|
lessonLink: "lessonLink";
|
|
129
|
+
notification: "notification";
|
|
150
130
|
app: "app";
|
|
151
131
|
passcode: "passcode";
|
|
152
132
|
lessonAudio: "lessonAudio";
|
|
@@ -156,7 +136,6 @@ export declare const ShareLogEventSchema: z.ZodObject<{
|
|
|
156
136
|
meetingInvite: "meetingInvite";
|
|
157
137
|
articleLink: "articleLink";
|
|
158
138
|
videoLink: "videoLink";
|
|
159
|
-
notification: "notification";
|
|
160
139
|
meetingSchedule: "meetingSchedule";
|
|
161
140
|
scriptureText: "scriptureText";
|
|
162
141
|
mt: "mt";
|
|
@@ -168,6 +147,7 @@ export declare const ShareLogEventSchema: z.ZodObject<{
|
|
|
168
147
|
}>;
|
|
169
148
|
lessonId: z.ZodOptional<z.ZodString>;
|
|
170
149
|
articleSlug: z.ZodOptional<z.ZodString>;
|
|
150
|
+
microLessonSlug: z.ZodOptional<z.ZodString>;
|
|
171
151
|
}, z.core.$strip>;
|
|
172
152
|
export type ShareLogEvent = z.infer<typeof ShareLogEventSchema>;
|
|
173
153
|
export declare const BibleSessionSchema: z.ZodObject<{
|
|
@@ -269,6 +249,7 @@ export declare const WahaUserSchema: z.ZodObject<{
|
|
|
269
249
|
note: "note";
|
|
270
250
|
setLink: "setLink";
|
|
271
251
|
lessonLink: "lessonLink";
|
|
252
|
+
notification: "notification";
|
|
272
253
|
app: "app";
|
|
273
254
|
passcode: "passcode";
|
|
274
255
|
lessonAudio: "lessonAudio";
|
|
@@ -278,7 +259,6 @@ export declare const WahaUserSchema: z.ZodObject<{
|
|
|
278
259
|
meetingInvite: "meetingInvite";
|
|
279
260
|
articleLink: "articleLink";
|
|
280
261
|
videoLink: "videoLink";
|
|
281
|
-
notification: "notification";
|
|
282
262
|
meetingSchedule: "meetingSchedule";
|
|
283
263
|
scriptureText: "scriptureText";
|
|
284
264
|
mt: "mt";
|
|
@@ -290,6 +270,7 @@ export declare const WahaUserSchema: z.ZodObject<{
|
|
|
290
270
|
}>;
|
|
291
271
|
lessonId: z.ZodOptional<z.ZodString>;
|
|
292
272
|
articleSlug: z.ZodOptional<z.ZodString>;
|
|
273
|
+
microLessonSlug: z.ZodOptional<z.ZodString>;
|
|
293
274
|
}, z.core.$strip>>>;
|
|
294
275
|
bibleSessions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
295
276
|
chapter: z.ZodString;
|
|
@@ -303,16 +284,22 @@ export declare const WahaUserSchema: z.ZodObject<{
|
|
|
303
284
|
startTime: z.ZodNumber;
|
|
304
285
|
}, z.core.$strip>>>;
|
|
305
286
|
activated: z.ZodOptional<z.ZodBoolean>;
|
|
306
|
-
|
|
287
|
+
microLessonCompletions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
307
288
|
city: z.ZodOptional<z.ZodString>;
|
|
308
289
|
country: z.ZodOptional<z.ZodString>;
|
|
309
290
|
region: z.ZodOptional<z.ZodString>;
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
291
|
+
microLessonId: z.ZodString;
|
|
292
|
+
userId: z.ZodString;
|
|
293
|
+
microLessonTitle: z.ZodString;
|
|
294
|
+
languageId: z.ZodString;
|
|
295
|
+
campaign: z.ZodOptional<z.ZodString>;
|
|
296
|
+
timeStarted: z.ZodNumber;
|
|
297
|
+
timeSubmitted: z.ZodNumber;
|
|
298
|
+
platform: z.ZodEnum<{
|
|
299
|
+
web: "web";
|
|
300
|
+
ios: "ios";
|
|
301
|
+
android: "android";
|
|
302
|
+
}>;
|
|
316
303
|
}, z.core.$strip>>>;
|
|
317
304
|
}, z.core.$strip>;
|
|
318
305
|
export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
@@ -320,6 +307,7 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
320
307
|
appInterface: z.ZodString;
|
|
321
308
|
email: z.ZodOptional<z.ZodEmail>;
|
|
322
309
|
meet: z.ZodString;
|
|
310
|
+
platform: z.ZodString;
|
|
323
311
|
location: z.ZodOptional<z.ZodObject<{
|
|
324
312
|
city: z.ZodOptional<z.ZodString>;
|
|
325
313
|
country: z.ZodOptional<z.ZodString>;
|
|
@@ -373,7 +361,6 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
373
361
|
securityModeOn: z.ZodOptional<z.ZodBoolean>;
|
|
374
362
|
appVersion: z.ZodString;
|
|
375
363
|
lastUpdate: z.ZodNumber;
|
|
376
|
-
platform: z.ZodString;
|
|
377
364
|
completions: z.ZodArray<z.ZodObject<{
|
|
378
365
|
lessonId: z.ZodString;
|
|
379
366
|
meetLanguageId: z.ZodString;
|
|
@@ -394,6 +381,7 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
394
381
|
note: "note";
|
|
395
382
|
setLink: "setLink";
|
|
396
383
|
lessonLink: "lessonLink";
|
|
384
|
+
notification: "notification";
|
|
397
385
|
app: "app";
|
|
398
386
|
passcode: "passcode";
|
|
399
387
|
lessonAudio: "lessonAudio";
|
|
@@ -403,7 +391,6 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
403
391
|
meetingInvite: "meetingInvite";
|
|
404
392
|
articleLink: "articleLink";
|
|
405
393
|
videoLink: "videoLink";
|
|
406
|
-
notification: "notification";
|
|
407
394
|
meetingSchedule: "meetingSchedule";
|
|
408
395
|
scriptureText: "scriptureText";
|
|
409
396
|
mt: "mt";
|
|
@@ -415,6 +402,7 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
415
402
|
}>;
|
|
416
403
|
lessonId: z.ZodOptional<z.ZodString>;
|
|
417
404
|
articleSlug: z.ZodOptional<z.ZodString>;
|
|
405
|
+
microLessonSlug: z.ZodOptional<z.ZodString>;
|
|
418
406
|
}, z.core.$strip>>>;
|
|
419
407
|
bibleSessions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
420
408
|
chapter: z.ZodString;
|
|
@@ -428,16 +416,22 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
428
416
|
startTime: z.ZodNumber;
|
|
429
417
|
}, z.core.$strip>>>;
|
|
430
418
|
activated: z.ZodOptional<z.ZodBoolean>;
|
|
431
|
-
|
|
419
|
+
microLessonCompletions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
432
420
|
city: z.ZodOptional<z.ZodString>;
|
|
433
421
|
country: z.ZodOptional<z.ZodString>;
|
|
434
422
|
region: z.ZodOptional<z.ZodString>;
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
423
|
+
microLessonId: z.ZodString;
|
|
424
|
+
userId: z.ZodString;
|
|
425
|
+
microLessonTitle: z.ZodString;
|
|
426
|
+
languageId: z.ZodString;
|
|
427
|
+
campaign: z.ZodOptional<z.ZodString>;
|
|
428
|
+
timeStarted: z.ZodNumber;
|
|
429
|
+
timeSubmitted: z.ZodNumber;
|
|
430
|
+
platform: z.ZodEnum<{
|
|
431
|
+
web: "web";
|
|
432
|
+
ios: "ios";
|
|
433
|
+
android: "android";
|
|
434
|
+
}>;
|
|
441
435
|
}, z.core.$strip>>>;
|
|
442
436
|
wahaUserId: z.ZodString;
|
|
443
437
|
pushToken: z.ZodString;
|
|
@@ -445,4 +439,3 @@ export declare const PushEnabledWahaUserSchema: z.ZodObject<{
|
|
|
445
439
|
}, z.core.$strip>;
|
|
446
440
|
export type PushEnabledWahaUser = z.infer<typeof PushEnabledWahaUserSchema>;
|
|
447
441
|
export type WahaUser = z.infer<typeof WahaUserSchema>;
|
|
448
|
-
export {};
|
package/dist/types/users.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PushEnabledWahaUserSchema = exports.WahaUserSchema = exports.ArticleSessionSchema = exports.BibleSessionSchema = exports.ShareLogEventSchema = exports.WahaShareContentSchema = exports.CompletionEventSchema = exports.WahaAppVersionSchema = exports.WahaUserStateSchema = exports.DesireIdSchema = exports.WahaUserLocationSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
+
const microLessons_1 = require("./microLessons");
|
|
5
6
|
exports.WahaUserLocationSchema = zod_1.z.object({
|
|
6
7
|
city: zod_1.z.string().optional(),
|
|
7
8
|
country: zod_1.z.string().optional(),
|
|
@@ -73,22 +74,6 @@ exports.CompletionEventSchema = zod_1.z.object({
|
|
|
73
74
|
*/
|
|
74
75
|
manual: zod_1.z.boolean().optional(),
|
|
75
76
|
});
|
|
76
|
-
const WorksheetAnswerSchema = zod_1.z.object({
|
|
77
|
-
question: zod_1.z.string(),
|
|
78
|
-
answer: zod_1.z.string(),
|
|
79
|
-
});
|
|
80
|
-
const WorksheetCompletionEventSchema = zod_1.z.object({
|
|
81
|
-
startTime: zod_1.z.number(),
|
|
82
|
-
completionTime: zod_1.z.number().optional(),
|
|
83
|
-
worksheetId: zod_1.z.string(),
|
|
84
|
-
answers: zod_1.z.array(WorksheetAnswerSchema),
|
|
85
|
-
country: zod_1.z.string().optional(),
|
|
86
|
-
region: zod_1.z.string().optional(),
|
|
87
|
-
city: zod_1.z.string().optional(),
|
|
88
|
-
didApply: zod_1.z.boolean().optional(),
|
|
89
|
-
notificationText: zod_1.z.string().optional(),
|
|
90
|
-
feedback: zod_1.z.string().optional(),
|
|
91
|
-
});
|
|
92
77
|
exports.WahaShareContentSchema = zod_1.z.enum([
|
|
93
78
|
'app',
|
|
94
79
|
'passcode',
|
|
@@ -118,6 +103,7 @@ exports.ShareLogEventSchema = zod_1.z.object({
|
|
|
118
103
|
content: exports.WahaShareContentSchema,
|
|
119
104
|
lessonId: zod_1.z.string().optional(),
|
|
120
105
|
articleSlug: zod_1.z.string().optional(),
|
|
106
|
+
microLessonSlug: zod_1.z.string().optional(),
|
|
121
107
|
});
|
|
122
108
|
exports.BibleSessionSchema = zod_1.z.object({
|
|
123
109
|
chapter: zod_1.z.string(),
|
|
@@ -148,9 +134,7 @@ exports.WahaUserSchema = exports.WahaUserStateSchema.extend({
|
|
|
148
134
|
bibleSessions: zod_1.z.array(exports.BibleSessionSchema).optional(),
|
|
149
135
|
articleSessions: zod_1.z.array(exports.ArticleSessionSchema).optional(),
|
|
150
136
|
activated: zod_1.z.boolean().optional(),
|
|
151
|
-
|
|
152
|
-
.array(WorksheetCompletionEventSchema.omit({ answers: true }))
|
|
153
|
-
.optional(),
|
|
137
|
+
microLessonCompletions: zod_1.z.array(microLessons_1.MicroLessonSubmissionSchema).optional(),
|
|
154
138
|
});
|
|
155
139
|
exports.PushEnabledWahaUserSchema = exports.WahaUserSchema.omit({
|
|
156
140
|
wahaUserId: true,
|
package/dist/types/webContent.js
CHANGED
|
@@ -24,6 +24,7 @@ exports.AudioSchema = zod_1.default
|
|
|
24
24
|
audioUrl: zod_1.default.string(),
|
|
25
25
|
loop: zod_1.default.boolean().optional(),
|
|
26
26
|
})
|
|
27
|
+
.describe('Optional audio to embed on the page.')
|
|
27
28
|
.optional();
|
|
28
29
|
exports.VideoSchema = zod_1.default
|
|
29
30
|
.object({
|
|
@@ -32,6 +33,7 @@ exports.VideoSchema = zod_1.default
|
|
|
32
33
|
loop: zod_1.default.boolean().optional(),
|
|
33
34
|
disableControls: zod_1.default.boolean().optional(),
|
|
34
35
|
})
|
|
36
|
+
.describe('Optional video to embed on the page.')
|
|
35
37
|
.optional();
|
|
36
38
|
exports.CategorySchema = zod_1.default.enum([
|
|
37
39
|
'Case Studies',
|