@pushwoosh/rpc-v2-http-api-data 0.1.967 → 0.1.968
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 +12 -0
- package/package.json +1 -1
- package/presets.d.ts +4 -0
package/data.js
CHANGED
|
@@ -21200,6 +21200,9 @@ export const data = {
|
|
|
21200
21200
|
},
|
|
21201
21201
|
"campaignCode": {
|
|
21202
21202
|
"type": "string"
|
|
21203
|
+
},
|
|
21204
|
+
"filterCode": {
|
|
21205
|
+
"type": "string"
|
|
21203
21206
|
}
|
|
21204
21207
|
}
|
|
21205
21208
|
},
|
|
@@ -21329,6 +21332,9 @@ export const data = {
|
|
|
21329
21332
|
},
|
|
21330
21333
|
"campaignCode": {
|
|
21331
21334
|
"type": "string"
|
|
21335
|
+
},
|
|
21336
|
+
"filterCode": {
|
|
21337
|
+
"type": "string"
|
|
21332
21338
|
}
|
|
21333
21339
|
}
|
|
21334
21340
|
},
|
|
@@ -21423,6 +21429,9 @@ export const data = {
|
|
|
21423
21429
|
},
|
|
21424
21430
|
"campaignCode": {
|
|
21425
21431
|
"type": "string"
|
|
21432
|
+
},
|
|
21433
|
+
"filterCode": {
|
|
21434
|
+
"type": "string"
|
|
21426
21435
|
}
|
|
21427
21436
|
}
|
|
21428
21437
|
},
|
|
@@ -21498,6 +21507,9 @@ export const data = {
|
|
|
21498
21507
|
},
|
|
21499
21508
|
"campaignCode": {
|
|
21500
21509
|
"type": "string"
|
|
21510
|
+
},
|
|
21511
|
+
"filterCode": {
|
|
21512
|
+
"type": "string"
|
|
21501
21513
|
}
|
|
21502
21514
|
}
|
|
21503
21515
|
},
|
package/package.json
CHANGED
package/presets.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ 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;
|
|
100
101
|
};
|
|
101
102
|
export type ListPresetsResponse = {
|
|
102
103
|
presets: Preset[];
|
|
@@ -157,6 +158,7 @@ export type CreatePresetRequest = {
|
|
|
157
158
|
platformProperties?: Record<string, PlatformProperties>;
|
|
158
159
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
159
160
|
campaignCode?: string;
|
|
161
|
+
filterCode?: string;
|
|
160
162
|
};
|
|
161
163
|
export type CreatePresetResponse = {
|
|
162
164
|
preset: Preset;
|
|
@@ -204,6 +206,7 @@ export type UpdatePresetRequest = {
|
|
|
204
206
|
platformProperties?: Record<string, PlatformProperties>;
|
|
205
207
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
206
208
|
campaignCode?: string;
|
|
209
|
+
filterCode?: string;
|
|
207
210
|
};
|
|
208
211
|
export type UpdatePresetPartialRequest = {
|
|
209
212
|
code?: string;
|
|
@@ -244,6 +247,7 @@ export type UpdatePresetPartialRequest = {
|
|
|
244
247
|
icon?: string;
|
|
245
248
|
/** campaign code the preset belongs to (legacy property "campaignCode") */
|
|
246
249
|
campaignCode?: string;
|
|
250
|
+
filterCode?: string;
|
|
247
251
|
};
|
|
248
252
|
export type UpdatePresetResponse = {
|
|
249
253
|
preset: Preset;
|