@pushwoosh/rpc-v2-http-api-data 0.1.997 → 0.1.998

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 CHANGED
@@ -6659,6 +6659,15 @@ export const data = {
6659
6659
  },
6660
6660
  "sendingIpAndPool": {
6661
6661
  "type": "pushwoosh.rpc_v2.deliverability_checker.SendingIpPoolDetails"
6662
+ },
6663
+ "spf": {
6664
+ "type": "pushwoosh.rpc_v2.deliverability_checker.SpfDetails"
6665
+ },
6666
+ "dmarc": {
6667
+ "type": "pushwoosh.rpc_v2.deliverability_checker.DmarcDetails"
6668
+ },
6669
+ "subjectLine": {
6670
+ "type": "pushwoosh.rpc_v2.deliverability_checker.SubjectLineDetails"
6662
6671
  }
6663
6672
  },
6664
6673
  "oneofs": {
@@ -6675,7 +6684,10 @@ export const data = {
6675
6684
  "spamScore",
6676
6685
  "deliveryResponse",
6677
6686
  "dkimSignature",
6678
- "sendingIpAndPool"
6687
+ "sendingIpAndPool",
6688
+ "spf",
6689
+ "dmarc",
6690
+ "subjectLine"
6679
6691
  ]
6680
6692
  }
6681
6693
  }
@@ -6900,6 +6912,53 @@ export const data = {
6900
6912
  }
6901
6913
  }
6902
6914
  },
6915
+ "pushwoosh.rpc_v2.deliverability_checker.SpfDetails": {
6916
+ "type": "I",
6917
+ "fields": {
6918
+ "result": {
6919
+ "type": "string"
6920
+ },
6921
+ "fromDomain": {
6922
+ "type": "string"
6923
+ },
6924
+ "ip": {
6925
+ "type": "string"
6926
+ },
6927
+ "reason": {
6928
+ "type": "string"
6929
+ }
6930
+ }
6931
+ },
6932
+ "pushwoosh.rpc_v2.deliverability_checker.DmarcDetails": {
6933
+ "type": "I",
6934
+ "fields": {
6935
+ "result": {
6936
+ "type": "string"
6937
+ },
6938
+ "fromDomain": {
6939
+ "type": "string"
6940
+ },
6941
+ "policy": {
6942
+ "type": "string"
6943
+ },
6944
+ "reason": {
6945
+ "type": "string"
6946
+ }
6947
+ }
6948
+ },
6949
+ "pushwoosh.rpc_v2.deliverability_checker.SubjectLineDetails": {
6950
+ "type": "I",
6951
+ "fields": {
6952
+ "filledLocales": {
6953
+ "type": "string",
6954
+ "array": true
6955
+ },
6956
+ "emptyLocales": {
6957
+ "type": "string",
6958
+ "array": true
6959
+ }
6960
+ }
6961
+ },
6903
6962
  "pushwoosh.rpc_v2.deliverability_checker.Level": {
6904
6963
  "type": "E",
6905
6964
  "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.998",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",