@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
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import { SourceDocumentReference, SourceEngineCompileResult, SourceEngineGenerateResult, SourceEngineStrategy, SourceKind, SourceLanguageCompletion, SourceLanguageContext, SourceLanguageInlineHint, SourceLanguageSemanticHighlight, SourceLanguageSignatureHelp, SourceLanguageStrategy, SourceLanguageValidationResult, SourceParseResult, SourcePatchResult, SourcePatchStrategy } from '../../../domain/types/source/source-engine.types';
|
|
2
|
-
import { EndgeModule } from '../../../domain/entities/endge/EndgeModule';
|
|
3
|
-
/** Модуль authoring-операций над source-документами Endge. */
|
|
4
|
-
export declare class EndgeSource extends EndgeModule {
|
|
5
|
-
private readonly _strategies;
|
|
6
|
-
private readonly _languageStrategies;
|
|
7
|
-
private readonly _patchStrategies;
|
|
8
|
-
/** Создаёт source-модуль и регистрирует встроенные strategies. */
|
|
9
|
-
constructor();
|
|
10
|
-
/** Регистрирует source strategy. Повторная регистрация с тем же id заменяет старую. */
|
|
11
|
-
registerStrategy(strategy: SourceEngineStrategy): void;
|
|
12
|
-
/** Регистрирует source language strategy. Повторная регистрация с тем же id заменяет старую. */
|
|
13
|
-
registerLanguageStrategy(strategy: SourceLanguageStrategy): void;
|
|
14
|
-
/** Регистрирует source patch strategy. Повторная регистрация с тем же id заменяет старую. */
|
|
15
|
-
registerPatchStrategy(strategy: SourcePatchStrategy): void;
|
|
16
|
-
/** Возвращает копию списка зарегистрированных source strategies. */
|
|
17
|
-
listStrategies(): SourceEngineStrategy[];
|
|
18
|
-
/** Возвращает копию списка зарегистрированных source language strategies. */
|
|
19
|
-
listLanguageStrategies(): SourceLanguageStrategy[];
|
|
20
|
-
/** Возвращает копию списка зарегистрированных source patch strategies. */
|
|
21
|
-
listPatchStrategies(): SourcePatchStrategy[];
|
|
22
|
-
/** Возвращает стратегию для указанного source-kind. */
|
|
23
|
-
resolveStrategy(sourceKind: SourceKind | string): SourceEngineStrategy | null;
|
|
24
|
-
/** Возвращает language strategy для указанного source-kind. */
|
|
25
|
-
resolveLanguageStrategy(sourceKind: SourceKind | string): SourceLanguageStrategy | null;
|
|
26
|
-
/** Возвращает patch strategy для указанного source-kind. */
|
|
27
|
-
resolvePatchStrategy(sourceKind: SourceKind | string): SourcePatchStrategy | null;
|
|
28
|
-
/** Генерирует source для указанного source-kind через зарегистрированную strategy. */
|
|
29
|
-
generate(sourceKind: SourceKind | string, model: unknown): SourceEngineGenerateResult;
|
|
30
|
-
/** Компилирует source указанного source-kind в normalized document и artifact payload. */
|
|
31
|
-
compile(sourceKind: SourceKind | string, source: string): SourceEngineCompileResult;
|
|
32
|
-
/** Парсит source указанного source-kind в normalized editor document. */
|
|
33
|
-
parse<TDocument = unknown>(sourceKind: SourceKind | string, source: string): SourceParseResult<TDocument>;
|
|
34
|
-
/** Патчит source указанного source-kind, сохраняя нетронутые участки авторского кода. */
|
|
35
|
-
patch<TPatch = unknown, TDocument = unknown>(sourceKind: SourceKind | string, source: string, patch: TPatch): SourcePatchResult<TDocument>;
|
|
36
|
-
/** Возвращает базовый source для новой сущности указанного source-kind. */
|
|
37
|
-
createDefault(sourceKind: SourceKind | string, variant?: string): string;
|
|
38
|
-
/** Нормализует source через language strategy без изменения semantic document. */
|
|
39
|
-
normalize(sourceKind: SourceKind | string, source: string): string;
|
|
40
|
-
/** Валидирует source указанного source-kind для editor-facing сценариев. */
|
|
41
|
-
validate(sourceKind: SourceKind | string, source: string, context?: Omit<SourceLanguageContext, 'source'>): SourceLanguageValidationResult;
|
|
42
|
-
/** Возвращает editor-facing completion items для указанного source-kind. */
|
|
43
|
-
completions(sourceKind: SourceKind | string, context: SourceLanguageContext): SourceLanguageCompletion[];
|
|
44
|
-
signatureHelp(sourceKind: SourceKind | string, context: SourceLanguageContext): SourceLanguageSignatureHelp | null;
|
|
45
|
-
/** Возвращает семантическую ссылку на внешний документ под курсором. */
|
|
46
|
-
referenceAt(sourceKind: SourceKind | string, context: SourceLanguageContext): SourceDocumentReference | null;
|
|
47
|
-
/** Возвращает renderer-neutral semantic highlights для source-документа. */
|
|
48
|
-
semanticHighlights(sourceKind: SourceKind | string, context: SourceLanguageContext): SourceLanguageSemanticHighlight[];
|
|
49
|
-
/** Возвращает renderer-neutral inline annotations для source-документа. */
|
|
50
|
-
inlineHints(sourceKind: SourceKind | string, context: SourceLanguageContext): SourceLanguageInlineHint[];
|
|
51
|
-
/** Регистрирует встроенные strategies ядра. */
|
|
52
|
-
private _registerDefaultStrategies;
|
|
53
|
-
/** Возвращает strategy или бросает явную ошибку для некорректного source-kind. */
|
|
54
|
-
private _resolveRequiredStrategy;
|
|
55
|
-
/** Возвращает language strategy или бросает явную ошибку для некорректного source-kind. */
|
|
56
|
-
private _resolveRequiredLanguageStrategy;
|
|
57
|
-
/** Возвращает patch strategy или бросает явную ошибку для некорректного source-kind. */
|
|
58
|
-
private _resolveRequiredPatchStrategy;
|
|
59
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { EntityOrigin } from '../../../../domain/types/document/entity-management.type';
|
|
2
|
-
import { ActionDefinitionInput, ActionExecuteOptions, ImplementationBindingScope, ResolvedActionDescriptor, RuntimeAction, RuntimeActionContext, RuntimeActionId, RuntimeActionRegistrySnapshot } from '../../../../domain/types/runtime/action.types';
|
|
3
|
-
import { ImplementationProvider } from '../../../../domain/types/runtime/implementation.types';
|
|
4
|
-
import { EndgeImplementations } from '../implementation/endge-implementations';
|
|
5
|
-
import { Subscribable } from '../../../../domain/entities/endge/Subscribable';
|
|
6
|
-
import { RAction } from '../../../../domain/entities/reflect/RAction';
|
|
7
|
-
export interface CodeActionDefinition extends Omit<ActionDefinitionInput, 'owner'> {
|
|
8
|
-
owner: string;
|
|
9
|
-
catalogPath?: readonly string[];
|
|
10
|
-
providerKey?: string;
|
|
11
|
-
execute?: ImplementationProvider['execute'];
|
|
12
|
-
canExecute?: ImplementationProvider['canExecute'];
|
|
13
|
-
}
|
|
14
|
-
export interface ActionOverrideInput {
|
|
15
|
-
identity: string;
|
|
16
|
-
providerKey: string;
|
|
17
|
-
scope?: Exclude<ImplementationBindingScope, 'default' | 'invocation'>;
|
|
18
|
-
scopeIdentity?: string;
|
|
19
|
-
priority?: number;
|
|
20
|
-
}
|
|
21
|
-
export interface ActionDefinitionDescriptor extends ActionDefinitionInput {
|
|
22
|
-
origin: EntityOrigin;
|
|
23
|
-
catalogPath?: readonly string[];
|
|
24
|
-
}
|
|
25
|
-
export interface ActionProviderDescriptor extends Omit<ImplementationProvider, 'contract'> {
|
|
26
|
-
identity: string;
|
|
27
|
-
}
|
|
28
|
-
/** Координирует semantic definitions и generic implementations для Actions. */
|
|
29
|
-
export declare class EndgeActions extends Subscribable {
|
|
30
|
-
private readonly _implementations;
|
|
31
|
-
private readonly _codeActions;
|
|
32
|
-
private readonly _catalogPaths;
|
|
33
|
-
private readonly _codeActionDisposers;
|
|
34
|
-
private readonly _providerDisposers;
|
|
35
|
-
private _hasSynchronizedResolvedIndex;
|
|
36
|
-
private readonly _sourceExecutor;
|
|
37
|
-
constructor(_implementations: EndgeImplementations);
|
|
38
|
-
/** Rebuilds code-owned defaults. Local application code registers again after reset. */
|
|
39
|
-
reset(): void;
|
|
40
|
-
/** Installs a serializable code-owned semantic definition without executable code. */
|
|
41
|
-
define(definition: ActionDefinitionDescriptor): () => void;
|
|
42
|
-
/** Installs executable code separately from its semantic definition. */
|
|
43
|
-
provide(provider: ActionProviderDescriptor): () => void;
|
|
44
|
-
/** Binds local code over an existing Action without mutating its definition. */
|
|
45
|
-
override(override: ActionOverrideInput): () => void;
|
|
46
|
-
/** Executes a resolved Action through the generic implementation pipeline. */
|
|
47
|
-
execute<TResult = unknown>(identity: RuntimeActionId, optionsOrContext?: ActionExecuteOptions | RuntimeActionContext, legacyPayload?: unknown): Promise<TResult | undefined>;
|
|
48
|
-
/** Returns effective definitions for palettes and the Domain Widget. */
|
|
49
|
-
listResolved(): ResolvedActionDescriptor[];
|
|
50
|
-
/** Compatibility projection for existing context-menu code. */
|
|
51
|
-
list(input?: {
|
|
52
|
-
surface?: string;
|
|
53
|
-
}): RuntimeAction[];
|
|
54
|
-
get(id: RuntimeActionId): RuntimeAction | null;
|
|
55
|
-
has(id: RuntimeActionId): boolean;
|
|
56
|
-
/** Compiler inspection API for code-owned identity collision diagnostics. */
|
|
57
|
-
getCodeDefinition(identity: string): RAction | null;
|
|
58
|
-
/** Returns the semantic definition regardless of storage origin. */
|
|
59
|
-
getDefinition(identity: string): RAction | null;
|
|
60
|
-
canExecute(id: RuntimeActionId, context: RuntimeActionContext, payload?: unknown): boolean;
|
|
61
|
-
serialize(): RuntimeActionRegistrySnapshot;
|
|
62
|
-
private _defineCodeAction;
|
|
63
|
-
private _findAction;
|
|
64
|
-
private _defaultProviderKey;
|
|
65
|
-
private _contractOf;
|
|
66
|
-
private _describe;
|
|
67
|
-
private _registerCoreProviders;
|
|
68
|
-
private _registerTableActions;
|
|
69
|
-
/** Bridges typed Action invocation to the legacy context-menu adapter during migration. */
|
|
70
|
-
private _tableInvocationContext;
|
|
71
|
-
private _registerCoreActions;
|
|
72
|
-
private _vocabReferences;
|
|
73
|
-
private _syncResolvedIndex;
|
|
74
|
-
private _legacyAction;
|
|
75
|
-
private _isLegacyContext;
|
|
76
|
-
private _legacyTarget;
|
|
77
|
-
}
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
import { RuntimeAppScopeOptions, RuntimeAppScope } from '../../../../domain/entities/runtime/RuntimeAppScope';
|
|
2
|
-
import { EndgeDataMode } from '../../../../domain/types/document/workspace.types';
|
|
3
|
-
import { RuntimeEntityType } from '../../../../domain/types/runtime/runtime-entity-map.types';
|
|
4
|
-
import { RuntimeExecuteOptions } from '../../../../domain/types/runtime/runtime-execute.type';
|
|
5
|
-
import { DestroyedRuntimeHostSnapshot, RuntimeHost, RuntimeInspectionLease } from '../../../../domain/types/runtime/runtime-host.types';
|
|
6
|
-
import { AnyRuntimeHost, AnyRuntimeStrategy } from '../../../../domain/types/runtime/runtime-strategy.types';
|
|
7
|
-
import { EndgeRuntimeSnapshot, RuntimeExecutableModel } from '../../../../domain/types/runtime/runtime.types';
|
|
8
|
-
import { EndgeModule } from '../../../../domain/entities/endge/EndgeModule';
|
|
9
|
-
import { RuntimeScope } from '../../../../domain/entities/runtime/RuntimeScope';
|
|
10
|
-
import { RuntimeScopeRegistry } from '../../../../domain/entities/runtime/RuntimeScopeRegistry';
|
|
11
|
-
import { EndgeActions } from './endge-actions';
|
|
12
|
-
import { EndgeComposition } from '../execution/endge-composition';
|
|
13
|
-
import { EndgeComputation } from '../execution/endge-computation';
|
|
14
|
-
import { EndgeConverters } from '../execution/endge-converters';
|
|
15
|
-
import { EndgeDataView } from '../execution/endge-data-view';
|
|
16
|
-
import { EndgeProject } from '../execution/endge-project';
|
|
17
|
-
import { EndgeQuery } from '../execution/endge-query';
|
|
18
|
-
import { EndgeImplementations } from '../implementation/endge-implementations';
|
|
19
|
-
import { EndgeOperations } from '../operation/endge-operations';
|
|
20
|
-
/** Модуль создания, регистрации и уничтожения runtime hosts и app scopes. */
|
|
21
|
-
export declare class EndgeRuntime extends EndgeModule {
|
|
22
|
-
readonly implementations: EndgeImplementations;
|
|
23
|
-
readonly computation: EndgeComputation;
|
|
24
|
-
readonly converters: EndgeConverters;
|
|
25
|
-
readonly query: EndgeQuery;
|
|
26
|
-
readonly dataView: EndgeDataView;
|
|
27
|
-
readonly composition: EndgeComposition;
|
|
28
|
-
readonly project: EndgeProject;
|
|
29
|
-
readonly actions: EndgeActions;
|
|
30
|
-
readonly operations: EndgeOperations;
|
|
31
|
-
readonly scopes: RuntimeScopeRegistry;
|
|
32
|
-
private _hosts;
|
|
33
|
-
private _strategies;
|
|
34
|
-
private _inited;
|
|
35
|
-
private _appNode;
|
|
36
|
-
private _scopeNodes;
|
|
37
|
-
private _appScopes;
|
|
38
|
-
private _defaultAppScope;
|
|
39
|
-
private _unsubscribeWorkspace;
|
|
40
|
-
private _unsubscribeContext;
|
|
41
|
-
private _destroyedSnapshotLeases;
|
|
42
|
-
private _destroyingRuntimeIds;
|
|
43
|
-
/** Retain only bounded lightweight descriptors for an explicit inspector. */
|
|
44
|
-
acquireDestroyedHostSnapshots(limit: number): RuntimeInspectionLease;
|
|
45
|
-
/** Создаёт default app scope и регистрирует runtime strategies. */
|
|
46
|
-
constructor();
|
|
47
|
-
/**
|
|
48
|
-
* Настраивает Raph runtime до загрузки и сборки домена.
|
|
49
|
-
*/
|
|
50
|
-
setup(): void;
|
|
51
|
-
/**
|
|
52
|
-
* Регистрирует runtime-фазы в Raph один раз.
|
|
53
|
-
*/
|
|
54
|
-
start(): void;
|
|
55
|
-
/**
|
|
56
|
-
* Создаёт runtime-host для переданной доменной модели.
|
|
57
|
-
*/
|
|
58
|
-
execute(model: RuntimeExecutableModel, options?: RuntimeExecuteOptions): AnyRuntimeHost | null;
|
|
59
|
-
/** Разрешает data mode по ближайшему Composition override с fallback на общий Endge context. */
|
|
60
|
-
resolveDataMode(host: RuntimeHost<any, any> | null | undefined): EndgeDataMode;
|
|
61
|
-
/**
|
|
62
|
-
* Регистрирует стратегию запуска runtime-сущности.
|
|
63
|
-
*/
|
|
64
|
-
registerStrategy(strategy: AnyRuntimeStrategy): void;
|
|
65
|
-
/** Создаёт или возвращает именованный root runtime scope приложения. */
|
|
66
|
-
createAppScope(options: RuntimeAppScopeOptions): RuntimeAppScope;
|
|
67
|
-
/** Возвращает lifecycle scope, которому принадлежит RuntimeHost. */
|
|
68
|
-
getRuntimeScopeByHost(runtimeId: string): RuntimeScope | null;
|
|
69
|
-
/** Возвращает корневой scope обычного запуска приложения. */
|
|
70
|
-
getDefaultAppScope(): RuntimeAppScope;
|
|
71
|
-
/** Возвращает зарегистрированный AppScope. */
|
|
72
|
-
getAppScope(id: string): RuntimeAppScope | null;
|
|
73
|
-
/**
|
|
74
|
-
* Возвращает runtime-host по его runtime-id.
|
|
75
|
-
*/
|
|
76
|
-
getRuntimeById<T = AnyRuntimeHost>(runtimeId: string): T | null;
|
|
77
|
-
/**
|
|
78
|
-
* Возвращает список всех активных runtime-host.
|
|
79
|
-
*/
|
|
80
|
-
getRuntimeHosts(): AnyRuntimeHost[];
|
|
81
|
-
/**
|
|
82
|
-
* Инвалидирует все renderable roots активных application scopes.
|
|
83
|
-
* Операция намеренно coarse-grained: context preferences меняются редко,
|
|
84
|
-
* поэтому отдельный dependency graph на этом этапе не нужен.
|
|
85
|
-
*/
|
|
86
|
-
invalidateApplicationScopes(): void;
|
|
87
|
-
/** Регистрирует host, созданный владельцем составной runtime-сущности. */
|
|
88
|
-
registerRuntimeHost(host: AnyRuntimeHost): boolean;
|
|
89
|
-
/**
|
|
90
|
-
* Возвращает snapshots удалённых runtime hosts для inspection tools.
|
|
91
|
-
*/
|
|
92
|
-
getDeletedRuntimeHostSnapshots(): DestroyedRuntimeHostSnapshot[];
|
|
93
|
-
/**
|
|
94
|
-
* Полностью удаляет один snapshot уничтоженного runtime host.
|
|
95
|
-
*/
|
|
96
|
-
removeDeletedRuntimeHostSnapshot(runtimeId: string): void;
|
|
97
|
-
/**
|
|
98
|
-
* Полностью очищает snapshots уничтоженных runtime hosts.
|
|
99
|
-
*/
|
|
100
|
-
clearDeletedRuntimeHostSnapshots(): void;
|
|
101
|
-
/**
|
|
102
|
-
* Возвращает runtime-host по доменной сущности.
|
|
103
|
-
*/
|
|
104
|
-
getRuntimeHostsByEntity(entityType: RuntimeEntityType, entityIdentity: string, appScopeId?: string): AnyRuntimeHost[];
|
|
105
|
-
/**
|
|
106
|
-
* Возвращает общий snapshot runtime-состояния.
|
|
107
|
-
*/
|
|
108
|
-
snapshot(): EndgeRuntimeSnapshot;
|
|
109
|
-
/**
|
|
110
|
-
* Корректно разрушает runtime-host по runtime-id.
|
|
111
|
-
*/
|
|
112
|
-
destroyRuntime(runtimeId: string): void;
|
|
113
|
-
/**
|
|
114
|
-
* Корректно разрушает runtime-host и всех его дочерних host.
|
|
115
|
-
*/
|
|
116
|
-
destroyRuntimeTree(runtimeId: string): void;
|
|
117
|
-
/** Корректно разрушает runtime tree и ждёт завершения всего teardown. */
|
|
118
|
-
destroyRuntimeTreeAsync(runtimeId: string): Promise<void>;
|
|
119
|
-
/**
|
|
120
|
-
* Корректно разрушает все зарегистрированные runtime-host.
|
|
121
|
-
*/
|
|
122
|
-
reset(): Promise<void>;
|
|
123
|
-
/** Projects effective workspace variables into the runtime Raph namespace. */
|
|
124
|
-
private syncWorkspaceVariablesToRaph;
|
|
125
|
-
/** Restores persisted runtime filter values independently of workspace variables. */
|
|
126
|
-
private hydrateRuntimeFilters;
|
|
127
|
-
/**
|
|
128
|
-
* Внутренний destroy для host с контролем уведомления подписчиков.
|
|
129
|
-
*/
|
|
130
|
-
private destroyRuntimeInternal;
|
|
131
|
-
private syncDestroyedSnapshotLimit;
|
|
132
|
-
private createDestroyedSnapshot;
|
|
133
|
-
/** Регистрирует host, подключает infrastructure и только затем активирует его. */
|
|
134
|
-
private registerAndActivateHost;
|
|
135
|
-
/** Creates the lifecycle root lazily again after a full Endge.reset(). */
|
|
136
|
-
private ensureLifecycleAppScope;
|
|
137
|
-
/**
|
|
138
|
-
* Регистрирует встроенные стратегии в порядке от специальных к общим.
|
|
139
|
-
*/
|
|
140
|
-
private registerDefaultStrategies;
|
|
141
|
-
/** Разрешает scope запуска: explicit -> parent -> default app. */
|
|
142
|
-
private resolveAppScope;
|
|
143
|
-
/** Создаёт Raph graph node для AppScope независимо от data namespace. */
|
|
144
|
-
private ensureScopeNode;
|
|
145
|
-
/** Разрешает и проверяет явно переданный parent host. */
|
|
146
|
-
private resolveParentHost;
|
|
147
|
-
/** Разрешает artifact reader и запрещает невалидную явную зависимость. */
|
|
148
|
-
private _resolveArtifactReader;
|
|
149
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { EndgeModule } from '../../../../domain/entities/endge/EndgeModule';
|
|
2
|
-
/**
|
|
3
|
-
* Модуль применения внешних update-сообщений к runtime state.
|
|
4
|
-
* Устаревшие update-профили из документа настроек удалены; новый SSE pipeline
|
|
5
|
-
* должен описываться отдельной доменной моделью.
|
|
6
|
-
*/
|
|
7
|
-
export declare class EndgeUpdates extends EndgeModule {
|
|
8
|
-
/** Обрабатывает legacy update profile; текущая реализация оставлена как no-op boundary. */
|
|
9
|
-
applyUpdateForProfile(profileIdentity: string, message: unknown, opts?: {
|
|
10
|
-
vars?: Record<string, string>;
|
|
11
|
-
}): number;
|
|
12
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ActionProgramPayload } from '../../../../../domain/types/program/action-program.types';
|
|
2
|
-
import { RuntimeHost } from '../../../../../domain/types/runtime/runtime-host.types';
|
|
3
|
-
/** Executes compiler-produced Action IR without interpreting Source. */
|
|
4
|
-
export declare class ActionProgramExecutor {
|
|
5
|
-
run(payload: ActionProgramPayload, input: unknown, parent: RuntimeHost<any, any> | null): Promise<unknown>;
|
|
6
|
-
private runBlock;
|
|
7
|
-
private runStep;
|
|
8
|
-
private runOperation;
|
|
9
|
-
private evaluate;
|
|
10
|
-
private findComposition;
|
|
11
|
-
private requireObject;
|
|
12
|
-
private optionalObject;
|
|
13
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { ComputationProgramPayload } from '../../../../../domain/types/computation/computation-program.types';
|
|
2
|
-
import { ComputationDependencyRunner, ComputationExecutionScope, ComputationSandboxAdapter } from '../../../../../domain/types/computation/computation-runtime.types';
|
|
3
|
-
export declare class ComputationRuntimeError extends Error {
|
|
4
|
-
readonly computationIdentity: string;
|
|
5
|
-
readonly kind: string;
|
|
6
|
-
readonly outputName?: string | undefined;
|
|
7
|
-
readonly name = "ComputationRuntimeError";
|
|
8
|
-
constructor(message: string, computationIdentity: string, kind: string, outputName?: string | undefined, options?: ErrorOptions);
|
|
9
|
-
toJSON(): {
|
|
10
|
-
readonly name: "ComputationRuntimeError";
|
|
11
|
-
readonly message: string;
|
|
12
|
-
readonly computationIdentity: string;
|
|
13
|
-
readonly outputName: string | undefined;
|
|
14
|
-
readonly kind: string;
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
/** Executes compiler-ordered computation graphs without evaluating authored JS in core. */
|
|
18
|
-
export declare class ComputationGraphExecutor {
|
|
19
|
-
private readonly sandbox;
|
|
20
|
-
private readonly dependencies;
|
|
21
|
-
constructor(sandbox: () => ComputationSandboxAdapter | null, dependencies?: ComputationDependencyRunner | null);
|
|
22
|
-
runSync(payload: ComputationProgramPayload, input: unknown, identity: string, scope?: ComputationExecutionScope): unknown;
|
|
23
|
-
run(payload: ComputationProgramPayload, input: unknown, identity: string, scope?: ComputationExecutionScope): Promise<unknown>;
|
|
24
|
-
private executeNode;
|
|
25
|
-
private evaluate;
|
|
26
|
-
private evaluateResult;
|
|
27
|
-
private evaluateNode;
|
|
28
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ComputationResource as ComputationResourceContract, ComputationRuntimeErrorShape } from '../../../../../domain/types/computation/computation-runtime.types';
|
|
2
|
-
type AsyncRunner<T> = (input: unknown) => Promise<T>;
|
|
3
|
-
type SyncRunner<T> = (input: unknown) => T;
|
|
4
|
-
/** Renderer-neutral latest-wins state for one computation consumer. */
|
|
5
|
-
export declare class ComputationResourceState<T = unknown> implements ComputationResourceContract<T> {
|
|
6
|
-
private readonly asyncRunner;
|
|
7
|
-
private readonly syncRunner;
|
|
8
|
-
private _status;
|
|
9
|
-
private _value;
|
|
10
|
-
private _error;
|
|
11
|
-
private _listeners;
|
|
12
|
-
private _revision;
|
|
13
|
-
private _disposed;
|
|
14
|
-
private _input;
|
|
15
|
-
constructor(input: unknown, asyncRunner: AsyncRunner<T>, syncRunner?: SyncRunner<T> | null);
|
|
16
|
-
get status(): import('../../../../../domain/types/computation/computation-runtime.types').ComputationResourceStatus;
|
|
17
|
-
get loading(): boolean;
|
|
18
|
-
get value(): T | undefined;
|
|
19
|
-
get error(): ComputationRuntimeErrorShape | null;
|
|
20
|
-
updateInput(input: unknown): void;
|
|
21
|
-
refresh(): Promise<void>;
|
|
22
|
-
subscribe(listener: VoidFunction): VoidFunction;
|
|
23
|
-
dispose(): void;
|
|
24
|
-
private runSync;
|
|
25
|
-
private notify;
|
|
26
|
-
}
|
|
27
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ComputationResourceState } from './ComputationResource';
|
|
2
|
-
import { ComputationResource as ComputationResourceContract } from '../../../../../domain/types/computation/computation-runtime.types';
|
|
3
|
-
/** Host-owned registry that isolates resources by call site and row consumer key. */
|
|
4
|
-
export declare class ComputationResourceRegistry {
|
|
5
|
-
private readonly resources;
|
|
6
|
-
private readonly disposers;
|
|
7
|
-
/** Resource inputs currently pulled by the active renderer pass. */
|
|
8
|
-
private readonly _updatingInputs;
|
|
9
|
-
getOrCreate(key: string, input: unknown, create: () => ComputationResourceState, onChange?: VoidFunction): ComputationResourceContract;
|
|
10
|
-
dispose(): void;
|
|
11
|
-
}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { ComputationProgramPayload } from '../../../../../domain/types/computation/computation-program.types';
|
|
2
|
-
import { ComputationOverride, ComputationSandboxAdapter, ComputationSandboxRequest } from '../../../../../domain/types/computation/computation-runtime.types';
|
|
3
|
-
import { EntityOrigin } from '../../../../../domain/types/document/entity-management.type';
|
|
4
|
-
import { ProgramArtifact } from '../../../../../domain/types/program/program.types';
|
|
5
|
-
import { ImplementationBindingScope } from '../../../../../domain/types/runtime/action.types';
|
|
6
|
-
import { EndgeImplementations } from '../../implementation/endge-implementations';
|
|
7
|
-
import { ComputationResourceState } from './ComputationResource';
|
|
8
|
-
/** Executes compiled computation graphs and creates renderer-neutral resources. */
|
|
9
|
-
export declare class EndgeComputation {
|
|
10
|
-
private readonly implementations;
|
|
11
|
-
private readonly definitions;
|
|
12
|
-
private readonly providers;
|
|
13
|
-
private readonly providerDisposers;
|
|
14
|
-
private readonly definitionDisposers;
|
|
15
|
-
private readonly bindingDisposers;
|
|
16
|
-
private sandbox;
|
|
17
|
-
private readonly executor;
|
|
18
|
-
private readonly api;
|
|
19
|
-
constructor(implementations: EndgeImplementations);
|
|
20
|
-
hasDefinition(identity: string): boolean;
|
|
21
|
-
/** Installs a serializable code-owned Computation definition. */
|
|
22
|
-
define(definition: {
|
|
23
|
-
identity: string;
|
|
24
|
-
origin: EntityOrigin;
|
|
25
|
-
defaultProviderKey?: string;
|
|
26
|
-
execution?: 'sync' | 'async';
|
|
27
|
-
}): VoidFunction;
|
|
28
|
-
/** Installs executable code separately from a Computation definition. */
|
|
29
|
-
provide(provider: {
|
|
30
|
-
identity: string;
|
|
31
|
-
key: string;
|
|
32
|
-
origin?: EntityOrigin;
|
|
33
|
-
implementation: ComputationOverride;
|
|
34
|
-
}): VoidFunction;
|
|
35
|
-
/** Selects one previously provided implementation without redefining semantics. */
|
|
36
|
-
override(binding: {
|
|
37
|
-
identity: string;
|
|
38
|
-
providerKey: string;
|
|
39
|
-
scope?: Exclude<ImplementationBindingScope, 'default' | 'invocation'>;
|
|
40
|
-
scopeIdentity?: string;
|
|
41
|
-
priority?: number;
|
|
42
|
-
}): VoidFunction;
|
|
43
|
-
setSandboxAdapter(adapter: ComputationSandboxAdapter | null): void;
|
|
44
|
-
/** Executes an already compiler-validated function in the shared isolated sandbox. */
|
|
45
|
-
executeSandbox(request: ComputationSandboxRequest): Promise<unknown>;
|
|
46
|
-
run(idOrIdentity: string | number, input: unknown): Promise<unknown>;
|
|
47
|
-
runArtifact(artifact: ProgramArtifact<ComputationProgramPayload>, input: unknown): Promise<unknown>;
|
|
48
|
-
/**
|
|
49
|
-
* Компилирует и выполняет transient source без публикации в Endge.program.
|
|
50
|
-
*
|
|
51
|
-
* Используется редакторами и preview-инструментами для несохранённого draft.
|
|
52
|
-
*/
|
|
53
|
-
runSource(source: string, input: unknown, identity?: string): Promise<unknown>;
|
|
54
|
-
runSync(idOrIdentity: string | number, input: unknown): unknown;
|
|
55
|
-
runArtifactSync(artifact: ProgramArtifact<ComputationProgramPayload>, input: unknown): unknown;
|
|
56
|
-
private _run;
|
|
57
|
-
private _runSync;
|
|
58
|
-
createResource(identity: string, input: unknown, _consumerKey: string): ComputationResourceState;
|
|
59
|
-
private requireArtifact;
|
|
60
|
-
private assertArtifact;
|
|
61
|
-
/** Создает child scope и блокирует runtime recursion или чрезмерно глубокий call graph. */
|
|
62
|
-
private _enterExecution;
|
|
63
|
-
private runOverrideSync;
|
|
64
|
-
private runOverride;
|
|
65
|
-
private resolveProvider;
|
|
66
|
-
reset(): void;
|
|
67
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EndgeDataMode } from '../../../../domain/types/document/workspace.types';
|
|
2
|
-
import { CompositionMountOptions, CompositionPreviewProps, CompositionSession } from '../../../../domain/types/source/composition-source.types';
|
|
3
|
-
/** Публичный API монтирования Composition runtime sessions. */
|
|
4
|
-
export declare class EndgeComposition {
|
|
5
|
-
/** Монтирует Composition runtime и возвращает управляемую session. */
|
|
6
|
-
mount(identity: string, options?: CompositionMountOptions): Promise<CompositionSession>;
|
|
7
|
-
}
|
|
8
|
-
/** Materializes preview-only literals and RMock references into regular Composition props. */
|
|
9
|
-
export declare function materializeCompositionPreviewProps(previewProps: CompositionPreviewProps | null | undefined, dataMode?: EndgeDataMode): Record<string, unknown>;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { EntityOrigin } from '../../../../domain/types/document/entity-management.type';
|
|
2
|
-
import { ImplementationBindingScope } from '../../../../domain/types/runtime/action.types';
|
|
3
|
-
import { EndgeImplementations } from '../implementation/endge-implementations';
|
|
4
|
-
type ConverterProvider = (value: unknown, options?: Record<string, unknown>) => unknown;
|
|
5
|
-
/** Синхронно координирует definitions, providers и bindings конвертеров. */
|
|
6
|
-
export declare class EndgeConverters {
|
|
7
|
-
private readonly implementations;
|
|
8
|
-
private readonly definitions;
|
|
9
|
-
private readonly providerDisposers;
|
|
10
|
-
private readonly definitionDisposers;
|
|
11
|
-
private started;
|
|
12
|
-
constructor(implementations: EndgeImplementations);
|
|
13
|
-
has(identity: string): boolean;
|
|
14
|
-
define(definition: {
|
|
15
|
-
identity: string;
|
|
16
|
-
origin: EntityOrigin;
|
|
17
|
-
defaultProviderKey?: string;
|
|
18
|
-
}): VoidFunction;
|
|
19
|
-
provide(provider: {
|
|
20
|
-
identity: string;
|
|
21
|
-
key: string;
|
|
22
|
-
origin: EntityOrigin;
|
|
23
|
-
convert: ConverterProvider;
|
|
24
|
-
}): VoidFunction;
|
|
25
|
-
override(binding: {
|
|
26
|
-
identity: string;
|
|
27
|
-
providerKey: string;
|
|
28
|
-
scope?: Exclude<ImplementationBindingScope, 'default' | 'invocation'>;
|
|
29
|
-
scopeIdentity?: string;
|
|
30
|
-
priority?: number;
|
|
31
|
-
}): VoidFunction;
|
|
32
|
-
execute(identity: string, value: unknown, options?: Record<string, unknown>): unknown;
|
|
33
|
-
start(): void;
|
|
34
|
-
reset(): void;
|
|
35
|
-
}
|
|
36
|
-
export {};
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { DataViewProgramPayload, ProgramArtifact } from '../../../../domain/types/program/program.types';
|
|
2
|
-
import { DataViewRef, DataViewRunContext, DataViewRunTools } from '../../../../domain/types/source/data-view-source.types';
|
|
3
|
-
import { RDataView } from '../../../../domain/entities/reflect/RDataView';
|
|
4
|
-
/** Модуль выполнения скомпилированных RDataView artifacts. */
|
|
5
|
-
export declare class EndgeDataView {
|
|
6
|
-
/** Выполняет DataView по id/identity/model над переданным input object. */
|
|
7
|
-
run(dataViewOrId: RDataView | string | number, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext): unknown;
|
|
8
|
-
/** Выполняет уже скомпилированный DataView artifact без поиска в домене. */
|
|
9
|
-
runArtifact(artifact: ProgramArtifact<DataViewProgramPayload>, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext): unknown;
|
|
10
|
-
/** Выполняет уже скомпилированный DataView payload. */
|
|
11
|
-
runPayload(artifact: DataViewProgramPayload, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext & {
|
|
12
|
-
children?: ProgramArtifact[];
|
|
13
|
-
}): unknown;
|
|
14
|
-
/** Вычисляет object projection один раз над целым DataView input. */
|
|
15
|
-
private _runProjection;
|
|
16
|
-
/** Вычисляет root ValueExpression без object projection wrapper. */
|
|
17
|
-
private _runExpression;
|
|
18
|
-
/** Выполняет DataView-ссылку из query/DataView artifact. */
|
|
19
|
-
runRef(ref: DataViewRef, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext & {
|
|
20
|
-
children?: ProgramArtifact[];
|
|
21
|
-
}): unknown;
|
|
22
|
-
/** Выполняет DataView source без записи artifact в `Endge.program`. */
|
|
23
|
-
runSource(source: string, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext): unknown;
|
|
24
|
-
/** Возвращает DataView model из домена или входного экземпляра. */
|
|
25
|
-
private _resolveDataView;
|
|
26
|
-
/** Возвращает compiled artifact, компилируя DataView локально при необходимости. */
|
|
27
|
-
private _resolveArtifact;
|
|
28
|
-
/** Выполняет manual transform в controlled wrapper текущего frontend runtime. */
|
|
29
|
-
private _runManual;
|
|
30
|
-
/** Интерпретирует декларативные pipeline steps без eval. */
|
|
31
|
-
private _runPipeline;
|
|
32
|
-
/** Заполняет отсутствующие props декларативными defaults DataView artifact. */
|
|
33
|
-
private _resolveProps;
|
|
34
|
-
/** Последовательно вычисляет whole-value steps; каждый select получает результат предыдущего. */
|
|
35
|
-
private _runSelectPipeline;
|
|
36
|
-
/** Собирает базовый output для map step из spread-источников. */
|
|
37
|
-
private _createMapOutput;
|
|
38
|
-
/** Вычисляет join-result для текущей строки pipeline. */
|
|
39
|
-
private _resolveJoin;
|
|
40
|
-
/** Вычисляет одно поле map-expression. */
|
|
41
|
-
private _evaluateExpression;
|
|
42
|
-
/** Применяет chain operation к path-expression. */
|
|
43
|
-
private _applyPathOperation;
|
|
44
|
-
/** Создает набор runtime tools с возможностью точечной подмены в preview. */
|
|
45
|
-
private _createTools;
|
|
46
|
-
/** Минимальные built-in converters для preview v1. */
|
|
47
|
-
private _convert;
|
|
48
|
-
/** Applies one registered Converter to the current value as a whole. */
|
|
49
|
-
convert(identity: string, value: unknown, options?: Record<string, unknown>): unknown;
|
|
50
|
-
/** Читает dot-path из object/array без выбрасывания ошибок. */
|
|
51
|
-
private _path;
|
|
52
|
-
/** Ищет локальный DataView artifact среди child artifacts, включая вложенные children. */
|
|
53
|
-
private _findLocalDataViewArtifact;
|
|
54
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ProjectRuntimeMountOptions, ProjectRuntimeSession } from '../../../../domain/types/runtime/runtime-project-session.types';
|
|
2
|
-
/** Mounts one project into an isolated runtime session. */
|
|
3
|
-
export declare class EndgeProject {
|
|
4
|
-
mount(identity: string, options?: ProjectRuntimeMountOptions): Promise<ProjectRuntimeSession>;
|
|
5
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { RQuery } from '../../../../domain/entities/reflect/RQuery';
|
|
2
|
-
import { QueryProgramPayload } from '../../../../domain/types/program/program.types';
|
|
3
|
-
import { RuntimeParentRef } from '../../../../domain/types/runtime/runtime-execute.type';
|
|
4
|
-
import { QueryExecutor_Adapter } from '../../../adapters/query/QueryExecutor_Adapter';
|
|
5
|
-
/**
|
|
6
|
-
* Модуль выполнения доменных query: custom executor, mock data и REST.
|
|
7
|
-
*/
|
|
8
|
-
export declare class EndgeQuery {
|
|
9
|
-
private readonly _executor;
|
|
10
|
-
/** Создаёт query module с явным transport adapter. */
|
|
11
|
-
constructor(executor?: QueryExecutor_Adapter);
|
|
12
|
-
/**
|
|
13
|
-
* Выполняет query через compiled artifact и сохраняет результат в Raph.
|
|
14
|
-
*/
|
|
15
|
-
run(query: RQuery, params?: Record<string, unknown>, parent?: RuntimeParentRef | null): Promise<any>;
|
|
16
|
-
/** Выполняет artifact для QueryRuntimeHost без преждевременной записи stores. */
|
|
17
|
-
executeArtifact(input: {
|
|
18
|
-
payload: QueryProgramPayload;
|
|
19
|
-
props: Record<string, unknown>;
|
|
20
|
-
signal?: AbortSignal;
|
|
21
|
-
}): Promise<any>;
|
|
22
|
-
/** Извлекает response-backed output для атомарного commit в QueryRuntimeHost. */
|
|
23
|
-
readResponseOutput(output: QueryProgramPayload['outputs'][number], response: unknown): unknown;
|
|
24
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ProgramArtifact } from '../../../../domain/types/program/program.types';
|
|
2
|
-
import { DataViewRef } from '../../../../domain/types/source/data-view-source.types';
|
|
3
|
-
import { ResponseOutputTransform } from '../../../../domain/types/source/response-output.types';
|
|
4
|
-
/** Applies ordered Query/Vocab transforms without implicit array mapping. */
|
|
5
|
-
export declare function runResponseOutputTransforms(transforms: readonly ResponseOutputTransform[] | undefined, legacyDataViews: readonly DataViewRef[], value: unknown, children?: readonly ProgramArtifact[]): unknown;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ImplementationBinding, ImplementationInvocation, ImplementationProvider, ImplementationResolutionRequest, ImplementationSnapshot, ResolvedImplementation } from '../../../../domain/types/runtime/implementation.types';
|
|
2
|
-
/** Generic runtime module for code providers, bindings and effective resolution. */
|
|
3
|
-
export declare class EndgeImplementations {
|
|
4
|
-
private readonly _providers;
|
|
5
|
-
private readonly _bindings;
|
|
6
|
-
/** Registers local executable code and returns its disposer. */
|
|
7
|
-
registerProvider(provider: ImplementationProvider): () => void;
|
|
8
|
-
hasProvider(key: string): boolean;
|
|
9
|
-
/** Registers an explicit binding and returns its disposer. */
|
|
10
|
-
bind(binding: ImplementationBinding): () => void;
|
|
11
|
-
/** Resolves the effective provider by scope and priority. */
|
|
12
|
-
resolve(request: ImplementationResolutionRequest): ResolvedImplementation;
|
|
13
|
-
/** Returns null only when neither a binding nor a default provider is declared. */
|
|
14
|
-
resolveOptional(request: ImplementationResolutionRequest): ResolvedImplementation | null;
|
|
15
|
-
/** Resolves and executes one invocation through its effective provider. */
|
|
16
|
-
execute<TResult = unknown>(request: ImplementationResolutionRequest, invocation: ImplementationInvocation): Promise<TResult>;
|
|
17
|
-
/** Returns a serializable inspection snapshot without functions. */
|
|
18
|
-
snapshot(): ImplementationSnapshot;
|
|
19
|
-
clear(): void;
|
|
20
|
-
private _requireProvider;
|
|
21
|
-
private _assertCompatibleContract;
|
|
22
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ImplementationBinding, ImplementationResolutionRequest } from '../../../../domain/types/runtime/implementation.types';
|
|
2
|
-
/** Resolves explicit bindings without relying on registration order. */
|
|
3
|
-
export declare class ImplementationBindingRegistry {
|
|
4
|
-
private readonly _bindings;
|
|
5
|
-
register(binding: ImplementationBinding): () => void;
|
|
6
|
-
resolve(request: ImplementationResolutionRequest): ImplementationBinding | null;
|
|
7
|
-
list(): ImplementationBinding[];
|
|
8
|
-
clear(): void;
|
|
9
|
-
}
|