digicust_types 1.7.392 → 1.7.394

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.
@@ -4,3 +4,5 @@ export * from "./hs-classification-interaction";
4
4
  export * from "./hs-classification-response";
5
5
  export * from "./hs-code-mapping";
6
6
  export * from "./hs-code.model";
7
+ export * from "./tariff-number-flat";
8
+ export * from "./tariff-number-tree-node";
@@ -20,3 +20,5 @@ __exportStar(require("./hs-classification-interaction"), exports);
20
20
  __exportStar(require("./hs-classification-response"), exports);
21
21
  __exportStar(require("./hs-code-mapping"), exports);
22
22
  __exportStar(require("./hs-code.model"), exports);
23
+ __exportStar(require("./tariff-number-flat"), exports);
24
+ __exportStar(require("./tariff-number-tree-node"), exports);
@@ -0,0 +1,6 @@
1
+ import { CodeModel } from '../../codes';
2
+ export interface TariffNumberFlat extends CodeModel {
3
+ code: string;
4
+ description: string;
5
+ layer: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ import { CodeModel } from '../../codes';
2
+ export interface TariffNumberTreeNode extends CodeModel {
3
+ code: string;
4
+ description: string;
5
+ layer: number;
6
+ breadcrumbs: string[];
7
+ children: TariffNumberTreeNode[];
8
+ parent: TariffNumberTreeNode;
9
+ isLeaf: boolean;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { Weight, Meta, ATB } from "../..";
2
+ import { DigicustDocumentModel } from "./digicust-document.model";
3
+ export interface TemporaryUsageModel extends DigicustDocumentModel {
4
+ preliminaryDocuments?: ATB[];
5
+ weight?: Weight;
6
+ numberOfShipments?: Meta<number>;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -108,6 +108,7 @@ export interface ExecutionStrategy {
108
108
  "client-system-id"?: string;
109
109
  "client-ident-code"?: string;
110
110
  profile?: string;
111
+ organizationalUnit?: string;
111
112
  };
112
113
  } | {
113
114
  active?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.392",
3
+ "version": "1.7.394",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",