digicust_types 1.8.267 → 1.8.269

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
  UserInput = "UserInput",
29
29
  XML = "XML",
30
30
  SplittedDocument = "splittedDocument",
31
- CaseReference = "caseReference"
31
+ CaseReference = "caseReference",
32
+ WeighingCertificate = "weighingCertificate"
32
33
  }
@@ -33,4 +33,5 @@ var DigicustDocumentType;
33
33
  DigicustDocumentType["XML"] = "XML";
34
34
  DigicustDocumentType["SplittedDocument"] = "splittedDocument";
35
35
  DigicustDocumentType["CaseReference"] = "caseReference";
36
+ DigicustDocumentType["WeighingCertificate"] = "weighingCertificate";
36
37
  })(DigicustDocumentType || (exports.DigicustDocumentType = DigicustDocumentType = {}));
@@ -14,3 +14,4 @@ export * from "./eur1.model";
14
14
  export * from "./transit-declaration.model";
15
15
  export * from "./export-list";
16
16
  export * from "./case-reference.model";
17
+ export * from "./weighing-certificate";
@@ -30,3 +30,4 @@ __exportStar(require("./eur1.model"), exports);
30
30
  __exportStar(require("./transit-declaration.model"), exports);
31
31
  __exportStar(require("./export-list"), exports);
32
32
  __exportStar(require("./case-reference.model"), exports);
33
+ __exportStar(require("./weighing-certificate"), exports);
@@ -0,0 +1,13 @@
1
+ import { DateTimeModel, Weight } from "../../measures";
2
+ import { Meta } from "../../meta";
3
+ import { MeanOfTransportation } from "../../transportation";
4
+ import { DigicustDocumentModel } from "./digicust-document.model";
5
+ /**
6
+ * Identifies an export list document (Ausfuhrliste)
7
+ */
8
+ export interface WeighingCertificate extends DigicustDocumentModel {
9
+ weightCertificateNumber?: Meta<string>;
10
+ issueDate?: DateTimeModel;
11
+ meanOfTransportation?: MeanOfTransportation;
12
+ netWeight?: Weight;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.267",
3
+ "version": "1.8.269",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",