@pushwoosh/rpc-v2-http-api-data 0.1.968 → 0.1.970

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.
Files changed (3) hide show
  1. package/data.js +12 -0
  2. package/package.json +1 -1
  3. package/presets.d.ts +4 -0
package/data.js CHANGED
@@ -21203,6 +21203,9 @@ export const data = {
21203
21203
  },
21204
21204
  "filterCode": {
21205
21205
  "type": "string"
21206
+ },
21207
+ "geoZones": {
21208
+ "type": "string"
21206
21209
  }
21207
21210
  }
21208
21211
  },
@@ -21335,6 +21338,9 @@ export const data = {
21335
21338
  },
21336
21339
  "filterCode": {
21337
21340
  "type": "string"
21341
+ },
21342
+ "geoZones": {
21343
+ "type": "string"
21338
21344
  }
21339
21345
  }
21340
21346
  },
@@ -21432,6 +21438,9 @@ export const data = {
21432
21438
  },
21433
21439
  "filterCode": {
21434
21440
  "type": "string"
21441
+ },
21442
+ "geoZones": {
21443
+ "type": "string"
21435
21444
  }
21436
21445
  }
21437
21446
  },
@@ -21510,6 +21519,9 @@ export const data = {
21510
21519
  },
21511
21520
  "filterCode": {
21512
21521
  "type": "string"
21522
+ },
21523
+ "geoZones": {
21524
+ "type": "string"
21513
21525
  }
21514
21526
  }
21515
21527
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.968",
3
+ "version": "0.1.970",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
package/presets.d.ts CHANGED
@@ -98,6 +98,7 @@ export type Preset = {
98
98
  /** campaign code the preset belongs to (legacy property "campaignCode") */
99
99
  campaignCode: string;
100
100
  filterCode: string;
101
+ geoZones: string;
101
102
  };
102
103
  export type ListPresetsResponse = {
103
104
  presets: Preset[];
@@ -159,6 +160,7 @@ export type CreatePresetRequest = {
159
160
  /** campaign code the preset belongs to (legacy property "campaignCode") */
160
161
  campaignCode?: string;
161
162
  filterCode?: string;
163
+ geoZones?: string;
162
164
  };
163
165
  export type CreatePresetResponse = {
164
166
  preset: Preset;
@@ -207,6 +209,7 @@ export type UpdatePresetRequest = {
207
209
  /** campaign code the preset belongs to (legacy property "campaignCode") */
208
210
  campaignCode?: string;
209
211
  filterCode?: string;
212
+ geoZones?: string;
210
213
  };
211
214
  export type UpdatePresetPartialRequest = {
212
215
  code?: string;
@@ -248,6 +251,7 @@ export type UpdatePresetPartialRequest = {
248
251
  /** campaign code the preset belongs to (legacy property "campaignCode") */
249
252
  campaignCode?: string;
250
253
  filterCode?: string;
254
+ geoZones?: string;
251
255
  };
252
256
  export type UpdatePresetResponse = {
253
257
  preset: Preset;