digicust_types 1.8.511 → 1.8.513

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.
@@ -2,6 +2,7 @@ import { CustomsTariffNumberNormalizationSettings, DigicustDocumentType, Event,
2
2
  import { UserInputTemplate } from "../userInputTemplate";
3
3
  import { Submission } from "./sftp-config.model";
4
4
  import { UploadWidget } from "./uploadWidget";
5
+ import { MergeLineItemModeEnum } from "./merge-line-item-mode.enum";
5
6
  /**
6
7
  * Execution strategies are customer-configurable plans on how to process a specific case.
7
8
  */
@@ -156,6 +157,7 @@ export interface ExecutionStrategy {
156
157
  removeStakeholderContactInformation?: {
157
158
  active?: boolean;
158
159
  };
160
+ mergeLineItemMode?: MergeLineItemModeEnum;
159
161
  ignoreLineItemsFromInvoice?: boolean;
160
162
  ignoreLineItemsFromTransitDeclaration?: boolean;
161
163
  ignoreLineItemsWithoutInvoice?: boolean;
@@ -4,3 +4,4 @@ export * from "./sftp-config.model";
4
4
  export * from "./resolved-rule";
5
5
  export * from "./ruleCatalogItem";
6
6
  export * from "./condition";
7
+ export * from "./merge-line-item-mode.enum";
@@ -20,3 +20,4 @@ __exportStar(require("./sftp-config.model"), exports);
20
20
  __exportStar(require("./resolved-rule"), exports);
21
21
  __exportStar(require("./ruleCatalogItem"), exports);
22
22
  __exportStar(require("./condition"), exports);
23
+ __exportStar(require("./merge-line-item-mode.enum"), exports);
@@ -0,0 +1,8 @@
1
+ export declare enum MergeLineItemModeEnum {
2
+ standard = "standard",
3
+ extended = "extended",
4
+ pickInvoiceItems = "pickInvoiceItems",
5
+ pickPackageListItems = "pickPackageListItems",
6
+ pickDeliveryNoteItems = "pickDeliveryNoteItems",
7
+ pickExportDeclarationItems = "pickExportDeclarationItems"
8
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MergeLineItemModeEnum = void 0;
4
+ var MergeLineItemModeEnum;
5
+ (function (MergeLineItemModeEnum) {
6
+ // Default behavior, disables merging if exportDeclarations, importDeclarations, transitDeclarations or turkishExportDeclarations exist
7
+ MergeLineItemModeEnum["standard"] = "standard";
8
+ // Try to merge even if exportDeclarations, importDeclarations, transitDeclarations or turkishExportDeclarations exist
9
+ MergeLineItemModeEnum["extended"] = "extended";
10
+ // Pick only invoice items without merging, if any invoice items exist (else fallback to "standard" behavior)
11
+ MergeLineItemModeEnum["pickInvoiceItems"] = "pickInvoiceItems";
12
+ // Pick only packagelist items without merging, if any packinglists exist (else fallback to "standard" behavior)
13
+ MergeLineItemModeEnum["pickPackageListItems"] = "pickPackageListItems";
14
+ // Pick only deliverynote items without merging, if any deliverynotes exist (else fallback to "standard" behavior)
15
+ MergeLineItemModeEnum["pickDeliveryNoteItems"] = "pickDeliveryNoteItems";
16
+ // Pick only exportDeclaration/turkishExportDeclaration items without merging, if any deliverynotes exist (else fallback to "standard" behavior)
17
+ MergeLineItemModeEnum["pickExportDeclarationItems"] = "pickExportDeclarationItems";
18
+ })(MergeLineItemModeEnum || (exports.MergeLineItemModeEnum = MergeLineItemModeEnum = {}));
@@ -1,5 +1,3 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  /**
4
2
  * Information about an uploaded file. Used by multer package.
5
3
  */
@@ -24,7 +24,7 @@ export interface CustomsTariffNumberNormalizationSettings {
24
24
  /** Specifies whether to take the tariff number description for item description */
25
25
  useAsItemDescription?: boolean;
26
26
  /** With german tariff numbers, this usually means EZT=description and zolltarifnummern.de=altDescription */
27
- itemDescriptionSource?: "description" | "altDescription";
27
+ itemDescriptionSource?: "description" | "altDescription" | "llm";
28
28
  hideOriginalItemDescription?: boolean;
29
29
  preferMasterDataDescription?: boolean;
30
30
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.511",
3
+ "version": "1.8.513",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1 +0,0 @@
1
- export * from "./module.model";
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./module.model"), exports);
@@ -1,49 +0,0 @@
1
- /**
2
- * Identifies a module. Modules are different "programs" in the frontend
3
- */
4
- export interface ModuleModel {
5
- id?: string;
6
- alias?: string;
7
- type?: ModuleType;
8
- active?: boolean;
9
- executionStrategies?: {
10
- Default?: ModuleExecStrategy;
11
- Declaration?: ModuleExecStrategy;
12
- PreDeclaration?: ModuleExecStrategy;
13
- SimplifiedProcedure?: ModuleExecStrategy;
14
- WriteupProcedure?: ModuleExecStrategy;
15
- T1Transit?: ModuleExecStrategy;
16
- T2Transit?: ModuleExecStrategy;
17
- MasterData?: ModuleExecStrategy;
18
- StakeHolderData?: ModuleExecStrategy;
19
- };
20
- }
21
- interface ModuleExecStrategy {
22
- title?: string;
23
- executionStrategyId?: string;
24
- alias?: string;
25
- active?: boolean;
26
- }
27
- export declare enum ModuleType {
28
- import = "Import",
29
- export = "Export",
30
- warehouseProcedure = "Warehouse Procedure",
31
- transitProcedure = "Transit Procedure",
32
- dataExtraction = "Data Extraction",
33
- documentClassification = "Document Classification",
34
- productClassification = "Product Classification",
35
- statistics = "Statistics",
36
- masterModule = "Master Module"
37
- }
38
- export declare enum ModuleCategory {
39
- default = "Default",
40
- declaration = "Declaration",
41
- preDeclaration = "Pre Declaration",
42
- simplifiedProcedure = "Simplified Procedure",
43
- writeupProcedure = "Writeup Procedure",
44
- t1Transit = "T1 Transit",
45
- t2Transit = "T2 Transit",
46
- masterData = "Master Data",
47
- stakeHolderData = "StakeHolder Data"
48
- }
49
- export {};
@@ -1,27 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ModuleCategory = exports.ModuleType = void 0;
4
- var ModuleType;
5
- (function (ModuleType) {
6
- ModuleType["import"] = "Import";
7
- ModuleType["export"] = "Export";
8
- ModuleType["warehouseProcedure"] = "Warehouse Procedure";
9
- ModuleType["transitProcedure"] = "Transit Procedure";
10
- ModuleType["dataExtraction"] = "Data Extraction";
11
- ModuleType["documentClassification"] = "Document Classification";
12
- ModuleType["productClassification"] = "Product Classification";
13
- ModuleType["statistics"] = "Statistics";
14
- ModuleType["masterModule"] = "Master Module";
15
- })(ModuleType || (exports.ModuleType = ModuleType = {}));
16
- var ModuleCategory;
17
- (function (ModuleCategory) {
18
- ModuleCategory["default"] = "Default";
19
- ModuleCategory["declaration"] = "Declaration";
20
- ModuleCategory["preDeclaration"] = "Pre Declaration";
21
- ModuleCategory["simplifiedProcedure"] = "Simplified Procedure";
22
- ModuleCategory["writeupProcedure"] = "Writeup Procedure";
23
- ModuleCategory["t1Transit"] = "T1 Transit";
24
- ModuleCategory["t2Transit"] = "T2 Transit";
25
- ModuleCategory["masterData"] = "Master Data";
26
- ModuleCategory["stakeHolderData"] = "StakeHolder Data";
27
- })(ModuleCategory || (exports.ModuleCategory = ModuleCategory = {}));