@pushwoosh/rpc-v2-http-api-data 0.1.997 → 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.
@@ -139,7 +139,23 @@ export type SmsConfiguration_provider_mobipace = {
139
139
  type: 'mobipace';
140
140
  data: SmsMobipaceConfiguration;
141
141
  };
142
- export type SmsConfiguration_provider = SmsConfiguration_provider_twilio | SmsConfiguration_provider_amazon | SmsConfiguration_provider_smsGlobal | SmsConfiguration_provider_smsala | SmsConfiguration_provider_capitolemobile | SmsConfiguration_provider_mobipace;
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": {
@@ -6659,6 +6728,15 @@ export const data = {
6659
6728
  },
6660
6729
  "sendingIpAndPool": {
6661
6730
  "type": "pushwoosh.rpc_v2.deliverability_checker.SendingIpPoolDetails"
6731
+ },
6732
+ "spf": {
6733
+ "type": "pushwoosh.rpc_v2.deliverability_checker.SpfDetails"
6734
+ },
6735
+ "dmarc": {
6736
+ "type": "pushwoosh.rpc_v2.deliverability_checker.DmarcDetails"
6737
+ },
6738
+ "subjectLine": {
6739
+ "type": "pushwoosh.rpc_v2.deliverability_checker.SubjectLineDetails"
6662
6740
  }
6663
6741
  },
6664
6742
  "oneofs": {
@@ -6675,7 +6753,10 @@ export const data = {
6675
6753
  "spamScore",
6676
6754
  "deliveryResponse",
6677
6755
  "dkimSignature",
6678
- "sendingIpAndPool"
6756
+ "sendingIpAndPool",
6757
+ "spf",
6758
+ "dmarc",
6759
+ "subjectLine"
6679
6760
  ]
6680
6761
  }
6681
6762
  }
@@ -6900,6 +6981,53 @@ export const data = {
6900
6981
  }
6901
6982
  }
6902
6983
  },
6984
+ "pushwoosh.rpc_v2.deliverability_checker.SpfDetails": {
6985
+ "type": "I",
6986
+ "fields": {
6987
+ "result": {
6988
+ "type": "string"
6989
+ },
6990
+ "fromDomain": {
6991
+ "type": "string"
6992
+ },
6993
+ "ip": {
6994
+ "type": "string"
6995
+ },
6996
+ "reason": {
6997
+ "type": "string"
6998
+ }
6999
+ }
7000
+ },
7001
+ "pushwoosh.rpc_v2.deliverability_checker.DmarcDetails": {
7002
+ "type": "I",
7003
+ "fields": {
7004
+ "result": {
7005
+ "type": "string"
7006
+ },
7007
+ "fromDomain": {
7008
+ "type": "string"
7009
+ },
7010
+ "policy": {
7011
+ "type": "string"
7012
+ },
7013
+ "reason": {
7014
+ "type": "string"
7015
+ }
7016
+ }
7017
+ },
7018
+ "pushwoosh.rpc_v2.deliverability_checker.SubjectLineDetails": {
7019
+ "type": "I",
7020
+ "fields": {
7021
+ "filledLocales": {
7022
+ "type": "string",
7023
+ "array": true
7024
+ },
7025
+ "emptyLocales": {
7026
+ "type": "string",
7027
+ "array": true
7028
+ }
7029
+ }
7030
+ },
6903
7031
  "pushwoosh.rpc_v2.deliverability_checker.Level": {
6904
7032
  "type": "E",
6905
7033
  "values": [
@@ -112,7 +112,19 @@ export type Check_details_sendingIpAndPool = {
112
112
  type: 'sendingIpAndPool';
113
113
  data: SendingIpPoolDetails;
114
114
  };
115
- export type Check_details = Check_details_size | Check_details_listUnsubscribe | Check_details_unsubscribeUrlHealth | Check_details_visibleUnsubscribeLink | Check_details_physicalAddress | Check_details_brokenLinks | Check_details_safeBrowsing | Check_details_trackerConsistency | Check_details_spamScore | Check_details_deliveryResponse | Check_details_dkimSignature | Check_details_sendingIpAndPool;
115
+ export type Check_details_spf = {
116
+ type: 'spf';
117
+ data: SpfDetails;
118
+ };
119
+ export type Check_details_dmarc = {
120
+ type: 'dmarc';
121
+ data: DmarcDetails;
122
+ };
123
+ export type Check_details_subjectLine = {
124
+ type: 'subjectLine';
125
+ data: SubjectLineDetails;
126
+ };
127
+ export type Check_details = Check_details_size | Check_details_listUnsubscribe | Check_details_unsubscribeUrlHealth | Check_details_visibleUnsubscribeLink | Check_details_physicalAddress | Check_details_brokenLinks | Check_details_safeBrowsing | Check_details_trackerConsistency | Check_details_spamScore | Check_details_deliveryResponse | Check_details_dkimSignature | Check_details_sendingIpAndPool | Check_details_spf | Check_details_dmarc | Check_details_subjectLine;
116
128
  export type Check = {
117
129
  ruleId: string;
118
130
  level: Level;
@@ -198,5 +210,21 @@ export type SendingIpPoolDetails = {
198
210
  ip: string;
199
211
  poolName: string;
200
212
  };
213
+ export type SpfDetails = {
214
+ result: string;
215
+ fromDomain: string;
216
+ ip: string;
217
+ reason: string;
218
+ };
219
+ export type DmarcDetails = {
220
+ result: string;
221
+ fromDomain: string;
222
+ policy: string;
223
+ reason: string;
224
+ };
225
+ export type SubjectLineDetails = {
226
+ filledLocales: string[];
227
+ emptyLocales: string[];
228
+ };
201
229
  export type Level = 'UNSPECIFIED' | 'INFO' | 'WARNING' | 'ERROR';
202
230
  export type CheckStatus = 'CHECK_STATUS_UNSPECIFIED' | 'CHECK_STATUS_OK' | 'CHECK_STATUS_UNAVAILABLE' | 'CHECK_STATUS_TIMEOUT';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.997",
3
+ "version": "0.1.999",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",