digicust_types 1.8.165 → 1.8.166
Sign up to get free protection for your applications and to get access to all the features.
@@ -28,7 +28,11 @@ export interface ExecutionStrategy {
|
|
28
28
|
whitelistedImportEmails?: string[];
|
29
29
|
uploadWidgets?: UploadWidget[];
|
30
30
|
mergeMultipleUploads?: boolean;
|
31
|
-
handleXLSXFileUploads?: boolean
|
31
|
+
handleXLSXFileUploads?: boolean | {
|
32
|
+
active?: boolean;
|
33
|
+
strategy?: "asLineItemList" | "asPDF";
|
34
|
+
sheetName?: string;
|
35
|
+
};
|
32
36
|
forceReference?: false | "invoiceNumber";
|
33
37
|
forceReferenceJSONata?: string;
|
34
38
|
defaultClassification?: DigicustDocumentType;
|