@pushwoosh/rpc-v2-http-api-data 0.1.712 → 0.1.714
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
|
@@ -10971,7 +10971,11 @@ export const data = {
|
|
|
10971
10971
|
"values": [
|
|
10972
10972
|
"INVALID",
|
|
10973
10973
|
"ASC",
|
|
10974
|
-
"DESC"
|
|
10974
|
+
"DESC",
|
|
10975
|
+
"ASC_NULLS_LAST",
|
|
10976
|
+
"DESC_NULLS_LAST",
|
|
10977
|
+
"ASC_NULLS_FIRST",
|
|
10978
|
+
"DESC_NULLS_FIRST"
|
|
10975
10979
|
]
|
|
10976
10980
|
},
|
|
10977
10981
|
"pushwoosh.objects.filters.v1.SortExpression": {
|
|
@@ -11904,6 +11908,25 @@ export const data = {
|
|
|
11904
11908
|
}
|
|
11905
11909
|
}
|
|
11906
11910
|
},
|
|
11911
|
+
"pushwoosh.objects.filters.v1.FilterExpression.List": {
|
|
11912
|
+
"type": "I",
|
|
11913
|
+
"fields": {
|
|
11914
|
+
"application": {
|
|
11915
|
+
"type": "string"
|
|
11916
|
+
},
|
|
11917
|
+
"kind": {
|
|
11918
|
+
"type": "string"
|
|
11919
|
+
},
|
|
11920
|
+
"users": {
|
|
11921
|
+
"type": "string",
|
|
11922
|
+
"array": true
|
|
11923
|
+
},
|
|
11924
|
+
"devices": {
|
|
11925
|
+
"type": "string",
|
|
11926
|
+
"array": true
|
|
11927
|
+
}
|
|
11928
|
+
}
|
|
11929
|
+
},
|
|
11907
11930
|
"pushwoosh.objects.filters.v1.FilterExpression.Static": {
|
|
11908
11931
|
"type": "I",
|
|
11909
11932
|
"fields": {
|
|
@@ -13751,6 +13774,9 @@ export const data = {
|
|
|
13751
13774
|
},
|
|
13752
13775
|
"segment": {
|
|
13753
13776
|
"type": "pushwoosh.objects.filters.v1.FilterExpression.Segment"
|
|
13777
|
+
},
|
|
13778
|
+
"list": {
|
|
13779
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression.List"
|
|
13754
13780
|
}
|
|
13755
13781
|
},
|
|
13756
13782
|
"oneofs": {
|
|
@@ -13765,7 +13791,8 @@ export const data = {
|
|
|
13765
13791
|
"updated",
|
|
13766
13792
|
"bestTimeToSend",
|
|
13767
13793
|
"tagDateMatch",
|
|
13768
|
-
"segment"
|
|
13794
|
+
"segment",
|
|
13795
|
+
"list"
|
|
13769
13796
|
]
|
|
13770
13797
|
}
|
|
13771
13798
|
}
|
|
@@ -15773,7 +15800,11 @@ export const data = {
|
|
|
15773
15800
|
"values": [
|
|
15774
15801
|
"INVALID",
|
|
15775
15802
|
"ASC",
|
|
15776
|
-
"DESC"
|
|
15803
|
+
"DESC",
|
|
15804
|
+
"ASC_NULLS_LAST",
|
|
15805
|
+
"DESC_NULLS_LAST",
|
|
15806
|
+
"ASC_NULLS_FIRST",
|
|
15807
|
+
"DESC_NULLS_FIRST"
|
|
15777
15808
|
]
|
|
15778
15809
|
},
|
|
15779
15810
|
"pushwoosh.objects.restrictionValues.v1.SortExpression": {
|
package/package.json
CHANGED
|
@@ -201,7 +201,7 @@ export type Sort = {
|
|
|
201
201
|
field: string;
|
|
202
202
|
order: SortOrder;
|
|
203
203
|
};
|
|
204
|
-
export type SortOrder = 'INVALID' | 'ASC' | 'DESC';
|
|
204
|
+
export type SortOrder = 'INVALID' | 'ASC' | 'DESC' | 'ASC_NULLS_LAST' | 'DESC_NULLS_LAST' | 'ASC_NULLS_FIRST' | 'DESC_NULLS_FIRST';
|
|
205
205
|
export type SortExpression = {
|
|
206
206
|
sorts: Sort[];
|
|
207
207
|
};
|
|
@@ -499,6 +499,12 @@ export type FilterExpression_Segment = {
|
|
|
499
499
|
application: string;
|
|
500
500
|
segment: string;
|
|
501
501
|
};
|
|
502
|
+
export type FilterExpression_List = {
|
|
503
|
+
application: string;
|
|
504
|
+
kind: string;
|
|
505
|
+
users: string[];
|
|
506
|
+
devices: string[];
|
|
507
|
+
};
|
|
502
508
|
export type FilterExpression_Static = {
|
|
503
509
|
application: string;
|
|
504
510
|
segment: string;
|
|
@@ -1488,7 +1494,11 @@ export type FilterExpression_kind_segment = {
|
|
|
1488
1494
|
type: 'segment';
|
|
1489
1495
|
data: FilterExpression_Segment;
|
|
1490
1496
|
};
|
|
1491
|
-
export type
|
|
1497
|
+
export type FilterExpression_kind_list = {
|
|
1498
|
+
type: 'list';
|
|
1499
|
+
data: FilterExpression_List;
|
|
1500
|
+
};
|
|
1501
|
+
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 | FilterExpression_kind_list;
|
|
1492
1502
|
export type FilterExpression = {
|
|
1493
1503
|
kind: FilterExpression_kind;
|
|
1494
1504
|
};
|
|
@@ -930,7 +930,7 @@ export type Sort = {
|
|
|
930
930
|
field: string;
|
|
931
931
|
order: SortOrder;
|
|
932
932
|
};
|
|
933
|
-
export type SortOrder = 'INVALID' | 'ASC' | 'DESC';
|
|
933
|
+
export type SortOrder = 'INVALID' | 'ASC' | 'DESC' | 'ASC_NULLS_LAST' | 'DESC_NULLS_LAST' | 'ASC_NULLS_FIRST' | 'DESC_NULLS_FIRST';
|
|
934
934
|
export type SortExpression = {
|
|
935
935
|
sorts: Sort[];
|
|
936
936
|
};
|