digicust_types 1.8.359 → 1.8.361

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 });
@@ -1,4 +1,4 @@
1
- import { CustomsTariffNumberNormalizationSettings, DigicustDocumentType, DocumentCodeSource, Event, Money, PackageType, ProcedureMode, Rule, StakeholderModel } from "..";
1
+ import { CustomsTariffNumberNormalizationSettings, DigicustDocumentType, Event, Money, PackageType, ProcedureMode, Rule, StakeholderModel } from "..";
2
2
  import { Submission } from "./sftp-config.model";
3
3
  import { UploadWidget } from "./uploadWidget";
4
4
  /**
@@ -435,10 +435,7 @@ export interface ExecutionStrategy {
435
435
  * Controls document code integration from different sources.
436
436
  */
437
437
  documentCodeIntegration?: {
438
- /**
439
- * Allowed sources for document code derivation
440
- */
441
- allowedSources?: DocumentCodeSource[];
438
+ persistNegativeCodings?: boolean;
442
439
  };
443
440
  /**
444
441
  * Controls how additional material properties are handled
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  /**
3
2
  * Information about an uploaded file. Used by multer package.
4
3
  */
package/package.json CHANGED
@@ -1,49 +1,49 @@
1
- {
2
- "name": "digicust_types",
3
- "version": "1.8.359",
4
- "description": "",
5
- "main": "lib/index.js",
6
- "types": "lib/index.d.ts",
7
- "files": [
8
- "lib/**/*"
9
- ],
10
- "scripts": {
11
- "build-with-runtime-interfaces": "tsc && `npm bin`/run-for-every-file --src ./lib/ --file '**/*.d.ts' --run \"`npm bin`/ts-interface-builder -i -g -c {{src-file}}\"",
12
- "build": "tsc",
13
- "build-deploy": "git pull && npm version patch && npm run build && npm publish && git push",
14
- "deploy-docs": "npm i && npx typedoc src/index.ts",
15
- "lint.fix": "eslint --fix --ext .ts .",
16
- "prettier.fix": "prettier --write .",
17
- "prepare": "husky install",
18
- "lint-staged": "lint-staged"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "git+https://github.com/Digicust0406/types.git"
23
- },
24
- "keywords": [],
25
- "author": "Thomas Übellacker",
26
- "license": "Proprietary",
27
- "bugs": {
28
- "url": "https://github.com/Digicust0406/types/issues"
29
- },
30
- "homepage": "https://github.com/Digicust0406/types#readme",
31
- "dependencies": {
32
- "typedoc": "^0.25.4"
33
- },
34
- "devDependencies": {
35
- "@types/node": "^20.10.2",
36
- "@typescript-eslint/eslint-plugin": "^6.13.1",
37
- "@typescript-eslint/parser": "^6.13.1",
38
- "eslint": "^8.55.0",
39
- "eslint-config-airbnb-typescript": "^17.1.0",
40
- "eslint-config-prettier": "^9.1.0",
41
- "eslint-plugin-import": "^2.29.0",
42
- "eslint-plugin-node": "^11.1.0",
43
- "eslint-plugin-prettier": "^5.0.1",
44
- "husky": "^8.0.3",
45
- "lint-staged": "^15.1.0",
46
- "prettier": "^3.1.0",
47
- "typescript": "^5.3.2"
48
- }
49
- }
1
+ {
2
+ "name": "digicust_types",
3
+ "version": "1.8.361",
4
+ "description": "",
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
7
+ "files": [
8
+ "lib/**/*"
9
+ ],
10
+ "scripts": {
11
+ "build-with-runtime-interfaces": "tsc && `npm bin`/run-for-every-file --src ./lib/ --file '**/*.d.ts' --run \"`npm bin`/ts-interface-builder -i -g -c {{src-file}}\"",
12
+ "build": "tsc",
13
+ "build-deploy": "git pull && npm version patch && npm run build && npm publish && git push",
14
+ "deploy-docs": "npm i && npx typedoc src/index.ts",
15
+ "lint.fix": "eslint --fix --ext .ts .",
16
+ "prettier.fix": "prettier --write .",
17
+ "prepare": "husky install",
18
+ "lint-staged": "lint-staged"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Digicust0406/types.git"
23
+ },
24
+ "keywords": [],
25
+ "author": "Thomas Übellacker",
26
+ "license": "Proprietary",
27
+ "bugs": {
28
+ "url": "https://github.com/Digicust0406/types/issues"
29
+ },
30
+ "homepage": "https://github.com/Digicust0406/types#readme",
31
+ "dependencies": {
32
+ "typedoc": "^0.25.4"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^20.10.2",
36
+ "@typescript-eslint/eslint-plugin": "^6.13.1",
37
+ "@typescript-eslint/parser": "^6.13.1",
38
+ "eslint": "^8.55.0",
39
+ "eslint-config-airbnb-typescript": "^17.1.0",
40
+ "eslint-config-prettier": "^9.1.0",
41
+ "eslint-plugin-import": "^2.29.0",
42
+ "eslint-plugin-node": "^11.1.0",
43
+ "eslint-plugin-prettier": "^5.0.1",
44
+ "husky": "^8.0.3",
45
+ "lint-staged": "^15.1.0",
46
+ "prettier": "^3.1.0",
47
+ "typescript": "^5.3.2"
48
+ }
49
+ }