digicust_types 1.8.19 → 1.8.21

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,6 +12,7 @@ export interface DigicustDocumentModel {
12
12
  customerId?: string;
13
13
  extractId?: string;
14
14
  fileName?: string;
15
+ pageCount?: number;
15
16
  documentType?: DigicustDocumentType;
16
17
  documentCode?: DocumentCode;
17
18
  documentReference?: Meta<string>;
@@ -23,7 +23,7 @@ export interface DocumentTypeCode {
23
23
  deductionAmount?: Quantity;
24
24
  qualifier?: string;
25
25
  }
26
- export interface DocumentCodeType extends DocumentCode, Workflow<DigicustDocumentType> {
26
+ export interface ExtendedDocumentTypeCode extends DocumentCode, Workflow<DigicustDocumentType> {
27
27
  procedure?: ProcedureMode | "any";
28
28
  reference?: string;
29
29
  description?: string;
@@ -139,7 +139,7 @@ export interface MaterialModel {
139
139
  name: string;
140
140
  }[];
141
141
  unitOfMeasurement?: Workflow<UOM>;
142
- documentTypeCodes?: DocumentCodeType[];
142
+ documentTypeCodes?: ExtendedDocumentTypeCode[];
143
143
  CAS?: Workflow<string>;
144
144
  units?: Workflow<{
145
145
  number?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.19",
3
+ "version": "1.8.21",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",