digicust_types 1.8.525 → 1.8.527

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.
@@ -31,6 +31,7 @@ export declare enum DigicustDocumentType {
31
31
  CaseReference = "caseReference",
32
32
  WeighingCertificate = "weighingCertificate",
33
33
  CustomsServiceInstructions = "customsServiceInstructions",
34
- PowerOfAttorney = "powerOfAttorney"
34
+ PowerOfAttorney = "powerOfAttorney",
35
+ T1ExportList = "t1ExportList"
35
36
  }
36
37
  export type VirtualDocumentType = DigicustDocumentType | "xlsx";
@@ -36,4 +36,5 @@ var DigicustDocumentType;
36
36
  DigicustDocumentType["WeighingCertificate"] = "weighingCertificate";
37
37
  DigicustDocumentType["CustomsServiceInstructions"] = "customsServiceInstructions";
38
38
  DigicustDocumentType["PowerOfAttorney"] = "powerOfAttorney";
39
+ DigicustDocumentType["T1ExportList"] = "t1ExportList";
39
40
  })(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
@@ -0,0 +1,18 @@
1
+ import { DocumentCodeSource } from "./document-code-source.enum";
2
+ import { ConditionModel } from "../execution-strategy/condition.model";
3
+ export interface DocumentCodeSourceContext {
4
+ source: DocumentCodeSource;
5
+ taricQueryParams?: {
6
+ itemId?: string;
7
+ countryCode?: string;
8
+ procedureMode?: string;
9
+ certificateType?: string;
10
+ };
11
+ ruleMetadata?: {
12
+ name?: string;
13
+ id?: string;
14
+ conditions?: ConditionModel[];
15
+ };
16
+ computationParams?: any;
17
+ materialId?: string;
18
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -18,3 +18,4 @@ export * from "./weighing-certificate";
18
18
  export * from "./customs-service-instructions.model";
19
19
  export * from "./power-of-attorney-document.model";
20
20
  export * from "./import-declaration.model";
21
+ export * from "./t1-export-list.model";
@@ -34,3 +34,4 @@ __exportStar(require("./weighing-certificate"), exports);
34
34
  __exportStar(require("./customs-service-instructions.model"), exports);
35
35
  __exportStar(require("./power-of-attorney-document.model"), exports);
36
36
  __exportStar(require("./import-declaration.model"), exports);
37
+ __exportStar(require("./t1-export-list.model"), exports);
@@ -0,0 +1,32 @@
1
+ import { CompanyModel } from "../../company";
2
+ import { Weight } from "../../measures";
3
+ import { Meta } from "../../meta";
4
+ import { PackageType, AddressModel, IncotermModel } from "../..";
5
+ import { DigicustDocumentModel } from "./digicust-document.model";
6
+ import { LineItemContainingDocument } from "../line-item-containing-document";
7
+ /**
8
+ * Identifies a T1 Export List document (Ausfuhrliste für T1-Versand)
9
+ * Used for processing export lists to create T1 transit papers
10
+ */
11
+ export interface T1ExportList extends DigicustDocumentModel, LineItemContainingDocument {
12
+ /** Versender */
13
+ shipper?: CompanyModel;
14
+ /** Empfänger */
15
+ recipient?: CompanyModel;
16
+ /** Bestimmungsland */
17
+ destinationCountry?: AddressModel;
18
+ /** Rohmasse gesamt */
19
+ totalGrossWeight?: Weight;
20
+ /** Packstückart */
21
+ typeOfPackage?: PackageType;
22
+ /** Packstückanzahl (e.g., 51 packages) */
23
+ packageCount?: Meta<number>;
24
+ /** Incoterm (shipment terms) */
25
+ incoterm?: IncotermModel;
26
+ /** Ausfuhrlistennummer (e.g., 25CHEE000850767806.1) - coded as 9ZZZ - Sonstige */
27
+ exportListNumber?: Meta<string>;
28
+ /** Rechnungsnummer with N380 document code */
29
+ invoiceNumber?: Meta<string>;
30
+ /** Transit reference code for 9ZZZ coding */
31
+ transitReferenceCode?: Meta<string>;
32
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,4 @@
1
1
  /// <reference types="node" />
2
- /// <reference types="node" />
3
2
  /**
4
3
  * Information about an uploaded file. Used by multer package.
5
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.525",
3
+ "version": "1.8.527",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",