@endge/core 5.0.0 → 7.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 +93682 -92230
- 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 +118 -0
- package/dist/features/core/kernel/types/bootstrap.types.d.ts +56 -0
- package/dist/features/core/modules/EndgeRuntimeDebugger_Module.d.ts +86 -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 +41 -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 +31 -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 +178 -0
- package/dist/features/core/modules/context/EndgeContext_Module.d.ts +170 -0
- package/dist/features/core/modules/context/domain/context-persistence.types.d.ts +84 -0
- package/dist/features/core/modules/context/domain/context-state.types.d.ts +12 -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/context/persistence/context-state.d.ts +7 -0
- package/dist/features/core/modules/converters/EndgeConverters_Module.d.ts +42 -0
- package/dist/features/core/modules/diagnostics/EndgeDiagnosticsSnapshots_Module.d.ts +55 -0
- package/dist/features/core/modules/diagnostics/EndgeDiagnostics_Module.d.ts +102 -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/BrowserDiagnosticsSnapshot_Adapter.d.ts +9 -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/diagnostics-snapshot.d.ts +7 -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-snapshot-runtime-adapter.type.d.ts +15 -0
- package/dist/features/core/modules/diagnostics/domain/types/diagnostics.types.d.ts +372 -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 +50 -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 +88 -0
- package/dist/features/core/modules/domain/types/component/sfc/ir.types.d.ts +393 -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 +36 -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 +150 -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 +386 -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 +88 -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 +158 -0
- package/dist/features/core/modules/runtime/hosts/CompositionRuntimeHost.d.ts +151 -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 +58 -0
- package/dist/features/core/modules/runtime/hosts/StreamRuntimeHost.d.ts +31 -0
- package/dist/features/core/modules/runtime/operation/EndgeOperations_Module.d.ts +33 -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 +417 -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 +39 -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 +96 -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 +108 -0
- package/dist/features/federation/EndgeModule.d.ts +59 -0
- package/dist/features/federation/constants/federation.constants.d.ts +2 -0
- package/dist/features/federation/tools/endge-token.d.ts +3 -0
- package/dist/features/federation/tools/sort-endge-modules.d.ts +9 -0
- package/dist/features/federation/types/endge-modules.types.d.ts +33 -0
- package/dist/features/federation/types/federation.types.d.ts +119 -0
- package/dist/features/federation/types/forge.types.d.ts +29 -0
- package/dist/main.d.ts +262 -257
- package/package.json +6 -6
- package/ReadMe.md +0 -23
- package/dist/core.cjs +0 -864
- 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/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 -395
- 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
- /package/dist/{domain/entities/endge → features/federation/services}/EndgeSlotRegistry.d.ts +0 -0
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
import { RQueryAuth } from '../document/query.types';
|
|
2
|
-
import { ProgramMetadataMap } from '../program/program-metadata.types';
|
|
3
|
-
import { ProgramDiagnostic, QueryProgramPayload } from '../program/program.types';
|
|
4
|
-
import { DataViewRef } from './data-view-source.types';
|
|
5
|
-
import { ResponseOutputTransform } from './response-output.types';
|
|
6
|
-
import { QueryProgramProp, SourceExpressionIR, SourceFieldDefinition } from './source-expression.types';
|
|
7
|
-
/** Поддерживаемые transport-kind Query source. */
|
|
8
|
-
export type QuerySourceKind = 'rest' | 'graphql';
|
|
9
|
-
/** Политика GraphQL errors в HTTP 2xx response. */
|
|
10
|
-
export type QueryGraphQLErrorPolicy = 'throw' | 'ignore';
|
|
11
|
-
/** Static request value or a safe expression evaluated from Query props at runtime. */
|
|
12
|
-
export type QuerySourceRequestValue<T> = T | SourceExpressionIR;
|
|
13
|
-
/** Source-описание HTTP request части REST-запроса. */
|
|
14
|
-
export interface QuerySourceRestRequest {
|
|
15
|
-
/** Endpoint или Endge var-token вида {API_URL}. */
|
|
16
|
-
endpoint: QuerySourceRequestValue<string>;
|
|
17
|
-
/** REST path. В legacy RQuery это поле хранится как query. */
|
|
18
|
-
path: QuerySourceRequestValue<string>;
|
|
19
|
-
/** HTTP method. */
|
|
20
|
-
method: QuerySourceRequestValue<string>;
|
|
21
|
-
/** HTTP headers. */
|
|
22
|
-
headers: QuerySourceRequestValue<Record<string, string>>;
|
|
23
|
-
/** Auth config. */
|
|
24
|
-
auth: QuerySourceRequestValue<RQueryAuth>;
|
|
25
|
-
/** Request timeout. */
|
|
26
|
-
timeoutMs?: QuerySourceRequestValue<number>;
|
|
27
|
-
/** Отправлять body как application/x-www-form-urlencoded. */
|
|
28
|
-
formUrlencoded?: QuerySourceRequestValue<boolean>;
|
|
29
|
-
/** Безопасный body expression для query source v2. */
|
|
30
|
-
body?: SourceExpressionIR | null;
|
|
31
|
-
}
|
|
32
|
-
/** Source-описание GraphQL operation и variables. */
|
|
33
|
-
export interface QuerySourceGraphQLRequest {
|
|
34
|
-
/** GraphQL endpoint или Endge var-token вида {API_URL}. */
|
|
35
|
-
endpoint: QuerySourceRequestValue<string>;
|
|
36
|
-
/** Статический GraphQL document из gql template. */
|
|
37
|
-
document: string;
|
|
38
|
-
/** Operation name для document с несколькими operations. */
|
|
39
|
-
operationName?: string;
|
|
40
|
-
/** Безопасное variables expression, построенное через variables(...). */
|
|
41
|
-
variables?: SourceExpressionIR | null;
|
|
42
|
-
/** Дополнительные HTTP headers. */
|
|
43
|
-
headers: QuerySourceRequestValue<Record<string, string>>;
|
|
44
|
-
/** Auth config. */
|
|
45
|
-
auth: QuerySourceRequestValue<RQueryAuth>;
|
|
46
|
-
/** Request timeout. */
|
|
47
|
-
timeoutMs?: QuerySourceRequestValue<number>;
|
|
48
|
-
/** Обработка GraphQL errors в HTTP 2xx response. */
|
|
49
|
-
errorPolicy: QueryGraphQLErrorPolicy;
|
|
50
|
-
}
|
|
51
|
-
/** Source-описание mock-режима запроса. */
|
|
52
|
-
export interface QuerySourceMock {
|
|
53
|
-
/** Включены ли mock data. */
|
|
54
|
-
enabled: boolean;
|
|
55
|
-
/** Mock payload. */
|
|
56
|
-
data: unknown;
|
|
57
|
-
}
|
|
58
|
-
export type QueryOutputSource = {
|
|
59
|
-
type: 'response';
|
|
60
|
-
path: string | null;
|
|
61
|
-
expression?: SourceExpressionIR;
|
|
62
|
-
} | {
|
|
63
|
-
type: 'output';
|
|
64
|
-
key: string;
|
|
65
|
-
};
|
|
66
|
-
export interface QuerySourceOutput {
|
|
67
|
-
key: string;
|
|
68
|
-
source: QueryOutputSource;
|
|
69
|
-
/** Ordered transform chain. */
|
|
70
|
-
transforms: ResponseOutputTransform[];
|
|
71
|
-
/** Compatibility projection containing only DataView transforms. */
|
|
72
|
-
dataViews: DataViewRef[];
|
|
73
|
-
contract?: SourceFieldDefinition | null;
|
|
74
|
-
}
|
|
75
|
-
export type QuerySourceOutputs = QuerySourceOutput[];
|
|
76
|
-
interface QuerySourceDocumentBase {
|
|
77
|
-
/** Единственный runtime input contract Query. */
|
|
78
|
-
props: QueryProgramProp[];
|
|
79
|
-
/** Ordered output graph: response/output sources and transformations. */
|
|
80
|
-
outputs: QuerySourceOutputs;
|
|
81
|
-
/** Mock config. */
|
|
82
|
-
mock: QuerySourceMock;
|
|
83
|
-
}
|
|
84
|
-
export interface QuerySourceRestDocument extends QuerySourceDocumentBase {
|
|
85
|
-
kind: 'rest';
|
|
86
|
-
request: QuerySourceRestRequest;
|
|
87
|
-
}
|
|
88
|
-
export interface QuerySourceGraphQLDocument extends QuerySourceDocumentBase {
|
|
89
|
-
kind: 'graphql';
|
|
90
|
-
request: QuerySourceGraphQLRequest;
|
|
91
|
-
}
|
|
92
|
-
/** Canonical authoring-модель source-only Query v2. */
|
|
93
|
-
export type QuerySourceDocument = QuerySourceRestDocument | QuerySourceGraphQLDocument;
|
|
94
|
-
/** Публичные editor-slots, которые query source patcher умеет менять точечно. */
|
|
95
|
-
export type QuerySourcePatchPath = 'kind' | 'request.endpoint' | 'request.path' | 'request.method' | 'request.headers' | 'request.auth' | 'request.timeoutMs' | 'request.formUrlencoded' | 'request.body' | 'props' | 'outputs' | 'mock.enabled' | 'mock.data';
|
|
96
|
-
/** Операция AST-патчинга query source. */
|
|
97
|
-
export interface QuerySourcePatchOperation {
|
|
98
|
-
/** Изменяемый editor-slot. */
|
|
99
|
-
path: QuerySourcePatchPath;
|
|
100
|
-
/** Новое normalized значение, если patcher должен сам напечатать expression. */
|
|
101
|
-
value?: unknown;
|
|
102
|
-
/** Готовое source-expression для сложных DSL-значений: env(...), field(...), filter... */
|
|
103
|
-
expression?: string;
|
|
104
|
-
}
|
|
105
|
-
/** Patch query source: одиночная операция или пачка операций. */
|
|
106
|
-
export type QuerySourcePatch = QuerySourcePatchOperation | QuerySourcePatchOperation[];
|
|
107
|
-
/** Результат компиляции query source. */
|
|
108
|
-
export interface QuerySourceCompileResult {
|
|
109
|
-
/** Parser-level AST. */
|
|
110
|
-
ast: unknown | null;
|
|
111
|
-
/** Canonical authoring-модель. */
|
|
112
|
-
document: QuerySourceDocument | null;
|
|
113
|
-
/** Query artifact payload для Endge.program. */
|
|
114
|
-
artifact: QueryProgramPayload | null;
|
|
115
|
-
/** Публичная metadata, извлечённая из canonical source. */
|
|
116
|
-
metadata: ProgramMetadataMap;
|
|
117
|
-
/** Diagnostics source compiler-а. */
|
|
118
|
-
diagnostics: Omit<ProgramDiagnostic, 'entityRef'>[];
|
|
119
|
-
}
|
|
120
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { DataViewRef } from './data-view-source.types';
|
|
2
|
-
/** Ordered response-output transform shared by Query and Vocab. */
|
|
3
|
-
export type ResponseOutputTransform = {
|
|
4
|
-
kind: 'data-view';
|
|
5
|
-
ref: DataViewRef;
|
|
6
|
-
} | {
|
|
7
|
-
kind: 'converter';
|
|
8
|
-
identity: string;
|
|
9
|
-
options?: Record<string, unknown>;
|
|
10
|
-
};
|
|
@@ -1,242 +0,0 @@
|
|
|
1
|
-
import { I18nCatalogProvenance, I18nRuntimeCatalog } from '../i18n.types';
|
|
2
|
-
import { TypeSourceDefinition } from './type-source.types';
|
|
3
|
-
/** Канонический тип source-документа, для которого выбирается source strategy. */
|
|
4
|
-
export type SourceKind = 'action' | 'query' | 'vocab' | 'data-view' | 'filter' | 'composition' | 'store' | 'stream' | 'update' | 'computation' | 'style' | 'type' | 'configuration';
|
|
5
|
-
/** Тип нейтральной source completion без привязки к Monaco или другому editor API. */
|
|
6
|
-
export type SourceLanguageCompletionKind = 'keyword' | 'function' | 'property' | 'value' | 'snippet';
|
|
7
|
-
/** Позиция курсора внутри source-документа. */
|
|
8
|
-
export interface SourceLanguagePosition {
|
|
9
|
-
/** Номер строки, начиная с 1. */
|
|
10
|
-
lineNumber: number;
|
|
11
|
-
/** Номер колонки, начиная с 1. */
|
|
12
|
-
column: number;
|
|
13
|
-
}
|
|
14
|
-
/** Контекст, который UI/editor adapter передает language strategy. */
|
|
15
|
-
export interface SourceLanguageContext {
|
|
16
|
-
/** Текущий текст source-документа. */
|
|
17
|
-
source: string;
|
|
18
|
-
/** Текущая позиция курсора, если она есть у editor adapter. */
|
|
19
|
-
position?: SourceLanguagePosition;
|
|
20
|
-
/** Source-backed Type Registry symbols available to this editor. */
|
|
21
|
-
typeSymbols?: Array<{
|
|
22
|
-
identity: string;
|
|
23
|
-
displayName?: string;
|
|
24
|
-
category?: 'primitive' | 'reference' | 'user';
|
|
25
|
-
definition?: TypeSourceDefinition | null;
|
|
26
|
-
entityReference?: {
|
|
27
|
-
target: string;
|
|
28
|
-
storage: 'id' | 'identity';
|
|
29
|
-
};
|
|
30
|
-
}>;
|
|
31
|
-
/** Installed storage and code definition catalog used by identity completions. */
|
|
32
|
-
documentSymbols?: Array<{
|
|
33
|
-
target: SourceDocumentReferenceTarget;
|
|
34
|
-
identity: string;
|
|
35
|
-
displayName?: string;
|
|
36
|
-
description?: string | null;
|
|
37
|
-
}>;
|
|
38
|
-
/** Identity of the document that owns current source diagnostics. */
|
|
39
|
-
ownerIdentity?: string;
|
|
40
|
-
/** Effective translation catalogs for all current Project occurrences. */
|
|
41
|
-
i18n?: SourceLanguageI18nContext;
|
|
42
|
-
}
|
|
43
|
-
/** One statically projected Composition occurrence in the current Project. */
|
|
44
|
-
export interface SourceLanguageI18nOccurrence {
|
|
45
|
-
id: string;
|
|
46
|
-
catalogsByScope: Readonly<Record<string, I18nRuntimeCatalog>>;
|
|
47
|
-
provenanceByScope: Readonly<Record<string, I18nCatalogProvenance>>;
|
|
48
|
-
}
|
|
49
|
-
/** Translation input prepared by the application without mounting Runtime. */
|
|
50
|
-
export interface SourceLanguageI18nContext {
|
|
51
|
-
locale: string;
|
|
52
|
-
fallbackLocale: string;
|
|
53
|
-
occurrences: readonly SourceLanguageI18nOccurrence[];
|
|
54
|
-
}
|
|
55
|
-
/** Нейтральная completion item, которую editor adapter мапит в свой формат. */
|
|
56
|
-
export interface SourceLanguageCompletion {
|
|
57
|
-
/** Текст, отображаемый в списке подсказок. */
|
|
58
|
-
label: string;
|
|
59
|
-
/** Семантический тип подсказки. */
|
|
60
|
-
kind: SourceLanguageCompletionKind;
|
|
61
|
-
/** Текст, который нужно вставить. Может быть snippet-ом. */
|
|
62
|
-
insertText: string;
|
|
63
|
-
/** Краткое описание справа от completion item. */
|
|
64
|
-
detail?: string;
|
|
65
|
-
/** Документация completion item. */
|
|
66
|
-
documentation?: string;
|
|
67
|
-
}
|
|
68
|
-
export interface SourceLanguageSignatureHelp {
|
|
69
|
-
activeSignature: number;
|
|
70
|
-
activeParameter: number;
|
|
71
|
-
signatures: Array<{
|
|
72
|
-
label: string;
|
|
73
|
-
documentation?: string;
|
|
74
|
-
parameters: Array<{
|
|
75
|
-
label: string;
|
|
76
|
-
documentation?: string;
|
|
77
|
-
}>;
|
|
78
|
-
}>;
|
|
79
|
-
}
|
|
80
|
-
/** Логический тип внешнего доменного документа, на который ссылается source. */
|
|
81
|
-
export type SourceDocumentReferenceTarget = 'action' | 'auth-profile' | 'component' | 'composition' | 'computation' | 'converter' | 'data-view' | 'filter' | 'i18n-bundles' | 'mock' | 'query' | 'store' | 'stream' | 'update' | 'style' | 'type' | 'vocabs';
|
|
82
|
-
/** Семантическая ссылка из source на внешний доменный документ. */
|
|
83
|
-
export interface SourceDocumentReference {
|
|
84
|
-
/** Логический тип цели; UI может уточнить concrete document type через domain. */
|
|
85
|
-
target: SourceDocumentReferenceTarget;
|
|
86
|
-
/** Persisted identity целевого документа. */
|
|
87
|
-
identity: string;
|
|
88
|
-
/** Полуоткрытый диапазон reference-expression в source offsets. */
|
|
89
|
-
range: {
|
|
90
|
-
start: number;
|
|
91
|
-
end: number;
|
|
92
|
-
};
|
|
93
|
-
}
|
|
94
|
-
/** Renderer-neutral semantic emphasis for one source range. */
|
|
95
|
-
export interface SourceLanguageSemanticHighlight {
|
|
96
|
-
kind: 'type-reference';
|
|
97
|
-
status: 'resolved' | 'unresolved';
|
|
98
|
-
identity: string;
|
|
99
|
-
range: SourceDocumentReference['range'];
|
|
100
|
-
}
|
|
101
|
-
/** Renderer-neutral inline annotation shown after one source range. */
|
|
102
|
-
export interface SourceLanguageInlineHint {
|
|
103
|
-
kind: 'translation';
|
|
104
|
-
status: 'resolved' | 'ambiguous';
|
|
105
|
-
text: string;
|
|
106
|
-
tooltip?: string;
|
|
107
|
-
range: SourceDocumentReference['range'];
|
|
108
|
-
}
|
|
109
|
-
/** Результат validation source language strategy. */
|
|
110
|
-
export interface SourceLanguageValidationResult extends SourceEngineResult {
|
|
111
|
-
/** Diagnostics, найденные language strategy. */
|
|
112
|
-
diagnostics: unknown[];
|
|
113
|
-
}
|
|
114
|
-
/** Минимальная операция source engine. Детальные операции появятся вместе с patch engine. */
|
|
115
|
-
export interface SourceEngineOperation {
|
|
116
|
-
/** Тип операции, например replace-slot или insert-block. */
|
|
117
|
-
type: string;
|
|
118
|
-
/** Дополнительный payload операции. */
|
|
119
|
-
payload?: Record<string, unknown>;
|
|
120
|
-
}
|
|
121
|
-
/** Базовый результат source operation до внедрения полноценного patch engine. */
|
|
122
|
-
export interface SourceEngineResult {
|
|
123
|
-
/** Было ли действие обработано стратегией. */
|
|
124
|
-
ok: boolean;
|
|
125
|
-
/** Машинное сообщение об ошибке или причине no-op. */
|
|
126
|
-
message?: string;
|
|
127
|
-
}
|
|
128
|
-
/** Результат генерации source из persisted/legacy модели. */
|
|
129
|
-
export interface SourceEngineGenerateResult extends SourceEngineResult {
|
|
130
|
-
/** Сгенерированный source-документ. */
|
|
131
|
-
source?: string;
|
|
132
|
-
/** Нормализованный source document, если стратегия его построила. */
|
|
133
|
-
document?: unknown;
|
|
134
|
-
}
|
|
135
|
-
/** Результат компиляции source в normalized document и runtime artifact payload. */
|
|
136
|
-
export interface SourceEngineCompileResult extends SourceEngineResult {
|
|
137
|
-
/** Parser-level AST. */
|
|
138
|
-
ast?: unknown;
|
|
139
|
-
/** Нормализованный source document. */
|
|
140
|
-
document?: unknown;
|
|
141
|
-
/** Runtime/program-ready artifact payload. */
|
|
142
|
-
artifact?: any;
|
|
143
|
-
/** Публичная metadata, извлечённая из source. */
|
|
144
|
-
metadata?: import('../program/program-metadata.types').ProgramMetadataMap;
|
|
145
|
-
/** Diagnostics, найденные source compiler-ом. */
|
|
146
|
-
diagnostics?: unknown[];
|
|
147
|
-
/** Static Program dependencies discovered by the source compiler. */
|
|
148
|
-
dependencies?: import('../program/program.types').ProgramDependency[];
|
|
149
|
-
}
|
|
150
|
-
/** Результат parse source без обязательной runtime-компиляции. */
|
|
151
|
-
export interface SourceParseResult<TDocument = unknown> extends SourceEngineResult {
|
|
152
|
-
/** Parser-level AST. */
|
|
153
|
-
ast?: unknown;
|
|
154
|
-
/** Нормализованный source document. */
|
|
155
|
-
document?: TDocument;
|
|
156
|
-
/** Diagnostics, найденные parser/compiler-ом. */
|
|
157
|
-
diagnostics?: unknown[];
|
|
158
|
-
}
|
|
159
|
-
/** Результат patch source-документа. */
|
|
160
|
-
export interface SourcePatchResult<TDocument = unknown> extends SourceParseResult<TDocument> {
|
|
161
|
-
/** Новый source-документ. */
|
|
162
|
-
source: string;
|
|
163
|
-
/** Был ли source реально изменен. */
|
|
164
|
-
changed: boolean;
|
|
165
|
-
}
|
|
166
|
-
/** Strategy source patching для одного source-kind. */
|
|
167
|
-
export interface SourcePatchStrategy<TPatch = unknown, TDocument = unknown> {
|
|
168
|
-
/** Стабильный id стратегии для debug/плагинов. */
|
|
169
|
-
id: string;
|
|
170
|
-
/** Тип source-документа, который обслуживает стратегия. */
|
|
171
|
-
sourceKind: SourceKind;
|
|
172
|
-
/** Проверяет, может ли стратегия обслужить переданный source-kind. */
|
|
173
|
-
supports: (sourceKind: SourceKind | string) => boolean;
|
|
174
|
-
/** Парсит source в editor-facing normalized document. */
|
|
175
|
-
parse: (source: string) => SourceParseResult<TDocument>;
|
|
176
|
-
/** Применяет минимальный patch, сохраняя остальной авторский source. */
|
|
177
|
-
patch: (source: string, patch: TPatch) => SourcePatchResult<TDocument>;
|
|
178
|
-
}
|
|
179
|
-
/** Strategy source engine для одного source-kind. */
|
|
180
|
-
export interface SourceEngineStrategy {
|
|
181
|
-
/** Стабильный id стратегии для debug/плагинов. */
|
|
182
|
-
id: string;
|
|
183
|
-
/** Тип source-документа, который обслуживает стратегия. */
|
|
184
|
-
sourceKind: SourceKind;
|
|
185
|
-
/** Проверяет, может ли стратегия обслужить переданный source-kind. */
|
|
186
|
-
supports: (sourceKind: SourceKind | string) => boolean;
|
|
187
|
-
/** Выполняет нейтральную source operation. Пока используется как будущий контракт patch/analyze API. */
|
|
188
|
-
execute?: (operation: SourceEngineOperation) => SourceEngineResult;
|
|
189
|
-
/** Генерирует source из persisted/legacy модели. */
|
|
190
|
-
generate?: (model: unknown) => SourceEngineGenerateResult;
|
|
191
|
-
/** Компилирует source в normalized document и artifact payload. */
|
|
192
|
-
compile?: (source: string) => SourceEngineCompileResult;
|
|
193
|
-
}
|
|
194
|
-
/** Нейтральный token pattern source-языка, не завязанный на Monaco API. */
|
|
195
|
-
export interface SourceLanguageTokenPattern {
|
|
196
|
-
pattern: RegExp;
|
|
197
|
-
token: string;
|
|
198
|
-
next?: string;
|
|
199
|
-
}
|
|
200
|
-
/** Editor-facing синтаксис, которым владеет SourceLanguageStrategy. */
|
|
201
|
-
export interface SourceLanguageSyntaxDefinition {
|
|
202
|
-
aliases: string[];
|
|
203
|
-
extensions: string[];
|
|
204
|
-
comments: {
|
|
205
|
-
lineComment: string;
|
|
206
|
-
blockComment: [string, string];
|
|
207
|
-
};
|
|
208
|
-
brackets: Array<[string, string]>;
|
|
209
|
-
autoClosingPairs: Array<{
|
|
210
|
-
open: string;
|
|
211
|
-
close: string;
|
|
212
|
-
}>;
|
|
213
|
-
triggerCharacters: string[];
|
|
214
|
-
tokenizer: Record<string, SourceLanguageTokenPattern[]>;
|
|
215
|
-
}
|
|
216
|
-
/** Strategy source language для editor-facing операций одного source-kind. */
|
|
217
|
-
export interface SourceLanguageStrategy {
|
|
218
|
-
/** Стабильный id стратегии для debug/плагинов. */
|
|
219
|
-
id: string;
|
|
220
|
-
/** Тип source-документа, который обслуживает стратегия. */
|
|
221
|
-
sourceKind: SourceKind;
|
|
222
|
-
/** Проверяет, может ли стратегия обслужить переданный source-kind. */
|
|
223
|
-
supports: (sourceKind: SourceKind | string) => boolean;
|
|
224
|
-
/** Описывает подсветку, brackets и editor triggers в adapter-neutral формате. */
|
|
225
|
-
syntax: SourceLanguageSyntaxDefinition;
|
|
226
|
-
/** Возвращает базовый source для новой сущности. */
|
|
227
|
-
createDefaultSource: (variant?: string) => string;
|
|
228
|
-
/** Нормализует поддержанный syntax, сохраняя остальной авторский source. */
|
|
229
|
-
normalize?: (source: string) => string;
|
|
230
|
-
/** Валидирует source без знания о конкретном editor adapter. */
|
|
231
|
-
validate: (source: string, context?: SourceLanguageContext) => SourceLanguageValidationResult;
|
|
232
|
-
/** Возвращает доступные подсказки языка в нейтральном формате. */
|
|
233
|
-
completions: (context: SourceLanguageContext) => SourceLanguageCompletion[];
|
|
234
|
-
/** Returns call signature information at the current cursor position. */
|
|
235
|
-
signatureHelp?: (context: SourceLanguageContext) => SourceLanguageSignatureHelp | null;
|
|
236
|
-
/** Возвращает внешнюю document reference под курсором, если язык её поддерживает. */
|
|
237
|
-
resolveReference?: (context: SourceLanguageContext) => SourceDocumentReference | null;
|
|
238
|
-
/** Возвращает semantic highlights без привязки к конкретному editor adapter. */
|
|
239
|
-
semanticHighlights?: (context: SourceLanguageContext) => SourceLanguageSemanticHighlight[];
|
|
240
|
-
/** Возвращает inline annotations без привязки к конкретному editor adapter. */
|
|
241
|
-
inlineHints?: (context: SourceLanguageContext) => SourceLanguageInlineHint[];
|
|
242
|
-
}
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import { ProgramMetadataMap } from '../program/program-metadata.types';
|
|
2
|
-
import { TypeSourceExpression } from './type-source.types';
|
|
3
|
-
/** Type Registry identity used by Query/Filter field contracts. */
|
|
4
|
-
export type SourceFieldType = 'String' | 'Number' | 'Boolean' | 'Date' | 'Time' | 'DateTime' | 'Object' | 'Any' | (string & {});
|
|
5
|
-
/** Источник безопасного чтения значения внутри source expression. */
|
|
6
|
-
export type SourceExpressionReadKind = 'env' | 'prop' | 'value' | 'row' | 'response' | 'store' | 'current' | 'scope' | 'composition-output' | 'composition-outputs' | 'composition-data' | 'composition-store' | 'composition-filter-fields' | 'composition-runtime-metadata' | 'metadata' | 'computation-output';
|
|
7
|
-
/** Whitelist операций статического expression IR. */
|
|
8
|
-
export type SourceExpressionOperation = 'merge' | 'compact' | 'get' | 'get-or' | 'has' | 'default-to' | 'pick' | 'omit' | 'defaults' | 'keys' | 'values' | 'entries' | 'map' | 'where' | 'reject' | 'find' | 'some' | 'every' | 'flat-map' | 'flatten' | 'uniq' | 'uniq-by' | 'concat' | 'take' | 'drop' | 'sort-by' | 'group-by' | 'key-by' | 'size' | 'sum' | 'sum-by' | 'min' | 'max' | 'min-by' | 'max-by' | 'trim' | 'lower-case' | 'upper-case' | 'split' | 'join' | 'match' | 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte' | 'includes' | 'or' | 'when' | 'not' | 'is-nil' | 'is-empty' | 'and' | 'between' | 'in-list' | 'in-array' | 'relative-date' | 'relative-date-time' | 'left-join' | 'full-join' | 'join-by' | 'join-by-any' | 'join-coalesce' | 'lookup-one' | 'lookup-many' | 'enrich' | 'coalesce' | 'choose' | 'lookup-value' | 'to-string' | 'to-number' | 'to-boolean' | 'type-of' | 'is-string' | 'is-number' | 'is-boolean' | 'is-array' | 'is-object' | 'is-date-time' | 'is-duration' | 'add' | 'subtract' | 'multiply' | 'divide' | 'modulo' | 'abs' | 'negate' | 'round' | 'floor' | 'ceil' | 'clamp' | 'average' | 'average-by' | 'starts-with' | 'ends-with' | 'replace' | 'replace-all' | 'slice' | 'pad-start' | 'pad-end' | 'normalize-whitespace' | 'set' | 'unset' | 'rename' | 'get-key' | 'from-entries' | 'first' | 'last' | 'at' | 'reverse' | 'sort-by-desc' | 'order-by' | 'chunk' | 'union' | 'intersection' | 'difference' | 'count-by' | 'date-time' | 'duration' | 'date-time-add' | 'date-time-subtract' | 'date-time-difference' | 'date-time-start-of' | 'date-time-end-of' | 'date-time-part' | 'duration-add' | 'duration-subtract' | 'duration-total' | 'contains-all' | 'contains-any';
|
|
9
|
-
/**
|
|
10
|
-
* Безопасное runtime-выражение, полученное из source callback.
|
|
11
|
-
*
|
|
12
|
-
* IR не содержит исполняемого JavaScript и вычисляется только штатным evaluator-ом.
|
|
13
|
-
*/
|
|
14
|
-
export type SourceExpressionIR = {
|
|
15
|
-
type: 'literal';
|
|
16
|
-
value: unknown;
|
|
17
|
-
} | {
|
|
18
|
-
type: 'object';
|
|
19
|
-
properties: Record<string, SourceExpressionIR>;
|
|
20
|
-
} | {
|
|
21
|
-
type: 'array';
|
|
22
|
-
items: SourceExpressionIR[];
|
|
23
|
-
} | {
|
|
24
|
-
type: 'read';
|
|
25
|
-
source: SourceExpressionReadKind;
|
|
26
|
-
path: string;
|
|
27
|
-
parameters?: string[];
|
|
28
|
-
} | {
|
|
29
|
-
type: 'transform';
|
|
30
|
-
transform: 'data-view' | 'converter';
|
|
31
|
-
identity: string;
|
|
32
|
-
input: SourceExpressionIR;
|
|
33
|
-
options?: SourceExpressionIR;
|
|
34
|
-
} | {
|
|
35
|
-
type: 'operation';
|
|
36
|
-
operation: SourceExpressionOperation;
|
|
37
|
-
arguments: SourceExpressionIR[];
|
|
38
|
-
};
|
|
39
|
-
/** Статический вариант выбора source-field. */
|
|
40
|
-
export interface SourceFieldOption {
|
|
41
|
-
value: string | number | boolean;
|
|
42
|
-
label?: string;
|
|
43
|
-
}
|
|
44
|
-
/** Ссылка source-field на доменный vocab. */
|
|
45
|
-
export interface SourceFieldVocab {
|
|
46
|
-
identity: string;
|
|
47
|
-
valuePath: string;
|
|
48
|
-
labelPath: string;
|
|
49
|
-
}
|
|
50
|
-
/** Общий compiled field contract для Filter и Query props. */
|
|
51
|
-
export interface SourceFieldDefinition {
|
|
52
|
-
key: string;
|
|
53
|
-
type: SourceFieldType;
|
|
54
|
-
/** Точный inline-контракт для objectOf/recordOf; type сохраняет coarse runtime identity. */
|
|
55
|
-
typeExpression?: TypeSourceExpression;
|
|
56
|
-
optional: boolean;
|
|
57
|
-
array: boolean;
|
|
58
|
-
defaultValue?: SourceExpressionIR;
|
|
59
|
-
options?: SourceFieldOption[];
|
|
60
|
-
vocab?: SourceFieldVocab;
|
|
61
|
-
/** Статическая presentation metadata поля, не влияющая на Filter state. */
|
|
62
|
-
metadata?: ProgramMetadataMap;
|
|
63
|
-
}
|
|
64
|
-
/** Default value prop, вычисляемый через output внешнего или локального Filter. */
|
|
65
|
-
export type SourceFieldDefaultSource = {
|
|
66
|
-
kind: 'filter';
|
|
67
|
-
identity: string;
|
|
68
|
-
output: string;
|
|
69
|
-
} | {
|
|
70
|
-
kind: 'inline-filter';
|
|
71
|
-
source: string;
|
|
72
|
-
output: string;
|
|
73
|
-
} | {
|
|
74
|
-
kind: 'local-filter';
|
|
75
|
-
ref: {
|
|
76
|
-
entityType: 'filter';
|
|
77
|
-
id: string | number;
|
|
78
|
-
identity: string;
|
|
79
|
-
};
|
|
80
|
-
output: string;
|
|
81
|
-
};
|
|
82
|
-
/** Query prop на базе общего field contract. */
|
|
83
|
-
export interface QueryProgramProp extends SourceFieldDefinition {
|
|
84
|
-
defaultSource?: SourceFieldDefaultSource;
|
|
85
|
-
}
|
|
86
|
-
/** Контекст вычисления безопасного source expression. */
|
|
87
|
-
export interface SourceExpressionContext {
|
|
88
|
-
/** Resolves an env(name) read without exposing the workspace to the evaluator. */
|
|
89
|
-
environment?: (name: string) => unknown;
|
|
90
|
-
props?: Record<string, unknown>;
|
|
91
|
-
values?: Record<string, unknown>;
|
|
92
|
-
row?: unknown;
|
|
93
|
-
response?: unknown;
|
|
94
|
-
stores?: Record<string, unknown>;
|
|
95
|
-
current?: unknown;
|
|
96
|
-
scope?: unknown;
|
|
97
|
-
read?: (expression: Extract<SourceExpressionIR, {
|
|
98
|
-
type: 'read';
|
|
99
|
-
}>) => unknown;
|
|
100
|
-
transform?: (expression: Extract<SourceExpressionIR, {
|
|
101
|
-
type: 'transform';
|
|
102
|
-
}>, input: unknown, options: unknown) => unknown;
|
|
103
|
-
onWarning?: (warning: SourceExpressionWarning) => void;
|
|
104
|
-
}
|
|
105
|
-
/** Публичное имя общего декларативного value DSL. */
|
|
106
|
-
export type ValueExpressionIR = SourceExpressionIR;
|
|
107
|
-
export type ValueExpressionContext = SourceExpressionContext;
|
|
108
|
-
/** Runtime warning безопасного expression evaluator. */
|
|
109
|
-
export interface SourceExpressionWarning {
|
|
110
|
-
code: string;
|
|
111
|
-
message: string;
|
|
112
|
-
data?: unknown;
|
|
113
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { EndgeMockReference } from '../mock/mock-data.type';
|
|
2
|
-
import { ProgramDiagnostic } from '../program/program.types';
|
|
3
|
-
import { DataViewRef } from './data-view-source.types';
|
|
4
|
-
import { SourceFieldDefinition } from './source-expression.types';
|
|
5
|
-
export type StoreDataDescriptor = StoreValueDescriptor | StoreDerivedDescriptor;
|
|
6
|
-
export interface StoreValueDescriptor {
|
|
7
|
-
key: string;
|
|
8
|
-
kind: 'value';
|
|
9
|
-
initial: StoreValueInitializer;
|
|
10
|
-
contract?: SourceFieldDefinition | null;
|
|
11
|
-
}
|
|
12
|
-
export type StoreValueInitializer = {
|
|
13
|
-
kind: 'literal';
|
|
14
|
-
value: unknown;
|
|
15
|
-
} | EndgeMockReference;
|
|
16
|
-
export interface StoreDerivedDescriptor {
|
|
17
|
-
key: string;
|
|
18
|
-
kind: 'derived';
|
|
19
|
-
source: string;
|
|
20
|
-
dataViews: DataViewRef[];
|
|
21
|
-
materializationStrategy?: import('./data-view-source.types').DataViewMaterializationStrategy;
|
|
22
|
-
contract?: SourceFieldDefinition | null;
|
|
23
|
-
}
|
|
24
|
-
export interface StoreSourceDocument {
|
|
25
|
-
data: StoreDataDescriptor[];
|
|
26
|
-
}
|
|
27
|
-
/** Скомпилированная таблица маршрутизации событий к дочерним Update. */
|
|
28
|
-
export interface StoreUpdateHandlerDescriptor {
|
|
29
|
-
identity: string;
|
|
30
|
-
eventTypes: string[];
|
|
31
|
-
}
|
|
32
|
-
/** Runtime-ready Store source artifact v1. */
|
|
33
|
-
export interface StoreSourceArtifact extends StoreSourceDocument {
|
|
34
|
-
type: 'store';
|
|
35
|
-
sourceVersion: number;
|
|
36
|
-
updateHandlers: StoreUpdateHandlerDescriptor[];
|
|
37
|
-
}
|
|
38
|
-
export interface StoreSourceCompileResult {
|
|
39
|
-
ast: unknown | null;
|
|
40
|
-
document: StoreSourceDocument | null;
|
|
41
|
-
artifact: StoreSourceArtifact | null;
|
|
42
|
-
diagnostics: Omit<ProgramDiagnostic, 'entityRef'>[];
|
|
43
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { ProgramDiagnostic } from '../program/program.types';
|
|
2
|
-
export interface StreamSseTransportDescriptor {
|
|
3
|
-
kind: 'sse';
|
|
4
|
-
url: string;
|
|
5
|
-
withCredentials: boolean;
|
|
6
|
-
authMode: 'inherit' | 'profile' | 'none';
|
|
7
|
-
authProfileIdentity: string | null;
|
|
8
|
-
}
|
|
9
|
-
export type StreamTransportDescriptor = StreamSseTransportDescriptor;
|
|
10
|
-
export interface StreamEventDescriptor {
|
|
11
|
-
sourceEvent: string;
|
|
12
|
-
type: string | null;
|
|
13
|
-
typePath: string | null;
|
|
14
|
-
payloadPath: string | null;
|
|
15
|
-
}
|
|
16
|
-
export interface StreamSourceDocument {
|
|
17
|
-
transport: StreamTransportDescriptor;
|
|
18
|
-
events: StreamEventDescriptor[];
|
|
19
|
-
}
|
|
20
|
-
/** Runtime-ready Stream artifact. */
|
|
21
|
-
export interface StreamSourceArtifact extends StreamSourceDocument {
|
|
22
|
-
type: 'stream';
|
|
23
|
-
sourceVersion: number;
|
|
24
|
-
}
|
|
25
|
-
export interface StreamSourceCompileResult {
|
|
26
|
-
ast: unknown | null;
|
|
27
|
-
document: StreamSourceDocument | null;
|
|
28
|
-
artifact: StreamSourceArtifact | null;
|
|
29
|
-
diagnostics: Omit<ProgramDiagnostic, 'entityRef'>[];
|
|
30
|
-
}
|
|
31
|
-
export interface StreamEventEnvelope {
|
|
32
|
-
type: string;
|
|
33
|
-
payload: unknown;
|
|
34
|
-
meta: {
|
|
35
|
-
id: string | null;
|
|
36
|
-
source: string;
|
|
37
|
-
sourceEvent: string;
|
|
38
|
-
occurredAt: string;
|
|
39
|
-
};
|
|
40
|
-
}
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import { ProgramDiagnostic } from '../program/program.types';
|
|
2
|
-
/** Ссылка Type Source на примитивный или пользовательский тип домена. */
|
|
3
|
-
export interface TypeSourceReference {
|
|
4
|
-
kind: 'reference';
|
|
5
|
-
identity: string;
|
|
6
|
-
}
|
|
7
|
-
/** Поле объектного Type Source v1. */
|
|
8
|
-
export interface TypeSourceField {
|
|
9
|
-
key: string;
|
|
10
|
-
type: TypeSourceExpression;
|
|
11
|
-
description?: string;
|
|
12
|
-
optional: boolean;
|
|
13
|
-
array: boolean;
|
|
14
|
-
min?: number;
|
|
15
|
-
max?: number;
|
|
16
|
-
examples: unknown[];
|
|
17
|
-
}
|
|
18
|
-
export interface TypeSourceObjectDefinition {
|
|
19
|
-
kind: 'object';
|
|
20
|
-
fields: TypeSourceField[];
|
|
21
|
-
}
|
|
22
|
-
export interface TypeSourceEnumDefinition {
|
|
23
|
-
kind: 'enum';
|
|
24
|
-
values: Array<string | number | boolean>;
|
|
25
|
-
}
|
|
26
|
-
export interface TypeSourceUnionDefinition {
|
|
27
|
-
kind: 'union';
|
|
28
|
-
variants: TypeSourceExpression[];
|
|
29
|
-
}
|
|
30
|
-
export interface TypeSourceArrayDefinition {
|
|
31
|
-
kind: 'array';
|
|
32
|
-
items: TypeSourceExpression;
|
|
33
|
-
}
|
|
34
|
-
/** Словарь с произвольными string-ключами и единым типом значений. */
|
|
35
|
-
export interface TypeSourceRecordDefinition {
|
|
36
|
-
kind: 'record';
|
|
37
|
-
values: TypeSourceExpression;
|
|
38
|
-
}
|
|
39
|
-
/** Поддержанные корневые формы Type Source v1. */
|
|
40
|
-
export type TypeSourceDefinition = TypeSourceObjectDefinition | TypeSourceEnumDefinition | TypeSourceUnionDefinition | TypeSourceArrayDefinition;
|
|
41
|
-
/** Рекурсивное выражение типа: ссылка или анонимное inline-определение. */
|
|
42
|
-
export type TypeSourceExpression = TypeSourceReference | TypeSourceDefinition | TypeSourceRecordDefinition;
|
|
43
|
-
/** Canonical authoring document Type Source v1. */
|
|
44
|
-
export interface TypeSourceDocument {
|
|
45
|
-
definition: TypeSourceDefinition;
|
|
46
|
-
}
|
|
47
|
-
/** Compiler payload Type Source. Runtime пока не потребляет этот artifact. */
|
|
48
|
-
export interface TypeProgramPayload {
|
|
49
|
-
type: 'type';
|
|
50
|
-
sourceVersion: number;
|
|
51
|
-
/** Stable identity of the compiled type. Parser-only artifacts may omit it. */
|
|
52
|
-
identity?: string;
|
|
53
|
-
displayName?: string;
|
|
54
|
-
category?: 'primitive' | 'reference' | 'user';
|
|
55
|
-
definition: TypeSourceDefinition | null;
|
|
56
|
-
runtimeType?: string;
|
|
57
|
-
entityReference?: {
|
|
58
|
-
target: string;
|
|
59
|
-
storage: 'id' | 'identity';
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
/** Read-only projection used by editors and language tooling. */
|
|
63
|
-
export interface TypeProgramCatalogEntry {
|
|
64
|
-
id: string | number;
|
|
65
|
-
identity: string;
|
|
66
|
-
displayName: string;
|
|
67
|
-
category: 'primitive' | 'reference' | 'user';
|
|
68
|
-
sourceVersion: number;
|
|
69
|
-
definition: TypeSourceDefinition | null;
|
|
70
|
-
runtimeType?: string;
|
|
71
|
-
entityReference?: TypeProgramPayload['entityReference'];
|
|
72
|
-
status: 'valid' | 'warning' | 'error';
|
|
73
|
-
}
|
|
74
|
-
/** Результат безопасного разбора Type Source. */
|
|
75
|
-
export interface TypeSourceCompileResult {
|
|
76
|
-
ast: unknown | null;
|
|
77
|
-
document: TypeSourceDocument | null;
|
|
78
|
-
artifact: TypeProgramPayload | null;
|
|
79
|
-
diagnostics: Omit<ProgramDiagnostic, 'entityRef'>[];
|
|
80
|
-
}
|