Standardize settings file naming and relocate documentation files Fix code quality violations from rsx:check Reorganize user_management directory into logical subdirectories Move Quill Bundle to core and align with Tom Select pattern Simplify Site Settings page to focus on core site information Complete Phase 5: Multi-tenant authentication with login flow and site selection Add route query parameter rule and synchronize filename validation logic Fix critical bug in UpdateNpmCommand causing missing JavaScript stubs Implement filename convention rule and resolve VS Code auto-rename conflict Implement js-sanitizer RPC server to eliminate 900+ Node.js process spawns Implement RPC server architecture for JavaScript parsing WIP: Add RPC server infrastructure for JS parsing (partial implementation) Update jqhtml terminology from destroy to stop, fix datagrid DOM preservation Add JQHTML-CLASS-01 rule and fix redundant class names Improve code quality rules and resolve violations Remove legacy fatal error format in favor of unified 'fatal' error type Filter internal keys from window.rsxapp output Update button styling and comprehensive form/modal documentation Add conditional fly-in animation for modals Fix non-deterministic bundle compilation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
95 lines
3.0 KiB
JSON
Executable File
95 lines
3.0 KiB
JSON
Executable File
{
|
|
"definitions": {
|
|
"Provides": {
|
|
"description": "Modules that should be provided as shared modules to the share scope. When provided, property name is used to match modules, otherwise this is automatically inferred from share key.",
|
|
"anyOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"description": "Modules that should be provided as shared modules to the share scope.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ProvidesItem"
|
|
},
|
|
{
|
|
"$ref": "#/definitions/ProvidesObject"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"$ref": "#/definitions/ProvidesObject"
|
|
}
|
|
]
|
|
},
|
|
"ProvidesConfig": {
|
|
"description": "Advanced configuration for modules that should be provided as shared modules to the share scope.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"eager": {
|
|
"description": "Include the provided module directly instead behind an async request. This allows to use this shared module in initial load too. All possible shared modules need to be eager too.",
|
|
"type": "boolean"
|
|
},
|
|
"shareKey": {
|
|
"description": "Key in the share scope under which the shared modules should be stored.",
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"shareScope": {
|
|
"description": "Share scope name.",
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"version": {
|
|
"description": "Version of the provided module. Will replace lower matching versions, but not higher.",
|
|
"anyOf": [
|
|
{
|
|
"description": "Don't provide a version.",
|
|
"enum": [false]
|
|
},
|
|
{
|
|
"description": "Version as string. Each part of the version should be separated by a dot '.'.",
|
|
"type": "string"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"ProvidesItem": {
|
|
"description": "Request to a module that should be provided as shared module to the share scope (will be resolved when relative).",
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"ProvidesObject": {
|
|
"description": "Modules that should be provided as shared modules to the share scope. Property names are used as share keys.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"description": "Modules that should be provided as shared modules to the share scope.",
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ProvidesConfig"
|
|
},
|
|
{
|
|
"$ref": "#/definitions/ProvidesItem"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"title": "ProvideSharedPluginOptions",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"provides": {
|
|
"$ref": "#/definitions/Provides"
|
|
},
|
|
"shareScope": {
|
|
"description": "Share scope name used for all provided modules (defaults to 'default').",
|
|
"type": "string",
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"required": ["provides"]
|
|
}
|