@bprotsyk/aso-core 2.1.141 → 2.1.142

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,7 +35,8 @@ export declare enum PanelUserAccessScope {
35
35
  OFFERWALL_RW = 7,
36
36
  ASO_LOGS = 8,
37
37
  MANAGER = 9,
38
- DEPLOYER = 10
38
+ DEPLOYER = 10,
39
+ TESTER = 11
39
40
  }
40
41
  export interface IPanelUser extends Document {
41
42
  username: string;
package/lib/panel/user.js CHANGED
@@ -15,6 +15,7 @@ var PanelUserAccessScope;
15
15
  PanelUserAccessScope[PanelUserAccessScope["ASO_LOGS"] = 8] = "ASO_LOGS";
16
16
  PanelUserAccessScope[PanelUserAccessScope["MANAGER"] = 9] = "MANAGER";
17
17
  PanelUserAccessScope[PanelUserAccessScope["DEPLOYER"] = 10] = "DEPLOYER";
18
+ PanelUserAccessScope[PanelUserAccessScope["TESTER"] = 11] = "TESTER";
18
19
  })(PanelUserAccessScope = exports.PanelUserAccessScope || (exports.PanelUserAccessScope = {}));
19
20
  exports.PanelUserSchema = new mongoose_1.Schema({
20
21
  username: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.141",
3
+ "version": "2.1.142",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/panel/user.ts CHANGED
@@ -17,7 +17,8 @@ export enum PanelUserAccessScope {
17
17
  ASO_LOGS,
18
18
 
19
19
  MANAGER,
20
- DEPLOYER
20
+ DEPLOYER,
21
+ TESTER
21
22
  }
22
23
 
23
24
  export interface IPanelUser extends Document {