waha-shared 1.0.196 → 1.0.197

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.ZodUnion<[z.ZodString, z.ZodDate]>;
6
+ isDraft: z.ZodBoolean;
7
+ seekerFriendly: 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
+ date: string | Date;
103
+ title: string;
104
+ platform: "Web Only" | "App Only" | "All";
105
+ isDraft: boolean;
106
+ seekerFriendly: boolean;
107
+ pages: {
108
+ heading: string;
109
+ audio?: string | undefined;
110
+ body?: string | undefined;
111
+ notification?: {
112
+ title: string;
113
+ body: string;
114
+ delayInHours: number;
115
+ } | undefined;
116
+ platform?: "Web Only" | "App Only" | "All" | undefined;
117
+ image?: string | undefined;
118
+ textInput?: {
119
+ show: boolean;
120
+ placeholder?: string | undefined;
121
+ showCopyButton?: boolean | undefined;
122
+ prefilledText?: string | undefined;
123
+ } | undefined;
124
+ radioButtons?: {
125
+ body?: string | undefined;
126
+ heading?: string | undefined;
127
+ }[] | undefined;
128
+ videoUrl?: string | undefined;
129
+ }[];
130
+ subtitle?: string | undefined;
131
+ campaign?: string | undefined;
132
+ }, {
133
+ date: string | Date;
134
+ title: string;
135
+ platform: "Web Only" | "App Only" | "All";
136
+ isDraft: boolean;
137
+ seekerFriendly: boolean;
138
+ pages: {
139
+ heading: string;
140
+ audio?: string | undefined;
141
+ body?: string | undefined;
142
+ notification?: {
143
+ title: string;
144
+ body: string;
145
+ delayInHours: number;
146
+ } | undefined;
147
+ platform?: "Web Only" | "App Only" | "All" | undefined;
148
+ image?: string | undefined;
149
+ textInput?: {
150
+ show: boolean;
151
+ placeholder?: string | undefined;
152
+ showCopyButton?: boolean | undefined;
153
+ prefilledText?: string | undefined;
154
+ } | undefined;
155
+ radioButtons?: {
156
+ body?: string | undefined;
157
+ heading?: string | undefined;
158
+ }[] | undefined;
159
+ videoUrl?: string | undefined;
160
+ }[];
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.ZodUnion<[z.ZodString, z.ZodDate]>;
171
+ isDraft: z.ZodBoolean;
172
+ seekerFriendly: 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
+ date: string | Date;
268
+ title: string;
269
+ platform: "Web Only" | "App Only" | "All";
270
+ isDraft: boolean;
271
+ seekerFriendly: boolean;
272
+ pages: {
273
+ heading: string;
274
+ audio?: string | undefined;
275
+ body?: string | undefined;
276
+ notification?: {
277
+ title: string;
278
+ body: string;
279
+ delayInHours: number;
280
+ } | undefined;
281
+ platform?: "Web Only" | "App Only" | "All" | undefined;
282
+ image?: string | undefined;
283
+ textInput?: {
284
+ show: boolean;
285
+ placeholder?: string | undefined;
286
+ showCopyButton?: boolean | undefined;
287
+ prefilledText?: string | undefined;
288
+ } | undefined;
289
+ radioButtons?: {
290
+ body?: string | undefined;
291
+ heading?: string | undefined;
292
+ }[] | undefined;
293
+ videoUrl?: string | undefined;
294
+ }[];
295
+ subtitle?: string | undefined;
296
+ campaign?: string | undefined;
297
+ }, {
298
+ date: string | Date;
299
+ title: string;
300
+ platform: "Web Only" | "App Only" | "All";
301
+ isDraft: boolean;
302
+ seekerFriendly: boolean;
303
+ pages: {
304
+ heading: string;
305
+ audio?: string | undefined;
306
+ body?: string | undefined;
307
+ notification?: {
308
+ title: string;
309
+ body: string;
310
+ delayInHours: number;
311
+ } | undefined;
312
+ platform?: "Web Only" | "App Only" | "All" | undefined;
313
+ image?: string | undefined;
314
+ textInput?: {
315
+ show: boolean;
316
+ placeholder?: string | undefined;
317
+ showCopyButton?: boolean | undefined;
318
+ prefilledText?: string | undefined;
319
+ } | undefined;
320
+ radioButtons?: {
321
+ body?: string | undefined;
322
+ heading?: string | undefined;
323
+ }[] | undefined;
324
+ videoUrl?: string | undefined;
325
+ }[];
326
+ subtitle?: string | undefined;
327
+ campaign?: string | undefined;
328
+ }>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ id: string;
331
+ data: {
332
+ date: string | Date;
333
+ title: string;
334
+ platform: "Web Only" | "App Only" | "All";
335
+ isDraft: boolean;
336
+ seekerFriendly: boolean;
337
+ pages: {
338
+ heading: string;
339
+ audio?: string | undefined;
340
+ body?: string | undefined;
341
+ notification?: {
342
+ title: string;
343
+ body: string;
344
+ delayInHours: number;
345
+ } | undefined;
346
+ platform?: "Web Only" | "App Only" | "All" | undefined;
347
+ image?: string | undefined;
348
+ textInput?: {
349
+ show: boolean;
350
+ placeholder?: string | undefined;
351
+ showCopyButton?: boolean | undefined;
352
+ prefilledText?: string | undefined;
353
+ } | undefined;
354
+ radioButtons?: {
355
+ body?: string | undefined;
356
+ heading?: string | undefined;
357
+ }[] | undefined;
358
+ videoUrl?: string | undefined;
359
+ }[];
360
+ subtitle?: string | undefined;
361
+ campaign?: string | undefined;
362
+ };
363
+ }, {
364
+ id: string;
365
+ data: {
366
+ date: string | Date;
367
+ title: string;
368
+ platform: "Web Only" | "App Only" | "All";
369
+ isDraft: boolean;
370
+ seekerFriendly: boolean;
371
+ pages: {
372
+ heading: string;
373
+ audio?: string | undefined;
374
+ body?: string | undefined;
375
+ notification?: {
376
+ title: string;
377
+ body: string;
378
+ delayInHours: number;
379
+ } | undefined;
380
+ platform?: "Web Only" | "App Only" | "All" | undefined;
381
+ image?: string | undefined;
382
+ textInput?: {
383
+ show: boolean;
384
+ placeholder?: string | undefined;
385
+ showCopyButton?: boolean | undefined;
386
+ prefilledText?: string | undefined;
387
+ } | undefined;
388
+ radioButtons?: {
389
+ body?: string | undefined;
390
+ heading?: string | undefined;
391
+ }[] | undefined;
392
+ videoUrl?: string | undefined;
393
+ }[];
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.ZodUnion<[z.ZodString, z.ZodDate]>;
406
+ isDraft: z.ZodBoolean;
407
+ seekerFriendly: 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
+ date: string | Date;
503
+ title: string;
504
+ platform: "Web Only" | "App Only" | "All";
505
+ isDraft: boolean;
506
+ seekerFriendly: boolean;
507
+ pages: {
508
+ heading: string;
509
+ audio?: string | undefined;
510
+ body?: string | undefined;
511
+ notification?: {
512
+ title: string;
513
+ body: string;
514
+ delayInHours: number;
515
+ } | undefined;
516
+ platform?: "Web Only" | "App Only" | "All" | undefined;
517
+ image?: string | undefined;
518
+ textInput?: {
519
+ show: boolean;
520
+ placeholder?: string | undefined;
521
+ showCopyButton?: boolean | undefined;
522
+ prefilledText?: string | undefined;
523
+ } | undefined;
524
+ radioButtons?: {
525
+ body?: string | undefined;
526
+ heading?: string | undefined;
527
+ }[] | undefined;
528
+ videoUrl?: string | undefined;
529
+ }[];
530
+ subtitle?: string | undefined;
531
+ campaign?: string | undefined;
532
+ }, {
533
+ date: string | Date;
534
+ title: string;
535
+ platform: "Web Only" | "App Only" | "All";
536
+ isDraft: boolean;
537
+ seekerFriendly: boolean;
538
+ pages: {
539
+ heading: string;
540
+ audio?: string | undefined;
541
+ body?: string | undefined;
542
+ notification?: {
543
+ title: string;
544
+ body: string;
545
+ delayInHours: number;
546
+ } | undefined;
547
+ platform?: "Web Only" | "App Only" | "All" | undefined;
548
+ image?: string | undefined;
549
+ textInput?: {
550
+ show: boolean;
551
+ placeholder?: string | undefined;
552
+ showCopyButton?: boolean | undefined;
553
+ prefilledText?: string | undefined;
554
+ } | undefined;
555
+ radioButtons?: {
556
+ body?: string | undefined;
557
+ heading?: string | undefined;
558
+ }[] | undefined;
559
+ videoUrl?: string | undefined;
560
+ }[];
561
+ subtitle?: string | undefined;
562
+ campaign?: string | undefined;
563
+ }>;
564
+ }, "strip", z.ZodTypeAny, {
565
+ id: string;
566
+ data: {
567
+ date: string | Date;
568
+ title: string;
569
+ platform: "Web Only" | "App Only" | "All";
570
+ isDraft: boolean;
571
+ seekerFriendly: boolean;
572
+ pages: {
573
+ heading: string;
574
+ audio?: string | undefined;
575
+ body?: string | undefined;
576
+ notification?: {
577
+ title: string;
578
+ body: string;
579
+ delayInHours: number;
580
+ } | undefined;
581
+ platform?: "Web Only" | "App Only" | "All" | undefined;
582
+ image?: string | undefined;
583
+ textInput?: {
584
+ show: boolean;
585
+ placeholder?: string | undefined;
586
+ showCopyButton?: boolean | undefined;
587
+ prefilledText?: string | undefined;
588
+ } | undefined;
589
+ radioButtons?: {
590
+ body?: string | undefined;
591
+ heading?: string | undefined;
592
+ }[] | undefined;
593
+ videoUrl?: string | undefined;
594
+ }[];
595
+ subtitle?: string | undefined;
596
+ campaign?: string | undefined;
597
+ };
598
+ }, {
599
+ id: string;
600
+ data: {
601
+ date: string | Date;
602
+ title: string;
603
+ platform: "Web Only" | "App Only" | "All";
604
+ isDraft: boolean;
605
+ seekerFriendly: boolean;
606
+ pages: {
607
+ heading: string;
608
+ audio?: string | undefined;
609
+ body?: string | undefined;
610
+ notification?: {
611
+ title: string;
612
+ body: string;
613
+ delayInHours: number;
614
+ } | undefined;
615
+ platform?: "Web Only" | "App Only" | "All" | undefined;
616
+ image?: string | undefined;
617
+ textInput?: {
618
+ show: boolean;
619
+ placeholder?: string | undefined;
620
+ showCopyButton?: boolean | undefined;
621
+ prefilledText?: string | undefined;
622
+ } | undefined;
623
+ radioButtons?: {
624
+ body?: string | undefined;
625
+ heading?: string | undefined;
626
+ }[] | undefined;
627
+ videoUrl?: string | undefined;
628
+ }[];
629
+ subtitle?: string | undefined;
630
+ campaign?: string | undefined;
631
+ };
632
+ }>, "many">;
633
+ }, "strip", z.ZodTypeAny, {
634
+ data: {
635
+ id: string;
636
+ data: {
637
+ date: string | Date;
638
+ title: string;
639
+ platform: "Web Only" | "App Only" | "All";
640
+ isDraft: boolean;
641
+ seekerFriendly: boolean;
642
+ pages: {
643
+ heading: string;
644
+ audio?: string | undefined;
645
+ body?: string | undefined;
646
+ notification?: {
647
+ title: string;
648
+ body: string;
649
+ delayInHours: number;
650
+ } | undefined;
651
+ platform?: "Web Only" | "App Only" | "All" | undefined;
652
+ image?: string | undefined;
653
+ textInput?: {
654
+ show: boolean;
655
+ placeholder?: string | undefined;
656
+ showCopyButton?: boolean | undefined;
657
+ prefilledText?: string | undefined;
658
+ } | undefined;
659
+ radioButtons?: {
660
+ body?: string | undefined;
661
+ heading?: string | undefined;
662
+ }[] | undefined;
663
+ videoUrl?: string | undefined;
664
+ }[];
665
+ subtitle?: string | undefined;
666
+ campaign?: string | undefined;
667
+ };
668
+ }[];
669
+ }, {
670
+ data: {
671
+ id: string;
672
+ data: {
673
+ date: string | Date;
674
+ title: string;
675
+ platform: "Web Only" | "App Only" | "All";
676
+ isDraft: boolean;
677
+ seekerFriendly: boolean;
678
+ pages: {
679
+ heading: string;
680
+ audio?: string | undefined;
681
+ body?: string | undefined;
682
+ notification?: {
683
+ title: string;
684
+ body: string;
685
+ delayInHours: number;
686
+ } | undefined;
687
+ platform?: "Web Only" | "App Only" | "All" | undefined;
688
+ image?: string | undefined;
689
+ textInput?: {
690
+ show: boolean;
691
+ placeholder?: string | undefined;
692
+ showCopyButton?: boolean | undefined;
693
+ prefilledText?: string | undefined;
694
+ } | undefined;
695
+ radioButtons?: {
696
+ body?: string | undefined;
697
+ heading?: string | undefined;
698
+ }[] | undefined;
699
+ videoUrl?: string | undefined;
700
+ }[];
701
+ subtitle?: string | undefined;
702
+ campaign?: string | undefined;
703
+ };
704
+ }[];
705
+ }>;