@pushwoosh/rpc-gateway-journey-data 0.26.426 → 0.26.427
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 +43 -1
- package/package.json +1 -1
- package/pushwoosh_objects_filters_v1.d.ts +17 -1
package/data.js
CHANGED
|
@@ -5980,6 +5980,21 @@ export const data = {
|
|
|
5980
5980
|
}
|
|
5981
5981
|
}
|
|
5982
5982
|
},
|
|
5983
|
+
"pushwoosh.objects.filters.v1.LogicExpression.Field.HighSpeed": {
|
|
5984
|
+
"type": "I",
|
|
5985
|
+
"fields": {
|
|
5986
|
+
"operator": {
|
|
5987
|
+
"type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Operator"
|
|
5988
|
+
},
|
|
5989
|
+
"value": {
|
|
5990
|
+
"type": "boolean"
|
|
5991
|
+
},
|
|
5992
|
+
"values": {
|
|
5993
|
+
"type": "boolean",
|
|
5994
|
+
"array": true
|
|
5995
|
+
}
|
|
5996
|
+
}
|
|
5997
|
+
},
|
|
5983
5998
|
"pushwoosh.objects.filters.v1.LogicExpression.Field": {
|
|
5984
5999
|
"type": "I",
|
|
5985
6000
|
"fields": {
|
|
@@ -6039,6 +6054,9 @@ export const data = {
|
|
|
6039
6054
|
},
|
|
6040
6055
|
"CondDeviceLoadPolicy": {
|
|
6041
6056
|
"type": "pushwoosh.objects.filters.v1.LogicExpression.Field.DeviceLoadPolicy"
|
|
6057
|
+
},
|
|
6058
|
+
"CondHighSpeed": {
|
|
6059
|
+
"type": "pushwoosh.objects.filters.v1.LogicExpression.Field.HighSpeed"
|
|
6042
6060
|
}
|
|
6043
6061
|
},
|
|
6044
6062
|
"oneofs": {
|
|
@@ -6062,7 +6080,8 @@ export const data = {
|
|
|
6062
6080
|
"CondFiltrationID",
|
|
6063
6081
|
"CondUpdated",
|
|
6064
6082
|
"CondDescription",
|
|
6065
|
-
"CondDeviceLoadPolicy"
|
|
6083
|
+
"CondDeviceLoadPolicy",
|
|
6084
|
+
"CondHighSpeed"
|
|
6066
6085
|
]
|
|
6067
6086
|
}
|
|
6068
6087
|
}
|
|
@@ -6338,6 +6357,12 @@ export const data = {
|
|
|
6338
6357
|
"response": "{}",
|
|
6339
6358
|
"method": "patch",
|
|
6340
6359
|
"path": "/v1/objects/filters/ID/{ID}/update/DeviceLoadPolicy"
|
|
6360
|
+
},
|
|
6361
|
+
"UpdateHighSpeed": {
|
|
6362
|
+
"request": "pushwoosh.objects.filters.v1.UpdateHighSpeedRequest",
|
|
6363
|
+
"response": "{}",
|
|
6364
|
+
"method": "patch",
|
|
6365
|
+
"path": "/v1/objects/filters/ID/{ID}/update/HighSpeed"
|
|
6341
6366
|
}
|
|
6342
6367
|
}
|
|
6343
6368
|
},
|
|
@@ -6397,6 +6422,9 @@ export const data = {
|
|
|
6397
6422
|
},
|
|
6398
6423
|
"DeviceLoadPolicy": {
|
|
6399
6424
|
"type": "string"
|
|
6425
|
+
},
|
|
6426
|
+
"HighSpeed": {
|
|
6427
|
+
"type": "boolean"
|
|
6400
6428
|
}
|
|
6401
6429
|
}
|
|
6402
6430
|
},
|
|
@@ -6741,6 +6769,17 @@ export const data = {
|
|
|
6741
6769
|
}
|
|
6742
6770
|
}
|
|
6743
6771
|
},
|
|
6772
|
+
"pushwoosh.objects.filters.v1.UpdateHighSpeedRequest": {
|
|
6773
|
+
"type": "I",
|
|
6774
|
+
"fields": {
|
|
6775
|
+
"ID": {
|
|
6776
|
+
"type": "number"
|
|
6777
|
+
},
|
|
6778
|
+
"value": {
|
|
6779
|
+
"type": "boolean"
|
|
6780
|
+
}
|
|
6781
|
+
}
|
|
6782
|
+
},
|
|
6744
6783
|
"pushwoosh.objects.filters.v1.GetRequest": {
|
|
6745
6784
|
"type": "I",
|
|
6746
6785
|
"fields": {
|
|
@@ -6871,6 +6910,9 @@ export const data = {
|
|
|
6871
6910
|
},
|
|
6872
6911
|
"DeviceLoadPolicy": {
|
|
6873
6912
|
"type": "string"
|
|
6913
|
+
},
|
|
6914
|
+
"HighSpeed": {
|
|
6915
|
+
"type": "boolean"
|
|
6874
6916
|
}
|
|
6875
6917
|
}
|
|
6876
6918
|
},
|
package/package.json
CHANGED
|
@@ -105,6 +105,11 @@ export type LogicExpression_Field_DeviceLoadPolicy = {
|
|
|
105
105
|
value: string;
|
|
106
106
|
values: string[];
|
|
107
107
|
};
|
|
108
|
+
export type LogicExpression_Field_HighSpeed = {
|
|
109
|
+
operator: LogicExpression_Field_Operator;
|
|
110
|
+
value: boolean;
|
|
111
|
+
values: boolean[];
|
|
112
|
+
};
|
|
108
113
|
export type LogicExpression_Field_kind_CondID = {
|
|
109
114
|
type: 'CondID';
|
|
110
115
|
data: LogicExpression_Field_ID;
|
|
@@ -181,7 +186,11 @@ export type LogicExpression_Field_kind_CondDeviceLoadPolicy = {
|
|
|
181
186
|
type: 'CondDeviceLoadPolicy';
|
|
182
187
|
data: LogicExpression_Field_DeviceLoadPolicy;
|
|
183
188
|
};
|
|
184
|
-
export type
|
|
189
|
+
export type LogicExpression_Field_kind_CondHighSpeed = {
|
|
190
|
+
type: 'CondHighSpeed';
|
|
191
|
+
data: LogicExpression_Field_HighSpeed;
|
|
192
|
+
};
|
|
193
|
+
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 | LogicExpression_Field_kind_CondHighSpeed;
|
|
185
194
|
export type LogicExpression_Field = {
|
|
186
195
|
kind: LogicExpression_Field_kind;
|
|
187
196
|
};
|
|
@@ -246,6 +255,7 @@ export interface FiltersCrudService {
|
|
|
246
255
|
UpdateUpdated(request: UpdateUpdatedRequest): Promise<{}>;
|
|
247
256
|
UpdateDescription(request: UpdateDescriptionRequest): Promise<{}>;
|
|
248
257
|
UpdateDeviceLoadPolicy(request: UpdateDeviceLoadPolicyRequest): Promise<{}>;
|
|
258
|
+
UpdateHighSpeed(request: UpdateHighSpeedRequest): Promise<{}>;
|
|
249
259
|
}
|
|
250
260
|
export type CreateRequest = {
|
|
251
261
|
Code?: string;
|
|
@@ -266,6 +276,7 @@ export type CreateRequest = {
|
|
|
266
276
|
Updated?: Date;
|
|
267
277
|
Description?: string;
|
|
268
278
|
DeviceLoadPolicy?: string;
|
|
279
|
+
HighSpeed?: boolean;
|
|
269
280
|
};
|
|
270
281
|
export type CreateResponse = {
|
|
271
282
|
filter: Filter;
|
|
@@ -390,6 +401,10 @@ export type UpdateDeviceLoadPolicyRequest = {
|
|
|
390
401
|
ID?: number;
|
|
391
402
|
value?: string;
|
|
392
403
|
};
|
|
404
|
+
export type UpdateHighSpeedRequest = {
|
|
405
|
+
ID?: number;
|
|
406
|
+
value?: boolean;
|
|
407
|
+
};
|
|
393
408
|
export type GetRequest = {
|
|
394
409
|
ID?: number;
|
|
395
410
|
};
|
|
@@ -434,6 +449,7 @@ export type Filter = {
|
|
|
434
449
|
Updated: Date;
|
|
435
450
|
Description: string;
|
|
436
451
|
DeviceLoadPolicy: string;
|
|
452
|
+
HighSpeed: boolean;
|
|
437
453
|
};
|
|
438
454
|
export type FilterExpression_Operation_Operator = 'OPERATOR_UNSPECIFIED' | 'OPERATOR_INTERSECT' | 'OPERATOR_UNION' | 'OPERATOR_DIFFERENCE';
|
|
439
455
|
export type FilterExpression_Operation = {
|