@pushwoosh/rpc-v2-http-api-data 0.1.611 → 0.1.612

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 +16 -0
  2. package/filters.d.ts +4 -0
  3. package/package.json +1 -1
package/data.js CHANGED
@@ -7071,6 +7071,13 @@ export const data = {
7071
7071
  }
7072
7072
  }
7073
7073
  },
7074
+ "pushwoosh.rpc_v2.filters.DeviceLoadPolicy": {
7075
+ "type": "E",
7076
+ "values": [
7077
+ "FILTER",
7078
+ "ALL"
7079
+ ]
7080
+ },
7074
7081
  "pushwoosh.rpc_v2.filters.Filter.Compiling": {
7075
7082
  "type": "I",
7076
7083
  "fields": {
@@ -7147,6 +7154,9 @@ export const data = {
7147
7154
  },
7148
7155
  "updated": {
7149
7156
  "type": "Date"
7157
+ },
7158
+ "deviceLoadPolicy": {
7159
+ "type": "pushwoosh.rpc_v2.filters.DeviceLoadPolicy"
7150
7160
  }
7151
7161
  },
7152
7162
  "oneofs": {
@@ -7204,6 +7214,9 @@ export const data = {
7204
7214
  },
7205
7215
  "expirationDate": {
7206
7216
  "type": "string"
7217
+ },
7218
+ "deviceLoadPolicy": {
7219
+ "type": "pushwoosh.rpc_v2.filters.DeviceLoadPolicy"
7207
7220
  }
7208
7221
  }
7209
7222
  },
@@ -7245,6 +7258,9 @@ export const data = {
7245
7258
  },
7246
7259
  "filterExpression": {
7247
7260
  "type": "pushwoosh.objects.filters.v1.FilterExpression"
7261
+ },
7262
+ "deviceLoadPolicy": {
7263
+ "type": "pushwoosh.rpc_v2.filters.DeviceLoadPolicy"
7248
7264
  }
7249
7265
  }
7250
7266
  },
package/filters.d.ts CHANGED
@@ -25,6 +25,7 @@ export type ListFiltersRequest = {
25
25
  page?: number;
26
26
  perPage?: number;
27
27
  };
28
+ export type DeviceLoadPolicy = 'FILTER' | 'ALL';
28
29
  export type Filter_Compiling = {
29
30
  size: number;
30
31
  reachable: number;
@@ -58,6 +59,7 @@ export type Filter = {
58
59
  highspeedSubscribersTotal: number;
59
60
  hasRightAceModify: boolean;
60
61
  updated: Date;
62
+ deviceLoadPolicy: DeviceLoadPolicy;
61
63
  type: Filter_type;
62
64
  };
63
65
  export type ListFiltersResponse = {
@@ -76,6 +78,7 @@ export type CreateFilterRequest = {
76
78
  filterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
77
79
  highspeedApplication?: string;
78
80
  expirationDate?: string;
81
+ deviceLoadPolicy?: DeviceLoadPolicy;
79
82
  };
80
83
  export type CreateFilterResponse = {
81
84
  filter: string;
@@ -91,6 +94,7 @@ export type UpdateFilterRequest = {
91
94
  filter?: string;
92
95
  name?: string;
93
96
  filterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
97
+ deviceLoadPolicy?: DeviceLoadPolicy;
94
98
  };
95
99
  export type UpdateFilterResponse = {};
96
100
  export type DeleteFilterRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.611",
3
+ "version": "0.1.612",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",