@readyfor/api-client-pigeon 0.186.1 → 0.187.0-pr966.2a2ff0b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-JZJ7KYE5.mjs → chunk-324IXKQ7.mjs} +2 -2
- package/dist/{chunk-ORKTO7TR.mjs → chunk-IWONQAFN.mjs} +1 -1
- package/dist/{chunk-FRWLI2P2.mjs → chunk-JGIFSXIQ.mjs} +1 -1
- package/dist/{chunk-UVDRZ7A2.mjs → chunk-LXUPJN65.mjs} +1 -1
- package/dist/{chunk-63JYQ6LP.mjs → chunk-OFV6CH56.mjs} +1 -1
- package/dist/{chunk-VKFFX2VH.mjs → chunk-SWDMGLLG.mjs} +1 -1
- package/dist/{chunk-CHSZ3TFL.mjs → chunk-ZWYL7OFL.mjs} +1 -1
- package/dist/components.d.mts +140 -140
- package/dist/components.d.ts +140 -140
- package/dist/components.js +2 -2
- package/dist/components.mjs +1 -1
- package/dist/fetch/campaigns.js +2 -2
- package/dist/fetch/campaigns.mjs +2 -2
- package/dist/fetch/campaignsId.d.mts +8 -8
- package/dist/fetch/campaignsId.d.ts +8 -8
- package/dist/fetch/campaignsId.js +2 -2
- package/dist/fetch/campaignsId.mjs +2 -2
- package/dist/fetch/projectsProjectIdOrKeyword.js +2 -2
- package/dist/fetch/projectsProjectIdOrKeyword.mjs +2 -2
- package/dist/hooks/index.js +2 -2
- package/dist/hooks/index.mjs +7 -7
- package/dist/hooks/useCampaigns.js +2 -2
- package/dist/hooks/useCampaigns.mjs +5 -5
- package/dist/hooks/useCampaignsId.js +2 -2
- package/dist/hooks/useCampaignsId.mjs +5 -5
- package/dist/hooks/useProjectsProjectIdOrKeyword.js +2 -2
- package/dist/hooks/useProjectsProjectIdOrKeyword.mjs +5 -5
- package/dist/index.js +2 -2
- package/dist/index.mjs +4 -4
- package/dist/schemaType.d.mts +2 -2
- package/dist/schemaType.d.ts +2 -2
- package/package.json +10 -11
package/dist/components.d.mts
CHANGED
|
@@ -80,7 +80,7 @@ declare const PersonalizedMailMagazineTargetDeleteCsvFormData: z.ZodObject<{
|
|
|
80
80
|
}>;
|
|
81
81
|
declare const CurationMailMagazineBannerFormData: z.ZodObject<{
|
|
82
82
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
83
|
-
|
|
83
|
+
slotNumber: z.ZodNumber;
|
|
84
84
|
image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
85
85
|
kind: z.ZodLiteral<"upload">;
|
|
86
86
|
data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
|
|
@@ -100,7 +100,7 @@ declare const CurationMailMagazineBannerFormData: z.ZodObject<{
|
|
|
100
100
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
102
|
id: number | null;
|
|
103
|
-
|
|
103
|
+
slotNumber: number;
|
|
104
104
|
image: {
|
|
105
105
|
kind: "delete";
|
|
106
106
|
} | {
|
|
@@ -110,7 +110,7 @@ declare const CurationMailMagazineBannerFormData: z.ZodObject<{
|
|
|
110
110
|
url: string | null;
|
|
111
111
|
}, {
|
|
112
112
|
id: number | null;
|
|
113
|
-
|
|
113
|
+
slotNumber: number;
|
|
114
114
|
image: {
|
|
115
115
|
kind: "delete";
|
|
116
116
|
} | {
|
|
@@ -121,7 +121,7 @@ declare const CurationMailMagazineBannerFormData: z.ZodObject<{
|
|
|
121
121
|
}>;
|
|
122
122
|
declare const CurationMailMagazineProjectFormData: z.ZodObject<{
|
|
123
123
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
124
|
-
|
|
124
|
+
slotNumber: z.ZodNumber;
|
|
125
125
|
readyforProjectId: z.ZodNumber;
|
|
126
126
|
isPaidSlot: z.ZodBoolean;
|
|
127
127
|
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -146,7 +146,7 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
|
|
|
146
146
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
147
147
|
}, "strip", z.ZodTypeAny, {
|
|
148
148
|
id: number | null;
|
|
149
|
-
|
|
149
|
+
slotNumber: number;
|
|
150
150
|
readyforProjectId: number;
|
|
151
151
|
isPaidSlot: boolean;
|
|
152
152
|
title: string | null;
|
|
@@ -161,7 +161,7 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
|
|
|
161
161
|
tagUrl: string | null;
|
|
162
162
|
}, {
|
|
163
163
|
id: number | null;
|
|
164
|
-
|
|
164
|
+
slotNumber: number;
|
|
165
165
|
readyforProjectId: number;
|
|
166
166
|
isPaidSlot: boolean;
|
|
167
167
|
title: string | null;
|
|
@@ -229,13 +229,13 @@ declare const CurationMailMagazineBanner: z.ZodObject<{
|
|
|
229
229
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
230
230
|
}, "strip", z.ZodTypeAny, {
|
|
231
231
|
id: number;
|
|
232
|
-
url: string | null;
|
|
233
232
|
slotNumber: number;
|
|
233
|
+
url: string | null;
|
|
234
234
|
imageUrl: string | null;
|
|
235
235
|
}, {
|
|
236
236
|
id: number;
|
|
237
|
-
url: string | null;
|
|
238
237
|
slotNumber: number;
|
|
238
|
+
url: string | null;
|
|
239
239
|
imageUrl: string | null;
|
|
240
240
|
}>;
|
|
241
241
|
declare const CurationMailMagazineTargetProject: z.ZodObject<{
|
|
@@ -250,23 +250,23 @@ declare const CurationMailMagazineTargetProject: z.ZodObject<{
|
|
|
250
250
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
251
251
|
}, "strip", z.ZodTypeAny, {
|
|
252
252
|
id: number;
|
|
253
|
+
slotNumber: number;
|
|
253
254
|
readyforProjectId: number;
|
|
254
255
|
isPaidSlot: boolean;
|
|
255
256
|
title: string | null;
|
|
256
257
|
description: string | null;
|
|
257
258
|
tag: string | null;
|
|
258
259
|
tagUrl: string | null;
|
|
259
|
-
slotNumber: number;
|
|
260
260
|
thumbnailUrl: string | null;
|
|
261
261
|
}, {
|
|
262
262
|
id: number;
|
|
263
|
+
slotNumber: number;
|
|
263
264
|
readyforProjectId: number;
|
|
264
265
|
isPaidSlot: boolean;
|
|
265
266
|
title: string | null;
|
|
266
267
|
description: string | null;
|
|
267
268
|
tag: string | null;
|
|
268
269
|
tagUrl: string | null;
|
|
269
|
-
slotNumber: number;
|
|
270
270
|
thumbnailUrl: string | null;
|
|
271
271
|
}>;
|
|
272
272
|
declare const CurationMailMagazineTarget: z.ZodObject<{
|
|
@@ -314,7 +314,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
314
314
|
}>, "many">;
|
|
315
315
|
projects: z.ZodArray<z.ZodObject<{
|
|
316
316
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
317
|
-
|
|
317
|
+
slotNumber: z.ZodNumber;
|
|
318
318
|
readyforProjectId: z.ZodNumber;
|
|
319
319
|
isPaidSlot: z.ZodBoolean;
|
|
320
320
|
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -339,7 +339,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
339
339
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
340
340
|
}, "strip", z.ZodTypeAny, {
|
|
341
341
|
id: number | null;
|
|
342
|
-
|
|
342
|
+
slotNumber: number;
|
|
343
343
|
readyforProjectId: number;
|
|
344
344
|
isPaidSlot: boolean;
|
|
345
345
|
title: string | null;
|
|
@@ -354,7 +354,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
354
354
|
tagUrl: string | null;
|
|
355
355
|
}, {
|
|
356
356
|
id: number | null;
|
|
357
|
-
|
|
357
|
+
slotNumber: number;
|
|
358
358
|
readyforProjectId: number;
|
|
359
359
|
isPaidSlot: boolean;
|
|
360
360
|
title: string | null;
|
|
@@ -370,7 +370,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
370
370
|
}>, "many">;
|
|
371
371
|
banners: z.ZodArray<z.ZodObject<{
|
|
372
372
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
373
|
-
|
|
373
|
+
slotNumber: z.ZodNumber;
|
|
374
374
|
image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
375
375
|
kind: z.ZodLiteral<"upload">;
|
|
376
376
|
data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
|
|
@@ -390,7 +390,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
390
390
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
391
391
|
}, "strip", z.ZodTypeAny, {
|
|
392
392
|
id: number | null;
|
|
393
|
-
|
|
393
|
+
slotNumber: number;
|
|
394
394
|
image: {
|
|
395
395
|
kind: "delete";
|
|
396
396
|
} | {
|
|
@@ -400,7 +400,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
400
400
|
url: string | null;
|
|
401
401
|
}, {
|
|
402
402
|
id: number | null;
|
|
403
|
-
|
|
403
|
+
slotNumber: number;
|
|
404
404
|
image: {
|
|
405
405
|
kind: "delete";
|
|
406
406
|
} | {
|
|
@@ -420,7 +420,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
420
420
|
}[];
|
|
421
421
|
projects: {
|
|
422
422
|
id: number | null;
|
|
423
|
-
|
|
423
|
+
slotNumber: number;
|
|
424
424
|
readyforProjectId: number;
|
|
425
425
|
isPaidSlot: boolean;
|
|
426
426
|
title: string | null;
|
|
@@ -436,7 +436,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
436
436
|
}[];
|
|
437
437
|
banners: {
|
|
438
438
|
id: number | null;
|
|
439
|
-
|
|
439
|
+
slotNumber: number;
|
|
440
440
|
image: {
|
|
441
441
|
kind: "delete";
|
|
442
442
|
} | {
|
|
@@ -456,7 +456,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
456
456
|
}[];
|
|
457
457
|
projects: {
|
|
458
458
|
id: number | null;
|
|
459
|
-
|
|
459
|
+
slotNumber: number;
|
|
460
460
|
readyforProjectId: number;
|
|
461
461
|
isPaidSlot: boolean;
|
|
462
462
|
title: string | null;
|
|
@@ -472,7 +472,7 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
472
472
|
}[];
|
|
473
473
|
banners: {
|
|
474
474
|
id: number | null;
|
|
475
|
-
|
|
475
|
+
slotNumber: number;
|
|
476
476
|
image: {
|
|
477
477
|
kind: "delete";
|
|
478
478
|
} | {
|
|
@@ -573,23 +573,23 @@ declare const CurationMailMagazineDetail: z.ZodObject<{
|
|
|
573
573
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
id: number;
|
|
576
|
+
slotNumber: number;
|
|
576
577
|
readyforProjectId: number;
|
|
577
578
|
isPaidSlot: boolean;
|
|
578
579
|
title: string | null;
|
|
579
580
|
description: string | null;
|
|
580
581
|
tag: string | null;
|
|
581
582
|
tagUrl: string | null;
|
|
582
|
-
slotNumber: number;
|
|
583
583
|
thumbnailUrl: string | null;
|
|
584
584
|
}, {
|
|
585
585
|
id: number;
|
|
586
|
+
slotNumber: number;
|
|
586
587
|
readyforProjectId: number;
|
|
587
588
|
isPaidSlot: boolean;
|
|
588
589
|
title: string | null;
|
|
589
590
|
description: string | null;
|
|
590
591
|
tag: string | null;
|
|
591
592
|
tagUrl: string | null;
|
|
592
|
-
slotNumber: number;
|
|
593
593
|
thumbnailUrl: string | null;
|
|
594
594
|
}>, "many">;
|
|
595
595
|
banners: z.ZodArray<z.ZodObject<{
|
|
@@ -599,13 +599,13 @@ declare const CurationMailMagazineDetail: z.ZodObject<{
|
|
|
599
599
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
600
600
|
}, "strip", z.ZodTypeAny, {
|
|
601
601
|
id: number;
|
|
602
|
-
url: string | null;
|
|
603
602
|
slotNumber: number;
|
|
603
|
+
url: string | null;
|
|
604
604
|
imageUrl: string | null;
|
|
605
605
|
}, {
|
|
606
606
|
id: number;
|
|
607
|
-
url: string | null;
|
|
608
607
|
slotNumber: number;
|
|
608
|
+
url: string | null;
|
|
609
609
|
imageUrl: string | null;
|
|
610
610
|
}>, "many">;
|
|
611
611
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -619,19 +619,19 @@ declare const CurationMailMagazineDetail: z.ZodObject<{
|
|
|
619
619
|
}[];
|
|
620
620
|
projects: {
|
|
621
621
|
id: number;
|
|
622
|
+
slotNumber: number;
|
|
622
623
|
readyforProjectId: number;
|
|
623
624
|
isPaidSlot: boolean;
|
|
624
625
|
title: string | null;
|
|
625
626
|
description: string | null;
|
|
626
627
|
tag: string | null;
|
|
627
628
|
tagUrl: string | null;
|
|
628
|
-
slotNumber: number;
|
|
629
629
|
thumbnailUrl: string | null;
|
|
630
630
|
}[];
|
|
631
631
|
banners: {
|
|
632
632
|
id: number;
|
|
633
|
-
url: string | null;
|
|
634
633
|
slotNumber: number;
|
|
634
|
+
url: string | null;
|
|
635
635
|
imageUrl: string | null;
|
|
636
636
|
}[];
|
|
637
637
|
deliveredUsersCount: number | null;
|
|
@@ -646,19 +646,19 @@ declare const CurationMailMagazineDetail: z.ZodObject<{
|
|
|
646
646
|
}[];
|
|
647
647
|
projects: {
|
|
648
648
|
id: number;
|
|
649
|
+
slotNumber: number;
|
|
649
650
|
readyforProjectId: number;
|
|
650
651
|
isPaidSlot: boolean;
|
|
651
652
|
title: string | null;
|
|
652
653
|
description: string | null;
|
|
653
654
|
tag: string | null;
|
|
654
655
|
tagUrl: string | null;
|
|
655
|
-
slotNumber: number;
|
|
656
656
|
thumbnailUrl: string | null;
|
|
657
657
|
}[];
|
|
658
658
|
banners: {
|
|
659
659
|
id: number;
|
|
660
|
-
url: string | null;
|
|
661
660
|
slotNumber: number;
|
|
661
|
+
url: string | null;
|
|
662
662
|
imageUrl: string | null;
|
|
663
663
|
}[];
|
|
664
664
|
deliveredUsersCount: number | null;
|
|
@@ -715,7 +715,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
715
715
|
}>, "many">;
|
|
716
716
|
projects: z.ZodArray<z.ZodObject<{
|
|
717
717
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
718
|
-
|
|
718
|
+
slotNumber: z.ZodNumber;
|
|
719
719
|
readyforProjectId: z.ZodNumber;
|
|
720
720
|
isPaidSlot: z.ZodBoolean;
|
|
721
721
|
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -740,7 +740,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
740
740
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
741
741
|
}, "strip", z.ZodTypeAny, {
|
|
742
742
|
id: number | null;
|
|
743
|
-
|
|
743
|
+
slotNumber: number;
|
|
744
744
|
readyforProjectId: number;
|
|
745
745
|
isPaidSlot: boolean;
|
|
746
746
|
title: string | null;
|
|
@@ -755,7 +755,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
755
755
|
tagUrl: string | null;
|
|
756
756
|
}, {
|
|
757
757
|
id: number | null;
|
|
758
|
-
|
|
758
|
+
slotNumber: number;
|
|
759
759
|
readyforProjectId: number;
|
|
760
760
|
isPaidSlot: boolean;
|
|
761
761
|
title: string | null;
|
|
@@ -771,7 +771,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
771
771
|
}>, "many">;
|
|
772
772
|
banners: z.ZodArray<z.ZodObject<{
|
|
773
773
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
774
|
-
|
|
774
|
+
slotNumber: z.ZodNumber;
|
|
775
775
|
image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
776
776
|
kind: z.ZodLiteral<"upload">;
|
|
777
777
|
data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
|
|
@@ -791,7 +791,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
791
791
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
792
792
|
}, "strip", z.ZodTypeAny, {
|
|
793
793
|
id: number | null;
|
|
794
|
-
|
|
794
|
+
slotNumber: number;
|
|
795
795
|
image: {
|
|
796
796
|
kind: "delete";
|
|
797
797
|
} | {
|
|
@@ -801,7 +801,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
801
801
|
url: string | null;
|
|
802
802
|
}, {
|
|
803
803
|
id: number | null;
|
|
804
|
-
|
|
804
|
+
slotNumber: number;
|
|
805
805
|
image: {
|
|
806
806
|
kind: "delete";
|
|
807
807
|
} | {
|
|
@@ -821,7 +821,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
821
821
|
}[];
|
|
822
822
|
projects: {
|
|
823
823
|
id: number | null;
|
|
824
|
-
|
|
824
|
+
slotNumber: number;
|
|
825
825
|
readyforProjectId: number;
|
|
826
826
|
isPaidSlot: boolean;
|
|
827
827
|
title: string | null;
|
|
@@ -837,7 +837,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
837
837
|
}[];
|
|
838
838
|
banners: {
|
|
839
839
|
id: number | null;
|
|
840
|
-
|
|
840
|
+
slotNumber: number;
|
|
841
841
|
image: {
|
|
842
842
|
kind: "delete";
|
|
843
843
|
} | {
|
|
@@ -857,7 +857,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
857
857
|
}[];
|
|
858
858
|
projects: {
|
|
859
859
|
id: number | null;
|
|
860
|
-
|
|
860
|
+
slotNumber: number;
|
|
861
861
|
readyforProjectId: number;
|
|
862
862
|
isPaidSlot: boolean;
|
|
863
863
|
title: string | null;
|
|
@@ -873,7 +873,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
873
873
|
}[];
|
|
874
874
|
banners: {
|
|
875
875
|
id: number | null;
|
|
876
|
-
|
|
876
|
+
slotNumber: number;
|
|
877
877
|
image: {
|
|
878
878
|
kind: "delete";
|
|
879
879
|
} | {
|
|
@@ -896,7 +896,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
896
896
|
}[];
|
|
897
897
|
projects: {
|
|
898
898
|
id: number | null;
|
|
899
|
-
|
|
899
|
+
slotNumber: number;
|
|
900
900
|
readyforProjectId: number;
|
|
901
901
|
isPaidSlot: boolean;
|
|
902
902
|
title: string | null;
|
|
@@ -912,7 +912,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
912
912
|
}[];
|
|
913
913
|
banners: {
|
|
914
914
|
id: number | null;
|
|
915
|
-
|
|
915
|
+
slotNumber: number;
|
|
916
916
|
image: {
|
|
917
917
|
kind: "delete";
|
|
918
918
|
} | {
|
|
@@ -935,7 +935,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
935
935
|
}[];
|
|
936
936
|
projects: {
|
|
937
937
|
id: number | null;
|
|
938
|
-
|
|
938
|
+
slotNumber: number;
|
|
939
939
|
readyforProjectId: number;
|
|
940
940
|
isPaidSlot: boolean;
|
|
941
941
|
title: string | null;
|
|
@@ -951,7 +951,7 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
951
951
|
}[];
|
|
952
952
|
banners: {
|
|
953
953
|
id: number | null;
|
|
954
|
-
|
|
954
|
+
slotNumber: number;
|
|
955
955
|
image: {
|
|
956
956
|
kind: "delete";
|
|
957
957
|
} | {
|
|
@@ -1098,23 +1098,23 @@ declare const CampaignDetailKindDataCurationMailMagazine: z.ZodObject<{
|
|
|
1098
1098
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1099
1099
|
}, "strip", z.ZodTypeAny, {
|
|
1100
1100
|
id: number;
|
|
1101
|
+
slotNumber: number;
|
|
1101
1102
|
readyforProjectId: number;
|
|
1102
1103
|
isPaidSlot: boolean;
|
|
1103
1104
|
title: string | null;
|
|
1104
1105
|
description: string | null;
|
|
1105
1106
|
tag: string | null;
|
|
1106
1107
|
tagUrl: string | null;
|
|
1107
|
-
slotNumber: number;
|
|
1108
1108
|
thumbnailUrl: string | null;
|
|
1109
1109
|
}, {
|
|
1110
1110
|
id: number;
|
|
1111
|
+
slotNumber: number;
|
|
1111
1112
|
readyforProjectId: number;
|
|
1112
1113
|
isPaidSlot: boolean;
|
|
1113
1114
|
title: string | null;
|
|
1114
1115
|
description: string | null;
|
|
1115
1116
|
tag: string | null;
|
|
1116
1117
|
tagUrl: string | null;
|
|
1117
|
-
slotNumber: number;
|
|
1118
1118
|
thumbnailUrl: string | null;
|
|
1119
1119
|
}>, "many">;
|
|
1120
1120
|
banners: z.ZodArray<z.ZodObject<{
|
|
@@ -1124,13 +1124,13 @@ declare const CampaignDetailKindDataCurationMailMagazine: z.ZodObject<{
|
|
|
1124
1124
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1125
1125
|
}, "strip", z.ZodTypeAny, {
|
|
1126
1126
|
id: number;
|
|
1127
|
-
url: string | null;
|
|
1128
1127
|
slotNumber: number;
|
|
1128
|
+
url: string | null;
|
|
1129
1129
|
imageUrl: string | null;
|
|
1130
1130
|
}, {
|
|
1131
1131
|
id: number;
|
|
1132
|
-
url: string | null;
|
|
1133
1132
|
slotNumber: number;
|
|
1133
|
+
url: string | null;
|
|
1134
1134
|
imageUrl: string | null;
|
|
1135
1135
|
}>, "many">;
|
|
1136
1136
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1144,19 +1144,19 @@ declare const CampaignDetailKindDataCurationMailMagazine: z.ZodObject<{
|
|
|
1144
1144
|
}[];
|
|
1145
1145
|
projects: {
|
|
1146
1146
|
id: number;
|
|
1147
|
+
slotNumber: number;
|
|
1147
1148
|
readyforProjectId: number;
|
|
1148
1149
|
isPaidSlot: boolean;
|
|
1149
1150
|
title: string | null;
|
|
1150
1151
|
description: string | null;
|
|
1151
1152
|
tag: string | null;
|
|
1152
1153
|
tagUrl: string | null;
|
|
1153
|
-
slotNumber: number;
|
|
1154
1154
|
thumbnailUrl: string | null;
|
|
1155
1155
|
}[];
|
|
1156
1156
|
banners: {
|
|
1157
1157
|
id: number;
|
|
1158
|
-
url: string | null;
|
|
1159
1158
|
slotNumber: number;
|
|
1159
|
+
url: string | null;
|
|
1160
1160
|
imageUrl: string | null;
|
|
1161
1161
|
}[];
|
|
1162
1162
|
deliveredUsersCount: number | null;
|
|
@@ -1171,19 +1171,19 @@ declare const CampaignDetailKindDataCurationMailMagazine: z.ZodObject<{
|
|
|
1171
1171
|
}[];
|
|
1172
1172
|
projects: {
|
|
1173
1173
|
id: number;
|
|
1174
|
+
slotNumber: number;
|
|
1174
1175
|
readyforProjectId: number;
|
|
1175
1176
|
isPaidSlot: boolean;
|
|
1176
1177
|
title: string | null;
|
|
1177
1178
|
description: string | null;
|
|
1178
1179
|
tag: string | null;
|
|
1179
1180
|
tagUrl: string | null;
|
|
1180
|
-
slotNumber: number;
|
|
1181
1181
|
thumbnailUrl: string | null;
|
|
1182
1182
|
}[];
|
|
1183
1183
|
banners: {
|
|
1184
1184
|
id: number;
|
|
1185
|
-
url: string | null;
|
|
1186
1185
|
slotNumber: number;
|
|
1186
|
+
url: string | null;
|
|
1187
1187
|
imageUrl: string | null;
|
|
1188
1188
|
}[];
|
|
1189
1189
|
deliveredUsersCount: number | null;
|
|
@@ -1201,19 +1201,19 @@ declare const CampaignDetailKindDataCurationMailMagazine: z.ZodObject<{
|
|
|
1201
1201
|
}[];
|
|
1202
1202
|
projects: {
|
|
1203
1203
|
id: number;
|
|
1204
|
+
slotNumber: number;
|
|
1204
1205
|
readyforProjectId: number;
|
|
1205
1206
|
isPaidSlot: boolean;
|
|
1206
1207
|
title: string | null;
|
|
1207
1208
|
description: string | null;
|
|
1208
1209
|
tag: string | null;
|
|
1209
1210
|
tagUrl: string | null;
|
|
1210
|
-
slotNumber: number;
|
|
1211
1211
|
thumbnailUrl: string | null;
|
|
1212
1212
|
}[];
|
|
1213
1213
|
banners: {
|
|
1214
1214
|
id: number;
|
|
1215
|
-
url: string | null;
|
|
1216
1215
|
slotNumber: number;
|
|
1216
|
+
url: string | null;
|
|
1217
1217
|
imageUrl: string | null;
|
|
1218
1218
|
}[];
|
|
1219
1219
|
deliveredUsersCount: number | null;
|
|
@@ -1231,19 +1231,19 @@ declare const CampaignDetailKindDataCurationMailMagazine: z.ZodObject<{
|
|
|
1231
1231
|
}[];
|
|
1232
1232
|
projects: {
|
|
1233
1233
|
id: number;
|
|
1234
|
+
slotNumber: number;
|
|
1234
1235
|
readyforProjectId: number;
|
|
1235
1236
|
isPaidSlot: boolean;
|
|
1236
1237
|
title: string | null;
|
|
1237
1238
|
description: string | null;
|
|
1238
1239
|
tag: string | null;
|
|
1239
1240
|
tagUrl: string | null;
|
|
1240
|
-
slotNumber: number;
|
|
1241
1241
|
thumbnailUrl: string | null;
|
|
1242
1242
|
}[];
|
|
1243
1243
|
banners: {
|
|
1244
1244
|
id: number;
|
|
1245
|
-
url: string | null;
|
|
1246
1245
|
slotNumber: number;
|
|
1246
|
+
url: string | null;
|
|
1247
1247
|
imageUrl: string | null;
|
|
1248
1248
|
}[];
|
|
1249
1249
|
deliveredUsersCount: number | null;
|
|
@@ -1342,7 +1342,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1342
1342
|
}>, "many">;
|
|
1343
1343
|
projects: z.ZodArray<z.ZodObject<{
|
|
1344
1344
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
1345
|
-
|
|
1345
|
+
slotNumber: z.ZodNumber;
|
|
1346
1346
|
readyforProjectId: z.ZodNumber;
|
|
1347
1347
|
isPaidSlot: z.ZodBoolean;
|
|
1348
1348
|
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -1367,7 +1367,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1367
1367
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1368
1368
|
}, "strip", z.ZodTypeAny, {
|
|
1369
1369
|
id: number | null;
|
|
1370
|
-
|
|
1370
|
+
slotNumber: number;
|
|
1371
1371
|
readyforProjectId: number;
|
|
1372
1372
|
isPaidSlot: boolean;
|
|
1373
1373
|
title: string | null;
|
|
@@ -1382,7 +1382,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1382
1382
|
tagUrl: string | null;
|
|
1383
1383
|
}, {
|
|
1384
1384
|
id: number | null;
|
|
1385
|
-
|
|
1385
|
+
slotNumber: number;
|
|
1386
1386
|
readyforProjectId: number;
|
|
1387
1387
|
isPaidSlot: boolean;
|
|
1388
1388
|
title: string | null;
|
|
@@ -1398,7 +1398,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1398
1398
|
}>, "many">;
|
|
1399
1399
|
banners: z.ZodArray<z.ZodObject<{
|
|
1400
1400
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
1401
|
-
|
|
1401
|
+
slotNumber: z.ZodNumber;
|
|
1402
1402
|
image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
1403
1403
|
kind: z.ZodLiteral<"upload">;
|
|
1404
1404
|
data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
|
|
@@ -1418,7 +1418,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1418
1418
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1419
1419
|
}, "strip", z.ZodTypeAny, {
|
|
1420
1420
|
id: number | null;
|
|
1421
|
-
|
|
1421
|
+
slotNumber: number;
|
|
1422
1422
|
image: {
|
|
1423
1423
|
kind: "delete";
|
|
1424
1424
|
} | {
|
|
@@ -1428,7 +1428,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1428
1428
|
url: string | null;
|
|
1429
1429
|
}, {
|
|
1430
1430
|
id: number | null;
|
|
1431
|
-
|
|
1431
|
+
slotNumber: number;
|
|
1432
1432
|
image: {
|
|
1433
1433
|
kind: "delete";
|
|
1434
1434
|
} | {
|
|
@@ -1448,7 +1448,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1448
1448
|
}[];
|
|
1449
1449
|
projects: {
|
|
1450
1450
|
id: number | null;
|
|
1451
|
-
|
|
1451
|
+
slotNumber: number;
|
|
1452
1452
|
readyforProjectId: number;
|
|
1453
1453
|
isPaidSlot: boolean;
|
|
1454
1454
|
title: string | null;
|
|
@@ -1464,7 +1464,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1464
1464
|
}[];
|
|
1465
1465
|
banners: {
|
|
1466
1466
|
id: number | null;
|
|
1467
|
-
|
|
1467
|
+
slotNumber: number;
|
|
1468
1468
|
image: {
|
|
1469
1469
|
kind: "delete";
|
|
1470
1470
|
} | {
|
|
@@ -1484,7 +1484,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1484
1484
|
}[];
|
|
1485
1485
|
projects: {
|
|
1486
1486
|
id: number | null;
|
|
1487
|
-
|
|
1487
|
+
slotNumber: number;
|
|
1488
1488
|
readyforProjectId: number;
|
|
1489
1489
|
isPaidSlot: boolean;
|
|
1490
1490
|
title: string | null;
|
|
@@ -1500,7 +1500,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1500
1500
|
}[];
|
|
1501
1501
|
banners: {
|
|
1502
1502
|
id: number | null;
|
|
1503
|
-
|
|
1503
|
+
slotNumber: number;
|
|
1504
1504
|
image: {
|
|
1505
1505
|
kind: "delete";
|
|
1506
1506
|
} | {
|
|
@@ -1524,7 +1524,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1524
1524
|
}[];
|
|
1525
1525
|
projects: {
|
|
1526
1526
|
id: number | null;
|
|
1527
|
-
|
|
1527
|
+
slotNumber: number;
|
|
1528
1528
|
readyforProjectId: number;
|
|
1529
1529
|
isPaidSlot: boolean;
|
|
1530
1530
|
title: string | null;
|
|
@@ -1540,7 +1540,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1540
1540
|
}[];
|
|
1541
1541
|
banners: {
|
|
1542
1542
|
id: number | null;
|
|
1543
|
-
|
|
1543
|
+
slotNumber: number;
|
|
1544
1544
|
image: {
|
|
1545
1545
|
kind: "delete";
|
|
1546
1546
|
} | {
|
|
@@ -1565,7 +1565,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1565
1565
|
}[];
|
|
1566
1566
|
projects: {
|
|
1567
1567
|
id: number | null;
|
|
1568
|
-
|
|
1568
|
+
slotNumber: number;
|
|
1569
1569
|
readyforProjectId: number;
|
|
1570
1570
|
isPaidSlot: boolean;
|
|
1571
1571
|
title: string | null;
|
|
@@ -1581,7 +1581,7 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1581
1581
|
}[];
|
|
1582
1582
|
banners: {
|
|
1583
1583
|
id: number | null;
|
|
1584
|
-
|
|
1584
|
+
slotNumber: number;
|
|
1585
1585
|
image: {
|
|
1586
1586
|
kind: "delete";
|
|
1587
1587
|
} | {
|
|
@@ -1731,23 +1731,23 @@ declare const CampaignDetailWithCurationMailMagazine: z.ZodObject<z.objectUtil.e
|
|
|
1731
1731
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1732
1732
|
}, "strip", z.ZodTypeAny, {
|
|
1733
1733
|
id: number;
|
|
1734
|
+
slotNumber: number;
|
|
1734
1735
|
readyforProjectId: number;
|
|
1735
1736
|
isPaidSlot: boolean;
|
|
1736
1737
|
title: string | null;
|
|
1737
1738
|
description: string | null;
|
|
1738
1739
|
tag: string | null;
|
|
1739
1740
|
tagUrl: string | null;
|
|
1740
|
-
slotNumber: number;
|
|
1741
1741
|
thumbnailUrl: string | null;
|
|
1742
1742
|
}, {
|
|
1743
1743
|
id: number;
|
|
1744
|
+
slotNumber: number;
|
|
1744
1745
|
readyforProjectId: number;
|
|
1745
1746
|
isPaidSlot: boolean;
|
|
1746
1747
|
title: string | null;
|
|
1747
1748
|
description: string | null;
|
|
1748
1749
|
tag: string | null;
|
|
1749
1750
|
tagUrl: string | null;
|
|
1750
|
-
slotNumber: number;
|
|
1751
1751
|
thumbnailUrl: string | null;
|
|
1752
1752
|
}>, "many">;
|
|
1753
1753
|
banners: z.ZodArray<z.ZodObject<{
|
|
@@ -1757,13 +1757,13 @@ declare const CampaignDetailWithCurationMailMagazine: z.ZodObject<z.objectUtil.e
|
|
|
1757
1757
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1758
1758
|
}, "strip", z.ZodTypeAny, {
|
|
1759
1759
|
id: number;
|
|
1760
|
-
url: string | null;
|
|
1761
1760
|
slotNumber: number;
|
|
1761
|
+
url: string | null;
|
|
1762
1762
|
imageUrl: string | null;
|
|
1763
1763
|
}, {
|
|
1764
1764
|
id: number;
|
|
1765
|
-
url: string | null;
|
|
1766
1765
|
slotNumber: number;
|
|
1766
|
+
url: string | null;
|
|
1767
1767
|
imageUrl: string | null;
|
|
1768
1768
|
}>, "many">;
|
|
1769
1769
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1777,19 +1777,19 @@ declare const CampaignDetailWithCurationMailMagazine: z.ZodObject<z.objectUtil.e
|
|
|
1777
1777
|
}[];
|
|
1778
1778
|
projects: {
|
|
1779
1779
|
id: number;
|
|
1780
|
+
slotNumber: number;
|
|
1780
1781
|
readyforProjectId: number;
|
|
1781
1782
|
isPaidSlot: boolean;
|
|
1782
1783
|
title: string | null;
|
|
1783
1784
|
description: string | null;
|
|
1784
1785
|
tag: string | null;
|
|
1785
1786
|
tagUrl: string | null;
|
|
1786
|
-
slotNumber: number;
|
|
1787
1787
|
thumbnailUrl: string | null;
|
|
1788
1788
|
}[];
|
|
1789
1789
|
banners: {
|
|
1790
1790
|
id: number;
|
|
1791
|
-
url: string | null;
|
|
1792
1791
|
slotNumber: number;
|
|
1792
|
+
url: string | null;
|
|
1793
1793
|
imageUrl: string | null;
|
|
1794
1794
|
}[];
|
|
1795
1795
|
deliveredUsersCount: number | null;
|
|
@@ -1804,19 +1804,19 @@ declare const CampaignDetailWithCurationMailMagazine: z.ZodObject<z.objectUtil.e
|
|
|
1804
1804
|
}[];
|
|
1805
1805
|
projects: {
|
|
1806
1806
|
id: number;
|
|
1807
|
+
slotNumber: number;
|
|
1807
1808
|
readyforProjectId: number;
|
|
1808
1809
|
isPaidSlot: boolean;
|
|
1809
1810
|
title: string | null;
|
|
1810
1811
|
description: string | null;
|
|
1811
1812
|
tag: string | null;
|
|
1812
1813
|
tagUrl: string | null;
|
|
1813
|
-
slotNumber: number;
|
|
1814
1814
|
thumbnailUrl: string | null;
|
|
1815
1815
|
}[];
|
|
1816
1816
|
banners: {
|
|
1817
1817
|
id: number;
|
|
1818
|
-
url: string | null;
|
|
1819
1818
|
slotNumber: number;
|
|
1819
|
+
url: string | null;
|
|
1820
1820
|
imageUrl: string | null;
|
|
1821
1821
|
}[];
|
|
1822
1822
|
deliveredUsersCount: number | null;
|
|
@@ -1837,19 +1837,19 @@ declare const CampaignDetailWithCurationMailMagazine: z.ZodObject<z.objectUtil.e
|
|
|
1837
1837
|
}[];
|
|
1838
1838
|
projects: {
|
|
1839
1839
|
id: number;
|
|
1840
|
+
slotNumber: number;
|
|
1840
1841
|
readyforProjectId: number;
|
|
1841
1842
|
isPaidSlot: boolean;
|
|
1842
1843
|
title: string | null;
|
|
1843
1844
|
description: string | null;
|
|
1844
1845
|
tag: string | null;
|
|
1845
1846
|
tagUrl: string | null;
|
|
1846
|
-
slotNumber: number;
|
|
1847
1847
|
thumbnailUrl: string | null;
|
|
1848
1848
|
}[];
|
|
1849
1849
|
banners: {
|
|
1850
1850
|
id: number;
|
|
1851
|
-
url: string | null;
|
|
1852
1851
|
slotNumber: number;
|
|
1852
|
+
url: string | null;
|
|
1853
1853
|
imageUrl: string | null;
|
|
1854
1854
|
}[];
|
|
1855
1855
|
deliveredUsersCount: number | null;
|
|
@@ -1871,19 +1871,19 @@ declare const CampaignDetailWithCurationMailMagazine: z.ZodObject<z.objectUtil.e
|
|
|
1871
1871
|
}[];
|
|
1872
1872
|
projects: {
|
|
1873
1873
|
id: number;
|
|
1874
|
+
slotNumber: number;
|
|
1874
1875
|
readyforProjectId: number;
|
|
1875
1876
|
isPaidSlot: boolean;
|
|
1876
1877
|
title: string | null;
|
|
1877
1878
|
description: string | null;
|
|
1878
1879
|
tag: string | null;
|
|
1879
1880
|
tagUrl: string | null;
|
|
1880
|
-
slotNumber: number;
|
|
1881
1881
|
thumbnailUrl: string | null;
|
|
1882
1882
|
}[];
|
|
1883
1883
|
banners: {
|
|
1884
1884
|
id: number;
|
|
1885
|
-
url: string | null;
|
|
1886
1885
|
slotNumber: number;
|
|
1886
|
+
url: string | null;
|
|
1887
1887
|
imageUrl: string | null;
|
|
1888
1888
|
}[];
|
|
1889
1889
|
deliveredUsersCount: number | null;
|
|
@@ -2097,7 +2097,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2097
2097
|
}>, "many">;
|
|
2098
2098
|
projects: z.ZodArray<z.ZodObject<{
|
|
2099
2099
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
2100
|
-
|
|
2100
|
+
slotNumber: z.ZodNumber;
|
|
2101
2101
|
readyforProjectId: z.ZodNumber;
|
|
2102
2102
|
isPaidSlot: z.ZodBoolean;
|
|
2103
2103
|
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -2122,7 +2122,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2122
2122
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2123
2123
|
}, "strip", z.ZodTypeAny, {
|
|
2124
2124
|
id: number | null;
|
|
2125
|
-
|
|
2125
|
+
slotNumber: number;
|
|
2126
2126
|
readyforProjectId: number;
|
|
2127
2127
|
isPaidSlot: boolean;
|
|
2128
2128
|
title: string | null;
|
|
@@ -2137,7 +2137,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2137
2137
|
tagUrl: string | null;
|
|
2138
2138
|
}, {
|
|
2139
2139
|
id: number | null;
|
|
2140
|
-
|
|
2140
|
+
slotNumber: number;
|
|
2141
2141
|
readyforProjectId: number;
|
|
2142
2142
|
isPaidSlot: boolean;
|
|
2143
2143
|
title: string | null;
|
|
@@ -2153,7 +2153,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2153
2153
|
}>, "many">;
|
|
2154
2154
|
banners: z.ZodArray<z.ZodObject<{
|
|
2155
2155
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
2156
|
-
|
|
2156
|
+
slotNumber: z.ZodNumber;
|
|
2157
2157
|
image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
2158
2158
|
kind: z.ZodLiteral<"upload">;
|
|
2159
2159
|
data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
|
|
@@ -2173,7 +2173,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2173
2173
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2174
2174
|
}, "strip", z.ZodTypeAny, {
|
|
2175
2175
|
id: number | null;
|
|
2176
|
-
|
|
2176
|
+
slotNumber: number;
|
|
2177
2177
|
image: {
|
|
2178
2178
|
kind: "delete";
|
|
2179
2179
|
} | {
|
|
@@ -2183,7 +2183,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2183
2183
|
url: string | null;
|
|
2184
2184
|
}, {
|
|
2185
2185
|
id: number | null;
|
|
2186
|
-
|
|
2186
|
+
slotNumber: number;
|
|
2187
2187
|
image: {
|
|
2188
2188
|
kind: "delete";
|
|
2189
2189
|
} | {
|
|
@@ -2203,7 +2203,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2203
2203
|
}[];
|
|
2204
2204
|
projects: {
|
|
2205
2205
|
id: number | null;
|
|
2206
|
-
|
|
2206
|
+
slotNumber: number;
|
|
2207
2207
|
readyforProjectId: number;
|
|
2208
2208
|
isPaidSlot: boolean;
|
|
2209
2209
|
title: string | null;
|
|
@@ -2219,7 +2219,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2219
2219
|
}[];
|
|
2220
2220
|
banners: {
|
|
2221
2221
|
id: number | null;
|
|
2222
|
-
|
|
2222
|
+
slotNumber: number;
|
|
2223
2223
|
image: {
|
|
2224
2224
|
kind: "delete";
|
|
2225
2225
|
} | {
|
|
@@ -2239,7 +2239,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2239
2239
|
}[];
|
|
2240
2240
|
projects: {
|
|
2241
2241
|
id: number | null;
|
|
2242
|
-
|
|
2242
|
+
slotNumber: number;
|
|
2243
2243
|
readyforProjectId: number;
|
|
2244
2244
|
isPaidSlot: boolean;
|
|
2245
2245
|
title: string | null;
|
|
@@ -2255,7 +2255,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2255
2255
|
}[];
|
|
2256
2256
|
banners: {
|
|
2257
2257
|
id: number | null;
|
|
2258
|
-
|
|
2258
|
+
slotNumber: number;
|
|
2259
2259
|
image: {
|
|
2260
2260
|
kind: "delete";
|
|
2261
2261
|
} | {
|
|
@@ -2279,7 +2279,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2279
2279
|
}[];
|
|
2280
2280
|
projects: {
|
|
2281
2281
|
id: number | null;
|
|
2282
|
-
|
|
2282
|
+
slotNumber: number;
|
|
2283
2283
|
readyforProjectId: number;
|
|
2284
2284
|
isPaidSlot: boolean;
|
|
2285
2285
|
title: string | null;
|
|
@@ -2295,7 +2295,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2295
2295
|
}[];
|
|
2296
2296
|
banners: {
|
|
2297
2297
|
id: number | null;
|
|
2298
|
-
|
|
2298
|
+
slotNumber: number;
|
|
2299
2299
|
image: {
|
|
2300
2300
|
kind: "delete";
|
|
2301
2301
|
} | {
|
|
@@ -2320,7 +2320,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2320
2320
|
}[];
|
|
2321
2321
|
projects: {
|
|
2322
2322
|
id: number | null;
|
|
2323
|
-
|
|
2323
|
+
slotNumber: number;
|
|
2324
2324
|
readyforProjectId: number;
|
|
2325
2325
|
isPaidSlot: boolean;
|
|
2326
2326
|
title: string | null;
|
|
@@ -2336,7 +2336,7 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2336
2336
|
}[];
|
|
2337
2337
|
banners: {
|
|
2338
2338
|
id: number | null;
|
|
2339
|
-
|
|
2339
|
+
slotNumber: number;
|
|
2340
2340
|
image: {
|
|
2341
2341
|
kind: "delete";
|
|
2342
2342
|
} | {
|
|
@@ -2450,23 +2450,23 @@ declare const CampaignDetail: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2450
2450
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2451
2451
|
}, "strip", z.ZodTypeAny, {
|
|
2452
2452
|
id: number;
|
|
2453
|
+
slotNumber: number;
|
|
2453
2454
|
readyforProjectId: number;
|
|
2454
2455
|
isPaidSlot: boolean;
|
|
2455
2456
|
title: string | null;
|
|
2456
2457
|
description: string | null;
|
|
2457
2458
|
tag: string | null;
|
|
2458
2459
|
tagUrl: string | null;
|
|
2459
|
-
slotNumber: number;
|
|
2460
2460
|
thumbnailUrl: string | null;
|
|
2461
2461
|
}, {
|
|
2462
2462
|
id: number;
|
|
2463
|
+
slotNumber: number;
|
|
2463
2464
|
readyforProjectId: number;
|
|
2464
2465
|
isPaidSlot: boolean;
|
|
2465
2466
|
title: string | null;
|
|
2466
2467
|
description: string | null;
|
|
2467
2468
|
tag: string | null;
|
|
2468
2469
|
tagUrl: string | null;
|
|
2469
|
-
slotNumber: number;
|
|
2470
2470
|
thumbnailUrl: string | null;
|
|
2471
2471
|
}>, "many">;
|
|
2472
2472
|
banners: z.ZodArray<z.ZodObject<{
|
|
@@ -2476,13 +2476,13 @@ declare const CampaignDetail: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2476
2476
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2477
2477
|
}, "strip", z.ZodTypeAny, {
|
|
2478
2478
|
id: number;
|
|
2479
|
-
url: string | null;
|
|
2480
2479
|
slotNumber: number;
|
|
2480
|
+
url: string | null;
|
|
2481
2481
|
imageUrl: string | null;
|
|
2482
2482
|
}, {
|
|
2483
2483
|
id: number;
|
|
2484
|
-
url: string | null;
|
|
2485
2484
|
slotNumber: number;
|
|
2485
|
+
url: string | null;
|
|
2486
2486
|
imageUrl: string | null;
|
|
2487
2487
|
}>, "many">;
|
|
2488
2488
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2496,19 +2496,19 @@ declare const CampaignDetail: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2496
2496
|
}[];
|
|
2497
2497
|
projects: {
|
|
2498
2498
|
id: number;
|
|
2499
|
+
slotNumber: number;
|
|
2499
2500
|
readyforProjectId: number;
|
|
2500
2501
|
isPaidSlot: boolean;
|
|
2501
2502
|
title: string | null;
|
|
2502
2503
|
description: string | null;
|
|
2503
2504
|
tag: string | null;
|
|
2504
2505
|
tagUrl: string | null;
|
|
2505
|
-
slotNumber: number;
|
|
2506
2506
|
thumbnailUrl: string | null;
|
|
2507
2507
|
}[];
|
|
2508
2508
|
banners: {
|
|
2509
2509
|
id: number;
|
|
2510
|
-
url: string | null;
|
|
2511
2510
|
slotNumber: number;
|
|
2511
|
+
url: string | null;
|
|
2512
2512
|
imageUrl: string | null;
|
|
2513
2513
|
}[];
|
|
2514
2514
|
deliveredUsersCount: number | null;
|
|
@@ -2523,19 +2523,19 @@ declare const CampaignDetail: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2523
2523
|
}[];
|
|
2524
2524
|
projects: {
|
|
2525
2525
|
id: number;
|
|
2526
|
+
slotNumber: number;
|
|
2526
2527
|
readyforProjectId: number;
|
|
2527
2528
|
isPaidSlot: boolean;
|
|
2528
2529
|
title: string | null;
|
|
2529
2530
|
description: string | null;
|
|
2530
2531
|
tag: string | null;
|
|
2531
2532
|
tagUrl: string | null;
|
|
2532
|
-
slotNumber: number;
|
|
2533
2533
|
thumbnailUrl: string | null;
|
|
2534
2534
|
}[];
|
|
2535
2535
|
banners: {
|
|
2536
2536
|
id: number;
|
|
2537
|
-
url: string | null;
|
|
2538
2537
|
slotNumber: number;
|
|
2538
|
+
url: string | null;
|
|
2539
2539
|
imageUrl: string | null;
|
|
2540
2540
|
}[];
|
|
2541
2541
|
deliveredUsersCount: number | null;
|
|
@@ -2556,19 +2556,19 @@ declare const CampaignDetail: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2556
2556
|
}[];
|
|
2557
2557
|
projects: {
|
|
2558
2558
|
id: number;
|
|
2559
|
+
slotNumber: number;
|
|
2559
2560
|
readyforProjectId: number;
|
|
2560
2561
|
isPaidSlot: boolean;
|
|
2561
2562
|
title: string | null;
|
|
2562
2563
|
description: string | null;
|
|
2563
2564
|
tag: string | null;
|
|
2564
2565
|
tagUrl: string | null;
|
|
2565
|
-
slotNumber: number;
|
|
2566
2566
|
thumbnailUrl: string | null;
|
|
2567
2567
|
}[];
|
|
2568
2568
|
banners: {
|
|
2569
2569
|
id: number;
|
|
2570
|
-
url: string | null;
|
|
2571
2570
|
slotNumber: number;
|
|
2571
|
+
url: string | null;
|
|
2572
2572
|
imageUrl: string | null;
|
|
2573
2573
|
}[];
|
|
2574
2574
|
deliveredUsersCount: number | null;
|
|
@@ -2590,19 +2590,19 @@ declare const CampaignDetail: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2590
2590
|
}[];
|
|
2591
2591
|
projects: {
|
|
2592
2592
|
id: number;
|
|
2593
|
+
slotNumber: number;
|
|
2593
2594
|
readyforProjectId: number;
|
|
2594
2595
|
isPaidSlot: boolean;
|
|
2595
2596
|
title: string | null;
|
|
2596
2597
|
description: string | null;
|
|
2597
2598
|
tag: string | null;
|
|
2598
2599
|
tagUrl: string | null;
|
|
2599
|
-
slotNumber: number;
|
|
2600
2600
|
thumbnailUrl: string | null;
|
|
2601
2601
|
}[];
|
|
2602
2602
|
banners: {
|
|
2603
2603
|
id: number;
|
|
2604
|
-
url: string | null;
|
|
2605
2604
|
slotNumber: number;
|
|
2605
|
+
url: string | null;
|
|
2606
2606
|
imageUrl: string | null;
|
|
2607
2607
|
}[];
|
|
2608
2608
|
deliveredUsersCount: number | null;
|
|
@@ -2826,7 +2826,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2826
2826
|
}>, "many">;
|
|
2827
2827
|
projects: z.ZodArray<z.ZodObject<{
|
|
2828
2828
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
2829
|
-
|
|
2829
|
+
slotNumber: z.ZodNumber;
|
|
2830
2830
|
readyforProjectId: z.ZodNumber;
|
|
2831
2831
|
isPaidSlot: z.ZodBoolean;
|
|
2832
2832
|
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -2851,7 +2851,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2851
2851
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2852
2852
|
}, "strip", z.ZodTypeAny, {
|
|
2853
2853
|
id: number | null;
|
|
2854
|
-
|
|
2854
|
+
slotNumber: number;
|
|
2855
2855
|
readyforProjectId: number;
|
|
2856
2856
|
isPaidSlot: boolean;
|
|
2857
2857
|
title: string | null;
|
|
@@ -2866,7 +2866,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2866
2866
|
tagUrl: string | null;
|
|
2867
2867
|
}, {
|
|
2868
2868
|
id: number | null;
|
|
2869
|
-
|
|
2869
|
+
slotNumber: number;
|
|
2870
2870
|
readyforProjectId: number;
|
|
2871
2871
|
isPaidSlot: boolean;
|
|
2872
2872
|
title: string | null;
|
|
@@ -2882,7 +2882,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2882
2882
|
}>, "many">;
|
|
2883
2883
|
banners: z.ZodArray<z.ZodObject<{
|
|
2884
2884
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
2885
|
-
|
|
2885
|
+
slotNumber: z.ZodNumber;
|
|
2886
2886
|
image: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
2887
2887
|
kind: z.ZodLiteral<"upload">;
|
|
2888
2888
|
data: z.ZodUnion<[z.ZodAny, z.ZodAny]>;
|
|
@@ -2902,7 +2902,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2902
2902
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2903
2903
|
}, "strip", z.ZodTypeAny, {
|
|
2904
2904
|
id: number | null;
|
|
2905
|
-
|
|
2905
|
+
slotNumber: number;
|
|
2906
2906
|
image: {
|
|
2907
2907
|
kind: "delete";
|
|
2908
2908
|
} | {
|
|
@@ -2912,7 +2912,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2912
2912
|
url: string | null;
|
|
2913
2913
|
}, {
|
|
2914
2914
|
id: number | null;
|
|
2915
|
-
|
|
2915
|
+
slotNumber: number;
|
|
2916
2916
|
image: {
|
|
2917
2917
|
kind: "delete";
|
|
2918
2918
|
} | {
|
|
@@ -2932,7 +2932,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2932
2932
|
}[];
|
|
2933
2933
|
projects: {
|
|
2934
2934
|
id: number | null;
|
|
2935
|
-
|
|
2935
|
+
slotNumber: number;
|
|
2936
2936
|
readyforProjectId: number;
|
|
2937
2937
|
isPaidSlot: boolean;
|
|
2938
2938
|
title: string | null;
|
|
@@ -2948,7 +2948,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2948
2948
|
}[];
|
|
2949
2949
|
banners: {
|
|
2950
2950
|
id: number | null;
|
|
2951
|
-
|
|
2951
|
+
slotNumber: number;
|
|
2952
2952
|
image: {
|
|
2953
2953
|
kind: "delete";
|
|
2954
2954
|
} | {
|
|
@@ -2968,7 +2968,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2968
2968
|
}[];
|
|
2969
2969
|
projects: {
|
|
2970
2970
|
id: number | null;
|
|
2971
|
-
|
|
2971
|
+
slotNumber: number;
|
|
2972
2972
|
readyforProjectId: number;
|
|
2973
2973
|
isPaidSlot: boolean;
|
|
2974
2974
|
title: string | null;
|
|
@@ -2984,7 +2984,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2984
2984
|
}[];
|
|
2985
2985
|
banners: {
|
|
2986
2986
|
id: number | null;
|
|
2987
|
-
|
|
2987
|
+
slotNumber: number;
|
|
2988
2988
|
image: {
|
|
2989
2989
|
kind: "delete";
|
|
2990
2990
|
} | {
|
|
@@ -3008,7 +3008,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3008
3008
|
}[];
|
|
3009
3009
|
projects: {
|
|
3010
3010
|
id: number | null;
|
|
3011
|
-
|
|
3011
|
+
slotNumber: number;
|
|
3012
3012
|
readyforProjectId: number;
|
|
3013
3013
|
isPaidSlot: boolean;
|
|
3014
3014
|
title: string | null;
|
|
@@ -3024,7 +3024,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3024
3024
|
}[];
|
|
3025
3025
|
banners: {
|
|
3026
3026
|
id: number | null;
|
|
3027
|
-
|
|
3027
|
+
slotNumber: number;
|
|
3028
3028
|
image: {
|
|
3029
3029
|
kind: "delete";
|
|
3030
3030
|
} | {
|
|
@@ -3049,7 +3049,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3049
3049
|
}[];
|
|
3050
3050
|
projects: {
|
|
3051
3051
|
id: number | null;
|
|
3052
|
-
|
|
3052
|
+
slotNumber: number;
|
|
3053
3053
|
readyforProjectId: number;
|
|
3054
3054
|
isPaidSlot: boolean;
|
|
3055
3055
|
title: string | null;
|
|
@@ -3065,7 +3065,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3065
3065
|
}[];
|
|
3066
3066
|
banners: {
|
|
3067
3067
|
id: number | null;
|
|
3068
|
-
|
|
3068
|
+
slotNumber: number;
|
|
3069
3069
|
image: {
|
|
3070
3070
|
kind: "delete";
|
|
3071
3071
|
} | {
|
|
@@ -3092,7 +3092,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3092
3092
|
}[];
|
|
3093
3093
|
projects: {
|
|
3094
3094
|
id: number | null;
|
|
3095
|
-
|
|
3095
|
+
slotNumber: number;
|
|
3096
3096
|
readyforProjectId: number;
|
|
3097
3097
|
isPaidSlot: boolean;
|
|
3098
3098
|
title: string | null;
|
|
@@ -3108,7 +3108,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3108
3108
|
}[];
|
|
3109
3109
|
banners: {
|
|
3110
3110
|
id: number | null;
|
|
3111
|
-
|
|
3111
|
+
slotNumber: number;
|
|
3112
3112
|
image: {
|
|
3113
3113
|
kind: "delete";
|
|
3114
3114
|
} | {
|
|
@@ -3152,7 +3152,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3152
3152
|
}[];
|
|
3153
3153
|
projects: {
|
|
3154
3154
|
id: number | null;
|
|
3155
|
-
|
|
3155
|
+
slotNumber: number;
|
|
3156
3156
|
readyforProjectId: number;
|
|
3157
3157
|
isPaidSlot: boolean;
|
|
3158
3158
|
title: string | null;
|
|
@@ -3168,7 +3168,7 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3168
3168
|
}[];
|
|
3169
3169
|
banners: {
|
|
3170
3170
|
id: number | null;
|
|
3171
|
-
|
|
3171
|
+
slotNumber: number;
|
|
3172
3172
|
image: {
|
|
3173
3173
|
kind: "delete";
|
|
3174
3174
|
} | {
|
|
@@ -3301,23 +3301,23 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3301
3301
|
tagUrl: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
3302
3302
|
}, "strip", z.ZodTypeAny, {
|
|
3303
3303
|
id: number;
|
|
3304
|
+
slotNumber: number;
|
|
3304
3305
|
readyforProjectId: number;
|
|
3305
3306
|
isPaidSlot: boolean;
|
|
3306
3307
|
title: string | null;
|
|
3307
3308
|
description: string | null;
|
|
3308
3309
|
tag: string | null;
|
|
3309
3310
|
tagUrl: string | null;
|
|
3310
|
-
slotNumber: number;
|
|
3311
3311
|
thumbnailUrl: string | null;
|
|
3312
3312
|
}, {
|
|
3313
3313
|
id: number;
|
|
3314
|
+
slotNumber: number;
|
|
3314
3315
|
readyforProjectId: number;
|
|
3315
3316
|
isPaidSlot: boolean;
|
|
3316
3317
|
title: string | null;
|
|
3317
3318
|
description: string | null;
|
|
3318
3319
|
tag: string | null;
|
|
3319
3320
|
tagUrl: string | null;
|
|
3320
|
-
slotNumber: number;
|
|
3321
3321
|
thumbnailUrl: string | null;
|
|
3322
3322
|
}>, "many">;
|
|
3323
3323
|
banners: z.ZodArray<z.ZodObject<{
|
|
@@ -3327,13 +3327,13 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3327
3327
|
url: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
3328
3328
|
}, "strip", z.ZodTypeAny, {
|
|
3329
3329
|
id: number;
|
|
3330
|
-
url: string | null;
|
|
3331
3330
|
slotNumber: number;
|
|
3331
|
+
url: string | null;
|
|
3332
3332
|
imageUrl: string | null;
|
|
3333
3333
|
}, {
|
|
3334
3334
|
id: number;
|
|
3335
|
-
url: string | null;
|
|
3336
3335
|
slotNumber: number;
|
|
3336
|
+
url: string | null;
|
|
3337
3337
|
imageUrl: string | null;
|
|
3338
3338
|
}>, "many">;
|
|
3339
3339
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3347,19 +3347,19 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3347
3347
|
}[];
|
|
3348
3348
|
projects: {
|
|
3349
3349
|
id: number;
|
|
3350
|
+
slotNumber: number;
|
|
3350
3351
|
readyforProjectId: number;
|
|
3351
3352
|
isPaidSlot: boolean;
|
|
3352
3353
|
title: string | null;
|
|
3353
3354
|
description: string | null;
|
|
3354
3355
|
tag: string | null;
|
|
3355
3356
|
tagUrl: string | null;
|
|
3356
|
-
slotNumber: number;
|
|
3357
3357
|
thumbnailUrl: string | null;
|
|
3358
3358
|
}[];
|
|
3359
3359
|
banners: {
|
|
3360
3360
|
id: number;
|
|
3361
|
-
url: string | null;
|
|
3362
3361
|
slotNumber: number;
|
|
3362
|
+
url: string | null;
|
|
3363
3363
|
imageUrl: string | null;
|
|
3364
3364
|
}[];
|
|
3365
3365
|
deliveredUsersCount: number | null;
|
|
@@ -3374,19 +3374,19 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3374
3374
|
}[];
|
|
3375
3375
|
projects: {
|
|
3376
3376
|
id: number;
|
|
3377
|
+
slotNumber: number;
|
|
3377
3378
|
readyforProjectId: number;
|
|
3378
3379
|
isPaidSlot: boolean;
|
|
3379
3380
|
title: string | null;
|
|
3380
3381
|
description: string | null;
|
|
3381
3382
|
tag: string | null;
|
|
3382
3383
|
tagUrl: string | null;
|
|
3383
|
-
slotNumber: number;
|
|
3384
3384
|
thumbnailUrl: string | null;
|
|
3385
3385
|
}[];
|
|
3386
3386
|
banners: {
|
|
3387
3387
|
id: number;
|
|
3388
|
-
url: string | null;
|
|
3389
3388
|
slotNumber: number;
|
|
3389
|
+
url: string | null;
|
|
3390
3390
|
imageUrl: string | null;
|
|
3391
3391
|
}[];
|
|
3392
3392
|
deliveredUsersCount: number | null;
|
|
@@ -3407,19 +3407,19 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3407
3407
|
}[];
|
|
3408
3408
|
projects: {
|
|
3409
3409
|
id: number;
|
|
3410
|
+
slotNumber: number;
|
|
3410
3411
|
readyforProjectId: number;
|
|
3411
3412
|
isPaidSlot: boolean;
|
|
3412
3413
|
title: string | null;
|
|
3413
3414
|
description: string | null;
|
|
3414
3415
|
tag: string | null;
|
|
3415
3416
|
tagUrl: string | null;
|
|
3416
|
-
slotNumber: number;
|
|
3417
3417
|
thumbnailUrl: string | null;
|
|
3418
3418
|
}[];
|
|
3419
3419
|
banners: {
|
|
3420
3420
|
id: number;
|
|
3421
|
-
url: string | null;
|
|
3422
3421
|
slotNumber: number;
|
|
3422
|
+
url: string | null;
|
|
3423
3423
|
imageUrl: string | null;
|
|
3424
3424
|
}[];
|
|
3425
3425
|
deliveredUsersCount: number | null;
|
|
@@ -3441,19 +3441,19 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3441
3441
|
}[];
|
|
3442
3442
|
projects: {
|
|
3443
3443
|
id: number;
|
|
3444
|
+
slotNumber: number;
|
|
3444
3445
|
readyforProjectId: number;
|
|
3445
3446
|
isPaidSlot: boolean;
|
|
3446
3447
|
title: string | null;
|
|
3447
3448
|
description: string | null;
|
|
3448
3449
|
tag: string | null;
|
|
3449
3450
|
tagUrl: string | null;
|
|
3450
|
-
slotNumber: number;
|
|
3451
3451
|
thumbnailUrl: string | null;
|
|
3452
3452
|
}[];
|
|
3453
3453
|
banners: {
|
|
3454
3454
|
id: number;
|
|
3455
|
-
url: string | null;
|
|
3456
3455
|
slotNumber: number;
|
|
3456
|
+
url: string | null;
|
|
3457
3457
|
imageUrl: string | null;
|
|
3458
3458
|
}[];
|
|
3459
3459
|
deliveredUsersCount: number | null;
|
|
@@ -3477,19 +3477,19 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3477
3477
|
}[];
|
|
3478
3478
|
projects: {
|
|
3479
3479
|
id: number;
|
|
3480
|
+
slotNumber: number;
|
|
3480
3481
|
readyforProjectId: number;
|
|
3481
3482
|
isPaidSlot: boolean;
|
|
3482
3483
|
title: string | null;
|
|
3483
3484
|
description: string | null;
|
|
3484
3485
|
tag: string | null;
|
|
3485
3486
|
tagUrl: string | null;
|
|
3486
|
-
slotNumber: number;
|
|
3487
3487
|
thumbnailUrl: string | null;
|
|
3488
3488
|
}[];
|
|
3489
3489
|
banners: {
|
|
3490
3490
|
id: number;
|
|
3491
|
-
url: string | null;
|
|
3492
3491
|
slotNumber: number;
|
|
3492
|
+
url: string | null;
|
|
3493
3493
|
imageUrl: string | null;
|
|
3494
3494
|
}[];
|
|
3495
3495
|
deliveredUsersCount: number | null;
|
|
@@ -3527,19 +3527,19 @@ declare const CampaignsCampaignIdResponse: z.ZodObject<{
|
|
|
3527
3527
|
}[];
|
|
3528
3528
|
projects: {
|
|
3529
3529
|
id: number;
|
|
3530
|
+
slotNumber: number;
|
|
3530
3531
|
readyforProjectId: number;
|
|
3531
3532
|
isPaidSlot: boolean;
|
|
3532
3533
|
title: string | null;
|
|
3533
3534
|
description: string | null;
|
|
3534
3535
|
tag: string | null;
|
|
3535
3536
|
tagUrl: string | null;
|
|
3536
|
-
slotNumber: number;
|
|
3537
3537
|
thumbnailUrl: string | null;
|
|
3538
3538
|
}[];
|
|
3539
3539
|
banners: {
|
|
3540
3540
|
id: number;
|
|
3541
|
-
url: string | null;
|
|
3542
3541
|
slotNumber: number;
|
|
3542
|
+
url: string | null;
|
|
3543
3543
|
imageUrl: string | null;
|
|
3544
3544
|
}[];
|
|
3545
3545
|
deliveredUsersCount: number | null;
|