digicust_types 1.8.498 → 1.8.500

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.
@@ -26,6 +26,10 @@ export interface MaterialNumberSearchDocument extends CosmosMetadata {
26
26
  id: string;
27
27
  name: string;
28
28
  }[];
29
+ declarants?: {
30
+ id: string;
31
+ name: string;
32
+ }[];
29
33
  shipperCountry?: string;
30
34
  destinationCountry?: string;
31
35
  description?: {
@@ -25,6 +25,10 @@ export interface TariffNumberSearchDocument extends CosmosMetadata {
25
25
  id: string;
26
26
  name: string;
27
27
  }[];
28
+ declarants?: {
29
+ id: string;
30
+ name: string;
31
+ }[];
28
32
  description?: {
29
33
  value: string | null;
30
34
  };
@@ -128,8 +128,8 @@ export interface ExecutionStrategy {
128
128
  addAllInvoicesIfNoItemSpecificInvoiceIsFound?: boolean;
129
129
  calculateLineItemWeight?: "byQuantity" | "byTotalValue";
130
130
  calculateWeight?: {
131
- grossWeightFromNetWeight?: number;
132
- netWeightFromGrossWeight?: number;
131
+ grossWeightFromNetWeight?: number | false;
132
+ netWeightFromGrossWeight?: number | false;
133
133
  };
134
134
  statisticalValueRounding?: "noRounding" | "roundOff" | "roundUp" | "roundToNearest";
135
135
  forceTotalValueToStatisticalValue?: boolean;
@@ -148,6 +148,7 @@ export interface DbhSftpConfig {
148
148
  hideItemInvoiceValue?: boolean;
149
149
  /** Abwicklungsmodell */
150
150
  processingModel?: string;
151
+ nctsNoHeaderInformation?: boolean;
151
152
  }
152
153
  export interface AebSftpConfig {
153
154
  "client-name"?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.498",
3
+ "version": "1.8.500",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",