@pushwoosh/rpc-v2-http-api-data 0.1.998 → 0.1.999
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 +36 -1
- package/data.js +70 -1
- package/package.json +1 -1
|
@@ -139,7 +139,23 @@ export type SmsConfiguration_provider_mobipace = {
|
|
|
139
139
|
type: 'mobipace';
|
|
140
140
|
data: SmsMobipaceConfiguration;
|
|
141
141
|
};
|
|
142
|
-
export type
|
|
142
|
+
export type SmsConfiguration_provider_smscenter = {
|
|
143
|
+
type: 'smscenter';
|
|
144
|
+
data: SmsCenterConfiguration;
|
|
145
|
+
};
|
|
146
|
+
export type SmsConfiguration_provider_smstraffic = {
|
|
147
|
+
type: 'smstraffic';
|
|
148
|
+
data: SmsTrafficConfiguration;
|
|
149
|
+
};
|
|
150
|
+
export type SmsConfiguration_provider_textmecoil = {
|
|
151
|
+
type: 'textmecoil';
|
|
152
|
+
data: SmsTextMeCoIlConfiguration;
|
|
153
|
+
};
|
|
154
|
+
export type SmsConfiguration_provider_ablemobile = {
|
|
155
|
+
type: 'ablemobile';
|
|
156
|
+
data: SmsAbleMobileConfiguration;
|
|
157
|
+
};
|
|
158
|
+
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;
|
|
143
159
|
/**
|
|
144
160
|
* SmsConfiguration carries per-application SMS provider credentials. Exactly
|
|
145
161
|
* one provider must be set; the chosen oneof field selects which gateway
|
|
@@ -183,6 +199,25 @@ export type SmsMobipaceConfiguration = {
|
|
|
183
199
|
mobipacePassword: string;
|
|
184
200
|
mobipaceSenderId: string;
|
|
185
201
|
};
|
|
202
|
+
export type SmsCenterConfiguration = {
|
|
203
|
+
smsCenterLogin: string;
|
|
204
|
+
smsCenterPassword: string;
|
|
205
|
+
smsCenterSenderId: string;
|
|
206
|
+
};
|
|
207
|
+
export type SmsTrafficConfiguration = {
|
|
208
|
+
smsSmstrafficLogin: string;
|
|
209
|
+
smsSmstrafficPassword: string;
|
|
210
|
+
};
|
|
211
|
+
export type SmsTextMeCoIlConfiguration = {
|
|
212
|
+
textmecoilUsername: string;
|
|
213
|
+
textmecoilPassword: string;
|
|
214
|
+
textmecoilPhoneNumber: string;
|
|
215
|
+
};
|
|
216
|
+
export type SmsAbleMobileConfiguration = {
|
|
217
|
+
ablemobileLogin: string;
|
|
218
|
+
ablemobilePassword: string;
|
|
219
|
+
ablemobileSenderId: string;
|
|
220
|
+
};
|
|
186
221
|
export type ConfigurationRequest_kind_androidConfiguration = {
|
|
187
222
|
type: 'androidConfiguration';
|
|
188
223
|
data: AndroidConfiguration;
|
package/data.js
CHANGED
|
@@ -3736,6 +3736,18 @@ export const data = {
|
|
|
3736
3736
|
},
|
|
3737
3737
|
"mobipace": {
|
|
3738
3738
|
"type": "pushwoosh.rpc_v2.applications_configurations.SmsMobipaceConfiguration"
|
|
3739
|
+
},
|
|
3740
|
+
"smscenter": {
|
|
3741
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.SmsCenterConfiguration"
|
|
3742
|
+
},
|
|
3743
|
+
"smstraffic": {
|
|
3744
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.SmsTrafficConfiguration"
|
|
3745
|
+
},
|
|
3746
|
+
"textmecoil": {
|
|
3747
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.SmsTextMeCoIlConfiguration"
|
|
3748
|
+
},
|
|
3749
|
+
"ablemobile": {
|
|
3750
|
+
"type": "pushwoosh.rpc_v2.applications_configurations.SmsAbleMobileConfiguration"
|
|
3739
3751
|
}
|
|
3740
3752
|
},
|
|
3741
3753
|
"oneofs": {
|
|
@@ -3746,7 +3758,11 @@ export const data = {
|
|
|
3746
3758
|
"smsGlobal",
|
|
3747
3759
|
"smsala",
|
|
3748
3760
|
"capitolemobile",
|
|
3749
|
-
"mobipace"
|
|
3761
|
+
"mobipace",
|
|
3762
|
+
"smscenter",
|
|
3763
|
+
"smstraffic",
|
|
3764
|
+
"textmecoil",
|
|
3765
|
+
"ablemobile"
|
|
3750
3766
|
]
|
|
3751
3767
|
}
|
|
3752
3768
|
}
|
|
@@ -3844,6 +3860,59 @@ export const data = {
|
|
|
3844
3860
|
}
|
|
3845
3861
|
}
|
|
3846
3862
|
},
|
|
3863
|
+
"pushwoosh.rpc_v2.applications_configurations.SmsCenterConfiguration": {
|
|
3864
|
+
"type": "I",
|
|
3865
|
+
"fields": {
|
|
3866
|
+
"smsCenterLogin": {
|
|
3867
|
+
"type": "string"
|
|
3868
|
+
},
|
|
3869
|
+
"smsCenterPassword": {
|
|
3870
|
+
"type": "string"
|
|
3871
|
+
},
|
|
3872
|
+
"smsCenterSenderId": {
|
|
3873
|
+
"type": "string"
|
|
3874
|
+
}
|
|
3875
|
+
}
|
|
3876
|
+
},
|
|
3877
|
+
"pushwoosh.rpc_v2.applications_configurations.SmsTrafficConfiguration": {
|
|
3878
|
+
"type": "I",
|
|
3879
|
+
"fields": {
|
|
3880
|
+
"smsSmstrafficLogin": {
|
|
3881
|
+
"type": "string"
|
|
3882
|
+
},
|
|
3883
|
+
"smsSmstrafficPassword": {
|
|
3884
|
+
"type": "string"
|
|
3885
|
+
}
|
|
3886
|
+
}
|
|
3887
|
+
},
|
|
3888
|
+
"pushwoosh.rpc_v2.applications_configurations.SmsTextMeCoIlConfiguration": {
|
|
3889
|
+
"type": "I",
|
|
3890
|
+
"fields": {
|
|
3891
|
+
"textmecoilUsername": {
|
|
3892
|
+
"type": "string"
|
|
3893
|
+
},
|
|
3894
|
+
"textmecoilPassword": {
|
|
3895
|
+
"type": "string"
|
|
3896
|
+
},
|
|
3897
|
+
"textmecoilPhoneNumber": {
|
|
3898
|
+
"type": "string"
|
|
3899
|
+
}
|
|
3900
|
+
}
|
|
3901
|
+
},
|
|
3902
|
+
"pushwoosh.rpc_v2.applications_configurations.SmsAbleMobileConfiguration": {
|
|
3903
|
+
"type": "I",
|
|
3904
|
+
"fields": {
|
|
3905
|
+
"ablemobileLogin": {
|
|
3906
|
+
"type": "string"
|
|
3907
|
+
},
|
|
3908
|
+
"ablemobilePassword": {
|
|
3909
|
+
"type": "string"
|
|
3910
|
+
},
|
|
3911
|
+
"ablemobileSenderId": {
|
|
3912
|
+
"type": "string"
|
|
3913
|
+
}
|
|
3914
|
+
}
|
|
3915
|
+
},
|
|
3847
3916
|
"pushwoosh.rpc_v2.applications_configurations.ConfigurationRequest": {
|
|
3848
3917
|
"type": "I",
|
|
3849
3918
|
"fields": {
|