@readyfor/api-client-pigeon 0.183.0 → 0.185.0-pr959.4592118

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.
@@ -81,7 +81,7 @@ declare const PersonalizedMailMagazineTargetDeleteCsvFormData: z.ZodObject<{
81
81
  declare const CurationMailMagazineBannerFormData: z.ZodObject<{
82
82
  id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
83
83
  order: z.ZodNumber;
84
- image: z.ZodUnion<[z.ZodObject<{
84
+ image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
85
85
  kind: z.ZodLiteral<"upload">;
86
86
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
87
87
  }, "strip", z.ZodTypeAny, {
@@ -96,7 +96,7 @@ declare const CurationMailMagazineBannerFormData: z.ZodObject<{
96
96
  kind: "delete";
97
97
  }, {
98
98
  kind: "delete";
99
- }>]>;
99
+ }>]>, z.ZodNull]>;
100
100
  url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
101
101
  }, "strip", z.ZodTypeAny, {
102
102
  id: number | null;
@@ -106,7 +106,7 @@ declare const CurationMailMagazineBannerFormData: z.ZodObject<{
106
106
  } | {
107
107
  kind: "upload";
108
108
  data?: any;
109
- };
109
+ } | null;
110
110
  url: string | null;
111
111
  }, {
112
112
  id: number | null;
@@ -116,7 +116,7 @@ declare const CurationMailMagazineBannerFormData: z.ZodObject<{
116
116
  } | {
117
117
  kind: "upload";
118
118
  data?: any;
119
- };
119
+ } | null;
120
120
  url: string | null;
121
121
  }>;
122
122
  declare const CurationMailMagazineProjectFormData: z.ZodObject<{
@@ -126,7 +126,7 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
126
126
  isPaidSlot: z.ZodBoolean;
127
127
  title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
128
128
  description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
129
- thumbnal: z.ZodUnion<[z.ZodObject<{
129
+ thumbnail: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
130
130
  kind: z.ZodLiteral<"upload">;
131
131
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
132
132
  }, "strip", z.ZodTypeAny, {
@@ -141,7 +141,7 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
141
141
  kind: "delete";
142
142
  }, {
143
143
  kind: "delete";
144
- }>]>;
144
+ }>]>, z.ZodNull]>;
145
145
  tag: z.ZodUnion<[z.ZodString, z.ZodNull]>;
146
146
  tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
147
147
  }, "strip", z.ZodTypeAny, {
@@ -151,12 +151,12 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
151
151
  isPaidSlot: boolean;
152
152
  title: string | null;
153
153
  description: string | null;
154
- thumbnal: {
154
+ thumbnail: {
155
155
  kind: "delete";
156
156
  } | {
157
157
  kind: "upload";
158
158
  data?: any;
159
- };
159
+ } | null;
160
160
  tag: string | null;
161
161
  tagUrl: string | null;
162
162
  }, {
@@ -166,12 +166,12 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
166
166
  isPaidSlot: boolean;
167
167
  title: string | null;
168
168
  description: string | null;
169
- thumbnal: {
169
+ thumbnail: {
170
170
  kind: "delete";
171
171
  } | {
172
172
  kind: "upload";
173
173
  data?: any;
174
- };
174
+ } | null;
175
175
  tag: string | null;
176
176
  tagUrl: string | null;
177
177
  }>;
@@ -319,7 +319,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
319
319
  isPaidSlot: z.ZodBoolean;
320
320
  title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
321
321
  description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
322
- thumbnal: z.ZodUnion<[z.ZodObject<{
322
+ thumbnail: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
323
323
  kind: z.ZodLiteral<"upload">;
324
324
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
325
325
  }, "strip", z.ZodTypeAny, {
@@ -334,7 +334,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
334
334
  kind: "delete";
335
335
  }, {
336
336
  kind: "delete";
337
- }>]>;
337
+ }>]>, z.ZodNull]>;
338
338
  tag: z.ZodUnion<[z.ZodString, z.ZodNull]>;
339
339
  tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
340
340
  }, "strip", z.ZodTypeAny, {
@@ -344,12 +344,12 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
344
344
  isPaidSlot: boolean;
345
345
  title: string | null;
346
346
  description: string | null;
347
- thumbnal: {
347
+ thumbnail: {
348
348
  kind: "delete";
349
349
  } | {
350
350
  kind: "upload";
351
351
  data?: any;
352
- };
352
+ } | null;
353
353
  tag: string | null;
354
354
  tagUrl: string | null;
355
355
  }, {
@@ -359,19 +359,19 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
359
359
  isPaidSlot: boolean;
360
360
  title: string | null;
361
361
  description: string | null;
362
- thumbnal: {
362
+ thumbnail: {
363
363
  kind: "delete";
364
364
  } | {
365
365
  kind: "upload";
366
366
  data?: any;
367
- };
367
+ } | null;
368
368
  tag: string | null;
369
369
  tagUrl: string | null;
370
370
  }>, "many">;
371
371
  banners: z.ZodArray<z.ZodObject<{
372
372
  id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
373
373
  order: z.ZodNumber;
374
- image: z.ZodUnion<[z.ZodObject<{
374
+ image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
375
375
  kind: z.ZodLiteral<"upload">;
376
376
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
377
377
  }, "strip", z.ZodTypeAny, {
@@ -386,7 +386,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
386
386
  kind: "delete";
387
387
  }, {
388
388
  kind: "delete";
389
- }>]>;
389
+ }>]>, z.ZodNull]>;
390
390
  url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
391
391
  }, "strip", z.ZodTypeAny, {
392
392
  id: number | null;
@@ -396,7 +396,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
396
396
  } | {
397
397
  kind: "upload";
398
398
  data?: any;
399
- };
399
+ } | null;
400
400
  url: string | null;
401
401
  }, {
402
402
  id: number | null;
@@ -406,7 +406,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
406
406
  } | {
407
407
  kind: "upload";
408
408
  data?: any;
409
- };
409
+ } | null;
410
410
  url: string | null;
411
411
  }>, "many">;
412
412
  }, "strip", z.ZodTypeAny, {
@@ -425,12 +425,12 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
425
425
  isPaidSlot: boolean;
426
426
  title: string | null;
427
427
  description: string | null;
428
- thumbnal: {
428
+ thumbnail: {
429
429
  kind: "delete";
430
430
  } | {
431
431
  kind: "upload";
432
432
  data?: any;
433
- };
433
+ } | null;
434
434
  tag: string | null;
435
435
  tagUrl: string | null;
436
436
  }[];
@@ -442,7 +442,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
442
442
  } | {
443
443
  kind: "upload";
444
444
  data?: any;
445
- };
445
+ } | null;
446
446
  url: string | null;
447
447
  }[];
448
448
  }, {
@@ -461,12 +461,12 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
461
461
  isPaidSlot: boolean;
462
462
  title: string | null;
463
463
  description: string | null;
464
- thumbnal: {
464
+ thumbnail: {
465
465
  kind: "delete";
466
466
  } | {
467
467
  kind: "upload";
468
468
  data?: any;
469
- };
469
+ } | null;
470
470
  tag: string | null;
471
471
  tagUrl: string | null;
472
472
  }[];
@@ -478,7 +478,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
478
478
  } | {
479
479
  kind: "upload";
480
480
  data?: any;
481
- };
481
+ } | null;
482
482
  url: string | null;
483
483
  }[];
484
484
  }>;
@@ -720,7 +720,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
720
720
  isPaidSlot: z.ZodBoolean;
721
721
  title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
722
722
  description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
723
- thumbnal: z.ZodUnion<[z.ZodObject<{
723
+ thumbnail: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
724
724
  kind: z.ZodLiteral<"upload">;
725
725
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
726
726
  }, "strip", z.ZodTypeAny, {
@@ -735,7 +735,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
735
735
  kind: "delete";
736
736
  }, {
737
737
  kind: "delete";
738
- }>]>;
738
+ }>]>, z.ZodNull]>;
739
739
  tag: z.ZodUnion<[z.ZodString, z.ZodNull]>;
740
740
  tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
741
741
  }, "strip", z.ZodTypeAny, {
@@ -745,12 +745,12 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
745
745
  isPaidSlot: boolean;
746
746
  title: string | null;
747
747
  description: string | null;
748
- thumbnal: {
748
+ thumbnail: {
749
749
  kind: "delete";
750
750
  } | {
751
751
  kind: "upload";
752
752
  data?: any;
753
- };
753
+ } | null;
754
754
  tag: string | null;
755
755
  tagUrl: string | null;
756
756
  }, {
@@ -760,19 +760,19 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
760
760
  isPaidSlot: boolean;
761
761
  title: string | null;
762
762
  description: string | null;
763
- thumbnal: {
763
+ thumbnail: {
764
764
  kind: "delete";
765
765
  } | {
766
766
  kind: "upload";
767
767
  data?: any;
768
- };
768
+ } | null;
769
769
  tag: string | null;
770
770
  tagUrl: string | null;
771
771
  }>, "many">;
772
772
  banners: z.ZodArray<z.ZodObject<{
773
773
  id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
774
774
  order: z.ZodNumber;
775
- image: z.ZodUnion<[z.ZodObject<{
775
+ image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
776
776
  kind: z.ZodLiteral<"upload">;
777
777
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
778
778
  }, "strip", z.ZodTypeAny, {
@@ -787,7 +787,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
787
787
  kind: "delete";
788
788
  }, {
789
789
  kind: "delete";
790
- }>]>;
790
+ }>]>, z.ZodNull]>;
791
791
  url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
792
792
  }, "strip", z.ZodTypeAny, {
793
793
  id: number | null;
@@ -797,7 +797,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
797
797
  } | {
798
798
  kind: "upload";
799
799
  data?: any;
800
- };
800
+ } | null;
801
801
  url: string | null;
802
802
  }, {
803
803
  id: number | null;
@@ -807,7 +807,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
807
807
  } | {
808
808
  kind: "upload";
809
809
  data?: any;
810
- };
810
+ } | null;
811
811
  url: string | null;
812
812
  }>, "many">;
813
813
  }, "strip", z.ZodTypeAny, {
@@ -826,12 +826,12 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
826
826
  isPaidSlot: boolean;
827
827
  title: string | null;
828
828
  description: string | null;
829
- thumbnal: {
829
+ thumbnail: {
830
830
  kind: "delete";
831
831
  } | {
832
832
  kind: "upload";
833
833
  data?: any;
834
- };
834
+ } | null;
835
835
  tag: string | null;
836
836
  tagUrl: string | null;
837
837
  }[];
@@ -843,7 +843,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
843
843
  } | {
844
844
  kind: "upload";
845
845
  data?: any;
846
- };
846
+ } | null;
847
847
  url: string | null;
848
848
  }[];
849
849
  }, {
@@ -862,12 +862,12 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
862
862
  isPaidSlot: boolean;
863
863
  title: string | null;
864
864
  description: string | null;
865
- thumbnal: {
865
+ thumbnail: {
866
866
  kind: "delete";
867
867
  } | {
868
868
  kind: "upload";
869
869
  data?: any;
870
- };
870
+ } | null;
871
871
  tag: string | null;
872
872
  tagUrl: string | null;
873
873
  }[];
@@ -879,7 +879,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
879
879
  } | {
880
880
  kind: "upload";
881
881
  data?: any;
882
- };
882
+ } | null;
883
883
  url: string | null;
884
884
  }[];
885
885
  }>;
@@ -901,12 +901,12 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
901
901
  isPaidSlot: boolean;
902
902
  title: string | null;
903
903
  description: string | null;
904
- thumbnal: {
904
+ thumbnail: {
905
905
  kind: "delete";
906
906
  } | {
907
907
  kind: "upload";
908
908
  data?: any;
909
- };
909
+ } | null;
910
910
  tag: string | null;
911
911
  tagUrl: string | null;
912
912
  }[];
@@ -918,7 +918,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
918
918
  } | {
919
919
  kind: "upload";
920
920
  data?: any;
921
- };
921
+ } | null;
922
922
  url: string | null;
923
923
  }[];
924
924
  };
@@ -940,12 +940,12 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
940
940
  isPaidSlot: boolean;
941
941
  title: string | null;
942
942
  description: string | null;
943
- thumbnal: {
943
+ thumbnail: {
944
944
  kind: "delete";
945
945
  } | {
946
946
  kind: "upload";
947
947
  data?: any;
948
- };
948
+ } | null;
949
949
  tag: string | null;
950
950
  tagUrl: string | null;
951
951
  }[];
@@ -957,7 +957,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
957
957
  } | {
958
958
  kind: "upload";
959
959
  data?: any;
960
- };
960
+ } | null;
961
961
  url: string | null;
962
962
  }[];
963
963
  };
@@ -1347,7 +1347,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1347
1347
  isPaidSlot: z.ZodBoolean;
1348
1348
  title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
1349
1349
  description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
1350
- thumbnal: z.ZodUnion<[z.ZodObject<{
1350
+ thumbnail: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1351
1351
  kind: z.ZodLiteral<"upload">;
1352
1352
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
1353
1353
  }, "strip", z.ZodTypeAny, {
@@ -1362,7 +1362,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1362
1362
  kind: "delete";
1363
1363
  }, {
1364
1364
  kind: "delete";
1365
- }>]>;
1365
+ }>]>, z.ZodNull]>;
1366
1366
  tag: z.ZodUnion<[z.ZodString, z.ZodNull]>;
1367
1367
  tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
1368
1368
  }, "strip", z.ZodTypeAny, {
@@ -1372,12 +1372,12 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1372
1372
  isPaidSlot: boolean;
1373
1373
  title: string | null;
1374
1374
  description: string | null;
1375
- thumbnal: {
1375
+ thumbnail: {
1376
1376
  kind: "delete";
1377
1377
  } | {
1378
1378
  kind: "upload";
1379
1379
  data?: any;
1380
- };
1380
+ } | null;
1381
1381
  tag: string | null;
1382
1382
  tagUrl: string | null;
1383
1383
  }, {
@@ -1387,19 +1387,19 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1387
1387
  isPaidSlot: boolean;
1388
1388
  title: string | null;
1389
1389
  description: string | null;
1390
- thumbnal: {
1390
+ thumbnail: {
1391
1391
  kind: "delete";
1392
1392
  } | {
1393
1393
  kind: "upload";
1394
1394
  data?: any;
1395
- };
1395
+ } | null;
1396
1396
  tag: string | null;
1397
1397
  tagUrl: string | null;
1398
1398
  }>, "many">;
1399
1399
  banners: z.ZodArray<z.ZodObject<{
1400
1400
  id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
1401
1401
  order: z.ZodNumber;
1402
- image: z.ZodUnion<[z.ZodObject<{
1402
+ image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1403
1403
  kind: z.ZodLiteral<"upload">;
1404
1404
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
1405
1405
  }, "strip", z.ZodTypeAny, {
@@ -1414,7 +1414,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1414
1414
  kind: "delete";
1415
1415
  }, {
1416
1416
  kind: "delete";
1417
- }>]>;
1417
+ }>]>, z.ZodNull]>;
1418
1418
  url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
1419
1419
  }, "strip", z.ZodTypeAny, {
1420
1420
  id: number | null;
@@ -1424,7 +1424,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1424
1424
  } | {
1425
1425
  kind: "upload";
1426
1426
  data?: any;
1427
- };
1427
+ } | null;
1428
1428
  url: string | null;
1429
1429
  }, {
1430
1430
  id: number | null;
@@ -1434,7 +1434,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1434
1434
  } | {
1435
1435
  kind: "upload";
1436
1436
  data?: any;
1437
- };
1437
+ } | null;
1438
1438
  url: string | null;
1439
1439
  }>, "many">;
1440
1440
  }, "strip", z.ZodTypeAny, {
@@ -1453,12 +1453,12 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1453
1453
  isPaidSlot: boolean;
1454
1454
  title: string | null;
1455
1455
  description: string | null;
1456
- thumbnal: {
1456
+ thumbnail: {
1457
1457
  kind: "delete";
1458
1458
  } | {
1459
1459
  kind: "upload";
1460
1460
  data?: any;
1461
- };
1461
+ } | null;
1462
1462
  tag: string | null;
1463
1463
  tagUrl: string | null;
1464
1464
  }[];
@@ -1470,7 +1470,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1470
1470
  } | {
1471
1471
  kind: "upload";
1472
1472
  data?: any;
1473
- };
1473
+ } | null;
1474
1474
  url: string | null;
1475
1475
  }[];
1476
1476
  }, {
@@ -1489,12 +1489,12 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1489
1489
  isPaidSlot: boolean;
1490
1490
  title: string | null;
1491
1491
  description: string | null;
1492
- thumbnal: {
1492
+ thumbnail: {
1493
1493
  kind: "delete";
1494
1494
  } | {
1495
1495
  kind: "upload";
1496
1496
  data?: any;
1497
- };
1497
+ } | null;
1498
1498
  tag: string | null;
1499
1499
  tagUrl: string | null;
1500
1500
  }[];
@@ -1506,7 +1506,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1506
1506
  } | {
1507
1507
  kind: "upload";
1508
1508
  data?: any;
1509
- };
1509
+ } | null;
1510
1510
  url: string | null;
1511
1511
  }[];
1512
1512
  }>;
@@ -1529,12 +1529,12 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1529
1529
  isPaidSlot: boolean;
1530
1530
  title: string | null;
1531
1531
  description: string | null;
1532
- thumbnal: {
1532
+ thumbnail: {
1533
1533
  kind: "delete";
1534
1534
  } | {
1535
1535
  kind: "upload";
1536
1536
  data?: any;
1537
- };
1537
+ } | null;
1538
1538
  tag: string | null;
1539
1539
  tagUrl: string | null;
1540
1540
  }[];
@@ -1546,7 +1546,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1546
1546
  } | {
1547
1547
  kind: "upload";
1548
1548
  data?: any;
1549
- };
1549
+ } | null;
1550
1550
  url: string | null;
1551
1551
  }[];
1552
1552
  };
@@ -1570,12 +1570,12 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1570
1570
  isPaidSlot: boolean;
1571
1571
  title: string | null;
1572
1572
  description: string | null;
1573
- thumbnal: {
1573
+ thumbnail: {
1574
1574
  kind: "delete";
1575
1575
  } | {
1576
1576
  kind: "upload";
1577
1577
  data?: any;
1578
- };
1578
+ } | null;
1579
1579
  tag: string | null;
1580
1580
  tagUrl: string | null;
1581
1581
  }[];
@@ -1587,7 +1587,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
1587
1587
  } | {
1588
1588
  kind: "upload";
1589
1589
  data?: any;
1590
- };
1590
+ } | null;
1591
1591
  url: string | null;
1592
1592
  }[];
1593
1593
  };
@@ -2102,7 +2102,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2102
2102
  isPaidSlot: z.ZodBoolean;
2103
2103
  title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2104
2104
  description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2105
- thumbnal: z.ZodUnion<[z.ZodObject<{
2105
+ thumbnail: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2106
2106
  kind: z.ZodLiteral<"upload">;
2107
2107
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
2108
2108
  }, "strip", z.ZodTypeAny, {
@@ -2117,7 +2117,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2117
2117
  kind: "delete";
2118
2118
  }, {
2119
2119
  kind: "delete";
2120
- }>]>;
2120
+ }>]>, z.ZodNull]>;
2121
2121
  tag: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2122
2122
  tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2123
2123
  }, "strip", z.ZodTypeAny, {
@@ -2127,12 +2127,12 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2127
2127
  isPaidSlot: boolean;
2128
2128
  title: string | null;
2129
2129
  description: string | null;
2130
- thumbnal: {
2130
+ thumbnail: {
2131
2131
  kind: "delete";
2132
2132
  } | {
2133
2133
  kind: "upload";
2134
2134
  data?: any;
2135
- };
2135
+ } | null;
2136
2136
  tag: string | null;
2137
2137
  tagUrl: string | null;
2138
2138
  }, {
@@ -2142,19 +2142,19 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2142
2142
  isPaidSlot: boolean;
2143
2143
  title: string | null;
2144
2144
  description: string | null;
2145
- thumbnal: {
2145
+ thumbnail: {
2146
2146
  kind: "delete";
2147
2147
  } | {
2148
2148
  kind: "upload";
2149
2149
  data?: any;
2150
- };
2150
+ } | null;
2151
2151
  tag: string | null;
2152
2152
  tagUrl: string | null;
2153
2153
  }>, "many">;
2154
2154
  banners: z.ZodArray<z.ZodObject<{
2155
2155
  id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
2156
2156
  order: z.ZodNumber;
2157
- image: z.ZodUnion<[z.ZodObject<{
2157
+ image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2158
2158
  kind: z.ZodLiteral<"upload">;
2159
2159
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
2160
2160
  }, "strip", z.ZodTypeAny, {
@@ -2169,7 +2169,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2169
2169
  kind: "delete";
2170
2170
  }, {
2171
2171
  kind: "delete";
2172
- }>]>;
2172
+ }>]>, z.ZodNull]>;
2173
2173
  url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2174
2174
  }, "strip", z.ZodTypeAny, {
2175
2175
  id: number | null;
@@ -2179,7 +2179,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2179
2179
  } | {
2180
2180
  kind: "upload";
2181
2181
  data?: any;
2182
- };
2182
+ } | null;
2183
2183
  url: string | null;
2184
2184
  }, {
2185
2185
  id: number | null;
@@ -2189,7 +2189,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2189
2189
  } | {
2190
2190
  kind: "upload";
2191
2191
  data?: any;
2192
- };
2192
+ } | null;
2193
2193
  url: string | null;
2194
2194
  }>, "many">;
2195
2195
  }, "strip", z.ZodTypeAny, {
@@ -2208,12 +2208,12 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2208
2208
  isPaidSlot: boolean;
2209
2209
  title: string | null;
2210
2210
  description: string | null;
2211
- thumbnal: {
2211
+ thumbnail: {
2212
2212
  kind: "delete";
2213
2213
  } | {
2214
2214
  kind: "upload";
2215
2215
  data?: any;
2216
- };
2216
+ } | null;
2217
2217
  tag: string | null;
2218
2218
  tagUrl: string | null;
2219
2219
  }[];
@@ -2225,7 +2225,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2225
2225
  } | {
2226
2226
  kind: "upload";
2227
2227
  data?: any;
2228
- };
2228
+ } | null;
2229
2229
  url: string | null;
2230
2230
  }[];
2231
2231
  }, {
@@ -2244,12 +2244,12 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2244
2244
  isPaidSlot: boolean;
2245
2245
  title: string | null;
2246
2246
  description: string | null;
2247
- thumbnal: {
2247
+ thumbnail: {
2248
2248
  kind: "delete";
2249
2249
  } | {
2250
2250
  kind: "upload";
2251
2251
  data?: any;
2252
- };
2252
+ } | null;
2253
2253
  tag: string | null;
2254
2254
  tagUrl: string | null;
2255
2255
  }[];
@@ -2261,7 +2261,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2261
2261
  } | {
2262
2262
  kind: "upload";
2263
2263
  data?: any;
2264
- };
2264
+ } | null;
2265
2265
  url: string | null;
2266
2266
  }[];
2267
2267
  }>;
@@ -2284,12 +2284,12 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2284
2284
  isPaidSlot: boolean;
2285
2285
  title: string | null;
2286
2286
  description: string | null;
2287
- thumbnal: {
2287
+ thumbnail: {
2288
2288
  kind: "delete";
2289
2289
  } | {
2290
2290
  kind: "upload";
2291
2291
  data?: any;
2292
- };
2292
+ } | null;
2293
2293
  tag: string | null;
2294
2294
  tagUrl: string | null;
2295
2295
  }[];
@@ -2301,7 +2301,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2301
2301
  } | {
2302
2302
  kind: "upload";
2303
2303
  data?: any;
2304
- };
2304
+ } | null;
2305
2305
  url: string | null;
2306
2306
  }[];
2307
2307
  };
@@ -2325,12 +2325,12 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2325
2325
  isPaidSlot: boolean;
2326
2326
  title: string | null;
2327
2327
  description: string | null;
2328
- thumbnal: {
2328
+ thumbnail: {
2329
2329
  kind: "delete";
2330
2330
  } | {
2331
2331
  kind: "upload";
2332
2332
  data?: any;
2333
- };
2333
+ } | null;
2334
2334
  tag: string | null;
2335
2335
  tagUrl: string | null;
2336
2336
  }[];
@@ -2342,7 +2342,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
2342
2342
  } | {
2343
2343
  kind: "upload";
2344
2344
  data?: any;
2345
- };
2345
+ } | null;
2346
2346
  url: string | null;
2347
2347
  }[];
2348
2348
  };
@@ -2831,7 +2831,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2831
2831
  isPaidSlot: z.ZodBoolean;
2832
2832
  title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2833
2833
  description: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2834
- thumbnal: z.ZodUnion<[z.ZodObject<{
2834
+ thumbnail: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2835
2835
  kind: z.ZodLiteral<"upload">;
2836
2836
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
2837
2837
  }, "strip", z.ZodTypeAny, {
@@ -2846,7 +2846,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2846
2846
  kind: "delete";
2847
2847
  }, {
2848
2848
  kind: "delete";
2849
- }>]>;
2849
+ }>]>, z.ZodNull]>;
2850
2850
  tag: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2851
2851
  tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2852
2852
  }, "strip", z.ZodTypeAny, {
@@ -2856,12 +2856,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2856
2856
  isPaidSlot: boolean;
2857
2857
  title: string | null;
2858
2858
  description: string | null;
2859
- thumbnal: {
2859
+ thumbnail: {
2860
2860
  kind: "delete";
2861
2861
  } | {
2862
2862
  kind: "upload";
2863
2863
  data?: any;
2864
- };
2864
+ } | null;
2865
2865
  tag: string | null;
2866
2866
  tagUrl: string | null;
2867
2867
  }, {
@@ -2871,19 +2871,19 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2871
2871
  isPaidSlot: boolean;
2872
2872
  title: string | null;
2873
2873
  description: string | null;
2874
- thumbnal: {
2874
+ thumbnail: {
2875
2875
  kind: "delete";
2876
2876
  } | {
2877
2877
  kind: "upload";
2878
2878
  data?: any;
2879
- };
2879
+ } | null;
2880
2880
  tag: string | null;
2881
2881
  tagUrl: string | null;
2882
2882
  }>, "many">;
2883
2883
  banners: z.ZodArray<z.ZodObject<{
2884
2884
  id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
2885
2885
  order: z.ZodNumber;
2886
- image: z.ZodUnion<[z.ZodObject<{
2886
+ image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2887
2887
  kind: z.ZodLiteral<"upload">;
2888
2888
  data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
2889
2889
  }, "strip", z.ZodTypeAny, {
@@ -2898,7 +2898,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2898
2898
  kind: "delete";
2899
2899
  }, {
2900
2900
  kind: "delete";
2901
- }>]>;
2901
+ }>]>, z.ZodNull]>;
2902
2902
  url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
2903
2903
  }, "strip", z.ZodTypeAny, {
2904
2904
  id: number | null;
@@ -2908,7 +2908,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2908
2908
  } | {
2909
2909
  kind: "upload";
2910
2910
  data?: any;
2911
- };
2911
+ } | null;
2912
2912
  url: string | null;
2913
2913
  }, {
2914
2914
  id: number | null;
@@ -2918,7 +2918,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2918
2918
  } | {
2919
2919
  kind: "upload";
2920
2920
  data?: any;
2921
- };
2921
+ } | null;
2922
2922
  url: string | null;
2923
2923
  }>, "many">;
2924
2924
  }, "strip", z.ZodTypeAny, {
@@ -2937,12 +2937,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2937
2937
  isPaidSlot: boolean;
2938
2938
  title: string | null;
2939
2939
  description: string | null;
2940
- thumbnal: {
2940
+ thumbnail: {
2941
2941
  kind: "delete";
2942
2942
  } | {
2943
2943
  kind: "upload";
2944
2944
  data?: any;
2945
- };
2945
+ } | null;
2946
2946
  tag: string | null;
2947
2947
  tagUrl: string | null;
2948
2948
  }[];
@@ -2954,7 +2954,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2954
2954
  } | {
2955
2955
  kind: "upload";
2956
2956
  data?: any;
2957
- };
2957
+ } | null;
2958
2958
  url: string | null;
2959
2959
  }[];
2960
2960
  }, {
@@ -2973,12 +2973,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2973
2973
  isPaidSlot: boolean;
2974
2974
  title: string | null;
2975
2975
  description: string | null;
2976
- thumbnal: {
2976
+ thumbnail: {
2977
2977
  kind: "delete";
2978
2978
  } | {
2979
2979
  kind: "upload";
2980
2980
  data?: any;
2981
- };
2981
+ } | null;
2982
2982
  tag: string | null;
2983
2983
  tagUrl: string | null;
2984
2984
  }[];
@@ -2990,7 +2990,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
2990
2990
  } | {
2991
2991
  kind: "upload";
2992
2992
  data?: any;
2993
- };
2993
+ } | null;
2994
2994
  url: string | null;
2995
2995
  }[];
2996
2996
  }>;
@@ -3013,12 +3013,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3013
3013
  isPaidSlot: boolean;
3014
3014
  title: string | null;
3015
3015
  description: string | null;
3016
- thumbnal: {
3016
+ thumbnail: {
3017
3017
  kind: "delete";
3018
3018
  } | {
3019
3019
  kind: "upload";
3020
3020
  data?: any;
3021
- };
3021
+ } | null;
3022
3022
  tag: string | null;
3023
3023
  tagUrl: string | null;
3024
3024
  }[];
@@ -3030,7 +3030,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3030
3030
  } | {
3031
3031
  kind: "upload";
3032
3032
  data?: any;
3033
- };
3033
+ } | null;
3034
3034
  url: string | null;
3035
3035
  }[];
3036
3036
  };
@@ -3054,12 +3054,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3054
3054
  isPaidSlot: boolean;
3055
3055
  title: string | null;
3056
3056
  description: string | null;
3057
- thumbnal: {
3057
+ thumbnail: {
3058
3058
  kind: "delete";
3059
3059
  } | {
3060
3060
  kind: "upload";
3061
3061
  data?: any;
3062
- };
3062
+ } | null;
3063
3063
  tag: string | null;
3064
3064
  tagUrl: string | null;
3065
3065
  }[];
@@ -3071,7 +3071,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3071
3071
  } | {
3072
3072
  kind: "upload";
3073
3073
  data?: any;
3074
- };
3074
+ } | null;
3075
3075
  url: string | null;
3076
3076
  }[];
3077
3077
  };
@@ -3097,12 +3097,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3097
3097
  isPaidSlot: boolean;
3098
3098
  title: string | null;
3099
3099
  description: string | null;
3100
- thumbnal: {
3100
+ thumbnail: {
3101
3101
  kind: "delete";
3102
3102
  } | {
3103
3103
  kind: "upload";
3104
3104
  data?: any;
3105
- };
3105
+ } | null;
3106
3106
  tag: string | null;
3107
3107
  tagUrl: string | null;
3108
3108
  }[];
@@ -3114,7 +3114,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3114
3114
  } | {
3115
3115
  kind: "upload";
3116
3116
  data?: any;
3117
- };
3117
+ } | null;
3118
3118
  url: string | null;
3119
3119
  }[];
3120
3120
  };
@@ -3157,12 +3157,12 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3157
3157
  isPaidSlot: boolean;
3158
3158
  title: string | null;
3159
3159
  description: string | null;
3160
- thumbnal: {
3160
+ thumbnail: {
3161
3161
  kind: "delete";
3162
3162
  } | {
3163
3163
  kind: "upload";
3164
3164
  data?: any;
3165
- };
3165
+ } | null;
3166
3166
  tag: string | null;
3167
3167
  tagUrl: string | null;
3168
3168
  }[];
@@ -3174,7 +3174,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
3174
3174
  } | {
3175
3175
  kind: "upload";
3176
3176
  data?: any;
3177
- };
3177
+ } | null;
3178
3178
  url: string | null;
3179
3179
  }[];
3180
3180
  };