@pushwoosh/rpc-v2-http-api-data 0.1.1000 → 0.1.1001
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 +12 -0
- package/deliverability_checker.d.ts +4 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -6693,6 +6693,12 @@ export const data = {
|
|
|
6693
6693
|
"preliminary": {
|
|
6694
6694
|
"type": "boolean"
|
|
6695
6695
|
},
|
|
6696
|
+
"errorCount": {
|
|
6697
|
+
"type": "number"
|
|
6698
|
+
},
|
|
6699
|
+
"warningCount": {
|
|
6700
|
+
"type": "number"
|
|
6701
|
+
},
|
|
6696
6702
|
"size": {
|
|
6697
6703
|
"type": "pushwoosh.rpc_v2.deliverability_checker.SizeDetails"
|
|
6698
6704
|
},
|
|
@@ -6851,6 +6857,9 @@ export const data = {
|
|
|
6851
6857
|
},
|
|
6852
6858
|
"redirects": {
|
|
6853
6859
|
"type": "number"
|
|
6860
|
+
},
|
|
6861
|
+
"level": {
|
|
6862
|
+
"type": "pushwoosh.rpc_v2.deliverability_checker.Level"
|
|
6854
6863
|
}
|
|
6855
6864
|
}
|
|
6856
6865
|
},
|
|
@@ -6877,6 +6886,9 @@ export const data = {
|
|
|
6877
6886
|
},
|
|
6878
6887
|
"source": {
|
|
6879
6888
|
"type": "string"
|
|
6889
|
+
},
|
|
6890
|
+
"level": {
|
|
6891
|
+
"type": "pushwoosh.rpc_v2.deliverability_checker.Level"
|
|
6880
6892
|
}
|
|
6881
6893
|
}
|
|
6882
6894
|
},
|
|
@@ -131,6 +131,8 @@ export type Check = {
|
|
|
131
131
|
status: CheckStatus;
|
|
132
132
|
message: string;
|
|
133
133
|
preliminary: boolean;
|
|
134
|
+
errorCount: number;
|
|
135
|
+
warningCount: number;
|
|
134
136
|
details: Check_details;
|
|
135
137
|
};
|
|
136
138
|
export type SizeDetails = {
|
|
@@ -165,6 +167,7 @@ export type BrokenLinkItem = {
|
|
|
165
167
|
reason: string;
|
|
166
168
|
statusCode: number;
|
|
167
169
|
redirects: number;
|
|
170
|
+
level: Level;
|
|
168
171
|
};
|
|
169
172
|
export type SafeBrowsingDetails = {
|
|
170
173
|
items: SafeBrowsingItem[];
|
|
@@ -174,6 +177,7 @@ export type SafeBrowsingItem = {
|
|
|
174
177
|
url: string;
|
|
175
178
|
category: string;
|
|
176
179
|
source: string;
|
|
180
|
+
level: Level;
|
|
177
181
|
};
|
|
178
182
|
export type TrackerConsistencyDetails = {
|
|
179
183
|
unwrappedCount: number;
|