@pushwoosh/rpc-v2-http-api-data 0.2.12 → 0.2.14
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 +17 -1
- package/data.js +25 -1
- package/package.json +1 -1
|
@@ -155,7 +155,11 @@ export type SmsConfiguration_provider_ablemobile = {
|
|
|
155
155
|
type: 'ablemobile';
|
|
156
156
|
data: SmsAbleMobileConfiguration;
|
|
157
157
|
};
|
|
158
|
-
export type
|
|
158
|
+
export type SmsConfiguration_provider_mstat = {
|
|
159
|
+
type: 'mstat';
|
|
160
|
+
data: SmsMStatConfiguration;
|
|
161
|
+
};
|
|
162
|
+
export type SmsConfiguration_provider = SmsConfiguration_provider_twilio | SmsConfiguration_provider_amazon | SmsConfiguration_provider_smsGlobal | SmsConfiguration_provider_smsala | SmsConfiguration_provider_capitolemobile | SmsConfiguration_provider_mobipace | SmsConfiguration_provider_smscenter | SmsConfiguration_provider_smstraffic | SmsConfiguration_provider_textmecoil | SmsConfiguration_provider_ablemobile | SmsConfiguration_provider_mstat;
|
|
159
163
|
/**
|
|
160
164
|
* SmsConfiguration carries per-application SMS provider credentials. Exactly
|
|
161
165
|
* one provider must be set; the chosen oneof field selects which gateway
|
|
@@ -218,6 +222,18 @@ export type SmsAbleMobileConfiguration = {
|
|
|
218
222
|
ablemobilePassword: string;
|
|
219
223
|
ablemobileSenderId: string;
|
|
220
224
|
};
|
|
225
|
+
/**
|
|
226
|
+
* SmsMStatConfiguration carries MStat (Omni Messaging) credentials. Auth is the
|
|
227
|
+
* API token, or HTTP Basic (username + password) as a fallback; account_id is
|
|
228
|
+
* required and sender is optional.
|
|
229
|
+
*/
|
|
230
|
+
export type SmsMStatConfiguration = {
|
|
231
|
+
mstatApiToken: string;
|
|
232
|
+
mstatUsername: string;
|
|
233
|
+
mstatPassword: string;
|
|
234
|
+
mstatAccountId: string;
|
|
235
|
+
mstatSender: string;
|
|
236
|
+
};
|
|
221
237
|
export type ConfigurationRequest_kind_androidConfiguration = {
|
|
222
238
|
type: 'androidConfiguration';
|
|
223
239
|
data: AndroidConfiguration;
|
package/data.js
CHANGED
|
@@ -3748,6 +3748,9 @@ export const data = {
|
|
|
3748
3748
|
},
|
|
3749
3749
|
"ablemobile": {
|
|
3750
3750
|
"type": "pushwoosh.rpc_v2.applications_configurations.SmsAbleMobileConfiguration"
|
|
3751
|
+
},
|
|
3752
|
+
"mstat": {
|
|
3753
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.SmsMStatConfiguration"
|
|
3751
3754
|
}
|
|
3752
3755
|
},
|
|
3753
3756
|
"oneofs": {
|
|
@@ -3762,7 +3765,8 @@ export const data = {
|
|
|
3762
3765
|
"smscenter",
|
|
3763
3766
|
"smstraffic",
|
|
3764
3767
|
"textmecoil",
|
|
3765
|
-
"ablemobile"
|
|
3768
|
+
"ablemobile",
|
|
3769
|
+
"mstat"
|
|
3766
3770
|
]
|
|
3767
3771
|
}
|
|
3768
3772
|
}
|
|
@@ -3913,6 +3917,26 @@ export const data = {
|
|
|
3913
3917
|
}
|
|
3914
3918
|
}
|
|
3915
3919
|
},
|
|
3920
|
+
"pushwoosh.rpc_v2.applications_configurations.SmsMStatConfiguration": {
|
|
3921
|
+
"type": "I",
|
|
3922
|
+
"fields": {
|
|
3923
|
+
"mstatApiToken": {
|
|
3924
|
+
"type": "string"
|
|
3925
|
+
},
|
|
3926
|
+
"mstatUsername": {
|
|
3927
|
+
"type": "string"
|
|
3928
|
+
},
|
|
3929
|
+
"mstatPassword": {
|
|
3930
|
+
"type": "string"
|
|
3931
|
+
},
|
|
3932
|
+
"mstatAccountId": {
|
|
3933
|
+
"type": "string"
|
|
3934
|
+
},
|
|
3935
|
+
"mstatSender": {
|
|
3936
|
+
"type": "string"
|
|
3937
|
+
}
|
|
3938
|
+
}
|
|
3939
|
+
},
|
|
3916
3940
|
"pushwoosh.rpc_v2.applications_configurations.ConfigurationRequest": {
|
|
3917
3941
|
"type": "I",
|
|
3918
3942
|
"fields": {
|