digicust_types 1.8.358 → 1.8.360

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,5 +30,6 @@ export declare enum DigicustDocumentType {
30
30
  SplittedDocument = "splittedDocument",
31
31
  CaseReference = "caseReference",
32
32
  WeighingCertificate = "weighingCertificate",
33
- CustomsServiceInstructions = "customsServiceInstructions"
33
+ CustomsServiceInstructions = "customsServiceInstructions",
34
+ PowerOfAttorney = "powerOfAttorney"
34
35
  }
@@ -35,4 +35,5 @@ var DigicustDocumentType;
35
35
  DigicustDocumentType["CaseReference"] = "caseReference";
36
36
  DigicustDocumentType["WeighingCertificate"] = "weighingCertificate";
37
37
  DigicustDocumentType["CustomsServiceInstructions"] = "customsServiceInstructions";
38
+ DigicustDocumentType["PowerOfAttorney"] = "powerOfAttorney";
38
39
  })(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
@@ -16,3 +16,4 @@ export * from "./export-list";
16
16
  export * from "./case-reference.model";
17
17
  export * from "./weighing-certificate";
18
18
  export * from "./customs-service-instructions.model";
19
+ export * from "./power-of-attorney-document.model";
@@ -32,3 +32,4 @@ __exportStar(require("./export-list"), exports);
32
32
  __exportStar(require("./case-reference.model"), exports);
33
33
  __exportStar(require("./weighing-certificate"), exports);
34
34
  __exportStar(require("./customs-service-instructions.model"), exports);
35
+ __exportStar(require("./power-of-attorney-document.model"), exports);
@@ -0,0 +1,8 @@
1
+ import { EORI } from "../../customs";
2
+ import { DigicustDocumentModel } from "./digicust-document.model";
3
+ /**
4
+ * Identifies an EUR1 document
5
+ */
6
+ export interface PowerOfAttorney extends DigicustDocumentModel {
7
+ declarantEORI?: EORI;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,4 +4,5 @@ export interface UploadWidget {
4
4
  terms?: string;
5
5
  vendor?: string;
6
6
  notificationEmails?: string[];
7
+ defaultLanguage?: string;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.358",
3
+ "version": "1.8.360",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",