digicust_types 1.8.527 → 1.8.529

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.
@@ -1,7 +1,7 @@
1
1
  import { CompanyModel } from "../../company";
2
2
  import { Weight } from "../../measures";
3
3
  import { Meta } from "../../meta";
4
- import { PackageType, AddressModel, IncotermModel } from "../..";
4
+ import { PackageType, IncotermModel } from "../..";
5
5
  import { DigicustDocumentModel } from "./digicust-document.model";
6
6
  import { LineItemContainingDocument } from "../line-item-containing-document";
7
7
  /**
@@ -13,20 +13,16 @@ export interface T1ExportList extends DigicustDocumentModel, LineItemContainingD
13
13
  shipper?: CompanyModel;
14
14
  /** Empfänger */
15
15
  recipient?: CompanyModel;
16
- /** Bestimmungsland */
17
- destinationCountry?: AddressModel;
18
16
  /** Rohmasse gesamt */
19
17
  totalGrossWeight?: Weight;
20
18
  /** Packstückart */
21
19
  typeOfPackage?: PackageType;
22
20
  /** Packstückanzahl (e.g., 51 packages) */
23
- packageCount?: Meta<number>;
21
+ numPackages?: Meta<number>;
24
22
  /** Incoterm (shipment terms) */
25
23
  incoterm?: IncotermModel;
26
24
  /** Ausfuhrlistennummer (e.g., 25CHEE000850767806.1) - coded as 9ZZZ - Sonstige */
27
25
  exportListNumber?: Meta<string>;
28
26
  /** Rechnungsnummer with N380 document code */
29
27
  invoiceNumber?: Meta<string>;
30
- /** Transit reference code for 9ZZZ coding */
31
- transitReferenceCode?: Meta<string>;
32
28
  }
@@ -23,6 +23,7 @@ export interface ITMSWebConfig {
23
23
  MandantCode?: string;
24
24
  BenutzerId?: string;
25
25
  Passwort?: string;
26
+ Template?: string;
26
27
  }
27
28
  export interface DakosySftpConfig {
28
29
  "sftp-password"?: string;
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  /**
3
4
  * Information about an uploaded file. Used by multer package.
4
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.527",
3
+ "version": "1.8.529",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,18 +0,0 @@
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
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });