@pushwoosh/rpc-v2-http-api-data 0.1.967 → 0.1.969
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/data.js +24 -0
- package/package.json +1 -1
- package/presets.d.ts +8 -0
package/data.js
CHANGED
|
@@ -21200,6 +21200,12 @@ export const data = {
|
|
|
21200
21200
|
},
|
|
21201
21201
|
"campaignCode": {
|
|
21202
21202
|
"type": "string"
|
|
21203
|
+
},
|
|
21204
|
+
"filterCode": {
|
|
21205
|
+
"type": "string"
|
|
21206
|
+
},
|
|
21207
|
+
"geoZones": {
|
|
21208
|
+
"type": "string"
|
|
21203
21209
|
}
|
|
21204
21210
|
}
|
|
21205
21211
|
},
|
|
@@ -21329,6 +21335,12 @@ export const data = {
|
|
|
21329
21335
|
},
|
|
21330
21336
|
"campaignCode": {
|
|
21331
21337
|
"type": "string"
|
|
21338
|
+
},
|
|
21339
|
+
"filterCode": {
|
|
21340
|
+
"type": "string"
|
|
21341
|
+
},
|
|
21342
|
+
"geoZones": {
|
|
21343
|
+
"type": "string"
|
|
21332
21344
|
}
|
|
21333
21345
|
}
|
|
21334
21346
|
},
|
|
@@ -21423,6 +21435,12 @@ export const data = {
|
|
|
21423
21435
|
},
|
|
21424
21436
|
"campaignCode": {
|
|
21425
21437
|
"type": "string"
|
|
21438
|
+
},
|
|
21439
|
+
"filterCode": {
|
|
21440
|
+
"type": "string"
|
|
21441
|
+
},
|
|
21442
|
+
"geoZones": {
|
|
21443
|
+
"type": "string"
|
|
21426
21444
|
}
|
|
21427
21445
|
}
|
|
21428
21446
|
},
|
|
@@ -21498,6 +21516,12 @@ export const data = {
|
|
|
21498
21516
|
},
|
|
21499
21517
|
"campaignCode": {
|
|
21500
21518
|
"type": "string"
|
|
21519
|
+
},
|
|
21520
|
+
"filterCode": {
|
|
21521
|
+
"type": "string"
|
|
21522
|
+
},
|
|
21523
|
+
"geoZones": {
|
|
21524
|
+
"type": "string"
|
|
21501
21525
|
}
|
|
21502
21526
|
}
|
|
21503
21527
|
},
|
package/package.json
CHANGED
package/presets.d.ts
CHANGED
|
@@ -97,6 +97,8 @@ export type Preset = {
|
|
|
97
97
|
platformProperties: Record<string, PlatformProperties>;
|
|
98
98
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
99
99
|
campaignCode: string;
|
|
100
|
+
filterCode: string;
|
|
101
|
+
geoZones: string;
|
|
100
102
|
};
|
|
101
103
|
export type ListPresetsResponse = {
|
|
102
104
|
presets: Preset[];
|
|
@@ -157,6 +159,8 @@ export type CreatePresetRequest = {
|
|
|
157
159
|
platformProperties?: Record<string, PlatformProperties>;
|
|
158
160
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
159
161
|
campaignCode?: string;
|
|
162
|
+
filterCode?: string;
|
|
163
|
+
geoZones?: string;
|
|
160
164
|
};
|
|
161
165
|
export type CreatePresetResponse = {
|
|
162
166
|
preset: Preset;
|
|
@@ -204,6 +208,8 @@ export type UpdatePresetRequest = {
|
|
|
204
208
|
platformProperties?: Record<string, PlatformProperties>;
|
|
205
209
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
206
210
|
campaignCode?: string;
|
|
211
|
+
filterCode?: string;
|
|
212
|
+
geoZones?: string;
|
|
207
213
|
};
|
|
208
214
|
export type UpdatePresetPartialRequest = {
|
|
209
215
|
code?: string;
|
|
@@ -244,6 +250,8 @@ export type UpdatePresetPartialRequest = {
|
|
|
244
250
|
icon?: string;
|
|
245
251
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
246
252
|
campaignCode?: string;
|
|
253
|
+
filterCode?: string;
|
|
254
|
+
geoZones?: string;
|
|
247
255
|
};
|
|
248
256
|
export type UpdatePresetResponse = {
|
|
249
257
|
preset: Preset;
|