@dvsa/cvs-type-definitions 12.0.0 → 12.1.0

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.
@@ -139,11 +139,13 @@
139
139
  "type": "string",
140
140
  "tsEnumNames": [
141
141
  "AUTOCLOSE",
142
- "MANUAL"
142
+ "MANUAL",
143
+ "CLOSE_ALL"
143
144
  ],
144
145
  "enum": [
145
146
  "Autoclose",
146
- "Manual"
147
+ "Manual",
148
+ "Close all"
147
149
  ]
148
150
  }
149
151
  },
@@ -3,10 +3,12 @@
3
3
  "type": "string",
4
4
  "tsEnumNames": [
5
5
  "AUTOCLOSE",
6
- "MANUAL"
6
+ "MANUAL",
7
+ "CLOSE_ALL"
7
8
  ],
8
9
  "enum": [
9
10
  "Autoclose",
10
- "Manual"
11
+ "Manual",
12
+ "Close all"
11
13
  ]
12
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "12.0.0",
3
+ "version": "12.1.0",
4
4
  "description": "Type definitions for CVS VTA and VTM applications",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -45,5 +45,6 @@ export enum WaitReason {
45
45
  }
46
46
  export enum ClosureReasonType {
47
47
  AUTOCLOSE = "Autoclose",
48
- MANUAL = "Manual"
48
+ MANUAL = "Manual",
49
+ CLOSE_ALL = "Close all"
49
50
  }
@@ -5,5 +5,6 @@
5
5
  */
6
6
  export declare enum ClosureReasonType {
7
7
  AUTOCLOSE = "Autoclose",
8
- MANUAL = "Manual"
8
+ MANUAL = "Manual",
9
+ CLOSE_ALL = "Close all"
9
10
  }
@@ -11,4 +11,5 @@ var ClosureReasonType;
11
11
  (function (ClosureReasonType) {
12
12
  ClosureReasonType["AUTOCLOSE"] = "Autoclose";
13
13
  ClosureReasonType["MANUAL"] = "Manual";
14
+ ClosureReasonType["CLOSE_ALL"] = "Close all";
14
15
  })(ClosureReasonType = exports.ClosureReasonType || (exports.ClosureReasonType = {}));
@@ -7,5 +7,6 @@
7
7
 
8
8
  export enum ClosureReasonType {
9
9
  AUTOCLOSE = "Autoclose",
10
- MANUAL = "Manual"
10
+ MANUAL = "Manual",
11
+ CLOSE_ALL = "Close all"
11
12
  }