digicust_types 1.7.427 → 1.7.428

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.
@@ -23,5 +23,6 @@ export declare enum DigicustDocumentType {
23
23
  TariffClassificationInput = "tariffClassificationInput",
24
24
  TemporaryStorage = "TemporaryStorage",
25
25
  ATR = "ATR",
26
+ EUR1 = "EUR1",
26
27
  UserInput = "UserInput"
27
28
  }
@@ -27,5 +27,6 @@ var DigicustDocumentType;
27
27
  DigicustDocumentType["TariffClassificationInput"] = "tariffClassificationInput";
28
28
  DigicustDocumentType["TemporaryStorage"] = "TemporaryStorage";
29
29
  DigicustDocumentType["ATR"] = "ATR";
30
+ DigicustDocumentType["EUR1"] = "EUR1";
30
31
  DigicustDocumentType["UserInput"] = "UserInput";
31
32
  })(DigicustDocumentType = exports.DigicustDocumentType || (exports.DigicustDocumentType = {}));
@@ -0,0 +1,10 @@
1
+ import { Weight } from "../../measures";
2
+ import { Meta } from "../../meta";
3
+ import { DigicustDocumentModel } from "./digicust-document.model";
4
+ /**
5
+ * Identifies an EUR1 document
6
+ */
7
+ export interface EUR1Document extends DigicustDocumentModel {
8
+ EUR1Number?: Meta<string>;
9
+ totalGrossWeight?: Weight;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -10,3 +10,4 @@ export * from "./temporary-storage.model";
10
10
  export * from "./turkish-export-declaration.model";
11
11
  export * from "./atr.model";
12
12
  export * from "./user-input.model";
13
+ export * from "./eur1.model";
@@ -26,3 +26,4 @@ __exportStar(require("./temporary-storage.model"), exports);
26
26
  __exportStar(require("./turkish-export-declaration.model"), exports);
27
27
  __exportStar(require("./atr.model"), exports);
28
28
  __exportStar(require("./user-input.model"), exports);
29
+ __exportStar(require("./eur1.model"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.427",
3
+ "version": "1.7.428",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",