@readyfor/api-client-pigeon 0.198.0 → 0.200.0-pr956.75290e7
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-AEKEB3GG.mjs → chunk-5SUPDDXU.mjs} +1 -1
- package/dist/{chunk-BDMU3TOC.mjs → chunk-7TVBFSFM.mjs} +1 -1
- package/dist/{chunk-S2ECCFNT.mjs → chunk-AAQNXWMN.mjs} +1 -1
- package/dist/{chunk-NHZWWK2Z.mjs → chunk-CINSTR5B.mjs} +3 -3
- package/dist/{chunk-ZLT3YYHD.mjs → chunk-GHEQM56U.mjs} +1 -1
- package/dist/{chunk-LG2FQDXX.mjs → chunk-J4Z7MPZ3.mjs} +1 -1
- package/dist/{chunk-TZU4LWFB.mjs → chunk-RWRQO3SL.mjs} +1 -1
- package/dist/{chunk-CJNNMDXQ.mjs → chunk-SRDCHGJV.mjs} +1 -1
- package/dist/{chunk-GDSJJRPE.mjs → chunk-TAPXHCEB.mjs} +1 -1
- package/dist/{chunk-SFZK4F22.mjs → chunk-VLQBROWU.mjs} +1 -1
- package/dist/{chunk-XR2C4YOA.mjs → chunk-WRC7MNAQ.mjs} +1 -1
- package/dist/{chunk-B3RFQUNV.mjs → chunk-XDAPMPWH.mjs} +1 -1
- package/dist/{chunk-6JZT2QGB.mjs → chunk-ZFV6PATD.mjs} +1 -1
- package/dist/components.d.mts +114 -114
- package/dist/components.d.ts +114 -114
- package/dist/components.js +3 -3
- package/dist/components.mjs +1 -1
- package/dist/fetch/campaigns.js +3 -3
- package/dist/fetch/campaigns.mjs +2 -2
- package/dist/fetch/campaignsId.js +3 -3
- package/dist/fetch/campaignsId.mjs +2 -2
- package/dist/fetch/projectsProjectIdOrKeyword.js +3 -3
- package/dist/fetch/projectsProjectIdOrKeyword.mjs +2 -2
- package/dist/fetch/segmentsBehaviorSegments.js +3 -3
- package/dist/fetch/segmentsBehaviorSegments.mjs +2 -2
- package/dist/fetch/segmentsProfileSegments.js +3 -3
- package/dist/fetch/segmentsProfileSegments.mjs +2 -2
- package/dist/fetch/segmentsTargetUsersCount.js +3 -3
- package/dist/fetch/segmentsTargetUsersCount.mjs +2 -2
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/index.mjs +13 -13
- package/dist/hooks/useCampaigns.js +3 -3
- package/dist/hooks/useCampaigns.mjs +8 -8
- package/dist/hooks/useCampaignsId.js +3 -3
- package/dist/hooks/useCampaignsId.mjs +8 -8
- package/dist/hooks/useProjectsProjectIdOrKeyword.js +3 -3
- package/dist/hooks/useProjectsProjectIdOrKeyword.mjs +8 -8
- package/dist/hooks/useSegmentsBehaviorSegments.js +3 -3
- package/dist/hooks/useSegmentsBehaviorSegments.mjs +8 -8
- package/dist/hooks/useSegmentsProfileSegments.js +3 -3
- package/dist/hooks/useSegmentsProfileSegments.mjs +8 -8
- package/dist/hooks/useSegmentsTargetUsersCount.js +3 -3
- package/dist/hooks/useSegmentsTargetUsersCount.mjs +8 -8
- package/dist/index.js +3 -3
- package/dist/index.mjs +7 -7
- package/dist/schemaType.d.mts +3 -3
- package/dist/schemaType.d.ts +3 -3
- package/package.json +9 -10
|
@@ -39,9 +39,9 @@ var CurationMailMagazineProjectFormData = z.object({
|
|
|
39
39
|
tagUrl: z.union([z.string(), z.null()])
|
|
40
40
|
});
|
|
41
41
|
var CurationMailMagazineTargetFilterFormData = z.object({
|
|
42
|
-
id: z.union([z.
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
id: z.union([z.number(), z.null()]),
|
|
43
|
+
behaviorSegmentCodes: z.array(z.string()),
|
|
44
|
+
profileSegmentCodes: z.array(z.string())
|
|
45
45
|
});
|
|
46
46
|
var PersonalizedMailMagazineTargetCsvFormData = z.union([
|
|
47
47
|
PersonalizedMailMagazineTargetDeleteCsvFormData,
|
package/dist/components.d.mts
CHANGED
|
@@ -176,17 +176,17 @@ declare const CurationMailMagazineProjectFormData: z.ZodObject<{
|
|
|
176
176
|
tagUrl: string | null;
|
|
177
177
|
}>;
|
|
178
178
|
declare const CurationMailMagazineTargetFilterFormData: z.ZodObject<{
|
|
179
|
-
id: z.ZodUnion<[z.
|
|
180
|
-
|
|
181
|
-
|
|
179
|
+
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
180
|
+
behaviorSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
181
|
+
profileSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
182
182
|
}, "strip", z.ZodTypeAny, {
|
|
183
|
-
id:
|
|
184
|
-
|
|
185
|
-
|
|
183
|
+
id: number | null;
|
|
184
|
+
behaviorSegmentCodes: string[];
|
|
185
|
+
profileSegmentCodes: string[];
|
|
186
186
|
}, {
|
|
187
|
-
id:
|
|
188
|
-
|
|
189
|
-
|
|
187
|
+
id: number | null;
|
|
188
|
+
behaviorSegmentCodes: string[];
|
|
189
|
+
profileSegmentCodes: string[];
|
|
190
190
|
}>;
|
|
191
191
|
declare const PersonalizedMailMagazineTargetCsvFormData: z.ZodUnion<[z.ZodObject<{
|
|
192
192
|
kind: z.ZodLiteral<"deleteTargetCsv">;
|
|
@@ -300,17 +300,17 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
300
300
|
subject: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
301
301
|
preHeaderText: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
302
302
|
targetFilters: z.ZodArray<z.ZodObject<{
|
|
303
|
-
id: z.ZodUnion<[z.
|
|
304
|
-
|
|
305
|
-
|
|
303
|
+
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
304
|
+
behaviorSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
305
|
+
profileSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
306
306
|
}, "strip", z.ZodTypeAny, {
|
|
307
|
-
id:
|
|
308
|
-
|
|
309
|
-
|
|
307
|
+
id: number | null;
|
|
308
|
+
behaviorSegmentCodes: string[];
|
|
309
|
+
profileSegmentCodes: string[];
|
|
310
310
|
}, {
|
|
311
|
-
id:
|
|
312
|
-
|
|
313
|
-
|
|
311
|
+
id: number | null;
|
|
312
|
+
behaviorSegmentCodes: string[];
|
|
313
|
+
profileSegmentCodes: string[];
|
|
314
314
|
}>, "many">;
|
|
315
315
|
projects: z.ZodArray<z.ZodObject<{
|
|
316
316
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
@@ -414,9 +414,9 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
414
414
|
subject: string | null;
|
|
415
415
|
preHeaderText: string | null;
|
|
416
416
|
targetFilters: {
|
|
417
|
-
id:
|
|
418
|
-
|
|
419
|
-
|
|
417
|
+
id: number | null;
|
|
418
|
+
behaviorSegmentCodes: string[];
|
|
419
|
+
profileSegmentCodes: string[];
|
|
420
420
|
}[];
|
|
421
421
|
projects: {
|
|
422
422
|
id: number | null;
|
|
@@ -450,9 +450,9 @@ declare const CurationMailMagazineFormData: z.ZodObject<{
|
|
|
450
450
|
subject: string | null;
|
|
451
451
|
preHeaderText: string | null;
|
|
452
452
|
targetFilters: {
|
|
453
|
-
id:
|
|
454
|
-
|
|
455
|
-
|
|
453
|
+
id: number | null;
|
|
454
|
+
behaviorSegmentCodes: string[];
|
|
455
|
+
profileSegmentCodes: string[];
|
|
456
456
|
}[];
|
|
457
457
|
projects: {
|
|
458
458
|
id: number | null;
|
|
@@ -701,17 +701,17 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
701
701
|
subject: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
702
702
|
preHeaderText: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
703
703
|
targetFilters: z.ZodArray<z.ZodObject<{
|
|
704
|
-
id: z.ZodUnion<[z.
|
|
705
|
-
|
|
706
|
-
|
|
704
|
+
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
705
|
+
behaviorSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
706
|
+
profileSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
707
707
|
}, "strip", z.ZodTypeAny, {
|
|
708
|
-
id:
|
|
709
|
-
|
|
710
|
-
|
|
708
|
+
id: number | null;
|
|
709
|
+
behaviorSegmentCodes: string[];
|
|
710
|
+
profileSegmentCodes: string[];
|
|
711
711
|
}, {
|
|
712
|
-
id:
|
|
713
|
-
|
|
714
|
-
|
|
712
|
+
id: number | null;
|
|
713
|
+
behaviorSegmentCodes: string[];
|
|
714
|
+
profileSegmentCodes: string[];
|
|
715
715
|
}>, "many">;
|
|
716
716
|
projects: z.ZodArray<z.ZodObject<{
|
|
717
717
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
@@ -815,9 +815,9 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
815
815
|
subject: string | null;
|
|
816
816
|
preHeaderText: string | null;
|
|
817
817
|
targetFilters: {
|
|
818
|
-
id:
|
|
819
|
-
|
|
820
|
-
|
|
818
|
+
id: number | null;
|
|
819
|
+
behaviorSegmentCodes: string[];
|
|
820
|
+
profileSegmentCodes: string[];
|
|
821
821
|
}[];
|
|
822
822
|
projects: {
|
|
823
823
|
id: number | null;
|
|
@@ -851,9 +851,9 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
851
851
|
subject: string | null;
|
|
852
852
|
preHeaderText: string | null;
|
|
853
853
|
targetFilters: {
|
|
854
|
-
id:
|
|
855
|
-
|
|
856
|
-
|
|
854
|
+
id: number | null;
|
|
855
|
+
behaviorSegmentCodes: string[];
|
|
856
|
+
profileSegmentCodes: string[];
|
|
857
857
|
}[];
|
|
858
858
|
projects: {
|
|
859
859
|
id: number | null;
|
|
@@ -890,9 +890,9 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
890
890
|
subject: string | null;
|
|
891
891
|
preHeaderText: string | null;
|
|
892
892
|
targetFilters: {
|
|
893
|
-
id:
|
|
894
|
-
|
|
895
|
-
|
|
893
|
+
id: number | null;
|
|
894
|
+
behaviorSegmentCodes: string[];
|
|
895
|
+
profileSegmentCodes: string[];
|
|
896
896
|
}[];
|
|
897
897
|
projects: {
|
|
898
898
|
id: number | null;
|
|
@@ -929,9 +929,9 @@ declare const CampaignKindDataCurationMailMagazineFormData: z.ZodObject<{
|
|
|
929
929
|
subject: string | null;
|
|
930
930
|
preHeaderText: string | null;
|
|
931
931
|
targetFilters: {
|
|
932
|
-
id:
|
|
933
|
-
|
|
934
|
-
|
|
932
|
+
id: number | null;
|
|
933
|
+
behaviorSegmentCodes: string[];
|
|
934
|
+
profileSegmentCodes: string[];
|
|
935
935
|
}[];
|
|
936
936
|
projects: {
|
|
937
937
|
id: number | null;
|
|
@@ -1328,17 +1328,17 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1328
1328
|
subject: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1329
1329
|
preHeaderText: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1330
1330
|
targetFilters: z.ZodArray<z.ZodObject<{
|
|
1331
|
-
id: z.ZodUnion<[z.
|
|
1332
|
-
|
|
1333
|
-
|
|
1331
|
+
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
1332
|
+
behaviorSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
1333
|
+
profileSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
1334
1334
|
}, "strip", z.ZodTypeAny, {
|
|
1335
|
-
id:
|
|
1336
|
-
|
|
1337
|
-
|
|
1335
|
+
id: number | null;
|
|
1336
|
+
behaviorSegmentCodes: string[];
|
|
1337
|
+
profileSegmentCodes: string[];
|
|
1338
1338
|
}, {
|
|
1339
|
-
id:
|
|
1340
|
-
|
|
1341
|
-
|
|
1339
|
+
id: number | null;
|
|
1340
|
+
behaviorSegmentCodes: string[];
|
|
1341
|
+
profileSegmentCodes: string[];
|
|
1342
1342
|
}>, "many">;
|
|
1343
1343
|
projects: z.ZodArray<z.ZodObject<{
|
|
1344
1344
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
@@ -1442,9 +1442,9 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1442
1442
|
subject: string | null;
|
|
1443
1443
|
preHeaderText: string | null;
|
|
1444
1444
|
targetFilters: {
|
|
1445
|
-
id:
|
|
1446
|
-
|
|
1447
|
-
|
|
1445
|
+
id: number | null;
|
|
1446
|
+
behaviorSegmentCodes: string[];
|
|
1447
|
+
profileSegmentCodes: string[];
|
|
1448
1448
|
}[];
|
|
1449
1449
|
projects: {
|
|
1450
1450
|
id: number | null;
|
|
@@ -1478,9 +1478,9 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1478
1478
|
subject: string | null;
|
|
1479
1479
|
preHeaderText: string | null;
|
|
1480
1480
|
targetFilters: {
|
|
1481
|
-
id:
|
|
1482
|
-
|
|
1483
|
-
|
|
1481
|
+
id: number | null;
|
|
1482
|
+
behaviorSegmentCodes: string[];
|
|
1483
|
+
profileSegmentCodes: string[];
|
|
1484
1484
|
}[];
|
|
1485
1485
|
projects: {
|
|
1486
1486
|
id: number | null;
|
|
@@ -1518,9 +1518,9 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1518
1518
|
subject: string | null;
|
|
1519
1519
|
preHeaderText: string | null;
|
|
1520
1520
|
targetFilters: {
|
|
1521
|
-
id:
|
|
1522
|
-
|
|
1523
|
-
|
|
1521
|
+
id: number | null;
|
|
1522
|
+
behaviorSegmentCodes: string[];
|
|
1523
|
+
profileSegmentCodes: string[];
|
|
1524
1524
|
}[];
|
|
1525
1525
|
projects: {
|
|
1526
1526
|
id: number | null;
|
|
@@ -1559,9 +1559,9 @@ declare const CampaignWithCurationMailMagazineFormData: z.ZodObject<z.objectUtil
|
|
|
1559
1559
|
subject: string | null;
|
|
1560
1560
|
preHeaderText: string | null;
|
|
1561
1561
|
targetFilters: {
|
|
1562
|
-
id:
|
|
1563
|
-
|
|
1564
|
-
|
|
1562
|
+
id: number | null;
|
|
1563
|
+
behaviorSegmentCodes: string[];
|
|
1564
|
+
profileSegmentCodes: string[];
|
|
1565
1565
|
}[];
|
|
1566
1566
|
projects: {
|
|
1567
1567
|
id: number | null;
|
|
@@ -2102,17 +2102,17 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2102
2102
|
subject: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2103
2103
|
preHeaderText: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2104
2104
|
targetFilters: z.ZodArray<z.ZodObject<{
|
|
2105
|
-
id: z.ZodUnion<[z.
|
|
2106
|
-
|
|
2107
|
-
|
|
2105
|
+
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
2106
|
+
behaviorSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
2107
|
+
profileSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
2108
2108
|
}, "strip", z.ZodTypeAny, {
|
|
2109
|
-
id:
|
|
2110
|
-
|
|
2111
|
-
|
|
2109
|
+
id: number | null;
|
|
2110
|
+
behaviorSegmentCodes: string[];
|
|
2111
|
+
profileSegmentCodes: string[];
|
|
2112
2112
|
}, {
|
|
2113
|
-
id:
|
|
2114
|
-
|
|
2115
|
-
|
|
2113
|
+
id: number | null;
|
|
2114
|
+
behaviorSegmentCodes: string[];
|
|
2115
|
+
profileSegmentCodes: string[];
|
|
2116
2116
|
}>, "many">;
|
|
2117
2117
|
projects: z.ZodArray<z.ZodObject<{
|
|
2118
2118
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
@@ -2216,9 +2216,9 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2216
2216
|
subject: string | null;
|
|
2217
2217
|
preHeaderText: string | null;
|
|
2218
2218
|
targetFilters: {
|
|
2219
|
-
id:
|
|
2220
|
-
|
|
2221
|
-
|
|
2219
|
+
id: number | null;
|
|
2220
|
+
behaviorSegmentCodes: string[];
|
|
2221
|
+
profileSegmentCodes: string[];
|
|
2222
2222
|
}[];
|
|
2223
2223
|
projects: {
|
|
2224
2224
|
id: number | null;
|
|
@@ -2252,9 +2252,9 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2252
2252
|
subject: string | null;
|
|
2253
2253
|
preHeaderText: string | null;
|
|
2254
2254
|
targetFilters: {
|
|
2255
|
-
id:
|
|
2256
|
-
|
|
2257
|
-
|
|
2255
|
+
id: number | null;
|
|
2256
|
+
behaviorSegmentCodes: string[];
|
|
2257
|
+
profileSegmentCodes: string[];
|
|
2258
2258
|
}[];
|
|
2259
2259
|
projects: {
|
|
2260
2260
|
id: number | null;
|
|
@@ -2292,9 +2292,9 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2292
2292
|
subject: string | null;
|
|
2293
2293
|
preHeaderText: string | null;
|
|
2294
2294
|
targetFilters: {
|
|
2295
|
-
id:
|
|
2296
|
-
|
|
2297
|
-
|
|
2295
|
+
id: number | null;
|
|
2296
|
+
behaviorSegmentCodes: string[];
|
|
2297
|
+
profileSegmentCodes: string[];
|
|
2298
2298
|
}[];
|
|
2299
2299
|
projects: {
|
|
2300
2300
|
id: number | null;
|
|
@@ -2333,9 +2333,9 @@ declare const CampaignFormData: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
2333
2333
|
subject: string | null;
|
|
2334
2334
|
preHeaderText: string | null;
|
|
2335
2335
|
targetFilters: {
|
|
2336
|
-
id:
|
|
2337
|
-
|
|
2338
|
-
|
|
2336
|
+
id: number | null;
|
|
2337
|
+
behaviorSegmentCodes: string[];
|
|
2338
|
+
profileSegmentCodes: string[];
|
|
2339
2339
|
}[];
|
|
2340
2340
|
projects: {
|
|
2341
2341
|
id: number | null;
|
|
@@ -2922,17 +2922,17 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
2922
2922
|
subject: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2923
2923
|
preHeaderText: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
2924
2924
|
targetFilters: z.ZodArray<z.ZodObject<{
|
|
2925
|
-
id: z.ZodUnion<[z.
|
|
2926
|
-
|
|
2927
|
-
|
|
2925
|
+
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
2926
|
+
behaviorSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
2927
|
+
profileSegmentCodes: z.ZodArray<z.ZodString, "many">;
|
|
2928
2928
|
}, "strip", z.ZodTypeAny, {
|
|
2929
|
-
id:
|
|
2930
|
-
|
|
2931
|
-
|
|
2929
|
+
id: number | null;
|
|
2930
|
+
behaviorSegmentCodes: string[];
|
|
2931
|
+
profileSegmentCodes: string[];
|
|
2932
2932
|
}, {
|
|
2933
|
-
id:
|
|
2934
|
-
|
|
2935
|
-
|
|
2933
|
+
id: number | null;
|
|
2934
|
+
behaviorSegmentCodes: string[];
|
|
2935
|
+
profileSegmentCodes: string[];
|
|
2936
2936
|
}>, "many">;
|
|
2937
2937
|
projects: z.ZodArray<z.ZodObject<{
|
|
2938
2938
|
id: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
@@ -3036,9 +3036,9 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3036
3036
|
subject: string | null;
|
|
3037
3037
|
preHeaderText: string | null;
|
|
3038
3038
|
targetFilters: {
|
|
3039
|
-
id:
|
|
3040
|
-
|
|
3041
|
-
|
|
3039
|
+
id: number | null;
|
|
3040
|
+
behaviorSegmentCodes: string[];
|
|
3041
|
+
profileSegmentCodes: string[];
|
|
3042
3042
|
}[];
|
|
3043
3043
|
projects: {
|
|
3044
3044
|
id: number | null;
|
|
@@ -3072,9 +3072,9 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3072
3072
|
subject: string | null;
|
|
3073
3073
|
preHeaderText: string | null;
|
|
3074
3074
|
targetFilters: {
|
|
3075
|
-
id:
|
|
3076
|
-
|
|
3077
|
-
|
|
3075
|
+
id: number | null;
|
|
3076
|
+
behaviorSegmentCodes: string[];
|
|
3077
|
+
profileSegmentCodes: string[];
|
|
3078
3078
|
}[];
|
|
3079
3079
|
projects: {
|
|
3080
3080
|
id: number | null;
|
|
@@ -3112,9 +3112,9 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3112
3112
|
subject: string | null;
|
|
3113
3113
|
preHeaderText: string | null;
|
|
3114
3114
|
targetFilters: {
|
|
3115
|
-
id:
|
|
3116
|
-
|
|
3117
|
-
|
|
3115
|
+
id: number | null;
|
|
3116
|
+
behaviorSegmentCodes: string[];
|
|
3117
|
+
profileSegmentCodes: string[];
|
|
3118
3118
|
}[];
|
|
3119
3119
|
projects: {
|
|
3120
3120
|
id: number | null;
|
|
@@ -3153,9 +3153,9 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3153
3153
|
subject: string | null;
|
|
3154
3154
|
preHeaderText: string | null;
|
|
3155
3155
|
targetFilters: {
|
|
3156
|
-
id:
|
|
3157
|
-
|
|
3158
|
-
|
|
3156
|
+
id: number | null;
|
|
3157
|
+
behaviorSegmentCodes: string[];
|
|
3158
|
+
profileSegmentCodes: string[];
|
|
3159
3159
|
}[];
|
|
3160
3160
|
projects: {
|
|
3161
3161
|
id: number | null;
|
|
@@ -3196,9 +3196,9 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3196
3196
|
subject: string | null;
|
|
3197
3197
|
preHeaderText: string | null;
|
|
3198
3198
|
targetFilters: {
|
|
3199
|
-
id:
|
|
3200
|
-
|
|
3201
|
-
|
|
3199
|
+
id: number | null;
|
|
3200
|
+
behaviorSegmentCodes: string[];
|
|
3201
|
+
profileSegmentCodes: string[];
|
|
3202
3202
|
}[];
|
|
3203
3203
|
projects: {
|
|
3204
3204
|
id: number | null;
|
|
@@ -3256,9 +3256,9 @@ declare const PatchCampaignsCampaignIdRequestBody: z.ZodObject<{
|
|
|
3256
3256
|
subject: string | null;
|
|
3257
3257
|
preHeaderText: string | null;
|
|
3258
3258
|
targetFilters: {
|
|
3259
|
-
id:
|
|
3260
|
-
|
|
3261
|
-
|
|
3259
|
+
id: number | null;
|
|
3260
|
+
behaviorSegmentCodes: string[];
|
|
3261
|
+
profileSegmentCodes: string[];
|
|
3262
3262
|
}[];
|
|
3263
3263
|
projects: {
|
|
3264
3264
|
id: number | null;
|