digicust_types 1.8.125 → 1.8.127

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,9 @@
1
- import { ATB, Meta, PackageType, Weight } from "../..";
1
+ import { ATB, Meta, Package, PackageType, Weight } from "../..";
2
2
  import { DigicustDocumentModel } from "./digicust-document.model";
3
3
  export interface TemporaryStorageModel extends DigicustDocumentModel {
4
4
  preliminaryDocuments?: ATB[];
5
5
  typeOfPackage?: PackageType;
6
6
  weight?: Weight;
7
7
  numberOfShipments?: Meta<number>;
8
+ packages?: Package[];
8
9
  }
@@ -28,6 +28,7 @@ export interface ExecutionStrategy {
28
28
  mergeMultipleUploads?: boolean;
29
29
  handleXLSXFileUploads?: boolean;
30
30
  forceReference?: false | "invoiceNumber";
31
+ forceReferenceJSONata?: string;
31
32
  defaultClassification?: DigicustDocumentType;
32
33
  defaultProcedureMode?: ProcedureMode;
33
34
  dataExtraction?: {
@@ -179,9 +180,9 @@ export interface ExecutionStrategy {
179
180
  */
180
181
  descriptionFormatStringJsonAta?: string;
181
182
  lineItemGrossWeightStrategy?: "default" | "forceToFirstLineItem";
182
- forceReferenceToReferenceNumberUCR?: boolean;
183
- forceReferenceToRegistrationNumberExternal?: boolean;
184
- forceReferenceToLRN?: boolean;
183
+ forceInvoiceNumberToReferenceNumberUCR?: boolean;
184
+ forceInvoiceNumberToRegistrationNumberExternal?: boolean;
185
+ forceInvoiceNumberToLRN?: boolean;
185
186
  defaultLicensePlate?: "german" | false;
186
187
  };
187
188
  dataValidation?: {
@@ -71,7 +71,6 @@ export interface BEOConfig {
71
71
  vendor?: "beo";
72
72
  config?: {
73
73
  token?: string;
74
- dataIdentifier?: string;
75
74
  /** Kundennummer */
76
75
  "customer-code"?: string;
77
76
  /** mandantId */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.125",
3
+ "version": "1.8.127",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",