procbay-schema 1.0.81 → 1.0.83

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "procbay-schema",
3
- "version": "1.0.81",
3
+ "version": "1.0.83",
4
4
  "description": "A set of utilities for managing Prisma database schemas, seeding, and maintenance operations for the Procure-to-Pay system",
5
5
  "main": "src/prisma/index.js",
6
6
  "type": "module",
@@ -0,0 +1,34 @@
1
+ [
2
+ {
3
+ "permissions_name": "Contract Clause List",
4
+ "slug": "contract_clause_list",
5
+ "description": "This permission allows logged-in users to view the contract clause list",
6
+ "model": "contract-clause",
7
+ "is_active": true,
8
+ "created_by": 1
9
+ },
10
+ {
11
+ "permissions_name": "Add Contract Clause",
12
+ "slug": "add_contract_clause",
13
+ "description": "This permission allows logged-in users to add a new contract clause",
14
+ "model": "contract-clause",
15
+ "is_active": true,
16
+ "created_by": 1
17
+ },
18
+ {
19
+ "permissions_name": "Update Contract Clause",
20
+ "slug": "update_contract_clause",
21
+ "description": "This permission allows logged-in users to update an existing contract clause",
22
+ "model": "contract-clause",
23
+ "is_active": true,
24
+ "created_by": 1
25
+ },
26
+ {
27
+ "permissions_name": "Delete Contract Clause",
28
+ "slug": "delete_contract_clause",
29
+ "description": "This permission allows logged-in users to delete an existing contract clause",
30
+ "model": "contract-clause",
31
+ "is_active": true,
32
+ "created_by": 1
33
+ }
34
+ ]
@@ -0,0 +1,34 @@
1
+ [
2
+ {
3
+ "permissions_name": "Contract Template List",
4
+ "slug": "contract_template_list",
5
+ "description": "This permission allows logged-in users to view the contract template list",
6
+ "model": "contract-template",
7
+ "is_active": true,
8
+ "created_by": 1
9
+ },
10
+ {
11
+ "permissions_name": "Add Contract Template",
12
+ "slug": "add_contract_template",
13
+ "description": "This permission allows logged-in users to add a new contract template",
14
+ "model": "contract-template",
15
+ "is_active": true,
16
+ "created_by": 1
17
+ },
18
+ {
19
+ "permissions_name": "Update Contract Template",
20
+ "slug": "update_contract_template",
21
+ "description": "This permission allows logged-in users to update an existing contract template",
22
+ "model": "contract-template",
23
+ "is_active": true,
24
+ "created_by": 1
25
+ },
26
+ {
27
+ "permissions_name": "Delete Contract Template",
28
+ "slug": "delete_contract_template",
29
+ "description": "This permission allows logged-in users to delete an existing contract template",
30
+ "model": "contract-template",
31
+ "is_active": true,
32
+ "created_by": 1
33
+ }
34
+ ]
@@ -0,0 +1,34 @@
1
+ [
2
+ {
3
+ "permissions_name": "Contract List",
4
+ "slug": "contract_list",
5
+ "description": "This permission allows logged-in users to view the contract list",
6
+ "model": "contract",
7
+ "is_active": true,
8
+ "created_by": 1
9
+ },
10
+ {
11
+ "permissions_name": "Add Contract",
12
+ "slug": "add_contract",
13
+ "description": "This permission allows logged-in users to add a new contract",
14
+ "model": "contract",
15
+ "is_active": true,
16
+ "created_by": 1
17
+ },
18
+ {
19
+ "permissions_name": "Update Contract",
20
+ "slug": "update_contract",
21
+ "description": "This permission allows logged-in users to update an existing contract",
22
+ "model": "contract",
23
+ "is_active": true,
24
+ "created_by": 1
25
+ },
26
+ {
27
+ "permissions_name": "Delete Contract",
28
+ "slug": "delete_contract",
29
+ "description": "This permission allows logged-in users to delete an existing contract",
30
+ "model": "contract",
31
+ "is_active": true,
32
+ "created_by": 1
33
+ }
34
+ ]