dymo-api 1.0.81 → 1.0.82

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.
@@ -157,7 +157,14 @@ export interface DataValidationAnalysis {
157
157
  customTLD: boolean;
158
158
  domain: string;
159
159
  roleAccount: boolean;
160
- plugins: {};
160
+ plugins: {
161
+ compromiseDetector?: boolean;
162
+ nsfw?: boolean;
163
+ reputation?: boolean;
164
+ torNetwork?: boolean;
165
+ typosquatting?: boolean;
166
+ urlShortener?: "low" | "medium" | "high" | "very-high" | "education" | "governmental" | "unknown";
167
+ };
161
168
  };
162
169
  phone: {
163
170
  valid: boolean;
@@ -175,7 +182,14 @@ export interface DataValidationAnalysis {
175
182
  freeSubdomain: boolean;
176
183
  customTLD: boolean;
177
184
  domain: string;
178
- plugins: {};
185
+ plugins: {
186
+ compromiseDetector?: boolean;
187
+ nsfw?: boolean;
188
+ reputation?: boolean;
189
+ torNetwork?: boolean;
190
+ typosquatting?: boolean;
191
+ urlShortener?: "low" | "medium" | "high" | "very-high" | "education" | "governmental" | "unknown";
192
+ };
179
193
  };
180
194
  creditCard: {
181
195
  valid: boolean;
@@ -219,6 +233,8 @@ export interface DataValidationAnalysis {
219
233
  fraud: boolean;
220
234
  wallet: string;
221
235
  type: "Bitcoin" | "Bitcoin (Bech32)" | "Ethereum" | "Litecoin" | "Cardano" | "Binance Smart Chain";
222
- plugins: {};
236
+ plugins: {
237
+ torNetwork?: boolean;
238
+ };
223
239
  };
224
240
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dymo-api",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "Flow system for Dymo API.",
5
5
  "main": "dist/cjs/dymo-api.js",
6
6
  "module": "dist/esm/dymo-api.js",