dymo-api 1.2.12 → 1.2.13

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.
@@ -76,7 +76,7 @@ class DymoAPI {
76
76
  headers: {
77
77
  "User-Agent": "DymoAPISDK/1.0.0",
78
78
  "X-Dymo-SDK-Env": "Node",
79
- "X-Dymo-SDK-Version": "1.2.12"
79
+ "X-Dymo-SDK-Version": "1.2.13"
80
80
  }
81
81
  });
82
82
  // We set the authorization in the Axios client to make requests.
@@ -38,7 +38,7 @@ class DymoAPI {
38
38
  headers: {
39
39
  "User-Agent": "DymoAPISDK/1.0.0",
40
40
  "X-Dymo-SDK-Env": "Node",
41
- "X-Dymo-SDK-Version": "1.2.12"
41
+ "X-Dymo-SDK-Version": "1.2.13"
42
42
  }
43
43
  });
44
44
  // We set the authorization in the Axios client to make requests.
@@ -219,3 +219,4 @@ declare class DymoAPI {
219
219
  isValidPwd(data: Interfaces.IsValidPwdData): Promise<Interfaces.PasswordValidationResult>;
220
220
  }
221
221
  export default DymoAPI;
222
+ export type { EmailValidatorRules, WafRules, NegativeEmailRules, SensitiveInfoRules } from "./lib/types/interfaces";
@@ -1,7 +1,7 @@
1
1
  import * as WellKnownBots from "./well-known-bots";
2
2
  import { NegativeEmailRules, NegativeSensitiveInfoRules } from "./data-verifier";
3
3
  type Mode = "LIVE" | "DRY_RUN";
4
- type NegativeWafRules = "FRAUD" | "VPN" | "PROXY" | "TOR_NETWORK";
4
+ export type NegativeWafRules = "FRAUD" | "VPN" | "PROXY" | "TOR_NETWORK";
5
5
  export interface WafRules {
6
6
  mode?: Mode;
7
7
  allowBots?: WellKnownBots.WellKnownBotOrCategory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dymo-api",
3
- "version": "1.2.12",
3
+ "version": "1.2.13",
4
4
  "description": "Flow system for Dymo API.",
5
5
  "main": "dist/cjs/dymo-api.js",
6
6
  "module": "dist/esm/dymo-api.js",