@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.908",
3
+ "version": "0.1.910",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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
@@ -47,6 +47,8 @@ export type ListTagsRequest = {
47
47
  orderDirection?: ListTagsRequest_OrderDirection;
48
48
  page?: number;
49
49
  perPage?: number;
50
+ /** filter by tag types, empty means all */
51
+ types?: Tag_Type[];
50
52
  };
51
53
  export type ListTagsResponse = {
52
54
  tags: Tag[];