@endge/core 4.0.3 → 6.0.0
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/dist/core.js +88841 -88521
- package/dist/features/core/kernel/config/kernel.config.d.ts +35 -0
- package/dist/features/core/kernel/config/modules.config.d.ts +136 -0
- package/dist/features/core/kernel/constants/kernel.constants.d.ts +10 -0
- package/dist/features/core/kernel/endge.d.ts +112 -0
- package/dist/features/core/kernel/types/bootstrap.types.d.ts +56 -0
- package/dist/features/core/modules/EndgeRuntimeDebugger_Module.d.ts +84 -0
- package/dist/features/core/modules/EndgeTypes_Module.d.ts +12 -0
- package/dist/features/core/modules/EndgeVocabs_Module.d.ts +149 -0
- package/dist/features/core/modules/actions/EndgeActions_Module.d.ts +89 -0
- package/dist/features/core/modules/actions/domain/action.types.d.ts +189 -0
- package/dist/features/core/modules/actions/services/ActionProgramExecutor.d.ts +28 -0
- package/dist/features/core/modules/actions/services/table-actions.d.ts +3 -0
- package/dist/features/core/modules/auth/EndgeAuth_Module.d.ts +39 -0
- package/dist/features/core/modules/auth/adapters/BasicAuthAdapter.d.ts +10 -0
- package/dist/features/core/modules/auth/adapters/BearerAuthAdapter.d.ts +10 -0
- package/dist/features/core/modules/auth/adapters/OAuth2ClientCredentialsAuthAdapter.d.ts +8 -0
- package/dist/features/core/modules/auth/adapters/OAuth2PasswordAuthAdapter.d.ts +11 -0
- package/dist/features/core/modules/auth/adapters/OidcAuthAdapter.d.ts +8 -0
- package/dist/features/core/modules/auth/adapters/OidcBrowserSession_Adapter.d.ts +28 -0
- package/dist/features/core/modules/auth/domain/types/auth-profile.types.d.ts +181 -0
- package/dist/features/core/modules/auth/services/AuthAdapterRegistry.d.ts +13 -0
- package/dist/features/core/modules/auth/services/AuthProfileRegistry.d.ts +32 -0
- package/dist/features/core/modules/auth/services/AuthRequestResolver.d.ts +16 -0
- package/dist/features/core/modules/auth/services/AuthSessionManager.d.ts +61 -0
- package/dist/features/core/modules/auth/services/AuthSessionStore.d.ts +20 -0
- package/dist/features/core/modules/auth/services/auth-context.d.ts +14 -0
- package/dist/features/core/modules/compiler/EndgeCompiler_Module.d.ts +240 -0
- package/dist/features/core/modules/compiler/services/action/action-compile.d.ts +9 -0
- package/dist/features/core/modules/compiler/services/action/action-target-validation.d.ts +10 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-attributes.d.ts +9 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-built-in-tags.d.ts +4 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-compile.d.ts +56 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-dependencies.d.ts +4 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-expression.d.ts +48 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-forward.d.ts +19 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-interactions.d.ts +12 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-parse.d.ts +14 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-ports.d.ts +21 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-script.d.ts +30 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-style.d.ts +12 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-menu.d.ts +20 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-pin.d.ts +25 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-sort.d.ts +29 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-visibility.d.ts +4 -0
- package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-template.d.ts +45 -0
- package/dist/features/core/modules/compiler/services/computation/computation-compile.d.ts +16 -0
- package/dist/features/core/modules/compiler/services/type/type-program-validation.d.ts +18 -0
- package/dist/features/core/modules/computations/EndgeComputations_Module.d.ts +78 -0
- package/dist/features/core/modules/computations/model/ComputationResource.d.ts +27 -0
- package/dist/features/core/modules/computations/model/ComputationResourceRegistry.d.ts +11 -0
- package/dist/features/core/modules/computations/services/ComputationGraphExecutor.d.ts +28 -0
- package/dist/features/core/modules/configuration/EndgeConfigurationSchema_Module.d.ts +24 -0
- package/dist/features/core/modules/configuration/EndgeConfiguration_Module.d.ts +29 -0
- package/dist/features/core/modules/configuration/domain/configuration-value.d.ts +20 -0
- package/dist/features/core/modules/configuration/domain/endge-configuration.d.ts +14 -0
- package/dist/features/core/modules/configuration/domain/tooltip.config.d.ts +3 -0
- package/dist/features/core/modules/configuration/domain/types/configuration.type.d.ts +166 -0
- package/dist/features/core/modules/context/EndgeContext_Module.d.ts +157 -0
- package/dist/features/core/modules/context/domain/context-persistence.types.d.ts +84 -0
- package/dist/features/core/modules/context/endge-vars.d.ts +81 -0
- package/dist/features/core/modules/context/persistence/EndgeStorageAdapterRegistry.d.ts +9 -0
- package/dist/features/core/modules/context/persistence/RuntimeStateController.d.ts +24 -0
- package/dist/features/core/modules/context/persistence/adapters/DisabledContextAdapter.d.ts +8 -0
- package/dist/features/core/modules/context/persistence/adapters/LocalStorageContextAdapter.d.ts +10 -0
- package/dist/features/core/modules/converters/EndgeConverters_Module.d.ts +42 -0
- package/dist/features/core/modules/diagnostics/EndgeDiagnostics_Module.d.ts +108 -0
- package/dist/features/core/modules/diagnostics/EndgeProblems_Module.d.ts +38 -0
- package/dist/features/core/modules/diagnostics/EndgeTelemetry_Module.d.ts +162 -0
- package/dist/features/core/modules/diagnostics/adapters/ConsoleDiagnosticsAdapter.d.ts +26 -0
- package/dist/features/core/modules/diagnostics/adapters/DiagnosticsAdapterRegistry.d.ts +19 -0
- package/dist/features/core/modules/diagnostics/adapters/SentryDiagnosticsAdapter.d.ts +66 -0
- package/dist/features/core/modules/diagnostics/adapters/SentryDiagnosticsAdapter.types.d.ts +20 -0
- package/dist/features/core/modules/diagnostics/config/diagnostics.config.d.ts +5 -0
- package/dist/features/core/modules/diagnostics/domain/entities/DiagnosticsRecordStore.d.ts +52 -0
- package/dist/features/core/modules/diagnostics/domain/entities/DiagnosticsSpan.d.ts +29 -0
- package/dist/features/core/modules/diagnostics/domain/types/diagnostics.types.d.ts +315 -0
- package/dist/features/core/modules/document-import/EndgeDocumentImport_Module.d.ts +33 -0
- package/dist/features/core/modules/document-import/domain/types/document-import.type.d.ts +76 -0
- package/dist/features/core/modules/document-import/services/parsers/DocumentImportParser.d.ts +23 -0
- package/dist/features/core/modules/document-import/services/parsers/GraphQLDocumentImportParser.d.ts +7 -0
- package/dist/features/core/modules/document-import/services/parsers/OpenAPIDocumentImportParser.d.ts +7 -0
- package/dist/features/core/modules/domain/EndgeDomain_Module.d.ts +1269 -0
- package/dist/features/core/modules/domain/component/component-sfc-edit-trigger.d.ts +19 -0
- package/dist/features/core/modules/domain/component/sfc/component-sfc-source-parts.d.ts +9 -0
- package/dist/features/core/modules/domain/component/sfc-editing.config.d.ts +3 -0
- package/dist/features/core/modules/domain/component/table.d.ts +4 -0
- package/dist/features/core/modules/domain/documents/domain-document-descriptors.d.ts +102 -0
- package/dist/features/core/modules/domain/documents/service-document-serializer.d.ts +11 -0
- package/dist/features/core/modules/domain/entities/RAction.d.ts +20 -0
- package/dist/features/core/modules/domain/entities/RAuthProfile.d.ts +14 -0
- package/dist/features/core/modules/domain/entities/RComponent.d.ts +25 -0
- package/dist/features/core/modules/domain/entities/RComponentBase.d.ts +18 -0
- package/dist/features/core/modules/domain/entities/RComponentCore.d.ts +26 -0
- package/dist/features/core/modules/domain/entities/RComponentSFC.d.ts +33 -0
- package/dist/features/core/modules/domain/entities/RComponentTable.d.ts +14 -0
- package/dist/features/core/modules/domain/entities/RComponentTableColumn.d.ts +60 -0
- package/dist/features/core/modules/domain/entities/RComputation.d.ts +15 -0
- package/dist/features/core/modules/domain/entities/RConfiguration.d.ts +11 -0
- package/dist/features/core/modules/domain/entities/RConverter.d.ts +15 -0
- package/dist/features/core/modules/domain/entities/REntity.d.ts +49 -0
- package/dist/features/core/modules/domain/entities/REnvironment.d.ts +9 -0
- package/dist/features/core/modules/domain/entities/RFilter.d.ts +13 -0
- package/dist/features/core/modules/domain/entities/RFolder.d.ts +19 -0
- package/dist/features/core/modules/domain/entities/RI18nBundle.d.ts +16 -0
- package/dist/features/core/modules/domain/entities/RIntegration.d.ts +15 -0
- package/dist/features/core/modules/domain/entities/RMock.d.ts +20 -0
- package/dist/features/core/modules/domain/entities/RNavigation.d.ts +23 -0
- package/dist/features/core/modules/domain/entities/RPage.d.ts +43 -0
- package/dist/features/core/modules/domain/entities/RPageTemplate.d.ts +32 -0
- package/dist/features/core/modules/domain/entities/RParameter.d.ts +11 -0
- package/dist/features/core/modules/domain/entities/RPolicy.d.ts +7 -0
- package/dist/features/core/modules/domain/entities/RProject.d.ts +63 -0
- package/dist/features/core/modules/domain/entities/RQuery.d.ts +16 -0
- package/dist/features/core/modules/domain/entities/RStream.d.ts +8 -0
- package/dist/features/core/modules/domain/entities/RStyle.d.ts +13 -0
- package/dist/features/core/modules/domain/entities/RTenant.d.ts +10 -0
- package/dist/features/core/modules/domain/entities/RType.d.ts +13 -0
- package/dist/features/core/modules/domain/entities/RUpdate.d.ts +10 -0
- package/dist/features/core/modules/domain/entities/RVocabs.d.ts +27 -0
- package/dist/features/core/modules/domain/entities/RWorkspace.d.ts +13 -0
- package/dist/features/core/modules/domain/resolved/resolved-entity-index.d.ts +12 -0
- package/dist/features/core/modules/domain/types/component/component-core.types.d.ts +89 -0
- package/dist/features/core/modules/domain/types/component/component.types.d.ts +17 -0
- package/dist/features/core/modules/domain/types/component/sfc/ast.types.d.ts +146 -0
- package/dist/features/core/modules/domain/types/component/sfc/dependencies.types.d.ts +78 -0
- package/dist/features/core/modules/domain/types/component/sfc/ir.types.d.ts +362 -0
- package/dist/features/core/modules/domain/types/component/sfc/metadata-visual.types.d.ts +21 -0
- package/dist/features/core/modules/domain/types/component/sfc/ports-source.types.d.ts +44 -0
- package/dist/features/core/modules/domain/types/component/sfc/ports.types.d.ts +278 -0
- package/dist/features/core/modules/domain/types/component/sfc/props-visual.types.d.ts +20 -0
- package/dist/features/core/modules/domain/types/component/sfc/table-events.types.d.ts +89 -0
- package/dist/features/core/modules/domain/types/component/sfc/visual-projection.types.d.ts +334 -0
- package/dist/features/core/modules/domain/types/computation/computation-program.types.d.ts +36 -0
- package/dist/features/core/modules/domain/types/computation/computation-runtime.types.d.ts +48 -0
- package/dist/features/core/modules/domain/types/computation/computation-source.types.d.ts +31 -0
- package/dist/features/core/modules/domain/types/document/document.types.d.ts +105 -0
- package/dist/features/core/modules/domain/types/document/domain-export.type.d.ts +78 -0
- package/dist/features/core/modules/domain/types/document/entity-management.type.d.ts +33 -0
- package/dist/features/core/modules/domain/types/document/query.types.d.ts +65 -0
- package/dist/features/core/modules/domain-repository/EndgeDomainRepository_Module.d.ts +67 -0
- package/dist/features/core/modules/domain-repository/services/domain-provider.d.ts +10 -0
- package/dist/features/core/modules/events/EndgeEvents_Module.d.ts +72 -0
- package/dist/features/core/modules/i18n/EndgeI18n_Module.d.ts +88 -0
- package/dist/features/core/modules/i18n/domain/i18n.types.d.ts +25 -0
- package/dist/features/core/modules/i18n/services/composition-i18n-catalog-projection.d.ts +19 -0
- package/dist/features/core/modules/i18n/services/i18n-catalog.d.ts +12 -0
- package/dist/features/core/modules/implementations/EndgeImplementations_Module.d.ts +34 -0
- package/dist/features/core/modules/implementations/domain/implementation.types.d.ts +59 -0
- package/dist/features/core/modules/implementations/services/ImplementationBindingRegistry.d.ts +9 -0
- package/dist/features/core/modules/implementations/services/ImplementationProviderRegistry.d.ts +9 -0
- package/dist/features/core/modules/mock/EndgeMock_Module.d.ts +29 -0
- package/dist/features/core/modules/mock/domain/types/mock-data.type.d.ts +37 -0
- package/dist/features/core/modules/program/EndgeProgram_Module.d.ts +111 -0
- package/dist/features/core/modules/program/domain/types/action-program.types.d.ts +8 -0
- package/dist/features/core/modules/program/domain/types/program.types.d.ts +291 -0
- package/dist/features/core/modules/runtime/ComponentSFCEventBoundary.d.ts +36 -0
- package/dist/features/core/modules/runtime/EndgeRuntimeScopes_Module.d.ts +32 -0
- package/dist/features/core/modules/runtime/EndgeRuntime_Module.d.ts +141 -0
- package/dist/features/core/modules/runtime/RuntimeActionRegistry.d.ts +18 -0
- package/dist/features/core/modules/runtime/RuntimeAppScope.d.ts +61 -0
- package/dist/features/core/modules/runtime/RuntimeBindingScope.d.ts +48 -0
- package/dist/features/core/modules/runtime/RuntimeHostBase.d.ts +161 -0
- package/dist/features/core/modules/runtime/RuntimeHostFactory.d.ts +15 -0
- package/dist/features/core/modules/runtime/RuntimeHostRegistry.d.ts +63 -0
- package/dist/features/core/modules/runtime/RuntimeResourceBag.d.ts +12 -0
- package/dist/features/core/modules/runtime/RuntimeScope.d.ts +56 -0
- package/dist/features/core/modules/runtime/adapters/QueryExecutor_Adapter.d.ts +57 -0
- package/dist/features/core/modules/runtime/domain/query-execution.types.d.ts +10 -0
- package/dist/features/core/modules/runtime/domain/runtime-entity-map.types.d.ts +34 -0
- package/dist/features/core/modules/runtime/domain/runtime-execute.type.d.ts +30 -0
- package/dist/features/core/modules/runtime/domain/runtime-host.types.d.ts +380 -0
- package/dist/features/core/modules/runtime/domain/runtime-project-session.types.d.ts +36 -0
- package/dist/features/core/modules/runtime/domain/runtime-registry.types.d.ts +40 -0
- package/dist/features/core/modules/runtime/domain/runtime-scope.types.d.ts +44 -0
- package/dist/features/core/modules/runtime/domain/runtime-strategy.types.d.ts +36 -0
- package/dist/features/core/modules/runtime/domain/runtime.types.d.ts +76 -0
- package/dist/features/core/modules/runtime/domain/sfc-render-inspection.type.d.ts +48 -0
- package/dist/features/core/modules/runtime/domain/stream-runtime.types.d.ts +17 -0
- package/dist/features/core/modules/runtime/execution/endge-composition.d.ts +10 -0
- package/dist/features/core/modules/runtime/execution/endge-data-view.d.ts +59 -0
- package/dist/features/core/modules/runtime/execution/endge-project.d.ts +6 -0
- package/dist/features/core/modules/runtime/execution/endge-query.d.ts +24 -0
- package/dist/features/core/modules/runtime/execution/endge-response-output.d.ts +5 -0
- package/dist/features/core/modules/runtime/helpers/raph-phases/endge-runtime-boundary.d.ts +13 -0
- package/dist/features/core/modules/runtime/helpers/raph-phases/runtime-boundary-update-phase.d.ts +20 -0
- package/dist/features/core/modules/runtime/helpers/raph-phases/runtime-node-update-phase.d.ts +16 -0
- package/dist/features/core/modules/runtime/hosts/ActionRuntimeHost.d.ts +30 -0
- package/dist/features/core/modules/runtime/hosts/ComponentSFCRuntimeHost.d.ts +149 -0
- package/dist/features/core/modules/runtime/hosts/CompositionRuntimeHost.d.ts +150 -0
- package/dist/features/core/modules/runtime/hosts/FilterRuntimeHost.d.ts +44 -0
- package/dist/features/core/modules/runtime/hosts/FilterViewRuntimeHost.d.ts +56 -0
- package/dist/features/core/modules/runtime/hosts/PageRuntimeHost.d.ts +22 -0
- package/dist/features/core/modules/runtime/hosts/ProjectRuntimeHost.d.ts +22 -0
- package/dist/features/core/modules/runtime/hosts/QueryRuntimeHost.d.ts +63 -0
- package/dist/features/core/modules/runtime/hosts/StoreRuntimeHost.d.ts +54 -0
- package/dist/features/core/modules/runtime/hosts/StreamRuntimeHost.d.ts +31 -0
- package/dist/features/core/modules/runtime/operation/EndgeOperations_Module.d.ts +31 -0
- package/dist/features/core/modules/runtime/operation/operation-executor.d.ts +17 -0
- package/dist/features/core/modules/runtime/operation/operation-history.d.ts +54 -0
- package/dist/features/core/modules/runtime/services/RuntimeStrategyRegistry.d.ts +11 -0
- package/dist/features/core/modules/runtime/services/SFCRenderInspectionSession.d.ts +29 -0
- package/dist/features/core/modules/runtime/services/strategies/ActionRuntimeStrategy.d.ts +8 -0
- package/dist/features/core/modules/runtime/services/strategies/ComponentSFCRuntimeStrategy.d.ts +9 -0
- package/dist/features/core/modules/runtime/services/strategies/CompositionRuntimeStrategy.d.ts +9 -0
- package/dist/features/core/modules/runtime/services/strategies/FilterRuntimeStrategy.d.ts +9 -0
- package/dist/features/core/modules/runtime/services/strategies/PageRuntimeStrategy.d.ts +8 -0
- package/dist/features/core/modules/runtime/services/strategies/ProjectRuntimeStrategy.d.ts +8 -0
- package/dist/features/core/modules/runtime/services/strategies/QueryRuntimeStrategy.d.ts +9 -0
- package/dist/features/core/modules/runtime/services/strategies/StoreRuntimeStrategy.d.ts +9 -0
- package/dist/features/core/modules/runtime/services/strategies/StreamRuntimeStrategy.d.ts +12 -0
- package/dist/features/core/modules/runtime/services/transports/BrowserSseStreamTransportFactory.d.ts +9 -0
- package/dist/features/core/modules/source/EndgeSource_Module.d.ts +59 -0
- package/dist/features/core/modules/source/domain/types/composition-source.types.d.ts +408 -0
- package/dist/features/core/modules/source/domain/types/configuration-source.types.d.ts +47 -0
- package/dist/features/core/modules/source/domain/types/data-view-source.types.d.ts +128 -0
- package/dist/features/core/modules/source/domain/types/filter-source.types.d.ts +104 -0
- package/dist/features/core/modules/source/domain/types/filter-view.type.d.ts +45 -0
- package/dist/features/core/modules/source/domain/types/query-source.types.d.ts +120 -0
- package/dist/features/core/modules/source/domain/types/response-output.types.d.ts +10 -0
- package/dist/features/core/modules/source/domain/types/source-engine.types.d.ts +242 -0
- package/dist/features/core/modules/source/domain/types/source-expression.types.d.ts +113 -0
- package/dist/features/core/modules/source/domain/types/store-source.types.d.ts +43 -0
- package/dist/features/core/modules/source/domain/types/stream-source.types.d.ts +40 -0
- package/dist/features/core/modules/source/domain/types/type-source.types.d.ts +80 -0
- package/dist/features/core/modules/source/domain/types/update-source.types.d.ts +32 -0
- package/dist/features/core/modules/source/domain/types/vocab-source.types.d.ts +37 -0
- package/dist/features/core/modules/source/services/SourceEngineRegistry.d.ts +11 -0
- package/dist/features/core/modules/source/services/SourceLanguageRegistry.d.ts +11 -0
- package/dist/features/core/modules/source/services/SourcePatchRegistry.d.ts +11 -0
- package/dist/features/core/modules/source/services/compilers/action-source-compile.d.ts +17 -0
- package/dist/features/core/modules/source/services/compilers/composition-source-compile.d.ts +5 -0
- package/dist/features/core/modules/source/services/compilers/configuration-source-compile.d.ts +4 -0
- package/dist/features/core/modules/source/services/compilers/data-view-source-compile.d.ts +3 -0
- package/dist/features/core/modules/source/services/compilers/filter-source-compile.d.ts +3 -0
- package/dist/features/core/modules/source/services/compilers/query-source-compile.d.ts +3 -0
- package/dist/features/core/modules/source/services/compilers/source-expression-compile.d.ts +16 -0
- package/dist/features/core/modules/source/services/compilers/source-field-compile.d.ts +14 -0
- package/dist/features/core/modules/source/services/compilers/source-metadata-compile.d.ts +17 -0
- package/dist/features/core/modules/source/services/compilers/store-source-compile.d.ts +3 -0
- package/dist/features/core/modules/source/services/compilers/stream-source-compile.d.ts +3 -0
- package/dist/features/core/modules/source/services/compilers/type-source-compile.d.ts +9 -0
- package/dist/features/core/modules/source/services/compilers/update-source-compile.d.ts +3 -0
- package/dist/features/core/modules/source/services/compilers/vocab-source-compile.d.ts +2 -0
- package/dist/features/core/modules/source/services/component-sfc/component-sfc-metadata-source-patch.d.ts +6 -0
- package/dist/features/core/modules/source/services/component-sfc/component-sfc-ports-source-patch.d.ts +4 -0
- package/dist/features/core/modules/source/services/component-sfc/component-sfc-props-source-patch.d.ts +6 -0
- package/dist/features/core/modules/source/services/component-sfc/component-sfc-table-source-patch.d.ts +3 -0
- package/dist/features/core/modules/source/services/component-sfc/component-sfc-visual-projection.d.ts +3 -0
- package/dist/features/core/modules/source/services/composition-activation.d.ts +3 -0
- package/dist/features/core/modules/source/services/composition-source-i18n-hints.d.ts +5 -0
- package/dist/features/core/modules/source/services/composition-source-patch.d.ts +6 -0
- package/dist/features/core/modules/source/services/configuration-source-patch.d.ts +16 -0
- package/dist/features/core/modules/source/services/filter-source-patch.d.ts +12 -0
- package/dist/features/core/modules/source/services/query-source-patch.d.ts +12 -0
- package/dist/features/core/modules/source/services/source-document-reference.d.ts +23 -0
- package/dist/features/core/modules/source/services/source-expression-evaluate.d.ts +5 -0
- package/dist/features/core/modules/source/services/source-language-syntax.d.ts +11 -0
- package/dist/features/core/modules/source/services/strategies/ActionSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/ActionSourceLanguageStrategy.d.ts +23 -0
- package/dist/features/core/modules/source/services/strategies/CompositionSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/CompositionSourceLanguageStrategy.d.ts +14 -0
- package/dist/features/core/modules/source/services/strategies/CompositionSourcePatchStrategy.d.ts +13 -0
- package/dist/features/core/modules/source/services/strategies/ComputationSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/ComputationSourceLanguageStrategy.d.ts +12 -0
- package/dist/features/core/modules/source/services/strategies/ConfigurationSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/ConfigurationSourceLanguageStrategy.d.ts +12 -0
- package/dist/features/core/modules/source/services/strategies/DataViewSourceEngineStrategy.d.ts +12 -0
- package/dist/features/core/modules/source/services/strategies/DataViewSourceLanguageStrategy.d.ts +17 -0
- package/dist/features/core/modules/source/services/strategies/FilterSourceEngineStrategy.d.ts +8 -0
- package/dist/features/core/modules/source/services/strategies/FilterSourceLanguageStrategy.d.ts +12 -0
- package/dist/features/core/modules/source/services/strategies/FilterSourcePatchStrategy.d.ts +10 -0
- package/dist/features/core/modules/source/services/strategies/QuerySourceEngineStrategy.d.ts +12 -0
- package/dist/features/core/modules/source/services/strategies/QuerySourceLanguageStrategy.d.ts +17 -0
- package/dist/features/core/modules/source/services/strategies/QuerySourcePatchStrategy.d.ts +13 -0
- package/dist/features/core/modules/source/services/strategies/StoreSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/StoreSourceLanguageStrategy.d.ts +12 -0
- package/dist/features/core/modules/source/services/strategies/StreamSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/StreamSourceLanguageStrategy.d.ts +10 -0
- package/dist/features/core/modules/source/services/strategies/StyleSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/StyleSourceLanguageStrategy.d.ts +43 -0
- package/dist/features/core/modules/source/services/strategies/TypeSourceEngineStrategy.d.ts +8 -0
- package/dist/features/core/modules/source/services/strategies/TypeSourceLanguageStrategy.d.ts +13 -0
- package/dist/features/core/modules/source/services/strategies/UpdateSourceEngineStrategy.d.ts +7 -0
- package/dist/features/core/modules/source/services/strategies/UpdateSourceLanguageStrategy.d.ts +10 -0
- package/dist/features/core/modules/source/services/strategies/VocabSourceEngineStrategy.d.ts +8 -0
- package/dist/features/core/modules/source/services/strategies/VocabSourceLanguageStrategy.d.ts +11 -0
- package/dist/features/core/modules/source/services/strategies/VocabSourcePatchStrategy.d.ts +9 -0
- package/dist/features/core/modules/source/services/type-source-references.d.ts +14 -0
- package/dist/features/core/modules/source/services/type-source-serialize.d.ts +6 -0
- package/dist/features/core/modules/source/services/typescript-type-source.d.ts +18 -0
- package/dist/features/core/modules/source/services/value-expression-language.d.ts +5 -0
- package/dist/features/core/modules/source/services/value-expression-operations.d.ts +10 -0
- package/dist/features/core/modules/source/services/vocab-source-patch.d.ts +10 -0
- package/dist/features/core/modules/source/templates/configuration.default.source.d.ts +2 -0
- package/dist/features/core/modules/styles/EndgeStyles_Module.d.ts +26 -0
- package/dist/features/core/modules/styles/domain/types/style.types.d.ts +202 -0
- package/dist/features/core/modules/styles/services/endgecss-compile.d.ts +4 -0
- package/dist/features/core/modules/styles/services/endgecss-match.d.ts +5 -0
- package/dist/features/core/modules/ui/EndgeUIRegistry_Module.d.ts +128 -0
- package/dist/features/core/modules/ui/EndgeUI_Module.d.ts +99 -0
- package/dist/features/core/modules/ui/domain/types/context-menu.types.d.ts +20 -0
- package/dist/features/core/modules/ui/domain/types/ui-render-adapter.type.d.ts +37 -0
- package/dist/features/core/modules/ui/registry/UIAdapterRegistry.d.ts +32 -0
- package/dist/features/core/modules/ui/tooltip/endge-tooltip-markdown.d.ts +5 -0
- package/dist/features/core/modules/ui/ui-composition.config.d.ts +524 -0
- package/dist/features/core/modules/updates/EndgeUpdates_Module.d.ts +12 -0
- package/dist/features/core/modules/workspace/EndgeWorkspace_Module.d.ts +80 -0
- package/dist/features/core/modules/workspace/domain/workspace.types.d.ts +28 -0
- package/dist/features/federation/EndgeFederation.d.ts +80 -0
- package/dist/features/federation/EndgeModule.d.ts +52 -0
- package/dist/features/federation/constants/federation.constants.d.ts +2 -0
- package/dist/features/federation/services/EndgeSlotRegistry.d.ts +14 -0
- package/dist/features/federation/tools/endge-token.d.ts +3 -0
- package/dist/features/federation/tools/sort-endge-modules.d.ts +2 -0
- package/dist/features/federation/types/endge-modules.types.d.ts +36 -0
- package/dist/features/federation/types/federation.types.d.ts +30 -0
- package/dist/features/federation/types/forge.types.d.ts +29 -0
- package/dist/main.d.ts +257 -257
- package/package.json +6 -6
- package/ReadMe.md +0 -23
- package/dist/core.cjs +0 -868
- package/dist/domain/entities/diagnostics/DiagnosticsRecordStore.d.ts +0 -52
- package/dist/domain/entities/diagnostics/DiagnosticsSpan.d.ts +0 -29
- package/dist/domain/entities/endge/EndgeFederation.d.ts +0 -68
- package/dist/domain/entities/endge/EndgeFederationStorage.d.ts +0 -5
- package/dist/domain/entities/endge/EndgeModule.d.ts +0 -49
- package/dist/domain/entities/endge/EndgeSlotRegistry.d.ts +0 -14
- package/dist/domain/entities/endge/Subscribable.d.ts +0 -20
- package/dist/domain/entities/endge/sort-endge-modules.d.ts +0 -2
- package/dist/domain/entities/reflect/RAction.d.ts +0 -21
- package/dist/domain/entities/reflect/RAuthProfile.d.ts +0 -14
- package/dist/domain/entities/reflect/RComponent.d.ts +0 -25
- package/dist/domain/entities/reflect/RComponentBase.d.ts +0 -18
- package/dist/domain/entities/reflect/RComponentCore.d.ts +0 -26
- package/dist/domain/entities/reflect/RComponentSFC.d.ts +0 -33
- package/dist/domain/entities/reflect/RComponentTable.d.ts +0 -14
- package/dist/domain/entities/reflect/RComponentTableColumn.d.ts +0 -60
- package/dist/domain/entities/reflect/RComputation.d.ts +0 -15
- package/dist/domain/entities/reflect/RConfiguration.d.ts +0 -11
- package/dist/domain/entities/reflect/RConverter.d.ts +0 -15
- package/dist/domain/entities/reflect/REntity.d.ts +0 -49
- package/dist/domain/entities/reflect/REnvironment.d.ts +0 -9
- package/dist/domain/entities/reflect/RFilter.d.ts +0 -14
- package/dist/domain/entities/reflect/RFolder.d.ts +0 -21
- package/dist/domain/entities/reflect/RI18nBundle.d.ts +0 -17
- package/dist/domain/entities/reflect/RIntegration.d.ts +0 -15
- package/dist/domain/entities/reflect/RMock.d.ts +0 -20
- package/dist/domain/entities/reflect/RNavigation.d.ts +0 -23
- package/dist/domain/entities/reflect/RPage.d.ts +0 -43
- package/dist/domain/entities/reflect/RPageTemplate.d.ts +0 -32
- package/dist/domain/entities/reflect/RParameter.d.ts +0 -12
- package/dist/domain/entities/reflect/RPolicy.d.ts +0 -7
- package/dist/domain/entities/reflect/RProject.d.ts +0 -63
- package/dist/domain/entities/reflect/RQuery.d.ts +0 -18
- package/dist/domain/entities/reflect/RStream.d.ts +0 -8
- package/dist/domain/entities/reflect/RStyle.d.ts +0 -13
- package/dist/domain/entities/reflect/RTenant.d.ts +0 -10
- package/dist/domain/entities/reflect/RType.d.ts +0 -13
- package/dist/domain/entities/reflect/RUpdate.d.ts +0 -10
- package/dist/domain/entities/reflect/RVocabs.d.ts +0 -27
- package/dist/domain/entities/reflect/RWorkspace.d.ts +0 -13
- package/dist/domain/entities/runtime/ComponentSFCEventBoundary.d.ts +0 -36
- package/dist/domain/entities/runtime/RuntimeActionRegistry.d.ts +0 -18
- package/dist/domain/entities/runtime/RuntimeAppScope.d.ts +0 -61
- package/dist/domain/entities/runtime/RuntimeBindingScope.d.ts +0 -48
- package/dist/domain/entities/runtime/RuntimeHostBase.d.ts +0 -161
- package/dist/domain/entities/runtime/RuntimeHostFactory.d.ts +0 -15
- package/dist/domain/entities/runtime/RuntimeHostRegistry.d.ts +0 -63
- package/dist/domain/entities/runtime/RuntimeResourceBag.d.ts +0 -12
- package/dist/domain/entities/runtime/RuntimeScope.d.ts +0 -56
- package/dist/domain/entities/runtime/RuntimeScopeRegistry.d.ts +0 -24
- package/dist/domain/entities/runtime/hosts/ActionRuntimeHost.d.ts +0 -30
- package/dist/domain/entities/runtime/hosts/ComponentSFCRuntimeHost.d.ts +0 -149
- package/dist/domain/entities/runtime/hosts/CompositionRuntimeHost.d.ts +0 -150
- package/dist/domain/entities/runtime/hosts/FilterRuntimeHost.d.ts +0 -44
- package/dist/domain/entities/runtime/hosts/FilterViewRuntimeHost.d.ts +0 -56
- package/dist/domain/entities/runtime/hosts/PageRuntimeHost.d.ts +0 -22
- package/dist/domain/entities/runtime/hosts/ProjectRuntimeHost.d.ts +0 -22
- package/dist/domain/entities/runtime/hosts/QueryRuntimeHost.d.ts +0 -63
- package/dist/domain/entities/runtime/hosts/StoreRuntimeHost.d.ts +0 -54
- package/dist/domain/entities/runtime/hosts/StreamRuntimeHost.d.ts +0 -31
- package/dist/domain/types/api.types.d.ts +0 -29
- package/dist/domain/types/auth/auth-profile.types.d.ts +0 -181
- package/dist/domain/types/component/component-core.types.d.ts +0 -89
- package/dist/domain/types/component/component.types.d.ts +0 -12
- package/dist/domain/types/component/sfc/ast.types.d.ts +0 -146
- package/dist/domain/types/component/sfc/dependencies.types.d.ts +0 -78
- package/dist/domain/types/component/sfc/ir.types.d.ts +0 -362
- package/dist/domain/types/component/sfc/metadata-visual.types.d.ts +0 -21
- package/dist/domain/types/component/sfc/ports-source.types.d.ts +0 -44
- package/dist/domain/types/component/sfc/ports.types.d.ts +0 -278
- package/dist/domain/types/component/sfc/props-visual.types.d.ts +0 -20
- package/dist/domain/types/component/sfc/table-events.types.d.ts +0 -89
- package/dist/domain/types/component/sfc/visual-projection.types.d.ts +0 -334
- package/dist/domain/types/computation/computation-program.types.d.ts +0 -36
- package/dist/domain/types/computation/computation-runtime.types.d.ts +0 -48
- package/dist/domain/types/computation/computation-source.types.d.ts +0 -31
- package/dist/domain/types/configuration/configuration.type.d.ts +0 -166
- package/dist/domain/types/diagnostics/diagnostics.types.d.ts +0 -315
- package/dist/domain/types/document/document.types.d.ts +0 -103
- package/dist/domain/types/document/domain-export.type.d.ts +0 -86
- package/dist/domain/types/document/entity-management.type.d.ts +0 -33
- package/dist/domain/types/document/query.types.d.ts +0 -64
- package/dist/domain/types/document/workspace.types.d.ts +0 -22
- package/dist/domain/types/i18n.types.d.ts +0 -25
- package/dist/domain/types/kernel/bootstrap.types.d.ts +0 -55
- package/dist/domain/types/kernel/endge-modules.types.d.ts +0 -18
- package/dist/domain/types/kernel/federation.types.d.ts +0 -14
- package/dist/domain/types/kernel/forge.types.d.ts +0 -30
- package/dist/domain/types/mock/mock-data.type.d.ts +0 -37
- package/dist/domain/types/presentation/context-menu.types.d.ts +0 -20
- package/dist/domain/types/presentation/filter-view.type.d.ts +0 -45
- package/dist/domain/types/presentation/ui-render-adapter.type.d.ts +0 -37
- package/dist/domain/types/program/action-program.types.d.ts +0 -8
- package/dist/domain/types/program/program.types.d.ts +0 -291
- package/dist/domain/types/runtime/action.types.d.ts +0 -189
- package/dist/domain/types/runtime/context-persistence.types.d.ts +0 -84
- package/dist/domain/types/runtime/implementation.types.d.ts +0 -59
- package/dist/domain/types/runtime/query-execution.types.d.ts +0 -10
- package/dist/domain/types/runtime/runtime-entity-map.types.d.ts +0 -34
- package/dist/domain/types/runtime/runtime-execute.type.d.ts +0 -27
- package/dist/domain/types/runtime/runtime-host.types.d.ts +0 -380
- package/dist/domain/types/runtime/runtime-project-session.types.d.ts +0 -37
- package/dist/domain/types/runtime/runtime-registry.types.d.ts +0 -40
- package/dist/domain/types/runtime/runtime-scope.types.d.ts +0 -44
- package/dist/domain/types/runtime/runtime-strategy.types.d.ts +0 -36
- package/dist/domain/types/runtime/runtime.types.d.ts +0 -76
- package/dist/domain/types/runtime/sfc-render-inspection.type.d.ts +0 -48
- package/dist/domain/types/runtime/stream-runtime.types.d.ts +0 -17
- package/dist/domain/types/source/composition-source.types.d.ts +0 -393
- package/dist/domain/types/source/configuration-source.types.d.ts +0 -47
- package/dist/domain/types/source/data-view-source.types.d.ts +0 -128
- package/dist/domain/types/source/filter-source.types.d.ts +0 -104
- package/dist/domain/types/source/query-source.types.d.ts +0 -120
- package/dist/domain/types/source/response-output.types.d.ts +0 -10
- package/dist/domain/types/source/source-engine.types.d.ts +0 -242
- package/dist/domain/types/source/source-expression.types.d.ts +0 -113
- package/dist/domain/types/source/store-source.types.d.ts +0 -43
- package/dist/domain/types/source/stream-source.types.d.ts +0 -40
- package/dist/domain/types/source/type-source.types.d.ts +0 -80
- package/dist/domain/types/source/update-source.types.d.ts +0 -32
- package/dist/domain/types/source/vocab-source.types.d.ts +0 -37
- package/dist/domain/types/style/style.types.d.ts +0 -202
- package/dist/domain/types/types.d.ts +0 -34
- package/dist/model/adapters/auth/OidcBrowserSession_Adapter.d.ts +0 -28
- package/dist/model/adapters/diagnostics/ConsoleDiagnosticsAdapter.d.ts +0 -26
- package/dist/model/adapters/diagnostics/DiagnosticsAdapterRegistry.d.ts +0 -19
- package/dist/model/adapters/diagnostics/SentryDiagnosticsAdapter.d.ts +0 -66
- package/dist/model/adapters/diagnostics/SentryDiagnosticsAdapter.types.d.ts +0 -20
- package/dist/model/adapters/http/EndgeApi.d.ts +0 -29
- package/dist/model/adapters/query/QueryExecutor_Adapter.d.ts +0 -48
- package/dist/model/config/diagnostics.config.d.ts +0 -5
- package/dist/model/config/domain.config.d.ts +0 -6
- package/dist/model/config/kernel.config.d.ts +0 -48
- package/dist/model/config/modules.config.d.ts +0 -3
- package/dist/model/config/sfc-editing.config.d.ts +0 -3
- package/dist/model/config/tooltip.config.d.ts +0 -3
- package/dist/model/config/ui-composition.config.d.ts +0 -524
- package/dist/model/helpers/raph-phases/endge-runtime-boundary.d.ts +0 -13
- package/dist/model/helpers/raph-phases/runtime-boundary-update-phase.d.ts +0 -20
- package/dist/model/helpers/raph-phases/runtime-node-update-phase.d.ts +0 -16
- package/dist/model/kernel/endge.d.ts +0 -176
- package/dist/model/modules/context/endge-configuration-schema.d.ts +0 -24
- package/dist/model/modules/context/endge-configuration.d.ts +0 -29
- package/dist/model/modules/context/endge-context.d.ts +0 -157
- package/dist/model/modules/context/endge-i18n.d.ts +0 -88
- package/dist/model/modules/context/endge-vars.d.ts +0 -82
- package/dist/model/modules/context/endge-workspace.d.ts +0 -80
- package/dist/model/modules/context/persistence/EndgeStorageAdapterRegistry.d.ts +0 -9
- package/dist/model/modules/context/persistence/RuntimeStateController.d.ts +0 -24
- package/dist/model/modules/context/persistence/adapters/DisabledContextAdapter.d.ts +0 -8
- package/dist/model/modules/context/persistence/adapters/LocalStorageContextAdapter.d.ts +0 -10
- package/dist/model/modules/diagnostics/endge-diagnostics.d.ts +0 -108
- package/dist/model/modules/diagnostics/endge-problems.d.ts +0 -38
- package/dist/model/modules/diagnostics/endge-runtime-debugger.d.ts +0 -84
- package/dist/model/modules/diagnostics/endge-telemetry.d.ts +0 -162
- package/dist/model/modules/domain/endge-domain-repository.d.ts +0 -63
- package/dist/model/modules/domain/endge-domain.d.ts +0 -1279
- package/dist/model/modules/domain/endge-types.d.ts +0 -12
- package/dist/model/modules/domain/endge-vocabs.d.ts +0 -149
- package/dist/model/modules/domain/resolved/resolved-entity-index.d.ts +0 -12
- package/dist/model/modules/events/endge-events.d.ts +0 -72
- package/dist/model/modules/mock/EndgeMock.d.ts +0 -29
- package/dist/model/modules/program/endge-compiler.d.ts +0 -232
- package/dist/model/modules/program/endge-program.d.ts +0 -111
- package/dist/model/modules/program/endge-source.d.ts +0 -59
- package/dist/model/modules/runtime/core/endge-actions.d.ts +0 -77
- package/dist/model/modules/runtime/core/endge-runtime.d.ts +0 -149
- package/dist/model/modules/runtime/core/endge-updates.d.ts +0 -12
- package/dist/model/modules/runtime/execution/action/action-program-executor.d.ts +0 -13
- package/dist/model/modules/runtime/execution/computation/ComputationGraphExecutor.d.ts +0 -28
- package/dist/model/modules/runtime/execution/computation/ComputationResource.d.ts +0 -27
- package/dist/model/modules/runtime/execution/computation/ComputationResourceRegistry.d.ts +0 -11
- package/dist/model/modules/runtime/execution/computation/EndgeComputation.d.ts +0 -67
- package/dist/model/modules/runtime/execution/endge-composition.d.ts +0 -9
- package/dist/model/modules/runtime/execution/endge-computation.d.ts +0 -4
- package/dist/model/modules/runtime/execution/endge-converters.d.ts +0 -36
- package/dist/model/modules/runtime/execution/endge-data-view.d.ts +0 -54
- package/dist/model/modules/runtime/execution/endge-project.d.ts +0 -5
- package/dist/model/modules/runtime/execution/endge-query.d.ts +0 -24
- package/dist/model/modules/runtime/execution/endge-response-output.d.ts +0 -5
- package/dist/model/modules/runtime/implementation/endge-implementations.d.ts +0 -22
- package/dist/model/modules/runtime/implementation/implementation-binding-registry.d.ts +0 -9
- package/dist/model/modules/runtime/implementation/implementation-provider-registry.d.ts +0 -9
- package/dist/model/modules/runtime/operation/endge-operations.d.ts +0 -18
- package/dist/model/modules/runtime/operation/operation-executor.d.ts +0 -17
- package/dist/model/modules/runtime/operation/operation-history.d.ts +0 -54
- package/dist/model/modules/security/auth/AuthAdapterRegistry.d.ts +0 -13
- package/dist/model/modules/security/auth/AuthProfileRegistry.d.ts +0 -32
- package/dist/model/modules/security/auth/AuthRequestResolver.d.ts +0 -16
- package/dist/model/modules/security/auth/AuthSessionManager.d.ts +0 -61
- package/dist/model/modules/security/auth/AuthSessionStore.d.ts +0 -20
- package/dist/model/modules/security/auth/adapters/BasicAuthAdapter.d.ts +0 -10
- package/dist/model/modules/security/auth/adapters/BearerAuthAdapter.d.ts +0 -10
- package/dist/model/modules/security/auth/adapters/OAuth2ClientCredentialsAuthAdapter.d.ts +0 -8
- package/dist/model/modules/security/auth/adapters/OAuth2PasswordAuthAdapter.d.ts +0 -11
- package/dist/model/modules/security/auth/adapters/OidcAuthAdapter.d.ts +0 -8
- package/dist/model/modules/security/endge-auth.d.ts +0 -39
- package/dist/model/modules/ui/endge-styles.d.ts +0 -26
- package/dist/model/modules/ui/endge-ui-registry.d.ts +0 -128
- package/dist/model/modules/ui/endge-ui.d.ts +0 -99
- package/dist/model/modules/ui/registry/UIAdapterRegistry.d.ts +0 -32
- package/dist/model/services/auth/auth-context.d.ts +0 -14
- package/dist/model/services/compiler/action/action-compile.d.ts +0 -9
- package/dist/model/services/compiler/action/action-target-validation.d.ts +0 -10
- package/dist/model/services/compiler/component-sfc/component-sfc-attributes.d.ts +0 -9
- package/dist/model/services/compiler/component-sfc/component-sfc-built-in-tags.d.ts +0 -4
- package/dist/model/services/compiler/component-sfc/component-sfc-compile.d.ts +0 -56
- package/dist/model/services/compiler/component-sfc/component-sfc-dependencies.d.ts +0 -4
- package/dist/model/services/compiler/component-sfc/component-sfc-expression.d.ts +0 -48
- package/dist/model/services/compiler/component-sfc/component-sfc-forward.d.ts +0 -19
- package/dist/model/services/compiler/component-sfc/component-sfc-interactions.d.ts +0 -12
- package/dist/model/services/compiler/component-sfc/component-sfc-parse.d.ts +0 -14
- package/dist/model/services/compiler/component-sfc/component-sfc-ports.d.ts +0 -21
- package/dist/model/services/compiler/component-sfc/component-sfc-script.d.ts +0 -30
- package/dist/model/services/compiler/component-sfc/component-sfc-source-parts.d.ts +0 -9
- package/dist/model/services/compiler/component-sfc/component-sfc-style.d.ts +0 -12
- package/dist/model/services/compiler/component-sfc/component-sfc-table-menu.d.ts +0 -20
- package/dist/model/services/compiler/component-sfc/component-sfc-table-pin.d.ts +0 -25
- package/dist/model/services/compiler/component-sfc/component-sfc-table-sort.d.ts +0 -29
- package/dist/model/services/compiler/component-sfc/component-sfc-table-visibility.d.ts +0 -4
- package/dist/model/services/compiler/component-sfc/component-sfc-template.d.ts +0 -45
- package/dist/model/services/compiler/computation/computation-compile.d.ts +0 -16
- package/dist/model/services/compiler/type/type-program-validation.d.ts +0 -18
- package/dist/model/services/configuration/configuration-value.d.ts +0 -20
- package/dist/model/services/configuration/endge-configuration.d.ts +0 -14
- package/dist/model/services/document/DocumentDraftFactory.d.ts +0 -7
- package/dist/model/services/document/domain-provider.d.ts +0 -10
- package/dist/model/services/document/endge-service-document-serializer.d.ts +0 -5
- package/dist/model/services/i18n/composition-i18n-catalog-projection.d.ts +0 -19
- package/dist/model/services/i18n/i18n-catalog.d.ts +0 -12
- package/dist/model/services/runtime/RuntimeStrategyRegistry.d.ts +0 -11
- package/dist/model/services/runtime/SFCRenderInspectionSession.d.ts +0 -29
- package/dist/model/services/runtime/strategies/ActionRuntimeStrategy.d.ts +0 -8
- package/dist/model/services/runtime/strategies/ComponentSFCRuntimeStrategy.d.ts +0 -9
- package/dist/model/services/runtime/strategies/CompositionRuntimeStrategy.d.ts +0 -9
- package/dist/model/services/runtime/strategies/FilterRuntimeStrategy.d.ts +0 -9
- package/dist/model/services/runtime/strategies/PageRuntimeStrategy.d.ts +0 -8
- package/dist/model/services/runtime/strategies/ProjectRuntimeStrategy.d.ts +0 -8
- package/dist/model/services/runtime/strategies/QueryRuntimeStrategy.d.ts +0 -9
- package/dist/model/services/runtime/strategies/StoreRuntimeStrategy.d.ts +0 -9
- package/dist/model/services/runtime/strategies/StreamRuntimeStrategy.d.ts +0 -9
- package/dist/model/services/runtime/table-actions.d.ts +0 -3
- package/dist/model/services/runtime/transports/BrowserSseStreamTransportFactory.d.ts +0 -5
- package/dist/model/services/source-engine/SourceEngineRegistry.d.ts +0 -11
- package/dist/model/services/source-engine/SourceLanguageRegistry.d.ts +0 -11
- package/dist/model/services/source-engine/SourcePatchRegistry.d.ts +0 -11
- package/dist/model/services/source-engine/compilers/action-source-compile.d.ts +0 -17
- package/dist/model/services/source-engine/compilers/composition-source-compile.d.ts +0 -5
- package/dist/model/services/source-engine/compilers/configuration-source-compile.d.ts +0 -4
- package/dist/model/services/source-engine/compilers/data-view-source-compile.d.ts +0 -3
- package/dist/model/services/source-engine/compilers/filter-source-compile.d.ts +0 -3
- package/dist/model/services/source-engine/compilers/query-source-compile.d.ts +0 -3
- package/dist/model/services/source-engine/compilers/source-expression-compile.d.ts +0 -16
- package/dist/model/services/source-engine/compilers/source-field-compile.d.ts +0 -14
- package/dist/model/services/source-engine/compilers/source-metadata-compile.d.ts +0 -17
- package/dist/model/services/source-engine/compilers/store-source-compile.d.ts +0 -3
- package/dist/model/services/source-engine/compilers/stream-source-compile.d.ts +0 -3
- package/dist/model/services/source-engine/compilers/type-source-compile.d.ts +0 -9
- package/dist/model/services/source-engine/compilers/update-source-compile.d.ts +0 -3
- package/dist/model/services/source-engine/compilers/vocab-source-compile.d.ts +0 -2
- package/dist/model/services/source-engine/component-sfc/component-sfc-metadata-source-patch.d.ts +0 -6
- package/dist/model/services/source-engine/component-sfc/component-sfc-ports-source-patch.d.ts +0 -4
- package/dist/model/services/source-engine/component-sfc/component-sfc-props-source-patch.d.ts +0 -6
- package/dist/model/services/source-engine/component-sfc/component-sfc-table-source-patch.d.ts +0 -3
- package/dist/model/services/source-engine/component-sfc/component-sfc-visual-projection.d.ts +0 -3
- package/dist/model/services/source-engine/composition-activation.d.ts +0 -3
- package/dist/model/services/source-engine/composition-source-i18n-hints.d.ts +0 -5
- package/dist/model/services/source-engine/composition-source-patch.d.ts +0 -6
- package/dist/model/services/source-engine/configuration-source-patch.d.ts +0 -16
- package/dist/model/services/source-engine/filter-source-patch.d.ts +0 -12
- package/dist/model/services/source-engine/query-source-patch.d.ts +0 -12
- package/dist/model/services/source-engine/source-document-reference.d.ts +0 -23
- package/dist/model/services/source-engine/source-expression-evaluate.d.ts +0 -5
- package/dist/model/services/source-engine/source-language-syntax.d.ts +0 -11
- package/dist/model/services/source-engine/strategies/ActionSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/ActionSourceLanguageStrategy.d.ts +0 -23
- package/dist/model/services/source-engine/strategies/CompositionSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/CompositionSourceLanguageStrategy.d.ts +0 -14
- package/dist/model/services/source-engine/strategies/CompositionSourcePatchStrategy.d.ts +0 -13
- package/dist/model/services/source-engine/strategies/ComputationSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/ComputationSourceLanguageStrategy.d.ts +0 -12
- package/dist/model/services/source-engine/strategies/ConfigurationSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/ConfigurationSourceLanguageStrategy.d.ts +0 -12
- package/dist/model/services/source-engine/strategies/DataViewSourceEngineStrategy.d.ts +0 -12
- package/dist/model/services/source-engine/strategies/DataViewSourceLanguageStrategy.d.ts +0 -17
- package/dist/model/services/source-engine/strategies/FilterSourceEngineStrategy.d.ts +0 -8
- package/dist/model/services/source-engine/strategies/FilterSourceLanguageStrategy.d.ts +0 -12
- package/dist/model/services/source-engine/strategies/FilterSourcePatchStrategy.d.ts +0 -10
- package/dist/model/services/source-engine/strategies/QuerySourceEngineStrategy.d.ts +0 -12
- package/dist/model/services/source-engine/strategies/QuerySourceLanguageStrategy.d.ts +0 -17
- package/dist/model/services/source-engine/strategies/QuerySourcePatchStrategy.d.ts +0 -13
- package/dist/model/services/source-engine/strategies/StoreSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/StoreSourceLanguageStrategy.d.ts +0 -12
- package/dist/model/services/source-engine/strategies/StreamSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/StreamSourceLanguageStrategy.d.ts +0 -10
- package/dist/model/services/source-engine/strategies/StyleSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/StyleSourceLanguageStrategy.d.ts +0 -43
- package/dist/model/services/source-engine/strategies/TypeSourceEngineStrategy.d.ts +0 -8
- package/dist/model/services/source-engine/strategies/TypeSourceLanguageStrategy.d.ts +0 -13
- package/dist/model/services/source-engine/strategies/UpdateSourceEngineStrategy.d.ts +0 -7
- package/dist/model/services/source-engine/strategies/UpdateSourceLanguageStrategy.d.ts +0 -10
- package/dist/model/services/source-engine/strategies/VocabSourceEngineStrategy.d.ts +0 -8
- package/dist/model/services/source-engine/strategies/VocabSourceLanguageStrategy.d.ts +0 -11
- package/dist/model/services/source-engine/strategies/VocabSourcePatchStrategy.d.ts +0 -9
- package/dist/model/services/source-engine/templates/configuration.default.source.d.ts +0 -2
- package/dist/model/services/source-engine/type-source-references.d.ts +0 -14
- package/dist/model/services/source-engine/type-source-serialize.d.ts +0 -6
- package/dist/model/services/source-engine/typescript-type-source.d.ts +0 -18
- package/dist/model/services/source-engine/value-expression-language.d.ts +0 -5
- package/dist/model/services/source-engine/value-expression-operations.d.ts +0 -10
- package/dist/model/services/source-engine/vocab-source-patch.d.ts +0 -10
- package/dist/model/services/style/endgecss-compile.d.ts +0 -4
- package/dist/model/services/style/endgecss-match.d.ts +0 -5
- package/dist/model/services/tooltip/endge-tooltip-markdown.d.ts +0 -5
- package/dist/test/component-sfc-interactions.bench.d.ts +0 -1
- package/dist/test/component-sfc-interactions.test.d.ts +0 -1
- package/dist/test/component-sfc-preview-props.test.d.ts +0 -1
- package/dist/test/component-sfc-table-menu.test.d.ts +0 -1
- package/dist/test/component-sfc-table-pin.test.d.ts +0 -1
- package/dist/test/component-sfc-table-sort.test.d.ts +0 -1
- package/dist/test/component-sfc-table-visibility.test.d.ts +0 -1
- package/dist/test/configuration/endge-configuration.test.d.ts +0 -1
- package/dist/test/diagnostics/console-diagnostics-adapter.test.d.ts +0 -1
- package/dist/test/diagnostics/endge-diagnostics.test.d.ts +0 -1
- package/dist/test/diagnostics/endge-problems.test.d.ts +0 -1
- package/dist/test/diagnostics/sentry-diagnostics-adapter.test.d.ts +0 -1
- package/dist/test/domain/entities/endge/EndgeFederation.test.d.ts +0 -1
- package/dist/test/domain/entities/endge/subscribable.test.d.ts +0 -1
- package/dist/test/domain/entities/reflect/RComponentSFC.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/ComponentSFCEventBoundary.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/RuntimeAppScope.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/composition-manual-runtime.integration.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/composition-operation-history.integration.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/composition-style-scope.integration.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/hosts/ComponentSFCRuntimeHost.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/hosts/CompositionRuntimeHost.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/hosts/FilterRuntimeHost.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/hosts/FilterViewRuntimeHost.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/hosts/QueryRuntimeHost.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/hosts/StoreRuntimeHost.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/runtime-memory-lifecycle.test.d.ts +0 -1
- package/dist/test/domain/entities/runtime/runtime-scope.test.d.ts +0 -1
- package/dist/test/domain/entity-management.test.d.ts +0 -1
- package/dist/test/domain/entity-meta.test.d.ts +0 -1
- package/dist/test/endge-context-persistence.test.d.ts +0 -1
- package/dist/test/endge-module-ownership.test.d.ts +0 -1
- package/dist/test/endge-runtime-persistence.test.d.ts +0 -1
- package/dist/test/endge-workspace.test.d.ts +0 -1
- package/dist/test/fixtures/action-source.d.ts +0 -1
- package/dist/test/fixtures/endge-workspace.d.ts +0 -2
- package/dist/test/legacy-component-documents.test.d.ts +0 -1
- package/dist/test/model/helpers/raph-phases/runtime-boundary-update-phase.test.d.ts +0 -1
- package/dist/test/model/helpers/raph-phases/runtime-node-update-phase.test.d.ts +0 -1
- package/dist/test/model/modules/context/endge-context-theme-default.test.d.ts +0 -1
- package/dist/test/model/modules/context/endge-context.test.d.ts +0 -1
- package/dist/test/model/modules/context/endge-workspace.test.d.ts +0 -1
- package/dist/test/model/modules/context/workspace-variables.test.d.ts +0 -1
- package/dist/test/model/modules/diagnostics/endge-diagnostics-submodules.test.d.ts +0 -1
- package/dist/test/model/modules/domain/endge-domain-export.test.d.ts +0 -1
- package/dist/test/model/modules/domain/endge-vocabs-source.test.d.ts +0 -1
- package/dist/test/model/modules/domain/service-backend-snapshot.test.d.ts +0 -1
- package/dist/test/model/modules/domain/type-identity-index.test.d.ts +0 -1
- package/dist/test/model/modules/mock/EndgeMock.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-component-tags.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-composition.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-computation.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-metadata.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-ports.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-query-auth.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-store-mock.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-compiler-type.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-program.test.d.ts +0 -1
- package/dist/test/model/modules/program/endge-source.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/action-runtime.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/computation-resource.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/computation-source-preview.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/endge-project.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/executable-implementations.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/execution/endge-data-view-converter.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/execution/endge-data-view.test.d.ts +0 -1
- package/dist/test/model/modules/runtime/operation-history.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-action-reactions.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-compile.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-dependencies.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-editable.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-parse.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-ports.test.d.ts +0 -1
- package/dist/test/model/services/compiler/component-sfc/component-sfc-tooltip.test.d.ts +0 -1
- package/dist/test/model/services/compiler/computation/computation-compile.test.d.ts +0 -1
- package/dist/test/model/services/compiler/computation/groundhandling-process-state.test.d.ts +0 -1
- package/dist/test/model/services/compiler/type/type-program-validation.test.d.ts +0 -1
- package/dist/test/model/services/document/DocumentDraftFactory.test.d.ts +0 -1
- package/dist/test/model/services/query/QueryExecutor.test.d.ts +0 -1
- package/dist/test/model/services/runtime/strategies/CompositionRuntimeStrategy.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/action-source-compile.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/compilers/source-metadata-compile.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/compilers/source-model-reference-compile.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/compilers/store-source-compile.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/component-sfc/component-sfc-metadata-source-patch.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/component-sfc/component-sfc-ports-source-patch.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/component-sfc/component-sfc-props-source-patch.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/component-sfc/component-sfc-table-source-patch.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/component-sfc/component-sfc-visual-projection.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/composition-activation.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/composition-component-events.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/composition-scope-source.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/configuration-source.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/data-view-incremental.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/data-view-select-steps.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/filter-composition-source.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/query-source-v1-migration.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/source-document-reference.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/source-language-normalize.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/type-source-compile.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/typescript-type-source.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/value-expression-operations.test.d.ts +0 -1
- package/dist/test/model/services/source-engine/value-expression.test.d.ts +0 -1
- package/dist/test/query-derived.test.d.ts +0 -1
- package/dist/test/query-outputs.test.d.ts +0 -1
- package/dist/test/runtime/sfc-render-inspection-session.test.d.ts +0 -1
- package/dist/test/runtime-table-commands.test.d.ts +0 -1
- package/dist/test/security/auth-adapters-and-profiles.test.d.ts +0 -1
- package/dist/test/security/auth-context.test.d.ts +0 -1
- package/dist/test/security/auth-profile-serializer.test.d.ts +0 -1
- package/dist/test/security/auth-session-manager.test.d.ts +0 -1
- package/dist/test/security/auth-session-store.test.d.ts +0 -1
- package/dist/test/security/auth-sse.test.d.ts +0 -1
- package/dist/test/security/auth-test-helpers.d.ts +0 -12
- package/dist/test/security/oidc-browser-session.test.d.ts +0 -1
- package/dist/test/style/component-sfc-endgecss.test.d.ts +0 -1
- package/dist/test/style/endge-style-lease.test.d.ts +0 -1
- package/dist/test/style/endge-style-lifecycle.test.d.ts +0 -1
- package/dist/test/style/endge-style-program.test.d.ts +0 -1
- package/dist/test/style/endgecss-compile.test.d.ts +0 -1
- package/dist/test/tools/component-sfc-edit-trigger.test.d.ts +0 -1
- package/dist/test/tools/type-import-source.test.d.ts +0 -1
- package/dist/test/tooltip/endge-tooltip-markdown.test.d.ts +0 -1
- package/dist/test/ui-adapter-registry.test.d.ts +0 -1
- package/dist/tools/component-sfc-edit-trigger.d.ts +0 -19
- package/dist/tools/graphql-parser.d.ts +0 -5
- package/dist/tools/openapi-parser.d.ts +0 -4
- package/dist/tools/table.d.ts +0 -4
- /package/dist/{model/modules/security/auth → features/core/modules/auth/domain}/AuthInteractionRequiredError.d.ts +0 -0
- /package/dist/{domain/types/auth → features/core/modules/auth/domain/types}/auth-runtime.types.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/arrays/split.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/arrays/to-array.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-date-string.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-iso-string.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-iso-z.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-time-string.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/iso-string-to-date.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/iso-string-to-time-string.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/string-to-date.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/time-string-to-date.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/timestamp-to-date.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/weekdays-range.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/json/json-parse.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/json/json-stringify.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/numbers/number-to-string.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/numbers/string-to-number.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/strings/default-if-empty.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/strings/string-to-boolean.d.ts +0 -0
- /package/dist/{model/seed/converters → features/core/modules/converters/tools}/strings/string-trim.d.ts +0 -0
- /package/dist/{domain/types/diagnostics → features/core/modules/diagnostics/domain/types}/diagnostics-adapter.type.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RComponentDSL.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RComposition.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RDataView.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RField.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RQueryFilter.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RStore.d.ts +0 -0
- /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RVersion.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/component/sfc/intrinsic-events.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/component/sfc/location.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/component/sfc/source.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/component/sfc/table-visibility.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/component/sfc/tag-attribute-contract.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/component/sfc/tag-input-contract.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/computation/computation.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/codegen.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/document-create.type.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/document-draft.type.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/document-move.type.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/domain-provider.type.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/domain-snapshot.type.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/filter.types.d.ts +0 -0
- /package/dist/{domain → features/core/modules/domain}/types/document/navigation.types.d.ts +0 -0
- /package/dist/{domain/entities/endge → features/core/modules/events/domain}/EndgeEvent.d.ts +0 -0
- /package/dist/{domain/types/kernel → features/core/modules/events/domain}/events.types.d.ts +0 -0
- /package/dist/{domain/types/program → features/core/modules/program/domain/types}/program-metadata.types.d.ts +0 -0
- /package/dist/{domain/entities/endge → features/core/modules/runtime/domain}/EndgeActionJsonScript.d.ts +0 -0
- /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/execution-context.types.d.ts +0 -0
- /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/runtime-resource.types.d.ts +0 -0
- /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/table-binding.types.d.ts +0 -0
- /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/table.types.d.ts +0 -0
- /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/vocab-cache.types.d.ts +0 -0
- /package/dist/{domain/types/source → features/core/modules/source/domain/types}/action-source.types.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source/services}/compilers/source-model-reference-compile.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source/services}/composition-source-normalize.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source/services}/migrations/query-source-v1-migration.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/action.default.source.d.ts +0 -0
- /package/dist/{model/services/compiler/component-sfc/templates → features/core/modules/source/templates/component-sfc}/component-sfc.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/composition.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/computation.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/data-view.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/filter.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/query.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/store.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/stream.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/type.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/update.default.source.d.ts +0 -0
- /package/dist/{model/services/source-engine → features/core/modules/source}/templates/vocab.default.source.d.ts +0 -0
- /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/jsx.types.d.ts +0 -0
- /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/tooltip-markdown.types.d.ts +0 -0
- /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/ui-composition.types.d.ts +0 -0
- /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/ui.types.d.ts +0 -0
- /package/dist/{tools → features/core/modules/updates/tools}/ScheduleUpdate-sse-generator.d.ts +0 -0
- /package/dist/{domain/entities/endge → features/federation/services}/EndgeModuleController.d.ts +0 -0
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
import { PhaseEvent, PhaseName, RaphFrameContext, RaphNode } from '../../../../../../../@endge-raph/dist/main.d.ts';
|
|
2
|
+
import { RuntimeStateControllerLike } from '../../context/domain/context-persistence.types';
|
|
3
|
+
import { ProgramArtifact, ProgramEntityType } from '../../program/domain/types/program.types';
|
|
4
|
+
import { RuntimeEntityModelMap, RuntimeEntityType } from './runtime-entity-map.types';
|
|
5
|
+
import { RuntimeKind } from './runtime.types';
|
|
6
|
+
export type RuntimeHostStatus = 'created' | 'mounted' | 'running' | 'active' | 'pausing' | 'paused' | 'stopping' | 'stopped' | 'unmounted' | 'destroyed' | 'error';
|
|
7
|
+
/** Возможность, которую runtime-host предоставляет внешним consumers. */
|
|
8
|
+
export type RuntimeHostCapability = 'renderable';
|
|
9
|
+
export type RuntimeHostResourceKind = 'raph-node' | 'event-subscription' | 'scope' | 'meta';
|
|
10
|
+
export interface RuntimeHostResource {
|
|
11
|
+
/** Уникальный идентификатор ресурса внутри host. */
|
|
12
|
+
id: string;
|
|
13
|
+
/** Тип ресурса (raph-node, binding, contract и т.д.). */
|
|
14
|
+
kind: RuntimeHostResourceKind;
|
|
15
|
+
/** Короткий заголовок для UI/инспектора. */
|
|
16
|
+
title: string;
|
|
17
|
+
/** Дополнительная подпись для контекста. */
|
|
18
|
+
subtitle?: string;
|
|
19
|
+
/** Произвольные метаданные ресурса. */
|
|
20
|
+
payload?: Record<string, unknown>;
|
|
21
|
+
}
|
|
22
|
+
export type RuntimeHostChannelKind = 'raph' | 'event-bus' | 'external';
|
|
23
|
+
export interface RuntimeHostChannel {
|
|
24
|
+
/** Уникальный идентификатор канала. */
|
|
25
|
+
id: string;
|
|
26
|
+
/** Семантический тип канала коммуникации. */
|
|
27
|
+
kind: RuntimeHostChannelKind;
|
|
28
|
+
/** Отображаемое имя канала. */
|
|
29
|
+
name: string;
|
|
30
|
+
/** Направление потока сообщений для канала. */
|
|
31
|
+
direction: 'in' | 'out' | 'both';
|
|
32
|
+
/** Дополнительная поясняющая подпись. */
|
|
33
|
+
subtitle?: string;
|
|
34
|
+
}
|
|
35
|
+
export interface RuntimeHostContextBase {
|
|
36
|
+
status: 'idle' | 'running' | 'success' | 'error';
|
|
37
|
+
startedAt: string | null;
|
|
38
|
+
updatedAt: string | null;
|
|
39
|
+
}
|
|
40
|
+
export interface ActionRuntimeHostContext extends RuntimeHostContextBase {
|
|
41
|
+
/** Неизменяемый вход текущего вызова Action из Source. */
|
|
42
|
+
input: Record<string, unknown>;
|
|
43
|
+
result: unknown;
|
|
44
|
+
parent?: ActionRuntimeHostContext | null;
|
|
45
|
+
}
|
|
46
|
+
export interface QueryRuntimeHostContext extends RuntimeHostContextBase {
|
|
47
|
+
lastFilterChangeAt: string | null;
|
|
48
|
+
}
|
|
49
|
+
export interface FilterRuntimeHostContext extends RuntimeHostContextBase {
|
|
50
|
+
instance: string;
|
|
51
|
+
lastStateChangeAt: string | null;
|
|
52
|
+
}
|
|
53
|
+
export interface CompositionRuntimeHostContext extends RuntimeHostContextBase {
|
|
54
|
+
mountedChildren: number;
|
|
55
|
+
lastHookAt: string | null;
|
|
56
|
+
}
|
|
57
|
+
export interface StoreRuntimeHostContext extends RuntimeHostContextBase {
|
|
58
|
+
lastStateChangeAt: string | null;
|
|
59
|
+
writableFields: string[];
|
|
60
|
+
derivedFields: string[];
|
|
61
|
+
}
|
|
62
|
+
export interface StreamRuntimeHostContext extends RuntimeHostContextBase {
|
|
63
|
+
lastEventAt: string | null;
|
|
64
|
+
receivedCount: number;
|
|
65
|
+
}
|
|
66
|
+
export interface ComponentSFCRuntimeHostContext extends RuntimeHostContextBase {
|
|
67
|
+
/** Target последней подготовки SFC. */
|
|
68
|
+
target: 'dom' | 'canvas' | null;
|
|
69
|
+
/** Время последнего разбора source на вкладки. */
|
|
70
|
+
lastParseAt: string | null;
|
|
71
|
+
/** Время последней подготовки compiler placeholders. */
|
|
72
|
+
lastCompileAt: string | null;
|
|
73
|
+
/** Время последней попытки render/projection. */
|
|
74
|
+
lastRenderAt: string | null;
|
|
75
|
+
}
|
|
76
|
+
export interface PageRuntimeHostContext extends RuntimeHostContextBase {
|
|
77
|
+
lastRenderAt: string | null;
|
|
78
|
+
}
|
|
79
|
+
export interface ProjectRuntimeHostContext extends RuntimeHostContextBase {
|
|
80
|
+
lastRefreshAt: string | null;
|
|
81
|
+
}
|
|
82
|
+
export interface RuntimeHostContextMap {
|
|
83
|
+
'action': ActionRuntimeHostContext;
|
|
84
|
+
'query': QueryRuntimeHostContext;
|
|
85
|
+
'filter': FilterRuntimeHostContext;
|
|
86
|
+
'composition': CompositionRuntimeHostContext;
|
|
87
|
+
'store': StoreRuntimeHostContext;
|
|
88
|
+
'stream': StreamRuntimeHostContext;
|
|
89
|
+
'component-sfc': ComponentSFCRuntimeHostContext;
|
|
90
|
+
'page': PageRuntimeHostContext;
|
|
91
|
+
'project': ProjectRuntimeHostContext;
|
|
92
|
+
}
|
|
93
|
+
export type RuntimeHostContext<TType extends RuntimeEntityType> = RuntimeHostContextMap[TType];
|
|
94
|
+
export interface RuntimeHostSnapshot {
|
|
95
|
+
/** Идентификатор runtime-host. */
|
|
96
|
+
id: string;
|
|
97
|
+
/** Публичный runtime-scoped путь данных host в Raph. */
|
|
98
|
+
basePath: string;
|
|
99
|
+
/** Runtime-id родительского host, если host запущен как дочерний. */
|
|
100
|
+
parentId: string | null;
|
|
101
|
+
/** Время удаления host, если snapshot попал в debug-архив удалённых. */
|
|
102
|
+
removedAt: number | null;
|
|
103
|
+
/** Технический тип runtime-host реализации. */
|
|
104
|
+
runtimeType: string;
|
|
105
|
+
/** Возможности runtime-host, доступные внешним consumers. */
|
|
106
|
+
capabilities: RuntimeHostCapability[];
|
|
107
|
+
/** Тип доменной сущности, к которой привязан host. */
|
|
108
|
+
entityType: RuntimeEntityType;
|
|
109
|
+
/** Identity доменной сущности. */
|
|
110
|
+
entityIdentity: string;
|
|
111
|
+
/** Заголовок host для отображения в UI. */
|
|
112
|
+
title: string;
|
|
113
|
+
/** Текущий статус жизненного цикла host. */
|
|
114
|
+
status: RuntimeHostStatus;
|
|
115
|
+
/** Время создания host (timestamp ms). */
|
|
116
|
+
createdAt: number;
|
|
117
|
+
/** Время последнего изменения host (timestamp ms). */
|
|
118
|
+
updatedAt: number;
|
|
119
|
+
/** Список ресурсов, связанных с host. */
|
|
120
|
+
resources: RuntimeHostResource[];
|
|
121
|
+
/** Список каналов, через которые host взаимодействует с окружением. */
|
|
122
|
+
channels: RuntimeHostChannel[];
|
|
123
|
+
/** Произвольные метаданные host. */
|
|
124
|
+
meta: Record<string, unknown>;
|
|
125
|
+
/** Контекст host (для debug/inspection). */
|
|
126
|
+
context: Record<string, unknown>;
|
|
127
|
+
}
|
|
128
|
+
/** Лёгкий архивный описатель. Runtime-данные намеренно исключены. */
|
|
129
|
+
export interface DestroyedRuntimeHostSnapshot {
|
|
130
|
+
id: string;
|
|
131
|
+
basePath: string;
|
|
132
|
+
parentId: string | null;
|
|
133
|
+
runtimeType: string;
|
|
134
|
+
capabilities: RuntimeHostCapability[];
|
|
135
|
+
entityType: RuntimeEntityType;
|
|
136
|
+
entityIdentity: string;
|
|
137
|
+
title: string;
|
|
138
|
+
previousStatus: RuntimeHostStatus;
|
|
139
|
+
status: 'destroyed';
|
|
140
|
+
createdAt: number;
|
|
141
|
+
updatedAt: number;
|
|
142
|
+
removedAt: number;
|
|
143
|
+
resources: Array<Omit<RuntimeHostResource, 'payload'>>;
|
|
144
|
+
channels: RuntimeHostChannel[];
|
|
145
|
+
}
|
|
146
|
+
export interface RuntimeInspectionLease {
|
|
147
|
+
release: () => void;
|
|
148
|
+
}
|
|
149
|
+
export interface RuntimeHostLifecycle {
|
|
150
|
+
/** Точка входа совместимости: mount и start. */
|
|
151
|
+
create: () => Promise<void> | void;
|
|
152
|
+
mount: () => Promise<void> | void;
|
|
153
|
+
start: () => Promise<void> | void;
|
|
154
|
+
pause: () => Promise<void> | void;
|
|
155
|
+
resume: () => Promise<void> | void;
|
|
156
|
+
reconcile: () => Promise<void> | void;
|
|
157
|
+
stop: () => Promise<void> | void;
|
|
158
|
+
unmount: () => Promise<void> | void;
|
|
159
|
+
/** Синхронно запрещает новые updates перед освобождением runtime tree. */
|
|
160
|
+
quiesce: () => Promise<void> | void;
|
|
161
|
+
/** Корректно остановить host и освободить ресурсы. */
|
|
162
|
+
destroy: () => Promise<void> | void;
|
|
163
|
+
/** Обработать runtime update, пришедший из логической либо boundary Raph-фазы. */
|
|
164
|
+
update: (ctx: RuntimeHostUpdateContext) => Promise<void> | void;
|
|
165
|
+
}
|
|
166
|
+
export interface RuntimeArtifactReader {
|
|
167
|
+
getArtifact: <TPayload = unknown>(entityType: ProgramEntityType, idOrIdentity: string | number) => ProgramArtifact<TPayload> | null;
|
|
168
|
+
}
|
|
169
|
+
export interface RuntimeHostArtifactRef {
|
|
170
|
+
entityType: ProgramEntityType;
|
|
171
|
+
id?: string | number;
|
|
172
|
+
identity?: string;
|
|
173
|
+
}
|
|
174
|
+
/** Каноническое имя Raph-фазы, которая агрегирует dirty runtime-ноды к root host. */
|
|
175
|
+
export declare const RUNTIME_BOUNDARY_UPDATE_PHASE_NAME: PhaseName;
|
|
176
|
+
/** Фаза логического обновления root-ноды runtime-host. */
|
|
177
|
+
export declare const RUNTIME_NODE_UPDATE_PHASE_NAME: PhaseName;
|
|
178
|
+
/** Значение входа runtime-host: literal либо прямая ссылка на Raph data path. */
|
|
179
|
+
export type RuntimeHostInputBinding = {
|
|
180
|
+
kind: 'literal';
|
|
181
|
+
value: unknown;
|
|
182
|
+
} | {
|
|
183
|
+
kind: 'raph';
|
|
184
|
+
path: string;
|
|
185
|
+
};
|
|
186
|
+
/** Декларативная команда, которую host должен обработать при изменении sourcePath. */
|
|
187
|
+
export interface RuntimeHostUpdateBinding {
|
|
188
|
+
id: string;
|
|
189
|
+
sourcePath: string;
|
|
190
|
+
update: {
|
|
191
|
+
kind: string;
|
|
192
|
+
payload?: unknown;
|
|
193
|
+
};
|
|
194
|
+
policy?: {
|
|
195
|
+
debounceMs?: number;
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
/** Конкретное логическое обновление, разрешённое из Raph events. */
|
|
199
|
+
export interface RuntimeHostResolvedUpdate {
|
|
200
|
+
bindingId: string;
|
|
201
|
+
sourcePath: string;
|
|
202
|
+
kind: string;
|
|
203
|
+
payload?: unknown;
|
|
204
|
+
}
|
|
205
|
+
/** Локальный input source runtime-host-а без привязки к Raph. */
|
|
206
|
+
export interface RuntimeHostLocalInputSource {
|
|
207
|
+
kind: 'local';
|
|
208
|
+
props: Record<string, unknown>;
|
|
209
|
+
}
|
|
210
|
+
/** Binding входного prop на путь в Raph data storage. */
|
|
211
|
+
export interface RuntimeHostRaphInputBinding {
|
|
212
|
+
path: string;
|
|
213
|
+
wildcardDynamic?: boolean;
|
|
214
|
+
}
|
|
215
|
+
/** Raph-backed input source runtime-host-а. */
|
|
216
|
+
export interface RuntimeHostRaphInputSource {
|
|
217
|
+
kind: 'raph';
|
|
218
|
+
bindings: Record<string, RuntimeHostRaphInputBinding>;
|
|
219
|
+
/** Literal props, которые объединяются с Raph bindings. */
|
|
220
|
+
props?: Record<string, unknown>;
|
|
221
|
+
}
|
|
222
|
+
/** Унифицированный источник входных данных runtime-host-а. */
|
|
223
|
+
export type RuntimeHostInputSource = RuntimeHostLocalInputSource | RuntimeHostRaphInputSource;
|
|
224
|
+
/** Группа dirty-ноды, агрегированная к runtime boundary. */
|
|
225
|
+
export interface RuntimeDirtyBoundary {
|
|
226
|
+
boundary: RaphNode;
|
|
227
|
+
dirtyNodes: RaphNode[];
|
|
228
|
+
events: PhaseEvent[];
|
|
229
|
+
}
|
|
230
|
+
/** Контекст универсального runtime update, который получает root runtime-host. */
|
|
231
|
+
export interface RuntimeHostUpdateContext {
|
|
232
|
+
node: RaphNode;
|
|
233
|
+
events: PhaseEvent[];
|
|
234
|
+
boundaries: RuntimeDirtyBoundary[];
|
|
235
|
+
frame: RaphFrameContext;
|
|
236
|
+
/** Логические обновления root runtime-ноды. Boundary-фаза это поле не заполняет. */
|
|
237
|
+
updates?: RuntimeHostResolvedUpdate[];
|
|
238
|
+
}
|
|
239
|
+
/** Проекция patchable collection boundary, которую можно обновить точечно. */
|
|
240
|
+
export interface RuntimeCollectionProjectionPatch {
|
|
241
|
+
/** Boundary-id дочерней проекции, например колонки таблицы. */
|
|
242
|
+
boundaryId: string;
|
|
243
|
+
/** Семантический ключ проекции, например key колонки. */
|
|
244
|
+
key: string;
|
|
245
|
+
/** Индекс проекции в render target, например индекс колонки. */
|
|
246
|
+
index: number;
|
|
247
|
+
}
|
|
248
|
+
/** Patch обновления части коллекции внутри runtime boundary. */
|
|
249
|
+
export interface RuntimeCollectionProjectionUpdatePatch {
|
|
250
|
+
/** Тип patch payload. */
|
|
251
|
+
kind: 'collection-projection-update';
|
|
252
|
+
/** Boundary-id владельца коллекции, например Table. */
|
|
253
|
+
boundaryId: string;
|
|
254
|
+
/** Тип boundary владельца коллекции. */
|
|
255
|
+
boundaryType: 'table';
|
|
256
|
+
/** Source path, на который подписана boundary-нода. */
|
|
257
|
+
sourcePath: string;
|
|
258
|
+
/** Индекс элемента коллекции, если его можно извлечь из Raph event path. */
|
|
259
|
+
itemIndex: number | null;
|
|
260
|
+
/** Ключ элемента коллекции, если runtime смог его прочитать. */
|
|
261
|
+
itemKey: unknown;
|
|
262
|
+
/** Снимок элемента коллекции после изменения. */
|
|
263
|
+
itemSnapshot: unknown;
|
|
264
|
+
/** Измененные относительные paths внутри элемента коллекции. */
|
|
265
|
+
changedPaths: string[][];
|
|
266
|
+
/** Проекции, которые зависят от измененных paths. */
|
|
267
|
+
affectedProjections: RuntimeCollectionProjectionPatch[];
|
|
268
|
+
/** Исходные события Raph, из которых собран patch. */
|
|
269
|
+
events: PhaseEvent[];
|
|
270
|
+
/** Raph-нода, которая стала верхней dirty boundary. */
|
|
271
|
+
node: RaphNode;
|
|
272
|
+
}
|
|
273
|
+
/** Одно keyed изменение строки внутри пакетного patch коллекции. */
|
|
274
|
+
export interface RuntimeCollectionItemPatch {
|
|
275
|
+
/** Текущий индекс строки; null означает, что строка удалена из результата. */
|
|
276
|
+
itemIndex: number | null;
|
|
277
|
+
/** Стабильный ключ строки из selector или актуального snapshot. */
|
|
278
|
+
itemKey: unknown;
|
|
279
|
+
/** Актуальный snapshot строки; null/undefined означает удаление. */
|
|
280
|
+
itemSnapshot: unknown;
|
|
281
|
+
/** Измененные относительные paths внутри строки. */
|
|
282
|
+
changedPaths: string[][];
|
|
283
|
+
}
|
|
284
|
+
/** Пакет keyed изменений одной коллекции за один Raph frame. */
|
|
285
|
+
export interface RuntimeCollectionProjectionBatchPatch {
|
|
286
|
+
kind: 'collection-projection-batch';
|
|
287
|
+
boundaryId: string;
|
|
288
|
+
boundaryType: 'table';
|
|
289
|
+
sourcePath: string;
|
|
290
|
+
items: RuntimeCollectionItemPatch[];
|
|
291
|
+
affectedProjections: RuntimeCollectionProjectionPatch[];
|
|
292
|
+
events: PhaseEvent[];
|
|
293
|
+
node: RaphNode;
|
|
294
|
+
}
|
|
295
|
+
/** Нейтральный patch runtime boundary для render adapter-а. */
|
|
296
|
+
export type RuntimeBoundaryPatch = RuntimeCollectionProjectionUpdatePatch | RuntimeCollectionProjectionBatchPatch;
|
|
297
|
+
export interface RuntimeHost<TType extends RuntimeEntityType = RuntimeEntityType, TContext extends RuntimeHostContext<TType> = RuntimeHostContext<TType>, TArtifactPayload = unknown> extends RuntimeHostLifecycle {
|
|
298
|
+
/** Уникальный runtime-id host. */
|
|
299
|
+
readonly id: string;
|
|
300
|
+
/** Родительский runtime-host для отладки вложенных запусков. */
|
|
301
|
+
readonly parent: RuntimeHost<any, any> | null;
|
|
302
|
+
/** Канонический runtime kind (query/table/action/runtime). */
|
|
303
|
+
readonly kind: RuntimeKind | 'runtime';
|
|
304
|
+
/**
|
|
305
|
+
* Имя конкретной runtime-реализации host.
|
|
306
|
+
*/
|
|
307
|
+
readonly runtimeType: string;
|
|
308
|
+
/** Возможности runtime-host, доступные внешним consumers. */
|
|
309
|
+
readonly capabilities: readonly RuntimeHostCapability[];
|
|
310
|
+
/** Тип привязанной доменной сущности. */
|
|
311
|
+
readonly entityType: TType;
|
|
312
|
+
/** Привязанная доменная модель. */
|
|
313
|
+
readonly model: RuntimeEntityModelMap[TType];
|
|
314
|
+
/** Identity привязанной доменной сущности. */
|
|
315
|
+
readonly entityIdentity: string;
|
|
316
|
+
/** Человекочитаемое имя host. */
|
|
317
|
+
readonly title: string;
|
|
318
|
+
/** Текущее состояние жизненного цикла host. */
|
|
319
|
+
status: RuntimeHostStatus;
|
|
320
|
+
/** Время создания host (timestamp ms). */
|
|
321
|
+
readonly createdAt: number;
|
|
322
|
+
/** Время последнего изменения host (timestamp ms). */
|
|
323
|
+
updatedAt: number;
|
|
324
|
+
/** Связанные runtime-ресурсы host. */
|
|
325
|
+
readonly resources: RuntimeHostResource[];
|
|
326
|
+
/** Связанные каналы взаимодействия host. */
|
|
327
|
+
readonly channels: RuntimeHostChannel[];
|
|
328
|
+
/** Произвольные runtime-метаданные host. */
|
|
329
|
+
readonly meta: Record<string, unknown>;
|
|
330
|
+
/** Контекст runtime-host (тип зависит от host). */
|
|
331
|
+
context: TContext;
|
|
332
|
+
/** Runtime-scoped persistence controller, если host запущен с persistence. */
|
|
333
|
+
readonly runtimeState: RuntimeStateControllerLike | null;
|
|
334
|
+
/** Корневая raph-нода host (если есть). */
|
|
335
|
+
readonly node: RaphNode | null;
|
|
336
|
+
/** Runtime-scoped базовый путь host в Raph data storage. */
|
|
337
|
+
readonly basePath: string;
|
|
338
|
+
/** Возвращает путь runtime state. */
|
|
339
|
+
statePath: (path?: string) => string;
|
|
340
|
+
/** Возвращает путь output runtime-host. */
|
|
341
|
+
outputPath: (name: string) => string;
|
|
342
|
+
/** Привязывает локальное имя входа к literal либо Raph path. */
|
|
343
|
+
bindInput: (name: string, binding: RuntimeHostInputBinding) => void;
|
|
344
|
+
/** Читает разрешённое значение входа. */
|
|
345
|
+
readInput: (name: string) => unknown;
|
|
346
|
+
/** Читает все входы одним snapshot. */
|
|
347
|
+
readInputs: () => Readonly<Record<string, unknown>>;
|
|
348
|
+
/** Подписывает root runtime-ноду на data path и тип логического обновления. */
|
|
349
|
+
bindUpdate: (binding: RuntimeHostUpdateBinding) => () => void;
|
|
350
|
+
/** Возвращает compiled artifact, связанный с host, если он доступен. */
|
|
351
|
+
getArtifact: () => ProgramArtifact<TArtifactPayload> | null;
|
|
352
|
+
/** Возвращает session-local reader, через который host читает compiled artifacts. */
|
|
353
|
+
getArtifactReader: () => RuntimeArtifactReader | null;
|
|
354
|
+
/** Возвращает payload compiled artifact, связанный с host, если он доступен. */
|
|
355
|
+
getArtifactPayload: () => TArtifactPayload | null;
|
|
356
|
+
/** Изменить статус host и обновить updatedAt. */
|
|
357
|
+
setStatus: (status: RuntimeHostStatus) => void;
|
|
358
|
+
/** Проверить наличие runtime capability. */
|
|
359
|
+
hasCapability: (capability: RuntimeHostCapability) => boolean;
|
|
360
|
+
/** Добавить/обновить runtime-ресурс host. */
|
|
361
|
+
addResource: (resource: RuntimeHostResource) => void;
|
|
362
|
+
/** Добавить/обновить канал host. */
|
|
363
|
+
addChannel: (channel: RuntimeHostChannel) => void;
|
|
364
|
+
/** Сгенерировать runtime-событие host. */
|
|
365
|
+
emit: (event: string, payload: any) => void;
|
|
366
|
+
/** Подписаться на runtime-событие host. */
|
|
367
|
+
on: (event: string, listener: (payload: any) => void) => any;
|
|
368
|
+
/** Отписаться от runtime-события host. */
|
|
369
|
+
off: (event: string, listener: (payload: any) => void) => any;
|
|
370
|
+
/** Частично обновить context host. */
|
|
371
|
+
setContext: (patch: Partial<TContext>) => void;
|
|
372
|
+
/** Полностью заменить context host. */
|
|
373
|
+
replaceContext: (context: TContext) => void;
|
|
374
|
+
/** Привязать runtime-scoped persistence controller. */
|
|
375
|
+
attachRuntimeState: (runtimeState: RuntimeStateControllerLike | null) => void;
|
|
376
|
+
/** Обработать runtime update, пришедший из логической либо boundary Raph-фазы. */
|
|
377
|
+
update: (ctx: RuntimeHostUpdateContext) => Promise<void> | void;
|
|
378
|
+
/** Сериализовать host в снимок для UI/диагностики. */
|
|
379
|
+
snapshot: () => RuntimeHostSnapshot;
|
|
380
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { RuntimeArtifactReader } from './runtime-host.types';
|
|
2
|
+
import { RuntimeScopeHandle } from './runtime-scope.types';
|
|
3
|
+
import { CompositionPublicOutputHandle, CompositionRuntimeHostHandle, CompositionSession } from '../../source/domain/types/composition-source.types';
|
|
4
|
+
export interface ProjectCompositionRegistry<THost extends CompositionRuntimeHostHandle = CompositionRuntimeHostHandle> {
|
|
5
|
+
get: (identity: string) => ProjectCompositionHandle<THost> | null;
|
|
6
|
+
require: (identity: string) => ProjectCompositionHandle<THost>;
|
|
7
|
+
getAll: () => ProjectCompositionHandle<THost>[];
|
|
8
|
+
}
|
|
9
|
+
export interface ProjectCompositionHandle<THost extends CompositionRuntimeHostHandle = CompositionRuntimeHostHandle> {
|
|
10
|
+
readonly identity: string;
|
|
11
|
+
readonly state: 'inactive' | 'active' | 'paused' | 'disposed';
|
|
12
|
+
readonly host: THost | null;
|
|
13
|
+
readonly outputs: Readonly<Record<string, CompositionPublicOutputHandle>>;
|
|
14
|
+
activate: () => Promise<CompositionSession<THost>>;
|
|
15
|
+
pause: () => Promise<void>;
|
|
16
|
+
resume: () => Promise<void>;
|
|
17
|
+
restart: () => Promise<CompositionSession<THost>>;
|
|
18
|
+
deactivate: () => Promise<void>;
|
|
19
|
+
output: <T = unknown>(name: string) => T | undefined;
|
|
20
|
+
}
|
|
21
|
+
export interface ProjectRuntimeMountOptions {
|
|
22
|
+
/** `declared` сохраняет корневой activateOn; `none` создаёт стабильные handles для сессии по требованию или отладки. */
|
|
23
|
+
autoActivate?: 'declared' | 'none';
|
|
24
|
+
/** Локальная для сессии проекция артефактов, используемая Preview без изменения Endge.program. */
|
|
25
|
+
artifactReader?: RuntimeArtifactReader;
|
|
26
|
+
}
|
|
27
|
+
export interface ProjectRuntimeSession<THost extends CompositionRuntimeHostHandle = CompositionRuntimeHostHandle> {
|
|
28
|
+
readonly id: string;
|
|
29
|
+
readonly compositions: ProjectCompositionRegistry<THost>;
|
|
30
|
+
switchScope: (options: {
|
|
31
|
+
from?: RuntimeScopeHandle | null;
|
|
32
|
+
to: RuntimeScopeHandle;
|
|
33
|
+
previous?: 'pause' | 'deactivate';
|
|
34
|
+
}) => Promise<void>;
|
|
35
|
+
unmount: () => Promise<void>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { RuntimeEntityType } from './runtime-entity-map.types';
|
|
2
|
+
import { DestroyedRuntimeHostSnapshot, RuntimeHost, RuntimeHostSnapshot } from './runtime-host.types';
|
|
3
|
+
export interface RuntimeHostRegistrySnapshot {
|
|
4
|
+
/** Общее количество зарегистрированных host. */
|
|
5
|
+
total: number;
|
|
6
|
+
/** Группировка host по статусу. */
|
|
7
|
+
byStatus: Record<string, number>;
|
|
8
|
+
/** Снимки всех host на момент запроса. */
|
|
9
|
+
hosts: RuntimeHostSnapshot[];
|
|
10
|
+
/** Общее количество удалённых host, сохранённых в debug-архиве. */
|
|
11
|
+
deletedTotal: number;
|
|
12
|
+
/** Снимки удалённых host из debug-архива. */
|
|
13
|
+
deletedHosts: DestroyedRuntimeHostSnapshot[];
|
|
14
|
+
}
|
|
15
|
+
export interface RuntimeHostRegistryLike {
|
|
16
|
+
/** Зарегистрировать host в registry и вернуть его же. */
|
|
17
|
+
register: <T extends RuntimeHost<any, any>>(host: T) => T;
|
|
18
|
+
/** Найти host по runtime-id. */
|
|
19
|
+
getById: (id: string) => RuntimeHost<any, any> | null;
|
|
20
|
+
/** Получить список всех host. */
|
|
21
|
+
getAll: () => RuntimeHost<any, any>[];
|
|
22
|
+
/** Получить host для конкретной доменной сущности. */
|
|
23
|
+
getByEntity: (entityType: RuntimeEntityType, entityIdentity: string) => RuntimeHost<any, any>[];
|
|
24
|
+
/** Удалить host по runtime-id и вернуть удаленный экземпляр. */
|
|
25
|
+
removeById: (id: string) => RuntimeHost<any, any> | null;
|
|
26
|
+
/** Очистить registry и разрушить все host. */
|
|
27
|
+
clear: () => void;
|
|
28
|
+
/** Сохранить snapshot удалённого host в debug-архив. */
|
|
29
|
+
rememberDeletedSnapshot: (snapshot: DestroyedRuntimeHostSnapshot) => void;
|
|
30
|
+
/** Получить снимки удалённых host из debug-архива. */
|
|
31
|
+
getDeletedSnapshots: () => DestroyedRuntimeHostSnapshot[];
|
|
32
|
+
/** Удалить один snapshot из debug-архива по runtime-id. */
|
|
33
|
+
removeDeletedSnapshot: (id: string) => DestroyedRuntimeHostSnapshot | null;
|
|
34
|
+
/** Немедленно применяет фактическую ограниченную ёмкость инспекции. */
|
|
35
|
+
setDeletedSnapshotLimit: (limit: number) => void;
|
|
36
|
+
/** Очистить debug-архив удалённых host. */
|
|
37
|
+
clearDeleted: () => void;
|
|
38
|
+
/** Получить сериализованный snapshot registry. */
|
|
39
|
+
snapshot: () => RuntimeHostRegistrySnapshot;
|
|
40
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { RuntimeHost } from './runtime-host.types';
|
|
2
|
+
import { RuntimeResourceBagSnapshot } from './runtime-resource.types';
|
|
3
|
+
export type RuntimeScopeState = 'inactive' | 'activating' | 'active' | 'pausing' | 'paused' | 'resuming' | 'deactivating' | 'error' | 'disposed';
|
|
4
|
+
export interface RuntimeScopeSnapshot {
|
|
5
|
+
id: string;
|
|
6
|
+
path: string;
|
|
7
|
+
parentScopeId: string | null;
|
|
8
|
+
ownerRuntimeId: string | null;
|
|
9
|
+
boundaryId: string;
|
|
10
|
+
state: RuntimeScopeState;
|
|
11
|
+
generation: number;
|
|
12
|
+
stale: boolean;
|
|
13
|
+
updateGateOpen: boolean;
|
|
14
|
+
childScopeIds: string[];
|
|
15
|
+
memberRuntimeIds: string[];
|
|
16
|
+
resources: RuntimeResourceBagSnapshot;
|
|
17
|
+
lastError: string | null;
|
|
18
|
+
}
|
|
19
|
+
export interface RuntimeScopeHandle {
|
|
20
|
+
readonly id: string;
|
|
21
|
+
readonly path: string;
|
|
22
|
+
readonly state: RuntimeScopeState;
|
|
23
|
+
readonly boundaryId: string;
|
|
24
|
+
activate: () => Promise<void>;
|
|
25
|
+
pause: () => Promise<void>;
|
|
26
|
+
resume: () => Promise<void>;
|
|
27
|
+
deactivate: () => Promise<void>;
|
|
28
|
+
dispose: () => Promise<void>;
|
|
29
|
+
getRuntime: (path: string) => RuntimeHost<any, any> | null;
|
|
30
|
+
getOutput: (name: string) => unknown;
|
|
31
|
+
snapshot: () => RuntimeScopeSnapshot;
|
|
32
|
+
}
|
|
33
|
+
export interface RuntimeScopeLifecycleHooks {
|
|
34
|
+
activate?: (signal: AbortSignal, generation: number) => Promise<void> | void;
|
|
35
|
+
pause?: () => Promise<void> | void;
|
|
36
|
+
resume?: () => Promise<void> | void;
|
|
37
|
+
reconcile?: () => Promise<void> | void;
|
|
38
|
+
deactivate?: () => Promise<void> | void;
|
|
39
|
+
dispose?: () => Promise<void> | void;
|
|
40
|
+
/** Централизованное завершение сохраняет согласованность RuntimeHostRegistry и индексов scope. */
|
|
41
|
+
destroyRuntime?: (runtimeId: string) => Promise<void> | void;
|
|
42
|
+
resolveRuntime?: (path: string) => RuntimeHost<any, any> | null;
|
|
43
|
+
resolveOutput?: (name: string) => unknown;
|
|
44
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { RuntimeEntityType } from './runtime-entity-map.types';
|
|
2
|
+
import { RuntimeArtifactReader, RuntimeHost } from './runtime-host.types';
|
|
3
|
+
export type RuntimeStrategyMeta = Record<string, any>;
|
|
4
|
+
export type AnyRuntimeHost = RuntimeHost<any, any>;
|
|
5
|
+
/** Контекст создания runtime-host конкретной стратегией. */
|
|
6
|
+
export interface RuntimeCreateContext<TModel = unknown> {
|
|
7
|
+
/** Уникальный runtime-id, выделенный EndgeRuntime_Module. */
|
|
8
|
+
id: string;
|
|
9
|
+
/** Доменная модель, для которой создается runtime-host. */
|
|
10
|
+
model: TModel;
|
|
11
|
+
/** Runtime meta/options без служебного parent. */
|
|
12
|
+
meta: RuntimeStrategyMeta;
|
|
13
|
+
/** Родительский runtime-host, если запуск вложенный. */
|
|
14
|
+
parent: AnyRuntimeHost | null;
|
|
15
|
+
/** Read-only доступ к compiled artifacts текущей Endge.program. */
|
|
16
|
+
artifacts: RuntimeArtifactReader;
|
|
17
|
+
}
|
|
18
|
+
/** Контекст разрушения runtime-host, если стратегии нужна своя очистка. */
|
|
19
|
+
export interface RuntimeDestroyContext<THost extends AnyRuntimeHost = AnyRuntimeHost> {
|
|
20
|
+
/** Разрушаемый runtime-host. */
|
|
21
|
+
host: THost;
|
|
22
|
+
}
|
|
23
|
+
/** Strategy запуска runtime-сущности одного типа. */
|
|
24
|
+
export interface RuntimeStrategy<TModel = unknown, THost extends AnyRuntimeHost = AnyRuntimeHost> {
|
|
25
|
+
/** Стабильный id стратегии для debug/плагинов. */
|
|
26
|
+
id: string;
|
|
27
|
+
/** Канонический runtime entity type, который создает стратегия. */
|
|
28
|
+
entityType: RuntimeEntityType;
|
|
29
|
+
/** Проверяет, умеет ли стратегия запустить переданную модель. */
|
|
30
|
+
supports: (model: unknown) => model is TModel;
|
|
31
|
+
/** Создает runtime-host. Регистрация в EndgeRuntime_Module здесь не выполняется. */
|
|
32
|
+
create: (ctx: RuntimeCreateContext<TModel>) => THost | null;
|
|
33
|
+
/** Выполняет strategy-specific cleanup перед общим host.destroy(). */
|
|
34
|
+
destroy?: (ctx: RuntimeDestroyContext<THost>) => Promise<void> | void;
|
|
35
|
+
}
|
|
36
|
+
export type AnyRuntimeStrategy = RuntimeStrategy<any, any>;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { RAction } from '../../domain/entities/RAction';
|
|
2
|
+
import { RComponentSFC } from '../../domain/entities/RComponentSFC';
|
|
3
|
+
import { RComposition } from '../../domain/entities/RComposition';
|
|
4
|
+
import { RFilter } from '../../domain/entities/RFilter';
|
|
5
|
+
import { RPage } from '../../domain/entities/RPage';
|
|
6
|
+
import { RProject } from '../../domain/entities/RProject';
|
|
7
|
+
import { RQuery } from '../../domain/entities/RQuery';
|
|
8
|
+
import { RStore } from '../../domain/entities/RStore';
|
|
9
|
+
import { RStream } from '../../domain/entities/RStream';
|
|
10
|
+
import { RuntimeHostRegistrySnapshot } from './runtime-registry.types';
|
|
11
|
+
/**
|
|
12
|
+
* Виды runtime
|
|
13
|
+
*/
|
|
14
|
+
export type RuntimeKind = 'query' | 'filter' | 'composition' | 'store' | 'stream' | 'action' | 'runtime';
|
|
15
|
+
export type RuntimeExecutableModel = RQuery | RAction | RProject | RPage | RComponentSFC | RFilter | RComposition | RStore | RStream;
|
|
16
|
+
export interface EndgeRuntimeSnapshot extends RuntimeHostRegistrySnapshot {
|
|
17
|
+
generatedAt: number;
|
|
18
|
+
scopes: import('./runtime-scope.types').RuntimeScopeSnapshot[];
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Событие для query: изменение фильтра
|
|
22
|
+
*/
|
|
23
|
+
export interface FilterChangeEvent {
|
|
24
|
+
filterId: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Runtime-события Query
|
|
28
|
+
*/
|
|
29
|
+
export interface QueryRuntimeEvents {
|
|
30
|
+
'filter:change': FilterChangeEvent;
|
|
31
|
+
}
|
|
32
|
+
export interface ActionRuntimeEvents {
|
|
33
|
+
'source:change': {
|
|
34
|
+
events?: unknown[];
|
|
35
|
+
meta?: Record<string, unknown>;
|
|
36
|
+
};
|
|
37
|
+
'step:start': {
|
|
38
|
+
stepId: string;
|
|
39
|
+
runtimeId?: string | null;
|
|
40
|
+
actionId?: string | null;
|
|
41
|
+
title?: string | null;
|
|
42
|
+
meta?: Record<string, unknown>;
|
|
43
|
+
};
|
|
44
|
+
'step:success': {
|
|
45
|
+
stepId: string;
|
|
46
|
+
runtimeId?: string | null;
|
|
47
|
+
actionId?: string | null;
|
|
48
|
+
title?: string | null;
|
|
49
|
+
output?: unknown;
|
|
50
|
+
meta?: Record<string, unknown>;
|
|
51
|
+
};
|
|
52
|
+
'step:error': {
|
|
53
|
+
stepId: string;
|
|
54
|
+
runtimeId?: string | null;
|
|
55
|
+
actionId?: string | null;
|
|
56
|
+
title?: string | null;
|
|
57
|
+
error: unknown;
|
|
58
|
+
meta?: Record<string, unknown>;
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Типы runtime-профилей
|
|
63
|
+
*/
|
|
64
|
+
export interface RuntimeProfile<K extends RuntimeKind, E extends Record<string, any>> {
|
|
65
|
+
kind: K;
|
|
66
|
+
events: E;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Реестр профилей
|
|
70
|
+
*/
|
|
71
|
+
export interface RuntimeProfiles {
|
|
72
|
+
query: RuntimeProfile<'query', QueryRuntimeEvents>;
|
|
73
|
+
action: RuntimeProfile<'action', ActionRuntimeEvents>;
|
|
74
|
+
}
|
|
75
|
+
export type RuntimeProfileByKind<K extends keyof RuntimeProfiles> = RuntimeProfiles[K];
|
|
76
|
+
export type RuntimeEventsByKind<K extends keyof RuntimeProfiles> = RuntimeProfileByKind<K>['events'];
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { RComponentSFC_SourceRange } from '../../domain/types/component/sfc/location.types';
|
|
2
|
+
/** Семантический вид узла в живом SFC render tree. */
|
|
3
|
+
export type SFCRenderInspectionNodeKind = 'component' | 'element' | 'text' | 'expression';
|
|
4
|
+
/** Вычисленное значение template binding вместе с его source provenance. */
|
|
5
|
+
export interface SFCRenderInspectionBinding {
|
|
6
|
+
kind: 'literal' | 'expression';
|
|
7
|
+
source?: string;
|
|
8
|
+
reads: string[];
|
|
9
|
+
value: unknown;
|
|
10
|
+
}
|
|
11
|
+
/** Данные, которыми renderer регистрирует один живой SFC instance. */
|
|
12
|
+
export interface SFCRenderInspectionNodeInput {
|
|
13
|
+
runtimeId: string;
|
|
14
|
+
componentIdentity: string;
|
|
15
|
+
componentStack: string[];
|
|
16
|
+
scope: string;
|
|
17
|
+
parentId: string | null;
|
|
18
|
+
nodeId: string;
|
|
19
|
+
kind: SFCRenderInspectionNodeKind;
|
|
20
|
+
tag: string;
|
|
21
|
+
componentTag?: string;
|
|
22
|
+
calledComponentIdentity?: string;
|
|
23
|
+
sourceRange?: RComponentSFC_SourceRange;
|
|
24
|
+
props: Record<string, unknown>;
|
|
25
|
+
componentProps: Record<string, unknown>;
|
|
26
|
+
locals: Record<string, unknown>;
|
|
27
|
+
bindings: Record<string, SFCRenderInspectionBinding>;
|
|
28
|
+
meta?: Record<string, unknown>;
|
|
29
|
+
}
|
|
30
|
+
/** Зарегистрированный живой SFC instance. */
|
|
31
|
+
export interface SFCRenderInspectionNode extends SFCRenderInspectionNodeInput {
|
|
32
|
+
id: string;
|
|
33
|
+
updatedAt: number;
|
|
34
|
+
}
|
|
35
|
+
/** Иерархическая проекция зарегистрированных SFC instances. */
|
|
36
|
+
export interface SFCRenderInspectionTreeNode extends SFCRenderInspectionNode {
|
|
37
|
+
children: SFCRenderInspectionTreeNode[];
|
|
38
|
+
}
|
|
39
|
+
/** Optional renderer-neutral sink: при null runtime не выполняет inspection work. */
|
|
40
|
+
export interface SFCRenderInspectionSessionLike {
|
|
41
|
+
registerNode: (input: SFCRenderInspectionNodeInput) => string;
|
|
42
|
+
unregisterNode: (id: string) => void;
|
|
43
|
+
getNode: (id: string) => SFCRenderInspectionNode | null;
|
|
44
|
+
getTree: (runtimeId?: string) => SFCRenderInspectionTreeNode[];
|
|
45
|
+
subscribe: (listener: () => void) => VoidFunction;
|
|
46
|
+
clearRuntime: (runtimeId: string) => void;
|
|
47
|
+
clear: () => void;
|
|
48
|
+
}
|