digicust_types 1.8.402 → 1.8.405

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.
@@ -34,6 +34,7 @@ export interface ExecutionStrategy {
34
34
  active?: boolean;
35
35
  strategy?: "asLineItemList" | "asPDF";
36
36
  sheetName?: string;
37
+ remarks?: string;
37
38
  };
38
39
  forceReference?: false | "invoiceNumber";
39
40
  forceReferenceJSONata?: string;
@@ -391,6 +392,10 @@ export interface ExecutionStrategy {
391
392
  * Enable updates of fields in manually created tariff numbers
392
393
  */
393
394
  updateManuallyCreatedTariffNumbers?: boolean;
395
+ /**
396
+ * Immediately confirm master data entries that were created automatically (in technical terms: mark them as user-edited)
397
+ */
398
+ autoSetPropertiesToUserEdited?: boolean;
394
399
  /**
395
400
  * Matching options for tariff number master data, effectively which properties from the shipment will be used to match the tariff number
396
401
  * These properties from the shipment (and item) will also be automatically persisted in the master data, each combination of these properties will be a separate master data entry
@@ -0,0 +1,7 @@
1
+ import { UserInput } from "./documents";
2
+ export interface UserInputTemplate {
3
+ id: string;
4
+ name: string;
5
+ description?: string;
6
+ userInput?: UserInput;
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.8.402",
3
+ "version": "1.8.405",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",