digicust_types 1.7.201 → 1.7.204

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.
@@ -3,4 +3,5 @@ export interface UnitOfMeasurement extends Meta<string> {
3
3
  DE_I0700?: string;
4
4
  DE_I0700_Qualifier?: string;
5
5
  description?: string;
6
+ customsTariffNumberDependency?: string;
6
7
  }
@@ -0,0 +1,8 @@
1
+ import { Meta } from "../common";
2
+ /** EORI number */
3
+ export interface EORI extends Meta<string> {
4
+ value?: string;
5
+ /** alpha2code */
6
+ nationality?: string;
7
+ valid?: boolean;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -52,6 +52,7 @@ export interface ExecutionStrategy {
52
52
  active?: boolean;
53
53
  /** Determines how to deal with additional costs like shipping costs, packing, ... */
54
54
  additionalCostsStrategy?: "addToFirstItem" | "splitToAllItems";
55
+ allowDateInOrderNumber?: boolean;
55
56
  };
56
57
  dataValidation?: {
57
58
  active?: boolean;
@@ -40,3 +40,4 @@ export * from "./extractions";
40
40
  export * from "./membership.model";
41
41
  export * from "./documents";
42
42
  export * from "./deferment-account.model";
43
+ export * from "./eori.model";
@@ -61,3 +61,4 @@ __exportStar(require("./membership.model"), exports);
61
61
  __exportStar(require("./documents"), exports);
62
62
  // deferment account
63
63
  __exportStar(require("./deferment-account.model"), exports);
64
+ __exportStar(require("./eori.model"), exports);
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @deprecated
3
+ */
1
4
  export interface SpecialMeasureModel {
2
5
  value: number;
3
6
  unit: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.201",
3
+ "version": "1.7.204",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",