dymo-api 1.0.82 → 1.0.83

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.
@@ -160,10 +160,10 @@ export interface DataValidationAnalysis {
160
160
  plugins: {
161
161
  compromiseDetector?: boolean;
162
162
  nsfw?: boolean;
163
- reputation?: boolean;
163
+ reputation?: "low" | "medium" | "high" | "very-high" | "education" | "governmental" | "unknown";
164
164
  torNetwork?: boolean;
165
165
  typosquatting?: boolean;
166
- urlShortener?: "low" | "medium" | "high" | "very-high" | "education" | "governmental" | "unknown";
166
+ urlShortener?: boolean;
167
167
  };
168
168
  };
169
169
  phone: {
@@ -185,10 +185,10 @@ export interface DataValidationAnalysis {
185
185
  plugins: {
186
186
  compromiseDetector?: boolean;
187
187
  nsfw?: boolean;
188
- reputation?: boolean;
188
+ reputation?: "low" | "medium" | "high" | "very-high" | "education" | "governmental" | "unknown";
189
189
  torNetwork?: boolean;
190
190
  typosquatting?: boolean;
191
- urlShortener?: "low" | "medium" | "high" | "very-high" | "education" | "governmental" | "unknown";
191
+ urlShortener?: boolean;
192
192
  };
193
193
  };
194
194
  creditCard: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dymo-api",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "description": "Flow system for Dymo API.",
5
5
  "main": "dist/cjs/dymo-api.js",
6
6
  "module": "dist/esm/dymo-api.js",