@pushwoosh/rpc-v2-http-api-data 0.1.667 → 0.1.669

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
@@ -10470,6 +10470,36 @@ export const data = {
10470
10470
  }
10471
10471
  }
10472
10472
  },
10473
+ "pushwoosh.objects.filters.v1.LogicExpression.Field.Description": {
10474
+ "type": "I",
10475
+ "fields": {
10476
+ "operator": {
10477
+ "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Operator"
10478
+ },
10479
+ "value": {
10480
+ "type": "string"
10481
+ },
10482
+ "values": {
10483
+ "type": "string",
10484
+ "array": true
10485
+ }
10486
+ }
10487
+ },
10488
+ "pushwoosh.objects.filters.v1.LogicExpression.Field.DeviceLoadPolicy": {
10489
+ "type": "I",
10490
+ "fields": {
10491
+ "operator": {
10492
+ "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Operator"
10493
+ },
10494
+ "value": {
10495
+ "type": "string"
10496
+ },
10497
+ "values": {
10498
+ "type": "string",
10499
+ "array": true
10500
+ }
10501
+ }
10502
+ },
10473
10503
  "pushwoosh.objects.filters.v1.LogicExpression.Field": {
10474
10504
  "type": "I",
10475
10505
  "fields": {
@@ -10523,6 +10553,12 @@ export const data = {
10523
10553
  },
10524
10554
  "CondUpdated": {
10525
10555
  "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Updated"
10556
+ },
10557
+ "CondDescription": {
10558
+ "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Description"
10559
+ },
10560
+ "CondDeviceLoadPolicy": {
10561
+ "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.DeviceLoadPolicy"
10526
10562
  }
10527
10563
  },
10528
10564
  "oneofs": {
@@ -10544,7 +10580,9 @@ export const data = {
10544
10580
  "CondCreated",
10545
10581
  "CondFilterExpressionRaw",
10546
10582
  "CondFiltrationID",
10547
- "CondUpdated"
10583
+ "CondUpdated",
10584
+ "CondDescription",
10585
+ "CondDeviceLoadPolicy"
10548
10586
  ]
10549
10587
  }
10550
10588
  }
@@ -10804,6 +10842,18 @@ export const data = {
10804
10842
  "response": "{}",
10805
10843
  "method": "patch",
10806
10844
  "path": "/v1/objects/filters/ID/{ID}/update/Updated"
10845
+ },
10846
+ "UpdateDescription": {
10847
+ "request": "pushwoosh.objects.filters.v1.UpdateDescriptionRequest",
10848
+ "response": "{}",
10849
+ "method": "patch",
10850
+ "path": "/v1/objects/filters/ID/{ID}/update/Description"
10851
+ },
10852
+ "UpdateDeviceLoadPolicy": {
10853
+ "request": "pushwoosh.objects.filters.v1.UpdateDeviceLoadPolicyRequest",
10854
+ "response": "{}",
10855
+ "method": "patch",
10856
+ "path": "/v1/objects/filters/ID/{ID}/update/DeviceLoadPolicy"
10807
10857
  }
10808
10858
  }
10809
10859
  },
@@ -10857,6 +10907,12 @@ export const data = {
10857
10907
  },
10858
10908
  "Updated": {
10859
10909
  "type": "Date"
10910
+ },
10911
+ "Description": {
10912
+ "type": "string"
10913
+ },
10914
+ "DeviceLoadPolicy": {
10915
+ "type": "string"
10860
10916
  }
10861
10917
  }
10862
10918
  },
@@ -11179,6 +11235,28 @@ export const data = {
11179
11235
  }
11180
11236
  }
11181
11237
  },
11238
+ "pushwoosh.objects.filters.v1.UpdateDescriptionRequest": {
11239
+ "type": "I",
11240
+ "fields": {
11241
+ "ID": {
11242
+ "type": "number"
11243
+ },
11244
+ "value": {
11245
+ "type": "string"
11246
+ }
11247
+ }
11248
+ },
11249
+ "pushwoosh.objects.filters.v1.UpdateDeviceLoadPolicyRequest": {
11250
+ "type": "I",
11251
+ "fields": {
11252
+ "ID": {
11253
+ "type": "number"
11254
+ },
11255
+ "value": {
11256
+ "type": "string"
11257
+ }
11258
+ }
11259
+ },
11182
11260
  "pushwoosh.objects.filters.v1.GetRequest": {
11183
11261
  "type": "I",
11184
11262
  "fields": {
@@ -11303,6 +11381,12 @@ export const data = {
11303
11381
  },
11304
11382
  "Updated": {
11305
11383
  "type": "Date"
11384
+ },
11385
+ "Description": {
11386
+ "type": "string"
11387
+ },
11388
+ "DeviceLoadPolicy": {
11389
+ "type": "string"
11306
11390
  }
11307
11391
  }
11308
11392
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.667",
3
+ "version": "0.1.669",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -95,6 +95,16 @@ export type LogicExpression_Field_Updated = {
95
95
  value: Date;
96
96
  values: Date[];
97
97
  };
98
+ export type LogicExpression_Field_Description = {
99
+ operator: LogicExpression_Field_Operator;
100
+ value: string;
101
+ values: string[];
102
+ };
103
+ export type LogicExpression_Field_DeviceLoadPolicy = {
104
+ operator: LogicExpression_Field_Operator;
105
+ value: string;
106
+ values: string[];
107
+ };
98
108
  export type LogicExpression_Field_kind_CondID = {
99
109
  type: 'CondID';
100
110
  data: LogicExpression_Field_ID;
@@ -163,7 +173,15 @@ export type LogicExpression_Field_kind_CondUpdated = {
163
173
  type: 'CondUpdated';
164
174
  data: LogicExpression_Field_Updated;
165
175
  };
166
- export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondCode | LogicExpression_Field_kind_CondAccountID | LogicExpression_Field_kind_CondName | LogicExpression_Field_kind_CondApplicationID | LogicExpression_Field_kind_CondIsFiltrationInProgress | LogicExpression_Field_kind_CondFiltrationStartedAt | LogicExpression_Field_kind_CondFiltrationLastFilteredAt | LogicExpression_Field_kind_CondFiltrationLastCheckedAt | LogicExpression_Field_kind_CondFiltrationScheduledAt | LogicExpression_Field_kind_CondCheckerScheduledAt | LogicExpression_Field_kind_CondIsSystem | LogicExpression_Field_kind_CondExpirationDate | LogicExpression_Field_kind_CondCreated | LogicExpression_Field_kind_CondFilterExpressionRaw | LogicExpression_Field_kind_CondFiltrationID | LogicExpression_Field_kind_CondUpdated;
176
+ export type LogicExpression_Field_kind_CondDescription = {
177
+ type: 'CondDescription';
178
+ data: LogicExpression_Field_Description;
179
+ };
180
+ export type LogicExpression_Field_kind_CondDeviceLoadPolicy = {
181
+ type: 'CondDeviceLoadPolicy';
182
+ data: LogicExpression_Field_DeviceLoadPolicy;
183
+ };
184
+ export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondCode | LogicExpression_Field_kind_CondAccountID | LogicExpression_Field_kind_CondName | LogicExpression_Field_kind_CondApplicationID | LogicExpression_Field_kind_CondIsFiltrationInProgress | LogicExpression_Field_kind_CondFiltrationStartedAt | LogicExpression_Field_kind_CondFiltrationLastFilteredAt | LogicExpression_Field_kind_CondFiltrationLastCheckedAt | LogicExpression_Field_kind_CondFiltrationScheduledAt | LogicExpression_Field_kind_CondCheckerScheduledAt | LogicExpression_Field_kind_CondIsSystem | LogicExpression_Field_kind_CondExpirationDate | LogicExpression_Field_kind_CondCreated | LogicExpression_Field_kind_CondFilterExpressionRaw | LogicExpression_Field_kind_CondFiltrationID | LogicExpression_Field_kind_CondUpdated | LogicExpression_Field_kind_CondDescription | LogicExpression_Field_kind_CondDeviceLoadPolicy;
167
185
  export type LogicExpression_Field = {
168
186
  kind: LogicExpression_Field_kind;
169
187
  };
@@ -226,6 +244,8 @@ export interface FiltersCrudService {
226
244
  UpdateFilterExpressionRaw(request: UpdateFilterExpressionRawRequest): Promise<{}>;
227
245
  UpdateFiltrationID(request: UpdateFiltrationIDRequest): Promise<{}>;
228
246
  UpdateUpdated(request: UpdateUpdatedRequest): Promise<{}>;
247
+ UpdateDescription(request: UpdateDescriptionRequest): Promise<{}>;
248
+ UpdateDeviceLoadPolicy(request: UpdateDeviceLoadPolicyRequest): Promise<{}>;
229
249
  }
230
250
  export type CreateRequest = {
231
251
  Code?: string;
@@ -244,6 +264,8 @@ export type CreateRequest = {
244
264
  FilterExpressionRaw?: string;
245
265
  FiltrationID?: string;
246
266
  Updated?: Date;
267
+ Description?: string;
268
+ DeviceLoadPolicy?: string;
247
269
  };
248
270
  export type CreateResponse = {
249
271
  filter: Filter;
@@ -360,6 +382,14 @@ export type UpdateUpdatedRequest = {
360
382
  ID?: number;
361
383
  value?: Date;
362
384
  };
385
+ export type UpdateDescriptionRequest = {
386
+ ID?: number;
387
+ value?: string;
388
+ };
389
+ export type UpdateDeviceLoadPolicyRequest = {
390
+ ID?: number;
391
+ value?: string;
392
+ };
363
393
  export type GetRequest = {
364
394
  ID?: number;
365
395
  };
@@ -402,6 +432,8 @@ export type Filter = {
402
432
  FilterExpressionRaw: string;
403
433
  FiltrationID: string;
404
434
  Updated: Date;
435
+ Description: string;
436
+ DeviceLoadPolicy: string;
405
437
  };
406
438
  export type FilterExpression_Operation_Operator = 'OPERATOR_UNSPECIFIED' | 'OPERATOR_INTERSECT' | 'OPERATOR_UNION' | 'OPERATOR_DIFFERENCE';
407
439
  export type FilterExpression_Operation = {