@pushwoosh/rpc-v2-http-api-data 0.1.664 → 0.1.665
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 +20 -1
- package/package.json +1 -1
- package/pushwoosh_objects_filters_v1.d.ts +10 -1
package/data.js
CHANGED
|
@@ -11331,6 +11331,17 @@ export const data = {
|
|
|
11331
11331
|
}
|
|
11332
11332
|
}
|
|
11333
11333
|
},
|
|
11334
|
+
"pushwoosh.objects.filters.v1.FilterExpression.Segment": {
|
|
11335
|
+
"type": "I",
|
|
11336
|
+
"fields": {
|
|
11337
|
+
"application": {
|
|
11338
|
+
"type": "string"
|
|
11339
|
+
},
|
|
11340
|
+
"segment": {
|
|
11341
|
+
"type": "string"
|
|
11342
|
+
}
|
|
11343
|
+
}
|
|
11344
|
+
},
|
|
11334
11345
|
"pushwoosh.objects.filters.v1.FilterExpression.Static": {
|
|
11335
11346
|
"type": "I",
|
|
11336
11347
|
"fields": {
|
|
@@ -12182,6 +12193,10 @@ export const data = {
|
|
|
12182
12193
|
"platforms": {
|
|
12183
12194
|
"type": "string",
|
|
12184
12195
|
"array": true
|
|
12196
|
+
},
|
|
12197
|
+
"hwids": {
|
|
12198
|
+
"type": "string",
|
|
12199
|
+
"array": true
|
|
12185
12200
|
}
|
|
12186
12201
|
}
|
|
12187
12202
|
},
|
|
@@ -13171,6 +13186,9 @@ export const data = {
|
|
|
13171
13186
|
},
|
|
13172
13187
|
"tagDateMatch": {
|
|
13173
13188
|
"type": "pushwoosh.objects.filters.v1.FilterExpression.TagDateMatch"
|
|
13189
|
+
},
|
|
13190
|
+
"segment": {
|
|
13191
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression.Segment"
|
|
13174
13192
|
}
|
|
13175
13193
|
},
|
|
13176
13194
|
"oneofs": {
|
|
@@ -13184,7 +13202,8 @@ export const data = {
|
|
|
13184
13202
|
"event",
|
|
13185
13203
|
"updated",
|
|
13186
13204
|
"bestTimeToSend",
|
|
13187
|
-
"tagDateMatch"
|
|
13205
|
+
"tagDateMatch",
|
|
13206
|
+
"segment"
|
|
13188
13207
|
]
|
|
13189
13208
|
}
|
|
13190
13209
|
}
|
package/package.json
CHANGED
|
@@ -495,6 +495,10 @@ export type FilterExpression_BestTimeToSend = {
|
|
|
495
495
|
applications: string[];
|
|
496
496
|
value: FilterExpression_BestTimeToSend_Value;
|
|
497
497
|
};
|
|
498
|
+
export type FilterExpression_Segment = {
|
|
499
|
+
application: string;
|
|
500
|
+
segment: string;
|
|
501
|
+
};
|
|
498
502
|
export type FilterExpression_Static = {
|
|
499
503
|
application: string;
|
|
500
504
|
segment: string;
|
|
@@ -932,6 +936,7 @@ export type FilterExpression_Event = {
|
|
|
932
936
|
date: FilterExpression_Event_Date;
|
|
933
937
|
attributes: FilterExpression_Event_Attribute[];
|
|
934
938
|
platforms: string[];
|
|
939
|
+
hwids: string[];
|
|
935
940
|
};
|
|
936
941
|
export type FilterExpression_Updated_Condition_Lte = {
|
|
937
942
|
value: Date;
|
|
@@ -1479,7 +1484,11 @@ export type FilterExpression_kind_tagDateMatch = {
|
|
|
1479
1484
|
type: 'tagDateMatch';
|
|
1480
1485
|
data: FilterExpression_TagDateMatch;
|
|
1481
1486
|
};
|
|
1482
|
-
export type
|
|
1487
|
+
export type FilterExpression_kind_segment = {
|
|
1488
|
+
type: 'segment';
|
|
1489
|
+
data: FilterExpression_Segment;
|
|
1490
|
+
};
|
|
1491
|
+
export type FilterExpression_kind = FilterExpression_kind_operation | FilterExpression_kind_application | FilterExpression_kind_tag | FilterExpression_kind_geo | FilterExpression_kind_static | FilterExpression_kind_event | FilterExpression_kind_updated | FilterExpression_kind_bestTimeToSend | FilterExpression_kind_tagDateMatch | FilterExpression_kind_segment;
|
|
1483
1492
|
export type FilterExpression = {
|
|
1484
1493
|
kind: FilterExpression_kind;
|
|
1485
1494
|
};
|