digicust_types 1.8.161 → 1.8.163

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,7 @@ export interface CustomsTariffNumber extends Meta<string> {
6
6
  toBeProcessed?: boolean;
7
7
  classificationType?: ClassificationTypes;
8
8
  };
9
- userEdited: boolean;
9
+ userEdited?: boolean;
10
10
  additionalCodes?: Meta<string>[];
11
11
  hsCodeInvoice?: Meta<string>;
12
12
  customsDescription?: string;
@@ -10,6 +10,9 @@ export interface EmailDocument extends DigicustDocumentModel {
10
10
  sender?: string;
11
11
  body?: string;
12
12
  transitCountries?: AddressModel[];
13
+ documents?: (DigicustDocumentModel & {
14
+ belongsTo: string;
15
+ })[];
13
16
  preliminaryDocuments?: PreliminaryDocument[];
14
17
  customsOffice?: CustomsOffice;
15
18
  entryCustomsOffice?: CustomsOffice;
@@ -1,7 +1,7 @@
1
1
  import { Meta } from "./meta";
2
2
  export interface Translatable extends Meta<string> {
3
3
  translation?: Translation;
4
- userEdited: boolean;
4
+ userEdited?: boolean;
5
5
  }
6
6
  export interface Translation {
7
7
  fromLanguage?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.161",
3
+ "version": "1.8.163",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",