@pushwoosh/rpc-gateway-messaging 0.6.47 → 0.6.49
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 +13 -1
- package/package.json +1 -1
- package/pushwoosh_channels_messagingApi_v2.d.ts +5 -1
package/data.js
CHANGED
|
@@ -211,7 +211,8 @@ export const data = {
|
|
|
211
211
|
"KAKAO",
|
|
212
212
|
"TELEGRAM",
|
|
213
213
|
"APPLE_WALLET",
|
|
214
|
-
"GOOGLE_WALLET"
|
|
214
|
+
"GOOGLE_WALLET",
|
|
215
|
+
"VIBER"
|
|
215
216
|
]
|
|
216
217
|
},
|
|
217
218
|
"pushwoosh.channels.messagingApi.v2.NotifySegment": {
|
|
@@ -1150,6 +1151,14 @@ export const data = {
|
|
|
1150
1151
|
}
|
|
1151
1152
|
}
|
|
1152
1153
|
},
|
|
1154
|
+
"pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesViber": {
|
|
1155
|
+
"type": "I",
|
|
1156
|
+
"fields": {
|
|
1157
|
+
"body": {
|
|
1158
|
+
"type": "string"
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1153
1162
|
"pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesKakao": {
|
|
1154
1163
|
"type": "I",
|
|
1155
1164
|
"fields": {
|
|
@@ -1251,6 +1260,9 @@ export const data = {
|
|
|
1251
1260
|
},
|
|
1252
1261
|
"sms": {
|
|
1253
1262
|
"type": "pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesSMS"
|
|
1263
|
+
},
|
|
1264
|
+
"viber": {
|
|
1265
|
+
"type": "pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesViber"
|
|
1254
1266
|
}
|
|
1255
1267
|
}
|
|
1256
1268
|
},
|
package/package.json
CHANGED
|
@@ -103,7 +103,7 @@ export type RegistrationType =
|
|
|
103
103
|
* in the request, even if it is unknown to Pushwoosh.
|
|
104
104
|
*/
|
|
105
105
|
| 'REGISTRATION_TYPE_FORCE';
|
|
106
|
-
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' | 'GOOGLE_WALLET';
|
|
106
|
+
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' | 'GOOGLE_WALLET' | 'VIBER';
|
|
107
107
|
export type NotifySegment_target_code = {
|
|
108
108
|
type: 'code';
|
|
109
109
|
data: string;
|
|
@@ -527,6 +527,9 @@ export type Content_PlatformPropertiesTelegram = {
|
|
|
527
527
|
body: string;
|
|
528
528
|
contentVariables: string;
|
|
529
529
|
};
|
|
530
|
+
export type Content_PlatformPropertiesViber = {
|
|
531
|
+
body: string;
|
|
532
|
+
};
|
|
530
533
|
export type Content_PlatformPropertiesKakao = {
|
|
531
534
|
content: string;
|
|
532
535
|
template: string;
|
|
@@ -586,6 +589,7 @@ export type Content = {
|
|
|
586
589
|
whatsapp: Content_PlatformPropertiesWhatsApp;
|
|
587
590
|
globalProperties: Content_GlobalProperties;
|
|
588
591
|
sms: Content_PlatformPropertiesSMS;
|
|
592
|
+
viber: Content_PlatformPropertiesViber;
|
|
589
593
|
};
|
|
590
594
|
export type LocalizedContent = {
|
|
591
595
|
localizedContent: Record<string, Content>;
|