@grexx/grexxlinter 0.2.418 → 0.2.545

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.
Files changed (56) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
  3. package/schemas/activity.behavior.json +921 -0
  4. package/schemas/activityAttribute.behavior.json +47 -0
  5. package/schemas/activityRight.behavior.json +8 -0
  6. package/schemas/agent.behavior.json +91 -0
  7. package/schemas/agentTool.behavior.json +58 -0
  8. package/schemas/attribute.behavior.json +761 -0
  9. package/schemas/casetype.behavior.json +269 -0
  10. package/schemas/catchBlock.behavior.json +30 -0
  11. package/schemas/container.behavior.json +16 -0
  12. package/schemas/customThrow.behavior.json +30 -0
  13. package/schemas/dataRetentionProfile.behavior.json +157 -0
  14. package/schemas/dataset.behavior.json +359 -0
  15. package/schemas/datasetColumn.behavior.json +629 -0
  16. package/schemas/datasetCondition.behavior.json +361 -0
  17. package/schemas/datasetRight.behavior.json +8 -0
  18. package/schemas/datasource.behavior.json +8 -0
  19. package/schemas/directRole.behavior.json +59 -0
  20. package/schemas/fileUploadProfile.behavior.json +5 -0
  21. package/schemas/forEach.behavior.json +116 -0
  22. package/schemas/formAction.behavior.json +262 -0
  23. package/schemas/formActionAi.behavior.json +52 -0
  24. package/schemas/formRight.behavior.json +8 -0
  25. package/schemas/formfield.behavior.json +1028 -0
  26. package/schemas/gridColumn.schema.json +1 -1
  27. package/schemas/indirectRole.behavior.json +59 -0
  28. package/schemas/llmModel.behavior.json +8 -0
  29. package/schemas/mapping.behavior.json +216 -0
  30. package/schemas/menuItem.behavior.json +221 -0
  31. package/schemas/metadata.behavior.json +89 -0
  32. package/schemas/navigation.behavior.json +33 -0
  33. package/schemas/picklist.behavior.json +58 -0
  34. package/schemas/platformAttribute.behavior.json +377 -0
  35. package/schemas/platformRole.behavior.json +130 -0
  36. package/schemas/pluginLibrary.behavior.json +8 -0
  37. package/schemas/requestContext.behavior.json +100 -0
  38. package/schemas/roleName.behavior.json +5 -0
  39. package/schemas/securityProfile.behavior.json +8 -0
  40. package/schemas/securityRequirement.behavior.json +5 -0
  41. package/schemas/simpleCondition.behavior.json +319 -0
  42. package/schemas/taskQueue.behavior.json +5 -0
  43. package/schemas/template/date-function.schema.json +1 -1
  44. package/schemas/template/html.schema.json +1 -1
  45. package/schemas/template/if.schema.json +1 -1
  46. package/schemas/template/iterator.schema.json +1 -1
  47. package/schemas/template/multivalue.schema.json +1 -1
  48. package/schemas/template/picklist.schema.json +1 -1
  49. package/schemas/template/util.schema.json +1 -1
  50. package/schemas/template.behavior.json +5 -0
  51. package/schemas/trigger.behavior.json +294 -0
  52. package/schemas/tryBlock.behavior.json +30 -0
  53. package/schemas/view.behavior.json +159 -0
  54. package/schemas/while.behavior.json +30 -0
  55. package/schemas/widget.behavior.json +1213 -0
  56. package/schemas/widgetRight.behavior.json +8 -0
@@ -0,0 +1,262 @@
1
+ {
2
+ "dataType": {
3
+ "baseline": "MUST_NOT",
4
+ "enabledWhen": [
5
+ {
6
+ "op": "cmp",
7
+ "field": null,
8
+ "fieldName": "Switch datatype to",
9
+ "operator": "===",
10
+ "value": "custom",
11
+ "valueIsField": false,
12
+ "isEmpty": false
13
+ }
14
+ ]
15
+ },
16
+ "multivalueType": {
17
+ "baseline": "MUST_NOT",
18
+ "enabledWhen": [
19
+ {
20
+ "op": "cmp",
21
+ "field": null,
22
+ "fieldName": "Switch multivalue type to",
23
+ "operator": "===",
24
+ "value": "custom",
25
+ "valueIsField": false,
26
+ "isEmpty": false
27
+ }
28
+ ]
29
+ },
30
+ "datafield": {
31
+ "baseline": "MAY",
32
+ "enabledWhen": [
33
+ {
34
+ "op": "cmp",
35
+ "field": "type",
36
+ "fieldName": "Type",
37
+ "operator": "==",
38
+ "value": "action.switchpicklist",
39
+ "valueIsField": false,
40
+ "isEmpty": false
41
+ }
42
+ ]
43
+ },
44
+ "formfield": {
45
+ "baseline": "MAY",
46
+ "enabledWhen": [
47
+ {
48
+ "op": "and",
49
+ "items": [
50
+ {
51
+ "op": "cmp",
52
+ "field": "type",
53
+ "fieldName": "Type",
54
+ "operator": "!==",
55
+ "value": "action.hidegroup",
56
+ "valueIsField": false,
57
+ "isEmpty": false
58
+ },
59
+ {
60
+ "op": "cmp",
61
+ "field": "type",
62
+ "fieldName": "Type",
63
+ "operator": "!==",
64
+ "value": "action.showgroup",
65
+ "valueIsField": false,
66
+ "isEmpty": false
67
+ }
68
+ ]
69
+ }
70
+ ]
71
+ },
72
+ "formButton": {
73
+ "baseline": "MAY",
74
+ "enabledWhen": [
75
+ {
76
+ "op": "or",
77
+ "items": [
78
+ {
79
+ "op": "cmp",
80
+ "field": "type",
81
+ "fieldName": "Type",
82
+ "operator": "==",
83
+ "value": "«action.disable»",
84
+ "valueIsField": false,
85
+ "isEmpty": false
86
+ },
87
+ {
88
+ "op": "cmp",
89
+ "field": "type",
90
+ "fieldName": "Type",
91
+ "operator": "==",
92
+ "value": "action.enable",
93
+ "valueIsField": false,
94
+ "isEmpty": false
95
+ },
96
+ {
97
+ "op": "cmp",
98
+ "field": "type",
99
+ "fieldName": "Type",
100
+ "operator": "==",
101
+ "value": "action.hide",
102
+ "valueIsField": false,
103
+ "isEmpty": false
104
+ },
105
+ {
106
+ "op": "cmp",
107
+ "field": "type",
108
+ "fieldName": "Type",
109
+ "operator": "==",
110
+ "value": "action.setlabel",
111
+ "valueIsField": false,
112
+ "isEmpty": false
113
+ },
114
+ {
115
+ "op": "cmp",
116
+ "field": "type",
117
+ "fieldName": "Type",
118
+ "operator": "==",
119
+ "value": "action.show",
120
+ "valueIsField": false,
121
+ "isEmpty": false
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ },
127
+ "formgroup": {
128
+ "baseline": "MAY",
129
+ "enabledWhen": [
130
+ {
131
+ "op": "or",
132
+ "items": [
133
+ {
134
+ "op": "cmp",
135
+ "field": "type",
136
+ "fieldName": "Type",
137
+ "operator": "==",
138
+ "value": "action.hidegroup",
139
+ "valueIsField": false,
140
+ "isEmpty": false
141
+ },
142
+ {
143
+ "op": "cmp",
144
+ "field": "type",
145
+ "fieldName": "Type",
146
+ "operator": "==",
147
+ "value": "action.message",
148
+ "valueIsField": false,
149
+ "isEmpty": false
150
+ },
151
+ {
152
+ "op": "cmp",
153
+ "field": "type",
154
+ "fieldName": "Type",
155
+ "operator": "==",
156
+ "value": "action.setlabel",
157
+ "valueIsField": false,
158
+ "isEmpty": false
159
+ },
160
+ {
161
+ "op": "cmp",
162
+ "field": "type",
163
+ "fieldName": "Type",
164
+ "operator": "==",
165
+ "value": "action.showgroup",
166
+ "valueIsField": false,
167
+ "isEmpty": false
168
+ }
169
+ ]
170
+ }
171
+ ]
172
+ },
173
+ "picklist": {
174
+ "baseline": "MAY",
175
+ "enabledWhen": [
176
+ {
177
+ "op": "cmp",
178
+ "field": "type",
179
+ "fieldName": "Type",
180
+ "operator": "==",
181
+ "value": "action.switchpicklist",
182
+ "valueIsField": false,
183
+ "isEmpty": false
184
+ }
185
+ ]
186
+ },
187
+ "value": {
188
+ "baseline": "MAY",
189
+ "requiredWhen": [
190
+ {
191
+ "op": "cmp",
192
+ "field": "type",
193
+ "fieldName": "Type",
194
+ "operator": "==",
195
+ "value": "action.setvalue",
196
+ "valueIsField": false,
197
+ "isEmpty": false
198
+ }
199
+ ],
200
+ "enabledWhen": [
201
+ {
202
+ "op": "cmp",
203
+ "field": "type",
204
+ "fieldName": "Type",
205
+ "operator": "==",
206
+ "value": "action.setvalue",
207
+ "valueIsField": false,
208
+ "isEmpty": false
209
+ },
210
+ {
211
+ "op": "or",
212
+ "items": [
213
+ {
214
+ "op": "cmp",
215
+ "field": "type",
216
+ "fieldName": "Type",
217
+ "operator": "==",
218
+ "value": "action.message",
219
+ "valueIsField": false,
220
+ "isEmpty": false
221
+ },
222
+ {
223
+ "op": "cmp",
224
+ "field": "type",
225
+ "fieldName": "Type",
226
+ "operator": "==",
227
+ "value": "action.setlabel",
228
+ "valueIsField": false,
229
+ "isEmpty": false
230
+ },
231
+ {
232
+ "op": "cmp",
233
+ "field": "type",
234
+ "fieldName": "Type",
235
+ "operator": "==",
236
+ "value": "action.setvalue",
237
+ "valueIsField": false,
238
+ "isEmpty": false
239
+ }
240
+ ]
241
+ },
242
+ {
243
+ "op": "cmp",
244
+ "field": "type",
245
+ "fieldName": "Type",
246
+ "operator": "in",
247
+ "value": "[\"action.setlabel\",\"action.message\"]",
248
+ "valueIsField": false,
249
+ "isEmpty": false
250
+ },
251
+ {
252
+ "op": "cmp",
253
+ "field": "type",
254
+ "fieldName": "Type",
255
+ "operator": "==",
256
+ "value": "action.switchpicklist",
257
+ "valueIsField": false,
258
+ "isEmpty": false
259
+ }
260
+ ]
261
+ }
262
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "aiModel": {
3
+ "baseline": "MAY",
4
+ "requiredWhen": [
5
+ {
6
+ "op": "cmp",
7
+ "field": "aiModel",
8
+ "fieldName": "AI Model",
9
+ "operator": "!==",
10
+ "value": "",
11
+ "valueIsField": false,
12
+ "isEmpty": true
13
+ }
14
+ ],
15
+ "enabledWhen": [
16
+ {
17
+ "op": "cmp",
18
+ "field": "aiModel",
19
+ "fieldName": "AI Model",
20
+ "operator": "!==",
21
+ "value": "",
22
+ "valueIsField": false,
23
+ "isEmpty": true
24
+ }
25
+ ]
26
+ },
27
+ "model": {
28
+ "baseline": "MAY",
29
+ "requiredWhen": [
30
+ {
31
+ "op": "cmp",
32
+ "field": "aiModel",
33
+ "fieldName": "AI Model",
34
+ "operator": "===",
35
+ "value": "",
36
+ "valueIsField": false,
37
+ "isEmpty": true
38
+ }
39
+ ],
40
+ "enabledWhen": [
41
+ {
42
+ "op": "cmp",
43
+ "field": "aiModel",
44
+ "fieldName": "AI Model",
45
+ "operator": "===",
46
+ "value": "",
47
+ "valueIsField": false,
48
+ "isEmpty": true
49
+ }
50
+ ]
51
+ }
52
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "roleName": {
3
+ "baseline": "MUST"
4
+ },
5
+ "type": {
6
+ "baseline": "MUST"
7
+ }
8
+ }