@pushwoosh/rpc-v2-http-api-data 0.1.908 → 0.1.909
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 +27 -0
- package/package.json +1 -1
- package/pushwoosh_channels_messagingApi_v2.d.ts +7 -0
- package/tags.d.ts +11 -0
package/data.js
CHANGED
|
@@ -4598,6 +4598,9 @@ export const data = {
|
|
|
4598
4598
|
},
|
|
4599
4599
|
"messageType": {
|
|
4600
4600
|
"type": "pushwoosh.channels.messagingApi.v2.MessageType"
|
|
4601
|
+
},
|
|
4602
|
+
"ttl": {
|
|
4603
|
+
"type": "Duration"
|
|
4601
4604
|
}
|
|
4602
4605
|
},
|
|
4603
4606
|
"oneofs": {
|
|
@@ -24705,6 +24708,27 @@ export const data = {
|
|
|
24705
24708
|
"DESC"
|
|
24706
24709
|
]
|
|
24707
24710
|
},
|
|
24711
|
+
"pushwoosh.rpc_v2.tags.ListTagsRequest.Filter": {
|
|
24712
|
+
"type": "I",
|
|
24713
|
+
"fields": {
|
|
24714
|
+
"types": {
|
|
24715
|
+
"type": "pushwoosh.rpc_v2.tags.Tag.Type",
|
|
24716
|
+
"array": true
|
|
24717
|
+
},
|
|
24718
|
+
"system": {
|
|
24719
|
+
"type": "boolean",
|
|
24720
|
+
"optional": true
|
|
24721
|
+
},
|
|
24722
|
+
"appSpecific": {
|
|
24723
|
+
"type": "boolean",
|
|
24724
|
+
"optional": true
|
|
24725
|
+
},
|
|
24726
|
+
"userSpecific": {
|
|
24727
|
+
"type": "boolean",
|
|
24728
|
+
"optional": true
|
|
24729
|
+
}
|
|
24730
|
+
}
|
|
24731
|
+
},
|
|
24708
24732
|
"pushwoosh.rpc_v2.tags.ListTagsRequest": {
|
|
24709
24733
|
"type": "I",
|
|
24710
24734
|
"fields": {
|
|
@@ -24722,6 +24746,9 @@ export const data = {
|
|
|
24722
24746
|
},
|
|
24723
24747
|
"perPage": {
|
|
24724
24748
|
"type": "number"
|
|
24749
|
+
},
|
|
24750
|
+
"filter": {
|
|
24751
|
+
"type": "pushwoosh.rpc_v2.tags.ListTagsRequest.Filter"
|
|
24725
24752
|
}
|
|
24726
24753
|
}
|
|
24727
24754
|
},
|
package/package.json
CHANGED
|
@@ -150,6 +150,13 @@ export type NotifyTransactional = {
|
|
|
150
150
|
* Used to control behavior like control group filtering.
|
|
151
151
|
*/
|
|
152
152
|
messageType: MessageType;
|
|
153
|
+
/**
|
|
154
|
+
* Point-level TTL. When set, it overrides per-platform TTL
|
|
155
|
+
* values and the preset-level TTL, and is applied uniformly across every
|
|
156
|
+
* push platform (iOS, Android, Huawei, Baidu, Chrome, macOS, Safari, Amazon,
|
|
157
|
+
* Windows).
|
|
158
|
+
*/
|
|
159
|
+
ttl: Duration;
|
|
153
160
|
target: NotifyTransactional_target;
|
|
154
161
|
messagePayload: NotifyTransactional_messagePayload;
|
|
155
162
|
};
|
package/tags.d.ts
CHANGED
|
@@ -40,6 +40,16 @@ export type DeleteTagRequest = {
|
|
|
40
40
|
export type DeleteTagResponse = {};
|
|
41
41
|
export type ListTagsRequest_OrderBy = 'NAME' | 'CREATED';
|
|
42
42
|
export type ListTagsRequest_OrderDirection = 'ASC' | 'DESC';
|
|
43
|
+
export type ListTagsRequest_Filter = {
|
|
44
|
+
/** filter by tag types, e.g. [STRING, INTEGER] */
|
|
45
|
+
types: Tag_Type[];
|
|
46
|
+
/** filter by system flag */
|
|
47
|
+
system?: boolean;
|
|
48
|
+
/** filter by app_specific flag */
|
|
49
|
+
appSpecific?: boolean;
|
|
50
|
+
/** filter by user_specific flag */
|
|
51
|
+
userSpecific?: boolean;
|
|
52
|
+
};
|
|
43
53
|
export type ListTagsRequest = {
|
|
44
54
|
/** like %name% */
|
|
45
55
|
searchByName?: string;
|
|
@@ -47,6 +57,7 @@ export type ListTagsRequest = {
|
|
|
47
57
|
orderDirection?: ListTagsRequest_OrderDirection;
|
|
48
58
|
page?: number;
|
|
49
59
|
perPage?: number;
|
|
60
|
+
filter?: ListTagsRequest_Filter;
|
|
50
61
|
};
|
|
51
62
|
export type ListTagsResponse = {
|
|
52
63
|
tags: Tag[];
|