@ws-ui/roles-editor 1.13.0-rc1 → 1.13.1

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.
@@ -1,181 +0,0 @@
1
- {
2
- "type": "object",
3
- "properties": {
4
- "forceLogin": {
5
- "type": "boolean"
6
- },
7
- "restrictedByDefault": {
8
- "type": "boolean"
9
- },
10
- "privileges": {
11
- "type": "array",
12
- "items": {
13
- "$ref": "#/definitions/Privilege"
14
- }
15
- },
16
- "roles": {
17
- "type": "array",
18
- "items": {
19
- "$ref": "#/definitions/Role"
20
- }
21
- },
22
- "permissions": {
23
- "type": "object",
24
- "properties": {
25
- "allowed": {
26
- "type": "array",
27
- "items": {
28
- "$ref": "#/definitions/Permission"
29
- }
30
- }
31
- }
32
- }
33
- },
34
- "definitions": {
35
- "Privilege": {
36
- "type": "object",
37
- "properties": {
38
- "id": {
39
- "type": "string"
40
- },
41
- "privilege": {
42
- "type": "string"
43
- },
44
- "includes": {
45
- "type": "array",
46
- "items": {
47
- "type": "string"
48
- }
49
- }
50
- },
51
- "required": ["privilege"]
52
- },
53
- "Role": {
54
- "type": "object",
55
- "properties": {
56
- "id": {
57
- "type": "string"
58
- },
59
- "role": {
60
- "type": "string"
61
- },
62
- "privileges": {
63
- "type": "array",
64
- "items": {
65
- "type": "string"
66
- }
67
- }
68
- },
69
- "required": ["role"]
70
- },
71
- "Permission": {
72
- "type": "object",
73
- "properties": {
74
- "applyTo": {
75
- "type": "string"
76
- },
77
- "type": {
78
- "enum": [
79
- "dataclass",
80
- "method",
81
- "attribute",
82
- "datastore",
83
- "singleton",
84
- "singletonMethod",
85
- "dsMethod",
86
- "dataclassMethod",
87
- "entityMethod",
88
- "entityselMethod"
89
- ]
90
- },
91
- "subType": {
92
- "enum": [
93
- "dsMethod",
94
- "dataclassMethod",
95
- "entityMethod",
96
- "entityselMethod"
97
- ]
98
- },
99
- "read": {
100
- "oneOf": [
101
- {
102
- "type": "string"
103
- },
104
- {
105
- "type": "array",
106
- "items": {
107
- "type": "string"
108
- }
109
- }
110
- ]
111
- },
112
- "create": {
113
- "oneOf": [
114
- {
115
- "type": "string"
116
- },
117
- {
118
- "type": "array",
119
- "items": {
120
- "type": "string"
121
- }
122
- }
123
- ]
124
- },
125
- "update": {
126
- "oneOf": [
127
- {
128
- "type": "string"
129
- },
130
- {
131
- "type": "array",
132
- "items": {
133
- "type": "string"
134
- }
135
- }
136
- ]
137
- },
138
- "drop": {
139
- "oneOf": [
140
- {
141
- "type": "string"
142
- },
143
- {
144
- "type": "array",
145
- "items": {
146
- "type": "string"
147
- }
148
- }
149
- ]
150
- },
151
- "execute": {
152
- "oneOf": [
153
- {
154
- "type": "string"
155
- },
156
- {
157
- "type": "array",
158
- "items": {
159
- "type": "string"
160
- }
161
- }
162
- ]
163
- },
164
- "promote": {
165
- "oneOf": [
166
- {
167
- "type": "string"
168
- },
169
- {
170
- "type": "array",
171
- "items": {
172
- "type": "string"
173
- }
174
- }
175
- ]
176
- }
177
- },
178
- "required": ["applyTo", "type"]
179
- }
180
- }
181
- }
@@ -1,184 +0,0 @@
1
- declare const _default: {
2
- "type": "object",
3
- "properties": {
4
- "forceLogin": {
5
- "type": "boolean"
6
- },
7
- "restrictedByDefault": {
8
- "type": "boolean"
9
- },
10
- "privileges": {
11
- "type": "array",
12
- "items": {
13
- "$ref": "#/definitions/Privilege"
14
- }
15
- },
16
- "roles": {
17
- "type": "array",
18
- "items": {
19
- "$ref": "#/definitions/Role"
20
- }
21
- },
22
- "permissions": {
23
- "type": "object",
24
- "properties": {
25
- "allowed": {
26
- "type": "array",
27
- "items": {
28
- "$ref": "#/definitions/Permission"
29
- }
30
- }
31
- }
32
- }
33
- },
34
- "definitions": {
35
- "Privilege": {
36
- "type": "object",
37
- "properties": {
38
- "id": {
39
- "type": "string"
40
- },
41
- "privilege": {
42
- "type": "string"
43
- },
44
- "includes": {
45
- "type": "array",
46
- "items": {
47
- "type": "string"
48
- }
49
- }
50
- },
51
- "required": ["privilege"]
52
- },
53
- "Role": {
54
- "type": "object",
55
- "properties": {
56
- "id": {
57
- "type": "string"
58
- },
59
- "role": {
60
- "type": "string"
61
- },
62
- "privileges": {
63
- "type": "array",
64
- "items": {
65
- "type": "string"
66
- }
67
- }
68
- },
69
- "required": ["role"]
70
- },
71
- "Permission": {
72
- "type": "object",
73
- "properties": {
74
- "applyTo": {
75
- "type": "string"
76
- },
77
- "type": {
78
- "enum": [
79
- "dataclass",
80
- "method",
81
- "attribute",
82
- "datastore",
83
- "singleton",
84
- "singletonMethod",
85
- "dsMethod",
86
- "dataclassMethod",
87
- "entityMethod",
88
- "entityselMethod"
89
- ]
90
- },
91
- "subType": {
92
- "enum": [
93
- "dsMethod",
94
- "dataclassMethod",
95
- "entityMethod",
96
- "entityselMethod"
97
- ]
98
- },
99
- "read": {
100
- "oneOf": [
101
- {
102
- "type": "string"
103
- },
104
- {
105
- "type": "array",
106
- "items": {
107
- "type": "string"
108
- }
109
- }
110
- ]
111
- },
112
- "create": {
113
- "oneOf": [
114
- {
115
- "type": "string"
116
- },
117
- {
118
- "type": "array",
119
- "items": {
120
- "type": "string"
121
- }
122
- }
123
- ]
124
- },
125
- "update": {
126
- "oneOf": [
127
- {
128
- "type": "string"
129
- },
130
- {
131
- "type": "array",
132
- "items": {
133
- "type": "string"
134
- }
135
- }
136
- ]
137
- },
138
- "drop": {
139
- "oneOf": [
140
- {
141
- "type": "string"
142
- },
143
- {
144
- "type": "array",
145
- "items": {
146
- "type": "string"
147
- }
148
- }
149
- ]
150
- },
151
- "execute": {
152
- "oneOf": [
153
- {
154
- "type": "string"
155
- },
156
- {
157
- "type": "array",
158
- "items": {
159
- "type": "string"
160
- }
161
- }
162
- ]
163
- },
164
- "promote": {
165
- "oneOf": [
166
- {
167
- "type": "string"
168
- },
169
- {
170
- "type": "array",
171
- "items": {
172
- "type": "string"
173
- }
174
- }
175
- ]
176
- }
177
- },
178
- "required": ["applyTo", "type"]
179
- }
180
- }
181
- }
182
- ;
183
-
184
- export default _default;