digicust_types 1.8.41 → 1.8.43
Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,9 @@ export interface PackingListModel extends DigicustDocumentModel, LineItemContain
|
|
6
6
|
recipient?: CompanyModel;
|
7
7
|
consignee?: CompanyModel;
|
8
8
|
beneficiary?: CompanyModel;
|
9
|
-
rawData?:
|
9
|
+
rawData?: {
|
10
|
+
[key: string]: string;
|
11
|
+
}[];
|
10
12
|
language?: LanguageModel & Meta<DocumentLanguage>;
|
11
13
|
packingList?: Meta<string>;
|
12
14
|
issueDate?: DateTimeModel;
|
@@ -26,6 +26,7 @@ export interface ExecutionStrategy {
|
|
26
26
|
};
|
27
27
|
whitelistedImportEmails?: string[];
|
28
28
|
mergeMultipleUploads?: boolean;
|
29
|
+
handleXLSXFileUploads?: "AsLineItemTable" | false;
|
29
30
|
defaultClassification?: DigicustDocumentType;
|
30
31
|
defaultProcedureMode?: ProcedureMode;
|
31
32
|
dataExtraction?: {
|