@pushwoosh/rpc-v2-http-api-data 0.1.752 → 0.1.753
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/applications_configurations.d.ts +8 -1
- package/data.js +13 -1
- package/package.json +1 -1
|
@@ -86,6 +86,9 @@ export type KakaoConfiguration = {
|
|
|
86
86
|
kakaoUserCode: string;
|
|
87
87
|
kakaoSecretKey: string;
|
|
88
88
|
};
|
|
89
|
+
export type TelegramConfiguration = {
|
|
90
|
+
telegramApiToken: string;
|
|
91
|
+
};
|
|
89
92
|
export type WebConfiguration = {
|
|
90
93
|
webVapidPublicKey: string;
|
|
91
94
|
webVapidPrivateKey: string;
|
|
@@ -159,7 +162,11 @@ export type ConfigurationRequest_kind_kakaoConfiguration = {
|
|
|
159
162
|
type: 'kakaoConfiguration';
|
|
160
163
|
data: KakaoConfiguration;
|
|
161
164
|
};
|
|
162
|
-
export type
|
|
165
|
+
export type ConfigurationRequest_kind_telegramConfiguration = {
|
|
166
|
+
type: 'telegramConfiguration';
|
|
167
|
+
data: TelegramConfiguration;
|
|
168
|
+
};
|
|
169
|
+
export type ConfigurationRequest_kind = ConfigurationRequest_kind_androidConfiguration | ConfigurationRequest_kind_chromeConfiguration | ConfigurationRequest_kind_emailConfiguration | ConfigurationRequest_kind_huaweiConfiguration | ConfigurationRequest_kind_safariConfiguration | ConfigurationRequest_kind_windowsConfiguration | ConfigurationRequest_kind_amazonConfiguration | ConfigurationRequest_kind_osxConfiguration | ConfigurationRequest_kind_osxTokenConfiguration | ConfigurationRequest_kind_iosConfiguration | ConfigurationRequest_kind_iosTokenConfiguration | ConfigurationRequest_kind_iosVoipConfiguration | ConfigurationRequest_kind_firefoxConfiguration | ConfigurationRequest_kind_baiduConfiguration | ConfigurationRequest_kind_lineConfiguration | ConfigurationRequest_kind_webConfiguration | ConfigurationRequest_kind_kakaoConfiguration | ConfigurationRequest_kind_telegramConfiguration;
|
|
163
170
|
export type ConfigurationRequest = {
|
|
164
171
|
code?: string;
|
|
165
172
|
kind: ConfigurationRequest_kind;
|
package/data.js
CHANGED
|
@@ -2855,6 +2855,14 @@ export const data = {
|
|
|
2855
2855
|
}
|
|
2856
2856
|
}
|
|
2857
2857
|
},
|
|
2858
|
+
"pushwoosh.rpc_v2.applications_configurations.TelegramConfiguration": {
|
|
2859
|
+
"type": "I",
|
|
2860
|
+
"fields": {
|
|
2861
|
+
"telegramApiToken": {
|
|
2862
|
+
"type": "string"
|
|
2863
|
+
}
|
|
2864
|
+
}
|
|
2865
|
+
},
|
|
2858
2866
|
"pushwoosh.rpc_v2.applications_configurations.WebConfiguration": {
|
|
2859
2867
|
"type": "I",
|
|
2860
2868
|
"fields": {
|
|
@@ -2925,6 +2933,9 @@ export const data = {
|
|
|
2925
2933
|
},
|
|
2926
2934
|
"kakaoConfiguration": {
|
|
2927
2935
|
"type": "pushwoosh.rpc_v2.applications_configurations.KakaoConfiguration"
|
|
2936
|
+
},
|
|
2937
|
+
"telegramConfiguration": {
|
|
2938
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.TelegramConfiguration"
|
|
2928
2939
|
}
|
|
2929
2940
|
},
|
|
2930
2941
|
"oneofs": {
|
|
@@ -2946,7 +2957,8 @@ export const data = {
|
|
|
2946
2957
|
"baiduConfiguration",
|
|
2947
2958
|
"lineConfiguration",
|
|
2948
2959
|
"webConfiguration",
|
|
2949
|
-
"kakaoConfiguration"
|
|
2960
|
+
"kakaoConfiguration",
|
|
2961
|
+
"telegramConfiguration"
|
|
2950
2962
|
]
|
|
2951
2963
|
}
|
|
2952
2964
|
}
|