@endge/core 4.0.3 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (839) hide show
  1. package/dist/core.js +88841 -88521
  2. package/dist/features/core/kernel/config/kernel.config.d.ts +35 -0
  3. package/dist/features/core/kernel/config/modules.config.d.ts +136 -0
  4. package/dist/features/core/kernel/constants/kernel.constants.d.ts +10 -0
  5. package/dist/features/core/kernel/endge.d.ts +112 -0
  6. package/dist/features/core/kernel/types/bootstrap.types.d.ts +56 -0
  7. package/dist/features/core/modules/EndgeRuntimeDebugger_Module.d.ts +84 -0
  8. package/dist/features/core/modules/EndgeTypes_Module.d.ts +12 -0
  9. package/dist/features/core/modules/EndgeVocabs_Module.d.ts +149 -0
  10. package/dist/features/core/modules/actions/EndgeActions_Module.d.ts +89 -0
  11. package/dist/features/core/modules/actions/domain/action.types.d.ts +189 -0
  12. package/dist/features/core/modules/actions/services/ActionProgramExecutor.d.ts +28 -0
  13. package/dist/features/core/modules/actions/services/table-actions.d.ts +3 -0
  14. package/dist/features/core/modules/auth/EndgeAuth_Module.d.ts +39 -0
  15. package/dist/features/core/modules/auth/adapters/BasicAuthAdapter.d.ts +10 -0
  16. package/dist/features/core/modules/auth/adapters/BearerAuthAdapter.d.ts +10 -0
  17. package/dist/features/core/modules/auth/adapters/OAuth2ClientCredentialsAuthAdapter.d.ts +8 -0
  18. package/dist/features/core/modules/auth/adapters/OAuth2PasswordAuthAdapter.d.ts +11 -0
  19. package/dist/features/core/modules/auth/adapters/OidcAuthAdapter.d.ts +8 -0
  20. package/dist/features/core/modules/auth/adapters/OidcBrowserSession_Adapter.d.ts +28 -0
  21. package/dist/features/core/modules/auth/domain/types/auth-profile.types.d.ts +181 -0
  22. package/dist/features/core/modules/auth/services/AuthAdapterRegistry.d.ts +13 -0
  23. package/dist/features/core/modules/auth/services/AuthProfileRegistry.d.ts +32 -0
  24. package/dist/features/core/modules/auth/services/AuthRequestResolver.d.ts +16 -0
  25. package/dist/features/core/modules/auth/services/AuthSessionManager.d.ts +61 -0
  26. package/dist/features/core/modules/auth/services/AuthSessionStore.d.ts +20 -0
  27. package/dist/features/core/modules/auth/services/auth-context.d.ts +14 -0
  28. package/dist/features/core/modules/compiler/EndgeCompiler_Module.d.ts +240 -0
  29. package/dist/features/core/modules/compiler/services/action/action-compile.d.ts +9 -0
  30. package/dist/features/core/modules/compiler/services/action/action-target-validation.d.ts +10 -0
  31. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-attributes.d.ts +9 -0
  32. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-built-in-tags.d.ts +4 -0
  33. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-compile.d.ts +56 -0
  34. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-dependencies.d.ts +4 -0
  35. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-expression.d.ts +48 -0
  36. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-forward.d.ts +19 -0
  37. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-interactions.d.ts +12 -0
  38. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-parse.d.ts +14 -0
  39. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-ports.d.ts +21 -0
  40. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-script.d.ts +30 -0
  41. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-style.d.ts +12 -0
  42. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-menu.d.ts +20 -0
  43. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-pin.d.ts +25 -0
  44. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-sort.d.ts +29 -0
  45. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-table-visibility.d.ts +4 -0
  46. package/dist/features/core/modules/compiler/services/component-sfc/component-sfc-template.d.ts +45 -0
  47. package/dist/features/core/modules/compiler/services/computation/computation-compile.d.ts +16 -0
  48. package/dist/features/core/modules/compiler/services/type/type-program-validation.d.ts +18 -0
  49. package/dist/features/core/modules/computations/EndgeComputations_Module.d.ts +78 -0
  50. package/dist/features/core/modules/computations/model/ComputationResource.d.ts +27 -0
  51. package/dist/features/core/modules/computations/model/ComputationResourceRegistry.d.ts +11 -0
  52. package/dist/features/core/modules/computations/services/ComputationGraphExecutor.d.ts +28 -0
  53. package/dist/features/core/modules/configuration/EndgeConfigurationSchema_Module.d.ts +24 -0
  54. package/dist/features/core/modules/configuration/EndgeConfiguration_Module.d.ts +29 -0
  55. package/dist/features/core/modules/configuration/domain/configuration-value.d.ts +20 -0
  56. package/dist/features/core/modules/configuration/domain/endge-configuration.d.ts +14 -0
  57. package/dist/features/core/modules/configuration/domain/tooltip.config.d.ts +3 -0
  58. package/dist/features/core/modules/configuration/domain/types/configuration.type.d.ts +166 -0
  59. package/dist/features/core/modules/context/EndgeContext_Module.d.ts +157 -0
  60. package/dist/features/core/modules/context/domain/context-persistence.types.d.ts +84 -0
  61. package/dist/features/core/modules/context/endge-vars.d.ts +81 -0
  62. package/dist/features/core/modules/context/persistence/EndgeStorageAdapterRegistry.d.ts +9 -0
  63. package/dist/features/core/modules/context/persistence/RuntimeStateController.d.ts +24 -0
  64. package/dist/features/core/modules/context/persistence/adapters/DisabledContextAdapter.d.ts +8 -0
  65. package/dist/features/core/modules/context/persistence/adapters/LocalStorageContextAdapter.d.ts +10 -0
  66. package/dist/features/core/modules/converters/EndgeConverters_Module.d.ts +42 -0
  67. package/dist/features/core/modules/diagnostics/EndgeDiagnostics_Module.d.ts +108 -0
  68. package/dist/features/core/modules/diagnostics/EndgeProblems_Module.d.ts +38 -0
  69. package/dist/features/core/modules/diagnostics/EndgeTelemetry_Module.d.ts +162 -0
  70. package/dist/features/core/modules/diagnostics/adapters/ConsoleDiagnosticsAdapter.d.ts +26 -0
  71. package/dist/features/core/modules/diagnostics/adapters/DiagnosticsAdapterRegistry.d.ts +19 -0
  72. package/dist/features/core/modules/diagnostics/adapters/SentryDiagnosticsAdapter.d.ts +66 -0
  73. package/dist/features/core/modules/diagnostics/adapters/SentryDiagnosticsAdapter.types.d.ts +20 -0
  74. package/dist/features/core/modules/diagnostics/config/diagnostics.config.d.ts +5 -0
  75. package/dist/features/core/modules/diagnostics/domain/entities/DiagnosticsRecordStore.d.ts +52 -0
  76. package/dist/features/core/modules/diagnostics/domain/entities/DiagnosticsSpan.d.ts +29 -0
  77. package/dist/features/core/modules/diagnostics/domain/types/diagnostics.types.d.ts +315 -0
  78. package/dist/features/core/modules/document-import/EndgeDocumentImport_Module.d.ts +33 -0
  79. package/dist/features/core/modules/document-import/domain/types/document-import.type.d.ts +76 -0
  80. package/dist/features/core/modules/document-import/services/parsers/DocumentImportParser.d.ts +23 -0
  81. package/dist/features/core/modules/document-import/services/parsers/GraphQLDocumentImportParser.d.ts +7 -0
  82. package/dist/features/core/modules/document-import/services/parsers/OpenAPIDocumentImportParser.d.ts +7 -0
  83. package/dist/features/core/modules/domain/EndgeDomain_Module.d.ts +1269 -0
  84. package/dist/features/core/modules/domain/component/component-sfc-edit-trigger.d.ts +19 -0
  85. package/dist/features/core/modules/domain/component/sfc/component-sfc-source-parts.d.ts +9 -0
  86. package/dist/features/core/modules/domain/component/sfc-editing.config.d.ts +3 -0
  87. package/dist/features/core/modules/domain/component/table.d.ts +4 -0
  88. package/dist/features/core/modules/domain/documents/domain-document-descriptors.d.ts +102 -0
  89. package/dist/features/core/modules/domain/documents/service-document-serializer.d.ts +11 -0
  90. package/dist/features/core/modules/domain/entities/RAction.d.ts +20 -0
  91. package/dist/features/core/modules/domain/entities/RAuthProfile.d.ts +14 -0
  92. package/dist/features/core/modules/domain/entities/RComponent.d.ts +25 -0
  93. package/dist/features/core/modules/domain/entities/RComponentBase.d.ts +18 -0
  94. package/dist/features/core/modules/domain/entities/RComponentCore.d.ts +26 -0
  95. package/dist/features/core/modules/domain/entities/RComponentSFC.d.ts +33 -0
  96. package/dist/features/core/modules/domain/entities/RComponentTable.d.ts +14 -0
  97. package/dist/features/core/modules/domain/entities/RComponentTableColumn.d.ts +60 -0
  98. package/dist/features/core/modules/domain/entities/RComputation.d.ts +15 -0
  99. package/dist/features/core/modules/domain/entities/RConfiguration.d.ts +11 -0
  100. package/dist/features/core/modules/domain/entities/RConverter.d.ts +15 -0
  101. package/dist/features/core/modules/domain/entities/REntity.d.ts +49 -0
  102. package/dist/features/core/modules/domain/entities/REnvironment.d.ts +9 -0
  103. package/dist/features/core/modules/domain/entities/RFilter.d.ts +13 -0
  104. package/dist/features/core/modules/domain/entities/RFolder.d.ts +19 -0
  105. package/dist/features/core/modules/domain/entities/RI18nBundle.d.ts +16 -0
  106. package/dist/features/core/modules/domain/entities/RIntegration.d.ts +15 -0
  107. package/dist/features/core/modules/domain/entities/RMock.d.ts +20 -0
  108. package/dist/features/core/modules/domain/entities/RNavigation.d.ts +23 -0
  109. package/dist/features/core/modules/domain/entities/RPage.d.ts +43 -0
  110. package/dist/features/core/modules/domain/entities/RPageTemplate.d.ts +32 -0
  111. package/dist/features/core/modules/domain/entities/RParameter.d.ts +11 -0
  112. package/dist/features/core/modules/domain/entities/RPolicy.d.ts +7 -0
  113. package/dist/features/core/modules/domain/entities/RProject.d.ts +63 -0
  114. package/dist/features/core/modules/domain/entities/RQuery.d.ts +16 -0
  115. package/dist/features/core/modules/domain/entities/RStream.d.ts +8 -0
  116. package/dist/features/core/modules/domain/entities/RStyle.d.ts +13 -0
  117. package/dist/features/core/modules/domain/entities/RTenant.d.ts +10 -0
  118. package/dist/features/core/modules/domain/entities/RType.d.ts +13 -0
  119. package/dist/features/core/modules/domain/entities/RUpdate.d.ts +10 -0
  120. package/dist/features/core/modules/domain/entities/RVocabs.d.ts +27 -0
  121. package/dist/features/core/modules/domain/entities/RWorkspace.d.ts +13 -0
  122. package/dist/features/core/modules/domain/resolved/resolved-entity-index.d.ts +12 -0
  123. package/dist/features/core/modules/domain/types/component/component-core.types.d.ts +89 -0
  124. package/dist/features/core/modules/domain/types/component/component.types.d.ts +17 -0
  125. package/dist/features/core/modules/domain/types/component/sfc/ast.types.d.ts +146 -0
  126. package/dist/features/core/modules/domain/types/component/sfc/dependencies.types.d.ts +78 -0
  127. package/dist/features/core/modules/domain/types/component/sfc/ir.types.d.ts +362 -0
  128. package/dist/features/core/modules/domain/types/component/sfc/metadata-visual.types.d.ts +21 -0
  129. package/dist/features/core/modules/domain/types/component/sfc/ports-source.types.d.ts +44 -0
  130. package/dist/features/core/modules/domain/types/component/sfc/ports.types.d.ts +278 -0
  131. package/dist/features/core/modules/domain/types/component/sfc/props-visual.types.d.ts +20 -0
  132. package/dist/features/core/modules/domain/types/component/sfc/table-events.types.d.ts +89 -0
  133. package/dist/features/core/modules/domain/types/component/sfc/visual-projection.types.d.ts +334 -0
  134. package/dist/features/core/modules/domain/types/computation/computation-program.types.d.ts +36 -0
  135. package/dist/features/core/modules/domain/types/computation/computation-runtime.types.d.ts +48 -0
  136. package/dist/features/core/modules/domain/types/computation/computation-source.types.d.ts +31 -0
  137. package/dist/features/core/modules/domain/types/document/document.types.d.ts +105 -0
  138. package/dist/features/core/modules/domain/types/document/domain-export.type.d.ts +78 -0
  139. package/dist/features/core/modules/domain/types/document/entity-management.type.d.ts +33 -0
  140. package/dist/features/core/modules/domain/types/document/query.types.d.ts +65 -0
  141. package/dist/features/core/modules/domain-repository/EndgeDomainRepository_Module.d.ts +67 -0
  142. package/dist/features/core/modules/domain-repository/services/domain-provider.d.ts +10 -0
  143. package/dist/features/core/modules/events/EndgeEvents_Module.d.ts +72 -0
  144. package/dist/features/core/modules/i18n/EndgeI18n_Module.d.ts +88 -0
  145. package/dist/features/core/modules/i18n/domain/i18n.types.d.ts +25 -0
  146. package/dist/features/core/modules/i18n/services/composition-i18n-catalog-projection.d.ts +19 -0
  147. package/dist/features/core/modules/i18n/services/i18n-catalog.d.ts +12 -0
  148. package/dist/features/core/modules/implementations/EndgeImplementations_Module.d.ts +34 -0
  149. package/dist/features/core/modules/implementations/domain/implementation.types.d.ts +59 -0
  150. package/dist/features/core/modules/implementations/services/ImplementationBindingRegistry.d.ts +9 -0
  151. package/dist/features/core/modules/implementations/services/ImplementationProviderRegistry.d.ts +9 -0
  152. package/dist/features/core/modules/mock/EndgeMock_Module.d.ts +29 -0
  153. package/dist/features/core/modules/mock/domain/types/mock-data.type.d.ts +37 -0
  154. package/dist/features/core/modules/program/EndgeProgram_Module.d.ts +111 -0
  155. package/dist/features/core/modules/program/domain/types/action-program.types.d.ts +8 -0
  156. package/dist/features/core/modules/program/domain/types/program.types.d.ts +291 -0
  157. package/dist/features/core/modules/runtime/ComponentSFCEventBoundary.d.ts +36 -0
  158. package/dist/features/core/modules/runtime/EndgeRuntimeScopes_Module.d.ts +32 -0
  159. package/dist/features/core/modules/runtime/EndgeRuntime_Module.d.ts +141 -0
  160. package/dist/features/core/modules/runtime/RuntimeActionRegistry.d.ts +18 -0
  161. package/dist/features/core/modules/runtime/RuntimeAppScope.d.ts +61 -0
  162. package/dist/features/core/modules/runtime/RuntimeBindingScope.d.ts +48 -0
  163. package/dist/features/core/modules/runtime/RuntimeHostBase.d.ts +161 -0
  164. package/dist/features/core/modules/runtime/RuntimeHostFactory.d.ts +15 -0
  165. package/dist/features/core/modules/runtime/RuntimeHostRegistry.d.ts +63 -0
  166. package/dist/features/core/modules/runtime/RuntimeResourceBag.d.ts +12 -0
  167. package/dist/features/core/modules/runtime/RuntimeScope.d.ts +56 -0
  168. package/dist/features/core/modules/runtime/adapters/QueryExecutor_Adapter.d.ts +57 -0
  169. package/dist/features/core/modules/runtime/domain/query-execution.types.d.ts +10 -0
  170. package/dist/features/core/modules/runtime/domain/runtime-entity-map.types.d.ts +34 -0
  171. package/dist/features/core/modules/runtime/domain/runtime-execute.type.d.ts +30 -0
  172. package/dist/features/core/modules/runtime/domain/runtime-host.types.d.ts +380 -0
  173. package/dist/features/core/modules/runtime/domain/runtime-project-session.types.d.ts +36 -0
  174. package/dist/features/core/modules/runtime/domain/runtime-registry.types.d.ts +40 -0
  175. package/dist/features/core/modules/runtime/domain/runtime-scope.types.d.ts +44 -0
  176. package/dist/features/core/modules/runtime/domain/runtime-strategy.types.d.ts +36 -0
  177. package/dist/features/core/modules/runtime/domain/runtime.types.d.ts +76 -0
  178. package/dist/features/core/modules/runtime/domain/sfc-render-inspection.type.d.ts +48 -0
  179. package/dist/features/core/modules/runtime/domain/stream-runtime.types.d.ts +17 -0
  180. package/dist/features/core/modules/runtime/execution/endge-composition.d.ts +10 -0
  181. package/dist/features/core/modules/runtime/execution/endge-data-view.d.ts +59 -0
  182. package/dist/features/core/modules/runtime/execution/endge-project.d.ts +6 -0
  183. package/dist/features/core/modules/runtime/execution/endge-query.d.ts +24 -0
  184. package/dist/features/core/modules/runtime/execution/endge-response-output.d.ts +5 -0
  185. package/dist/features/core/modules/runtime/helpers/raph-phases/endge-runtime-boundary.d.ts +13 -0
  186. package/dist/features/core/modules/runtime/helpers/raph-phases/runtime-boundary-update-phase.d.ts +20 -0
  187. package/dist/features/core/modules/runtime/helpers/raph-phases/runtime-node-update-phase.d.ts +16 -0
  188. package/dist/features/core/modules/runtime/hosts/ActionRuntimeHost.d.ts +30 -0
  189. package/dist/features/core/modules/runtime/hosts/ComponentSFCRuntimeHost.d.ts +149 -0
  190. package/dist/features/core/modules/runtime/hosts/CompositionRuntimeHost.d.ts +150 -0
  191. package/dist/features/core/modules/runtime/hosts/FilterRuntimeHost.d.ts +44 -0
  192. package/dist/features/core/modules/runtime/hosts/FilterViewRuntimeHost.d.ts +56 -0
  193. package/dist/features/core/modules/runtime/hosts/PageRuntimeHost.d.ts +22 -0
  194. package/dist/features/core/modules/runtime/hosts/ProjectRuntimeHost.d.ts +22 -0
  195. package/dist/features/core/modules/runtime/hosts/QueryRuntimeHost.d.ts +63 -0
  196. package/dist/features/core/modules/runtime/hosts/StoreRuntimeHost.d.ts +54 -0
  197. package/dist/features/core/modules/runtime/hosts/StreamRuntimeHost.d.ts +31 -0
  198. package/dist/features/core/modules/runtime/operation/EndgeOperations_Module.d.ts +31 -0
  199. package/dist/features/core/modules/runtime/operation/operation-executor.d.ts +17 -0
  200. package/dist/features/core/modules/runtime/operation/operation-history.d.ts +54 -0
  201. package/dist/features/core/modules/runtime/services/RuntimeStrategyRegistry.d.ts +11 -0
  202. package/dist/features/core/modules/runtime/services/SFCRenderInspectionSession.d.ts +29 -0
  203. package/dist/features/core/modules/runtime/services/strategies/ActionRuntimeStrategy.d.ts +8 -0
  204. package/dist/features/core/modules/runtime/services/strategies/ComponentSFCRuntimeStrategy.d.ts +9 -0
  205. package/dist/features/core/modules/runtime/services/strategies/CompositionRuntimeStrategy.d.ts +9 -0
  206. package/dist/features/core/modules/runtime/services/strategies/FilterRuntimeStrategy.d.ts +9 -0
  207. package/dist/features/core/modules/runtime/services/strategies/PageRuntimeStrategy.d.ts +8 -0
  208. package/dist/features/core/modules/runtime/services/strategies/ProjectRuntimeStrategy.d.ts +8 -0
  209. package/dist/features/core/modules/runtime/services/strategies/QueryRuntimeStrategy.d.ts +9 -0
  210. package/dist/features/core/modules/runtime/services/strategies/StoreRuntimeStrategy.d.ts +9 -0
  211. package/dist/features/core/modules/runtime/services/strategies/StreamRuntimeStrategy.d.ts +12 -0
  212. package/dist/features/core/modules/runtime/services/transports/BrowserSseStreamTransportFactory.d.ts +9 -0
  213. package/dist/features/core/modules/source/EndgeSource_Module.d.ts +59 -0
  214. package/dist/features/core/modules/source/domain/types/composition-source.types.d.ts +408 -0
  215. package/dist/features/core/modules/source/domain/types/configuration-source.types.d.ts +47 -0
  216. package/dist/features/core/modules/source/domain/types/data-view-source.types.d.ts +128 -0
  217. package/dist/features/core/modules/source/domain/types/filter-source.types.d.ts +104 -0
  218. package/dist/features/core/modules/source/domain/types/filter-view.type.d.ts +45 -0
  219. package/dist/features/core/modules/source/domain/types/query-source.types.d.ts +120 -0
  220. package/dist/features/core/modules/source/domain/types/response-output.types.d.ts +10 -0
  221. package/dist/features/core/modules/source/domain/types/source-engine.types.d.ts +242 -0
  222. package/dist/features/core/modules/source/domain/types/source-expression.types.d.ts +113 -0
  223. package/dist/features/core/modules/source/domain/types/store-source.types.d.ts +43 -0
  224. package/dist/features/core/modules/source/domain/types/stream-source.types.d.ts +40 -0
  225. package/dist/features/core/modules/source/domain/types/type-source.types.d.ts +80 -0
  226. package/dist/features/core/modules/source/domain/types/update-source.types.d.ts +32 -0
  227. package/dist/features/core/modules/source/domain/types/vocab-source.types.d.ts +37 -0
  228. package/dist/features/core/modules/source/services/SourceEngineRegistry.d.ts +11 -0
  229. package/dist/features/core/modules/source/services/SourceLanguageRegistry.d.ts +11 -0
  230. package/dist/features/core/modules/source/services/SourcePatchRegistry.d.ts +11 -0
  231. package/dist/features/core/modules/source/services/compilers/action-source-compile.d.ts +17 -0
  232. package/dist/features/core/modules/source/services/compilers/composition-source-compile.d.ts +5 -0
  233. package/dist/features/core/modules/source/services/compilers/configuration-source-compile.d.ts +4 -0
  234. package/dist/features/core/modules/source/services/compilers/data-view-source-compile.d.ts +3 -0
  235. package/dist/features/core/modules/source/services/compilers/filter-source-compile.d.ts +3 -0
  236. package/dist/features/core/modules/source/services/compilers/query-source-compile.d.ts +3 -0
  237. package/dist/features/core/modules/source/services/compilers/source-expression-compile.d.ts +16 -0
  238. package/dist/features/core/modules/source/services/compilers/source-field-compile.d.ts +14 -0
  239. package/dist/features/core/modules/source/services/compilers/source-metadata-compile.d.ts +17 -0
  240. package/dist/features/core/modules/source/services/compilers/store-source-compile.d.ts +3 -0
  241. package/dist/features/core/modules/source/services/compilers/stream-source-compile.d.ts +3 -0
  242. package/dist/features/core/modules/source/services/compilers/type-source-compile.d.ts +9 -0
  243. package/dist/features/core/modules/source/services/compilers/update-source-compile.d.ts +3 -0
  244. package/dist/features/core/modules/source/services/compilers/vocab-source-compile.d.ts +2 -0
  245. package/dist/features/core/modules/source/services/component-sfc/component-sfc-metadata-source-patch.d.ts +6 -0
  246. package/dist/features/core/modules/source/services/component-sfc/component-sfc-ports-source-patch.d.ts +4 -0
  247. package/dist/features/core/modules/source/services/component-sfc/component-sfc-props-source-patch.d.ts +6 -0
  248. package/dist/features/core/modules/source/services/component-sfc/component-sfc-table-source-patch.d.ts +3 -0
  249. package/dist/features/core/modules/source/services/component-sfc/component-sfc-visual-projection.d.ts +3 -0
  250. package/dist/features/core/modules/source/services/composition-activation.d.ts +3 -0
  251. package/dist/features/core/modules/source/services/composition-source-i18n-hints.d.ts +5 -0
  252. package/dist/features/core/modules/source/services/composition-source-patch.d.ts +6 -0
  253. package/dist/features/core/modules/source/services/configuration-source-patch.d.ts +16 -0
  254. package/dist/features/core/modules/source/services/filter-source-patch.d.ts +12 -0
  255. package/dist/features/core/modules/source/services/query-source-patch.d.ts +12 -0
  256. package/dist/features/core/modules/source/services/source-document-reference.d.ts +23 -0
  257. package/dist/features/core/modules/source/services/source-expression-evaluate.d.ts +5 -0
  258. package/dist/features/core/modules/source/services/source-language-syntax.d.ts +11 -0
  259. package/dist/features/core/modules/source/services/strategies/ActionSourceEngineStrategy.d.ts +7 -0
  260. package/dist/features/core/modules/source/services/strategies/ActionSourceLanguageStrategy.d.ts +23 -0
  261. package/dist/features/core/modules/source/services/strategies/CompositionSourceEngineStrategy.d.ts +7 -0
  262. package/dist/features/core/modules/source/services/strategies/CompositionSourceLanguageStrategy.d.ts +14 -0
  263. package/dist/features/core/modules/source/services/strategies/CompositionSourcePatchStrategy.d.ts +13 -0
  264. package/dist/features/core/modules/source/services/strategies/ComputationSourceEngineStrategy.d.ts +7 -0
  265. package/dist/features/core/modules/source/services/strategies/ComputationSourceLanguageStrategy.d.ts +12 -0
  266. package/dist/features/core/modules/source/services/strategies/ConfigurationSourceEngineStrategy.d.ts +7 -0
  267. package/dist/features/core/modules/source/services/strategies/ConfigurationSourceLanguageStrategy.d.ts +12 -0
  268. package/dist/features/core/modules/source/services/strategies/DataViewSourceEngineStrategy.d.ts +12 -0
  269. package/dist/features/core/modules/source/services/strategies/DataViewSourceLanguageStrategy.d.ts +17 -0
  270. package/dist/features/core/modules/source/services/strategies/FilterSourceEngineStrategy.d.ts +8 -0
  271. package/dist/features/core/modules/source/services/strategies/FilterSourceLanguageStrategy.d.ts +12 -0
  272. package/dist/features/core/modules/source/services/strategies/FilterSourcePatchStrategy.d.ts +10 -0
  273. package/dist/features/core/modules/source/services/strategies/QuerySourceEngineStrategy.d.ts +12 -0
  274. package/dist/features/core/modules/source/services/strategies/QuerySourceLanguageStrategy.d.ts +17 -0
  275. package/dist/features/core/modules/source/services/strategies/QuerySourcePatchStrategy.d.ts +13 -0
  276. package/dist/features/core/modules/source/services/strategies/StoreSourceEngineStrategy.d.ts +7 -0
  277. package/dist/features/core/modules/source/services/strategies/StoreSourceLanguageStrategy.d.ts +12 -0
  278. package/dist/features/core/modules/source/services/strategies/StreamSourceEngineStrategy.d.ts +7 -0
  279. package/dist/features/core/modules/source/services/strategies/StreamSourceLanguageStrategy.d.ts +10 -0
  280. package/dist/features/core/modules/source/services/strategies/StyleSourceEngineStrategy.d.ts +7 -0
  281. package/dist/features/core/modules/source/services/strategies/StyleSourceLanguageStrategy.d.ts +43 -0
  282. package/dist/features/core/modules/source/services/strategies/TypeSourceEngineStrategy.d.ts +8 -0
  283. package/dist/features/core/modules/source/services/strategies/TypeSourceLanguageStrategy.d.ts +13 -0
  284. package/dist/features/core/modules/source/services/strategies/UpdateSourceEngineStrategy.d.ts +7 -0
  285. package/dist/features/core/modules/source/services/strategies/UpdateSourceLanguageStrategy.d.ts +10 -0
  286. package/dist/features/core/modules/source/services/strategies/VocabSourceEngineStrategy.d.ts +8 -0
  287. package/dist/features/core/modules/source/services/strategies/VocabSourceLanguageStrategy.d.ts +11 -0
  288. package/dist/features/core/modules/source/services/strategies/VocabSourcePatchStrategy.d.ts +9 -0
  289. package/dist/features/core/modules/source/services/type-source-references.d.ts +14 -0
  290. package/dist/features/core/modules/source/services/type-source-serialize.d.ts +6 -0
  291. package/dist/features/core/modules/source/services/typescript-type-source.d.ts +18 -0
  292. package/dist/features/core/modules/source/services/value-expression-language.d.ts +5 -0
  293. package/dist/features/core/modules/source/services/value-expression-operations.d.ts +10 -0
  294. package/dist/features/core/modules/source/services/vocab-source-patch.d.ts +10 -0
  295. package/dist/features/core/modules/source/templates/configuration.default.source.d.ts +2 -0
  296. package/dist/features/core/modules/styles/EndgeStyles_Module.d.ts +26 -0
  297. package/dist/features/core/modules/styles/domain/types/style.types.d.ts +202 -0
  298. package/dist/features/core/modules/styles/services/endgecss-compile.d.ts +4 -0
  299. package/dist/features/core/modules/styles/services/endgecss-match.d.ts +5 -0
  300. package/dist/features/core/modules/ui/EndgeUIRegistry_Module.d.ts +128 -0
  301. package/dist/features/core/modules/ui/EndgeUI_Module.d.ts +99 -0
  302. package/dist/features/core/modules/ui/domain/types/context-menu.types.d.ts +20 -0
  303. package/dist/features/core/modules/ui/domain/types/ui-render-adapter.type.d.ts +37 -0
  304. package/dist/features/core/modules/ui/registry/UIAdapterRegistry.d.ts +32 -0
  305. package/dist/features/core/modules/ui/tooltip/endge-tooltip-markdown.d.ts +5 -0
  306. package/dist/features/core/modules/ui/ui-composition.config.d.ts +524 -0
  307. package/dist/features/core/modules/updates/EndgeUpdates_Module.d.ts +12 -0
  308. package/dist/features/core/modules/workspace/EndgeWorkspace_Module.d.ts +80 -0
  309. package/dist/features/core/modules/workspace/domain/workspace.types.d.ts +28 -0
  310. package/dist/features/federation/EndgeFederation.d.ts +80 -0
  311. package/dist/features/federation/EndgeModule.d.ts +52 -0
  312. package/dist/features/federation/constants/federation.constants.d.ts +2 -0
  313. package/dist/features/federation/services/EndgeSlotRegistry.d.ts +14 -0
  314. package/dist/features/federation/tools/endge-token.d.ts +3 -0
  315. package/dist/features/federation/tools/sort-endge-modules.d.ts +2 -0
  316. package/dist/features/federation/types/endge-modules.types.d.ts +36 -0
  317. package/dist/features/federation/types/federation.types.d.ts +30 -0
  318. package/dist/features/federation/types/forge.types.d.ts +29 -0
  319. package/dist/main.d.ts +257 -257
  320. package/package.json +6 -6
  321. package/ReadMe.md +0 -23
  322. package/dist/core.cjs +0 -868
  323. package/dist/domain/entities/diagnostics/DiagnosticsRecordStore.d.ts +0 -52
  324. package/dist/domain/entities/diagnostics/DiagnosticsSpan.d.ts +0 -29
  325. package/dist/domain/entities/endge/EndgeFederation.d.ts +0 -68
  326. package/dist/domain/entities/endge/EndgeFederationStorage.d.ts +0 -5
  327. package/dist/domain/entities/endge/EndgeModule.d.ts +0 -49
  328. package/dist/domain/entities/endge/EndgeSlotRegistry.d.ts +0 -14
  329. package/dist/domain/entities/endge/Subscribable.d.ts +0 -20
  330. package/dist/domain/entities/endge/sort-endge-modules.d.ts +0 -2
  331. package/dist/domain/entities/reflect/RAction.d.ts +0 -21
  332. package/dist/domain/entities/reflect/RAuthProfile.d.ts +0 -14
  333. package/dist/domain/entities/reflect/RComponent.d.ts +0 -25
  334. package/dist/domain/entities/reflect/RComponentBase.d.ts +0 -18
  335. package/dist/domain/entities/reflect/RComponentCore.d.ts +0 -26
  336. package/dist/domain/entities/reflect/RComponentSFC.d.ts +0 -33
  337. package/dist/domain/entities/reflect/RComponentTable.d.ts +0 -14
  338. package/dist/domain/entities/reflect/RComponentTableColumn.d.ts +0 -60
  339. package/dist/domain/entities/reflect/RComputation.d.ts +0 -15
  340. package/dist/domain/entities/reflect/RConfiguration.d.ts +0 -11
  341. package/dist/domain/entities/reflect/RConverter.d.ts +0 -15
  342. package/dist/domain/entities/reflect/REntity.d.ts +0 -49
  343. package/dist/domain/entities/reflect/REnvironment.d.ts +0 -9
  344. package/dist/domain/entities/reflect/RFilter.d.ts +0 -14
  345. package/dist/domain/entities/reflect/RFolder.d.ts +0 -21
  346. package/dist/domain/entities/reflect/RI18nBundle.d.ts +0 -17
  347. package/dist/domain/entities/reflect/RIntegration.d.ts +0 -15
  348. package/dist/domain/entities/reflect/RMock.d.ts +0 -20
  349. package/dist/domain/entities/reflect/RNavigation.d.ts +0 -23
  350. package/dist/domain/entities/reflect/RPage.d.ts +0 -43
  351. package/dist/domain/entities/reflect/RPageTemplate.d.ts +0 -32
  352. package/dist/domain/entities/reflect/RParameter.d.ts +0 -12
  353. package/dist/domain/entities/reflect/RPolicy.d.ts +0 -7
  354. package/dist/domain/entities/reflect/RProject.d.ts +0 -63
  355. package/dist/domain/entities/reflect/RQuery.d.ts +0 -18
  356. package/dist/domain/entities/reflect/RStream.d.ts +0 -8
  357. package/dist/domain/entities/reflect/RStyle.d.ts +0 -13
  358. package/dist/domain/entities/reflect/RTenant.d.ts +0 -10
  359. package/dist/domain/entities/reflect/RType.d.ts +0 -13
  360. package/dist/domain/entities/reflect/RUpdate.d.ts +0 -10
  361. package/dist/domain/entities/reflect/RVocabs.d.ts +0 -27
  362. package/dist/domain/entities/reflect/RWorkspace.d.ts +0 -13
  363. package/dist/domain/entities/runtime/ComponentSFCEventBoundary.d.ts +0 -36
  364. package/dist/domain/entities/runtime/RuntimeActionRegistry.d.ts +0 -18
  365. package/dist/domain/entities/runtime/RuntimeAppScope.d.ts +0 -61
  366. package/dist/domain/entities/runtime/RuntimeBindingScope.d.ts +0 -48
  367. package/dist/domain/entities/runtime/RuntimeHostBase.d.ts +0 -161
  368. package/dist/domain/entities/runtime/RuntimeHostFactory.d.ts +0 -15
  369. package/dist/domain/entities/runtime/RuntimeHostRegistry.d.ts +0 -63
  370. package/dist/domain/entities/runtime/RuntimeResourceBag.d.ts +0 -12
  371. package/dist/domain/entities/runtime/RuntimeScope.d.ts +0 -56
  372. package/dist/domain/entities/runtime/RuntimeScopeRegistry.d.ts +0 -24
  373. package/dist/domain/entities/runtime/hosts/ActionRuntimeHost.d.ts +0 -30
  374. package/dist/domain/entities/runtime/hosts/ComponentSFCRuntimeHost.d.ts +0 -149
  375. package/dist/domain/entities/runtime/hosts/CompositionRuntimeHost.d.ts +0 -150
  376. package/dist/domain/entities/runtime/hosts/FilterRuntimeHost.d.ts +0 -44
  377. package/dist/domain/entities/runtime/hosts/FilterViewRuntimeHost.d.ts +0 -56
  378. package/dist/domain/entities/runtime/hosts/PageRuntimeHost.d.ts +0 -22
  379. package/dist/domain/entities/runtime/hosts/ProjectRuntimeHost.d.ts +0 -22
  380. package/dist/domain/entities/runtime/hosts/QueryRuntimeHost.d.ts +0 -63
  381. package/dist/domain/entities/runtime/hosts/StoreRuntimeHost.d.ts +0 -54
  382. package/dist/domain/entities/runtime/hosts/StreamRuntimeHost.d.ts +0 -31
  383. package/dist/domain/types/api.types.d.ts +0 -29
  384. package/dist/domain/types/auth/auth-profile.types.d.ts +0 -181
  385. package/dist/domain/types/component/component-core.types.d.ts +0 -89
  386. package/dist/domain/types/component/component.types.d.ts +0 -12
  387. package/dist/domain/types/component/sfc/ast.types.d.ts +0 -146
  388. package/dist/domain/types/component/sfc/dependencies.types.d.ts +0 -78
  389. package/dist/domain/types/component/sfc/ir.types.d.ts +0 -362
  390. package/dist/domain/types/component/sfc/metadata-visual.types.d.ts +0 -21
  391. package/dist/domain/types/component/sfc/ports-source.types.d.ts +0 -44
  392. package/dist/domain/types/component/sfc/ports.types.d.ts +0 -278
  393. package/dist/domain/types/component/sfc/props-visual.types.d.ts +0 -20
  394. package/dist/domain/types/component/sfc/table-events.types.d.ts +0 -89
  395. package/dist/domain/types/component/sfc/visual-projection.types.d.ts +0 -334
  396. package/dist/domain/types/computation/computation-program.types.d.ts +0 -36
  397. package/dist/domain/types/computation/computation-runtime.types.d.ts +0 -48
  398. package/dist/domain/types/computation/computation-source.types.d.ts +0 -31
  399. package/dist/domain/types/configuration/configuration.type.d.ts +0 -166
  400. package/dist/domain/types/diagnostics/diagnostics.types.d.ts +0 -315
  401. package/dist/domain/types/document/document.types.d.ts +0 -103
  402. package/dist/domain/types/document/domain-export.type.d.ts +0 -86
  403. package/dist/domain/types/document/entity-management.type.d.ts +0 -33
  404. package/dist/domain/types/document/query.types.d.ts +0 -64
  405. package/dist/domain/types/document/workspace.types.d.ts +0 -22
  406. package/dist/domain/types/i18n.types.d.ts +0 -25
  407. package/dist/domain/types/kernel/bootstrap.types.d.ts +0 -55
  408. package/dist/domain/types/kernel/endge-modules.types.d.ts +0 -18
  409. package/dist/domain/types/kernel/federation.types.d.ts +0 -14
  410. package/dist/domain/types/kernel/forge.types.d.ts +0 -30
  411. package/dist/domain/types/mock/mock-data.type.d.ts +0 -37
  412. package/dist/domain/types/presentation/context-menu.types.d.ts +0 -20
  413. package/dist/domain/types/presentation/filter-view.type.d.ts +0 -45
  414. package/dist/domain/types/presentation/ui-render-adapter.type.d.ts +0 -37
  415. package/dist/domain/types/program/action-program.types.d.ts +0 -8
  416. package/dist/domain/types/program/program.types.d.ts +0 -291
  417. package/dist/domain/types/runtime/action.types.d.ts +0 -189
  418. package/dist/domain/types/runtime/context-persistence.types.d.ts +0 -84
  419. package/dist/domain/types/runtime/implementation.types.d.ts +0 -59
  420. package/dist/domain/types/runtime/query-execution.types.d.ts +0 -10
  421. package/dist/domain/types/runtime/runtime-entity-map.types.d.ts +0 -34
  422. package/dist/domain/types/runtime/runtime-execute.type.d.ts +0 -27
  423. package/dist/domain/types/runtime/runtime-host.types.d.ts +0 -380
  424. package/dist/domain/types/runtime/runtime-project-session.types.d.ts +0 -37
  425. package/dist/domain/types/runtime/runtime-registry.types.d.ts +0 -40
  426. package/dist/domain/types/runtime/runtime-scope.types.d.ts +0 -44
  427. package/dist/domain/types/runtime/runtime-strategy.types.d.ts +0 -36
  428. package/dist/domain/types/runtime/runtime.types.d.ts +0 -76
  429. package/dist/domain/types/runtime/sfc-render-inspection.type.d.ts +0 -48
  430. package/dist/domain/types/runtime/stream-runtime.types.d.ts +0 -17
  431. package/dist/domain/types/source/composition-source.types.d.ts +0 -393
  432. package/dist/domain/types/source/configuration-source.types.d.ts +0 -47
  433. package/dist/domain/types/source/data-view-source.types.d.ts +0 -128
  434. package/dist/domain/types/source/filter-source.types.d.ts +0 -104
  435. package/dist/domain/types/source/query-source.types.d.ts +0 -120
  436. package/dist/domain/types/source/response-output.types.d.ts +0 -10
  437. package/dist/domain/types/source/source-engine.types.d.ts +0 -242
  438. package/dist/domain/types/source/source-expression.types.d.ts +0 -113
  439. package/dist/domain/types/source/store-source.types.d.ts +0 -43
  440. package/dist/domain/types/source/stream-source.types.d.ts +0 -40
  441. package/dist/domain/types/source/type-source.types.d.ts +0 -80
  442. package/dist/domain/types/source/update-source.types.d.ts +0 -32
  443. package/dist/domain/types/source/vocab-source.types.d.ts +0 -37
  444. package/dist/domain/types/style/style.types.d.ts +0 -202
  445. package/dist/domain/types/types.d.ts +0 -34
  446. package/dist/model/adapters/auth/OidcBrowserSession_Adapter.d.ts +0 -28
  447. package/dist/model/adapters/diagnostics/ConsoleDiagnosticsAdapter.d.ts +0 -26
  448. package/dist/model/adapters/diagnostics/DiagnosticsAdapterRegistry.d.ts +0 -19
  449. package/dist/model/adapters/diagnostics/SentryDiagnosticsAdapter.d.ts +0 -66
  450. package/dist/model/adapters/diagnostics/SentryDiagnosticsAdapter.types.d.ts +0 -20
  451. package/dist/model/adapters/http/EndgeApi.d.ts +0 -29
  452. package/dist/model/adapters/query/QueryExecutor_Adapter.d.ts +0 -48
  453. package/dist/model/config/diagnostics.config.d.ts +0 -5
  454. package/dist/model/config/domain.config.d.ts +0 -6
  455. package/dist/model/config/kernel.config.d.ts +0 -48
  456. package/dist/model/config/modules.config.d.ts +0 -3
  457. package/dist/model/config/sfc-editing.config.d.ts +0 -3
  458. package/dist/model/config/tooltip.config.d.ts +0 -3
  459. package/dist/model/config/ui-composition.config.d.ts +0 -524
  460. package/dist/model/helpers/raph-phases/endge-runtime-boundary.d.ts +0 -13
  461. package/dist/model/helpers/raph-phases/runtime-boundary-update-phase.d.ts +0 -20
  462. package/dist/model/helpers/raph-phases/runtime-node-update-phase.d.ts +0 -16
  463. package/dist/model/kernel/endge.d.ts +0 -176
  464. package/dist/model/modules/context/endge-configuration-schema.d.ts +0 -24
  465. package/dist/model/modules/context/endge-configuration.d.ts +0 -29
  466. package/dist/model/modules/context/endge-context.d.ts +0 -157
  467. package/dist/model/modules/context/endge-i18n.d.ts +0 -88
  468. package/dist/model/modules/context/endge-vars.d.ts +0 -82
  469. package/dist/model/modules/context/endge-workspace.d.ts +0 -80
  470. package/dist/model/modules/context/persistence/EndgeStorageAdapterRegistry.d.ts +0 -9
  471. package/dist/model/modules/context/persistence/RuntimeStateController.d.ts +0 -24
  472. package/dist/model/modules/context/persistence/adapters/DisabledContextAdapter.d.ts +0 -8
  473. package/dist/model/modules/context/persistence/adapters/LocalStorageContextAdapter.d.ts +0 -10
  474. package/dist/model/modules/diagnostics/endge-diagnostics.d.ts +0 -108
  475. package/dist/model/modules/diagnostics/endge-problems.d.ts +0 -38
  476. package/dist/model/modules/diagnostics/endge-runtime-debugger.d.ts +0 -84
  477. package/dist/model/modules/diagnostics/endge-telemetry.d.ts +0 -162
  478. package/dist/model/modules/domain/endge-domain-repository.d.ts +0 -63
  479. package/dist/model/modules/domain/endge-domain.d.ts +0 -1279
  480. package/dist/model/modules/domain/endge-types.d.ts +0 -12
  481. package/dist/model/modules/domain/endge-vocabs.d.ts +0 -149
  482. package/dist/model/modules/domain/resolved/resolved-entity-index.d.ts +0 -12
  483. package/dist/model/modules/events/endge-events.d.ts +0 -72
  484. package/dist/model/modules/mock/EndgeMock.d.ts +0 -29
  485. package/dist/model/modules/program/endge-compiler.d.ts +0 -232
  486. package/dist/model/modules/program/endge-program.d.ts +0 -111
  487. package/dist/model/modules/program/endge-source.d.ts +0 -59
  488. package/dist/model/modules/runtime/core/endge-actions.d.ts +0 -77
  489. package/dist/model/modules/runtime/core/endge-runtime.d.ts +0 -149
  490. package/dist/model/modules/runtime/core/endge-updates.d.ts +0 -12
  491. package/dist/model/modules/runtime/execution/action/action-program-executor.d.ts +0 -13
  492. package/dist/model/modules/runtime/execution/computation/ComputationGraphExecutor.d.ts +0 -28
  493. package/dist/model/modules/runtime/execution/computation/ComputationResource.d.ts +0 -27
  494. package/dist/model/modules/runtime/execution/computation/ComputationResourceRegistry.d.ts +0 -11
  495. package/dist/model/modules/runtime/execution/computation/EndgeComputation.d.ts +0 -67
  496. package/dist/model/modules/runtime/execution/endge-composition.d.ts +0 -9
  497. package/dist/model/modules/runtime/execution/endge-computation.d.ts +0 -4
  498. package/dist/model/modules/runtime/execution/endge-converters.d.ts +0 -36
  499. package/dist/model/modules/runtime/execution/endge-data-view.d.ts +0 -54
  500. package/dist/model/modules/runtime/execution/endge-project.d.ts +0 -5
  501. package/dist/model/modules/runtime/execution/endge-query.d.ts +0 -24
  502. package/dist/model/modules/runtime/execution/endge-response-output.d.ts +0 -5
  503. package/dist/model/modules/runtime/implementation/endge-implementations.d.ts +0 -22
  504. package/dist/model/modules/runtime/implementation/implementation-binding-registry.d.ts +0 -9
  505. package/dist/model/modules/runtime/implementation/implementation-provider-registry.d.ts +0 -9
  506. package/dist/model/modules/runtime/operation/endge-operations.d.ts +0 -18
  507. package/dist/model/modules/runtime/operation/operation-executor.d.ts +0 -17
  508. package/dist/model/modules/runtime/operation/operation-history.d.ts +0 -54
  509. package/dist/model/modules/security/auth/AuthAdapterRegistry.d.ts +0 -13
  510. package/dist/model/modules/security/auth/AuthProfileRegistry.d.ts +0 -32
  511. package/dist/model/modules/security/auth/AuthRequestResolver.d.ts +0 -16
  512. package/dist/model/modules/security/auth/AuthSessionManager.d.ts +0 -61
  513. package/dist/model/modules/security/auth/AuthSessionStore.d.ts +0 -20
  514. package/dist/model/modules/security/auth/adapters/BasicAuthAdapter.d.ts +0 -10
  515. package/dist/model/modules/security/auth/adapters/BearerAuthAdapter.d.ts +0 -10
  516. package/dist/model/modules/security/auth/adapters/OAuth2ClientCredentialsAuthAdapter.d.ts +0 -8
  517. package/dist/model/modules/security/auth/adapters/OAuth2PasswordAuthAdapter.d.ts +0 -11
  518. package/dist/model/modules/security/auth/adapters/OidcAuthAdapter.d.ts +0 -8
  519. package/dist/model/modules/security/endge-auth.d.ts +0 -39
  520. package/dist/model/modules/ui/endge-styles.d.ts +0 -26
  521. package/dist/model/modules/ui/endge-ui-registry.d.ts +0 -128
  522. package/dist/model/modules/ui/endge-ui.d.ts +0 -99
  523. package/dist/model/modules/ui/registry/UIAdapterRegistry.d.ts +0 -32
  524. package/dist/model/services/auth/auth-context.d.ts +0 -14
  525. package/dist/model/services/compiler/action/action-compile.d.ts +0 -9
  526. package/dist/model/services/compiler/action/action-target-validation.d.ts +0 -10
  527. package/dist/model/services/compiler/component-sfc/component-sfc-attributes.d.ts +0 -9
  528. package/dist/model/services/compiler/component-sfc/component-sfc-built-in-tags.d.ts +0 -4
  529. package/dist/model/services/compiler/component-sfc/component-sfc-compile.d.ts +0 -56
  530. package/dist/model/services/compiler/component-sfc/component-sfc-dependencies.d.ts +0 -4
  531. package/dist/model/services/compiler/component-sfc/component-sfc-expression.d.ts +0 -48
  532. package/dist/model/services/compiler/component-sfc/component-sfc-forward.d.ts +0 -19
  533. package/dist/model/services/compiler/component-sfc/component-sfc-interactions.d.ts +0 -12
  534. package/dist/model/services/compiler/component-sfc/component-sfc-parse.d.ts +0 -14
  535. package/dist/model/services/compiler/component-sfc/component-sfc-ports.d.ts +0 -21
  536. package/dist/model/services/compiler/component-sfc/component-sfc-script.d.ts +0 -30
  537. package/dist/model/services/compiler/component-sfc/component-sfc-source-parts.d.ts +0 -9
  538. package/dist/model/services/compiler/component-sfc/component-sfc-style.d.ts +0 -12
  539. package/dist/model/services/compiler/component-sfc/component-sfc-table-menu.d.ts +0 -20
  540. package/dist/model/services/compiler/component-sfc/component-sfc-table-pin.d.ts +0 -25
  541. package/dist/model/services/compiler/component-sfc/component-sfc-table-sort.d.ts +0 -29
  542. package/dist/model/services/compiler/component-sfc/component-sfc-table-visibility.d.ts +0 -4
  543. package/dist/model/services/compiler/component-sfc/component-sfc-template.d.ts +0 -45
  544. package/dist/model/services/compiler/computation/computation-compile.d.ts +0 -16
  545. package/dist/model/services/compiler/type/type-program-validation.d.ts +0 -18
  546. package/dist/model/services/configuration/configuration-value.d.ts +0 -20
  547. package/dist/model/services/configuration/endge-configuration.d.ts +0 -14
  548. package/dist/model/services/document/DocumentDraftFactory.d.ts +0 -7
  549. package/dist/model/services/document/domain-provider.d.ts +0 -10
  550. package/dist/model/services/document/endge-service-document-serializer.d.ts +0 -5
  551. package/dist/model/services/i18n/composition-i18n-catalog-projection.d.ts +0 -19
  552. package/dist/model/services/i18n/i18n-catalog.d.ts +0 -12
  553. package/dist/model/services/runtime/RuntimeStrategyRegistry.d.ts +0 -11
  554. package/dist/model/services/runtime/SFCRenderInspectionSession.d.ts +0 -29
  555. package/dist/model/services/runtime/strategies/ActionRuntimeStrategy.d.ts +0 -8
  556. package/dist/model/services/runtime/strategies/ComponentSFCRuntimeStrategy.d.ts +0 -9
  557. package/dist/model/services/runtime/strategies/CompositionRuntimeStrategy.d.ts +0 -9
  558. package/dist/model/services/runtime/strategies/FilterRuntimeStrategy.d.ts +0 -9
  559. package/dist/model/services/runtime/strategies/PageRuntimeStrategy.d.ts +0 -8
  560. package/dist/model/services/runtime/strategies/ProjectRuntimeStrategy.d.ts +0 -8
  561. package/dist/model/services/runtime/strategies/QueryRuntimeStrategy.d.ts +0 -9
  562. package/dist/model/services/runtime/strategies/StoreRuntimeStrategy.d.ts +0 -9
  563. package/dist/model/services/runtime/strategies/StreamRuntimeStrategy.d.ts +0 -9
  564. package/dist/model/services/runtime/table-actions.d.ts +0 -3
  565. package/dist/model/services/runtime/transports/BrowserSseStreamTransportFactory.d.ts +0 -5
  566. package/dist/model/services/source-engine/SourceEngineRegistry.d.ts +0 -11
  567. package/dist/model/services/source-engine/SourceLanguageRegistry.d.ts +0 -11
  568. package/dist/model/services/source-engine/SourcePatchRegistry.d.ts +0 -11
  569. package/dist/model/services/source-engine/compilers/action-source-compile.d.ts +0 -17
  570. package/dist/model/services/source-engine/compilers/composition-source-compile.d.ts +0 -5
  571. package/dist/model/services/source-engine/compilers/configuration-source-compile.d.ts +0 -4
  572. package/dist/model/services/source-engine/compilers/data-view-source-compile.d.ts +0 -3
  573. package/dist/model/services/source-engine/compilers/filter-source-compile.d.ts +0 -3
  574. package/dist/model/services/source-engine/compilers/query-source-compile.d.ts +0 -3
  575. package/dist/model/services/source-engine/compilers/source-expression-compile.d.ts +0 -16
  576. package/dist/model/services/source-engine/compilers/source-field-compile.d.ts +0 -14
  577. package/dist/model/services/source-engine/compilers/source-metadata-compile.d.ts +0 -17
  578. package/dist/model/services/source-engine/compilers/store-source-compile.d.ts +0 -3
  579. package/dist/model/services/source-engine/compilers/stream-source-compile.d.ts +0 -3
  580. package/dist/model/services/source-engine/compilers/type-source-compile.d.ts +0 -9
  581. package/dist/model/services/source-engine/compilers/update-source-compile.d.ts +0 -3
  582. package/dist/model/services/source-engine/compilers/vocab-source-compile.d.ts +0 -2
  583. package/dist/model/services/source-engine/component-sfc/component-sfc-metadata-source-patch.d.ts +0 -6
  584. package/dist/model/services/source-engine/component-sfc/component-sfc-ports-source-patch.d.ts +0 -4
  585. package/dist/model/services/source-engine/component-sfc/component-sfc-props-source-patch.d.ts +0 -6
  586. package/dist/model/services/source-engine/component-sfc/component-sfc-table-source-patch.d.ts +0 -3
  587. package/dist/model/services/source-engine/component-sfc/component-sfc-visual-projection.d.ts +0 -3
  588. package/dist/model/services/source-engine/composition-activation.d.ts +0 -3
  589. package/dist/model/services/source-engine/composition-source-i18n-hints.d.ts +0 -5
  590. package/dist/model/services/source-engine/composition-source-patch.d.ts +0 -6
  591. package/dist/model/services/source-engine/configuration-source-patch.d.ts +0 -16
  592. package/dist/model/services/source-engine/filter-source-patch.d.ts +0 -12
  593. package/dist/model/services/source-engine/query-source-patch.d.ts +0 -12
  594. package/dist/model/services/source-engine/source-document-reference.d.ts +0 -23
  595. package/dist/model/services/source-engine/source-expression-evaluate.d.ts +0 -5
  596. package/dist/model/services/source-engine/source-language-syntax.d.ts +0 -11
  597. package/dist/model/services/source-engine/strategies/ActionSourceEngineStrategy.d.ts +0 -7
  598. package/dist/model/services/source-engine/strategies/ActionSourceLanguageStrategy.d.ts +0 -23
  599. package/dist/model/services/source-engine/strategies/CompositionSourceEngineStrategy.d.ts +0 -7
  600. package/dist/model/services/source-engine/strategies/CompositionSourceLanguageStrategy.d.ts +0 -14
  601. package/dist/model/services/source-engine/strategies/CompositionSourcePatchStrategy.d.ts +0 -13
  602. package/dist/model/services/source-engine/strategies/ComputationSourceEngineStrategy.d.ts +0 -7
  603. package/dist/model/services/source-engine/strategies/ComputationSourceLanguageStrategy.d.ts +0 -12
  604. package/dist/model/services/source-engine/strategies/ConfigurationSourceEngineStrategy.d.ts +0 -7
  605. package/dist/model/services/source-engine/strategies/ConfigurationSourceLanguageStrategy.d.ts +0 -12
  606. package/dist/model/services/source-engine/strategies/DataViewSourceEngineStrategy.d.ts +0 -12
  607. package/dist/model/services/source-engine/strategies/DataViewSourceLanguageStrategy.d.ts +0 -17
  608. package/dist/model/services/source-engine/strategies/FilterSourceEngineStrategy.d.ts +0 -8
  609. package/dist/model/services/source-engine/strategies/FilterSourceLanguageStrategy.d.ts +0 -12
  610. package/dist/model/services/source-engine/strategies/FilterSourcePatchStrategy.d.ts +0 -10
  611. package/dist/model/services/source-engine/strategies/QuerySourceEngineStrategy.d.ts +0 -12
  612. package/dist/model/services/source-engine/strategies/QuerySourceLanguageStrategy.d.ts +0 -17
  613. package/dist/model/services/source-engine/strategies/QuerySourcePatchStrategy.d.ts +0 -13
  614. package/dist/model/services/source-engine/strategies/StoreSourceEngineStrategy.d.ts +0 -7
  615. package/dist/model/services/source-engine/strategies/StoreSourceLanguageStrategy.d.ts +0 -12
  616. package/dist/model/services/source-engine/strategies/StreamSourceEngineStrategy.d.ts +0 -7
  617. package/dist/model/services/source-engine/strategies/StreamSourceLanguageStrategy.d.ts +0 -10
  618. package/dist/model/services/source-engine/strategies/StyleSourceEngineStrategy.d.ts +0 -7
  619. package/dist/model/services/source-engine/strategies/StyleSourceLanguageStrategy.d.ts +0 -43
  620. package/dist/model/services/source-engine/strategies/TypeSourceEngineStrategy.d.ts +0 -8
  621. package/dist/model/services/source-engine/strategies/TypeSourceLanguageStrategy.d.ts +0 -13
  622. package/dist/model/services/source-engine/strategies/UpdateSourceEngineStrategy.d.ts +0 -7
  623. package/dist/model/services/source-engine/strategies/UpdateSourceLanguageStrategy.d.ts +0 -10
  624. package/dist/model/services/source-engine/strategies/VocabSourceEngineStrategy.d.ts +0 -8
  625. package/dist/model/services/source-engine/strategies/VocabSourceLanguageStrategy.d.ts +0 -11
  626. package/dist/model/services/source-engine/strategies/VocabSourcePatchStrategy.d.ts +0 -9
  627. package/dist/model/services/source-engine/templates/configuration.default.source.d.ts +0 -2
  628. package/dist/model/services/source-engine/type-source-references.d.ts +0 -14
  629. package/dist/model/services/source-engine/type-source-serialize.d.ts +0 -6
  630. package/dist/model/services/source-engine/typescript-type-source.d.ts +0 -18
  631. package/dist/model/services/source-engine/value-expression-language.d.ts +0 -5
  632. package/dist/model/services/source-engine/value-expression-operations.d.ts +0 -10
  633. package/dist/model/services/source-engine/vocab-source-patch.d.ts +0 -10
  634. package/dist/model/services/style/endgecss-compile.d.ts +0 -4
  635. package/dist/model/services/style/endgecss-match.d.ts +0 -5
  636. package/dist/model/services/tooltip/endge-tooltip-markdown.d.ts +0 -5
  637. package/dist/test/component-sfc-interactions.bench.d.ts +0 -1
  638. package/dist/test/component-sfc-interactions.test.d.ts +0 -1
  639. package/dist/test/component-sfc-preview-props.test.d.ts +0 -1
  640. package/dist/test/component-sfc-table-menu.test.d.ts +0 -1
  641. package/dist/test/component-sfc-table-pin.test.d.ts +0 -1
  642. package/dist/test/component-sfc-table-sort.test.d.ts +0 -1
  643. package/dist/test/component-sfc-table-visibility.test.d.ts +0 -1
  644. package/dist/test/configuration/endge-configuration.test.d.ts +0 -1
  645. package/dist/test/diagnostics/console-diagnostics-adapter.test.d.ts +0 -1
  646. package/dist/test/diagnostics/endge-diagnostics.test.d.ts +0 -1
  647. package/dist/test/diagnostics/endge-problems.test.d.ts +0 -1
  648. package/dist/test/diagnostics/sentry-diagnostics-adapter.test.d.ts +0 -1
  649. package/dist/test/domain/entities/endge/EndgeFederation.test.d.ts +0 -1
  650. package/dist/test/domain/entities/endge/subscribable.test.d.ts +0 -1
  651. package/dist/test/domain/entities/reflect/RComponentSFC.test.d.ts +0 -1
  652. package/dist/test/domain/entities/runtime/ComponentSFCEventBoundary.test.d.ts +0 -1
  653. package/dist/test/domain/entities/runtime/RuntimeAppScope.test.d.ts +0 -1
  654. package/dist/test/domain/entities/runtime/composition-manual-runtime.integration.test.d.ts +0 -1
  655. package/dist/test/domain/entities/runtime/composition-operation-history.integration.test.d.ts +0 -1
  656. package/dist/test/domain/entities/runtime/composition-style-scope.integration.test.d.ts +0 -1
  657. package/dist/test/domain/entities/runtime/hosts/ComponentSFCRuntimeHost.test.d.ts +0 -1
  658. package/dist/test/domain/entities/runtime/hosts/CompositionRuntimeHost.test.d.ts +0 -1
  659. package/dist/test/domain/entities/runtime/hosts/FilterRuntimeHost.test.d.ts +0 -1
  660. package/dist/test/domain/entities/runtime/hosts/FilterViewRuntimeHost.test.d.ts +0 -1
  661. package/dist/test/domain/entities/runtime/hosts/QueryRuntimeHost.test.d.ts +0 -1
  662. package/dist/test/domain/entities/runtime/hosts/StoreRuntimeHost.test.d.ts +0 -1
  663. package/dist/test/domain/entities/runtime/runtime-memory-lifecycle.test.d.ts +0 -1
  664. package/dist/test/domain/entities/runtime/runtime-scope.test.d.ts +0 -1
  665. package/dist/test/domain/entity-management.test.d.ts +0 -1
  666. package/dist/test/domain/entity-meta.test.d.ts +0 -1
  667. package/dist/test/endge-context-persistence.test.d.ts +0 -1
  668. package/dist/test/endge-module-ownership.test.d.ts +0 -1
  669. package/dist/test/endge-runtime-persistence.test.d.ts +0 -1
  670. package/dist/test/endge-workspace.test.d.ts +0 -1
  671. package/dist/test/fixtures/action-source.d.ts +0 -1
  672. package/dist/test/fixtures/endge-workspace.d.ts +0 -2
  673. package/dist/test/legacy-component-documents.test.d.ts +0 -1
  674. package/dist/test/model/helpers/raph-phases/runtime-boundary-update-phase.test.d.ts +0 -1
  675. package/dist/test/model/helpers/raph-phases/runtime-node-update-phase.test.d.ts +0 -1
  676. package/dist/test/model/modules/context/endge-context-theme-default.test.d.ts +0 -1
  677. package/dist/test/model/modules/context/endge-context.test.d.ts +0 -1
  678. package/dist/test/model/modules/context/endge-workspace.test.d.ts +0 -1
  679. package/dist/test/model/modules/context/workspace-variables.test.d.ts +0 -1
  680. package/dist/test/model/modules/diagnostics/endge-diagnostics-submodules.test.d.ts +0 -1
  681. package/dist/test/model/modules/domain/endge-domain-export.test.d.ts +0 -1
  682. package/dist/test/model/modules/domain/endge-vocabs-source.test.d.ts +0 -1
  683. package/dist/test/model/modules/domain/service-backend-snapshot.test.d.ts +0 -1
  684. package/dist/test/model/modules/domain/type-identity-index.test.d.ts +0 -1
  685. package/dist/test/model/modules/mock/EndgeMock.test.d.ts +0 -1
  686. package/dist/test/model/modules/program/endge-compiler-component-tags.test.d.ts +0 -1
  687. package/dist/test/model/modules/program/endge-compiler-composition.test.d.ts +0 -1
  688. package/dist/test/model/modules/program/endge-compiler-computation.test.d.ts +0 -1
  689. package/dist/test/model/modules/program/endge-compiler-metadata.test.d.ts +0 -1
  690. package/dist/test/model/modules/program/endge-compiler-ports.test.d.ts +0 -1
  691. package/dist/test/model/modules/program/endge-compiler-query-auth.test.d.ts +0 -1
  692. package/dist/test/model/modules/program/endge-compiler-store-mock.test.d.ts +0 -1
  693. package/dist/test/model/modules/program/endge-compiler-type.test.d.ts +0 -1
  694. package/dist/test/model/modules/program/endge-program.test.d.ts +0 -1
  695. package/dist/test/model/modules/program/endge-source.test.d.ts +0 -1
  696. package/dist/test/model/modules/runtime/action-runtime.test.d.ts +0 -1
  697. package/dist/test/model/modules/runtime/computation-resource.test.d.ts +0 -1
  698. package/dist/test/model/modules/runtime/computation-source-preview.test.d.ts +0 -1
  699. package/dist/test/model/modules/runtime/endge-project.test.d.ts +0 -1
  700. package/dist/test/model/modules/runtime/executable-implementations.test.d.ts +0 -1
  701. package/dist/test/model/modules/runtime/execution/endge-data-view-converter.test.d.ts +0 -1
  702. package/dist/test/model/modules/runtime/execution/endge-data-view.test.d.ts +0 -1
  703. package/dist/test/model/modules/runtime/operation-history.test.d.ts +0 -1
  704. package/dist/test/model/services/compiler/component-sfc/component-sfc-action-reactions.test.d.ts +0 -1
  705. package/dist/test/model/services/compiler/component-sfc/component-sfc-compile.test.d.ts +0 -1
  706. package/dist/test/model/services/compiler/component-sfc/component-sfc-dependencies.test.d.ts +0 -1
  707. package/dist/test/model/services/compiler/component-sfc/component-sfc-editable.test.d.ts +0 -1
  708. package/dist/test/model/services/compiler/component-sfc/component-sfc-parse.test.d.ts +0 -1
  709. package/dist/test/model/services/compiler/component-sfc/component-sfc-ports.test.d.ts +0 -1
  710. package/dist/test/model/services/compiler/component-sfc/component-sfc-tooltip.test.d.ts +0 -1
  711. package/dist/test/model/services/compiler/computation/computation-compile.test.d.ts +0 -1
  712. package/dist/test/model/services/compiler/computation/groundhandling-process-state.test.d.ts +0 -1
  713. package/dist/test/model/services/compiler/type/type-program-validation.test.d.ts +0 -1
  714. package/dist/test/model/services/document/DocumentDraftFactory.test.d.ts +0 -1
  715. package/dist/test/model/services/query/QueryExecutor.test.d.ts +0 -1
  716. package/dist/test/model/services/runtime/strategies/CompositionRuntimeStrategy.test.d.ts +0 -1
  717. package/dist/test/model/services/source-engine/action-source-compile.test.d.ts +0 -1
  718. package/dist/test/model/services/source-engine/compilers/source-metadata-compile.test.d.ts +0 -1
  719. package/dist/test/model/services/source-engine/compilers/source-model-reference-compile.test.d.ts +0 -1
  720. package/dist/test/model/services/source-engine/compilers/store-source-compile.test.d.ts +0 -1
  721. package/dist/test/model/services/source-engine/component-sfc/component-sfc-metadata-source-patch.test.d.ts +0 -1
  722. package/dist/test/model/services/source-engine/component-sfc/component-sfc-ports-source-patch.test.d.ts +0 -1
  723. package/dist/test/model/services/source-engine/component-sfc/component-sfc-props-source-patch.test.d.ts +0 -1
  724. package/dist/test/model/services/source-engine/component-sfc/component-sfc-table-source-patch.test.d.ts +0 -1
  725. package/dist/test/model/services/source-engine/component-sfc/component-sfc-visual-projection.test.d.ts +0 -1
  726. package/dist/test/model/services/source-engine/composition-activation.test.d.ts +0 -1
  727. package/dist/test/model/services/source-engine/composition-component-events.test.d.ts +0 -1
  728. package/dist/test/model/services/source-engine/composition-scope-source.test.d.ts +0 -1
  729. package/dist/test/model/services/source-engine/configuration-source.test.d.ts +0 -1
  730. package/dist/test/model/services/source-engine/data-view-incremental.test.d.ts +0 -1
  731. package/dist/test/model/services/source-engine/data-view-select-steps.test.d.ts +0 -1
  732. package/dist/test/model/services/source-engine/filter-composition-source.test.d.ts +0 -1
  733. package/dist/test/model/services/source-engine/query-source-v1-migration.test.d.ts +0 -1
  734. package/dist/test/model/services/source-engine/source-document-reference.test.d.ts +0 -1
  735. package/dist/test/model/services/source-engine/source-language-normalize.test.d.ts +0 -1
  736. package/dist/test/model/services/source-engine/type-source-compile.test.d.ts +0 -1
  737. package/dist/test/model/services/source-engine/typescript-type-source.test.d.ts +0 -1
  738. package/dist/test/model/services/source-engine/value-expression-operations.test.d.ts +0 -1
  739. package/dist/test/model/services/source-engine/value-expression.test.d.ts +0 -1
  740. package/dist/test/query-derived.test.d.ts +0 -1
  741. package/dist/test/query-outputs.test.d.ts +0 -1
  742. package/dist/test/runtime/sfc-render-inspection-session.test.d.ts +0 -1
  743. package/dist/test/runtime-table-commands.test.d.ts +0 -1
  744. package/dist/test/security/auth-adapters-and-profiles.test.d.ts +0 -1
  745. package/dist/test/security/auth-context.test.d.ts +0 -1
  746. package/dist/test/security/auth-profile-serializer.test.d.ts +0 -1
  747. package/dist/test/security/auth-session-manager.test.d.ts +0 -1
  748. package/dist/test/security/auth-session-store.test.d.ts +0 -1
  749. package/dist/test/security/auth-sse.test.d.ts +0 -1
  750. package/dist/test/security/auth-test-helpers.d.ts +0 -12
  751. package/dist/test/security/oidc-browser-session.test.d.ts +0 -1
  752. package/dist/test/style/component-sfc-endgecss.test.d.ts +0 -1
  753. package/dist/test/style/endge-style-lease.test.d.ts +0 -1
  754. package/dist/test/style/endge-style-lifecycle.test.d.ts +0 -1
  755. package/dist/test/style/endge-style-program.test.d.ts +0 -1
  756. package/dist/test/style/endgecss-compile.test.d.ts +0 -1
  757. package/dist/test/tools/component-sfc-edit-trigger.test.d.ts +0 -1
  758. package/dist/test/tools/type-import-source.test.d.ts +0 -1
  759. package/dist/test/tooltip/endge-tooltip-markdown.test.d.ts +0 -1
  760. package/dist/test/ui-adapter-registry.test.d.ts +0 -1
  761. package/dist/tools/component-sfc-edit-trigger.d.ts +0 -19
  762. package/dist/tools/graphql-parser.d.ts +0 -5
  763. package/dist/tools/openapi-parser.d.ts +0 -4
  764. package/dist/tools/table.d.ts +0 -4
  765. /package/dist/{model/modules/security/auth → features/core/modules/auth/domain}/AuthInteractionRequiredError.d.ts +0 -0
  766. /package/dist/{domain/types/auth → features/core/modules/auth/domain/types}/auth-runtime.types.d.ts +0 -0
  767. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/arrays/split.d.ts +0 -0
  768. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/arrays/to-array.d.ts +0 -0
  769. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-date-string.d.ts +0 -0
  770. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-iso-string.d.ts +0 -0
  771. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-iso-z.d.ts +0 -0
  772. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/date-to-time-string.d.ts +0 -0
  773. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/iso-string-to-date.d.ts +0 -0
  774. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/iso-string-to-time-string.d.ts +0 -0
  775. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/string-to-date.d.ts +0 -0
  776. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/time-string-to-date.d.ts +0 -0
  777. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/timestamp-to-date.d.ts +0 -0
  778. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/date/weekdays-range.d.ts +0 -0
  779. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/json/json-parse.d.ts +0 -0
  780. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/json/json-stringify.d.ts +0 -0
  781. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/numbers/number-to-string.d.ts +0 -0
  782. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/numbers/string-to-number.d.ts +0 -0
  783. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/strings/default-if-empty.d.ts +0 -0
  784. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/strings/string-to-boolean.d.ts +0 -0
  785. /package/dist/{model/seed/converters → features/core/modules/converters/tools}/strings/string-trim.d.ts +0 -0
  786. /package/dist/{domain/types/diagnostics → features/core/modules/diagnostics/domain/types}/diagnostics-adapter.type.d.ts +0 -0
  787. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RComponentDSL.d.ts +0 -0
  788. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RComposition.d.ts +0 -0
  789. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RDataView.d.ts +0 -0
  790. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RField.d.ts +0 -0
  791. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RQueryFilter.d.ts +0 -0
  792. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RStore.d.ts +0 -0
  793. /package/dist/{domain/entities/reflect → features/core/modules/domain/entities}/RVersion.d.ts +0 -0
  794. /package/dist/{domain → features/core/modules/domain}/types/component/sfc/intrinsic-events.types.d.ts +0 -0
  795. /package/dist/{domain → features/core/modules/domain}/types/component/sfc/location.types.d.ts +0 -0
  796. /package/dist/{domain → features/core/modules/domain}/types/component/sfc/source.types.d.ts +0 -0
  797. /package/dist/{domain → features/core/modules/domain}/types/component/sfc/table-visibility.types.d.ts +0 -0
  798. /package/dist/{domain → features/core/modules/domain}/types/component/sfc/tag-attribute-contract.types.d.ts +0 -0
  799. /package/dist/{domain → features/core/modules/domain}/types/component/sfc/tag-input-contract.types.d.ts +0 -0
  800. /package/dist/{domain → features/core/modules/domain}/types/computation/computation.types.d.ts +0 -0
  801. /package/dist/{domain → features/core/modules/domain}/types/document/codegen.types.d.ts +0 -0
  802. /package/dist/{domain → features/core/modules/domain}/types/document/document-create.type.d.ts +0 -0
  803. /package/dist/{domain → features/core/modules/domain}/types/document/document-draft.type.d.ts +0 -0
  804. /package/dist/{domain → features/core/modules/domain}/types/document/document-move.type.d.ts +0 -0
  805. /package/dist/{domain → features/core/modules/domain}/types/document/domain-provider.type.d.ts +0 -0
  806. /package/dist/{domain → features/core/modules/domain}/types/document/domain-snapshot.type.d.ts +0 -0
  807. /package/dist/{domain → features/core/modules/domain}/types/document/filter.types.d.ts +0 -0
  808. /package/dist/{domain → features/core/modules/domain}/types/document/navigation.types.d.ts +0 -0
  809. /package/dist/{domain/entities/endge → features/core/modules/events/domain}/EndgeEvent.d.ts +0 -0
  810. /package/dist/{domain/types/kernel → features/core/modules/events/domain}/events.types.d.ts +0 -0
  811. /package/dist/{domain/types/program → features/core/modules/program/domain/types}/program-metadata.types.d.ts +0 -0
  812. /package/dist/{domain/entities/endge → features/core/modules/runtime/domain}/EndgeActionJsonScript.d.ts +0 -0
  813. /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/execution-context.types.d.ts +0 -0
  814. /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/runtime-resource.types.d.ts +0 -0
  815. /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/table-binding.types.d.ts +0 -0
  816. /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/table.types.d.ts +0 -0
  817. /package/dist/{domain/types/runtime → features/core/modules/runtime/domain}/vocab-cache.types.d.ts +0 -0
  818. /package/dist/{domain/types/source → features/core/modules/source/domain/types}/action-source.types.d.ts +0 -0
  819. /package/dist/{model/services/source-engine → features/core/modules/source/services}/compilers/source-model-reference-compile.d.ts +0 -0
  820. /package/dist/{model/services/source-engine → features/core/modules/source/services}/composition-source-normalize.d.ts +0 -0
  821. /package/dist/{model/services/source-engine → features/core/modules/source/services}/migrations/query-source-v1-migration.d.ts +0 -0
  822. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/action.default.source.d.ts +0 -0
  823. /package/dist/{model/services/compiler/component-sfc/templates → features/core/modules/source/templates/component-sfc}/component-sfc.default.source.d.ts +0 -0
  824. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/composition.default.source.d.ts +0 -0
  825. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/computation.default.source.d.ts +0 -0
  826. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/data-view.default.source.d.ts +0 -0
  827. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/filter.default.source.d.ts +0 -0
  828. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/query.default.source.d.ts +0 -0
  829. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/store.default.source.d.ts +0 -0
  830. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/stream.default.source.d.ts +0 -0
  831. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/type.default.source.d.ts +0 -0
  832. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/update.default.source.d.ts +0 -0
  833. /package/dist/{model/services/source-engine → features/core/modules/source}/templates/vocab.default.source.d.ts +0 -0
  834. /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/jsx.types.d.ts +0 -0
  835. /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/tooltip-markdown.types.d.ts +0 -0
  836. /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/ui-composition.types.d.ts +0 -0
  837. /package/dist/{domain/types/presentation → features/core/modules/ui/domain/types}/ui.types.d.ts +0 -0
  838. /package/dist/{tools → features/core/modules/updates/tools}/ScheduleUpdate-sse-generator.d.ts +0 -0
  839. /package/dist/{domain/entities/endge → features/federation/services}/EndgeModuleController.d.ts +0 -0
@@ -0,0 +1,17 @@
1
+ import { StreamSourceArtifact } from '../../source/domain/types/stream-source.types';
2
+ export interface StreamTransportMessage {
3
+ sourceEvent: string;
4
+ id: string | null;
5
+ data: unknown;
6
+ }
7
+ export interface StreamTransportConnection {
8
+ close: () => void;
9
+ }
10
+ /** Нейтральный к браузеру порт, используемый StreamRuntimeHost. */
11
+ export interface StreamTransportFactory {
12
+ open: (artifact: StreamSourceArtifact, callbacks: {
13
+ message: (message: StreamTransportMessage) => void;
14
+ error: (error: unknown) => void;
15
+ open: () => void;
16
+ }) => StreamTransportConnection;
17
+ }
@@ -0,0 +1,10 @@
1
+ import { CompositionRuntimeHost } from '../hosts/CompositionRuntimeHost';
2
+ import { CompositionMountOptions, CompositionPreviewProps, CompositionSession } from '../../source/domain/types/composition-source.types';
3
+ import { EndgeDataMode } from '../../workspace/domain/workspace.types';
4
+ /** Публичный API монтирования Composition runtime sessions. */
5
+ export declare class EndgeComposition {
6
+ /** Монтирует Composition runtime и возвращает управляемую session. */
7
+ mount(identity: string, options?: CompositionMountOptions): Promise<CompositionSession<CompositionRuntimeHost>>;
8
+ }
9
+ /** Материализует литералы только для preview и ссылки RMock в обычные props Composition. */
10
+ export declare function materializeCompositionPreviewProps(previewProps: CompositionPreviewProps | null | undefined, dataMode?: EndgeDataMode): Record<string, unknown>;
@@ -0,0 +1,59 @@
1
+ import { DataViewProgramPayload, ProgramArtifact } from '../../program/domain/types/program.types';
2
+ import { DataViewRef, DataViewRunContext, DataViewRunTools } from '../../source/domain/types/data-view-source.types';
3
+ import { RDataView } from '../../domain/entities/RDataView';
4
+ /** Сообщает, что persisted DataView не прошёл общий build pipeline. */
5
+ export declare class DataViewArtifactUnavailableError extends Error {
6
+ readonly code = "data_view_artifact_unavailable";
7
+ constructor(identity: string);
8
+ }
9
+ /** Модуль выполнения скомпилированных RDataView artifacts. */
10
+ export declare class EndgeDataView {
11
+ /** Выполняет DataView по id/identity/model над переданным input object. */
12
+ run(dataViewOrId: RDataView | string | number, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext): unknown;
13
+ /** Выполняет уже скомпилированный DataView artifact без поиска в домене. */
14
+ runArtifact(artifact: ProgramArtifact<DataViewProgramPayload>, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext): unknown;
15
+ /** Выполняет уже скомпилированный DataView payload. */
16
+ runPayload(artifact: DataViewProgramPayload, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext & {
17
+ children?: ProgramArtifact[];
18
+ }): unknown;
19
+ /** Вычисляет object projection один раз над целым DataView input. */
20
+ private _runProjection;
21
+ /** Вычисляет root ValueExpression без object projection wrapper. */
22
+ private _runExpression;
23
+ /** Выполняет DataView-ссылку из query/DataView artifact. */
24
+ runRef(ref: DataViewRef, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext & {
25
+ children?: ProgramArtifact[];
26
+ }): unknown;
27
+ /** Выполняет DataView source без записи artifact в `Endge.program`. */
28
+ runSource(source: string, input: unknown, tools?: Partial<DataViewRunTools>, context?: DataViewRunContext): unknown;
29
+ /** Возвращает DataView model из домена или входного экземпляра. */
30
+ private _resolveDataView;
31
+ /** Возвращает только artifact, подготовленный общим compiler build. */
32
+ private _resolveArtifact;
33
+ /** Останавливает manual DataView до появления безопасного runtime. */
34
+ private _runManual;
35
+ /** Интерпретирует декларативные pipeline steps без eval. */
36
+ private _runPipeline;
37
+ /** Заполняет отсутствующие props декларативными defaults DataView artifact. */
38
+ private _resolveProps;
39
+ /** Последовательно вычисляет whole-value steps; каждый select получает результат предыдущего. */
40
+ private _runSelectPipeline;
41
+ /** Собирает базовый output для map step из spread-источников. */
42
+ private _createMapOutput;
43
+ /** Вычисляет join-result для текущей строки pipeline. */
44
+ private _resolveJoin;
45
+ /** Вычисляет одно поле map-expression. */
46
+ private _evaluateExpression;
47
+ /** Применяет chain operation к path-expression. */
48
+ private _applyPathOperation;
49
+ /** Создает набор runtime tools с возможностью точечной подмены в preview. */
50
+ private _createTools;
51
+ /** Минимальные built-in converters для preview v1. */
52
+ private _convert;
53
+ /** Применяет один зарегистрированный Converter ко всему текущему значению. */
54
+ convert(identity: string, value: unknown, options?: Record<string, unknown>): unknown;
55
+ /** Читает dot-path из object/array без выбрасывания ошибок. */
56
+ private _path;
57
+ /** Ищет локальный DataView artifact среди child artifacts, включая вложенные children. */
58
+ private _findLocalDataViewArtifact;
59
+ }
@@ -0,0 +1,6 @@
1
+ import { ProjectRuntimeMountOptions, ProjectRuntimeSession } from '../domain/runtime-project-session.types';
2
+ import { CompositionRuntimeHost } from '../hosts/CompositionRuntimeHost';
3
+ /** Монтирует один project в изолированную runtime-сессию. */
4
+ export declare class EndgeProject {
5
+ mount(identity: string, options?: ProjectRuntimeMountOptions): Promise<ProjectRuntimeSession<CompositionRuntimeHost>>;
6
+ }
@@ -0,0 +1,24 @@
1
+ import { RQuery } from '../../domain/entities/RQuery';
2
+ import { QueryProgramPayload } from '../../program/domain/types/program.types';
3
+ import { RuntimeParentRef } from '../domain/runtime-execute.type';
4
+ import { QueryExecutor_Adapter } from '../adapters/QueryExecutor_Adapter';
5
+ /**
6
+ * Модуль выполнения доменных query: custom executor, mock data и REST.
7
+ */
8
+ export declare class EndgeQuery {
9
+ private readonly _executor;
10
+ /** Создаёт query module с явным transport adapter. */
11
+ constructor(executor?: QueryExecutor_Adapter);
12
+ /**
13
+ * Выполняет query через compiled artifact и сохраняет результат в Raph.
14
+ */
15
+ run(query: RQuery, params?: Record<string, unknown>, parent?: RuntimeParentRef | null): Promise<any>;
16
+ /** Выполняет artifact для QueryRuntimeHost без преждевременной записи stores. */
17
+ executeArtifact(input: {
18
+ payload: QueryProgramPayload;
19
+ props: Record<string, unknown>;
20
+ signal?: AbortSignal;
21
+ }): Promise<any>;
22
+ /** Извлекает response-backed output для атомарного commit в QueryRuntimeHost. */
23
+ readResponseOutput(output: QueryProgramPayload['outputs'][number], response: unknown): unknown;
24
+ }
@@ -0,0 +1,5 @@
1
+ import { ProgramArtifact } from '../../program/domain/types/program.types';
2
+ import { DataViewRef } from '../../source/domain/types/data-view-source.types';
3
+ import { ResponseOutputTransform } from '../../source/domain/types/response-output.types';
4
+ /** Применяет упорядоченные transforms Query и Vocab без неявного mapping массивов. */
5
+ export declare function runResponseOutputTransforms(transforms: readonly ResponseOutputTransform[] | undefined, legacyDataViews: readonly DataViewRef[], value: unknown, children?: readonly ProgramArtifact[]): unknown;
@@ -0,0 +1,13 @@
1
+ import { DepGraph, PhaseExecutorContext, PhaseName, RaphNode, RaphPhase } from '../../../../../../../../@endge-raph/dist/main.d.ts';
2
+ /** Опции фабрики */
3
+ export interface BoundaryPhaseOptions {
4
+ isBoundary: (n: RaphNode) => boolean;
5
+ toRoot?: (boundary: RaphNode, graph: DepGraph) => RaphNode | null;
6
+ emitToRoot: (root: RaphNode, children: PhaseExecutorContext[]) => void;
7
+ onBoundary?: (boundary: RaphNode) => void;
8
+ name?: PhaseName;
9
+ routes?: string[];
10
+ nodes?: (n: RaphNode) => boolean;
11
+ }
12
+ export declare function invalidateBoundaryCache(): void;
13
+ export declare function createBoundaryAggregationPhase(graph: DepGraph, opts: BoundaryPhaseOptions): RaphPhase;
@@ -0,0 +1,20 @@
1
+ import { DepGraph, PhaseEvent, PhaseExecutorContext, PhaseName, RaphNode, RaphPhase } from '../../../../../../../../@endge-raph/dist/main.d.ts';
2
+ import { RuntimeDirtyBoundary, RuntimeHost } from '../../domain/runtime-host.types';
3
+ export interface RuntimeBoundaryAggregatedUpdate {
4
+ node: RaphNode;
5
+ events: PhaseEvent[];
6
+ boundaries: RuntimeDirtyBoundary[];
7
+ }
8
+ export interface RuntimeBoundaryUpdatePhaseOptions {
9
+ name?: PhaseName;
10
+ getGraph?: () => DepGraph<RaphNode>;
11
+ resolveHost?: (runtimeId: string) => RuntimeHost | null;
12
+ }
13
+ /** Универсальная Raph-фаза обновления runtime-сущностей через верхние dirty boundaries. */
14
+ export declare class RuntimeBoundaryUpdatePhase {
15
+ static readonly PHASE_NAME: PhaseName;
16
+ /** Создает Raph-фазу, которая вызывает update у runtime-host верхних dirty boundaries. */
17
+ static make(options?: RuntimeBoundaryUpdatePhaseOptions): RaphPhase;
18
+ }
19
+ /** Агрегирует dirty runtime-ноды к минимальному списку верхних dirty boundaries. */
20
+ export declare function aggregateRuntimeBoundaryUpdates(graph: DepGraph<RaphNode>, ctxs: PhaseExecutorContext[]): RuntimeBoundaryAggregatedUpdate[];
@@ -0,0 +1,16 @@
1
+ import { PhaseName, RaphPhase } from '../../../../../../../../@endge-raph/dist/main.d.ts';
2
+ import { RuntimeHost } from '../../domain/runtime-host.types';
3
+ export interface RuntimeNodeUpdatePhaseOptions {
4
+ name?: PhaseName;
5
+ resolveHost?: (runtimeId: string) => RuntimeHost | null;
6
+ }
7
+ /**
8
+ * Выполняет логические runtime update-ы.
9
+ *
10
+ * Фаза ничего не знает о Query, Filter или Composition: она лишь передаёт
11
+ * накопленные Raph events root-ноды соответствующему RuntimeHost.
12
+ */
13
+ export declare class RuntimeNodeUpdatePhase {
14
+ static readonly PHASE_NAME: PhaseName;
15
+ static make(options?: RuntimeNodeUpdatePhaseOptions): RaphPhase;
16
+ }
@@ -0,0 +1,30 @@
1
+ import { RAction } from '../../domain/entities/RAction';
2
+ import { ActionRuntimeHostContext, RuntimeHost } from '../domain/runtime-host.types';
3
+ import { RuntimeHostBase } from '../RuntimeHostBase';
4
+ /**
5
+ * Создаёт контекст action-runtime с опциональной ссылкой на родительский контекст.
6
+ * Создаёт изолированный invocation context и optional parent link.
7
+ */
8
+ export declare function createActionContext(options: {
9
+ input?: Record<string, unknown> | unknown;
10
+ parent?: ActionRuntimeHostContext | null;
11
+ }): ActionRuntimeHostContext;
12
+ export declare class ActionRuntimeHost extends RuntimeHostBase<'action'> {
13
+ constructor(input: {
14
+ id: string;
15
+ model: RAction;
16
+ entityIdentity: string;
17
+ parent?: RuntimeHost<any, any> | null;
18
+ title?: string;
19
+ meta?: Record<string, unknown>;
20
+ });
21
+ /**
22
+ * LIFECYCLE
23
+ */
24
+ static createRuntime(input: {
25
+ id: string;
26
+ model: RAction;
27
+ meta?: Record<string, any>;
28
+ parent?: RuntimeHost<any, any> | null;
29
+ }): RuntimeHost<'action'>;
30
+ }
@@ -0,0 +1,149 @@
1
+ import { RComponentSFC } from '../../domain/entities/RComponentSFC';
2
+ import { RComponentContract, RComponentDependencies, RComponentRenderTarget } from '../../domain/types/component/component-core.types';
3
+ import { RComponentSFC_AST } from '../../domain/types/component/sfc/ast.types';
4
+ import { RComponentSFC_RuntimeDependencies } from '../../domain/types/component/sfc/dependencies.types';
5
+ import { ComponentSFCEditedEventPayload, RComponentSFC_IR } from '../../domain/types/component/sfc/ir.types';
6
+ import { ComponentSFCEventOccurrence, ComponentSFCEventPort, ComponentSFCEventRuntimeSource } from '../../domain/types/component/sfc/ports.types';
7
+ import { RComponentSFCSource_Parts } from '../../domain/types/component/sfc/source.types';
8
+ import { ComputationResource } from '../../domain/types/computation/computation-runtime.types';
9
+ import { ComponentSFCPreviewOptions, ComponentSFCProgramPayload, ProgramDiagnostic } from '../../program/domain/types/program.types';
10
+ import { RuntimeArtifactReader, RuntimeHost, RuntimeHostContext, RuntimeHostInputSource, RuntimeHostUpdateContext } from '../domain/runtime-host.types';
11
+ import { VocabOptionMapping } from '../domain/vocab-cache.types';
12
+ import { SourceFieldOption } from '../../source/domain/types/source-expression.types';
13
+ import { RuntimeHostBase } from '../RuntimeHostBase';
14
+ export interface ComponentSFCEditSession {
15
+ key: string;
16
+ originalValue: unknown;
17
+ draftValue: unknown;
18
+ baseVariant: string;
19
+ }
20
+ /**
21
+ * Runtime-host нового SFC-компонента.
22
+ *
23
+ * Host хранит lifecycle/runtime-состояние и читает compiler-derived данные
24
+ * из `ProgramArtifact<ComponentSFCProgramPayload>`.
25
+ */
26
+ export declare class ComponentSFCRuntimeHost extends RuntimeHostBase<'component-sfc', RuntimeHostContext<'component-sfc'>, ComponentSFCProgramPayload> {
27
+ private _inputSource;
28
+ private _raphInputDisposers;
29
+ private readonly _computationResources;
30
+ private readonly _computationErrorSignatures;
31
+ private _styleLease;
32
+ private readonly _eventPortListeners;
33
+ private readonly _vocabDisposers;
34
+ private _editSession;
35
+ constructor(input: {
36
+ id: string;
37
+ model: RComponentSFC;
38
+ entityIdentity: string;
39
+ parent?: RuntimeHost<any, any> | null;
40
+ title?: string;
41
+ meta?: Record<string, unknown>;
42
+ artifactReader?: RuntimeArtifactReader | null;
43
+ });
44
+ /**
45
+ * LIFECYCLE
46
+ */
47
+ static createRuntime(input: {
48
+ id: string;
49
+ model: RComponentSFC;
50
+ meta?: Record<string, any>;
51
+ parent?: RuntimeHost<any, any> | null;
52
+ artifactReader?: RuntimeArtifactReader | null;
53
+ }): ComponentSFCRuntimeHost;
54
+ /** Возвращает разложенный canonical source из compiled artifact. */
55
+ getSourceParts(): RComponentSFCSource_Parts | null;
56
+ /** Возвращает diagnostics compiled artifact. */
57
+ getDiagnostics(): ProgramDiagnostic[];
58
+ /** Переводит public key через накопленный Composition catalog этого runtime. */
59
+ translate(key: string, fallback?: string): string;
60
+ /**
61
+ * Читает Vocab alias из ближайшего Composition scope и преобразует cache
62
+ * records в renderer-neutral Select options.
63
+ */
64
+ resolveVocabOptions(alias: string, mapping?: Partial<VocabOptionMapping>): SourceFieldOption[];
65
+ /** Возвращает внешний контракт компонента из compiled artifact. */
66
+ getContract(): RComponentContract | null;
67
+ /** Возвращает зависимости компонента из compiled artifact. */
68
+ getDependencies(): RComponentDependencies | null;
69
+ /** Возвращает runtime-зависимости SFC v1 из compiled artifact. */
70
+ getRuntimeDependencies(): RComponentSFC_RuntimeDependencies;
71
+ /** Возвращает parser-level AST из compiled artifact. */
72
+ getAst(): RComponentSFC_AST | null;
73
+ /** Возвращает target-neutral semantic IR из compiled artifact. */
74
+ getIr(): RComponentSFC_IR | null;
75
+ /** Возвращает preview-only props из compiled artifact. */
76
+ getPreviewProps(): Record<string, unknown> | null;
77
+ /** Возвращает preview-only runtime options из compiled artifact. */
78
+ getPreviewOptions(): ComponentSFCPreviewOptions | null;
79
+ /** Подписывается на один публичный порт Event смонтированного экземпляра компонента. */
80
+ onEventPort(name: string, listener: (occurrence: ComponentSFCEventOccurrence) => void): () => void;
81
+ /** Отправляет собственный публичный Event через корневую границу Component SFC. */
82
+ emitEventPort(name: string, payload: unknown, source?: ComponentSFCEventRuntimeSource): Promise<void>;
83
+ /** Выполняет одну связанную компилятором реакцию Event для границы renderer. */
84
+ executeEventPortAction(ownerIdentity: string, port: ComponentSFCEventPort, payload: unknown, source: ComponentSFCEventRuntimeSource | undefined, emitOwn: (name: string, payload: unknown, trace: string[], depth: number) => Promise<void>, trace?: string[], depth?: number, scope?: Record<string, unknown>): Promise<boolean>;
85
+ /** Публикует уже маршрутизированный корневой Event без глобальной шины Endge.events. */
86
+ publishEventPort(name: string, payload: unknown, source?: ComponentSFCEventRuntimeSource): void;
87
+ /** Возвращает активную host-owned edit-сессию конкретного renderer consumer. */
88
+ getEditSession(key: string): Readonly<ComponentSFCEditSession> | null;
89
+ /** Открывает единственную edit-сессию runtime; предыдущая отменяется без Event. */
90
+ beginEditSession(key: string, originalValue: unknown, baseVariant?: string): ComponentSFCEditSession;
91
+ /** Обновляет renderer-owned draft активной edit-сессии. */
92
+ updateEditDraft(key: string, value: unknown): void;
93
+ /** Завершает edit-сессию и возвращает нормализованный semantic payload. */
94
+ commitEditSession(key: string, value?: unknown): ComponentSFCEditedEventPayload | null;
95
+ /** Отменяет edit-сессию без публикации edited. */
96
+ cancelEditSession(key?: string): void;
97
+ /** Возвращает один ресурс вычислений, принадлежащий host и изолированный scope потребителя renderer. */
98
+ getComputationResource(identity: string, input: unknown, consumerKey: string, portName?: string): ComputationResource;
99
+ /** Обновляет input source и пересобирает Raph subscriptions host-а. */
100
+ setInputSource(input: RuntimeHostInputSource | null | undefined): void;
101
+ /** Возвращает текущий input source host-а. */
102
+ getInputSource(): RuntimeHostInputSource | null;
103
+ /**
104
+ * Получает runtime update от universal boundary phase.
105
+ *
106
+ * Core не знает про DOM/Vue/RevoGrid: host только фиксирует update-факт
107
+ * и сообщает render adapter-у, что входные props нужно перечитать.
108
+ */
109
+ update(ctx: RuntimeHostUpdateContext): void;
110
+ pause(): void;
111
+ resume(): void;
112
+ /** Очищает Raph subscriptions перед общим destroy host-а. */
113
+ destroy(): void;
114
+ private _emitRootEventPort;
115
+ private _executeEventActionEffect;
116
+ private _executeEventQueryEffect;
117
+ private _executeInlineOperation;
118
+ private _materializeOperationBlock;
119
+ private _executeMaterializedOperationBlock;
120
+ private _reportComputationError;
121
+ /** Синхронизирует runtime context с текущим compiled artifact. */
122
+ syncArtifactState(target: RComponentRenderTarget | null): void;
123
+ /** Backward-compatible alias для старого runtime prepare API. */
124
+ preparePlaceholders(target: RComponentRenderTarget | null): void;
125
+ private _makeArtifactResourcePayload;
126
+ /** Подписывает host на shared Vocab path один раз, включая вложенные SFC artifacts. */
127
+ private _ensureVocabSubscription;
128
+ private _createRuntimeBoundaryNodes;
129
+ private _createTableColumnBoundaryNode;
130
+ private _bindRaphInputSource;
131
+ /** Зависимости контекста основаны на Raph и не зависят от вида входных props компонента. */
132
+ private _bindRaphContextSources;
133
+ private _observeContextPath;
134
+ private _bindRaphBoundaryInputSource;
135
+ private _isCoveredByPatchableBoundary;
136
+ private _findRuntimeNodeByMeta;
137
+ private _makeObservedColumnPaths;
138
+ private _makeBoundaryPatch;
139
+ private _makeTableRowPatch;
140
+ private _makeTableColumnPatch;
141
+ /** Собирает все keyed события frame-а, не теряя соседние SSE-изменения. */
142
+ private _makeCollectionPatch;
143
+ private _resolveBoundarySourcePath;
144
+ private _extractChangedPath;
145
+ private _makeColumnProjection;
146
+ private _makeObservedRaphPaths;
147
+ private _clearRaphInputSubscriptions;
148
+ private _joinRaphPath;
149
+ }
@@ -0,0 +1,150 @@
1
+ import { RComposition } from '../../domain/entities/RComposition';
2
+ import { I18nRuntimeCatalog } from '../../i18n/domain/i18n.types';
3
+ import { RuntimeArtifactReader, RuntimeHost, RuntimeHostContext, RuntimeHostInputSource, RuntimeHostUpdateContext } from '../domain/runtime-host.types';
4
+ import { VocabRuntimeCatalog } from '../domain/vocab-cache.types';
5
+ import { FilterViewRuntimeHost } from './FilterViewRuntimeHost';
6
+ import { CompositionFilterFieldsSlice, CompositionProgramPayload, CompositionPublicOutputHandle, CompositionRuntimeActivationHandle, CompositionRuntimeChildHandle } from '../../source/domain/types/composition-source.types';
7
+ import { StoreMutationPlan } from '../../source/domain/types/update-source.types';
8
+ import { RuntimeHostBase } from '../RuntimeHostBase';
9
+ import { RuntimeScope } from '../RuntimeScope';
10
+ /** Runtime orchestration host: children, bindings, hooks и public handles. */
11
+ export declare class CompositionRuntimeHost extends RuntimeHostBase<'composition', RuntimeHostContext<'composition'>, CompositionProgramPayload> {
12
+ private _children;
13
+ private _childDescriptors;
14
+ private _publicOutputs;
15
+ private _scopes;
16
+ private _runtimeHandles;
17
+ private _outputBridges;
18
+ private _updateSourcePaths;
19
+ private _outputBridgeDisposers;
20
+ private _hookDisposers;
21
+ private _publicationDisposers;
22
+ private _disposers;
23
+ private _bridgePaths;
24
+ private _bindingDerivedHandles;
25
+ private _dataPaths;
26
+ private _storeRuntimeIds;
27
+ private _storeProviderRuntimeIds;
28
+ private _ownedStoreRuntimeIds;
29
+ private _compositionInputBindings;
30
+ private _i18nCatalogs;
31
+ private _vocabCatalogs;
32
+ private _orchestratedQueries;
33
+ private _orchestratedSuccesses;
34
+ private _streamBatches;
35
+ private _streamBatchTimers;
36
+ private _mounted;
37
+ constructor(input: {
38
+ id: string;
39
+ model: RComposition;
40
+ parent?: RuntimeHost<any, any> | null;
41
+ meta?: Record<string, unknown>;
42
+ artifactReader: RuntimeArtifactReader;
43
+ });
44
+ static createRuntime(input: {
45
+ id: string;
46
+ model: RComposition;
47
+ meta?: Record<string, any>;
48
+ parent?: RuntimeHost<any, any> | null;
49
+ artifacts: RuntimeArtifactReader;
50
+ }): CompositionRuntimeHost | null;
51
+ /** Создает children, bindings и hooks. Повторный mount является no-op. */
52
+ mountGraph(): Promise<void>;
53
+ getChild(name: string): RuntimeHost<any, any> | null;
54
+ getChildren(): CompositionRuntimeChildHandle[];
55
+ getFilterFieldsSlice(runtimeName: string, fieldKeys: string[]): CompositionFilterFieldsSlice | null;
56
+ getOutputs(): Readonly<Record<string, CompositionPublicOutputHandle>>;
57
+ getScope(path: string): RuntimeScope | null;
58
+ /** Возвращает накопленный translation catalog для заданного lifecycle scope. */
59
+ getI18nCatalog(scopePath?: string): I18nRuntimeCatalog;
60
+ /** Возвращает накопленный Vocab catalog для заданного lifecycle scope. */
61
+ getVocabCatalog(scopePath?: string): VocabRuntimeCatalog;
62
+ getRuntimeHandle(path: string): CompositionRuntimeActivationHandle | null;
63
+ /** Возвращает текущее значение публичного Composition output. */
64
+ getOutput(name: string): unknown;
65
+ /** Текущие значения data-блока для preview и runtime debugger. */
66
+ getDataSnapshot(): Readonly<Record<string, unknown>>;
67
+ /** Возвращает текущие значения публичных Composition props. */
68
+ getProps(): Readonly<Record<string, unknown>>;
69
+ /** Императивное локальное изменение для UI-сценариев, которым не нужен сохраняемый RUpdate. */
70
+ mutateStore(dataAlias: string, plan: StoreMutationPlan): void;
71
+ /** Явно вызывает один именованный RUpdate, принадлежащий Store, вне dispatch Stream. */
72
+ applyStoreUpdate(dataAlias: string, updateIdentity: string, payload: unknown): void;
73
+ /** Сопоставляет артефакт Update с alias данных Store, принадлежащим этой Composition. */
74
+ applyUpdateByIdentity(updateIdentity: string, payload: unknown): void;
75
+ /** Устанавливает literal/Raph-backed источник публичных Composition props. */
76
+ setInputSource(input: RuntimeHostInputSource | null | undefined): void;
77
+ /** Проверяет обязательные props до создания child runtime graph. */
78
+ private _assertRequiredProps;
79
+ /** Возвращает runtime Raph path объявленной data-зависимости. */
80
+ getDataPath(name: string, path?: string): string;
81
+ private _buildLifecycleScopes;
82
+ private _activateScope;
83
+ private _forgetScopeRuntimes;
84
+ private _forgetRuntime;
85
+ private _createRuntimeHandle;
86
+ private _requireScope;
87
+ private _prepareOutputBridges;
88
+ private _outputBridgeKey;
89
+ private _requireOutputBridge;
90
+ private _connectRuntimeOutputs;
91
+ private _disconnectRuntimeOutputs;
92
+ quiesce(): void;
93
+ destroy(): Promise<void>;
94
+ /** Строит effective catalogs по той же иерархии, что и lifecycle scopes. */
95
+ private _buildI18nCatalogs;
96
+ /** Строит nearest-scope catalog публичных Vocab aliases поверх shared cache paths. */
97
+ private _buildVocabCatalogs;
98
+ /** Регистрирует shared Vocab paths и разрешает Store aliases через explicit, ancestor или local provider. */
99
+ private _mountData;
100
+ /** Находит ближайший Store provider только среди Composition ancestors. */
101
+ private _findAncestorStoreProvider;
102
+ /** Публикует resolved Store instance для descendants этой Composition. */
103
+ private _registerStoreProvider;
104
+ /** Атомарно публикует накопленный batch runtime outputs в writable Store data. */
105
+ private _publishUpdates;
106
+ protected onUpdate(ctx: RuntimeHostUpdateContext): void;
107
+ private _requireDataPath;
108
+ private _requireStoreRuntime;
109
+ private _resolveDataReference;
110
+ private _createChild;
111
+ private _bindChild;
112
+ private _bindStreamDispatch;
113
+ private _bindComponentDispatch;
114
+ private _flushStreamBatch;
115
+ private _makeOutputs;
116
+ /** Не допускает прямые и транзитивные циклы Composition runtime tree. */
117
+ private _assertCompositionCycle;
118
+ private _bindHooks;
119
+ private _executeComponentEventEffect;
120
+ private _runQuery;
121
+ /** Запускает все одновременно готовые Query hooks одним parallel batch. */
122
+ private _runQueries;
123
+ private _runSuccessTargets;
124
+ private _successHookId;
125
+ private _readBinding;
126
+ private _compiledInputs;
127
+ /** Материализует authored bindings в единый runtime input source child Composition. */
128
+ private _makeInputSource;
129
+ private _subscribeBinding;
130
+ private _bindingPath;
131
+ private _materializeBinding;
132
+ /** Материализует parameterized DataView binding без отдельного runtime host. */
133
+ private _materializeDataViewBinding;
134
+ /** Гарантирует, что список outputs для fromOutput(runtime) был связан до запуска runtime. */
135
+ private _requireResolvedOutputs;
136
+ /** Читает и распаковывает один именованный runtime output. */
137
+ private _readRuntimeOutput;
138
+ /** Собирает объект всех runtime outputs с сохранением их публичных имён. */
139
+ private _readRuntimeOutputs;
140
+ /** Читает весь compiled metadata map или один namespace сущности runtime alias-а. */
141
+ private _readRuntimeMetadata;
142
+ private _readExpressionSource;
143
+ private _collectExpressionReads;
144
+ private _flattenBindings;
145
+ private _subscribeExpressionRead;
146
+ private _readFilterFieldsBinding;
147
+ isFilterViewRuntime(runtime: RuntimeHost<any, any>): runtime is FilterViewRuntimeHost;
148
+ /** Возвращает topological runtime order по fromOutput dependencies. */
149
+ private _dependencyOrder;
150
+ }
@@ -0,0 +1,44 @@
1
+ import { RFilter } from '../../domain/entities/RFilter';
2
+ import { RuntimeArtifactReader, RuntimeHost, RuntimeHostContext } from '../domain/runtime-host.types';
3
+ import { FilterProgramPayload, FilterRuntimeActionHandle, FilterRuntimeActionId, FilterRuntimeOutput } from '../../source/domain/types/filter-source.types';
4
+ import { SourceFieldDefinition } from '../../source/domain/types/source-expression.types';
5
+ import { RuntimeHostBase } from '../RuntimeHostBase';
6
+ /** Runtime-владелец Filter state, outputs и Actions. */
7
+ export declare class FilterRuntimeHost extends RuntimeHostBase<'filter', RuntimeHostContext<'filter'>, FilterProgramPayload> {
8
+ private _outputs;
9
+ constructor(input: {
10
+ id: string;
11
+ model: RFilter;
12
+ parent?: RuntimeHost<any, any> | null;
13
+ meta?: Record<string, unknown>;
14
+ artifactReader: RuntimeArtifactReader;
15
+ });
16
+ static createRuntime(input: {
17
+ id: string;
18
+ model: RFilter;
19
+ meta?: Record<string, any>;
20
+ parent?: RuntimeHost<any, any> | null;
21
+ artifacts: RuntimeArtifactReader;
22
+ }): FilterRuntimeHost | null;
23
+ /** Активирует зарегистрированный Filter host с восстановленным state. */
24
+ create(): void;
25
+ /** Восстанавливает persisted state после подключения runtime controller. */
26
+ private _hydratePersistence;
27
+ getState(): Readonly<Record<string, unknown>>;
28
+ get instanceName(): string;
29
+ getDefaults(): Readonly<Record<string, unknown>>;
30
+ getFields(): SourceFieldDefinition[];
31
+ getOutput(name: string): FilterRuntimeOutput | null;
32
+ getOutputs(): FilterRuntimeOutput[];
33
+ destroy(): void;
34
+ /** Возвращает вызываемый Action изменения Filter state. */
35
+ action(id: FilterRuntimeActionId): FilterRuntimeActionHandle;
36
+ private _patch;
37
+ private _set;
38
+ private _resetState;
39
+ private _replaceState;
40
+ private _recomputeOutputs;
41
+ private _normalizePatch;
42
+ private _isValidFieldValue;
43
+ private _isValidScalarValue;
44
+ }
@@ -0,0 +1,56 @@
1
+ import { RFilter } from '../../domain/entities/RFilter';
2
+ import { RuntimeHost, RuntimeHostContext } from '../domain/runtime-host.types';
3
+ import { FilterRuntimeHost } from './FilterRuntimeHost';
4
+ import { CompositionFilterFieldsSlice } from '../../source/domain/types/composition-source.types';
5
+ import { FilterProgramPayload } from '../../source/domain/types/filter-source.types';
6
+ import { FilterViewControlDefinition, FilterViewRenderModel } from '../../source/domain/types/filter-view.type';
7
+ import { RuntimeHostBase } from '../RuntimeHostBase';
8
+ /** Renderable UI-проекция одного Filter runtime без собственного filter state. */
9
+ export declare class FilterViewRuntimeHost extends RuntimeHostBase<'filter', RuntimeHostContext<'filter'>, FilterProgramPayload> {
10
+ private readonly _sourceRuntime;
11
+ private readonly _sourceRuntimeName;
12
+ private readonly _fieldKeys;
13
+ private readonly _controls;
14
+ private readonly _implementation;
15
+ private readonly _onSourceChange;
16
+ private readonly _disposeSourceWatch;
17
+ private readonly _disposeVocabWatch;
18
+ private _props;
19
+ constructor(input: {
20
+ id: string;
21
+ name: string;
22
+ model: RFilter;
23
+ sourceRuntimeName: string;
24
+ sourceRuntime: FilterRuntimeHost;
25
+ fieldKeys?: string[];
26
+ controls?: Record<string, FilterViewControlDefinition>;
27
+ componentIdentity?: string;
28
+ props?: Record<string, unknown>;
29
+ parent?: RuntimeHost<any, any> | null;
30
+ meta?: Record<string, unknown>;
31
+ });
32
+ /** Возвращает renderer-neutral модель встроенного или пользовательского Filter view. */
33
+ getRenderModel(): FilterViewRenderModel;
34
+ /** Возвращает snapshot пользовательских presentation props. */
35
+ getProps(): Readonly<Record<string, unknown>>;
36
+ /** Атомарно обновляет presentation props и invalidates renderer. */
37
+ setProps(patch: Record<string, unknown>): void;
38
+ /** Меняет одно поле через state-владельца Filter runtime. */
39
+ setValue(key: string, value: unknown): Promise<void>;
40
+ /** Возвращает read-only slice для существующих fromFilter bindings. */
41
+ getSlice(): CompositionFilterFieldsSlice;
42
+ destroy(): void;
43
+ private _resolveControl;
44
+ /**
45
+ * Возвращает готовые renderer-neutral options без сетевых запросов.
46
+ */
47
+ private _resolveOptions;
48
+ /**
49
+ * Возвращает Raph path справочника, используемого полем.
50
+ */
51
+ private _resolveVocabPath;
52
+ /**
53
+ * Читает вложенное значение строки справочника.
54
+ */
55
+ private _readPath;
56
+ }
@@ -0,0 +1,22 @@
1
+ import { RPage } from '../../domain/entities/RPage';
2
+ import { RuntimeHost } from '../domain/runtime-host.types';
3
+ import { RuntimeHostBase } from '../RuntimeHostBase';
4
+ export declare class PageRuntimeHost extends RuntimeHostBase<'page'> {
5
+ constructor(input: {
6
+ id: string;
7
+ model: RPage;
8
+ entityIdentity: string;
9
+ parent?: RuntimeHost<any, any> | null;
10
+ title?: string;
11
+ meta?: Record<string, unknown>;
12
+ });
13
+ /**
14
+ * LIFECYCLE
15
+ */
16
+ static createRuntime(input: {
17
+ id: string;
18
+ model: RPage;
19
+ meta?: Record<string, any>;
20
+ parent?: RuntimeHost<any, any> | null;
21
+ }): RuntimeHost<'page'>;
22
+ }