waha-shared 1.0.196 → 1.0.198

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.
@@ -0,0 +1,705 @@
1
+ import z from 'zod';
2
+ export declare const MicroLessonSchema: z.ZodObject<{
3
+ title: z.ZodString;
4
+ subtitle: z.ZodOptional<z.ZodString>;
5
+ date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
6
+ isDraft: z.ZodOptional<z.ZodBoolean>;
7
+ seekerFriendly: z.ZodOptional<z.ZodBoolean>;
8
+ platform: z.ZodEnum<["Web Only", "App Only", "All"]>;
9
+ campaign: z.ZodOptional<z.ZodString>;
10
+ pages: z.ZodArray<z.ZodObject<{
11
+ heading: z.ZodString;
12
+ body: z.ZodOptional<z.ZodString>;
13
+ image: z.ZodOptional<z.ZodString>;
14
+ audio: z.ZodOptional<z.ZodString>;
15
+ textInput: z.ZodOptional<z.ZodObject<{
16
+ show: z.ZodBoolean;
17
+ placeholder: z.ZodOptional<z.ZodString>;
18
+ showCopyButton: z.ZodOptional<z.ZodBoolean>;
19
+ prefilledText: z.ZodOptional<z.ZodString>;
20
+ }, "strip", z.ZodTypeAny, {
21
+ show: boolean;
22
+ placeholder?: string | undefined;
23
+ showCopyButton?: boolean | undefined;
24
+ prefilledText?: string | undefined;
25
+ }, {
26
+ show: boolean;
27
+ placeholder?: string | undefined;
28
+ showCopyButton?: boolean | undefined;
29
+ prefilledText?: string | undefined;
30
+ }>>;
31
+ radioButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
32
+ heading: z.ZodOptional<z.ZodString>;
33
+ body: z.ZodOptional<z.ZodString>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ body?: string | undefined;
36
+ heading?: string | undefined;
37
+ }, {
38
+ body?: string | undefined;
39
+ heading?: string | undefined;
40
+ }>, "many">>;
41
+ videoUrl: z.ZodOptional<z.ZodString>;
42
+ platform: z.ZodOptional<z.ZodEnum<["Web Only", "App Only", "All"]>>;
43
+ notification: z.ZodOptional<z.ZodObject<{
44
+ title: z.ZodString;
45
+ body: z.ZodString;
46
+ delayInHours: z.ZodNumber;
47
+ }, "strip", z.ZodTypeAny, {
48
+ title: string;
49
+ body: string;
50
+ delayInHours: number;
51
+ }, {
52
+ title: string;
53
+ body: string;
54
+ delayInHours: number;
55
+ }>>;
56
+ }, "strip", z.ZodTypeAny, {
57
+ heading: string;
58
+ audio?: string | undefined;
59
+ body?: string | undefined;
60
+ notification?: {
61
+ title: string;
62
+ body: string;
63
+ delayInHours: number;
64
+ } | undefined;
65
+ platform?: "Web Only" | "App Only" | "All" | undefined;
66
+ image?: string | undefined;
67
+ textInput?: {
68
+ show: boolean;
69
+ placeholder?: string | undefined;
70
+ showCopyButton?: boolean | undefined;
71
+ prefilledText?: string | undefined;
72
+ } | undefined;
73
+ radioButtons?: {
74
+ body?: string | undefined;
75
+ heading?: string | undefined;
76
+ }[] | undefined;
77
+ videoUrl?: string | undefined;
78
+ }, {
79
+ heading: string;
80
+ audio?: string | undefined;
81
+ body?: string | undefined;
82
+ notification?: {
83
+ title: string;
84
+ body: string;
85
+ delayInHours: number;
86
+ } | undefined;
87
+ platform?: "Web Only" | "App Only" | "All" | undefined;
88
+ image?: string | undefined;
89
+ textInput?: {
90
+ show: boolean;
91
+ placeholder?: string | undefined;
92
+ showCopyButton?: boolean | undefined;
93
+ prefilledText?: string | undefined;
94
+ } | undefined;
95
+ radioButtons?: {
96
+ body?: string | undefined;
97
+ heading?: string | undefined;
98
+ }[] | undefined;
99
+ videoUrl?: string | undefined;
100
+ }>, "many">;
101
+ }, "strip", z.ZodTypeAny, {
102
+ title: string;
103
+ platform: "Web Only" | "App Only" | "All";
104
+ pages: {
105
+ heading: string;
106
+ audio?: string | undefined;
107
+ body?: string | undefined;
108
+ notification?: {
109
+ title: string;
110
+ body: string;
111
+ delayInHours: number;
112
+ } | undefined;
113
+ platform?: "Web Only" | "App Only" | "All" | undefined;
114
+ image?: string | undefined;
115
+ textInput?: {
116
+ show: boolean;
117
+ placeholder?: string | undefined;
118
+ showCopyButton?: boolean | undefined;
119
+ prefilledText?: string | undefined;
120
+ } | undefined;
121
+ radioButtons?: {
122
+ body?: string | undefined;
123
+ heading?: string | undefined;
124
+ }[] | undefined;
125
+ videoUrl?: string | undefined;
126
+ }[];
127
+ date?: string | Date | undefined;
128
+ isDraft?: boolean | undefined;
129
+ seekerFriendly?: boolean | undefined;
130
+ subtitle?: string | undefined;
131
+ campaign?: string | undefined;
132
+ }, {
133
+ title: string;
134
+ platform: "Web Only" | "App Only" | "All";
135
+ pages: {
136
+ heading: string;
137
+ audio?: string | undefined;
138
+ body?: string | undefined;
139
+ notification?: {
140
+ title: string;
141
+ body: string;
142
+ delayInHours: number;
143
+ } | undefined;
144
+ platform?: "Web Only" | "App Only" | "All" | undefined;
145
+ image?: string | undefined;
146
+ textInput?: {
147
+ show: boolean;
148
+ placeholder?: string | undefined;
149
+ showCopyButton?: boolean | undefined;
150
+ prefilledText?: string | undefined;
151
+ } | undefined;
152
+ radioButtons?: {
153
+ body?: string | undefined;
154
+ heading?: string | undefined;
155
+ }[] | undefined;
156
+ videoUrl?: string | undefined;
157
+ }[];
158
+ date?: string | Date | undefined;
159
+ isDraft?: boolean | undefined;
160
+ seekerFriendly?: boolean | undefined;
161
+ subtitle?: string | undefined;
162
+ campaign?: string | undefined;
163
+ }>;
164
+ export type MicroLesson = z.infer<typeof MicroLessonSchema>;
165
+ export declare const ResponseMicroLessonSchema: z.ZodObject<{
166
+ id: z.ZodString;
167
+ data: z.ZodObject<{
168
+ title: z.ZodString;
169
+ subtitle: z.ZodOptional<z.ZodString>;
170
+ date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
171
+ isDraft: z.ZodOptional<z.ZodBoolean>;
172
+ seekerFriendly: z.ZodOptional<z.ZodBoolean>;
173
+ platform: z.ZodEnum<["Web Only", "App Only", "All"]>;
174
+ campaign: z.ZodOptional<z.ZodString>;
175
+ pages: z.ZodArray<z.ZodObject<{
176
+ heading: z.ZodString;
177
+ body: z.ZodOptional<z.ZodString>;
178
+ image: z.ZodOptional<z.ZodString>;
179
+ audio: z.ZodOptional<z.ZodString>;
180
+ textInput: z.ZodOptional<z.ZodObject<{
181
+ show: z.ZodBoolean;
182
+ placeholder: z.ZodOptional<z.ZodString>;
183
+ showCopyButton: z.ZodOptional<z.ZodBoolean>;
184
+ prefilledText: z.ZodOptional<z.ZodString>;
185
+ }, "strip", z.ZodTypeAny, {
186
+ show: boolean;
187
+ placeholder?: string | undefined;
188
+ showCopyButton?: boolean | undefined;
189
+ prefilledText?: string | undefined;
190
+ }, {
191
+ show: boolean;
192
+ placeholder?: string | undefined;
193
+ showCopyButton?: boolean | undefined;
194
+ prefilledText?: string | undefined;
195
+ }>>;
196
+ radioButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
197
+ heading: z.ZodOptional<z.ZodString>;
198
+ body: z.ZodOptional<z.ZodString>;
199
+ }, "strip", z.ZodTypeAny, {
200
+ body?: string | undefined;
201
+ heading?: string | undefined;
202
+ }, {
203
+ body?: string | undefined;
204
+ heading?: string | undefined;
205
+ }>, "many">>;
206
+ videoUrl: z.ZodOptional<z.ZodString>;
207
+ platform: z.ZodOptional<z.ZodEnum<["Web Only", "App Only", "All"]>>;
208
+ notification: z.ZodOptional<z.ZodObject<{
209
+ title: z.ZodString;
210
+ body: z.ZodString;
211
+ delayInHours: z.ZodNumber;
212
+ }, "strip", z.ZodTypeAny, {
213
+ title: string;
214
+ body: string;
215
+ delayInHours: number;
216
+ }, {
217
+ title: string;
218
+ body: string;
219
+ delayInHours: number;
220
+ }>>;
221
+ }, "strip", z.ZodTypeAny, {
222
+ heading: string;
223
+ audio?: string | undefined;
224
+ body?: string | undefined;
225
+ notification?: {
226
+ title: string;
227
+ body: string;
228
+ delayInHours: number;
229
+ } | undefined;
230
+ platform?: "Web Only" | "App Only" | "All" | undefined;
231
+ image?: string | undefined;
232
+ textInput?: {
233
+ show: boolean;
234
+ placeholder?: string | undefined;
235
+ showCopyButton?: boolean | undefined;
236
+ prefilledText?: string | undefined;
237
+ } | undefined;
238
+ radioButtons?: {
239
+ body?: string | undefined;
240
+ heading?: string | undefined;
241
+ }[] | undefined;
242
+ videoUrl?: string | undefined;
243
+ }, {
244
+ heading: string;
245
+ audio?: string | undefined;
246
+ body?: string | undefined;
247
+ notification?: {
248
+ title: string;
249
+ body: string;
250
+ delayInHours: number;
251
+ } | undefined;
252
+ platform?: "Web Only" | "App Only" | "All" | undefined;
253
+ image?: string | undefined;
254
+ textInput?: {
255
+ show: boolean;
256
+ placeholder?: string | undefined;
257
+ showCopyButton?: boolean | undefined;
258
+ prefilledText?: string | undefined;
259
+ } | undefined;
260
+ radioButtons?: {
261
+ body?: string | undefined;
262
+ heading?: string | undefined;
263
+ }[] | undefined;
264
+ videoUrl?: string | undefined;
265
+ }>, "many">;
266
+ }, "strip", z.ZodTypeAny, {
267
+ title: string;
268
+ platform: "Web Only" | "App Only" | "All";
269
+ pages: {
270
+ heading: string;
271
+ audio?: string | undefined;
272
+ body?: string | undefined;
273
+ notification?: {
274
+ title: string;
275
+ body: string;
276
+ delayInHours: number;
277
+ } | undefined;
278
+ platform?: "Web Only" | "App Only" | "All" | undefined;
279
+ image?: string | undefined;
280
+ textInput?: {
281
+ show: boolean;
282
+ placeholder?: string | undefined;
283
+ showCopyButton?: boolean | undefined;
284
+ prefilledText?: string | undefined;
285
+ } | undefined;
286
+ radioButtons?: {
287
+ body?: string | undefined;
288
+ heading?: string | undefined;
289
+ }[] | undefined;
290
+ videoUrl?: string | undefined;
291
+ }[];
292
+ date?: string | Date | undefined;
293
+ isDraft?: boolean | undefined;
294
+ seekerFriendly?: boolean | undefined;
295
+ subtitle?: string | undefined;
296
+ campaign?: string | undefined;
297
+ }, {
298
+ title: string;
299
+ platform: "Web Only" | "App Only" | "All";
300
+ pages: {
301
+ heading: string;
302
+ audio?: string | undefined;
303
+ body?: string | undefined;
304
+ notification?: {
305
+ title: string;
306
+ body: string;
307
+ delayInHours: number;
308
+ } | undefined;
309
+ platform?: "Web Only" | "App Only" | "All" | undefined;
310
+ image?: string | undefined;
311
+ textInput?: {
312
+ show: boolean;
313
+ placeholder?: string | undefined;
314
+ showCopyButton?: boolean | undefined;
315
+ prefilledText?: string | undefined;
316
+ } | undefined;
317
+ radioButtons?: {
318
+ body?: string | undefined;
319
+ heading?: string | undefined;
320
+ }[] | undefined;
321
+ videoUrl?: string | undefined;
322
+ }[];
323
+ date?: string | Date | undefined;
324
+ isDraft?: boolean | undefined;
325
+ seekerFriendly?: boolean | undefined;
326
+ subtitle?: string | undefined;
327
+ campaign?: string | undefined;
328
+ }>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ id: string;
331
+ data: {
332
+ title: string;
333
+ platform: "Web Only" | "App Only" | "All";
334
+ pages: {
335
+ heading: string;
336
+ audio?: string | undefined;
337
+ body?: string | undefined;
338
+ notification?: {
339
+ title: string;
340
+ body: string;
341
+ delayInHours: number;
342
+ } | undefined;
343
+ platform?: "Web Only" | "App Only" | "All" | undefined;
344
+ image?: string | undefined;
345
+ textInput?: {
346
+ show: boolean;
347
+ placeholder?: string | undefined;
348
+ showCopyButton?: boolean | undefined;
349
+ prefilledText?: string | undefined;
350
+ } | undefined;
351
+ radioButtons?: {
352
+ body?: string | undefined;
353
+ heading?: string | undefined;
354
+ }[] | undefined;
355
+ videoUrl?: string | undefined;
356
+ }[];
357
+ date?: string | Date | undefined;
358
+ isDraft?: boolean | undefined;
359
+ seekerFriendly?: boolean | undefined;
360
+ subtitle?: string | undefined;
361
+ campaign?: string | undefined;
362
+ };
363
+ }, {
364
+ id: string;
365
+ data: {
366
+ title: string;
367
+ platform: "Web Only" | "App Only" | "All";
368
+ pages: {
369
+ heading: string;
370
+ audio?: string | undefined;
371
+ body?: string | undefined;
372
+ notification?: {
373
+ title: string;
374
+ body: string;
375
+ delayInHours: number;
376
+ } | undefined;
377
+ platform?: "Web Only" | "App Only" | "All" | undefined;
378
+ image?: string | undefined;
379
+ textInput?: {
380
+ show: boolean;
381
+ placeholder?: string | undefined;
382
+ showCopyButton?: boolean | undefined;
383
+ prefilledText?: string | undefined;
384
+ } | undefined;
385
+ radioButtons?: {
386
+ body?: string | undefined;
387
+ heading?: string | undefined;
388
+ }[] | undefined;
389
+ videoUrl?: string | undefined;
390
+ }[];
391
+ date?: string | Date | undefined;
392
+ isDraft?: boolean | undefined;
393
+ seekerFriendly?: boolean | undefined;
394
+ subtitle?: string | undefined;
395
+ campaign?: string | undefined;
396
+ };
397
+ }>;
398
+ export type ResponseMicroLesson = z.infer<typeof ResponseMicroLessonSchema>;
399
+ export declare const MicroLessonsResponse: z.ZodObject<{
400
+ data: z.ZodArray<z.ZodObject<{
401
+ id: z.ZodString;
402
+ data: z.ZodObject<{
403
+ title: z.ZodString;
404
+ subtitle: z.ZodOptional<z.ZodString>;
405
+ date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
406
+ isDraft: z.ZodOptional<z.ZodBoolean>;
407
+ seekerFriendly: z.ZodOptional<z.ZodBoolean>;
408
+ platform: z.ZodEnum<["Web Only", "App Only", "All"]>;
409
+ campaign: z.ZodOptional<z.ZodString>;
410
+ pages: z.ZodArray<z.ZodObject<{
411
+ heading: z.ZodString;
412
+ body: z.ZodOptional<z.ZodString>;
413
+ image: z.ZodOptional<z.ZodString>;
414
+ audio: z.ZodOptional<z.ZodString>;
415
+ textInput: z.ZodOptional<z.ZodObject<{
416
+ show: z.ZodBoolean;
417
+ placeholder: z.ZodOptional<z.ZodString>;
418
+ showCopyButton: z.ZodOptional<z.ZodBoolean>;
419
+ prefilledText: z.ZodOptional<z.ZodString>;
420
+ }, "strip", z.ZodTypeAny, {
421
+ show: boolean;
422
+ placeholder?: string | undefined;
423
+ showCopyButton?: boolean | undefined;
424
+ prefilledText?: string | undefined;
425
+ }, {
426
+ show: boolean;
427
+ placeholder?: string | undefined;
428
+ showCopyButton?: boolean | undefined;
429
+ prefilledText?: string | undefined;
430
+ }>>;
431
+ radioButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
432
+ heading: z.ZodOptional<z.ZodString>;
433
+ body: z.ZodOptional<z.ZodString>;
434
+ }, "strip", z.ZodTypeAny, {
435
+ body?: string | undefined;
436
+ heading?: string | undefined;
437
+ }, {
438
+ body?: string | undefined;
439
+ heading?: string | undefined;
440
+ }>, "many">>;
441
+ videoUrl: z.ZodOptional<z.ZodString>;
442
+ platform: z.ZodOptional<z.ZodEnum<["Web Only", "App Only", "All"]>>;
443
+ notification: z.ZodOptional<z.ZodObject<{
444
+ title: z.ZodString;
445
+ body: z.ZodString;
446
+ delayInHours: z.ZodNumber;
447
+ }, "strip", z.ZodTypeAny, {
448
+ title: string;
449
+ body: string;
450
+ delayInHours: number;
451
+ }, {
452
+ title: string;
453
+ body: string;
454
+ delayInHours: number;
455
+ }>>;
456
+ }, "strip", z.ZodTypeAny, {
457
+ heading: string;
458
+ audio?: string | undefined;
459
+ body?: string | undefined;
460
+ notification?: {
461
+ title: string;
462
+ body: string;
463
+ delayInHours: number;
464
+ } | undefined;
465
+ platform?: "Web Only" | "App Only" | "All" | undefined;
466
+ image?: string | undefined;
467
+ textInput?: {
468
+ show: boolean;
469
+ placeholder?: string | undefined;
470
+ showCopyButton?: boolean | undefined;
471
+ prefilledText?: string | undefined;
472
+ } | undefined;
473
+ radioButtons?: {
474
+ body?: string | undefined;
475
+ heading?: string | undefined;
476
+ }[] | undefined;
477
+ videoUrl?: string | undefined;
478
+ }, {
479
+ heading: string;
480
+ audio?: string | undefined;
481
+ body?: string | undefined;
482
+ notification?: {
483
+ title: string;
484
+ body: string;
485
+ delayInHours: number;
486
+ } | undefined;
487
+ platform?: "Web Only" | "App Only" | "All" | undefined;
488
+ image?: string | undefined;
489
+ textInput?: {
490
+ show: boolean;
491
+ placeholder?: string | undefined;
492
+ showCopyButton?: boolean | undefined;
493
+ prefilledText?: string | undefined;
494
+ } | undefined;
495
+ radioButtons?: {
496
+ body?: string | undefined;
497
+ heading?: string | undefined;
498
+ }[] | undefined;
499
+ videoUrl?: string | undefined;
500
+ }>, "many">;
501
+ }, "strip", z.ZodTypeAny, {
502
+ title: string;
503
+ platform: "Web Only" | "App Only" | "All";
504
+ pages: {
505
+ heading: string;
506
+ audio?: string | undefined;
507
+ body?: string | undefined;
508
+ notification?: {
509
+ title: string;
510
+ body: string;
511
+ delayInHours: number;
512
+ } | undefined;
513
+ platform?: "Web Only" | "App Only" | "All" | undefined;
514
+ image?: string | undefined;
515
+ textInput?: {
516
+ show: boolean;
517
+ placeholder?: string | undefined;
518
+ showCopyButton?: boolean | undefined;
519
+ prefilledText?: string | undefined;
520
+ } | undefined;
521
+ radioButtons?: {
522
+ body?: string | undefined;
523
+ heading?: string | undefined;
524
+ }[] | undefined;
525
+ videoUrl?: string | undefined;
526
+ }[];
527
+ date?: string | Date | undefined;
528
+ isDraft?: boolean | undefined;
529
+ seekerFriendly?: boolean | undefined;
530
+ subtitle?: string | undefined;
531
+ campaign?: string | undefined;
532
+ }, {
533
+ title: string;
534
+ platform: "Web Only" | "App Only" | "All";
535
+ pages: {
536
+ heading: string;
537
+ audio?: string | undefined;
538
+ body?: string | undefined;
539
+ notification?: {
540
+ title: string;
541
+ body: string;
542
+ delayInHours: number;
543
+ } | undefined;
544
+ platform?: "Web Only" | "App Only" | "All" | undefined;
545
+ image?: string | undefined;
546
+ textInput?: {
547
+ show: boolean;
548
+ placeholder?: string | undefined;
549
+ showCopyButton?: boolean | undefined;
550
+ prefilledText?: string | undefined;
551
+ } | undefined;
552
+ radioButtons?: {
553
+ body?: string | undefined;
554
+ heading?: string | undefined;
555
+ }[] | undefined;
556
+ videoUrl?: string | undefined;
557
+ }[];
558
+ date?: string | Date | undefined;
559
+ isDraft?: boolean | undefined;
560
+ seekerFriendly?: boolean | undefined;
561
+ subtitle?: string | undefined;
562
+ campaign?: string | undefined;
563
+ }>;
564
+ }, "strip", z.ZodTypeAny, {
565
+ id: string;
566
+ data: {
567
+ title: string;
568
+ platform: "Web Only" | "App Only" | "All";
569
+ pages: {
570
+ heading: string;
571
+ audio?: string | undefined;
572
+ body?: string | undefined;
573
+ notification?: {
574
+ title: string;
575
+ body: string;
576
+ delayInHours: number;
577
+ } | undefined;
578
+ platform?: "Web Only" | "App Only" | "All" | undefined;
579
+ image?: string | undefined;
580
+ textInput?: {
581
+ show: boolean;
582
+ placeholder?: string | undefined;
583
+ showCopyButton?: boolean | undefined;
584
+ prefilledText?: string | undefined;
585
+ } | undefined;
586
+ radioButtons?: {
587
+ body?: string | undefined;
588
+ heading?: string | undefined;
589
+ }[] | undefined;
590
+ videoUrl?: string | undefined;
591
+ }[];
592
+ date?: string | Date | undefined;
593
+ isDraft?: boolean | undefined;
594
+ seekerFriendly?: boolean | undefined;
595
+ subtitle?: string | undefined;
596
+ campaign?: string | undefined;
597
+ };
598
+ }, {
599
+ id: string;
600
+ data: {
601
+ title: string;
602
+ platform: "Web Only" | "App Only" | "All";
603
+ pages: {
604
+ heading: string;
605
+ audio?: string | undefined;
606
+ body?: string | undefined;
607
+ notification?: {
608
+ title: string;
609
+ body: string;
610
+ delayInHours: number;
611
+ } | undefined;
612
+ platform?: "Web Only" | "App Only" | "All" | undefined;
613
+ image?: string | undefined;
614
+ textInput?: {
615
+ show: boolean;
616
+ placeholder?: string | undefined;
617
+ showCopyButton?: boolean | undefined;
618
+ prefilledText?: string | undefined;
619
+ } | undefined;
620
+ radioButtons?: {
621
+ body?: string | undefined;
622
+ heading?: string | undefined;
623
+ }[] | undefined;
624
+ videoUrl?: string | undefined;
625
+ }[];
626
+ date?: string | Date | undefined;
627
+ isDraft?: boolean | undefined;
628
+ seekerFriendly?: boolean | undefined;
629
+ subtitle?: string | undefined;
630
+ campaign?: string | undefined;
631
+ };
632
+ }>, "many">;
633
+ }, "strip", z.ZodTypeAny, {
634
+ data: {
635
+ id: string;
636
+ data: {
637
+ title: string;
638
+ platform: "Web Only" | "App Only" | "All";
639
+ pages: {
640
+ heading: string;
641
+ audio?: string | undefined;
642
+ body?: string | undefined;
643
+ notification?: {
644
+ title: string;
645
+ body: string;
646
+ delayInHours: number;
647
+ } | undefined;
648
+ platform?: "Web Only" | "App Only" | "All" | undefined;
649
+ image?: string | undefined;
650
+ textInput?: {
651
+ show: boolean;
652
+ placeholder?: string | undefined;
653
+ showCopyButton?: boolean | undefined;
654
+ prefilledText?: string | undefined;
655
+ } | undefined;
656
+ radioButtons?: {
657
+ body?: string | undefined;
658
+ heading?: string | undefined;
659
+ }[] | undefined;
660
+ videoUrl?: string | undefined;
661
+ }[];
662
+ date?: string | Date | undefined;
663
+ isDraft?: boolean | undefined;
664
+ seekerFriendly?: boolean | undefined;
665
+ subtitle?: string | undefined;
666
+ campaign?: string | undefined;
667
+ };
668
+ }[];
669
+ }, {
670
+ data: {
671
+ id: string;
672
+ data: {
673
+ title: string;
674
+ platform: "Web Only" | "App Only" | "All";
675
+ pages: {
676
+ heading: string;
677
+ audio?: string | undefined;
678
+ body?: string | undefined;
679
+ notification?: {
680
+ title: string;
681
+ body: string;
682
+ delayInHours: number;
683
+ } | undefined;
684
+ platform?: "Web Only" | "App Only" | "All" | undefined;
685
+ image?: string | undefined;
686
+ textInput?: {
687
+ show: boolean;
688
+ placeholder?: string | undefined;
689
+ showCopyButton?: boolean | undefined;
690
+ prefilledText?: string | undefined;
691
+ } | undefined;
692
+ radioButtons?: {
693
+ body?: string | undefined;
694
+ heading?: string | undefined;
695
+ }[] | undefined;
696
+ videoUrl?: string | undefined;
697
+ }[];
698
+ date?: string | Date | undefined;
699
+ isDraft?: boolean | undefined;
700
+ seekerFriendly?: boolean | undefined;
701
+ subtitle?: string | undefined;
702
+ campaign?: string | undefined;
703
+ };
704
+ }[];
705
+ }>;