digicust_types 1.8.260 → 1.8.262

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,5 +28,6 @@ export declare enum DigicustDocumentType {
28
28
  ExportList = "ExportList",
29
29
  UserInput = "UserInput",
30
30
  XML = "XML",
31
- SplittedDocument = "splittedDocument"
31
+ SplittedDocument = "splittedDocument",
32
+ CaseReference = "caseReference"
32
33
  }
@@ -33,4 +33,5 @@ var DigicustDocumentType;
33
33
  DigicustDocumentType["UserInput"] = "UserInput";
34
34
  DigicustDocumentType["XML"] = "XML";
35
35
  DigicustDocumentType["SplittedDocument"] = "splittedDocument";
36
+ DigicustDocumentType["CaseReference"] = "caseReference";
36
37
  })(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
@@ -0,0 +1,10 @@
1
+ import { AggregatedCaseDataModel } from "../../case";
2
+ import { DigicustDocumentModel } from "./digicust-document.model";
3
+ /**
4
+ * Identifies a case reference
5
+ */
6
+ export interface CaseReference extends DigicustDocumentModel {
7
+ referenceCaseId?: string;
8
+ reference?: string;
9
+ aggregated?: AggregatedCaseDataModel;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -13,3 +13,4 @@ export * from "./user-input.model";
13
13
  export * from "./eur1.model";
14
14
  export * from "./transit-declaration.model";
15
15
  export * from "./export-list";
16
+ export * from "./case-reference.model";
@@ -29,3 +29,4 @@ __exportStar(require("./user-input.model"), exports);
29
29
  __exportStar(require("./eur1.model"), exports);
30
30
  __exportStar(require("./transit-declaration.model"), exports);
31
31
  __exportStar(require("./export-list"), exports);
32
+ __exportStar(require("./case-reference.model"), exports);
@@ -63,6 +63,7 @@ export interface CaseFileMapping {
63
63
  removeEmptyTags?: boolean;
64
64
  /** Delimiter for CSV mapping */
65
65
  csvSeparator?: string;
66
+ csvForceTextDelimiter?: boolean;
66
67
  /** Include headers in CSV */
67
68
  includeHeaders?: boolean;
68
69
  /** Remove non-latin symbols */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.260",
3
+ "version": "1.8.262",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",