@pushwoosh/rpc-v2-http-api-data 0.1.908 → 0.1.910
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 +7 -0
- package/package.json +1 -1
- package/pushwoosh_channels_messagingApi_v2.d.ts +7 -0
- package/tags.d.ts +2 -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": {
|
|
@@ -24722,6 +24725,10 @@ export const data = {
|
|
|
24722
24725
|
},
|
|
24723
24726
|
"perPage": {
|
|
24724
24727
|
"type": "number"
|
|
24728
|
+
},
|
|
24729
|
+
"types": {
|
|
24730
|
+
"type": "pushwoosh.rpc_v2.tags.Tag.Type",
|
|
24731
|
+
"array": true
|
|
24725
24732
|
}
|
|
24726
24733
|
}
|
|
24727
24734
|
},
|
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