@pushwoosh/rpc-v2-http-api-data 0.1.864 → 0.1.866

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 CHANGED
@@ -10394,6 +10394,9 @@ export const data = {
10394
10394
  "filterName": {
10395
10395
  "type": "string"
10396
10396
  },
10397
+ "filterCode": {
10398
+ "type": "string"
10399
+ },
10397
10400
  "devicesFilter": {
10398
10401
  "type": "string"
10399
10402
  },
@@ -10507,6 +10510,10 @@ export const data = {
10507
10510
  "type": "string",
10508
10511
  "optional": true
10509
10512
  },
10513
+ "filterCode": {
10514
+ "type": "string",
10515
+ "optional": true
10516
+ },
10510
10517
  "segment": {
10511
10518
  "type": "string",
10512
10519
  "optional": true
@@ -10571,6 +10578,10 @@ export const data = {
10571
10578
  "type": "string",
10572
10579
  "optional": true
10573
10580
  },
10581
+ "filterCode": {
10582
+ "type": "string",
10583
+ "optional": true
10584
+ },
10574
10585
  "segment": {
10575
10586
  "type": "string",
10576
10587
  "optional": true
@@ -30,6 +30,7 @@ export type Inapp = {
30
30
  updated: Date;
31
31
  eventId: number;
32
32
  filterName: string;
33
+ filterCode: string;
33
34
  devicesFilter: string;
34
35
  segment: string;
35
36
  priority: number;
@@ -66,6 +67,7 @@ export type CreateInappRequest = {
66
67
  required?: boolean;
67
68
  richMediaCode?: string;
68
69
  filterName?: string;
70
+ filterCode?: string;
69
71
  segment?: string;
70
72
  eventId?: number;
71
73
  devicesFilter?: string;
@@ -83,6 +85,7 @@ export type UpdateInappRequest = {
83
85
  required?: boolean;
84
86
  richMediaCode?: string;
85
87
  filterName?: string;
88
+ filterCode?: string;
86
89
  segment?: string;
87
90
  eventId?: number;
88
91
  devicesFilter?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.864",
3
+ "version": "0.1.866",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",