@edular/permissions 7.2.0 → 7.3.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.
package/README.md CHANGED
File without changes
File without changes
package/lib/constants.js CHANGED
File without changes
package/lib/helpers.d.ts CHANGED
File without changes
package/lib/helpers.js CHANGED
File without changes
package/lib/index.d.ts CHANGED
File without changes
package/lib/index.js CHANGED
File without changes
@@ -524,6 +524,12 @@ export declare const Permissions: {
524
524
  Edit: number;
525
525
  Delete: number;
526
526
  };
527
+ Groups: {
528
+ Add: number;
529
+ Delete: number;
530
+ Edit: number;
531
+ View: number;
532
+ };
527
533
  };
528
534
  Modules: {
529
535
  Academics: {
@@ -526,6 +526,12 @@ exports.Permissions = {
526
526
  Add: 6036,
527
527
  Edit: 6037,
528
528
  Delete: 6038
529
+ },
530
+ Groups: {
531
+ Add: 6070,
532
+ Delete: 6071,
533
+ Edit: 6072,
534
+ View: 6073
529
535
  }
530
536
  },
531
537
  Modules: {
package/package.json CHANGED
@@ -1,29 +1,29 @@
1
- {
2
- "name": "@edular/permissions",
3
- "version": "7.2.0",
4
- "author": "Edular",
5
- "license": "MIT",
6
- "main": "lib/index.js",
7
- "files": [
8
- "lib/**/*"
9
- ],
10
- "dependencies": {},
11
- "devDependencies": {
12
- "@types/node": "^16.7.2",
13
- "@types/prettier": "^2.3.2",
14
- "axios": "^0.21.1",
15
- "change-case": "^4.1.2",
16
- "prettier": "^2.3.2",
17
- "ts-node": "^10.2.1",
18
- "typescript": "^4.4.2"
19
- },
20
- "scripts": {
21
- "build": "tsc",
22
- "build:clean": "rm -rf lib",
23
- "generate-permissions": "ts-node scripts/generate-permissions.ts",
24
- "prepublish": "yarn build:clean && yarn build"
25
- },
26
- "publishConfig": {
27
- "access": "public"
28
- }
29
- }
1
+ {
2
+ "name": "@edular/permissions",
3
+ "version": "7.3.0",
4
+ "author": "Edular",
5
+ "license": "MIT",
6
+ "main": "lib/index.js",
7
+ "files": [
8
+ "lib/**/*"
9
+ ],
10
+ "dependencies": {},
11
+ "devDependencies": {
12
+ "@types/node": "^16.7.2",
13
+ "@types/prettier": "^2.3.2",
14
+ "axios": "^0.21.1",
15
+ "change-case": "^4.1.2",
16
+ "prettier": "^2.3.2",
17
+ "ts-node": "^10.2.1",
18
+ "typescript": "^4.4.2"
19
+ },
20
+ "scripts": {
21
+ "build": "tsc",
22
+ "build:clean": "rm -rf lib",
23
+ "generate-permissions": "ts-node scripts/generate-permissions.ts",
24
+ "prepublish": "yarn build:clean && yarn build"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }