@intellegens/cornerstone-client 0.0.9999-alpha-29 → 0.0.9999-alpha-30

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.
@@ -35,6 +35,10 @@ export declare enum ReadSelectedPropertyType {
35
35
  * Represents a string property type.
36
36
  */
37
37
  String = 200,
38
+ /**
39
+ * Represents a Guid property type.
40
+ */
41
+ Guid = 201,
38
42
  /**
39
43
  * Represents a DateTime property type.
40
44
  */
@@ -41,6 +41,10 @@ export var ReadSelectedPropertyType;
41
41
  * Represents a string property type.
42
42
  */
43
43
  ReadSelectedPropertyType[ReadSelectedPropertyType["String"] = 200] = "String";
44
+ /**
45
+ * Represents a Guid property type.
46
+ */
47
+ ReadSelectedPropertyType[ReadSelectedPropertyType["Guid"] = 201] = "Guid";
44
48
  //#endregion
45
49
  //#region Time
46
50
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intellegens/cornerstone-client",
3
- "version": "0.0.9999-alpha-29",
3
+ "version": "0.0.9999-alpha-30",
4
4
  "private": false,
5
5
  "publishable": true,
6
6
  "main": "./dist/index.js",
@@ -53,6 +53,11 @@ export enum ReadSelectedPropertyType {
53
53
  */
54
54
  String = 200,
55
55
 
56
+ /**
57
+ * Represents a Guid property type.
58
+ */
59
+ Guid = 201,
60
+
56
61
  //#endregion
57
62
 
58
63
  //#region Time