@brimble/models 3.8.69 → 3.8.70

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.
@@ -96,7 +96,8 @@ export declare enum DNS_TYPE {
96
96
  export declare enum ROLES {
97
97
  CREATOR = "CREATOR",
98
98
  ADMINISTRATOR = "ADMINISTRATOR",
99
- MEMBER = "MEMBER"
99
+ MEMBER = "MEMBER",
100
+ VIEWER = "VIEWER"
100
101
  }
101
102
  export declare enum PERMISSION_TYPE {
102
103
  DOMAIN = "DOMAIN",
@@ -115,6 +115,7 @@ var ROLES;
115
115
  ROLES["CREATOR"] = "CREATOR";
116
116
  ROLES["ADMINISTRATOR"] = "ADMINISTRATOR";
117
117
  ROLES["MEMBER"] = "MEMBER";
118
+ ROLES["VIEWER"] = "VIEWER";
118
119
  })(ROLES = exports.ROLES || (exports.ROLES = {}));
119
120
  var PERMISSION_TYPE;
120
121
  (function (PERMISSION_TYPE) {
package/enum/index.ts CHANGED
@@ -111,6 +111,7 @@ export enum ROLES {
111
111
  CREATOR = "CREATOR",
112
112
  ADMINISTRATOR = "ADMINISTRATOR",
113
113
  MEMBER = "MEMBER",
114
+ VIEWER = "VIEWER"
114
115
  }
115
116
 
116
117
  export enum PERMISSION_TYPE {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.69",
3
+ "version": "3.8.70",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",