@o3r/rules-engine 11.6.0-prerelease.6 → 11.6.0-prerelease.7
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 +5 -5
- package/schemas/rulesets.schema.json +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/rules-engine",
|
|
3
|
-
"version": "11.6.0-prerelease.
|
|
3
|
+
"version": "11.6.0-prerelease.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"@ngrx/entity": "~18.0.0",
|
|
50
50
|
"@ngrx/store": "~18.0.0",
|
|
51
51
|
"@ngx-translate/core": "~15.0.0",
|
|
52
|
-
"@o3r/core": "^11.6.0-prerelease.
|
|
53
|
-
"@o3r/extractors": "^11.6.0-prerelease.
|
|
54
|
-
"@o3r/logger": "^11.6.0-prerelease.
|
|
55
|
-
"@o3r/schematics": "^11.6.0-prerelease.
|
|
52
|
+
"@o3r/core": "^11.6.0-prerelease.7",
|
|
53
|
+
"@o3r/extractors": "^11.6.0-prerelease.7",
|
|
54
|
+
"@o3r/logger": "^11.6.0-prerelease.7",
|
|
55
|
+
"@o3r/schematics": "^11.6.0-prerelease.7",
|
|
56
56
|
"@schematics/angular": "~18.2.0",
|
|
57
57
|
"globby": "^11.1.0",
|
|
58
58
|
"jasmine": "^5.0.0",
|
|
@@ -166,11 +166,31 @@
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"$ref": "https://raw.githubusercontent.com/AmadeusITGroup/otter/main/packages/%40o3r/components/schemas/rules-engine.placeholder-action.schema.json"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"$ref": "#/definitions/RulesEngineCustomActionBlock"
|
|
169
172
|
}
|
|
170
173
|
]
|
|
171
174
|
}
|
|
172
175
|
]
|
|
173
176
|
},
|
|
177
|
+
"RulesEngineCustomActionBlock": {
|
|
178
|
+
"type": "object",
|
|
179
|
+
"description": "Content of a custom action",
|
|
180
|
+
"properties": {
|
|
181
|
+
"actionType": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"description": "Action Type",
|
|
184
|
+
"pattern": "^(?!(?:SET_FACT|UPDATE_PLACEHOLDER|UPDATE_CONFIG|UPDATE_ASSET|UPDATE_LOCALISATION)$).*$"
|
|
185
|
+
},
|
|
186
|
+
"value": {}
|
|
187
|
+
},
|
|
188
|
+
"additionalItems": true,
|
|
189
|
+
"required": [
|
|
190
|
+
"actionType",
|
|
191
|
+
"value"
|
|
192
|
+
]
|
|
193
|
+
},
|
|
174
194
|
"RulesActionSetTemporaryFactBlock": {
|
|
175
195
|
"type": "object",
|
|
176
196
|
"description": "Content of action that updates the runtime facts",
|