@pushwoosh/rpc-gateway-messaging 0.6.35 → 0.6.37

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
@@ -206,7 +206,8 @@ export const data = {
206
206
  "WHATS_APP",
207
207
  "LINE",
208
208
  "KAKAO",
209
- "TELEGRAM"
209
+ "TELEGRAM",
210
+ "APPLE_WALLET"
210
211
  ]
211
212
  },
212
213
  "pushwoosh.channels.messagingApi.v2.NotifySegment": {
@@ -1221,9 +1222,6 @@ export const data = {
1221
1222
  "voipPush": {
1222
1223
  "type": "boolean"
1223
1224
  },
1224
- "appleWalletPassUpdate": {
1225
- "type": "boolean"
1226
- },
1227
1225
  "appleWalletPassSerial": {
1228
1226
  "type": "string"
1229
1227
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-messaging",
3
- "version": "0.6.35",
3
+ "version": "0.6.37",
4
4
  "description": "Channels Messaging API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -102,7 +102,7 @@ export type RegistrationType =
102
102
  * in the request, even if it is unknown to Pushwoosh.
103
103
  */
104
104
  | 'REGISTRATION_TYPE_FORCE';
105
- export type Platform = 'UNKNOWN' | 'IOS' | 'ANDROID' | 'OSX' | 'WINDOWS' | 'AMAZON' | 'SAFARI' | 'CHROME' | 'FIREFOX' | 'IE' | 'EMAIL' | 'BAIDU_ANDROID' | 'HUAWEI_ANDROID' | 'SMS' | 'WEB' | 'WHATS_APP' | 'LINE' | 'KAKAO' | 'TELEGRAM';
105
+ export type Platform = 'UNKNOWN' | 'IOS' | 'ANDROID' | 'OSX' | 'WINDOWS' | 'AMAZON' | 'SAFARI' | 'CHROME' | 'FIREFOX' | 'IE' | 'EMAIL' | 'BAIDU_ANDROID' | 'HUAWEI_ANDROID' | 'SMS' | 'WEB' | 'WHATS_APP' | 'LINE' | 'KAKAO' | 'TELEGRAM' | 'APPLE_WALLET';
106
106
  export type NotifySegment_target_code = {
107
107
  type: 'code';
108
108
  data: string;
@@ -575,7 +575,6 @@ export type Payload = {
575
575
  openAction: OpenAction;
576
576
  openActions: Record<number, OpenAction>;
577
577
  voipPush: boolean;
578
- appleWalletPassUpdate: boolean;
579
578
  appleWalletPassSerial: string;
580
579
  kind: Payload_kind;
581
580
  };