digicust_types 1.7.347 → 1.7.348

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.
@@ -17,5 +17,5 @@ export declare enum DigicustDocumentType {
17
17
  ProofOfDirectTransport = "proofOfDirectTransport",
18
18
  ExportDeclaration = "exportDeclaration",
19
19
  TariffClassificationInput = "tariffClassificationInput",
20
- TemporaryUsage = "temporaryUsage"
20
+ TemporaryStorage = "TemporaryStorage"
21
21
  }
@@ -21,5 +21,5 @@ var DigicustDocumentType;
21
21
  DigicustDocumentType["ProofOfDirectTransport"] = "proofOfDirectTransport";
22
22
  DigicustDocumentType["ExportDeclaration"] = "exportDeclaration";
23
23
  DigicustDocumentType["TariffClassificationInput"] = "tariffClassificationInput";
24
- DigicustDocumentType["TemporaryUsage"] = "temporaryUsage";
24
+ DigicustDocumentType["TemporaryStorage"] = "TemporaryStorage";
25
25
  })(DigicustDocumentType = exports.DigicustDocumentType || (exports.DigicustDocumentType = {}));
@@ -4,7 +4,7 @@ import { InvoiceModel } from "./invoice.model";
4
4
  import { PackingListModel } from "./packing-list.model";
5
5
  import { WaybillModel } from "./waybill.model";
6
6
  import { EmailDocument } from "./email-document.model";
7
- import { TemporaryUsageModel } from "./temporary-usage.model";
8
- export declare type ProcessableDocumentTypes = InvoiceModel | PackingListModel | ExportDeclaration | WaybillModel | DeliveryNotesModel | EmailDocument | TemporaryUsageModel;
9
- export declare type ProcessableDocumentTypesArray = InvoiceModel[] | PackingListModel[] | ExportDeclaration[] | WaybillModel[] | DeliveryNotesModel[] | EmailDocument[] | TemporaryUsageModel[];
10
- export declare type ProcessableDocumentTypesValue = "invoice" | "packingList" | "exportDeclaration" | "waybill" | "deliveryNotes" | "email" | "temporaryUsage";
7
+ import { TemporaryStorageModel } from "./temporary-storage.model";
8
+ export declare type ProcessableDocumentTypes = InvoiceModel | PackingListModel | ExportDeclaration | WaybillModel | DeliveryNotesModel | EmailDocument | TemporaryStorageModel;
9
+ export declare type ProcessableDocumentTypesArray = InvoiceModel[] | PackingListModel[] | ExportDeclaration[] | WaybillModel[] | DeliveryNotesModel[] | EmailDocument[] | TemporaryStorageModel[];
10
+ export declare type ProcessableDocumentTypesValue = "invoice" | "packingList" | "exportDeclaration" | "waybill" | "deliveryNotes" | "email" | "TemporaryStorage";
@@ -6,4 +6,4 @@ export * from "./export-declaration.model";
6
6
  export * from "./digicust-document.model";
7
7
  export * from "./delivery-note.model";
8
8
  export * from "./document-types-helper";
9
- export * from "./temporary-usage.model";
9
+ export * from "./temporary-storage.model";
@@ -22,4 +22,4 @@ __exportStar(require("./export-declaration.model"), exports);
22
22
  __exportStar(require("./digicust-document.model"), exports);
23
23
  __exportStar(require("./delivery-note.model"), exports);
24
24
  __exportStar(require("./document-types-helper"), exports);
25
- __exportStar(require("./temporary-usage.model"), exports);
25
+ __exportStar(require("./temporary-storage.model"), exports);
@@ -0,0 +1,7 @@
1
+ import { Weight, Meta, ATB } from "../..";
2
+ import { DigicustDocumentModel } from "./digicust-document.model";
3
+ export interface TemporaryStorageModel 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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.347",
3
+ "version": "1.7.348",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",