digicust_types 1.8.178 → 1.8.179

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ import { PreliminaryDocument, PreliminaryDocumentType } from ".";
2
+ import { Meta } from "../../meta";
3
+ export interface T1PreliminaryDocument extends PreliminaryDocument {
4
+ type: PreliminaryDocumentType.ATB;
5
+ reference?: Meta<string>;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,5 +3,7 @@ export interface PreliminaryDocument extends Meta<PreliminaryDocument> {
3
3
  type: PreliminaryDocumentType;
4
4
  }
5
5
  export declare enum PreliminaryDocumentType {
6
- ATB = "ATB"
6
+ ATB = "ATB",
7
+ T1 = "T1",
8
+ T2 = "T2"
7
9
  }
@@ -4,4 +4,6 @@ exports.PreliminaryDocumentType = void 0;
4
4
  var PreliminaryDocumentType;
5
5
  (function (PreliminaryDocumentType) {
6
6
  PreliminaryDocumentType["ATB"] = "ATB";
7
+ PreliminaryDocumentType["T1"] = "T1";
8
+ PreliminaryDocumentType["T2"] = "T2";
7
9
  })(PreliminaryDocumentType || (exports.PreliminaryDocumentType = PreliminaryDocumentType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.178",
3
+ "version": "1.8.179",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",