@undefineds.co/xpod 0.3.57 → 0.3.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/config/cli.json +88 -0
- package/config/cloud.json +32 -1
- package/config/components-ignore.json +3 -0
- package/config/extensions.local.initializer.json +44 -0
- package/config/resolver.json +86 -0
- package/config/xpod.base.json +4 -0
- package/dist/agents/AgentExecutorFactory.d.ts +3 -3
- package/dist/agents/AgentExecutorFactory.js +28 -15
- package/dist/agents/AgentExecutorFactory.js.map +1 -1
- package/dist/agents/BaseAgentExecutor.d.ts +2 -1
- package/dist/agents/BaseAgentExecutor.js +1 -0
- package/dist/agents/BaseAgentExecutor.js.map +1 -1
- package/dist/agents/ClaudeExecutor.d.ts +3 -1
- package/dist/agents/ClaudeExecutor.js +18 -12
- package/dist/agents/ClaudeExecutor.js.map +1 -1
- package/dist/agents/config/resolve.js +0 -21
- package/dist/agents/config/resolve.js.map +1 -1
- package/dist/agents/config/types.d.ts +2 -7
- package/dist/agents/config/types.js +2 -1
- package/dist/agents/config/types.js.map +1 -1
- package/dist/agents/types.d.ts +18 -0
- package/dist/agents/types.js.map +1 -1
- package/dist/ai/schema/types.d.ts +2 -1
- package/dist/ai/schema/types.js +1 -0
- package/dist/ai/schema/types.js.map +1 -1
- package/dist/ai/service/CredentialReader.d.ts +3 -1
- package/dist/ai/service/CredentialReader.js.map +1 -1
- package/dist/ai/service/CredentialReaderImpl.d.ts +3 -1
- package/dist/ai/service/CredentialReaderImpl.js +24 -2
- package/dist/ai/service/CredentialReaderImpl.js.map +1 -1
- package/dist/ai/service/EmbeddingServiceImpl.js +13 -2
- package/dist/ai/service/EmbeddingServiceImpl.js.map +1 -1
- package/dist/ai/service/ProviderRegistry.d.ts +4 -0
- package/dist/ai/service/ProviderRegistry.js.map +1 -1
- package/dist/ai/service/ProviderRegistry.jsonld +4 -0
- package/dist/ai/service/ProviderRegistryImpl.d.ts +4 -1
- package/dist/ai/service/ProviderRegistryImpl.js +26 -4
- package/dist/ai/service/ProviderRegistryImpl.js.map +1 -1
- package/dist/ai/service/ProviderRegistryImpl.jsonld +12 -0
- package/dist/ai/service/defaultEmbeddingProfile.d.ts +5 -0
- package/dist/ai/service/defaultEmbeddingProfile.js +31 -0
- package/dist/ai/service/defaultEmbeddingProfile.js.map +1 -0
- package/dist/ai/service/index.d.ts +1 -0
- package/dist/ai/service/index.js +1 -0
- package/dist/ai/service/index.js.map +1 -1
- package/dist/ai/service/types.d.ts +1 -0
- package/dist/ai/service/types.js.map +1 -1
- package/dist/api/ApiServer.js +17 -2
- package/dist/api/ApiServer.js.map +1 -1
- package/dist/api/ai-gateway/AiGatewayService.d.ts +106 -0
- package/dist/api/ai-gateway/AiGatewayService.js +527 -0
- package/dist/api/ai-gateway/AiGatewayService.js.map +1 -0
- package/dist/api/ai-gateway/auth/AiConnectionInvocationKeyIssuer.d.ts +38 -0
- package/dist/api/ai-gateway/auth/AiConnectionInvocationKeyIssuer.js +128 -0
- package/dist/api/ai-gateway/auth/AiConnectionInvocationKeyIssuer.js.map +1 -0
- package/dist/api/ai-gateway/auth/ClientCredentialsInternalPodAccessTokenProvider.d.ts +25 -0
- package/dist/api/ai-gateway/auth/ClientCredentialsInternalPodAccessTokenProvider.js +91 -0
- package/dist/api/ai-gateway/auth/ClientCredentialsInternalPodAccessTokenProvider.js.map +1 -0
- package/dist/api/ai-gateway/auth/GatewayApiKey.d.ts +28 -0
- package/dist/api/ai-gateway/auth/GatewayApiKey.js +162 -0
- package/dist/api/ai-gateway/auth/GatewayApiKey.js.map +1 -0
- package/dist/api/ai-gateway/auth/GatewayApiKeyAuthenticator.d.ts +56 -0
- package/dist/api/ai-gateway/auth/GatewayApiKeyAuthenticator.js +143 -0
- package/dist/api/ai-gateway/auth/GatewayApiKeyAuthenticator.js.map +1 -0
- package/dist/api/ai-gateway/auth/GatewayKeyLocatorCodec.d.ts +26 -0
- package/dist/api/ai-gateway/auth/GatewayKeyLocatorCodec.js +97 -0
- package/dist/api/ai-gateway/auth/GatewayKeyLocatorCodec.js.map +1 -0
- package/dist/api/ai-gateway/auth/GatewayPrincipal.d.ts +20 -0
- package/dist/api/ai-gateway/auth/GatewayPrincipal.js +37 -0
- package/dist/api/ai-gateway/auth/GatewayPrincipal.js.map +1 -0
- package/dist/api/ai-gateway/auth/InvocationTokenCodec.d.ts +41 -0
- package/dist/api/ai-gateway/auth/InvocationTokenCodec.js +221 -0
- package/dist/api/ai-gateway/auth/InvocationTokenCodec.js.map +1 -0
- package/dist/api/ai-gateway/auth/PodGatewayAccessKeyRepository.d.ts +54 -0
- package/dist/api/ai-gateway/auth/PodGatewayAccessKeyRepository.js +152 -0
- package/dist/api/ai-gateway/auth/PodGatewayAccessKeyRepository.js.map +1 -0
- package/dist/api/ai-gateway/connect/index.d.ts +367 -0
- package/dist/api/ai-gateway/connect/index.js +1061 -0
- package/dist/api/ai-gateway/connect/index.js.map +1 -0
- package/dist/api/ai-gateway/credentials/CloudKmsWrapper.d.ts +40 -0
- package/dist/api/ai-gateway/credentials/CloudKmsWrapper.js +59 -0
- package/dist/api/ai-gateway/credentials/CloudKmsWrapper.js.map +1 -0
- package/dist/api/ai-gateway/credentials/CredentialVault.d.ts +14 -0
- package/dist/api/ai-gateway/credentials/CredentialVault.js +11 -0
- package/dist/api/ai-gateway/credentials/CredentialVault.js.map +1 -0
- package/dist/api/ai-gateway/credentials/KeyWrapper.d.ts +27 -0
- package/dist/api/ai-gateway/credentials/KeyWrapper.js +3 -0
- package/dist/api/ai-gateway/credentials/KeyWrapper.js.map +1 -0
- package/dist/api/ai-gateway/credentials/LocalKeychainWrapper.d.ts +27 -0
- package/dist/api/ai-gateway/credentials/LocalKeychainWrapper.js +145 -0
- package/dist/api/ai-gateway/credentials/LocalKeychainWrapper.js.map +1 -0
- package/dist/api/ai-gateway/credentials/SecretCellCredentialVault.d.ts +13 -0
- package/dist/api/ai-gateway/credentials/SecretCellCredentialVault.js +133 -0
- package/dist/api/ai-gateway/credentials/SecretCellCredentialVault.js.map +1 -0
- package/dist/api/ai-gateway/credentials/SecretCellKeyWrapper.d.ts +23 -0
- package/dist/api/ai-gateway/credentials/SecretCellKeyWrapper.js +62 -0
- package/dist/api/ai-gateway/credentials/SecretCellKeyWrapper.js.map +1 -0
- package/dist/api/ai-gateway/credentials/WebCryptoCredentialVault.d.ts +23 -0
- package/dist/api/ai-gateway/credentials/WebCryptoCredentialVault.js +173 -0
- package/dist/api/ai-gateway/credentials/WebCryptoCredentialVault.js.map +1 -0
- package/dist/api/ai-gateway/errors.d.ts +21 -0
- package/dist/api/ai-gateway/errors.js +50 -0
- package/dist/api/ai-gateway/errors.js.map +1 -0
- package/dist/api/ai-gateway/protocol/ChatCompletionsFrontend.d.ts +6 -0
- package/dist/api/ai-gateway/protocol/ChatCompletionsFrontend.js +111 -0
- package/dist/api/ai-gateway/protocol/ChatCompletionsFrontend.js.map +1 -0
- package/dist/api/ai-gateway/protocol/MessagesFrontend.d.ts +6 -0
- package/dist/api/ai-gateway/protocol/MessagesFrontend.js +99 -0
- package/dist/api/ai-gateway/protocol/MessagesFrontend.js.map +1 -0
- package/dist/api/ai-gateway/protocol/ResponsesFrontend.d.ts +6 -0
- package/dist/api/ai-gateway/protocol/ResponsesFrontend.js +232 -0
- package/dist/api/ai-gateway/protocol/ResponsesFrontend.js.map +1 -0
- package/dist/api/ai-gateway/protocol/index.d.ts +3 -0
- package/dist/api/ai-gateway/protocol/index.js +10 -0
- package/dist/api/ai-gateway/protocol/index.js.map +1 -0
- package/dist/api/ai-gateway/providers/AnthropicRuntimeAdapter.d.ts +7 -0
- package/dist/api/ai-gateway/providers/AnthropicRuntimeAdapter.js +37 -0
- package/dist/api/ai-gateway/providers/AnthropicRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/BailianRuntimeAdapter.d.ts +9 -0
- package/dist/api/ai-gateway/providers/BailianRuntimeAdapter.js +127 -0
- package/dist/api/ai-gateway/providers/BailianRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/DeepSeekRuntimeAdapter.d.ts +8 -0
- package/dist/api/ai-gateway/providers/DeepSeekRuntimeAdapter.js +47 -0
- package/dist/api/ai-gateway/providers/DeepSeekRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/KimiRuntimeAdapter.d.ts +8 -0
- package/dist/api/ai-gateway/providers/KimiRuntimeAdapter.js +57 -0
- package/dist/api/ai-gateway/providers/KimiRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/OpenAiCompatibleRuntimeAdapter.d.ts +1 -0
- package/dist/api/ai-gateway/providers/OpenAiCompatibleRuntimeAdapter.js +6 -0
- package/dist/api/ai-gateway/providers/OpenAiCompatibleRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/OpenAiRuntimeAdapter.d.ts +13 -0
- package/dist/api/ai-gateway/providers/OpenAiRuntimeAdapter.js +34 -0
- package/dist/api/ai-gateway/providers/OpenAiRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/ProviderRegistry.d.ts +68 -0
- package/dist/api/ai-gateway/providers/ProviderRegistry.js +288 -0
- package/dist/api/ai-gateway/providers/ProviderRegistry.js.map +1 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeAdapter.d.ts +88 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeAdapter.js +645 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeAdapter.js.map +1 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeRegistry.d.ts +13 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeRegistry.js +48 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeRegistry.js.map +1 -0
- package/dist/api/ai-gateway/providers/index.d.ts +9 -0
- package/dist/api/ai-gateway/providers/index.js +26 -0
- package/dist/api/ai-gateway/providers/index.js.map +1 -0
- package/dist/api/ai-gateway/quota/AnthropicQuotaAdapter.d.ts +5 -0
- package/dist/api/ai-gateway/quota/AnthropicQuotaAdapter.js +21 -0
- package/dist/api/ai-gateway/quota/AnthropicQuotaAdapter.js.map +1 -0
- package/dist/api/ai-gateway/quota/BailianQuotaAdapter.d.ts +5 -0
- package/dist/api/ai-gateway/quota/BailianQuotaAdapter.js +21 -0
- package/dist/api/ai-gateway/quota/BailianQuotaAdapter.js.map +1 -0
- package/dist/api/ai-gateway/quota/DeepSeekQuotaAdapter.d.ts +10 -0
- package/dist/api/ai-gateway/quota/DeepSeekQuotaAdapter.js +83 -0
- package/dist/api/ai-gateway/quota/DeepSeekQuotaAdapter.js.map +1 -0
- package/dist/api/ai-gateway/quota/KimiQuotaAdapter.d.ts +10 -0
- package/dist/api/ai-gateway/quota/KimiQuotaAdapter.js +70 -0
- package/dist/api/ai-gateway/quota/KimiQuotaAdapter.js.map +1 -0
- package/dist/api/ai-gateway/quota/OpenAiQuotaAdapter.d.ts +5 -0
- package/dist/api/ai-gateway/quota/OpenAiQuotaAdapter.js +21 -0
- package/dist/api/ai-gateway/quota/OpenAiQuotaAdapter.js.map +1 -0
- package/dist/api/ai-gateway/quota/ProviderQuotaAdapter.d.ts +214 -0
- package/dist/api/ai-gateway/quota/ProviderQuotaAdapter.js +511 -0
- package/dist/api/ai-gateway/quota/ProviderQuotaAdapter.js.map +1 -0
- package/dist/api/ai-gateway/quota/index.d.ts +6 -0
- package/dist/api/ai-gateway/quota/index.js +23 -0
- package/dist/api/ai-gateway/quota/index.js.map +1 -0
- package/dist/api/ai-gateway/routing/InMemorySessionAffinityStore.d.ts +26 -0
- package/dist/api/ai-gateway/routing/InMemorySessionAffinityStore.js +67 -0
- package/dist/api/ai-gateway/routing/InMemorySessionAffinityStore.js.map +1 -0
- package/dist/api/ai-gateway/routing/ModelRouter.d.ts +84 -0
- package/dist/api/ai-gateway/routing/ModelRouter.js +274 -0
- package/dist/api/ai-gateway/routing/ModelRouter.js.map +1 -0
- package/dist/api/ai-gateway/routing/RedisSessionAffinityStore.d.ts +39 -0
- package/dist/api/ai-gateway/routing/RedisSessionAffinityStore.js +122 -0
- package/dist/api/ai-gateway/routing/RedisSessionAffinityStore.js.map +1 -0
- package/dist/api/ai-gateway/routing/SessionAffinityStore.d.ts +49 -0
- package/dist/api/ai-gateway/routing/SessionAffinityStore.js +66 -0
- package/dist/api/ai-gateway/routing/SessionAffinityStore.js.map +1 -0
- package/dist/api/ai-gateway/service-access/AiConnectionServiceAccess.d.ts +25 -0
- package/dist/api/ai-gateway/service-access/AiConnectionServiceAccess.js +50 -0
- package/dist/api/ai-gateway/service-access/AiConnectionServiceAccess.js.map +1 -0
- package/dist/api/ai-gateway/types.d.ts +112 -0
- package/dist/api/ai-gateway/types.js +305 -0
- package/dist/api/ai-gateway/types.js.map +1 -0
- package/dist/api/auth/AuthContext.d.ts +18 -3
- package/dist/api/auth/AuthContext.js +13 -2
- package/dist/api/auth/AuthContext.js.map +1 -1
- package/dist/api/auth/Authenticator.d.ts +3 -0
- package/dist/api/auth/Authenticator.js.map +1 -1
- package/dist/api/auth/ClientCredentialsAuthenticator.d.ts +2 -6
- package/dist/api/auth/ClientCredentialsAuthenticator.js +12 -30
- package/dist/api/auth/ClientCredentialsAuthenticator.js.map +1 -1
- package/dist/api/auth/SolidTokenAuthenticator.d.ts +2 -0
- package/dist/api/auth/SolidTokenAuthenticator.js +88 -2
- package/dist/api/auth/SolidTokenAuthenticator.js.map +1 -1
- package/dist/api/auth/TokenIdentity.d.ts +6 -0
- package/dist/api/auth/TokenIdentity.js +31 -0
- package/dist/api/auth/TokenIdentity.js.map +1 -0
- package/dist/api/chatkit/ai-provider.d.ts +9 -23
- package/dist/api/chatkit/ai-provider.js +30 -153
- package/dist/api/chatkit/ai-provider.js.map +1 -1
- package/dist/api/chatkit/default-agent.d.ts +24 -15
- package/dist/api/chatkit/default-agent.js +24 -83
- package/dist/api/chatkit/default-agent.js.map +1 -1
- package/dist/api/chatkit/index.d.ts +2 -1
- package/dist/api/chatkit/index.js +3 -1
- package/dist/api/chatkit/index.js.map +1 -1
- package/dist/api/chatkit/pod-store.d.ts +13 -1
- package/dist/api/chatkit/pod-store.js +127 -7
- package/dist/api/chatkit/pod-store.js.map +1 -1
- package/dist/api/chatkit/runtime/AcpAgentRuntime.d.ts +0 -1
- package/dist/api/chatkit/runtime/AcpAgentRuntime.js +14 -51
- package/dist/api/chatkit/runtime/AcpAgentRuntime.js.map +1 -1
- package/dist/api/chatkit/runtime/AcpRunner.js +2 -1
- package/dist/api/chatkit/runtime/AcpRunner.js.map +1 -1
- package/dist/api/chatkit/runtime/CodexRuntimeProjector.d.ts +15 -1
- package/dist/api/chatkit/runtime/CodexRuntimeProjector.js +52 -34
- package/dist/api/chatkit/runtime/CodexRuntimeProjector.js.map +1 -1
- package/dist/api/chatkit/service.d.ts +8 -1
- package/dist/api/chatkit/service.js +46 -5
- package/dist/api/chatkit/service.js.map +1 -1
- package/dist/api/chatkit/store.d.ts +23 -1
- package/dist/api/chatkit/store.js +56 -0
- package/dist/api/chatkit/store.js.map +1 -1
- package/dist/api/chatkit/types.d.ts +1 -0
- package/dist/api/chatkit/types.js.map +1 -1
- package/dist/api/container/common.js +286 -13
- package/dist/api/container/common.js.map +1 -1
- package/dist/api/container/index.js +126 -6
- package/dist/api/container/index.js.map +1 -1
- package/dist/api/container/local.js +50 -6
- package/dist/api/container/local.js.map +1 -1
- package/dist/api/container/rdf.d.ts +15 -0
- package/dist/api/container/rdf.js +90 -0
- package/dist/api/container/rdf.js.map +1 -0
- package/dist/api/container/routes.js +151 -11
- package/dist/api/container/routes.js.map +1 -1
- package/dist/api/container/types.d.ts +96 -0
- package/dist/api/container/types.js.map +1 -1
- package/dist/api/handlers/AdminHandler.d.ts +25 -2
- package/dist/api/handlers/AdminHandler.js +60 -10
- package/dist/api/handlers/AdminHandler.js.map +1 -1
- package/dist/api/handlers/AiClientConfigurationHandler.d.ts +7 -0
- package/dist/api/handlers/AiClientConfigurationHandler.js +202 -0
- package/dist/api/handlers/AiClientConfigurationHandler.js.map +1 -0
- package/dist/api/handlers/AiGatewayHandler.d.ts +23 -0
- package/dist/api/handlers/AiGatewayHandler.js +231 -0
- package/dist/api/handlers/AiGatewayHandler.js.map +1 -0
- package/dist/api/handlers/AiGatewayManagementHandler.d.ts +24 -0
- package/dist/api/handlers/AiGatewayManagementHandler.js +503 -0
- package/dist/api/handlers/AiGatewayManagementHandler.js.map +1 -0
- package/dist/api/handlers/ChatHandler.d.ts +11 -12
- package/dist/api/handlers/ChatHandler.js +12 -219
- package/dist/api/handlers/ChatHandler.js.map +1 -1
- package/dist/api/handlers/DashboardHandler.js +22 -116
- package/dist/api/handlers/DashboardHandler.js.map +1 -1
- package/dist/api/handlers/NetworkSettingsHandler.d.ts +97 -0
- package/dist/api/handlers/NetworkSettingsHandler.js +511 -0
- package/dist/api/handlers/NetworkSettingsHandler.js.map +1 -0
- package/dist/api/handlers/PodSettingsHandler.d.ts +79 -0
- package/dist/api/handlers/PodSettingsHandler.js +162 -0
- package/dist/api/handlers/PodSettingsHandler.js.map +1 -0
- package/dist/api/handlers/ProvisionHandler.d.ts +3 -1
- package/dist/api/handlers/ProvisionHandler.js +22 -87
- package/dist/api/handlers/ProvisionHandler.js.map +1 -1
- package/dist/api/handlers/RdfStatsHandler.d.ts +6 -0
- package/dist/api/handlers/RdfStatsHandler.js +85 -0
- package/dist/api/handlers/RdfStatsHandler.js.map +1 -0
- package/dist/api/handlers/SettingsHandler.d.ts +5 -0
- package/dist/api/handlers/SettingsHandler.js +13 -0
- package/dist/api/handlers/SettingsHandler.js.map +1 -0
- package/dist/api/handlers/StaticSpaHandler.d.ts +8 -0
- package/dist/api/handlers/StaticSpaHandler.js +102 -0
- package/dist/api/handlers/StaticSpaHandler.js.map +1 -0
- package/dist/api/handlers/index.d.ts +1 -0
- package/dist/api/handlers/index.js +1 -0
- package/dist/api/handlers/index.js.map +1 -1
- package/dist/api/http/readBoundedJsonBody.d.ts +14 -0
- package/dist/api/http/readBoundedJsonBody.js +58 -0
- package/dist/api/http/readBoundedJsonBody.js.map +1 -0
- package/dist/api/middleware/AuthMiddleware.d.ts +1 -0
- package/dist/api/middleware/AuthMiddleware.js +33 -4
- package/dist/api/middleware/AuthMiddleware.js.map +1 -1
- package/dist/api/runs/AgentRuntimeTypes.d.ts +18 -3
- package/dist/api/runs/AgentRuntimeTypes.js +61 -0
- package/dist/api/runs/AgentRuntimeTypes.js.map +1 -1
- package/dist/api/runs/InngestRunExecutionBackend.d.ts +28 -3
- package/dist/api/runs/InngestRunExecutionBackend.js +26 -3
- package/dist/api/runs/InngestRunExecutionBackend.js.map +1 -1
- package/dist/api/runs/ManagedRunWorker.d.ts +4 -1
- package/dist/api/runs/ManagedRunWorker.js +39 -8
- package/dist/api/runs/ManagedRunWorker.js.map +1 -1
- package/dist/api/runs/PiAgentRuntimeDriver.d.ts +5 -1
- package/dist/api/runs/PiAgentRuntimeDriver.js +94 -57
- package/dist/api/runs/PiAgentRuntimeDriver.js.map +1 -1
- package/dist/api/runs/RdfRunContextRetriever.d.ts +46 -0
- package/dist/api/runs/RdfRunContextRetriever.js +277 -0
- package/dist/api/runs/RdfRunContextRetriever.js.map +1 -0
- package/dist/api/runs/RunExecutionBackend.d.ts +38 -0
- package/dist/api/runs/RunExecutionBackend.js.map +1 -1
- package/dist/api/runs/RunStateCenter.d.ts +18 -3
- package/dist/api/runs/RunStateCenter.js +85 -24
- package/dist/api/runs/RunStateCenter.js.map +1 -1
- package/dist/api/runtime.js +163 -3
- package/dist/api/runtime.js.map +1 -1
- package/dist/api/service/AiClientConfigurationService.d.ts +97 -0
- package/dist/api/service/AiClientConfigurationService.js +379 -0
- package/dist/api/service/AiClientConfigurationService.js.map +1 -0
- package/dist/api/service/RdfBenchmarkReportCatalog.d.ts +86 -0
- package/dist/api/service/RdfBenchmarkReportCatalog.js +349 -0
- package/dist/api/service/RdfBenchmarkReportCatalog.js.map +1 -0
- package/dist/api/service/RdfBenchmarkReportGate.d.ts +78 -0
- package/dist/api/service/RdfBenchmarkReportGate.js +197 -0
- package/dist/api/service/RdfBenchmarkReportGate.js.map +1 -0
- package/dist/api/service/RdfSearchIndexingService.d.ts +113 -0
- package/dist/api/service/RdfSearchIndexingService.js +272 -0
- package/dist/api/service/RdfSearchIndexingService.js.map +1 -0
- package/dist/api/service/RdfSearchIndexingSolidFsSyncer.d.ts +27 -0
- package/dist/api/service/RdfSearchIndexingSolidFsSyncer.js +90 -0
- package/dist/api/service/RdfSearchIndexingSolidFsSyncer.js.map +1 -0
- package/dist/api/service/RdfStorageStatsService.d.ts +31 -0
- package/dist/api/service/RdfStorageStatsService.js +97 -0
- package/dist/api/service/RdfStorageStatsService.js.map +1 -0
- package/dist/api/service/VectorStoreService.d.ts +2 -0
- package/dist/api/service/VectorStoreService.js +70 -2
- package/dist/api/service/VectorStoreService.js.map +1 -1
- package/dist/api/service/VercelChatService.d.ts +27 -38
- package/dist/api/service/VercelChatService.js +153 -505
- package/dist/api/service/VercelChatService.js.map +1 -1
- package/dist/api/service/provider-http-transport.d.ts +21 -0
- package/dist/api/service/provider-http-transport.js +108 -2
- package/dist/api/service/provider-http-transport.js.map +1 -1
- package/dist/api/service/provider-registry.d.ts +5 -7
- package/dist/api/service/provider-registry.js +81 -64
- package/dist/api/service/provider-registry.js.map +1 -1
- package/dist/api/tasks/InngestTaskScheduler.d.ts +44 -4
- package/dist/api/tasks/TaskMaterializer.d.ts +10 -1
- package/dist/api/tasks/TaskMaterializer.js +39 -4
- package/dist/api/tasks/TaskMaterializer.js.map +1 -1
- package/dist/api/tasks/TaskService.d.ts +5 -1
- package/dist/api/tasks/TaskService.js +3 -0
- package/dist/api/tasks/TaskService.js.map +1 -1
- package/dist/cli/commands/obj.d.ts +9 -0
- package/dist/cli/commands/obj.js +74 -3
- package/dist/cli/commands/obj.js.map +1 -1
- package/dist/cli/commands/rdf.d.ts +9 -0
- package/dist/cli/commands/rdf.js +66 -1
- package/dist/cli/commands/rdf.js.map +1 -1
- package/dist/cli/commands/start.js +3 -0
- package/dist/cli/commands/start.js.map +1 -1
- package/dist/cli/lib/solid-auth.d.ts +3 -3
- package/dist/cli/lib/solid-auth.js +4 -4
- package/dist/cli/lib/solid-auth.js.map +1 -1
- package/dist/components/components.jsonld +16 -0
- package/dist/components/context.jsonld +815 -28
- package/dist/document/Chunker.jsonld +110 -0
- package/dist/document/{DocumentParser.d.ts → DocumentReader.d.ts} +23 -11
- package/dist/document/{DocumentParser.js → DocumentReader.js} +2 -2
- package/dist/document/DocumentReader.js.map +1 -0
- package/dist/document/DocumentReader.jsonld +82 -0
- package/dist/document/HeadingChunker.jsonld +41 -0
- package/dist/document/{JinaDocumentParser.d.ts → JinaReader.d.ts} +7 -7
- package/dist/document/{JinaDocumentParser.js → JinaReader.js} +12 -12
- package/dist/document/JinaReader.js.map +1 -0
- package/dist/document/JinaReader.jsonld +133 -0
- package/dist/document/L0SourceSummary.d.ts +103 -0
- package/dist/document/L0SourceSummary.js +157 -0
- package/dist/document/L0SourceSummary.js.map +1 -0
- package/dist/document/L0SourceSummary.jsonld +326 -0
- package/dist/document/PaddleOcrReader.d.ts +40 -0
- package/dist/document/PaddleOcrReader.js +53 -0
- package/dist/document/PaddleOcrReader.js.map +1 -0
- package/dist/document/PaddleOcrReader.jsonld +234 -0
- package/dist/document/ReaderAiConfig.d.ts +50 -0
- package/dist/document/ReaderAiConfig.js +109 -0
- package/dist/document/ReaderAiConfig.js.map +1 -0
- package/dist/document/ReaderAiConfig.jsonld +185 -0
- package/dist/document/ReaderPolicy.d.ts +89 -0
- package/dist/document/ReaderPolicy.js +158 -0
- package/dist/document/ReaderPolicy.js.map +1 -0
- package/dist/document/ReaderPolicy.jsonld +218 -0
- package/dist/document/index.d.ts +6 -2
- package/dist/document/index.js +6 -2
- package/dist/document/index.js.map +1 -1
- package/dist/edge/DdnsManager.d.ts +1 -1
- package/dist/edge/DdnsManager.js.map +1 -1
- package/dist/edge/EdgeNodeAgent.d.ts +4 -0
- package/dist/edge/EdgeNodeAgent.js +6 -0
- package/dist/edge/EdgeNodeAgent.js.map +1 -1
- package/dist/edge/EdgeNodeAgent.jsonld +8 -0
- package/dist/edge/EdgeNodeAgentInitializer.d.ts +16 -0
- package/dist/edge/EdgeNodeAgentInitializer.js +51 -0
- package/dist/edge/EdgeNodeAgentInitializer.js.map +1 -1
- package/dist/edge/EdgeNodeAgentInitializer.jsonld +250 -0
- package/dist/edge/EdgeNodeCertificateCapabilityBridge.d.ts +34 -0
- package/dist/edge/EdgeNodeCertificateCapabilityBridge.js +111 -0
- package/dist/edge/EdgeNodeCertificateCapabilityBridge.js.map +1 -0
- package/dist/edge/acme/AcmeCertificateManager.d.ts +14 -1
- package/dist/edge/acme/AcmeCertificateManager.js +67 -7
- package/dist/edge/acme/AcmeCertificateManager.js.map +1 -1
- package/dist/edge/acme/AcmeCertificateManager.jsonld +22 -2
- package/dist/edge/acme/ClusterCertificateManager.d.ts +12 -0
- package/dist/edge/acme/ClusterCertificateManager.js +38 -0
- package/dist/edge/acme/ClusterCertificateManager.js.map +1 -1
- package/dist/extensions/ExtensionRuntime.d.ts +17 -0
- package/dist/extensions/ExtensionRuntime.js +171 -0
- package/dist/extensions/ExtensionRuntime.js.map +1 -0
- package/dist/extensions/PodCredentialResolver.d.ts +23 -0
- package/dist/extensions/PodCredentialResolver.js +139 -0
- package/dist/extensions/PodCredentialResolver.js.map +1 -0
- package/dist/extensions/index.d.ts +3 -0
- package/dist/extensions/index.js +20 -0
- package/dist/extensions/index.js.map +1 -0
- package/dist/extensions/types.d.ts +73 -0
- package/dist/extensions/types.js +3 -0
- package/dist/extensions/types.js.map +1 -0
- package/dist/http/SubgraphSparqlHttpHandler.d.ts +20 -1
- package/dist/http/SubgraphSparqlHttpHandler.js +324 -43
- package/dist/http/SubgraphSparqlHttpHandler.js.map +1 -1
- package/dist/http/SubgraphSparqlHttpHandler.jsonld +87 -0
- package/dist/identity/drizzle/EdgeNodeRepository.js +3 -2
- package/dist/identity/drizzle/EdgeNodeRepository.js.map +1 -1
- package/dist/identity/drizzle/schema.pg.js +1 -1
- package/dist/identity/drizzle/schema.pg.js.map +1 -1
- package/dist/identity/drizzle/schema.sqlite.js +1 -1
- package/dist/identity/drizzle/schema.sqlite.js.map +1 -1
- package/dist/identity/oidc/ScopedPickWebIdHandler.js +5 -5
- package/dist/identity/oidc/ScopedPickWebIdHandler.js.map +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/main.js +3 -0
- package/dist/main.js.map +1 -1
- package/dist/provision/LocalProvisionState.d.ts +28 -0
- package/dist/provision/LocalProvisionState.js +124 -0
- package/dist/provision/LocalProvisionState.js.map +1 -0
- package/dist/provision/ProvisionCodeCodec.d.ts +7 -3
- package/dist/provision/ProvisionCodeCodec.js +10 -3
- package/dist/provision/ProvisionCodeCodec.js.map +1 -1
- package/dist/provision/ProvisionPodCreator.d.ts +15 -1
- package/dist/provision/ProvisionPodCreator.js +68 -1
- package/dist/provision/ProvisionPodCreator.js.map +1 -1
- package/dist/provision/ProvisionPodCreator.jsonld +31 -0
- package/dist/provision/ServiceAccessTokenCodec.d.ts +45 -0
- package/dist/provision/ServiceAccessTokenCodec.js +86 -0
- package/dist/provision/ServiceAccessTokenCodec.js.map +1 -0
- package/dist/runtime/GatewayAdminProxyAuth.d.ts +29 -0
- package/dist/runtime/GatewayAdminProxyAuth.js +108 -0
- package/dist/runtime/GatewayAdminProxyAuth.js.map +1 -0
- package/dist/runtime/Proxy.d.ts +10 -0
- package/dist/runtime/Proxy.js +64 -6
- package/dist/runtime/Proxy.js.map +1 -1
- package/dist/runtime/XpodRuntime.js +1 -0
- package/dist/runtime/XpodRuntime.js.map +1 -1
- package/dist/runtime/bootstrap.d.ts +1 -0
- package/dist/runtime/bootstrap.js +29 -0
- package/dist/runtime/bootstrap.js.map +1 -1
- package/dist/runtime/css-process.d.ts +1 -0
- package/dist/runtime/css-process.js +1 -0
- package/dist/runtime/css-process.js.map +1 -1
- package/dist/runtime/index.d.ts +1 -0
- package/dist/runtime/index.js +3 -1
- package/dist/runtime/index.js.map +1 -1
- package/dist/runtime/lifecycle.d.ts +3 -1
- package/dist/runtime/lifecycle.js +3 -1
- package/dist/runtime/lifecycle.js.map +1 -1
- package/dist/runtime/runner/node/NodeGatewayRuntimeRunner.js +2 -0
- package/dist/runtime/runner/node/NodeGatewayRuntimeRunner.js.map +1 -1
- package/dist/runtime/runner/types.d.ts +3 -0
- package/dist/runtime/runner/types.js.map +1 -1
- package/dist/runtime/runtime-types.d.ts +2 -0
- package/dist/runtime/runtime-types.js.map +1 -1
- package/dist/runtime/safe-env.d.ts +15 -0
- package/dist/runtime/safe-env.js +109 -0
- package/dist/runtime/safe-env.js.map +1 -0
- package/dist/security/index.d.ts +1 -0
- package/dist/security/index.js +18 -0
- package/dist/security/index.js.map +1 -0
- package/dist/security/secret-cell/DeploymentRootKeyProvider.d.ts +17 -0
- package/dist/security/secret-cell/DeploymentRootKeyProvider.js +61 -0
- package/dist/security/secret-cell/DeploymentRootKeyProvider.js.map +1 -0
- package/dist/security/secret-cell/DeploymentRootKeyProvider.jsonld +124 -0
- package/dist/security/secret-cell/SecretCellVault.d.ts +55 -0
- package/dist/security/secret-cell/SecretCellVault.js +242 -0
- package/dist/security/secret-cell/SecretCellVault.js.map +1 -0
- package/dist/security/secret-cell/SecretCellVault.jsonld +207 -0
- package/dist/security/secret-cell/index.d.ts +2 -0
- package/dist/security/secret-cell/index.js +11 -0
- package/dist/security/secret-cell/index.js.map +1 -0
- package/dist/solidfs/CompositeSolidFsSyncer.d.ts +18 -0
- package/dist/solidfs/CompositeSolidFsSyncer.js +32 -0
- package/dist/solidfs/CompositeSolidFsSyncer.js.map +1 -0
- package/dist/solidfs/LocalSolidFS.js +25 -1
- package/dist/solidfs/LocalSolidFS.js.map +1 -1
- package/dist/solidfs/RdfIndexSolidFsSyncer.d.ts +41 -2
- package/dist/solidfs/RdfIndexSolidFsSyncer.js +331 -21
- package/dist/solidfs/RdfIndexSolidFsSyncer.js.map +1 -1
- package/dist/solidfs/SolidFsMetaNotes.d.ts +25 -0
- package/dist/solidfs/SolidFsMetaNotes.js +103 -0
- package/dist/solidfs/SolidFsMetaNotes.js.map +1 -0
- package/dist/solidfs/SolidFsSyncJournal.d.ts +2 -2
- package/dist/solidfs/SolidFsSyncJournal.js +9 -4
- package/dist/solidfs/SolidFsSyncJournal.js.map +1 -1
- package/dist/solidfs/SolidFsSyncJournal.jsonld +119 -0
- package/dist/solidfs/WorkspacePrompt.d.ts +13 -0
- package/dist/solidfs/WorkspacePrompt.js +42 -0
- package/dist/solidfs/WorkspacePrompt.js.map +1 -0
- package/dist/solidfs/index.d.ts +3 -0
- package/dist/solidfs/index.js +3 -0
- package/dist/solidfs/index.js.map +1 -1
- package/dist/solidfs/types.d.ts +12 -2
- package/dist/solidfs/types.js.map +1 -1
- package/dist/storage/accessors/MixDataAccessor.d.ts +36 -4
- package/dist/storage/accessors/MixDataAccessor.js +222 -23
- package/dist/storage/accessors/MixDataAccessor.js.map +1 -1
- package/dist/storage/accessors/MixDataAccessor.jsonld +89 -0
- package/dist/storage/accessors/SolidRdfDataAccessor.d.ts +6 -1
- package/dist/storage/accessors/SolidRdfDataAccessor.js +35 -0
- package/dist/storage/accessors/SolidRdfDataAccessor.js.map +1 -1
- package/dist/storage/accessors/SolidRdfDataAccessor.jsonld +20 -0
- package/dist/storage/database/PostgresPoolManager.d.ts +1 -0
- package/dist/storage/database/PostgresPoolManager.js +2 -2
- package/dist/storage/database/PostgresPoolManager.js.map +1 -1
- package/dist/storage/locking/UrlAwareRedisLocker.d.ts +2 -0
- package/dist/storage/locking/UrlAwareRedisLocker.js +65 -0
- package/dist/storage/locking/UrlAwareRedisLocker.js.map +1 -1
- package/dist/storage/locking/UrlAwareRedisLocker.jsonld +19 -0
- package/dist/storage/rdf/PostgresRdfEngine.d.ts +286 -9
- package/dist/storage/rdf/PostgresRdfEngine.js +10773 -2084
- package/dist/storage/rdf/PostgresRdfEngine.js.map +1 -1
- package/dist/storage/rdf/PostgresRdfEngine.jsonld +1693 -89
- package/dist/storage/rdf/PostgresRdfSqlExecutor.d.ts +24 -0
- package/dist/storage/rdf/PostgresRdfSqlExecutor.js +131 -0
- package/dist/storage/rdf/PostgresRdfSqlExecutor.js.map +1 -0
- package/dist/storage/rdf/PostgresRdfTextIndex.d.ts +54 -0
- package/dist/storage/rdf/PostgresRdfTextIndex.js +1255 -0
- package/dist/storage/rdf/PostgresRdfTextIndex.js.map +1 -0
- package/dist/storage/rdf/PostgresRdfTextIndex.jsonld +487 -0
- package/dist/storage/rdf/PostgresRdfVectorIndex.d.ts +46 -0
- package/dist/storage/rdf/PostgresRdfVectorIndex.js +1165 -0
- package/dist/storage/rdf/PostgresRdfVectorIndex.js.map +1 -0
- package/dist/storage/rdf/PostgresRdfVectorIndex.jsonld +423 -0
- package/dist/storage/rdf/Rdf3xIndex.d.ts +14 -1
- package/dist/storage/rdf/Rdf3xIndex.js +286 -2
- package/dist/storage/rdf/Rdf3xIndex.js.map +1 -1
- package/dist/storage/rdf/Rdf3xIndex.jsonld +36 -0
- package/dist/storage/rdf/Rdf3xSchema.d.ts +5 -1
- package/dist/storage/rdf/Rdf3xSchema.js +17 -3
- package/dist/storage/rdf/Rdf3xSchema.js.map +1 -1
- package/dist/storage/rdf/RdfAccessScope.d.ts +22 -0
- package/dist/storage/rdf/RdfAccessScope.js +345 -0
- package/dist/storage/rdf/RdfAccessScope.js.map +1 -0
- package/dist/storage/rdf/RdfAccessScope.jsonld +45 -0
- package/dist/storage/rdf/RdfFusionRankPlan.d.ts +2 -0
- package/dist/storage/rdf/RdfFusionRankPlan.js +186 -0
- package/dist/storage/rdf/RdfFusionRankPlan.js.map +1 -0
- package/dist/storage/rdf/RdfJoinShape.d.ts +8 -0
- package/dist/storage/rdf/RdfJoinShape.js +31 -0
- package/dist/storage/rdf/RdfJoinShape.js.map +1 -0
- package/dist/storage/rdf/RdfQuadIndex.d.ts +5 -2
- package/dist/storage/rdf/RdfQuadIndex.js +94 -6
- package/dist/storage/rdf/RdfQuadIndex.js.map +1 -1
- package/dist/storage/rdf/RdfQuadIndex.jsonld +12 -0
- package/dist/storage/rdf/RdfQueryExecutor.d.ts +3 -4
- package/dist/storage/rdf/RdfQueryExecutor.js +235 -8
- package/dist/storage/rdf/RdfQueryExecutor.js.map +1 -1
- package/dist/storage/rdf/RdfSearchSourceFilter.d.ts +10 -0
- package/dist/storage/rdf/RdfSearchSourceFilter.js +83 -0
- package/dist/storage/rdf/RdfSearchSourceFilter.js.map +1 -0
- package/dist/storage/rdf/RdfSparqlAdapter.d.ts +27 -1
- package/dist/storage/rdf/RdfSparqlAdapter.js +265 -3
- package/dist/storage/rdf/RdfSparqlAdapter.js.map +1 -1
- package/dist/storage/rdf/RdfSparqlAdapter.jsonld +8 -0
- package/dist/storage/rdf/RdfTermDictionary.d.ts +7 -1
- package/dist/storage/rdf/RdfTermDictionary.js +139 -0
- package/dist/storage/rdf/RdfTermDictionary.js.map +1 -1
- package/dist/storage/rdf/RdfTermDictionary.jsonld +4 -0
- package/dist/storage/rdf/RdfTextIndex.d.ts +45 -2
- package/dist/storage/rdf/RdfTextIndex.js +810 -114
- package/dist/storage/rdf/RdfTextIndex.js.map +1 -1
- package/dist/storage/rdf/RdfTextIndex.jsonld +193 -0
- package/dist/storage/rdf/RdfTextProjection.d.ts +10 -0
- package/dist/storage/rdf/RdfTextProjection.js +258 -0
- package/dist/storage/rdf/RdfTextProjection.js.map +1 -0
- package/dist/storage/rdf/RdfVectorIndex.d.ts +30 -2
- package/dist/storage/rdf/RdfVectorIndex.js +461 -38
- package/dist/storage/rdf/RdfVectorIndex.js.map +1 -1
- package/dist/storage/rdf/RdfVectorIndex.jsonld +163 -0
- package/dist/storage/rdf/SolidRdfEngine.d.ts +12 -9
- package/dist/storage/rdf/SolidRdfEngine.js +48 -22
- package/dist/storage/rdf/SolidRdfEngine.js.map +1 -1
- package/dist/storage/rdf/SolidRdfEngine.jsonld +33 -43
- package/dist/storage/rdf/SolidRdfSparqlEngine.d.ts +19 -8
- package/dist/storage/rdf/SolidRdfSparqlEngine.js +674 -44
- package/dist/storage/rdf/SolidRdfSparqlEngine.js.map +1 -1
- package/dist/storage/rdf/SolidRdfSparqlEngine.jsonld +51 -0
- package/dist/storage/rdf/index.d.ts +9 -5
- package/dist/storage/rdf/index.js +42 -1
- package/dist/storage/rdf/index.js.map +1 -1
- package/dist/storage/rdf/models-benchmark.d.ts +264 -2
- package/dist/storage/rdf/models-benchmark.js +4207 -155
- package/dist/storage/rdf/models-benchmark.js.map +1 -1
- package/dist/storage/rdf/types.d.ts +833 -4
- package/dist/storage/rdf/types.js.map +1 -1
- package/dist/storage/rdf/types.jsonld +348 -0
- package/dist/storage/sparql/CompatibilitySparqlEngine.d.ts +14 -13
- package/dist/storage/sparql/CompatibilitySparqlEngine.js +24 -24
- package/dist/storage/sparql/CompatibilitySparqlEngine.js.map +1 -1
- package/dist/storage/sparql/CompatibilitySparqlEngineImpl.d.ts +14 -13
- package/dist/storage/sparql/CompatibilitySparqlEngineImpl.js +30 -18
- package/dist/storage/sparql/CompatibilitySparqlEngineImpl.js.map +1 -1
- package/dist/storage/sparql/SubgraphQueryEngine.d.ts +21 -12
- package/dist/storage/sparql/SubgraphQueryEngine.js +12 -12
- package/dist/storage/sparql/SubgraphQueryEngine.js.map +1 -1
- package/dist/terminal/sandbox/MacOSSandbox.js +2 -1
- package/dist/terminal/sandbox/MacOSSandbox.js.map +1 -1
- package/dist/terminal/sandbox/index.js +2 -1
- package/dist/terminal/sandbox/index.js.map +1 -1
- package/dist/test-utils/no-auth-xpod.js +3 -0
- package/dist/test-utils/no-auth-xpod.js.map +1 -1
- package/dist/tunnel/LocalTunnelProvider.d.ts +3 -0
- package/dist/tunnel/LocalTunnelProvider.js +17 -1
- package/dist/tunnel/LocalTunnelProvider.js.map +1 -1
- package/dist/tunnel/LocalTunnelProvider.jsonld +23 -0
- package/dist/tunnel/SakuraFrpTunnelProvider.d.ts +3 -0
- package/dist/tunnel/SakuraFrpTunnelProvider.js +18 -2
- package/dist/tunnel/SakuraFrpTunnelProvider.js.map +1 -1
- package/dist/tunnel/TunnelProfiles.d.ts +22 -0
- package/dist/tunnel/TunnelProfiles.js +208 -0
- package/dist/tunnel/TunnelProfiles.js.map +1 -0
- package/dist/tunnel/index.d.ts +2 -0
- package/dist/tunnel/index.js +4 -1
- package/dist/tunnel/index.js.map +1 -1
- package/dist/util/identifiers/ClusterIdentifierStrategy.d.ts +3 -0
- package/dist/util/identifiers/ClusterIdentifierStrategy.js +18 -2
- package/dist/util/identifiers/ClusterIdentifierStrategy.js.map +1 -1
- package/dist/util/identifiers/ClusterIdentifierStrategy.jsonld +5 -1
- package/node_modules/@undefineds.co/ai-connection/dist/AiClientConfigurationSection.d.ts +55 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiClientConfigurationSection.js +167 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionHeader.d.ts +3 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionHeader.js +8 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionList.d.ts +4 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionList.js +36 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionMain.d.ts +4 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionMain.js +37 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionMainHeader.d.ts +3 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionMainHeader.js +7 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionPanel.d.ts +14 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiConnectionPanel.js +333 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiProviderCard.d.ts +22 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiProviderCard.js +43 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiQuotaCard.d.ts +8 -0
- package/node_modules/@undefineds.co/ai-connection/dist/AiQuotaCard.js +6 -0
- package/node_modules/@undefineds.co/ai-connection/dist/ai-connection-client.d.ts +120 -0
- package/node_modules/@undefineds.co/ai-connection/dist/ai-connection-client.js +414 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/base-adapter.d.ts +32 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/base-adapter.js +212 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/codex.d.ts +14 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/codex.js +90 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/index.cjs +668 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/index.d.ts +6 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/index.js +6 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/json-env-adapter.d.ts +21 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/json-env-adapter.js +82 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/pi.d.ts +13 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/pi.js +83 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/transaction.d.ts +17 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/transaction.js +153 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/types.d.ts +40 -0
- package/node_modules/@undefineds.co/ai-connection/dist/client-config/types.js +1 -0
- package/node_modules/@undefineds.co/ai-connection/dist/controller.d.ts +42 -0
- package/node_modules/@undefineds.co/ai-connection/dist/controller.js +289 -0
- package/node_modules/@undefineds.co/ai-connection/dist/index.d.ts +16 -0
- package/node_modules/@undefineds.co/ai-connection/dist/index.js +41 -0
- package/node_modules/@undefineds.co/ai-connection/dist/manifest.d.ts +1 -0
- package/node_modules/@undefineds.co/ai-connection/dist/manifest.js +18 -0
- package/node_modules/@undefineds.co/ai-connection/dist/service-access.d.ts +3 -0
- package/node_modules/@undefineds.co/ai-connection/dist/service-access.js +133 -0
- package/node_modules/@undefineds.co/ai-connection/package.json +50 -0
- package/node_modules/@undefineds.co/extension-sdk/README.md +299 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/index.d.ts +5 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/index.js +5 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/layout.d.ts +16 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/layout.js +36 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/manifest.d.ts +27 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/manifest.js +79 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/app-layout.d.ts +7 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/app-layout.js +8 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/auth-boundary.d.ts +27 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/auth-boundary.js +49 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/layout-context.d.ts +11 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/layout-context.js +9 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/workspace-layout.d.ts +38 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react/workspace-layout.js +132 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react.d.ts +12 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/react.js +19 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/testing.d.ts +7 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/testing.js +27 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/web.d.ts +225 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/web.js +142 -0
- package/node_modules/@undefineds.co/extension-sdk/package.json +49 -0
- package/node_modules/@undefineds.co/shared-ui/dist/badge.d.ts +8 -0
- package/node_modules/@undefineds.co/shared-ui/dist/badge.js +17 -0
- package/node_modules/@undefineds.co/shared-ui/dist/button.d.ts +10 -0
- package/node_modules/@undefineds.co/shared-ui/dist/button.js +30 -0
- package/node_modules/@undefineds.co/shared-ui/dist/card.d.ts +7 -0
- package/node_modules/@undefineds.co/shared-ui/dist/card.js +15 -0
- package/node_modules/@undefineds.co/shared-ui/dist/index.d.ts +6 -0
- package/node_modules/@undefineds.co/shared-ui/dist/index.js +6 -0
- package/node_modules/@undefineds.co/shared-ui/dist/input.d.ts +4 -0
- package/node_modules/@undefineds.co/shared-ui/dist/input.js +5 -0
- package/node_modules/@undefineds.co/shared-ui/dist/theme.css +121 -0
- package/node_modules/@undefineds.co/shared-ui/dist/utils.d.ts +2 -0
- package/node_modules/@undefineds.co/shared-ui/dist/utils.js +5 -0
- package/node_modules/@undefineds.co/shared-ui/dist/workspace.d.ts +23 -0
- package/node_modules/@undefineds.co/shared-ui/dist/workspace.js +38 -0
- package/node_modules/@undefineds.co/shared-ui/package.json +39 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/index.d.ts +3 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/index.js +3 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/pod-runtime.d.ts +45 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/pod-runtime.js +147 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/react.d.ts +15 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/react.js +15 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/session.d.ts +42 -0
- package/node_modules/@undefineds.co/solid-sdk/dist/session.js +127 -0
- package/node_modules/@undefineds.co/solid-sdk/package.json +45 -0
- package/package.json +32 -12
- package/static/app/assets/index-BoYHJ6si.js +230 -0
- package/static/app/assets/inrupt-smoke.js +2 -2
- package/static/app/assets/main.css +1 -1
- package/static/app/assets/main.js +9 -9
- package/static/dashboard/assets/NetworkPage-Brt79fuQ.js +2 -0
- package/static/dashboard/assets/PaneListHeader-57nvMwH6.js +1 -0
- package/static/dashboard/assets/PodPage-CM6do1vB.js +2 -0
- package/static/dashboard/assets/ServicesPage-BUNxGJRz.js +1 -0
- package/static/dashboard/assets/card-B9Zjf_2p.js +1 -0
- package/static/dashboard/assets/dashboard-8C6o666W.js +305 -0
- package/static/dashboard/assets/dashboard-CSdewNeA.css +1 -0
- package/static/dashboard/assets/database-DPh9wDY9.js +1 -0
- package/static/dashboard/assets/external-link-VbMQvVMz.js +1 -0
- package/static/dashboard/assets/index-RfiFckzb.js +51 -0
- package/static/dashboard/assets/refresh-cw-BxVxNxNr.js +1 -0
- package/static/dashboard/assets/services-status-context-DKmJ7ISr.js +1 -0
- package/static/dashboard/dashboard.html +2 -2
- package/static/settings/assets/ModelsPage-D_IH7AH3.js +1 -0
- package/static/settings/assets/PaneListHeader-Bgaze006.js +1 -0
- package/static/settings/assets/PodPage-Cy1VNObw.js +2 -0
- package/static/settings/assets/ServicesPage-BsFaxVWC.js +1 -0
- package/static/settings/assets/SettingsPage-UafNWE_p.js +48 -0
- package/static/settings/assets/card-B_bXSIn-.js +1 -0
- package/static/settings/assets/services-status-context-DiX-AbrP.js +1 -0
- package/static/settings/assets/settings-B30oMfZq.js +305 -0
- package/static/settings/assets/settings-CSdewNeA.css +1 -0
- package/static/settings/assets/workspace-layout-Dv1Yn9Ci.js +1 -0
- package/static/settings/auth.html +21 -0
- package/static/settings/reachability.html +221 -0
- package/static/settings/reachability.svg +7 -0
- package/static/settings/reachability.webmanifest +18 -0
- package/static/settings/settings.html +13 -0
- package/static/settings/signal-pod.html +293 -0
- package/static/settings/vite.svg +1 -0
- package/dist/api/service/ai-gateway-transport.d.ts +0 -25
- package/dist/api/service/ai-gateway-transport.js +0 -136
- package/dist/api/service/ai-gateway-transport.js.map +0 -1
- package/dist/api/service/chat-protocol-adapters.d.ts +0 -5
- package/dist/api/service/chat-protocol-adapters.js +0 -146
- package/dist/api/service/chat-protocol-adapters.js.map +0 -1
- package/dist/api/service/chat-routing.d.ts +0 -8
- package/dist/api/service/chat-routing.js +0 -16
- package/dist/api/service/chat-routing.js.map +0 -1
- package/dist/api/service/platform-ai-config.d.ts +0 -10
- package/dist/api/service/platform-ai-config.js +0 -76
- package/dist/api/service/platform-ai-config.js.map +0 -1
- package/dist/document/DocumentParser.js.map +0 -1
- package/dist/document/JinaDocumentParser.js.map +0 -1
- package/static/app/assets/index-C1yksyT4.js +0 -171
- package/static/dashboard/assets/dashboard-BssaVKTn.css +0 -1
- package/static/dashboard/assets/dashboard-Ckuadl3C.js +0 -54
|
@@ -68,6 +68,36 @@
|
|
|
68
68
|
"@prefix": true,
|
|
69
69
|
"@context": {}
|
|
70
70
|
},
|
|
71
|
+
"RdfTextIndexLike": {
|
|
72
|
+
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfTextIndexLike",
|
|
73
|
+
"@prefix": true,
|
|
74
|
+
"@context": {}
|
|
75
|
+
},
|
|
76
|
+
"RdfTextIndexOptions": {
|
|
77
|
+
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfTextIndexOptions",
|
|
78
|
+
"@prefix": true,
|
|
79
|
+
"@context": {}
|
|
80
|
+
},
|
|
81
|
+
"RdfTextIndexSyncLike": {
|
|
82
|
+
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfTextIndexSyncLike",
|
|
83
|
+
"@prefix": true,
|
|
84
|
+
"@context": {}
|
|
85
|
+
},
|
|
86
|
+
"RdfVectorIndexLike": {
|
|
87
|
+
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfVectorIndexLike",
|
|
88
|
+
"@prefix": true,
|
|
89
|
+
"@context": {}
|
|
90
|
+
},
|
|
91
|
+
"RdfVectorIndexOptions": {
|
|
92
|
+
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfVectorIndexOptions",
|
|
93
|
+
"@prefix": true,
|
|
94
|
+
"@context": {}
|
|
95
|
+
},
|
|
96
|
+
"RdfVectorIndexSyncLike": {
|
|
97
|
+
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfVectorIndexSyncLike",
|
|
98
|
+
"@prefix": true,
|
|
99
|
+
"@context": {}
|
|
100
|
+
},
|
|
71
101
|
"RdfShadowBackfillOptions": {
|
|
72
102
|
"@id": "undefineds:dist/storage/rdf/types.jsonld#RdfShadowBackfillOptions",
|
|
73
103
|
"@prefix": true,
|
|
@@ -103,6 +133,11 @@
|
|
|
103
133
|
"@prefix": true,
|
|
104
134
|
"@context": {}
|
|
105
135
|
},
|
|
136
|
+
"RdfAccessScope": {
|
|
137
|
+
"@id": "undefineds:dist/storage/rdf/RdfAccessScope.jsonld#RdfAccessScope",
|
|
138
|
+
"@prefix": true,
|
|
139
|
+
"@context": {}
|
|
140
|
+
},
|
|
106
141
|
"ShadowRdfQuintStoreOptions": {
|
|
107
142
|
"@id": "undefineds:dist/storage/rdf/ShadowRdfQuintStore.jsonld#ShadowRdfQuintStoreOptions",
|
|
108
143
|
"@prefix": true,
|
|
@@ -176,6 +211,9 @@
|
|
|
176
211
|
"onFallback": {
|
|
177
212
|
"@id": "undefineds:dist/storage/rdf/SolidRdfSparqlEngine.jsonld#SolidRdfSparqlEngine_onFallback"
|
|
178
213
|
},
|
|
214
|
+
"autoMaterializeProductViews": {
|
|
215
|
+
"@id": "undefineds:dist/storage/rdf/SolidRdfSparqlEngine.jsonld#SolidRdfSparqlEngine_autoMaterializeProductViews"
|
|
216
|
+
},
|
|
179
217
|
"rdfEngine": {
|
|
180
218
|
"@id": "undefineds:dist/storage/rdf/SolidRdfSparqlEngine.jsonld#SolidRdfSparqlEngine_rdfEngine"
|
|
181
219
|
},
|
|
@@ -184,9 +222,6 @@
|
|
|
184
222
|
},
|
|
185
223
|
"shadowStore": {
|
|
186
224
|
"@id": "undefineds:dist/storage/rdf/SolidRdfSparqlEngine.jsonld#SolidRdfSparqlEngine_shadowStore"
|
|
187
|
-
},
|
|
188
|
-
"y": {
|
|
189
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfSparqlEngine.jsonld#SolidRdfSparqlEngine_enablePrimary"
|
|
190
225
|
}
|
|
191
226
|
}
|
|
192
227
|
},
|
|
@@ -229,6 +264,85 @@
|
|
|
229
264
|
"options_autoOpen": {
|
|
230
265
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_autoOpen"
|
|
231
266
|
},
|
|
267
|
+
"options_queryResultCacheEnabled": {
|
|
268
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheEnabled"
|
|
269
|
+
},
|
|
270
|
+
"options_queryResultCacheMaxEntries": {
|
|
271
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheMaxEntries"
|
|
272
|
+
},
|
|
273
|
+
"options_queryResultCacheTtlMs": {
|
|
274
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheTtlMs"
|
|
275
|
+
},
|
|
276
|
+
"options_queryResultCacheMaxBytes": {
|
|
277
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheMaxBytes"
|
|
278
|
+
},
|
|
279
|
+
"options_materializedResultCacheEnabled": {
|
|
280
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheEnabled"
|
|
281
|
+
},
|
|
282
|
+
"options_materializedResultCacheMaxEntries": {
|
|
283
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheMaxEntries"
|
|
284
|
+
},
|
|
285
|
+
"options_materializedResultCacheTtlMs": {
|
|
286
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheTtlMs"
|
|
287
|
+
},
|
|
288
|
+
"options_materializedResultCacheMaxBytes": {
|
|
289
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheMaxBytes"
|
|
290
|
+
},
|
|
291
|
+
"options_derivedCacheMaxBytes": {
|
|
292
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_derivedCacheMaxBytes"
|
|
293
|
+
},
|
|
294
|
+
"options_derivedCacheScopeMaxBytes": {
|
|
295
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_derivedCacheScopeMaxBytes"
|
|
296
|
+
},
|
|
297
|
+
"options_queryTemplateCacheMaxEntries": {
|
|
298
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryTemplateCacheMaxEntries"
|
|
299
|
+
},
|
|
300
|
+
"options_queryTemplateCacheTtlMs": {
|
|
301
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryTemplateCacheTtlMs"
|
|
302
|
+
},
|
|
303
|
+
"options_queryExplainSlowMs": {
|
|
304
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryExplainSlowMs"
|
|
305
|
+
},
|
|
306
|
+
"options_queryExplainLargeScanRows": {
|
|
307
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryExplainLargeScanRows"
|
|
308
|
+
},
|
|
309
|
+
"options_queryExplainSlowQueryMaxEntries": {
|
|
310
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryExplainSlowQueryMaxEntries"
|
|
311
|
+
},
|
|
312
|
+
"options_rdfAccelerationProfile": {
|
|
313
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_rdfAccelerationProfile"
|
|
314
|
+
},
|
|
315
|
+
"options_rdfAccelerationRequiredCapabilities": {
|
|
316
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_rdfAccelerationRequiredCapabilities",
|
|
317
|
+
"@container": "@list"
|
|
318
|
+
},
|
|
319
|
+
"options_deferPgCustomIndexInitialization": {
|
|
320
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_deferPgCustomIndexInitialization"
|
|
321
|
+
},
|
|
322
|
+
"options_maintenanceIntervalMs": {
|
|
323
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceIntervalMs"
|
|
324
|
+
},
|
|
325
|
+
"options_maintenanceSourceBatchSize": {
|
|
326
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceSourceBatchSize"
|
|
327
|
+
},
|
|
328
|
+
"options_maintenanceLeaseTtlMs": {
|
|
329
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceLeaseTtlMs"
|
|
330
|
+
},
|
|
331
|
+
"options_maintenanceLeaseOwner": {
|
|
332
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceLeaseOwner"
|
|
333
|
+
},
|
|
334
|
+
"options_numericAggregateFactsCutoverMaxSourceRows": {
|
|
335
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_numericAggregateFactsCutoverMaxSourceRows"
|
|
336
|
+
},
|
|
337
|
+
"options_textIndex": {
|
|
338
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_textIndex"
|
|
339
|
+
},
|
|
340
|
+
"options_vectorIndex": {
|
|
341
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_vectorIndex"
|
|
342
|
+
},
|
|
343
|
+
"options_nativeSparqlEnabled": {
|
|
344
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_nativeSparqlEnabled"
|
|
345
|
+
},
|
|
232
346
|
"driver": {
|
|
233
347
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_driver"
|
|
234
348
|
},
|
|
@@ -258,6 +372,251 @@
|
|
|
258
372
|
},
|
|
259
373
|
"autoOpen": {
|
|
260
374
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_autoOpen"
|
|
375
|
+
},
|
|
376
|
+
"queryResultCacheEnabled": {
|
|
377
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheEnabled"
|
|
378
|
+
},
|
|
379
|
+
"queryResultCacheMaxEntries": {
|
|
380
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheMaxEntries"
|
|
381
|
+
},
|
|
382
|
+
"queryResultCacheTtlMs": {
|
|
383
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheTtlMs"
|
|
384
|
+
},
|
|
385
|
+
"queryResultCacheMaxBytes": {
|
|
386
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryResultCacheMaxBytes"
|
|
387
|
+
},
|
|
388
|
+
"materializedResultCacheEnabled": {
|
|
389
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheEnabled"
|
|
390
|
+
},
|
|
391
|
+
"materializedResultCacheMaxEntries": {
|
|
392
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheMaxEntries"
|
|
393
|
+
},
|
|
394
|
+
"materializedResultCacheTtlMs": {
|
|
395
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheTtlMs"
|
|
396
|
+
},
|
|
397
|
+
"materializedResultCacheMaxBytes": {
|
|
398
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_materializedResultCacheMaxBytes"
|
|
399
|
+
},
|
|
400
|
+
"derivedCacheMaxBytes": {
|
|
401
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_derivedCacheMaxBytes"
|
|
402
|
+
},
|
|
403
|
+
"derivedCacheScopeMaxBytes": {
|
|
404
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_derivedCacheScopeMaxBytes"
|
|
405
|
+
},
|
|
406
|
+
"queryTemplateCacheMaxEntries": {
|
|
407
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryTemplateCacheMaxEntries"
|
|
408
|
+
},
|
|
409
|
+
"queryTemplateCacheTtlMs": {
|
|
410
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryTemplateCacheTtlMs"
|
|
411
|
+
},
|
|
412
|
+
"queryExplainSlowMs": {
|
|
413
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryExplainSlowMs"
|
|
414
|
+
},
|
|
415
|
+
"queryExplainLargeScanRows": {
|
|
416
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryExplainLargeScanRows"
|
|
417
|
+
},
|
|
418
|
+
"queryExplainSlowQueryMaxEntries": {
|
|
419
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_queryExplainSlowQueryMaxEntries"
|
|
420
|
+
},
|
|
421
|
+
"rdfAccelerationProfile": {
|
|
422
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_rdfAccelerationProfile"
|
|
423
|
+
},
|
|
424
|
+
"rdfAccelerationRequiredCapabilities": {
|
|
425
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_rdfAccelerationRequiredCapabilities",
|
|
426
|
+
"@container": "@list"
|
|
427
|
+
},
|
|
428
|
+
"deferPgCustomIndexInitialization": {
|
|
429
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_deferPgCustomIndexInitialization"
|
|
430
|
+
},
|
|
431
|
+
"maintenanceIntervalMs": {
|
|
432
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceIntervalMs"
|
|
433
|
+
},
|
|
434
|
+
"maintenanceSourceBatchSize": {
|
|
435
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceSourceBatchSize"
|
|
436
|
+
},
|
|
437
|
+
"maintenanceLeaseTtlMs": {
|
|
438
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceLeaseTtlMs"
|
|
439
|
+
},
|
|
440
|
+
"maintenanceLeaseOwner": {
|
|
441
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_maintenanceLeaseOwner"
|
|
442
|
+
},
|
|
443
|
+
"numericAggregateFactsCutoverMaxSourceRows": {
|
|
444
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_numericAggregateFactsCutoverMaxSourceRows"
|
|
445
|
+
},
|
|
446
|
+
"textIndex": {
|
|
447
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_textIndex"
|
|
448
|
+
},
|
|
449
|
+
"vectorIndex": {
|
|
450
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_vectorIndex"
|
|
451
|
+
},
|
|
452
|
+
"nativeSparqlEnabled": {
|
|
453
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfEngine.jsonld#PostgresRdfEngine_options_nativeSparqlEnabled"
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"PostgresRdfTextIndexOptions": {
|
|
458
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndexOptions",
|
|
459
|
+
"@prefix": true,
|
|
460
|
+
"@context": {}
|
|
461
|
+
},
|
|
462
|
+
"PostgresRdfTextIndex": {
|
|
463
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex",
|
|
464
|
+
"@prefix": true,
|
|
465
|
+
"@context": {
|
|
466
|
+
"options_driver": {
|
|
467
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_driver"
|
|
468
|
+
},
|
|
469
|
+
"options_dataDir": {
|
|
470
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_dataDir"
|
|
471
|
+
},
|
|
472
|
+
"options_connectionString": {
|
|
473
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_connectionString"
|
|
474
|
+
},
|
|
475
|
+
"options_host": {
|
|
476
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_host"
|
|
477
|
+
},
|
|
478
|
+
"options_port": {
|
|
479
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_port"
|
|
480
|
+
},
|
|
481
|
+
"options_database": {
|
|
482
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_database"
|
|
483
|
+
},
|
|
484
|
+
"options_user": {
|
|
485
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_user"
|
|
486
|
+
},
|
|
487
|
+
"options_password": {
|
|
488
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_password"
|
|
489
|
+
},
|
|
490
|
+
"options_pool": {
|
|
491
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_pool"
|
|
492
|
+
},
|
|
493
|
+
"options_autoOpen": {
|
|
494
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_autoOpen"
|
|
495
|
+
},
|
|
496
|
+
"options_maxSourceBytes": {
|
|
497
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_maxSourceBytes"
|
|
498
|
+
},
|
|
499
|
+
"options_maxChunksPerSource": {
|
|
500
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_maxChunksPerSource"
|
|
501
|
+
},
|
|
502
|
+
"options_textSearchBackend": {
|
|
503
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_textSearchBackend"
|
|
504
|
+
},
|
|
505
|
+
"driver": {
|
|
506
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_driver"
|
|
507
|
+
},
|
|
508
|
+
"dataDir": {
|
|
509
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_dataDir"
|
|
510
|
+
},
|
|
511
|
+
"connectionString": {
|
|
512
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_connectionString"
|
|
513
|
+
},
|
|
514
|
+
"host": {
|
|
515
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_host"
|
|
516
|
+
},
|
|
517
|
+
"port": {
|
|
518
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_port"
|
|
519
|
+
},
|
|
520
|
+
"database": {
|
|
521
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_database"
|
|
522
|
+
},
|
|
523
|
+
"user": {
|
|
524
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_user"
|
|
525
|
+
},
|
|
526
|
+
"password": {
|
|
527
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_password"
|
|
528
|
+
},
|
|
529
|
+
"pool": {
|
|
530
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_pool"
|
|
531
|
+
},
|
|
532
|
+
"autoOpen": {
|
|
533
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_autoOpen"
|
|
534
|
+
},
|
|
535
|
+
"maxSourceBytes": {
|
|
536
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_maxSourceBytes"
|
|
537
|
+
},
|
|
538
|
+
"maxChunksPerSource": {
|
|
539
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_maxChunksPerSource"
|
|
540
|
+
},
|
|
541
|
+
"textSearchBackend": {
|
|
542
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfTextIndex.jsonld#PostgresRdfTextIndex_options_textSearchBackend"
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"PostgresRdfVectorIndexOptions": {
|
|
547
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndexOptions",
|
|
548
|
+
"@prefix": true,
|
|
549
|
+
"@context": {}
|
|
550
|
+
},
|
|
551
|
+
"PostgresRdfVectorIndex": {
|
|
552
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex",
|
|
553
|
+
"@prefix": true,
|
|
554
|
+
"@context": {
|
|
555
|
+
"options_driver": {
|
|
556
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_driver"
|
|
557
|
+
},
|
|
558
|
+
"options_dataDir": {
|
|
559
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_dataDir"
|
|
560
|
+
},
|
|
561
|
+
"options_connectionString": {
|
|
562
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_connectionString"
|
|
563
|
+
},
|
|
564
|
+
"options_host": {
|
|
565
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_host"
|
|
566
|
+
},
|
|
567
|
+
"options_port": {
|
|
568
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_port"
|
|
569
|
+
},
|
|
570
|
+
"options_database": {
|
|
571
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_database"
|
|
572
|
+
},
|
|
573
|
+
"options_user": {
|
|
574
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_user"
|
|
575
|
+
},
|
|
576
|
+
"options_password": {
|
|
577
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_password"
|
|
578
|
+
},
|
|
579
|
+
"options_pool": {
|
|
580
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_pool"
|
|
581
|
+
},
|
|
582
|
+
"options_autoOpen": {
|
|
583
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_autoOpen"
|
|
584
|
+
},
|
|
585
|
+
"options_defaultMetric": {
|
|
586
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_defaultMetric"
|
|
587
|
+
},
|
|
588
|
+
"driver": {
|
|
589
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_driver"
|
|
590
|
+
},
|
|
591
|
+
"dataDir": {
|
|
592
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_dataDir"
|
|
593
|
+
},
|
|
594
|
+
"connectionString": {
|
|
595
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_connectionString"
|
|
596
|
+
},
|
|
597
|
+
"host": {
|
|
598
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_host"
|
|
599
|
+
},
|
|
600
|
+
"port": {
|
|
601
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_port"
|
|
602
|
+
},
|
|
603
|
+
"database": {
|
|
604
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_database"
|
|
605
|
+
},
|
|
606
|
+
"user": {
|
|
607
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_user"
|
|
608
|
+
},
|
|
609
|
+
"password": {
|
|
610
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_password"
|
|
611
|
+
},
|
|
612
|
+
"pool": {
|
|
613
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_pool"
|
|
614
|
+
},
|
|
615
|
+
"autoOpen": {
|
|
616
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_autoOpen"
|
|
617
|
+
},
|
|
618
|
+
"defaultMetric": {
|
|
619
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_defaultMetric"
|
|
261
620
|
}
|
|
262
621
|
}
|
|
263
622
|
},
|
|
@@ -597,6 +956,12 @@
|
|
|
597
956
|
"mirrorContainersToUnstructured": {
|
|
598
957
|
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_mirrorContainersToUnstructured"
|
|
599
958
|
},
|
|
959
|
+
"textSearchIndexingEnabled": {
|
|
960
|
+
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_textSearchIndexingEnabled"
|
|
961
|
+
},
|
|
962
|
+
"localRdfAuthorityJournal": {
|
|
963
|
+
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_localRdfAuthorityJournal"
|
|
964
|
+
},
|
|
600
965
|
"structuredDataAccessor": {
|
|
601
966
|
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_structuredDataAccessor"
|
|
602
967
|
},
|
|
@@ -606,17 +971,8 @@
|
|
|
606
971
|
"rdfFileDataAccessor": {
|
|
607
972
|
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_rdfFileDataAccessor"
|
|
608
973
|
},
|
|
609
|
-
"
|
|
610
|
-
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#
|
|
611
|
-
},
|
|
612
|
-
"structured": {
|
|
613
|
-
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_mirrorContainersToUnstructured"
|
|
614
|
-
},
|
|
615
|
-
"or": {
|
|
616
|
-
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_structuredDataAccessor"
|
|
617
|
-
},
|
|
618
|
-
"ssor": {
|
|
619
|
-
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_unstructuredDataAccessor"
|
|
974
|
+
"rdfFileMapper": {
|
|
975
|
+
"@id": "undefineds:dist/storage/accessors/MixDataAccessor.jsonld#MixDataAccessor_rdfFileMapper"
|
|
620
976
|
}
|
|
621
977
|
}
|
|
622
978
|
},
|
|
@@ -723,6 +1079,9 @@
|
|
|
723
1079
|
"queryEngine": {
|
|
724
1080
|
"@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_queryEngine"
|
|
725
1081
|
},
|
|
1082
|
+
"updateAuthority": {
|
|
1083
|
+
"@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_updateAuthority"
|
|
1084
|
+
},
|
|
726
1085
|
"options_containerSuffix": {
|
|
727
1086
|
"@id": "undefineds:dist/http/SubgraphSparqlHttpHandler.jsonld#SubgraphSparqlHttpHandler_options_containerSuffix"
|
|
728
1087
|
},
|
|
@@ -1499,6 +1858,42 @@
|
|
|
1499
1858
|
"options_p2pWinnerSelectionWindowMs": {
|
|
1500
1859
|
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_p2pWinnerSelectionWindowMs"
|
|
1501
1860
|
},
|
|
1861
|
+
"options_certificateBridgeId": {
|
|
1862
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_certificateBridgeId"
|
|
1863
|
+
},
|
|
1864
|
+
"options_acmeMode": {
|
|
1865
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeMode"
|
|
1866
|
+
},
|
|
1867
|
+
"options_acmeEmail": {
|
|
1868
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeEmail"
|
|
1869
|
+
},
|
|
1870
|
+
"options_acmeDomains": {
|
|
1871
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeDomains"
|
|
1872
|
+
},
|
|
1873
|
+
"options_acmeDirectoryUrl": {
|
|
1874
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeDirectoryUrl"
|
|
1875
|
+
},
|
|
1876
|
+
"options_acmeAccountKeyPath": {
|
|
1877
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeAccountKeyPath"
|
|
1878
|
+
},
|
|
1879
|
+
"options_acmeCertificateKeyPath": {
|
|
1880
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeCertificateKeyPath"
|
|
1881
|
+
},
|
|
1882
|
+
"options_acmeCertificatePath": {
|
|
1883
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeCertificatePath"
|
|
1884
|
+
},
|
|
1885
|
+
"options_acmeFullChainPath": {
|
|
1886
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeFullChainPath"
|
|
1887
|
+
},
|
|
1888
|
+
"options_acmeRenewBeforeDays": {
|
|
1889
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeRenewBeforeDays"
|
|
1890
|
+
},
|
|
1891
|
+
"options_acmePropagationDelayMs": {
|
|
1892
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmePropagationDelayMs"
|
|
1893
|
+
},
|
|
1894
|
+
"options_acmePostDeployCommand": {
|
|
1895
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmePostDeployCommand"
|
|
1896
|
+
},
|
|
1502
1897
|
"enabled": {
|
|
1503
1898
|
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_enabled"
|
|
1504
1899
|
},
|
|
@@ -1551,6 +1946,42 @@
|
|
|
1551
1946
|
},
|
|
1552
1947
|
"p2pWinnerSelectionWindowMs": {
|
|
1553
1948
|
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_p2pWinnerSelectionWindowMs"
|
|
1949
|
+
},
|
|
1950
|
+
"certificateBridgeId": {
|
|
1951
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_certificateBridgeId"
|
|
1952
|
+
},
|
|
1953
|
+
"acmeMode": {
|
|
1954
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeMode"
|
|
1955
|
+
},
|
|
1956
|
+
"acmeEmail": {
|
|
1957
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeEmail"
|
|
1958
|
+
},
|
|
1959
|
+
"acmeDomains": {
|
|
1960
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeDomains"
|
|
1961
|
+
},
|
|
1962
|
+
"acmeDirectoryUrl": {
|
|
1963
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeDirectoryUrl"
|
|
1964
|
+
},
|
|
1965
|
+
"acmeAccountKeyPath": {
|
|
1966
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeAccountKeyPath"
|
|
1967
|
+
},
|
|
1968
|
+
"acmeCertificateKeyPath": {
|
|
1969
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeCertificateKeyPath"
|
|
1970
|
+
},
|
|
1971
|
+
"acmeCertificatePath": {
|
|
1972
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeCertificatePath"
|
|
1973
|
+
},
|
|
1974
|
+
"acmeFullChainPath": {
|
|
1975
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeFullChainPath"
|
|
1976
|
+
},
|
|
1977
|
+
"acmeRenewBeforeDays": {
|
|
1978
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmeRenewBeforeDays"
|
|
1979
|
+
},
|
|
1980
|
+
"acmePropagationDelayMs": {
|
|
1981
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmePropagationDelayMs"
|
|
1982
|
+
},
|
|
1983
|
+
"acmePostDeployCommand": {
|
|
1984
|
+
"@id": "undefineds:dist/edge/EdgeNodeAgentInitializer.jsonld#EdgeNodeAgentInitializer_options_acmePostDeployCommand"
|
|
1554
1985
|
}
|
|
1555
1986
|
}
|
|
1556
1987
|
},
|
|
@@ -2036,6 +2467,48 @@
|
|
|
2036
2467
|
}
|
|
2037
2468
|
}
|
|
2038
2469
|
},
|
|
2470
|
+
"RdfTextIndex": {
|
|
2471
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex",
|
|
2472
|
+
"@prefix": true,
|
|
2473
|
+
"@context": {
|
|
2474
|
+
"options_path": {
|
|
2475
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex_options_path"
|
|
2476
|
+
},
|
|
2477
|
+
"options_maxSourceBytes": {
|
|
2478
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex_options_maxSourceBytes"
|
|
2479
|
+
},
|
|
2480
|
+
"options_maxChunksPerSource": {
|
|
2481
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex_options_maxChunksPerSource"
|
|
2482
|
+
},
|
|
2483
|
+
"path": {
|
|
2484
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex_options_path"
|
|
2485
|
+
},
|
|
2486
|
+
"maxSourceBytes": {
|
|
2487
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex_options_maxSourceBytes"
|
|
2488
|
+
},
|
|
2489
|
+
"maxChunksPerSource": {
|
|
2490
|
+
"@id": "undefineds:dist/storage/rdf/RdfTextIndex.jsonld#RdfTextIndex_options_maxChunksPerSource"
|
|
2491
|
+
}
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
"RdfVectorIndex": {
|
|
2495
|
+
"@id": "undefineds:dist/storage/rdf/RdfVectorIndex.jsonld#RdfVectorIndex",
|
|
2496
|
+
"@prefix": true,
|
|
2497
|
+
"@context": {
|
|
2498
|
+
"options_path": {
|
|
2499
|
+
"@id": "undefineds:dist/storage/rdf/RdfVectorIndex.jsonld#RdfVectorIndex_options_path"
|
|
2500
|
+
},
|
|
2501
|
+
"options_defaultMetric": {
|
|
2502
|
+
"@id": "undefineds:dist/storage/rdf/RdfVectorIndex.jsonld#RdfVectorIndex_options_defaultMetric"
|
|
2503
|
+
},
|
|
2504
|
+
"path": {
|
|
2505
|
+
"@id": "undefineds:dist/storage/rdf/RdfVectorIndex.jsonld#RdfVectorIndex_options_path"
|
|
2506
|
+
},
|
|
2507
|
+
"defaultMetric": {
|
|
2508
|
+
"@id": "undefineds:dist/storage/rdf/RdfVectorIndex.jsonld#RdfVectorIndex_options_defaultMetric"
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2511
|
+
},
|
|
2039
2512
|
"SolidRdfEngine": {
|
|
2040
2513
|
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine",
|
|
2041
2514
|
"@prefix": true,
|
|
@@ -2049,14 +2522,11 @@
|
|
|
2049
2522
|
"options_derivedIndexProfile": {
|
|
2050
2523
|
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_derivedIndexProfile"
|
|
2051
2524
|
},
|
|
2052
|
-
"
|
|
2053
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#
|
|
2525
|
+
"options_textIndex": {
|
|
2526
|
+
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_textIndex"
|
|
2054
2527
|
},
|
|
2055
|
-
"
|
|
2056
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#
|
|
2057
|
-
},
|
|
2058
|
-
"options_vectorIndex_defaultMetric": {
|
|
2059
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_vectorIndex_defaultMetric"
|
|
2528
|
+
"options_vectorIndex": {
|
|
2529
|
+
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_vectorIndex"
|
|
2060
2530
|
},
|
|
2061
2531
|
"options_rdf3xIndex_path": {
|
|
2062
2532
|
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_rdf3xIndex_path"
|
|
@@ -2082,14 +2552,11 @@
|
|
|
2082
2552
|
"derivedIndexProfile": {
|
|
2083
2553
|
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_derivedIndexProfile"
|
|
2084
2554
|
},
|
|
2085
|
-
"
|
|
2086
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#
|
|
2087
|
-
},
|
|
2088
|
-
"vectorIndex_path": {
|
|
2089
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_vectorIndex_path"
|
|
2555
|
+
"textIndex": {
|
|
2556
|
+
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_textIndex"
|
|
2090
2557
|
},
|
|
2091
|
-
"
|
|
2092
|
-
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#
|
|
2558
|
+
"vectorIndex": {
|
|
2559
|
+
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_vectorIndex"
|
|
2093
2560
|
},
|
|
2094
2561
|
"rdf3xIndex_path": {
|
|
2095
2562
|
"@id": "undefineds:dist/storage/rdf/SolidRdfEngine.jsonld#SolidRdfEngine_options_rdf3xIndex_path"
|
|
@@ -2238,12 +2705,18 @@
|
|
|
2238
2705
|
"options_tunnelToken": {
|
|
2239
2706
|
"@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_tunnelToken"
|
|
2240
2707
|
},
|
|
2708
|
+
"options_publicUrl": {
|
|
2709
|
+
"@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_publicUrl"
|
|
2710
|
+
},
|
|
2241
2711
|
"options_cloudflaredPath": {
|
|
2242
2712
|
"@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_cloudflaredPath"
|
|
2243
2713
|
},
|
|
2244
2714
|
"tunnelToken": {
|
|
2245
2715
|
"@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_tunnelToken"
|
|
2246
2716
|
},
|
|
2717
|
+
"publicUrl": {
|
|
2718
|
+
"@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_publicUrl"
|
|
2719
|
+
},
|
|
2247
2720
|
"cloudflaredPath": {
|
|
2248
2721
|
"@id": "undefineds:dist/tunnel/LocalTunnelProvider.jsonld#LocalTunnelProvider_options_cloudflaredPath"
|
|
2249
2722
|
}
|
|
@@ -2482,6 +2955,9 @@
|
|
|
2482
2955
|
"options_namespacePrefix": {
|
|
2483
2956
|
"@id": "undefineds:dist/storage/locking/UrlAwareRedisLocker.jsonld#UrlAwareRedisLocker_options_namespacePrefix"
|
|
2484
2957
|
},
|
|
2958
|
+
"options_lockKeyTtlSeconds": {
|
|
2959
|
+
"@id": "undefineds:dist/storage/locking/UrlAwareRedisLocker.jsonld#UrlAwareRedisLocker_options_lockKeyTtlSeconds"
|
|
2960
|
+
},
|
|
2485
2961
|
"redisClient": {
|
|
2486
2962
|
"@id": "undefineds:dist/storage/locking/UrlAwareRedisLocker.jsonld#UrlAwareRedisLocker_options_redisClient"
|
|
2487
2963
|
},
|
|
@@ -2496,6 +2972,9 @@
|
|
|
2496
2972
|
},
|
|
2497
2973
|
"namespacePrefix": {
|
|
2498
2974
|
"@id": "undefineds:dist/storage/locking/UrlAwareRedisLocker.jsonld#UrlAwareRedisLocker_options_namespacePrefix"
|
|
2975
|
+
},
|
|
2976
|
+
"lockKeyTtlSeconds": {
|
|
2977
|
+
"@id": "undefineds:dist/storage/locking/UrlAwareRedisLocker.jsonld#UrlAwareRedisLocker_options_lockKeyTtlSeconds"
|
|
2499
2978
|
}
|
|
2500
2979
|
}
|
|
2501
2980
|
},
|
|
@@ -2512,6 +2991,9 @@
|
|
|
2512
2991
|
"args_identityDbUrl": {
|
|
2513
2992
|
"@id": "undefineds:dist/provision/ProvisionPodCreator.jsonld#ProvisionPodCreator_args_identityDbUrl"
|
|
2514
2993
|
},
|
|
2994
|
+
"args_resourceStore": {
|
|
2995
|
+
"@id": "undefineds:dist/provision/ProvisionPodCreator.jsonld#ProvisionPodCreator_args_resourceStore"
|
|
2996
|
+
},
|
|
2515
2997
|
"args_baseUrl": {
|
|
2516
2998
|
"@id": "undefineds:dist/provision/ProvisionPodCreator.jsonld#ProvisionPodCreator_args_baseUrl"
|
|
2517
2999
|
},
|
|
@@ -2536,6 +3018,9 @@
|
|
|
2536
3018
|
"identityDbUrl": {
|
|
2537
3019
|
"@id": "undefineds:dist/provision/ProvisionPodCreator.jsonld#ProvisionPodCreator_args_identityDbUrl"
|
|
2538
3020
|
},
|
|
3021
|
+
"resourceStore": {
|
|
3022
|
+
"@id": "undefineds:dist/provision/ProvisionPodCreator.jsonld#ProvisionPodCreator_args_resourceStore"
|
|
3023
|
+
},
|
|
2539
3024
|
"baseUrl": {
|
|
2540
3025
|
"@id": "undefineds:dist/provision/ProvisionPodCreator.jsonld#ProvisionPodCreator_args_baseUrl"
|
|
2541
3026
|
},
|
|
@@ -2610,6 +3095,308 @@
|
|
|
2610
3095
|
}
|
|
2611
3096
|
}
|
|
2612
3097
|
},
|
|
3098
|
+
"SqliteSolidFsSyncJournal": {
|
|
3099
|
+
"@id": "undefineds:dist/solidfs/SolidFsSyncJournal.jsonld#SqliteSolidFsSyncJournal",
|
|
3100
|
+
"@prefix": true,
|
|
3101
|
+
"@context": {
|
|
3102
|
+
"options": {
|
|
3103
|
+
"@id": "undefineds:dist/solidfs/SolidFsSyncJournal.jsonld#SqliteSolidFsSyncJournal_options"
|
|
3104
|
+
}
|
|
3105
|
+
}
|
|
3106
|
+
},
|
|
3107
|
+
"ReadDocument": {
|
|
3108
|
+
"@id": "undefineds:dist/document/DocumentReader.jsonld#ReadDocument",
|
|
3109
|
+
"@prefix": true,
|
|
3110
|
+
"@context": {}
|
|
3111
|
+
},
|
|
3112
|
+
"DocumentReader": {
|
|
3113
|
+
"@id": "undefineds:dist/document/DocumentReader.jsonld#DocumentReader",
|
|
3114
|
+
"@prefix": true,
|
|
3115
|
+
"@context": {}
|
|
3116
|
+
},
|
|
3117
|
+
"ReadOptions": {
|
|
3118
|
+
"@id": "undefineds:dist/document/DocumentReader.jsonld#ReadOptions",
|
|
3119
|
+
"@prefix": true,
|
|
3120
|
+
"@context": {}
|
|
3121
|
+
},
|
|
3122
|
+
"TextChunk": {
|
|
3123
|
+
"@id": "undefineds:dist/document/Chunker.jsonld#TextChunk",
|
|
3124
|
+
"@prefix": true,
|
|
3125
|
+
"@context": {}
|
|
3126
|
+
},
|
|
3127
|
+
"Chunker": {
|
|
3128
|
+
"@id": "undefineds:dist/document/Chunker.jsonld#Chunker",
|
|
3129
|
+
"@prefix": true,
|
|
3130
|
+
"@context": {}
|
|
3131
|
+
},
|
|
3132
|
+
"ChunkMetadata": {
|
|
3133
|
+
"@id": "undefineds:dist/document/Chunker.jsonld#ChunkMetadata",
|
|
3134
|
+
"@prefix": true,
|
|
3135
|
+
"@context": {}
|
|
3136
|
+
},
|
|
3137
|
+
"JinaReader": {
|
|
3138
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader",
|
|
3139
|
+
"@prefix": true,
|
|
3140
|
+
"@context": {
|
|
3141
|
+
"options_apiKey": {
|
|
3142
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader_options_apiKey"
|
|
3143
|
+
},
|
|
3144
|
+
"options_baseUrl": {
|
|
3145
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader_options_baseUrl"
|
|
3146
|
+
},
|
|
3147
|
+
"options_defaultTimeout": {
|
|
3148
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader_options_defaultTimeout"
|
|
3149
|
+
},
|
|
3150
|
+
"apiKey": {
|
|
3151
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader_options_apiKey"
|
|
3152
|
+
},
|
|
3153
|
+
"baseUrl": {
|
|
3154
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader_options_baseUrl"
|
|
3155
|
+
},
|
|
3156
|
+
"defaultTimeout": {
|
|
3157
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReader_options_defaultTimeout"
|
|
3158
|
+
}
|
|
3159
|
+
}
|
|
3160
|
+
},
|
|
3161
|
+
"JinaReaderOptions": {
|
|
3162
|
+
"@id": "undefineds:dist/document/JinaReader.jsonld#JinaReaderOptions",
|
|
3163
|
+
"@prefix": true,
|
|
3164
|
+
"@context": {}
|
|
3165
|
+
},
|
|
3166
|
+
"HeadingChunker": {
|
|
3167
|
+
"@id": "undefineds:dist/document/HeadingChunker.jsonld#HeadingChunker",
|
|
3168
|
+
"@prefix": true,
|
|
3169
|
+
"@context": {}
|
|
3170
|
+
},
|
|
3171
|
+
"DocumentReaderPolicy": {
|
|
3172
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#DocumentReaderPolicy",
|
|
3173
|
+
"@prefix": true,
|
|
3174
|
+
"@context": {}
|
|
3175
|
+
},
|
|
3176
|
+
"ReaderUsageSnapshot": {
|
|
3177
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#ReaderUsageSnapshot",
|
|
3178
|
+
"@prefix": true,
|
|
3179
|
+
"@context": {}
|
|
3180
|
+
},
|
|
3181
|
+
"ReaderBudgetSnapshot": {
|
|
3182
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#ReaderBudgetSnapshot",
|
|
3183
|
+
"@prefix": true,
|
|
3184
|
+
"@context": {}
|
|
3185
|
+
},
|
|
3186
|
+
"ReaderRequest": {
|
|
3187
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#ReaderRequest",
|
|
3188
|
+
"@prefix": true,
|
|
3189
|
+
"@context": {}
|
|
3190
|
+
},
|
|
3191
|
+
"ReaderRequestEvaluation": {
|
|
3192
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#ReaderRequestEvaluation",
|
|
3193
|
+
"@prefix": true,
|
|
3194
|
+
"@context": {}
|
|
3195
|
+
},
|
|
3196
|
+
"SystemPrefetchInput": {
|
|
3197
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#SystemPrefetchInput",
|
|
3198
|
+
"@prefix": true,
|
|
3199
|
+
"@context": {}
|
|
3200
|
+
},
|
|
3201
|
+
"SystemPrefetchRequest": {
|
|
3202
|
+
"@id": "undefineds:dist/document/ReaderPolicy.jsonld#SystemPrefetchRequest",
|
|
3203
|
+
"@prefix": true,
|
|
3204
|
+
"@context": {}
|
|
3205
|
+
},
|
|
3206
|
+
"ReaderProviderRow": {
|
|
3207
|
+
"@id": "undefineds:dist/document/ReaderAiConfig.jsonld#ReaderProviderRow",
|
|
3208
|
+
"@prefix": true,
|
|
3209
|
+
"@context": {}
|
|
3210
|
+
},
|
|
3211
|
+
"ReaderModelRow": {
|
|
3212
|
+
"@id": "undefineds:dist/document/ReaderAiConfig.jsonld#ReaderModelRow",
|
|
3213
|
+
"@prefix": true,
|
|
3214
|
+
"@context": {}
|
|
3215
|
+
},
|
|
3216
|
+
"ReaderCredentialRow": {
|
|
3217
|
+
"@id": "undefineds:dist/document/ReaderAiConfig.jsonld#ReaderCredentialRow",
|
|
3218
|
+
"@prefix": true,
|
|
3219
|
+
"@context": {}
|
|
3220
|
+
},
|
|
3221
|
+
"SelectReaderAiConfigInput": {
|
|
3222
|
+
"@id": "undefineds:dist/document/ReaderAiConfig.jsonld#SelectReaderAiConfigInput",
|
|
3223
|
+
"@prefix": true,
|
|
3224
|
+
"@context": {}
|
|
3225
|
+
},
|
|
3226
|
+
"ReaderAiConfig": {
|
|
3227
|
+
"@id": "undefineds:dist/document/ReaderAiConfig.jsonld#ReaderAiConfig",
|
|
3228
|
+
"@prefix": true,
|
|
3229
|
+
"@context": {}
|
|
3230
|
+
},
|
|
3231
|
+
"SourceUsageMention": {
|
|
3232
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#SourceUsageMention",
|
|
3233
|
+
"@prefix": true,
|
|
3234
|
+
"@context": {}
|
|
3235
|
+
},
|
|
3236
|
+
"SourceRecentAction": {
|
|
3237
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#SourceRecentAction",
|
|
3238
|
+
"@prefix": true,
|
|
3239
|
+
"@context": {}
|
|
3240
|
+
},
|
|
3241
|
+
"RelatedSource": {
|
|
3242
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#RelatedSource",
|
|
3243
|
+
"@prefix": true,
|
|
3244
|
+
"@context": {}
|
|
3245
|
+
},
|
|
3246
|
+
"SourceUsageRecord": {
|
|
3247
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#SourceUsageRecord",
|
|
3248
|
+
"@prefix": true,
|
|
3249
|
+
"@context": {}
|
|
3250
|
+
},
|
|
3251
|
+
"BuildSourceUsageContextInput": {
|
|
3252
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#BuildSourceUsageContextInput",
|
|
3253
|
+
"@prefix": true,
|
|
3254
|
+
"@context": {}
|
|
3255
|
+
},
|
|
3256
|
+
"SourceUsageContext": {
|
|
3257
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#SourceUsageContext",
|
|
3258
|
+
"@prefix": true,
|
|
3259
|
+
"@context": {}
|
|
3260
|
+
},
|
|
3261
|
+
"L0SourceSummaryPlan": {
|
|
3262
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#L0SourceSummaryPlan",
|
|
3263
|
+
"@prefix": true,
|
|
3264
|
+
"@context": {}
|
|
3265
|
+
},
|
|
3266
|
+
"L0SourceSummaryInput": {
|
|
3267
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#L0SourceSummaryInput",
|
|
3268
|
+
"@prefix": true,
|
|
3269
|
+
"@context": {}
|
|
3270
|
+
},
|
|
3271
|
+
"L0SourceSummary": {
|
|
3272
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#L0SourceSummary",
|
|
3273
|
+
"@prefix": true,
|
|
3274
|
+
"@context": {}
|
|
3275
|
+
},
|
|
3276
|
+
"CreateL0SourceSummaryInput": {
|
|
3277
|
+
"@id": "undefineds:dist/document/L0SourceSummary.jsonld#CreateL0SourceSummaryInput",
|
|
3278
|
+
"@prefix": true,
|
|
3279
|
+
"@context": {}
|
|
3280
|
+
},
|
|
3281
|
+
"PaddleOcrReader": {
|
|
3282
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader",
|
|
3283
|
+
"@prefix": true,
|
|
3284
|
+
"@context": {
|
|
3285
|
+
"options_token": {
|
|
3286
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_token"
|
|
3287
|
+
},
|
|
3288
|
+
"options_model": {
|
|
3289
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_model"
|
|
3290
|
+
},
|
|
3291
|
+
"options_client": {
|
|
3292
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_client"
|
|
3293
|
+
},
|
|
3294
|
+
"options_defaultTimeout": {
|
|
3295
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_defaultTimeout"
|
|
3296
|
+
},
|
|
3297
|
+
"token": {
|
|
3298
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_token"
|
|
3299
|
+
},
|
|
3300
|
+
"model": {
|
|
3301
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_model"
|
|
3302
|
+
},
|
|
3303
|
+
"client": {
|
|
3304
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_client"
|
|
3305
|
+
},
|
|
3306
|
+
"defaultTimeout": {
|
|
3307
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReader_options_defaultTimeout"
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3310
|
+
},
|
|
3311
|
+
"PaddleOcrClientReadInput": {
|
|
3312
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrClientReadInput",
|
|
3313
|
+
"@prefix": true,
|
|
3314
|
+
"@context": {}
|
|
3315
|
+
},
|
|
3316
|
+
"PaddleOcrClientReadResult": {
|
|
3317
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrClientReadResult",
|
|
3318
|
+
"@prefix": true,
|
|
3319
|
+
"@context": {}
|
|
3320
|
+
},
|
|
3321
|
+
"PaddleOcrClientLike": {
|
|
3322
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrClientLike",
|
|
3323
|
+
"@prefix": true,
|
|
3324
|
+
"@context": {}
|
|
3325
|
+
},
|
|
3326
|
+
"PaddleOcrReaderOptions": {
|
|
3327
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReaderOptions",
|
|
3328
|
+
"@prefix": true,
|
|
3329
|
+
"@context": {}
|
|
3330
|
+
},
|
|
3331
|
+
"PaddleOcrReadOptions": {
|
|
3332
|
+
"@id": "undefineds:dist/document/PaddleOcrReader.jsonld#PaddleOcrReadOptions",
|
|
3333
|
+
"@prefix": true,
|
|
3334
|
+
"@context": {}
|
|
3335
|
+
},
|
|
3336
|
+
"DeploymentRootKeyProvider": {
|
|
3337
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#DeploymentRootKeyProvider",
|
|
3338
|
+
"@prefix": true,
|
|
3339
|
+
"@context": {
|
|
3340
|
+
"options_activeKeyId": {
|
|
3341
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#DeploymentRootKeyProvider_options_activeKeyId"
|
|
3342
|
+
},
|
|
3343
|
+
"options_keys": {
|
|
3344
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#DeploymentRootKeyProvider_options_keys",
|
|
3345
|
+
"@container": "@list"
|
|
3346
|
+
},
|
|
3347
|
+
"activeKeyId": {
|
|
3348
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#DeploymentRootKeyProvider_options_activeKeyId"
|
|
3349
|
+
},
|
|
3350
|
+
"keys": {
|
|
3351
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#DeploymentRootKeyProvider_options_keys",
|
|
3352
|
+
"@container": "@list"
|
|
3353
|
+
}
|
|
3354
|
+
}
|
|
3355
|
+
},
|
|
3356
|
+
"DeploymentRootKeyProviderOptions": {
|
|
3357
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#DeploymentRootKeyProviderOptions",
|
|
3358
|
+
"@prefix": true,
|
|
3359
|
+
"@context": {}
|
|
3360
|
+
},
|
|
3361
|
+
"RootKeyMaterial": {
|
|
3362
|
+
"@id": "undefineds:dist/security/secret-cell/DeploymentRootKeyProvider.jsonld#RootKeyMaterial",
|
|
3363
|
+
"@prefix": true,
|
|
3364
|
+
"@context": {}
|
|
3365
|
+
},
|
|
3366
|
+
"SecretCellError": {
|
|
3367
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellError",
|
|
3368
|
+
"@prefix": true,
|
|
3369
|
+
"@context": {}
|
|
3370
|
+
},
|
|
3371
|
+
"SecretCellVault": {
|
|
3372
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellVault",
|
|
3373
|
+
"@prefix": true,
|
|
3374
|
+
"@context": {
|
|
3375
|
+
"options_rootKeys": {
|
|
3376
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellVault_options_rootKeys"
|
|
3377
|
+
}
|
|
3378
|
+
}
|
|
3379
|
+
},
|
|
3380
|
+
"SecretCellContext": {
|
|
3381
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellContext",
|
|
3382
|
+
"@prefix": true,
|
|
3383
|
+
"@context": {}
|
|
3384
|
+
},
|
|
3385
|
+
"SecretCellEnvelope": {
|
|
3386
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellEnvelope",
|
|
3387
|
+
"@prefix": true,
|
|
3388
|
+
"@context": {}
|
|
3389
|
+
},
|
|
3390
|
+
"SecretCellVaultOptions": {
|
|
3391
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellVaultOptions",
|
|
3392
|
+
"@prefix": true,
|
|
3393
|
+
"@context": {}
|
|
3394
|
+
},
|
|
3395
|
+
"SecretCellWrappedDataKey": {
|
|
3396
|
+
"@id": "undefineds:dist/security/secret-cell/SecretCellVault.jsonld#SecretCellWrappedDataKey",
|
|
3397
|
+
"@prefix": true,
|
|
3398
|
+
"@context": {}
|
|
3399
|
+
},
|
|
2613
3400
|
"ReconcilerCoordinationMetadata": {
|
|
2614
3401
|
"@id": "undefineds:dist/api/reconciler/coordination.jsonld#ReconcilerCoordinationMetadata",
|
|
2615
3402
|
"@prefix": true,
|