@intellegens/cornerstone-client 0.0.9999-alpha-25 → 0.0.9999-alpha-27

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.
@@ -54,5 +54,9 @@ export declare enum ReadSelectedPropertyType {
54
54
  /**
55
55
  * Represents a TimeOnly property type.
56
56
  */
57
- TimeOnly = 304
57
+ TimeOnly = 304,
58
+ /**
59
+ * Represents an Enum property type.
60
+ */
61
+ Enum = 400
58
62
  }
@@ -64,4 +64,8 @@ export var ReadSelectedPropertyType;
64
64
  */
65
65
  ReadSelectedPropertyType[ReadSelectedPropertyType["TimeOnly"] = 304] = "TimeOnly";
66
66
  //#endregion
67
+ /**
68
+ * Represents an Enum property type.
69
+ */
70
+ ReadSelectedPropertyType[ReadSelectedPropertyType["Enum"] = 400] = "Enum";
67
71
  })(ReadSelectedPropertyType || (ReadSelectedPropertyType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intellegens/cornerstone-client",
3
- "version": "0.0.9999-alpha-25",
3
+ "version": "0.0.9999-alpha-27",
4
4
  "private": false,
5
5
  "publishable": true,
6
6
  "main": "./dist/index.js",
@@ -83,4 +83,9 @@ export enum ReadSelectedPropertyType {
83
83
  TimeOnly = 304,
84
84
 
85
85
  //#endregion
86
+
87
+ /**
88
+ * Represents an Enum property type.
89
+ */
90
+ Enum = 400,
86
91
  }