digicust_types 1.8.266 → 1.8.268

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 });
@@ -1,6 +1,7 @@
1
1
  import { UserInput } from "../documents";
2
2
  import { FilterCondition } from "../frontend";
3
3
  export interface Rule {
4
+ id?: string;
4
5
  name?: string;
5
6
  conditions?: {
6
7
  /** Path or JSONata expression */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.266",
3
+ "version": "1.8.268",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",