@undefineds.co/xpod 0.4.11 → 0.4.12
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/config/components-ignore.json +5 -1
- package/config/notifications.json +68 -0
- package/config/xpod.base.json +9 -11
- package/dist/ai/service/AiCredentialSecret.d.ts +30 -0
- package/dist/ai/service/AiCredentialSecret.js +120 -0
- package/dist/ai/service/CredentialReaderImpl.d.ts +18 -0
- package/dist/ai/service/CredentialReaderImpl.js +81 -5
- package/dist/ai/service/CredentialReaderImpl.jsonld +42 -2
- package/dist/ai/service/EmbeddingModelPolicy.d.ts +79 -0
- package/dist/ai/service/EmbeddingModelPolicy.js +134 -0
- package/dist/ai/service/EmbeddingProviderError.js +6 -0
- package/dist/ai/service/EmbeddingServiceImpl.d.ts +13 -1
- package/dist/ai/service/EmbeddingServiceImpl.js +18 -5
- package/dist/ai/service/EmbeddingServiceImpl.jsonld +35 -0
- package/dist/ai/service/index.d.ts +2 -0
- package/dist/ai/service/index.js +2 -0
- package/dist/api/ai-gateway/connect/index.d.ts +20 -2
- package/dist/api/ai-gateway/connect/index.js +162 -16
- package/dist/api/ai-gateway/credentials/AiCredentialSecretDecoder.d.ts +12 -0
- package/dist/api/ai-gateway/credentials/AiCredentialSecretDecoder.js +30 -0
- package/dist/api/ai-gateway/errors.d.ts +1 -1
- package/dist/api/ai-gateway/models/GatewayEmbeddingModelCatalog.d.ts +11 -0
- package/dist/api/ai-gateway/models/GatewayEmbeddingModelCatalog.js +31 -0
- package/dist/api/ai-gateway/models/PodModelSelectionRepository.js +7 -3
- package/dist/api/ai-gateway/models/ProviderCustomModelsService.d.ts +18 -0
- package/dist/api/ai-gateway/models/ProviderCustomModelsService.js +23 -0
- package/dist/api/ai-gateway/models/ProviderModelDiscoveryAdapters.d.ts +3 -1
- package/dist/api/ai-gateway/models/ProviderModelDiscoveryAdapters.js +2 -45
- package/dist/api/ai-gateway/models/ProviderModelSelectionService.d.ts +10 -0
- package/dist/api/ai-gateway/models/ProviderModelSelectionService.js +57 -20
- package/dist/api/ai-gateway/models/ProviderModelType.d.ts +28 -0
- package/dist/api/ai-gateway/models/ProviderModelType.js +34 -0
- package/dist/api/ai-gateway/models/ProviderModelsAdapter.d.ts +10 -0
- package/dist/api/ai-gateway/models/ProviderModelsAdapter.js +3 -4
- package/dist/api/ai-gateway/models/index.d.ts +1 -0
- package/dist/api/ai-gateway/models/index.js +3 -1
- package/dist/api/ai-gateway/providers/CustomRuntimeAdapter.d.ts +7 -0
- package/dist/api/ai-gateway/providers/CustomRuntimeAdapter.js +9 -2
- package/dist/api/ai-gateway/providers/ModelsDevCatalog.d.ts +7 -1
- package/dist/api/ai-gateway/providers/ModelsDevCatalog.js +4 -10
- package/dist/api/ai-gateway/providers/ProviderRegistry.d.ts +107 -0
- package/dist/api/ai-gateway/providers/ProviderRegistry.js +244 -21
- package/dist/api/ai-gateway/providers/ProviderRuntimeRegistry.d.ts +5 -0
- package/dist/api/ai-gateway/providers/ProviderRuntimeRegistry.js +5 -1
- package/dist/api/ai-gateway/quota/SubscriptionQuotaAdapters.d.ts +12 -4
- package/dist/api/ai-gateway/quota/SubscriptionQuotaAdapters.js +11 -11
- package/dist/api/ai-gateway/routing/ModelRouter.d.ts +14 -0
- package/dist/api/ai-gateway/routing/ModelRouter.js +43 -4
- package/dist/api/ai-gateway/service-access/AiConnectionsServiceAccess.d.ts +9 -1
- package/dist/api/ai-gateway/service-access/AiConnectionsServiceAccess.js +3 -27
- package/dist/api/chatkit/pod-store.d.ts +31 -0
- package/dist/api/chatkit/pod-store.js +132 -8
- package/dist/api/container/common.js +24 -4
- package/dist/api/container/routes.js +17 -2
- package/dist/api/container/types.d.ts +3 -1
- package/dist/api/handlers/AdminHandler.d.ts +13 -0
- package/dist/api/handlers/AdminHandler.js +47 -18
- package/dist/api/handlers/AiConfigHandler.d.ts +6 -0
- package/dist/api/handlers/AiConfigHandler.js +28 -0
- package/dist/api/handlers/AiGatewayManagementHandler.js +36 -0
- package/dist/api/runs/RdfRunContextRetriever.d.ts +14 -0
- package/dist/api/runs/RdfRunContextRetriever.js +41 -5
- package/dist/api/runtime.js +2 -1
- package/dist/cli/commands/secret.d.ts +1 -0
- package/dist/cli/commands/secret.js +25 -7
- package/dist/components/components.jsonld +3 -1
- package/dist/components/context.jsonld +53 -1
- package/dist/http/SubgraphSparqlHttpHandler.d.ts +59 -2
- package/dist/http/SubgraphSparqlHttpHandler.js +145 -13
- package/dist/http/SubgraphSparqlHttpHandler.jsonld +37 -0
- package/dist/identity/drizzle/EdgeNodeRepository.d.ts +0 -12
- package/dist/identity/drizzle/EdgeNodeRepository.js +5 -13
- package/dist/index.d.ts +2 -1
- package/dist/index.js +7 -3
- package/dist/logging/log-file.d.ts +17 -0
- package/dist/logging/log-file.js +69 -0
- package/dist/main.js +2 -1
- package/dist/notifications/NotificationChannelSweeper.d.ts +50 -0
- package/dist/notifications/NotificationChannelSweeper.js +131 -0
- package/dist/notifications/NotificationChannelSweeper.jsonld +136 -0
- package/dist/notifications/ReclaimingWebSocket2023Storer.d.ts +25 -0
- package/dist/notifications/ReclaimingWebSocket2023Storer.js +56 -0
- package/dist/notifications/ReclaimingWebSocket2023Storer.jsonld +77 -0
- package/dist/notifications/index.d.ts +2 -0
- package/dist/notifications/index.js +2 -0
- package/dist/runtime/Proxy.d.ts +37 -0
- package/dist/runtime/Proxy.js +88 -16
- package/dist/runtime/bootstrap.js +2 -1
- package/dist/runtime/upgrade/BunNativeUpgradeRelay.d.ts +116 -0
- package/dist/runtime/upgrade/BunNativeUpgradeRelay.js +423 -0
- package/dist/runtime/upgrade/UpgradeHandshake.d.ts +63 -0
- package/dist/runtime/upgrade/UpgradeHandshake.js +199 -0
- package/dist/runtime/upgrade/WebSocketFrames.d.ts +67 -0
- package/dist/runtime/upgrade/WebSocketFrames.js +224 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiApiKeyPool.js +8 -1
- package/node_modules/@undefineds.co/ai-connections/dist/AiAuthorizationActions.d.ts +11 -2
- package/node_modules/@undefineds.co/ai-connections/dist/AiAuthorizationActions.js +27 -10
- package/node_modules/@undefineds.co/ai-connections/dist/AiClientConfigurationSection.d.ts +7 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiClientConfigurationSection.js +13 -11
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectDialog.js +1 -1
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectionsList.js +10 -6
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectionsMain.d.ts +15 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectionsMain.js +29 -3
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectionsMainHeader.js +18 -3
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectionsPanel.d.ts +16 -1
- package/node_modules/@undefineds.co/ai-connections/dist/AiConnectionsPanel.js +92 -20
- package/node_modules/@undefineds.co/ai-connections/dist/AiCopyButton.d.ts +35 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiCopyButton.js +45 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiCredentialPoolSection.js +71 -11
- package/node_modules/@undefineds.co/ai-connections/dist/AiCredentialRow.js +9 -7
- package/node_modules/@undefineds.co/ai-connections/dist/AiEndpointList.d.ts +23 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiEndpointList.js +24 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiGatewayKeysSection.d.ts +13 -4
- package/node_modules/@undefineds.co/ai-connections/dist/AiGatewayKeysSection.js +35 -38
- package/node_modules/@undefineds.co/ai-connections/dist/AiGatewayModelsSection.d.ts +21 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiGatewayModelsSection.js +51 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiInfoTooltip.d.ts +15 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiInfoTooltip.js +16 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiModelCatalog.d.ts +175 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiModelCatalog.js +133 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiOfferingDetails.js +2 -2
- package/node_modules/@undefineds.co/ai-connections/dist/AiProviderCard.js +13 -64
- package/node_modules/@undefineds.co/ai-connections/dist/AiProviderHeader.d.ts +21 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiProviderHeader.js +12 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiRowAction.d.ts +15 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiRowAction.js +12 -0
- package/node_modules/@undefineds.co/ai-connections/dist/AiSortableCredentialList.js +2 -1
- package/node_modules/@undefineds.co/ai-connections/dist/ai-connections-client.d.ts +7 -0
- package/node_modules/@undefineds.co/ai-connections/dist/ai-connections-client.js +6 -0
- package/node_modules/@undefineds.co/ai-connections/dist/authorization-methods.d.ts +36 -5
- package/node_modules/@undefineds.co/ai-connections/dist/authorization-methods.js +52 -9
- package/node_modules/@undefineds.co/ai-connections/dist/client/normalize.js +30 -3
- package/node_modules/@undefineds.co/ai-connections/dist/client/types.d.ts +21 -1
- package/node_modules/@undefineds.co/ai-connections/dist/client-config/base-adapter.d.ts +1 -3
- package/node_modules/@undefineds.co/ai-connections/dist/client-config/base-adapter.js +3 -7
- package/node_modules/@undefineds.co/ai-connections/dist/client-config/index.cjs +9 -7
- package/node_modules/@undefineds.co/ai-connections/dist/collection-runtime.d.ts +46 -0
- package/node_modules/@undefineds.co/ai-connections/dist/collection-runtime.js +231 -0
- package/node_modules/@undefineds.co/ai-connections/dist/collections.d.ts +119 -0
- package/node_modules/@undefineds.co/ai-connections/dist/collections.js +173 -0
- package/node_modules/@undefineds.co/ai-connections/dist/controller.d.ts +71 -5
- package/node_modules/@undefineds.co/ai-connections/dist/controller.js +285 -16
- package/node_modules/@undefineds.co/ai-connections/dist/credential-labels.d.ts +5 -0
- package/node_modules/@undefineds.co/ai-connections/dist/credential-labels.js +8 -3
- package/node_modules/@undefineds.co/ai-connections/dist/credential-storage.d.ts +59 -0
- package/node_modules/@undefineds.co/ai-connections/dist/credential-storage.js +131 -0
- package/node_modules/@undefineds.co/ai-connections/dist/endpoint-urls.d.ts +15 -0
- package/node_modules/@undefineds.co/ai-connections/dist/endpoint-urls.js +20 -0
- package/node_modules/@undefineds.co/ai-connections/dist/gateway-endpoints.d.ts +14 -0
- package/node_modules/@undefineds.co/ai-connections/dist/gateway-endpoints.js +20 -0
- package/node_modules/@undefineds.co/ai-connections/dist/index.d.ts +8 -0
- package/node_modules/@undefineds.co/ai-connections/dist/index.js +8 -0
- package/node_modules/@undefineds.co/ai-connections/dist/manifest.js +1 -1
- package/node_modules/@undefineds.co/ai-connections/dist/offering-endpoints.d.ts +14 -0
- package/node_modules/@undefineds.co/ai-connections/dist/offering-endpoints.js +17 -0
- package/node_modules/@undefineds.co/ai-connections/dist/provider-catalog.cjs +68 -1
- package/node_modules/@undefineds.co/ai-connections/dist/provider-catalog.d.ts +75 -1
- package/node_modules/@undefineds.co/ai-connections/dist/provider-catalog.js +119 -0
- package/node_modules/@undefineds.co/ai-connections/dist/provider-visuals.d.ts +5 -0
- package/node_modules/@undefineds.co/ai-connections/dist/provider-visuals.js +5 -0
- package/node_modules/@undefineds.co/ai-connections/dist/service-access.js +2 -27
- package/node_modules/@undefineds.co/ai-connections/package.json +1 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/manifest.d.ts +1 -1
- package/node_modules/@undefineds.co/extension-sdk/dist/manifest.js +2 -0
- package/node_modules/@undefineds.co/extension-sdk/dist/web.d.ts +150 -0
- package/node_modules/@undefineds.co/extension-sdk/package.json +2 -1
- package/node_modules/@undefineds.co/models/README.md +1 -1
- package/node_modules/@undefineds.co/models/dist/ai-config/index.d.ts +3 -3
- package/node_modules/@undefineds.co/models/dist/ai-gateway.schema.d.ts +5 -0
- package/node_modules/@undefineds.co/models/dist/ai-gateway.schema.js +9 -0
- package/node_modules/@undefineds.co/models/dist/ai-runtime.repository.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/approval.repository.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/audit.presentation.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/capture.repository.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/chat-project.repository.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/chat.repository.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/control-request.repository.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/conversation-share.repository.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/credential.schema.d.ts +12 -0
- package/node_modules/@undefineds.co/models/dist/credential.schema.js +15 -1
- package/node_modules/@undefineds.co/models/dist/discovery/index.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/discovery/providers.json +248 -7
- package/node_modules/@undefineds.co/models/dist/discovery/types.d.ts +31 -0
- package/node_modules/@undefineds.co/models/dist/extension/index.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/favorite/index.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/fixtures/contracts-chat-contact.d.ts +5 -5
- package/node_modules/@undefineds.co/models/dist/import/index.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/index.d.ts +73 -73
- package/node_modules/@undefineds.co/models/dist/index.js +1 -1
- package/node_modules/@undefineds.co/models/dist/input-request.repository.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/knowledge/index.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/message.repository.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/namespaces.js +5 -0
- package/node_modules/@undefineds.co/models/dist/pod-storage-descriptor.d.ts +4815 -26
- package/node_modules/@undefineds.co/models/dist/pod-storage-descriptor.js +482 -132
- package/node_modules/@undefineds.co/models/dist/schema.d.ts +4 -0
- package/node_modules/@undefineds.co/models/dist/session/index.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/settings/index.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/sidecar/persistence-mapping.d.ts +5 -5
- package/node_modules/@undefineds.co/models/dist/thread.repository.d.ts +2 -2
- package/node_modules/@undefineds.co/models/dist/types/message-block.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/vocab/_namespaces.d.ts +1 -1
- package/node_modules/@undefineds.co/models/dist/vocab/index.d.ts +10 -10
- package/node_modules/@undefineds.co/models/dist/vocab/sidecar.vocab.d.ts +1 -0
- package/node_modules/@undefineds.co/models/dist/vocab/sidecar.vocab.js +1 -0
- package/node_modules/@undefineds.co/models/package.json +4 -2
- package/node_modules/@undefineds.co/pod-collections/README.md +71 -0
- package/node_modules/@undefineds.co/pod-collections/dist/diff.d.ts +85 -0
- package/node_modules/@undefineds.co/pod-collections/dist/diff.js +166 -0
- package/node_modules/@undefineds.co/pod-collections/dist/feed.d.ts +17 -0
- package/node_modules/@undefineds.co/pod-collections/dist/feed.js +27 -0
- package/node_modules/@undefineds.co/pod-collections/dist/index.cjs +1042 -0
- package/node_modules/@undefineds.co/pod-collections/dist/index.d.ts +37 -0
- package/node_modules/@undefineds.co/pod-collections/dist/index.js +89 -0
- package/node_modules/@undefineds.co/pod-collections/dist/layout.d.ts +75 -0
- package/node_modules/@undefineds.co/pod-collections/dist/layout.js +173 -0
- package/node_modules/@undefineds.co/pod-collections/dist/mapping.d.ts +78 -0
- package/node_modules/@undefineds.co/pod-collections/dist/mapping.js +287 -0
- package/node_modules/@undefineds.co/pod-collections/dist/mutations.d.ts +83 -0
- package/node_modules/@undefineds.co/pod-collections/dist/mutations.js +273 -0
- package/node_modules/@undefineds.co/pod-collections/dist/react.d.ts +21 -0
- package/node_modules/@undefineds.co/pod-collections/dist/react.js +22 -0
- package/node_modules/@undefineds.co/pod-collections/dist/read.d.ts +65 -0
- package/node_modules/@undefineds.co/pod-collections/dist/read.js +31 -0
- package/node_modules/@undefineds.co/pod-collections/dist/sync.d.ts +66 -0
- package/node_modules/@undefineds.co/pod-collections/dist/sync.js +260 -0
- package/node_modules/@undefineds.co/pod-collections/dist/types.d.ts +155 -0
- package/node_modules/@undefineds.co/pod-collections/dist/types.js +9 -0
- package/node_modules/@undefineds.co/pod-collections/package.json +42 -0
- package/package.json +15 -7
- package/static/app/assets/main.css +1 -1
- package/static/auth-callback/assets/AiConfigContext-DnQs1ZpW.js +1 -0
- package/static/auth-callback/assets/AiConfigPage-DOtvlxH0.js +1 -0
- package/static/auth-callback/assets/DocumentProcessingPanel-BS2voQgL.js +1 -0
- package/static/auth-callback/assets/IndexLifecyclePanel-Cvt0cJtN.js +1 -0
- package/static/auth-callback/assets/{IndexSubjectPanel-BbUqop4b.js → IndexSubjectPanel-Dhf01GqF.js} +1 -1
- package/static/auth-callback/assets/ModelAssignmentsPanel-BJutWaAF.js +1 -0
- package/static/auth-callback/assets/ModelsPage-BRS0sje3.js +11 -0
- package/static/auth-callback/assets/{NetworkPage-Vp2PrMxs.js → NetworkPage-B3qBfANA.js} +2 -2
- package/static/auth-callback/assets/{PaneListHeader-DY7baSFl.js → PaneListHeader-QQeJGTp4.js} +1 -1
- package/static/auth-callback/assets/SearchIndexingPanel-MyNUSEwT.js +1 -0
- package/static/auth-callback/assets/{StatusSubjectPanel-ArIS-TxT.js → StatusSubjectPanel-DQkEVsFs.js} +1 -1
- package/static/{settings/assets/StatusWorkspace-CoMFRXoV.js → auth-callback/assets/StatusWorkspace-Dkv63Uwk.js} +1 -1
- package/static/auth-callback/assets/{SystemSettingsPage-BDvT1NUz.js → SystemSettingsPage-TIsUfX5d.js} +1 -1
- package/static/{dashboard/assets/SystemSettingsSubjectPanel-WaE8mTQi.js → auth-callback/assets/SystemSettingsSubjectPanel-BJWEt2-7.js} +5 -5
- package/static/auth-callback/assets/XpodAiConnectionsPodStore-BJiXm-PF.js +3 -0
- package/static/auth-callback/assets/{activity-D1Dsfa_0.js → activity-5hNeNKnL.js} +1 -1
- package/static/auth-callback/assets/ai-connections-CryuHGKW.js +1 -0
- package/static/auth-callback/assets/{auth-callback-Cmf4hXVZ.js → auth-callback-CAFZ3R0B.js} +6 -6
- package/static/auth-callback/assets/auth-callback-rk080mvG.css +1 -0
- package/static/auth-callback/assets/{badge-CZsHq3Ih.js → badge-CAIPI0CB.js} +1 -1
- package/static/auth-callback/assets/collection-runtime-D9s7h9YA.js +1 -0
- package/static/auth-callback/assets/dialog-BjA109aX.js +1 -0
- package/static/auth-callback/assets/{download-DU9ntlHw.js → download-B3Up5W2G.js} +1 -1
- package/static/auth-callback/assets/{external-link-BfzaaZDx.js → external-link-BTXgSPzB.js} +1 -1
- package/static/auth-callback/assets/index-BppXlxcp.js +41 -0
- package/static/auth-callback/assets/index-CirW4CJf.js +1 -0
- package/static/auth-callback/assets/index-DlLYWOhw.js +4 -0
- package/static/auth-callback/assets/{index-browser-BNFqqC74.js → index-browser-DtU38ni3.js} +1 -1
- package/static/auth-callback/assets/{key-round-BwP3DBWo.js → key-round-CQCOrZ7x.js} +1 -1
- package/static/auth-callback/assets/layout-DB3pMyTl.js +1 -0
- package/static/auth-callback/assets/pod-collections-host-KnnGFZHL.js +8 -0
- package/static/auth-callback/assets/{rotate-ccw-VMwnmyab.js → rotate-ccw-C1zM2KtS.js} +1 -1
- package/static/auth-callback/assets/{skeleton-CoD55rBT.js → skeleton-Cqp7_M9-.js} +1 -1
- package/static/auth-callback/assets/{waypoints-DRo_1Ca7.js → waypoints-Bj6gAUSQ.js} +1 -1
- package/static/auth-callback/assets/{workspace-layout--mcXl3My.js → workspace-layout-DK8mDzrY.js} +1 -1
- package/static/auth-callback/auth-callback.html +2 -2
- package/static/dashboard/assets/AiConfigContext-BsE7MqX8.js +1 -0
- package/static/dashboard/assets/AiConfigPage-DvM-lRXa.js +1 -0
- package/static/dashboard/assets/DocumentProcessingPanel-BPfdlfuf.js +1 -0
- package/static/dashboard/assets/IndexLifecyclePanel--m0AGxvh.js +1 -0
- package/static/dashboard/assets/{IndexSubjectPanel-B2cXwl8X.js → IndexSubjectPanel-Bb7m1k3d.js} +1 -1
- package/static/dashboard/assets/ModelAssignmentsPanel-BLi_zbMa.js +1 -0
- package/static/dashboard/assets/ModelsPage-CxdpgnfR.js +11 -0
- package/static/dashboard/assets/{NetworkPage-DV2V0qWO.js → NetworkPage-BAIPw-D_.js} +2 -2
- package/static/dashboard/assets/{PaneListHeader-D0c1yCFH.js → PaneListHeader-BBCMei0r.js} +1 -1
- package/static/dashboard/assets/SearchIndexingPanel-Ck4Y-xjR.js +1 -0
- package/static/dashboard/assets/{StatusSubjectPanel-oPSECj7i.js → StatusSubjectPanel-D1KWfAXE.js} +1 -1
- package/static/dashboard/assets/{StatusWorkspace-PdovQPKa.js → StatusWorkspace-JbA5gzXx.js} +1 -1
- package/static/dashboard/assets/{SystemSettingsPage-CtNDklkx.js → SystemSettingsPage-BbwQWsSR.js} +1 -1
- package/static/{settings/assets/SystemSettingsSubjectPanel-DExjDo_v.js → dashboard/assets/SystemSettingsSubjectPanel-N117nMt5.js} +5 -5
- package/static/dashboard/assets/XpodAiConnectionsPodStore-CdDOb4SV.js +18 -0
- package/static/dashboard/assets/{activity-B9ylSoyr.js → activity-DX1I96o_.js} +1 -1
- package/static/dashboard/assets/ai-connections-DwCRqOQa.js +1 -0
- package/static/dashboard/assets/{badge-BNbFbpIb.js → badge-k2vhtDqH.js} +1 -1
- package/static/dashboard/assets/collection-runtime-BFQ8teQJ.js +1 -0
- package/static/dashboard/assets/{dashboard-CD-FFVRD.js → dashboard-DWZ-fmCT.js} +4 -4
- package/static/dashboard/assets/dashboard-rk080mvG.css +1 -0
- package/static/dashboard/assets/dialog-1CCw-iHT.js +1 -0
- package/static/dashboard/assets/{download-nOP38LtW.js → download-C6-SNY1q.js} +1 -1
- package/static/dashboard/assets/{external-link-Bh2ewN9E.js → external-link-BgPcZ_j2.js} +1 -1
- package/static/dashboard/assets/index-6LcIUIYO.js +1 -0
- package/static/dashboard/assets/index-D7A8U6Pt.js +41 -0
- package/static/dashboard/assets/index-UD6QOE7H.js +4 -0
- package/static/dashboard/assets/{key-round-bGmguBLv.js → key-round-BOd7Jo0Q.js} +1 -1
- package/static/dashboard/assets/layout-DB3pMyTl.js +1 -0
- package/static/dashboard/assets/pod-collections-host-KnnGFZHL.js +8 -0
- package/static/dashboard/assets/{rotate-ccw-D2x__ODW.js → rotate-ccw-CCgJqsvx.js} +1 -1
- package/static/dashboard/assets/{skeleton-VOqft8WS.js → skeleton-Bc7abAn5.js} +1 -1
- package/static/dashboard/assets/{waypoints-fgRqm4oH.js → waypoints-s-opmJxx.js} +1 -1
- package/static/dashboard/assets/{workspace-layout-DV4dgeHX.js → workspace-layout-DqIQeTBV.js} +1 -1
- package/static/dashboard/dashboard.html +2 -2
- package/static/settings/assets/AiConfigContext-BB9KZySa.js +1 -0
- package/static/settings/assets/AiConfigPage-DGSXUkLs.js +1 -0
- package/static/settings/assets/DocumentProcessingPanel-Da2Re6Rg.js +1 -0
- package/static/settings/assets/IndexLifecyclePanel-BSZuIzgr.js +1 -0
- package/static/settings/assets/{IndexSubjectPanel-BgbI9c-a.js → IndexSubjectPanel-CFd0ay-r.js} +1 -1
- package/static/settings/assets/ModelAssignmentsPanel-CSAryvWJ.js +1 -0
- package/static/settings/assets/ModelsPage-BQwCwLHU.js +11 -0
- package/static/settings/assets/{NetworkPage-C8OA9Mtp.js → NetworkPage-BKymvsQc.js} +2 -2
- package/static/settings/assets/{PaneListHeader-COvlPJWj.js → PaneListHeader-Bjh3hRdQ.js} +1 -1
- package/static/settings/assets/SearchIndexingPanel-MjKL5QLU.js +1 -0
- package/static/settings/assets/{StatusSubjectPanel-BuLml7qn.js → StatusSubjectPanel-Bvl6K4mx.js} +1 -1
- package/static/settings/assets/StatusWorkspace-B0NzrP--.js +1 -0
- package/static/settings/assets/{SystemSettingsPage-DlzmaWV-.js → SystemSettingsPage-D2z6Z4FE.js} +1 -1
- package/static/{auth-callback/assets/SystemSettingsSubjectPanel-CDqRuC4t.js → settings/assets/SystemSettingsSubjectPanel-4sxma4X4.js} +5 -5
- package/static/settings/assets/XpodAiConnectionsPodStore-BkNQ8fZx.js +3 -0
- package/static/settings/assets/{activity-TLerXgMs.js → activity-CgJJGpjx.js} +1 -1
- package/static/settings/assets/ai-connections-CryuHGKW.js +1 -0
- package/static/settings/assets/{badge-Bcs8iWrH.js → badge-C4NypVyT.js} +1 -1
- package/static/settings/assets/collection-runtime-CTLCDxAi.js +1 -0
- package/static/settings/assets/dialog-Csq0vWUi.js +1 -0
- package/static/settings/assets/{download-Ct3QmHPt.js → download-DaLJJ-Wp.js} +1 -1
- package/static/settings/assets/{external-link-C8KiHbss.js → external-link--w_iW5Au.js} +1 -1
- package/static/settings/assets/index-B0mQa59b.js +4 -0
- package/static/settings/assets/index-BukHiu4y.js +1 -0
- package/static/settings/assets/index-COmVnZi2.js +41 -0
- package/static/settings/assets/{index-browser-CazX1pc2.js → index-browser-BGpvHwD0.js} +1 -1
- package/static/settings/assets/{key-round-B19YD1GA.js → key-round-Bk4YRjBu.js} +1 -1
- package/static/settings/assets/layout-DB3pMyTl.js +1 -0
- package/static/settings/assets/pod-collections-host-KnnGFZHL.js +8 -0
- package/static/settings/assets/{rotate-ccw-AQm2kMgU.js → rotate-ccw-TCabbqsr.js} +1 -1
- package/static/settings/assets/{settings-C-VBtt9r.js → settings-CJWpdbNC.js} +5 -5
- package/static/settings/assets/settings-rk080mvG.css +1 -0
- package/static/settings/assets/{skeleton-DyZ1OBYf.js → skeleton-JDHYVe7t.js} +1 -1
- package/static/settings/assets/{waypoints-CC3wq-SU.js → waypoints-DDvEl-MU.js} +1 -1
- package/static/settings/assets/{workspace-layout-BxXNKgf9.js → workspace-layout-DV5QU30U.js} +1 -1
- package/static/settings/settings.html +2 -2
- package/static/auth-callback/assets/AiConfigContext-DqWRSm7n.js +0 -1
- package/static/auth-callback/assets/AiConfigPage-C5YYyvzl.js +0 -1
- package/static/auth-callback/assets/DocumentProcessingPanel-DZCiacBz.js +0 -1
- package/static/auth-callback/assets/IndexLifecyclePanel-CCLeOljB.js +0 -1
- package/static/auth-callback/assets/ModelAssignmentsPanel-jUUTDKuh.js +0 -1
- package/static/auth-callback/assets/ModelsPage-B08zdtff.js +0 -10
- package/static/auth-callback/assets/SearchIndexingPanel-D4YRg1-8.js +0 -1
- package/static/auth-callback/assets/StatusWorkspace-Cp5LQ9Yx.js +0 -1
- package/static/auth-callback/assets/ai-connections-CHNTKemd.js +0 -1
- package/static/auth-callback/assets/auth-callback-DWMMiFjh.css +0 -1
- package/static/auth-callback/assets/index-DSNnLUbU.js +0 -4
- package/static/auth-callback/assets/index-FHhHoKgp.js +0 -41
- package/static/dashboard/assets/AiConfigContext-BpPDKSzI.js +0 -1
- package/static/dashboard/assets/AiConfigPage-wsqEZDIX.js +0 -1
- package/static/dashboard/assets/DocumentProcessingPanel-CDSy3juc.js +0 -1
- package/static/dashboard/assets/IndexLifecyclePanel-CVd6vQCX.js +0 -1
- package/static/dashboard/assets/ModelAssignmentsPanel-BeBZhnQd.js +0 -1
- package/static/dashboard/assets/ModelsPage-B6McSCJw.js +0 -25
- package/static/dashboard/assets/SearchIndexingPanel-CGs0OZ12.js +0 -1
- package/static/dashboard/assets/ai-connections-CHNTKemd.js +0 -1
- package/static/dashboard/assets/dashboard-DWMMiFjh.css +0 -1
- package/static/dashboard/assets/index-PgS-Bt7X.js +0 -41
- package/static/dashboard/assets/index-QN2QgEwr.js +0 -4
- package/static/settings/assets/AiConfigContext-zKQYdfai.js +0 -1
- package/static/settings/assets/AiConfigPage-Bs1EE3Ei.js +0 -1
- package/static/settings/assets/DocumentProcessingPanel-CSFfdOXS.js +0 -1
- package/static/settings/assets/IndexLifecyclePanel-BR9Su49B.js +0 -1
- package/static/settings/assets/ModelAssignmentsPanel-C0BE7nbk.js +0 -1
- package/static/settings/assets/ModelsPage-CU-YQ8_7.js +0 -10
- package/static/settings/assets/SearchIndexingPanel-Bdd46mIV.js +0 -1
- package/static/settings/assets/ai-connections-CHNTKemd.js +0 -1
- package/static/settings/assets/index-1Q2cRjZd.js +0 -41
- package/static/settings/assets/index-DBO_Vq0P.js +0 -4
- package/static/settings/assets/settings-DWMMiFjh.css +0 -1
|
@@ -20,7 +20,39 @@
|
|
|
20
20
|
"logoUrl": "https://openai.com/favicon.ico",
|
|
21
21
|
"description": "OpenAI API - GPT-4, GPT-3.5 系列模型",
|
|
22
22
|
"supportedFeatures": ["chat", "embedding", "image", "audio", "vision", "function-calling"],
|
|
23
|
-
"authType": "bearer"
|
|
23
|
+
"authType": "bearer",
|
|
24
|
+
"offerings": [
|
|
25
|
+
{
|
|
26
|
+
"id": "official-subscription",
|
|
27
|
+
"label": "Codex Subscription",
|
|
28
|
+
"kind": "oauth-subscription",
|
|
29
|
+
"lifecycle": "unavailable",
|
|
30
|
+
"authModes": ["oauth"],
|
|
31
|
+
"runtimeProviderIds": ["openai"],
|
|
32
|
+
"consoleUrl": "https://chatgpt.com/codex",
|
|
33
|
+
"subscriptionUrl": "https://chatgpt.com/codex",
|
|
34
|
+
"endpoints": [],
|
|
35
|
+
"modelDiscovery": { "strategy": "unsupported", "path": "/models", "endpointProtocol": "responses" },
|
|
36
|
+
"quota": { "strategy": "subscription", "url": "https://chatgpt.com/codex" }
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "api-platform",
|
|
40
|
+
"label": "API Platform",
|
|
41
|
+
"kind": "api-platform",
|
|
42
|
+
"authModes": ["apiKey"],
|
|
43
|
+
"runtimeProviderIds": ["openai"],
|
|
44
|
+
"credentialPrefixHints": ["sk-"],
|
|
45
|
+
"consoleUrl": "https://platform.openai.com/api-keys",
|
|
46
|
+
"subscriptionUrl": "https://platform.openai.com/settings/organization/billing/overview",
|
|
47
|
+
"endpoints": [
|
|
48
|
+
{ "protocol": "responses", "baseUrl": "https://api.openai.com/v1" },
|
|
49
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://api.openai.com/v1" }
|
|
50
|
+
],
|
|
51
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
52
|
+
"quota": { "strategy": "providerApi", "url": "https://platform.openai.com/usage" },
|
|
53
|
+
"usagePolicyUrl": "https://openai.com/policies/usage-policies/"
|
|
54
|
+
}
|
|
55
|
+
]
|
|
24
56
|
},
|
|
25
57
|
{
|
|
26
58
|
"slug": "anthropic",
|
|
@@ -30,7 +62,38 @@
|
|
|
30
62
|
"logoUrl": "https://www.anthropic.com/favicon.ico",
|
|
31
63
|
"description": "Anthropic Claude 系列模型",
|
|
32
64
|
"supportedFeatures": ["chat", "vision", "function-calling"],
|
|
33
|
-
"authType": "x-api-key"
|
|
65
|
+
"authType": "x-api-key",
|
|
66
|
+
"offerings": [
|
|
67
|
+
{
|
|
68
|
+
"id": "official-subscription",
|
|
69
|
+
"label": "Claude Code Subscription",
|
|
70
|
+
"kind": "oauth-subscription",
|
|
71
|
+
"lifecycle": "unavailable",
|
|
72
|
+
"authModes": ["oauth"],
|
|
73
|
+
"runtimeProviderIds": ["anthropic"],
|
|
74
|
+
"consoleUrl": "https://claude.ai/",
|
|
75
|
+
"subscriptionUrl": "https://claude.ai/settings/billing",
|
|
76
|
+
"endpoints": [],
|
|
77
|
+
"modelDiscovery": { "strategy": "unsupported", "path": "/models", "endpointProtocol": "anthropic" },
|
|
78
|
+
"quota": { "strategy": "subscription", "url": "https://claude.ai/settings/usage" }
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "api-platform",
|
|
82
|
+
"label": "API Platform",
|
|
83
|
+
"kind": "api-platform",
|
|
84
|
+
"authModes": ["apiKey"],
|
|
85
|
+
"runtimeProviderIds": ["anthropic"],
|
|
86
|
+
"credentialPrefixHints": ["sk-ant-"],
|
|
87
|
+
"consoleUrl": "https://console.anthropic.com/settings/keys",
|
|
88
|
+
"subscriptionUrl": "https://console.anthropic.com/settings/plans",
|
|
89
|
+
"endpoints": [
|
|
90
|
+
{ "protocol": "anthropic", "baseUrl": "https://api.anthropic.com/v1" }
|
|
91
|
+
],
|
|
92
|
+
"modelDiscovery": { "strategy": "anthropic", "path": "/models", "endpointProtocol": "anthropic" },
|
|
93
|
+
"quota": { "strategy": "console", "url": "https://console.anthropic.com/settings/limits" },
|
|
94
|
+
"usagePolicyUrl": "https://www.anthropic.com/legal/aup"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
34
97
|
},
|
|
35
98
|
{
|
|
36
99
|
"slug": "openrouter",
|
|
@@ -50,7 +113,25 @@
|
|
|
50
113
|
"logoUrl": "https://www.deepseek.com/favicon.ico",
|
|
51
114
|
"description": "DeepSeek 深度求索 AI 模型",
|
|
52
115
|
"supportedFeatures": ["chat", "function-calling"],
|
|
53
|
-
"authType": "bearer"
|
|
116
|
+
"authType": "bearer",
|
|
117
|
+
"offerings": [
|
|
118
|
+
{
|
|
119
|
+
"id": "api-platform",
|
|
120
|
+
"label": "API Platform",
|
|
121
|
+
"kind": "api-platform",
|
|
122
|
+
"authModes": ["apiKey"],
|
|
123
|
+
"runtimeProviderIds": ["deepseek"],
|
|
124
|
+
"credentialPrefixHints": ["sk-"],
|
|
125
|
+
"consoleUrl": "https://platform.deepseek.com/api_keys",
|
|
126
|
+
"subscriptionUrl": "https://platform.deepseek.com/usage",
|
|
127
|
+
"endpoints": [
|
|
128
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://api.deepseek.com/v1" }
|
|
129
|
+
],
|
|
130
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
131
|
+
"quota": { "strategy": "console", "url": "https://platform.deepseek.com/usage" },
|
|
132
|
+
"usagePolicyUrl": "https://cdn.deepseek.com/policies/en-US/deepseek-open-platform-terms-of-use.html"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
54
135
|
},
|
|
55
136
|
{
|
|
56
137
|
"slug": "ollama",
|
|
@@ -60,7 +141,23 @@
|
|
|
60
141
|
"logoUrl": "https://ollama.com/public/ollama.png",
|
|
61
142
|
"description": "本地模型运行与管理",
|
|
62
143
|
"supportedFeatures": ["chat", "embedding", "vision"],
|
|
63
|
-
"authType": "none"
|
|
144
|
+
"authType": "none",
|
|
145
|
+
"offerings": [
|
|
146
|
+
{
|
|
147
|
+
"id": "local",
|
|
148
|
+
"label": "Local Ollama",
|
|
149
|
+
"kind": "local",
|
|
150
|
+
"authModes": ["local"],
|
|
151
|
+
"runtimeProviderIds": ["ollama"],
|
|
152
|
+
"consoleUrl": "https://ollama.com",
|
|
153
|
+
"subscriptionUrl": "https://ollama.com",
|
|
154
|
+
"endpoints": [
|
|
155
|
+
{ "protocol": "chatCompletions", "baseUrl": "http://localhost:11434/v1" }
|
|
156
|
+
],
|
|
157
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
158
|
+
"quota": { "strategy": "unsupported", "url": "https://ollama.com" }
|
|
159
|
+
}
|
|
160
|
+
]
|
|
64
161
|
},
|
|
65
162
|
{
|
|
66
163
|
"slug": "google",
|
|
@@ -90,7 +187,81 @@
|
|
|
90
187
|
"logoUrl": "https://qwen.ai/favicon.ico",
|
|
91
188
|
"description": "阿里云通义千问系列模型",
|
|
92
189
|
"supportedFeatures": ["chat", "vision", "function-calling"],
|
|
93
|
-
"authType": "bearer"
|
|
190
|
+
"authType": "bearer",
|
|
191
|
+
"offerings": [
|
|
192
|
+
{
|
|
193
|
+
"id": "pay-as-you-go",
|
|
194
|
+
"label": "Pay as You Go",
|
|
195
|
+
"kind": "api-platform",
|
|
196
|
+
"authModes": ["apiKey"],
|
|
197
|
+
"runtimeProviderIds": ["bailian"],
|
|
198
|
+
"credentialPrefixHints": ["sk-"],
|
|
199
|
+
"consoleUrl": "https://bailian.console.aliyun.com/",
|
|
200
|
+
"subscriptionUrl": "https://bailian.console.aliyun.com/",
|
|
201
|
+
"endpoints": [
|
|
202
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1" },
|
|
203
|
+
{ "protocol": "anthropic", "baseUrl": "https://dashscope.aliyuncs.com/apps/anthropic" }
|
|
204
|
+
],
|
|
205
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
206
|
+
"quota": { "strategy": "console", "url": "https://bailian.console.aliyun.com/" },
|
|
207
|
+
"usagePolicyUrl": "https://help.aliyun.com/zh/model-studio/",
|
|
208
|
+
"region": "cn"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"id": "token-plan",
|
|
212
|
+
"label": "Token Plan Personal",
|
|
213
|
+
"kind": "token-plan",
|
|
214
|
+
"authModes": ["apiKey"],
|
|
215
|
+
"runtimeProviderIds": ["bailian-token-plan"],
|
|
216
|
+
"credentialPrefixHints": ["sk-"],
|
|
217
|
+
"consoleUrl": "https://bailian.console.aliyun.com/",
|
|
218
|
+
"subscriptionUrl": "https://bailian.console.aliyun.com/",
|
|
219
|
+
"endpoints": [
|
|
220
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://token-plan.cn-beijing.maas.aliyuncs.com/compatible-mode/v1" },
|
|
221
|
+
{ "protocol": "anthropic", "baseUrl": "https://token-plan.cn-beijing.maas.aliyuncs.com/apps/anthropic" }
|
|
222
|
+
],
|
|
223
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
224
|
+
"quota": { "strategy": "subscription", "url": "https://bailian.console.aliyun.com/" },
|
|
225
|
+
"usagePolicyUrl": "https://help.aliyun.com/zh/model-studio/",
|
|
226
|
+
"region": "cn-beijing"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"id": "token-plan-team",
|
|
230
|
+
"label": "Token Plan Team",
|
|
231
|
+
"kind": "token-plan",
|
|
232
|
+
"authModes": ["apiKey"],
|
|
233
|
+
"runtimeProviderIds": ["bailian-token-plan"],
|
|
234
|
+
"credentialPrefixHints": ["sk-"],
|
|
235
|
+
"consoleUrl": "https://bailian.console.aliyun.com/",
|
|
236
|
+
"subscriptionUrl": "https://bailian.console.aliyun.com/",
|
|
237
|
+
"endpoints": [
|
|
238
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://token-plan.cn-beijing.maas.aliyuncs.com/compatible-mode/v1" },
|
|
239
|
+
{ "protocol": "anthropic", "baseUrl": "https://token-plan.cn-beijing.maas.aliyuncs.com/apps/anthropic" }
|
|
240
|
+
],
|
|
241
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
242
|
+
"quota": { "strategy": "subscription", "url": "https://bailian.console.aliyun.com/" },
|
|
243
|
+
"usagePolicyUrl": "https://help.aliyun.com/zh/model-studio/",
|
|
244
|
+
"region": "cn-beijing"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"id": "coding-plan",
|
|
248
|
+
"label": "Coding Plan Pro",
|
|
249
|
+
"kind": "token-plan",
|
|
250
|
+
"authModes": ["apiKey"],
|
|
251
|
+
"runtimeProviderIds": ["bailian-coding-plan"],
|
|
252
|
+
"credentialPrefixHints": ["sk-sp-"],
|
|
253
|
+
"consoleUrl": "https://bailian.console.aliyun.com/",
|
|
254
|
+
"subscriptionUrl": "https://bailian.console.aliyun.com/",
|
|
255
|
+
"endpoints": [
|
|
256
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://coding.dashscope.aliyuncs.com/v1" },
|
|
257
|
+
{ "protocol": "anthropic", "baseUrl": "https://coding.dashscope.aliyuncs.com/apps/anthropic" }
|
|
258
|
+
],
|
|
259
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
260
|
+
"quota": { "strategy": "subscription", "url": "https://bailian.console.aliyun.com/" },
|
|
261
|
+
"usagePolicyUrl": "https://help.aliyun.com/zh/model-studio/",
|
|
262
|
+
"region": "cn"
|
|
263
|
+
}
|
|
264
|
+
]
|
|
94
265
|
},
|
|
95
266
|
{
|
|
96
267
|
"slug": "moonshot",
|
|
@@ -100,7 +271,43 @@
|
|
|
100
271
|
"logoUrl": "https://www.moonshot.cn/favicon.ico",
|
|
101
272
|
"description": "月之暗面 Kimi 模型",
|
|
102
273
|
"supportedFeatures": ["chat", "function-calling"],
|
|
103
|
-
"authType": "bearer"
|
|
274
|
+
"authType": "bearer",
|
|
275
|
+
"offerings": [
|
|
276
|
+
{
|
|
277
|
+
"id": "subscription-key",
|
|
278
|
+
"label": "Token Plan",
|
|
279
|
+
"kind": "token-plan",
|
|
280
|
+
"authModes": ["apiKey"],
|
|
281
|
+
"runtimeProviderIds": ["kimi"],
|
|
282
|
+
"credentialPrefixHints": ["sk-kimi-"],
|
|
283
|
+
"consoleUrl": "https://www.kimi.com/code",
|
|
284
|
+
"subscriptionUrl": "https://www.kimi.com/code",
|
|
285
|
+
"endpoints": [
|
|
286
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://api.kimi.com/coding/v1", "region": "cn", "supportsDeveloperMessages": false },
|
|
287
|
+
{ "protocol": "anthropic", "baseUrl": "https://api.kimi.com/coding/" }
|
|
288
|
+
],
|
|
289
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
290
|
+
"quota": { "strategy": "subscription", "url": "https://www.kimi.com/code" },
|
|
291
|
+
"usagePolicyUrl": "https://www.kimi.com/user/agreement"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"id": "api-platform",
|
|
295
|
+
"label": "API Platform",
|
|
296
|
+
"kind": "api-platform",
|
|
297
|
+
"authModes": ["apiKey"],
|
|
298
|
+
"runtimeProviderIds": ["kimi"],
|
|
299
|
+
"credentialPrefixHints": ["sk-"],
|
|
300
|
+
"consoleUrl": "https://platform.moonshot.cn/console/api-keys",
|
|
301
|
+
"subscriptionUrl": "https://platform.moonshot.cn/console/account",
|
|
302
|
+
"endpoints": [
|
|
303
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://api.moonshot.ai/v1" }
|
|
304
|
+
],
|
|
305
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
306
|
+
"quota": { "strategy": "console", "url": "https://platform.moonshot.cn/console/account" },
|
|
307
|
+
"usagePolicyUrl": "https://platform.moonshot.cn/docs/intro",
|
|
308
|
+
"region": "cn"
|
|
309
|
+
}
|
|
310
|
+
]
|
|
104
311
|
},
|
|
105
312
|
{
|
|
106
313
|
"slug": "minimax",
|
|
@@ -150,7 +357,41 @@
|
|
|
150
357
|
"logoUrl": "https://open.bigmodel.cn/favicon.ico",
|
|
151
358
|
"description": "智谱 GLM 模型平台",
|
|
152
359
|
"supportedFeatures": ["chat", "vision", "function-calling"],
|
|
153
|
-
"authType": "bearer"
|
|
360
|
+
"authType": "bearer",
|
|
361
|
+
"offerings": [
|
|
362
|
+
{
|
|
363
|
+
"id": "api-platform",
|
|
364
|
+
"label": "API 平台",
|
|
365
|
+
"kind": "api-platform",
|
|
366
|
+
"authModes": ["apiKey"],
|
|
367
|
+
"runtimeProviderIds": ["zhipu"],
|
|
368
|
+
"credentialPrefixHints": ["id."],
|
|
369
|
+
"consoleUrl": "https://open.bigmodel.cn/usercenter/apikeys",
|
|
370
|
+
"subscriptionUrl": "https://open.bigmodel.cn/finance-center/expense-manage",
|
|
371
|
+
"endpoints": [
|
|
372
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://open.bigmodel.cn/api/paas/v4" }
|
|
373
|
+
],
|
|
374
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
375
|
+
"quota": { "strategy": "console", "url": "https://open.bigmodel.cn/finance-center/expense-manage" },
|
|
376
|
+
"usagePolicyUrl": "https://open.bigmodel.cn/"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "coding-plan",
|
|
380
|
+
"label": "GLM Coding Plan",
|
|
381
|
+
"kind": "token-plan",
|
|
382
|
+
"authModes": ["apiKey"],
|
|
383
|
+
"runtimeProviderIds": ["zhipu"],
|
|
384
|
+
"credentialPrefixHints": ["id."],
|
|
385
|
+
"consoleUrl": "https://open.bigmodel.cn/usercenter/apikeys",
|
|
386
|
+
"subscriptionUrl": "https://bigmodel.cn/glm-coding",
|
|
387
|
+
"endpoints": [
|
|
388
|
+
{ "protocol": "chatCompletions", "baseUrl": "https://open.bigmodel.cn/api/coding/paas/v4" }
|
|
389
|
+
],
|
|
390
|
+
"modelDiscovery": { "strategy": "openaiCompatible", "path": "/models", "endpointProtocol": "chatCompletions" },
|
|
391
|
+
"quota": { "strategy": "subscription", "url": "https://bigmodel.cn/glm-coding" },
|
|
392
|
+
"usagePolicyUrl": "https://open.bigmodel.cn/"
|
|
393
|
+
}
|
|
394
|
+
]
|
|
154
395
|
},
|
|
155
396
|
{
|
|
156
397
|
"slug": "codebuddy",
|
|
@@ -18,6 +18,37 @@ export interface ProviderMetadata {
|
|
|
18
18
|
description?: string;
|
|
19
19
|
supportedFeatures?: ProviderFeature[];
|
|
20
20
|
authType?: 'bearer' | 'x-api-key' | 'query-param' | 'none';
|
|
21
|
+
/** Canonical commercial/local offerings consumed by adapters. */
|
|
22
|
+
offerings?: ProviderOfferingMetadata[];
|
|
23
|
+
}
|
|
24
|
+
export interface ProviderOfferingMetadata {
|
|
25
|
+
id: string;
|
|
26
|
+
label: string;
|
|
27
|
+
kind: 'oauth-subscription' | 'api-platform' | 'token-plan' | 'local';
|
|
28
|
+
lifecycle?: 'active' | 'legacy' | 'unavailable';
|
|
29
|
+
authModes: Array<'oauth' | 'deviceCode' | 'apiKey' | 'local'>;
|
|
30
|
+
runtimeProviderIds?: string[];
|
|
31
|
+
productLabel?: string;
|
|
32
|
+
credentialPrefixHints?: string[];
|
|
33
|
+
consoleUrl?: string;
|
|
34
|
+
subscriptionUrl?: string;
|
|
35
|
+
endpoints: Array<{
|
|
36
|
+
protocol: string;
|
|
37
|
+
baseUrl: string;
|
|
38
|
+
region?: string;
|
|
39
|
+
supportsDeveloperMessages?: boolean;
|
|
40
|
+
}>;
|
|
41
|
+
modelDiscovery?: {
|
|
42
|
+
strategy: 'openaiCompatible' | 'anthropic' | 'unsupported';
|
|
43
|
+
path: string;
|
|
44
|
+
endpointProtocol: string;
|
|
45
|
+
};
|
|
46
|
+
quota?: {
|
|
47
|
+
strategy: 'providerApi' | 'subscription' | 'console' | 'unsupported';
|
|
48
|
+
url: string;
|
|
49
|
+
};
|
|
50
|
+
usagePolicyUrl?: string;
|
|
51
|
+
region?: string;
|
|
21
52
|
}
|
|
22
53
|
export type ProviderFeature = 'chat' | 'embedding' | 'image' | 'audio' | 'vision' | 'function-calling';
|
|
23
54
|
export interface ModelMetadata {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { extensionSchema } from "./extension.schema";
|
|
1
|
+
export { extensionSchema } from "./extension.schema.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { favoriteResource, favoriteTable, type FavoriteRow, type FavoriteInsert, type FavoriteUpdate } from "./favorite.schema";
|
|
2
|
-
export { createStarredSyncHook, registerDbForStarredSync, chatStarredSyncHook, threadStarredSyncHook, contactStarredSyncHook, chatSnapshotExtractor, threadSnapshotExtractor, contactSnapshotExtractor, type SnapshotExtractor, type StarredSyncConfig, type SourceModule, } from "./starred-sync";
|
|
1
|
+
export { favoriteResource, favoriteTable, type FavoriteRow, type FavoriteInsert, type FavoriteUpdate } from "./favorite.schema.js";
|
|
2
|
+
export { createStarredSyncHook, registerDbForStarredSync, chatStarredSyncHook, threadStarredSyncHook, contactStarredSyncHook, chatSnapshotExtractor, threadSnapshotExtractor, contactSnapshotExtractor, type SnapshotExtractor, type StarredSyncConfig, type SourceModule, } from "./starred-sync.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { ChatInsert } from '../chat.schema';
|
|
2
|
-
import type { ContactInsert } from '../contact.schema';
|
|
3
|
-
import type { MessageInsert } from '../message.schema';
|
|
4
|
-
import type { ThreadInsert } from '../thread.schema';
|
|
5
|
-
import type { ToolApprovalBlock, ToolCallBlock, TaskProgressBlock } from '../types/collaboration-blocks';
|
|
1
|
+
import type { ChatInsert } from '../chat.schema.js';
|
|
2
|
+
import type { ContactInsert } from '../contact.schema.js';
|
|
3
|
+
import type { MessageInsert } from '../message.schema.js';
|
|
4
|
+
import type { ThreadInsert } from '../thread.schema.js';
|
|
5
|
+
import type { ToolApprovalBlock, ToolCallBlock, TaskProgressBlock } from '../types/collaboration-blocks.js';
|
|
6
6
|
export declare const fixtureContactSolid: ContactInsert;
|
|
7
7
|
export declare const fixtureContactAgentWorkspace: ContactInsert;
|
|
8
8
|
export declare const fixtureChatDirectAI: ChatInsert;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { importJobSchema } from "./import-job.schema";
|
|
1
|
+
export { importJobSchema } from "./import-job.schema.js";
|
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
export { UDFS, UDFS_NAMESPACE, SIOC, DCTerms, SCHEMA, RDF, RDFS, ACL, ODRL, OWL, FOAF, MEETING, AS, VCARD, WF, LDP, } from "./namespaces";
|
|
2
|
-
export * from "./vocab";
|
|
3
|
-
export * from './profile';
|
|
4
|
-
export * from './profile.repository';
|
|
5
|
-
export * from './profile.schema';
|
|
6
|
-
export { ContactGender, contactResource, contactTable, ContactClass, ContactType, isAgentContact, isGroupContact, normalizeContactRdfTypes, normalizeContactGender, type ContactRow, type ContactInsert, type ContactRdfTypeInput, type ContactUpdate, type ContactClassValue, type ContactGenderValue, type ContactTypeValue, } from './contact.schema';
|
|
7
|
-
export { contactRepository } from './contact.repository';
|
|
8
|
-
export { ChatStatus, chatResource, chatTable, type ChatMetadata, type ChatMemberRole, type ChatStatusType, type ChatRow, type ChatInsert, type ChatUpdate, } from './chat.schema';
|
|
9
|
-
export { chatRepository } from './chat.repository';
|
|
10
|
-
export { buildChatTargetRef, extractChatIdFromChatRef, extractChatTargetRef, extractChatThreadRef, extractThreadIdFromThreadRef, resolveThreadChatId, toTimestamp, type ChatTargetRef, type ChatThreadRef, } from './chat.utils';
|
|
11
|
-
export { buildModelResourceId, buildModelResourceIri, buildModelResourceIriForDatabase, resolveModelResourceIri, resolveModelResourceIriForDatabase, type ModelResourceTarget, } from './resource-refs';
|
|
12
|
-
export { aiRuntimeRepository, buildAiRuntimeCredentialId, buildAiRuntimeCredentialIri, buildAiRuntimeCredentialTarget, getAiRuntimeProviderCredential, upsertAiRuntimeProviderCredential, type AiRuntimeCredentialDb, type AiRuntimeCredentialTargetInput, type AiRuntimeCredentialUpsertInput, type AiRuntimeDeployment, } from './ai-runtime.repository';
|
|
13
|
-
export { ThreadStatus, threadResource, threadTable, type ThreadStatusType, type ThreadRow, type ThreadInsert, type ThreadUpdate, } from './thread.schema';
|
|
14
|
-
export { threadRepository } from './thread.repository';
|
|
15
|
-
export { MessageRole, MessageStatus, messageResource, messageTable, type MessageRoleType, type MessageStatusType, type MessageRow, type MessageInsert, type MessageUpdate, } from './message.schema';
|
|
16
|
-
export { messageRepository, type MessageListWhere } from './message.repository';
|
|
17
|
-
export { chatProjectContextResource, chatProjectMemoryResource, chatProjectContextResourceId, chatProjectMemoryResourceId, type ChatProjectContextRow, type ChatProjectContextInsert, type ChatProjectContextUpdate, type ChatProjectMemoryRow, type ChatProjectMemoryInsert, type ChatProjectMemoryUpdate, } from './chat-project.schema';
|
|
18
|
-
export { chatProjectContextRepository, chatProjectMemoryRepository, emptyChatProjectContext, readChatProjectContext, writeChatProjectContext, reconcileChatProjectContext, type ReconcileChatProjectContextInput, type ChatProjectContextSnapshot, type ChatProjectMemoryEntry, type ChatProjectWhere, } from './chat-project.repository';
|
|
19
|
-
export { conversationShareResource, conversationShareResourceId, type ConversationShareRow, type ConversationShareInsert, type ConversationShareUpdate, } from './conversation-share.schema';
|
|
20
|
-
export { conversationShareRepository, removeConversationShare, markConversationShareRevoked, type ConversationShareWhere, } from './conversation-share.repository';
|
|
21
|
-
export { TaskStatus, taskResource, taskTable, type TaskStatusType, type TaskRow, type TaskInsert, type TaskUpdate, } from './task.schema';
|
|
22
|
-
export { ScheduleKind, ScheduleStatus, scheduleResource, scheduleTable, type ScheduleKindType, type ScheduleStatusType, type ScheduleRow, type ScheduleInsert, type ScheduleUpdate, } from './schedule.schema';
|
|
23
|
-
export { AutomationRuleKind, AutomationRuleStatus, automationRuleResource, automationRuleTable, type AutomationRuleKindType, type AutomationRuleStatusType, type AutomationRuleRow, type AutomationRuleInsert, type AutomationRuleUpdate, } from './automation-rule.schema';
|
|
24
|
-
export { DeliveryKind, DeliveryStatus, deliveryResource, deliveryTable, type DeliveryKindType, type DeliveryStatusType, type DeliveryRow, type DeliveryInsert, type DeliveryUpdate, } from './delivery.schema';
|
|
25
|
-
export { EvidenceKind, evidenceResource, type EvidenceKindType, type EvidenceRow, type EvidenceInsert, type EvidenceUpdate, } from './evidence.schema';
|
|
26
|
-
export { ReportKind, ReportOutcome, ReportStatus, reportResource, type ReportKindType, type ReportOutcomeType, type ReportStatusType, type ReportRow, type ReportInsert, type ReportUpdate, } from './report.schema';
|
|
27
|
-
export { RunStatus, RunStepType, runResource, runStepResource, runTable, runStepTable, type RunStatusType, type RunStepTypeValue, type RunRow, type RunInsert, type RunUpdate, type RunStepRow, type RunStepInsert, type RunStepUpdate, } from './run.schema';
|
|
28
|
-
export { dateParts, parentDir, resourceKey, type DateInput, type DateParts, } from './resource-id-defaults';
|
|
29
|
-
export { ideaResource, type IdeaStatus, type IdeaCommitment, type IdeaRow, type IdeaInsert, type IdeaUpdate, } from './idea.schema';
|
|
30
|
-
export { issueResource, issueTable, type IssueStatus, type IssuePriority, type IssueRow, type IssueInsert, type IssueUpdate, } from './issue.schema';
|
|
31
|
-
export { issueRepository } from './issue.repository';
|
|
32
|
-
export { MessageBlockType, MessageBlockStatus, type BaseMessageBlock, type PlaceholderMessageBlock, type MainTextMessageBlock, type ThinkingMessageBlock, type ImageMessageBlock, type CodeMessageBlock, type ToolMessageBlock, type FileMessageBlock, type ErrorMessageBlock, type CitationMessageBlock, type MessageBlock, type MessageRichContent, createMessageBlock, isBlockType, parseMessageBlocks, serializeMessageBlocks, } from './types/message-block';
|
|
33
|
-
export { type ToolApprovalBlock, type ToolCallBlock, type TaskProgressBlock, type CollaborationRichBlock, type ToolRisk, type ToolApprovalStatus, type ToolCallStatus, type TaskProgressStepStatus, } from "./types/collaboration-blocks";
|
|
34
|
-
export * from "./fixtures/contracts-chat-contact";
|
|
35
|
-
export { favoriteResource, favoriteTable, type FavoriteRow, type FavoriteInsert, type FavoriteUpdate, createStarredSyncHook, registerDbForStarredSync, chatStarredSyncHook, threadStarredSyncHook, contactStarredSyncHook, chatSnapshotExtractor, threadSnapshotExtractor, contactSnapshotExtractor, type SnapshotExtractor, type StarredSyncConfig, type SourceModule, } from './favorite';
|
|
36
|
-
export { CaptureCandidateStatus, CaptureDecision, captureCandidateResource, captureEventResource, type CaptureCandidateStatusType, type CaptureConfidenceType, type CaptureDecisionType, type CaptureCandidateRow, type CaptureCandidateInsert, type CaptureCandidateUpdate, type CaptureEventRow, type CaptureEventInsert, type CaptureEventUpdate, } from './capture.schema';
|
|
37
|
-
export { captureCandidateRepository, captureEventRepository, hasCaptureForSource, listCaptureEventsBySource, type CaptureCandidateListWhere, type CaptureDuplicateCheckInput, type CaptureEventListWhere, type CaptureEventSourceReadDatabase, } from './capture.repository';
|
|
38
|
-
export { settingsResource, settingsTable, SETTING_KEYS, type SettingKey, type SettingsRow, type SettingsInsert, type SettingsUpdate, } from './settings';
|
|
39
|
-
export { agentResource, agentTable, type AgentRow, type AgentInsert, type AgentUpdate, } from './agent.schema';
|
|
40
|
-
export { agentRepository } from './agent.repository';
|
|
41
|
-
export { skillResource, skillTable, type SkillRow, type SkillInsert, type SkillUpdate, } from './skill.schema';
|
|
42
|
-
export { DEFAULT_AGENT_PROVIDERS, type AgentProviderMetadata, type AgentModelOption, } from './agent.providers';
|
|
43
|
-
export { sessionResource, sessionTable, buildRuntimeSessionIri, extractSessionIdFromSessionRef, extractRuntimeSessionId, type SessionStatus, type SessionRow, type SessionInsert, type SessionUpdate, } from './session';
|
|
44
|
-
export { sessionRepository } from './session.repository';
|
|
45
|
-
export { approvalResource, approvalTable, extractApprovalIdFromApprovalRef, type ApprovalRow, type ApprovalInsert, type ApprovalUpdate, } from './approval.schema';
|
|
46
|
-
export { claimApprovalRequest, isApprovalStatusClaimable, type ApprovalClaimDatabase, type ApprovalClaimRequest, type ApprovalClaimResult, type ApprovalClaimStatus, } from './approval.repository';
|
|
47
|
-
export { claimControlRequest, isControlRequestStatusClaimable, type ClaimableControlRequestRow, type ControlRequestClaimDatabase, type ControlRequestClaimOptions, type ControlRequestClaimResource, type ControlRequestClaimResult, type ControlRequestClaimRow, type ControlRequestClaimStatus, type ControlRequestClaimUpdate, } from './control-request.repository';
|
|
48
|
-
export { auditResource, auditTable, extractAuditIdFromAuditRef, type AuditRow, type AuditInsert, type AuditUpdate, } from './audit.schema';
|
|
49
|
-
export { buildAuditDetailRecord, buildAuditPresentation, createResolvedAuthTimestampsIndex, formatAuditActorRole, formatInboxStatusLabel, type AuditPresentation, } from './audit.presentation';
|
|
50
|
-
export { grantResource, grantTable, type GrantRow, type GrantInsert, type GrantUpdate, } from './grant.schema';
|
|
51
|
-
export { inboxNotificationResource, inboxNotificationTable, type InboxNotificationRow, type InboxNotificationInsert, type InboxNotificationUpdate, } from './inbox-notification.schema';
|
|
52
|
-
export { InputRequestStatus, inputRequestResource, inputRequestTable, extractInputRequestIdFromInputRequestRef, type InputRequestStatusType, type InputRequestRow, type InputRequestInsert, type InputRequestUpdate, } from './input-request.schema';
|
|
53
|
-
export { claimInputRequest, isInputRequestStatusClaimable, type InputRequestClaimDatabase, type InputRequestClaimRequest, type InputRequestClaimResult, type InputRequestClaimStatus, } from './input-request.repository';
|
|
54
|
-
export { ApprovalVocab, AuditVocab, GrantVocab, GrantReadVocab, InputRequestVocab, LegacyGrantVocab, InboxNotificationVocab } from './vocab/sidecar.vocab';
|
|
55
|
-
export * from './sidecar/sidecar-events';
|
|
56
|
-
export * from './sidecar/persistence-mapping';
|
|
57
|
-
export { knowledgeFolderSchema, type KnowledgeFolderScope } from './knowledge';
|
|
58
|
-
export { extensionSchema } from './extension';
|
|
59
|
-
export { apiKeyCredentialResource, apiKeyCredentialTable, CredentialSecretAlgorithm, CredentialStorageMode, credentialResource, credentialTable, oauthCredentialResource, oauthCredentialTable, ProviderAuthMode, type ApiKeyCredentialRow, type ApiKeyCredentialInsert, type ApiKeyCredentialUpdate, type CredentialSecretAlgorithmType, type CredentialStorageModeType, type CredentialRow, type CredentialInsert, type CredentialUpdate, type OAuthCredentialRow, type OAuthCredentialInsert, type OAuthCredentialUpdate, type ProviderAuthModeType, } from "./credential.schema";
|
|
60
|
-
export { aiProviderResource, aiProviderTable, type AIProviderRow, type AIProviderInsert, type AIProviderUpdate, } from "./ai-provider.schema";
|
|
61
|
-
export { aiModelSchema, aiModelResource, aiModelTable, chatModelSchema, chatModelResource, documentUnderstandingModelSchema, documentUnderstandingModelResource, embeddingModelSchema, embeddingModelResource, imageGenerationModelSchema, imageGenerationModelResource, rerankingModelSchema, rerankingModelResource, speechRecognitionModelSchema, speechRecognitionModelResource, speechSynthesisModelSchema, speechSynthesisModelResource, videoGenerationModelSchema, videoGenerationModelResource, type AIModelRow, type AIModelInsert, type AIModelUpdate, type ChatModelRow, type ChatModelInsert, type ChatModelUpdate, type EmbeddingModelRow, type EmbeddingModelInsert, type EmbeddingModelUpdate, type DocumentUnderstandingModelRow, type DocumentUnderstandingModelInsert, type DocumentUnderstandingModelUpdate, type RerankingModelRow, type RerankingModelInsert, type RerankingModelUpdate, type ImageGenerationModelRow, type ImageGenerationModelInsert, type ImageGenerationModelUpdate, type SpeechRecognitionModelRow, type SpeechRecognitionModelInsert, type SpeechRecognitionModelUpdate, type SpeechSynthesisModelRow, type SpeechSynthesisModelInsert, type SpeechSynthesisModelUpdate, type VideoGenerationModelRow, type VideoGenerationModelInsert, type VideoGenerationModelUpdate, } from "./ai-model.schema";
|
|
62
|
-
export { AI_MODEL_CAPABILITY, AI_MODEL_CAPABILITIES, AI_MODEL_CLASS, AI_MODEL_CLASS_DEFAULT_CAPABILITY, AI_MODEL_MODALITIES, AI_MODEL_WORKLOAD_REQUIREMENT, filterAIModelCapabilityUris, filterAIModelCapabilities, filterAIModelModalities, isAIModelEligibleForWorkload, isAIModelCapability, isAIModelCapabilityUri, isAIModelModality, selectAIModelForWorkload, toAIModelCapabilityName, toAIModelCapabilityUri, toAIModelClassName, toAIModelClassUri, withAIModelClassDefaultCapabilities, type AIModelCapability, type AIModelCapabilityUri, type AIModelClass, type AIModelClassUri, type AIModelModality, type AIModelWorkload, } from "./ai-model-vocab";
|
|
63
|
-
export { READER_CHUNK_POLICY_VERSION, READER_MARKDOWN_MEDIA_TYPE, READER_MATERIALIZATION_NOTE_KIND, READER_MATERIALIZATION_STATUSES, READER_NOTE_FRAGMENT, type ReaderMaterializationProvenance, type ReaderMaterializationStatus, } from './reader-materialization';
|
|
64
|
-
export { agentStatusResource, agentStatusTable, aiConfigResource, aiConfigTable, indexedFileResource, indexedFileTable, vectorStoreResource, vectorStoreTable, type AgentStatusRow, type AgentStatusInsert, type AgentStatusUpdate, type AIConfigRow, type AIConfigInsert, type AIConfigUpdate as AIConfigResourceUpdate, type IndexedFileRow, type IndexedFileInsert, type IndexedFileUpdate, type VectorStoreRow, type VectorStoreInsert, type VectorStoreUpdate, } from './ai-runtime.schema';
|
|
65
|
-
export { aiGatewayRepository, gatewayAccessKeyResource, gatewayAccessKeyTable, GatewayAccessKeyDeployment, quotaSnapshotResource, quotaSnapshotTable, QuotaSnapshotStatus, quotaSnapshotId, validateGatewayAccessKey, validateQuotaSnapshot, type FindFreshQuotaSnapshotInput, type FindLatestQuotaSnapshotInput, type GatewayAccessKeyDeploymentType, type QuotaSnapshotIdInput, type GatewayAccessKeyRow, type GatewayAccessKeyInsert, type GatewayAccessKeyUpdate, type QuotaSnapshotStatusType, type QuotaSnapshotUpsert, type QuotaSnapshotRow, type QuotaSnapshotInsert, type QuotaSnapshotUpdate, } from './ai-gateway.schema';
|
|
66
|
-
export { aiConfigModelRef, aiConfigModelUri, aiConfigProviderRef, aiConfigProviderUri, aiConfigRepository, AIConfigRuntimeCapability, aiConfigSupportsRuntimeCapability, buildAIConfigDisconnectPlan, buildAIConfigMutationPlan, buildAIConfigProviderStateMap, getAIConfigDefaultBaseUrl, getDefaultAIConfigCredentialId, getAIConfigProviderCatalog, getAIConfigProviderFamilyIds, getAIConfigProviderCapabilities, getAIConfigProviderIdsForBackend, getAIConfigProviderMetadata, createAIConfigCredentialId, normalizeAIConfigProviderId, normalizeAIConfigModelId, normalizeAIConfigResourceId, sameAIConfigProviderFamily, selectAIConfigCredential, selectAIConfigCredentialForBackend, type AIConfigModel, type AIConfigRuntimeCapabilityType, type AIConfigBackendCredentialSelection, type AIConfigCredentialSelection, type AIConfigDisconnectPlan, type AIConfigMutationPlan, type AIConfigProviderCatalogEntry, type AIConfigProviderState, type AIConfigUpdate, type BuildAIConfigProviderStateMapOptions, } from './ai-config';
|
|
67
|
-
export { applySolidComunicaPatches, } from './comunica-patches';
|
|
68
|
-
export { PROTOCOL_METADATA_KEY, getProtocolMetadata, withProtocolMetadata, withoutProtocolProjectionKeys, type ProtocolMetadataRecord, } from './protocol-metadata';
|
|
69
|
-
export { approvalDescriptor, automationRuleDescriptor, captureCandidateDescriptor, captureEventDescriptor, chatDescriptor, chatProjectContextDescriptor, chatProjectMemoryDescriptor, conversationShareDescriptor, contactDescriptor, credentialDescriptor, createPodModelDescriptorRegistry, createPodSchema, createPodStorage, deliveryDescriptor, evidenceDescriptor, gatewayAccessKeyDescriptor, ideaDescriptor, inputRequestDescriptor, issueDescriptor, messageDescriptor, officialPodModelDescriptors, podSchema, quotaSnapshotDescriptor, reportDescriptor, runDescriptor, runStepDescriptor, scheduleDescriptor, sessionDescriptor, taskDescriptor, threadDescriptor, type PodModelDescriptor, type PodModelDescriptorSource, type PodModelDescriptorTrustLevel, type PodModelFieldDescriptor, type PodModelFieldType, type PodModelMergePolicy, type PodSchemaClassEntry, type PodSchemaPredicateEntry, type PodSchemaSearchEntry, type PodStorageCommitResult, type PodStorageMutationPlan, type PodStorageValidationResult, } from './pod-storage-descriptor';
|
|
70
|
-
export { createResourceRepositoryDescriptor, createRepositoryDescriptor, definePodRepository, initSolidResources, initSolidTables, type AnyPodResource, type AnyPodTable, type PodRepositoryDescriptor, type PodResourceRepositoryOptions, type RepositoryCacheOptions, type RepositoryInvalidations, type RepositoryScope, type SolidDatabase, } from './repository';
|
|
71
|
-
export { importJobSchema } from './import';
|
|
1
|
+
export { UDFS, UDFS_NAMESPACE, SIOC, DCTerms, SCHEMA, RDF, RDFS, ACL, ODRL, OWL, FOAF, MEETING, AS, VCARD, WF, LDP, } from "./namespaces.js";
|
|
2
|
+
export * from "./vocab/index.js";
|
|
3
|
+
export * from './profile.js';
|
|
4
|
+
export * from './profile.repository.js';
|
|
5
|
+
export * from './profile.schema.js';
|
|
6
|
+
export { ContactGender, contactResource, contactTable, ContactClass, ContactType, isAgentContact, isGroupContact, normalizeContactRdfTypes, normalizeContactGender, type ContactRow, type ContactInsert, type ContactRdfTypeInput, type ContactUpdate, type ContactClassValue, type ContactGenderValue, type ContactTypeValue, } from './contact.schema.js';
|
|
7
|
+
export { contactRepository } from './contact.repository.js';
|
|
8
|
+
export { ChatStatus, chatResource, chatTable, type ChatMetadata, type ChatMemberRole, type ChatStatusType, type ChatRow, type ChatInsert, type ChatUpdate, } from './chat.schema.js';
|
|
9
|
+
export { chatRepository } from './chat.repository.js';
|
|
10
|
+
export { buildChatTargetRef, extractChatIdFromChatRef, extractChatTargetRef, extractChatThreadRef, extractThreadIdFromThreadRef, resolveThreadChatId, toTimestamp, type ChatTargetRef, type ChatThreadRef, } from './chat.utils.js';
|
|
11
|
+
export { buildModelResourceId, buildModelResourceIri, buildModelResourceIriForDatabase, resolveModelResourceIri, resolveModelResourceIriForDatabase, type ModelResourceTarget, } from './resource-refs.js';
|
|
12
|
+
export { aiRuntimeRepository, buildAiRuntimeCredentialId, buildAiRuntimeCredentialIri, buildAiRuntimeCredentialTarget, getAiRuntimeProviderCredential, upsertAiRuntimeProviderCredential, type AiRuntimeCredentialDb, type AiRuntimeCredentialTargetInput, type AiRuntimeCredentialUpsertInput, type AiRuntimeDeployment, } from './ai-runtime.repository.js';
|
|
13
|
+
export { ThreadStatus, threadResource, threadTable, type ThreadStatusType, type ThreadRow, type ThreadInsert, type ThreadUpdate, } from './thread.schema.js';
|
|
14
|
+
export { threadRepository } from './thread.repository.js';
|
|
15
|
+
export { MessageRole, MessageStatus, messageResource, messageTable, type MessageRoleType, type MessageStatusType, type MessageRow, type MessageInsert, type MessageUpdate, } from './message.schema.js';
|
|
16
|
+
export { messageRepository, type MessageListWhere } from './message.repository.js';
|
|
17
|
+
export { chatProjectContextResource, chatProjectMemoryResource, chatProjectContextResourceId, chatProjectMemoryResourceId, type ChatProjectContextRow, type ChatProjectContextInsert, type ChatProjectContextUpdate, type ChatProjectMemoryRow, type ChatProjectMemoryInsert, type ChatProjectMemoryUpdate, } from './chat-project.schema.js';
|
|
18
|
+
export { chatProjectContextRepository, chatProjectMemoryRepository, emptyChatProjectContext, readChatProjectContext, writeChatProjectContext, reconcileChatProjectContext, type ReconcileChatProjectContextInput, type ChatProjectContextSnapshot, type ChatProjectMemoryEntry, type ChatProjectWhere, } from './chat-project.repository.js';
|
|
19
|
+
export { conversationShareResource, conversationShareResourceId, type ConversationShareRow, type ConversationShareInsert, type ConversationShareUpdate, } from './conversation-share.schema.js';
|
|
20
|
+
export { conversationShareRepository, removeConversationShare, markConversationShareRevoked, type ConversationShareWhere, } from './conversation-share.repository.js';
|
|
21
|
+
export { TaskStatus, taskResource, taskTable, type TaskStatusType, type TaskRow, type TaskInsert, type TaskUpdate, } from './task.schema.js';
|
|
22
|
+
export { ScheduleKind, ScheduleStatus, scheduleResource, scheduleTable, type ScheduleKindType, type ScheduleStatusType, type ScheduleRow, type ScheduleInsert, type ScheduleUpdate, } from './schedule.schema.js';
|
|
23
|
+
export { AutomationRuleKind, AutomationRuleStatus, automationRuleResource, automationRuleTable, type AutomationRuleKindType, type AutomationRuleStatusType, type AutomationRuleRow, type AutomationRuleInsert, type AutomationRuleUpdate, } from './automation-rule.schema.js';
|
|
24
|
+
export { DeliveryKind, DeliveryStatus, deliveryResource, deliveryTable, type DeliveryKindType, type DeliveryStatusType, type DeliveryRow, type DeliveryInsert, type DeliveryUpdate, } from './delivery.schema.js';
|
|
25
|
+
export { EvidenceKind, evidenceResource, type EvidenceKindType, type EvidenceRow, type EvidenceInsert, type EvidenceUpdate, } from './evidence.schema.js';
|
|
26
|
+
export { ReportKind, ReportOutcome, ReportStatus, reportResource, type ReportKindType, type ReportOutcomeType, type ReportStatusType, type ReportRow, type ReportInsert, type ReportUpdate, } from './report.schema.js';
|
|
27
|
+
export { RunStatus, RunStepType, runResource, runStepResource, runTable, runStepTable, type RunStatusType, type RunStepTypeValue, type RunRow, type RunInsert, type RunUpdate, type RunStepRow, type RunStepInsert, type RunStepUpdate, } from './run.schema.js';
|
|
28
|
+
export { dateParts, parentDir, resourceKey, type DateInput, type DateParts, } from './resource-id-defaults.js';
|
|
29
|
+
export { ideaResource, type IdeaStatus, type IdeaCommitment, type IdeaRow, type IdeaInsert, type IdeaUpdate, } from './idea.schema.js';
|
|
30
|
+
export { issueResource, issueTable, type IssueStatus, type IssuePriority, type IssueRow, type IssueInsert, type IssueUpdate, } from './issue.schema.js';
|
|
31
|
+
export { issueRepository } from './issue.repository.js';
|
|
32
|
+
export { MessageBlockType, MessageBlockStatus, type BaseMessageBlock, type PlaceholderMessageBlock, type MainTextMessageBlock, type ThinkingMessageBlock, type ImageMessageBlock, type CodeMessageBlock, type ToolMessageBlock, type FileMessageBlock, type ErrorMessageBlock, type CitationMessageBlock, type MessageBlock, type MessageRichContent, createMessageBlock, isBlockType, parseMessageBlocks, serializeMessageBlocks, } from './types/message-block.js';
|
|
33
|
+
export { type ToolApprovalBlock, type ToolCallBlock, type TaskProgressBlock, type CollaborationRichBlock, type ToolRisk, type ToolApprovalStatus, type ToolCallStatus, type TaskProgressStepStatus, } from "./types/collaboration-blocks.js";
|
|
34
|
+
export * from "./fixtures/contracts-chat-contact.js";
|
|
35
|
+
export { favoriteResource, favoriteTable, type FavoriteRow, type FavoriteInsert, type FavoriteUpdate, createStarredSyncHook, registerDbForStarredSync, chatStarredSyncHook, threadStarredSyncHook, contactStarredSyncHook, chatSnapshotExtractor, threadSnapshotExtractor, contactSnapshotExtractor, type SnapshotExtractor, type StarredSyncConfig, type SourceModule, } from './favorite/index.js';
|
|
36
|
+
export { CaptureCandidateStatus, CaptureDecision, captureCandidateResource, captureEventResource, type CaptureCandidateStatusType, type CaptureConfidenceType, type CaptureDecisionType, type CaptureCandidateRow, type CaptureCandidateInsert, type CaptureCandidateUpdate, type CaptureEventRow, type CaptureEventInsert, type CaptureEventUpdate, } from './capture.schema.js';
|
|
37
|
+
export { captureCandidateRepository, captureEventRepository, hasCaptureForSource, listCaptureEventsBySource, type CaptureCandidateListWhere, type CaptureDuplicateCheckInput, type CaptureEventListWhere, type CaptureEventSourceReadDatabase, } from './capture.repository.js';
|
|
38
|
+
export { settingsResource, settingsTable, SETTING_KEYS, type SettingKey, type SettingsRow, type SettingsInsert, type SettingsUpdate, } from './settings/index.js';
|
|
39
|
+
export { agentResource, agentTable, type AgentRow, type AgentInsert, type AgentUpdate, } from './agent.schema.js';
|
|
40
|
+
export { agentRepository } from './agent.repository.js';
|
|
41
|
+
export { skillResource, skillTable, type SkillRow, type SkillInsert, type SkillUpdate, } from './skill.schema.js';
|
|
42
|
+
export { DEFAULT_AGENT_PROVIDERS, type AgentProviderMetadata, type AgentModelOption, } from './agent.providers.js';
|
|
43
|
+
export { sessionResource, sessionTable, buildRuntimeSessionIri, extractSessionIdFromSessionRef, extractRuntimeSessionId, type SessionStatus, type SessionRow, type SessionInsert, type SessionUpdate, } from './session/index.js';
|
|
44
|
+
export { sessionRepository } from './session.repository.js';
|
|
45
|
+
export { approvalResource, approvalTable, extractApprovalIdFromApprovalRef, type ApprovalRow, type ApprovalInsert, type ApprovalUpdate, } from './approval.schema.js';
|
|
46
|
+
export { claimApprovalRequest, isApprovalStatusClaimable, type ApprovalClaimDatabase, type ApprovalClaimRequest, type ApprovalClaimResult, type ApprovalClaimStatus, } from './approval.repository.js';
|
|
47
|
+
export { claimControlRequest, isControlRequestStatusClaimable, type ClaimableControlRequestRow, type ControlRequestClaimDatabase, type ControlRequestClaimOptions, type ControlRequestClaimResource, type ControlRequestClaimResult, type ControlRequestClaimRow, type ControlRequestClaimStatus, type ControlRequestClaimUpdate, } from './control-request.repository.js';
|
|
48
|
+
export { auditResource, auditTable, extractAuditIdFromAuditRef, type AuditRow, type AuditInsert, type AuditUpdate, } from './audit.schema.js';
|
|
49
|
+
export { buildAuditDetailRecord, buildAuditPresentation, createResolvedAuthTimestampsIndex, formatAuditActorRole, formatInboxStatusLabel, type AuditPresentation, } from './audit.presentation.js';
|
|
50
|
+
export { grantResource, grantTable, type GrantRow, type GrantInsert, type GrantUpdate, } from './grant.schema.js';
|
|
51
|
+
export { inboxNotificationResource, inboxNotificationTable, type InboxNotificationRow, type InboxNotificationInsert, type InboxNotificationUpdate, } from './inbox-notification.schema.js';
|
|
52
|
+
export { InputRequestStatus, inputRequestResource, inputRequestTable, extractInputRequestIdFromInputRequestRef, type InputRequestStatusType, type InputRequestRow, type InputRequestInsert, type InputRequestUpdate, } from './input-request.schema.js';
|
|
53
|
+
export { claimInputRequest, isInputRequestStatusClaimable, type InputRequestClaimDatabase, type InputRequestClaimRequest, type InputRequestClaimResult, type InputRequestClaimStatus, } from './input-request.repository.js';
|
|
54
|
+
export { ApprovalVocab, AuditVocab, GrantVocab, GrantReadVocab, InputRequestVocab, LegacyGrantVocab, InboxNotificationVocab } from './vocab/sidecar.vocab.js';
|
|
55
|
+
export * from './sidecar/sidecar-events.js';
|
|
56
|
+
export * from './sidecar/persistence-mapping.js';
|
|
57
|
+
export { knowledgeFolderSchema, type KnowledgeFolderScope } from './knowledge/index.js';
|
|
58
|
+
export { extensionSchema } from './extension/index.js';
|
|
59
|
+
export { apiKeyCredentialResource, apiKeyCredentialTable, CredentialSecretAlgorithm, CredentialStorageMode, credentialResource, credentialTable, oauthCredentialResource, oauthCredentialTable, ProviderAuthMode, type ApiKeyCredentialRow, type ApiKeyCredentialInsert, type ApiKeyCredentialUpdate, type CredentialSecretAlgorithmType, type CredentialStorageModeType, type CredentialRow, type CredentialInsert, type CredentialUpdate, type OAuthCredentialRow, type OAuthCredentialInsert, type OAuthCredentialUpdate, type ProviderAuthModeType, } from "./credential.schema.js";
|
|
60
|
+
export { aiProviderResource, aiProviderTable, type AIProviderRow, type AIProviderInsert, type AIProviderUpdate, } from "./ai-provider.schema.js";
|
|
61
|
+
export { aiModelSchema, aiModelResource, aiModelTable, chatModelSchema, chatModelResource, documentUnderstandingModelSchema, documentUnderstandingModelResource, embeddingModelSchema, embeddingModelResource, imageGenerationModelSchema, imageGenerationModelResource, rerankingModelSchema, rerankingModelResource, speechRecognitionModelSchema, speechRecognitionModelResource, speechSynthesisModelSchema, speechSynthesisModelResource, videoGenerationModelSchema, videoGenerationModelResource, type AIModelRow, type AIModelInsert, type AIModelUpdate, type ChatModelRow, type ChatModelInsert, type ChatModelUpdate, type EmbeddingModelRow, type EmbeddingModelInsert, type EmbeddingModelUpdate, type DocumentUnderstandingModelRow, type DocumentUnderstandingModelInsert, type DocumentUnderstandingModelUpdate, type RerankingModelRow, type RerankingModelInsert, type RerankingModelUpdate, type ImageGenerationModelRow, type ImageGenerationModelInsert, type ImageGenerationModelUpdate, type SpeechRecognitionModelRow, type SpeechRecognitionModelInsert, type SpeechRecognitionModelUpdate, type SpeechSynthesisModelRow, type SpeechSynthesisModelInsert, type SpeechSynthesisModelUpdate, type VideoGenerationModelRow, type VideoGenerationModelInsert, type VideoGenerationModelUpdate, } from "./ai-model.schema.js";
|
|
62
|
+
export { AI_MODEL_CAPABILITY, AI_MODEL_CAPABILITIES, AI_MODEL_CLASS, AI_MODEL_CLASS_DEFAULT_CAPABILITY, AI_MODEL_MODALITIES, AI_MODEL_WORKLOAD_REQUIREMENT, filterAIModelCapabilityUris, filterAIModelCapabilities, filterAIModelModalities, isAIModelEligibleForWorkload, isAIModelCapability, isAIModelCapabilityUri, isAIModelModality, selectAIModelForWorkload, toAIModelCapabilityName, toAIModelCapabilityUri, toAIModelClassName, toAIModelClassUri, withAIModelClassDefaultCapabilities, type AIModelCapability, type AIModelCapabilityUri, type AIModelClass, type AIModelClassUri, type AIModelModality, type AIModelWorkload, } from "./ai-model-vocab.js";
|
|
63
|
+
export { READER_CHUNK_POLICY_VERSION, READER_MARKDOWN_MEDIA_TYPE, READER_MATERIALIZATION_NOTE_KIND, READER_MATERIALIZATION_STATUSES, READER_NOTE_FRAGMENT, type ReaderMaterializationProvenance, type ReaderMaterializationStatus, } from './reader-materialization.js';
|
|
64
|
+
export { agentStatusResource, agentStatusTable, aiConfigResource, aiConfigTable, indexedFileResource, indexedFileTable, vectorStoreResource, vectorStoreTable, type AgentStatusRow, type AgentStatusInsert, type AgentStatusUpdate, type AIConfigRow, type AIConfigInsert, type AIConfigUpdate as AIConfigResourceUpdate, type IndexedFileRow, type IndexedFileInsert, type IndexedFileUpdate, type VectorStoreRow, type VectorStoreInsert, type VectorStoreUpdate, } from './ai-runtime.schema.js';
|
|
65
|
+
export { aiGatewayRepository, gatewayAccessKeyResource, gatewayAccessKeyTable, GatewayAccessKeyDeployment, quotaSnapshotResource, quotaSnapshotTable, QuotaSnapshotStatus, quotaSnapshotId, validateGatewayAccessKey, validateQuotaSnapshot, type FindFreshQuotaSnapshotInput, type FindLatestQuotaSnapshotInput, type GatewayAccessKeyDeploymentType, type QuotaSnapshotIdInput, type GatewayAccessKeyRow, type GatewayAccessKeyInsert, type GatewayAccessKeyUpdate, type QuotaSnapshotStatusType, type QuotaSnapshotUpsert, type QuotaSnapshotRow, type QuotaSnapshotInsert, type QuotaSnapshotUpdate, } from './ai-gateway.schema.js';
|
|
66
|
+
export { aiConfigModelRef, aiConfigModelUri, aiConfigProviderRef, aiConfigProviderUri, aiConfigRepository, AIConfigRuntimeCapability, aiConfigSupportsRuntimeCapability, buildAIConfigDisconnectPlan, buildAIConfigMutationPlan, buildAIConfigProviderStateMap, getAIConfigDefaultBaseUrl, getDefaultAIConfigCredentialId, getAIConfigProviderCatalog, getAIConfigProviderFamilyIds, getAIConfigProviderCapabilities, getAIConfigProviderIdsForBackend, getAIConfigProviderMetadata, createAIConfigCredentialId, normalizeAIConfigProviderId, normalizeAIConfigModelId, normalizeAIConfigResourceId, sameAIConfigProviderFamily, selectAIConfigCredential, selectAIConfigCredentialForBackend, type AIConfigModel, type AIConfigRuntimeCapabilityType, type AIConfigBackendCredentialSelection, type AIConfigCredentialSelection, type AIConfigDisconnectPlan, type AIConfigMutationPlan, type AIConfigProviderCatalogEntry, type AIConfigProviderState, type AIConfigUpdate, type BuildAIConfigProviderStateMapOptions, } from './ai-config/index.js';
|
|
67
|
+
export { applySolidComunicaPatches, } from './comunica-patches.js';
|
|
68
|
+
export { PROTOCOL_METADATA_KEY, getProtocolMetadata, withProtocolMetadata, withoutProtocolProjectionKeys, type ProtocolMetadataRecord, } from './protocol-metadata.js';
|
|
69
|
+
export { aiModelDescriptor, aiProviderDescriptor, approvalDescriptor, automationRuleDescriptor, captureCandidateDescriptor, captureEventDescriptor, chatDescriptor, chatProjectContextDescriptor, chatProjectMemoryDescriptor, conversationShareDescriptor, contactDescriptor, credentialDescriptor, createPodModelDescriptorRegistry, createPodSchema, createPodStorage, definePodModelDescriptor, deliveryDescriptor, evidenceDescriptor, gatewayAccessKeyDescriptor, ideaDescriptor, inputRequestDescriptor, issueDescriptor, messageDescriptor, officialPodModelDescriptors, podSchema, quotaSnapshotDescriptor, reportDescriptor, runDescriptor, runStepDescriptor, scheduleDescriptor, sessionDescriptor, taskDescriptor, threadDescriptor, type PodModelDescriptor, type PodModelDescriptorSource, type PodModelDescriptorTrustLevel, type PodModelDescriptorWithFields, type PodModelFieldDescriptor, type PodModelFieldReference, type PodModelFieldType, type PodModelMergePolicy, type PodSchemaClassEntry, type PodSchemaPredicateEntry, type PodSchemaSearchEntry, type PodStorageCommitResult, type PodStorageMutationPlan, type PodStorageValidationResult, } from './pod-storage-descriptor.js';
|
|
70
|
+
export { createResourceRepositoryDescriptor, createRepositoryDescriptor, definePodRepository, initSolidResources, initSolidTables, type AnyPodResource, type AnyPodTable, type PodRepositoryDescriptor, type PodResourceRepositoryOptions, type RepositoryCacheOptions, type RepositoryInvalidations, type RepositoryScope, type SolidDatabase, } from './repository.js';
|
|
71
|
+
export { importJobSchema } from './import/index.js';
|
|
72
72
|
export { eq, ne, and, or, drizzle } from '@undefineds.co/drizzle-solid';
|
|
73
|
-
export { solidResources, solidSchema } from './schema';
|
|
74
|
-
export * from './discovery';
|
|
73
|
+
export { solidResources, solidSchema } from './schema.js';
|
|
74
|
+
export * from './discovery/index.js';
|
|
@@ -95,7 +95,7 @@ export { aiGatewayRepository, gatewayAccessKeyResource, gatewayAccessKeyTable, G
|
|
|
95
95
|
export { aiConfigModelRef, aiConfigModelUri, aiConfigProviderRef, aiConfigProviderUri, aiConfigRepository, AIConfigRuntimeCapability, aiConfigSupportsRuntimeCapability, buildAIConfigDisconnectPlan, buildAIConfigMutationPlan, buildAIConfigProviderStateMap, getAIConfigDefaultBaseUrl, getDefaultAIConfigCredentialId, getAIConfigProviderCatalog, getAIConfigProviderFamilyIds, getAIConfigProviderCapabilities, getAIConfigProviderIdsForBackend, getAIConfigProviderMetadata, createAIConfigCredentialId, normalizeAIConfigProviderId, normalizeAIConfigModelId, normalizeAIConfigResourceId, sameAIConfigProviderFamily, selectAIConfigCredential, selectAIConfigCredentialForBackend, } from './ai-config/index.js';
|
|
96
96
|
export { applySolidComunicaPatches, } from './comunica-patches.js';
|
|
97
97
|
export { PROTOCOL_METADATA_KEY, getProtocolMetadata, withProtocolMetadata, withoutProtocolProjectionKeys, } from './protocol-metadata.js';
|
|
98
|
-
export { approvalDescriptor, automationRuleDescriptor, captureCandidateDescriptor, captureEventDescriptor, chatDescriptor, chatProjectContextDescriptor, chatProjectMemoryDescriptor, conversationShareDescriptor, contactDescriptor, credentialDescriptor, createPodModelDescriptorRegistry, createPodSchema, createPodStorage, deliveryDescriptor, evidenceDescriptor, gatewayAccessKeyDescriptor, ideaDescriptor, inputRequestDescriptor, issueDescriptor, messageDescriptor, officialPodModelDescriptors, podSchema, quotaSnapshotDescriptor, reportDescriptor, runDescriptor, runStepDescriptor, scheduleDescriptor, sessionDescriptor, taskDescriptor, threadDescriptor, } from './pod-storage-descriptor.js';
|
|
98
|
+
export { aiModelDescriptor, aiProviderDescriptor, approvalDescriptor, automationRuleDescriptor, captureCandidateDescriptor, captureEventDescriptor, chatDescriptor, chatProjectContextDescriptor, chatProjectMemoryDescriptor, conversationShareDescriptor, contactDescriptor, credentialDescriptor, createPodModelDescriptorRegistry, createPodSchema, createPodStorage, definePodModelDescriptor, deliveryDescriptor, evidenceDescriptor, gatewayAccessKeyDescriptor, ideaDescriptor, inputRequestDescriptor, issueDescriptor, messageDescriptor, officialPodModelDescriptors, podSchema, quotaSnapshotDescriptor, reportDescriptor, runDescriptor, runStepDescriptor, scheduleDescriptor, sessionDescriptor, taskDescriptor, threadDescriptor, } from './pod-storage-descriptor.js';
|
|
99
99
|
export { createResourceRepositoryDescriptor, createRepositoryDescriptor, definePodRepository, initSolidResources, initSolidTables, } from './repository.js';
|
|
100
100
|
// Import Job - 导入任务
|
|
101
101
|
export { importJobSchema } from './import/index.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type ControlRequestClaimDatabase, type ControlRequestClaimStatus } from './control-request.repository';
|
|
2
|
-
import { inputRequestResource, type InputRequestRow, type InputRequestUpdate } from './input-request.schema';
|
|
1
|
+
import { type ControlRequestClaimDatabase, type ControlRequestClaimStatus } from './control-request.repository.js';
|
|
2
|
+
import { inputRequestResource, type InputRequestRow, type InputRequestUpdate } from './input-request.schema.js';
|
|
3
3
|
export type InputRequestClaimStatus = ControlRequestClaimStatus;
|
|
4
4
|
export interface InputRequestClaimRequest {
|
|
5
5
|
/** Full InputRequest IRI. Subscribe/watch envelopes should pass as:object. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { knowledgeFolderSchema, type KnowledgeFolderScope } from "./knowledge-folder.schema";
|
|
1
|
+
export { knowledgeFolderSchema, type KnowledgeFolderScope } from "./knowledge-folder.schema.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type MessageRoleType, type MessageStatusType } from './message.schema';
|
|
1
|
+
import { type MessageRoleType, type MessageStatusType } from './message.schema.js';
|
|
2
2
|
export interface MessageListWhere extends Record<string, unknown> {
|
|
3
3
|
parent?: string | null;
|
|
4
4
|
chat?: string | null;
|