@taskforcehq/taskforce 0.3.328 → 0.3.330
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Taskforce.module.css +523 -79
- package/dist/TaskforceCore.js +237 -230
- package/dist/annotatedAttachments/AnnotatedAttachmentSessionStore.js +1 -1
- package/dist/cli.js +34 -0
- package/dist/cliCloudTargetGuard.d.ts +5 -0
- package/dist/cliCloudTargetGuard.js +11 -0
- package/dist/components/features/AiProfilesModule.js +3 -5
- package/dist/components/features/AnnotatedAttachmentWorkspace.js +24 -8
- package/dist/components/features/TaskSettings.d.ts +12 -1
- package/dist/components/features/TaskSettings.js +217 -54
- package/dist/components/features/TaskforceAgentsModule.d.ts +1 -2
- package/dist/components/features/TaskforceAgentsModule.js +586 -116
- package/dist/components/features/agentCapabilities/AgentCapabilitiesPrototype.d.ts +1 -1
- package/dist/components/features/agentConnections/AgentConnectionControl.d.ts +15 -0
- package/dist/components/features/agentConnections/AgentConnectionControl.js +125 -0
- package/dist/components/features/agentConnections/ModelConnectionsPanel.d.ts +18 -0
- package/dist/components/features/agentConnections/ModelConnectionsPanel.js +393 -0
- package/dist/components/features/agentConnections/modelConnectionsApi.d.ts +65 -0
- package/dist/components/features/agentConnections/modelConnectionsApi.js +129 -0
- package/dist/components/features/planning/PlanningModule.js +2 -5
- package/dist/components/features/planning/PlanningTaskOrderList.d.ts +1 -1
- package/dist/components/features/planning/PlanningTaskOrderList.js +17 -6
- package/dist/components/features/planning/planningTaskArrangement.d.ts +1 -0
- package/dist/components/features/planning/planningTaskArrangement.js +5 -5
- package/dist/components/features/taskforceAgentAssignments/AgentBehaviorAssignments.js +15 -24
- package/dist/components/features/taskforceAgentEditorModel.d.ts +2 -1
- package/dist/components/features/taskforceAgentEditorModel.js +5 -1
- package/dist/components/features/workflowManager/workflowManagerApi.d.ts +1 -1
- package/dist/components/features/workflowManager/workflowManagerApi.js +3 -0
- package/dist/components/task/TaskCard.d.ts +5 -0
- package/dist/components/task/TaskCard.js +65 -10
- package/dist/components/task/TaskImageReviews.js +14 -5
- package/dist/components/task/TaskKanban.d.ts +6 -1
- package/dist/components/task/TaskKanban.js +152 -6
- package/dist/components/task/TaskList.d.ts +5 -0
- package/dist/components/task/TaskList.js +3 -3
- package/dist/components/task/TaskWorkflowAssignmentField.js +68 -10
- package/dist/components/ui/PasswordInput.d.ts +6 -0
- package/dist/components/ui/PasswordInput.js +11 -0
- package/dist/components/ui/TopNoticeLayer.js +1 -1
- package/dist/components/views/AppShellHeader.js +32 -11
- package/dist/components/views/PlanComparisonPage.js +12 -0
- package/dist/components/views/StandaloneLayout.js +32 -55
- package/dist/components/views/WidgetView.js +3 -3
- package/dist/components/views/panels/PlanningDrawer.js +5 -12
- package/dist/components/views/standalone/modals/AccountSettingsModal.js +26 -17
- package/dist/components/views/standalone/modals/SyncStatusModal.d.ts +4 -3
- package/dist/components/views/standalone/modals/SyncStatusModal.js +33 -38
- package/dist/config/envSchema.js +60 -1
- package/dist/config/localServiceRuntimeContract.d.ts +13 -0
- package/dist/config/localServiceRuntimeContract.js +135 -0
- package/dist/core/AiProfileService.js +46 -8
- package/dist/core/DeletedTaskLifecycleService.d.ts +1 -0
- package/dist/core/DeletedTaskLifecycleService.js +37 -6
- package/dist/core/McpTokenService.d.ts +23 -1
- package/dist/core/McpTokenService.js +93 -10
- package/dist/core/TaskAttachmentLinksDurableMutationService.d.ts +3 -2
- package/dist/core/TaskAttachmentLinksDurableMutationService.js +33 -9
- package/dist/core/TaskChecklistCommandService.d.ts +27 -0
- package/dist/core/TaskChecklistCommandService.js +83 -5
- package/dist/core/TaskLifecycleCommandService.d.ts +3 -1
- package/dist/core/TaskLifecycleCommandService.js +6 -2
- package/dist/core/Taskforce.d.ts +94 -2
- package/dist/core/Taskforce.js +760 -36
- package/dist/core/types.d.ts +14 -0
- package/dist/documentReviews/commandService.d.ts +2 -1
- package/dist/documentReviews/commandService.js +6 -3
- package/dist/hooks/sync/orchestratorShared.d.ts +1 -0
- package/dist/hooks/sync/orchestratorShared.js +2 -0
- package/dist/hooks/sync/useDurableLocalOutboxDrain.d.ts +1 -1
- package/dist/hooks/sync/useDurableTaskCreateMutation.js +1 -1
- package/dist/hooks/sync/useDurableTaskMetadataMutation.d.ts +1 -0
- package/dist/hooks/sync/useDurableTaskMetadataMutation.js +1 -0
- package/dist/hooks/sync/useDurableTaskStatusMutation.d.ts +1 -0
- package/dist/hooks/sync/useLocalSyncCoordinatorSnapshot.d.ts +3 -0
- package/dist/hooks/sync/useLocalSyncCoordinatorSnapshot.js +85 -9
- package/dist/hooks/sync/useSyncStatusControls.d.ts +4 -1
- package/dist/hooks/sync/useSyncStatusControls.js +47 -11
- package/dist/hooks/tasks/taskHttpMutation.js +1 -0
- package/dist/hooks/tasks/useCloudTaskSearch.d.ts +12 -0
- package/dist/hooks/tasks/useCloudTaskSearch.js +71 -0
- package/dist/hooks/tasks/useTaskDescriptionImageDraftRecovery.d.ts +16 -0
- package/dist/hooks/tasks/useTaskDescriptionImageDraftRecovery.js +197 -0
- package/dist/hooks/tasks/useTaskEditorNavigation.d.ts +16 -3
- package/dist/hooks/tasks/useTaskEditorNavigation.js +72 -13
- package/dist/hooks/tasks/useTaskFormActions.d.ts +6 -0
- package/dist/hooks/tasks/useTaskFormActions.js +65 -12
- package/dist/hooks/ui/useSettingsModel.d.ts +24 -2
- package/dist/hooks/ui/useSettingsModel.js +13 -2
- package/dist/hooks/ui/useSettingsPersistence.d.ts +12 -1
- package/dist/hooks/ui/useSettingsPersistence.js +74 -47
- package/dist/hooks/useFilterSort.d.ts +7 -3
- package/dist/hooks/useFilterSort.js +15 -5
- package/dist/hooks/useSyncOrchestrator.d.ts +3 -0
- package/dist/hooks/useSyncOrchestrator.js +111 -2
- package/dist/hooks/useTaskData.d.ts +40 -1
- package/dist/hooks/useTaskData.js +240 -9
- package/dist/hooks/useTaskMutations.d.ts +12 -2
- package/dist/hooks/useTaskMutations.js +266 -52
- package/dist/hooks/useTaskforce.d.ts +39 -9
- package/dist/hooks/useTaskforce.js +359 -40
- package/dist/hooks/useUiNotice.d.ts +4 -0
- package/dist/hooks/useUiNotice.js +4 -0
- package/dist/mcp/adminWorkspaceRegistrar.js +3 -3
- package/dist/mcp/clientRegistry.d.ts +2 -2
- package/dist/mcp/clientRegistry.js +1 -1
- package/dist/mcp/documentAssetRegistrar.js +53 -41
- package/dist/mcp/documentHelpers.d.ts +1 -0
- package/dist/mcp/documentHelpers.js +7 -3
- package/dist/mcp/durableTaskMutationRouter.d.ts +4 -1
- package/dist/mcp/durableTaskMutationRouter.js +10 -0
- package/dist/mcp/durableTaskRelationshipMutationRouter.js +4 -0
- package/dist/mcp/httpProtocolRouting.d.ts +10 -0
- package/dist/mcp/httpProtocolRouting.js +19 -0
- package/dist/mcp/localCliHealth.d.ts +2 -2
- package/dist/mcp/localCliHealth.js +2 -2
- package/dist/mcp/localServiceProxy.d.ts +1 -0
- package/dist/mcp/localServiceProxy.js +530 -68
- package/dist/mcp/planningAttachmentCommandAdapter.d.ts +3 -1
- package/dist/mcp/planningAttachmentCommandAdapter.js +20 -2
- package/dist/mcp/runtime.d.ts +54 -79
- package/dist/mcp/runtime.js +556 -139
- package/dist/mcp/taskPlanningRegistrar.js +64 -42
- package/dist/mcp/toolCallCompatibility.js +38 -1
- package/dist/mcp/toolCatalog.d.ts +1 -0
- package/dist/mcp/toolProfiles.d.ts +2 -0
- package/dist/mcp/toolProfiles.js +10 -0
- package/dist/mcp/toolRegistry.d.ts +1 -0
- package/dist/mcp/toolRegistry.js +1 -0
- package/dist/mcp/workflowExecutionRegistrar.js +4 -4
- package/dist/migrations/taskSchemaMigrations.d.ts +5 -0
- package/dist/migrations/taskSchemaMigrations.js +427 -0
- package/dist/runtime/appGateDefinitions.d.ts +30 -6
- package/dist/runtime/appGateDefinitions.js +6 -6
- package/dist/runtime/appGates.d.ts +13 -13
- package/dist/runtime/appGates.js +36 -13
- package/dist/runtime/nodeAppGates.d.ts +8 -0
- package/dist/runtime/nodeAppGates.js +27 -0
- package/dist/server/cloudCollectionRead.d.ts +1 -1
- package/dist/server/cloudCollectionRead.js +2 -2
- package/dist/server/index.d.ts +6 -0
- package/dist/server/index.js +123 -14
- package/dist/server/localDatabaseIdentity.js +4 -1
- package/dist/server/localServiceLease.d.ts +3 -0
- package/dist/server/localServiceLease.js +11 -2
- package/dist/server/localServiceSessions.d.ts +14 -17
- package/dist/server/localServiceSessions.js +308 -94
- package/dist/server/localWorkspaceSyncServerRuntime.js +12 -7
- package/dist/server/rateLimit.d.ts +1 -0
- package/dist/server/rateLimit.js +4 -0
- package/dist/server/realtimeSyncWs.js +36 -12
- package/dist/server/routes/admin.d.ts +4 -0
- package/dist/server/routes/admin.js +113 -3
- package/dist/server/routes/agentRoles.js +3 -2
- package/dist/server/routes/agentSkills.js +3 -2
- package/dist/server/routes/agents.d.ts +7 -0
- package/dist/server/routes/agents.js +394 -39
- package/dist/server/routes/annotatedAttachments.js +3 -2
- package/dist/server/routes/auth.js +3 -1
- package/dist/server/routes/billing.js +5 -1
- package/dist/server/routes/durableTaskHttpRouters.d.ts +11 -2
- package/dist/server/routes/executorPhaseAApprovals.d.ts +19 -0
- package/dist/server/routes/executorPhaseAApprovals.js +140 -0
- package/dist/server/routes/executorPhaseAIssuerRedemptions.d.ts +11 -0
- package/dist/server/routes/executorPhaseAIssuerRedemptions.js +24 -0
- package/dist/server/routes/githubReviewEvidence.d.ts +19 -0
- package/dist/server/routes/githubReviewEvidence.js +116 -0
- package/dist/server/routes/localService.d.ts +15 -4
- package/dist/server/routes/localService.js +138 -40
- package/dist/server/routes/modelConnections.d.ts +24 -0
- package/dist/server/routes/modelConnections.js +205 -0
- package/dist/server/routes/primitives.d.ts +2 -0
- package/dist/server/routes/shared.d.ts +19 -0
- package/dist/server/routes/shared.js +95 -19
- package/dist/server/routes/sync.js +1 -0
- package/dist/server/routes/syncAuxRoutes.js +9 -2
- package/dist/server/routes/syncPullApplyRoutes.js +23 -4
- package/dist/server/routes/syncPushRoutes.d.ts +1 -0
- package/dist/server/routes/syncPushRoutes.js +1 -0
- package/dist/server/routes/syncV3FeedRoutes.js +27 -16
- package/dist/server/routes/syncV3LocalCaptureRoutes.js +28 -2
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.d.ts +1 -0
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.js +26 -0
- package/dist/server/routes/syncV3OperationRoutes.js +45 -9
- package/dist/server/routes/tasks.js +124 -13
- package/dist/server/routes/workflows.js +9 -1
- package/dist/server/routes/workspaces.js +43 -1
- package/dist/server/routes.js +59 -0
- package/dist/server/workspaceDeletionAdmission.d.ts +23 -0
- package/dist/server/workspaceDeletionAdmission.js +50 -0
- package/dist/service/localServiceCli.js +16 -0
- package/dist/service/localServiceClientLifecycle.js +36 -10
- package/dist/services/codexAppServerModelGateway.d.ts +161 -0
- package/dist/services/codexAppServerModelGateway.js +663 -0
- package/dist/services/codexDeviceCodeLoginManager.d.ts +39 -0
- package/dist/services/codexDeviceCodeLoginManager.js +265 -0
- package/dist/services/codexModelProviderConnectionLifecycle.d.ts +8 -0
- package/dist/services/codexModelProviderConnectionLifecycle.js +73 -0
- package/dist/services/executorPhaseAApprovalRuntime.d.ts +14 -0
- package/dist/services/executorPhaseAApprovalRuntime.js +24 -0
- package/dist/services/executorPhaseAApprovalService.d.ts +40 -0
- package/dist/services/executorPhaseAApprovalService.js +609 -0
- package/dist/services/executorPhaseADriftEvaluator.d.ts +78 -0
- package/dist/services/executorPhaseADriftEvaluator.js +93 -0
- package/dist/services/executorPhaseAIssuerCore.d.ts +126 -0
- package/dist/services/executorPhaseAIssuerCore.js +295 -0
- package/dist/services/executorPhaseAIssuerRedemptionService.d.ts +34 -0
- package/dist/services/executorPhaseAIssuerRedemptionService.js +158 -0
- package/dist/services/githubReviewEvidenceRuntime.d.ts +14 -0
- package/dist/services/githubReviewEvidenceRuntime.js +30 -0
- package/dist/services/githubReviewEvidenceService.d.ts +93 -0
- package/dist/services/githubReviewEvidenceService.js +336 -0
- package/dist/services/modelGateway.d.ts +7 -0
- package/dist/services/modelProviderConnectionService.d.ts +71 -0
- package/dist/services/modelProviderConnectionService.js +279 -0
- package/dist/services/modelProviderCredentialHome.d.ts +32 -0
- package/dist/services/modelProviderCredentialHome.js +271 -0
- package/dist/services/ownerScopedModelConnectionGateway.d.ts +12 -0
- package/dist/services/ownerScopedModelConnectionGateway.js +30 -0
- package/dist/services/taskforceAgentConnectionBindingService.d.ts +66 -0
- package/dist/services/taskforceAgentConnectionBindingService.js +185 -0
- package/dist/services/taskforceAgentMcpBridge.d.ts +8 -2
- package/dist/services/taskforceAgentMcpBridge.js +30 -27
- package/dist/shared/adminEdgeProxy.d.ts +5 -0
- package/dist/shared/adminEdgeProxy.js +94 -0
- package/dist/shared/adminProxySessionCookies.d.ts +16 -0
- package/dist/shared/adminProxySessionCookies.js +86 -0
- package/dist/shared/aiProfileColors.d.ts +31 -1
- package/dist/shared/aiProfileColors.js +14 -6
- package/dist/shared/executorPhaseAApprovalGoldenVector.json +269 -0
- package/dist/shared/executorPhaseAApprovalReceipt.d.ts +112 -0
- package/dist/shared/executorPhaseAApprovalReceipt.js +58 -0
- package/dist/shared/executorPhaseAApprovalTrustPolicy.json +10 -0
- package/dist/shared/executorPhaseADriftContracts.d.ts +37 -0
- package/dist/shared/executorPhaseADriftContracts.js +63 -0
- package/dist/shared/executorPhaseAIssuerContracts.d.ts +75 -0
- package/dist/shared/executorPhaseAIssuerContracts.js +90 -0
- package/dist/shared/executorPhaseARunAuthorization.d.ts +120 -0
- package/dist/shared/executorPhaseARunAuthorization.js +232 -0
- package/dist/shared/executorPhaseASchemaValidation.d.ts +7 -0
- package/dist/shared/executorPhaseASchemaValidation.js +53 -0
- package/dist/shared/executorPhaseASchemas/approval-receipt.schema.json +106 -0
- package/dist/shared/executorPhaseASchemas/drift-attestation.schema.json +54 -0
- package/dist/shared/executorPhaseASchemas/drift-request.schema.json +47 -0
- package/dist/shared/executorPhaseASchemas/foundation-manifest.schema.json +29 -0
- package/dist/shared/executorPhaseASchemas/issuer-audit-record.schema.json +24 -0
- package/dist/shared/executorPhaseASchemas/issuer-proof.schema.json +43 -0
- package/dist/shared/executorPhaseASchemas/issuer-redemption-request.schema.json +18 -0
- package/dist/shared/executorPhaseASchemas/issuer-redemption-response.schema.json +39 -0
- package/dist/shared/executorPhaseASchemas/logical-envelope.schema.json +149 -0
- package/dist/shared/executorPhaseASchemas/preflight-report.schema.json +216 -0
- package/dist/shared/executorPhaseASchemas/run-capability.schema.json +111 -0
- package/dist/shared/executorPhaseASchemas/sender-proof.schema.json +37 -0
- package/dist/shared/executorPhaseASchemas/workload-grant.schema.json +68 -0
- package/dist/shared/executorPhaseASchemas/workload-jwt-claims.schema.json +67 -0
- package/dist/shared/executorPhaseATiming.d.ts +1 -0
- package/dist/shared/executorPhaseATiming.js +1 -0
- package/dist/shared/planningIdentity.js +1 -1
- package/dist/shared/productLogoKeys.d.ts +2 -0
- package/dist/shared/productLogoKeys.js +18 -0
- package/dist/shared/taskforceAgentDefinition.d.ts +0 -1
- package/dist/shared/taskforceAgentDefinition.js +6 -3
- package/dist/shared/taskforceAgentModels.d.ts +1 -0
- package/dist/shared/taskforceAgentModels.js +36 -3
- package/dist/shared/userFeatureGrants.d.ts +4 -0
- package/dist/shared/userFeatureGrants.js +7 -0
- package/dist/storage/executorPhaseAApprovalReceiptStore.d.ts +37 -0
- package/dist/storage/executorPhaseAApprovalReceiptStore.js +81 -0
- package/dist/storage/executorPhaseARunAuthorizationStore.d.ts +103 -0
- package/dist/storage/executorPhaseARunAuthorizationStore.js +492 -0
- package/dist/storage/githubReviewEvidenceInstallationStore.d.ts +26 -0
- package/dist/storage/githubReviewEvidenceInstallationStore.js +89 -0
- package/dist/storage/modelProviderConnectionStore.d.ts +99 -0
- package/dist/storage/modelProviderConnectionStore.js +446 -0
- package/dist/storage/postgresAdapter.d.ts +24 -3
- package/dist/storage/postgresAdapter.js +117 -14
- package/dist/storage/postgresWorker.js +22 -5
- package/dist/storage/postgresWorkerProtocol.d.ts +30 -0
- package/dist/storage/postgresWorkerProtocol.js +30 -0
- package/dist/storage/taskforceAgentConnectionBindingStore.d.ts +31 -0
- package/dist/storage/taskforceAgentConnectionBindingStore.js +84 -0
- package/dist/sync/cloudSyncApi.d.ts +4 -1
- package/dist/sync/cloudSyncApi.js +7 -2
- package/dist/sync/contentSyncState.d.ts +1 -1
- package/dist/sync/coordinator/localSyncExecutionPermitStore.d.ts +1 -0
- package/dist/sync/coordinator/localSyncExecutionPermitStore.js +67 -30
- package/dist/sync/coordinator/localWorkspaceSyncPendingV2PushProgress.d.ts +10 -0
- package/dist/sync/coordinator/localWorkspaceSyncPendingV2PushProgress.js +29 -0
- package/dist/sync/coordinator/localWorkspaceSyncRunner.js +6 -2
- package/dist/sync/coordinator/localWorkspaceSyncRunnerState.d.ts +15 -1
- package/dist/sync/coordinator/localWorkspaceSyncRunnerState.js +99 -2
- package/dist/sync/coordinator/workspaceSyncCredentialBroker.d.ts +1 -0
- package/dist/sync/coordinator/workspaceSyncCredentialBroker.js +33 -4
- package/dist/sync/engine/workspaceSyncContentLifecycleAdapter.d.ts +2 -1
- package/dist/sync/engine/workspaceSyncContentVersionStore.d.ts +38 -0
- package/dist/sync/engine/workspaceSyncContentVersionStore.js +50 -1
- package/dist/sync/engine/workspaceSyncEngineBrowserGatewayRemoteServices.js +20 -2
- package/dist/sync/engine/workspaceSyncEngineLifecyclePolicy.js +6 -6
- package/dist/sync/engine/workspaceSyncEngineLocalServices.d.ts +4 -0
- package/dist/sync/engine/workspaceSyncEngineLocalServices.js +11 -0
- package/dist/sync/engine/workspaceSyncEnginePushCompletion.d.ts +14 -0
- package/dist/sync/engine/workspaceSyncEnginePushCompletion.js +84 -0
- package/dist/sync/engine/workspaceSyncEngineRecovery.js +1 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.d.ts +11 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.js +2 -1
- package/dist/sync/engine/workspaceSyncEngineRuntime.d.ts +1 -0
- package/dist/sync/engine/workspaceSyncEngineRuntime.js +1 -0
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.js +31 -4
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.d.ts +3 -1
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.js +134 -43
- package/dist/sync/engine/workspaceSyncEngineServerSnapshotReader.js +6 -0
- package/dist/sync/engine/workspaceSyncEngineTransfers.d.ts +1 -1
- package/dist/sync/engine/workspaceSyncEngineTransfers.js +11 -4
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.d.ts +1 -0
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.js +29 -0
- package/dist/sync/syncApplyHandlers.d.ts +2 -0
- package/dist/sync/syncApplyHandlers.js +10 -1
- package/dist/sync/syncService.d.ts +17 -0
- package/dist/sync/syncService.js +87 -19
- package/dist/sync/taskforceAgentSyncAuthorization.d.ts +16 -0
- package/dist/sync/taskforceAgentSyncAuthorization.js +20 -0
- package/dist/sync/v3/combinedFeedCapability.js +8 -0
- package/dist/sync/v3/durableInitiativeMutationRouter.js +18 -10
- package/dist/sync/v3/durableOperationReplay.d.ts +14 -0
- package/dist/sync/v3/durableOperationReplay.js +18 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.d.ts +2 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.js +14 -1
- package/dist/sync/v3/durableTaskChecklistMutationRouter.d.ts +4 -1
- package/dist/sync/v3/durableTaskChecklistMutationRouter.js +62 -15
- package/dist/sync/v3/durableTaskCommentMutationRouter.js +3 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.d.ts +1 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.js +30 -8
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.d.ts +5 -3
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.js +37 -2
- package/dist/sync/v3/durableTaxonomyMutationRouter.js +5 -0
- package/dist/sync/v3/durableWorkflowRuntimeMutationRouter.d.ts +11 -0
- package/dist/sync/v3/durableWorkflowRuntimeMutationRouter.js +39 -10
- package/dist/sync/v3/durableWorkstreamMutationRouter.js +18 -10
- package/dist/sync/v3/durableWorkstreamTaskOrderMutationRouter.js +16 -5
- package/dist/sync/v3/localOutboxDispatchRuntime.js +2 -2
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.js +47 -7
- package/dist/sync/v3/localTaskChecklistOutboxHandler.js +16 -2
- package/dist/sync/v3/localTaskChecklistOutboxService.d.ts +4 -0
- package/dist/sync/v3/localTaskChecklistOutboxService.js +14 -1
- package/dist/sync/v3/localTaskCreateOutboxService.js +15 -6
- package/dist/sync/v3/localTaskMetadataClient.d.ts +1 -0
- package/dist/sync/v3/localTaskMetadataClient.js +1 -0
- package/dist/sync/v3/localTaskMetadataOutboxHandler.js +5 -1
- package/dist/sync/v3/localTaskMetadataOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskMetadataOutboxService.js +7 -0
- package/dist/sync/v3/localTaskRestoreOutboxService.js +14 -6
- package/dist/sync/v3/localTaskStatusClient.d.ts +1 -0
- package/dist/sync/v3/localTaskStatusClient.js +6 -1
- package/dist/sync/v3/localTaskStatusOutboxService.d.ts +10 -0
- package/dist/sync/v3/localTaskStatusOutboxService.js +272 -24
- package/dist/sync/v3/syncDurabilityStore.d.ts +41 -0
- package/dist/sync/v3/syncDurabilityStore.js +199 -13
- package/dist/sync/v3/taskAttachmentLinksMutationService.d.ts +6 -4
- package/dist/sync/v3/taskAttachmentLinksMutationService.js +19 -10
- package/dist/sync/v3/taskChecklistMutationService.d.ts +15 -2
- package/dist/sync/v3/taskChecklistMutationService.js +48 -1
- package/dist/sync/v3/taskCreateMutationService.d.ts +2 -2
- package/dist/sync/v3/taskCreateMutationService.js +7 -4
- package/dist/sync/v3/taskMetadataMutationService.d.ts +3 -0
- package/dist/sync/v3/taskMetadataMutationService.js +4 -0
- package/dist/sync/v3/taskRestoreMutationService.d.ts +2 -2
- package/dist/sync/v3/taskRestoreMutationService.js +7 -4
- package/dist/sync/v3/taskStatusMutationService.d.ts +31 -1
- package/dist/sync/v3/taskStatusMutationService.js +123 -3
- package/dist/sync/v3/workflowAssignmentSync.d.ts +6 -0
- package/dist/sync/v3/workflowAssignmentSync.js +30 -0
- package/dist/sync/v3/workspaceSyncJournalReader.js +1 -1
- package/dist/sync/v3/workspaceSyncOperationRetentionService.d.ts +16 -0
- package/dist/sync/v3/workspaceSyncOperationRetentionService.js +83 -0
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.js +13 -3
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.d.ts +11 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.js +27 -10
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.d.ts +2 -1
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.js +52 -10
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.js +18 -3
- package/dist/sync/v3/workspaceSyncV3CombinedFeedOrchestrator.js +8 -3
- package/dist/sync/v3/workspaceSyncV3CombinedLocalApply.js +51 -10
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.d.ts +14 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.js +49 -25
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.d.ts +13 -4
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.js +124 -57
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.d.ts +20 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.js +106 -30
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.d.ts +4 -1
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.js +34 -0
- package/dist/sync/v3/workspaceSyncV3CoverageRegistry.js +12 -0
- package/dist/sync/v3/workspaceSyncV3FeedProfile.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.js +23 -10
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.d.ts +3 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.js +64 -13
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.d.ts +9 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.js +26 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.d.ts +15 -5
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.js +50 -14
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.d.ts +2 -1
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.js +11 -3
- package/dist/sync/v3/workspaceSyncV3OperationProtocol.d.ts +5 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.js +55 -9
- package/dist/sync/v3/workspaceSyncV3RepairSnapshotRetentionService.d.ts +17 -0
- package/dist/sync/v3/workspaceSyncV3RepairSnapshotRetentionService.js +64 -0
- package/dist/sync/v3/workspaceSyncV3TaskCommentAudit.js +9 -2
- package/dist/sync/v3/workspaceSyncV3TaskCoverCoverage.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverCoverage.js +37 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverWireContract.d.ts +6 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverWireContract.js +9 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverCoverage.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverCoverage.js +33 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverWireContract.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverWireContract.js +8 -0
- package/dist/sync/workspacePullFeed.js +2 -1
- package/dist/sync/workspaceRepair.d.ts +8 -2
- package/dist/sync/workspaceRepair.js +222 -6
- package/dist/sync/workspaceSyncModel.d.ts +21 -0
- package/dist/sync/workspaceSyncModel.js +35 -7
- package/dist/sync/workspaceSyncState.d.ts +1 -0
- package/dist/sync/workspaceSyncV2SnapshotBuilder.d.ts +6 -0
- package/dist/sync/workspaceSyncV2SnapshotBuilder.js +5 -0
- package/dist/types.d.ts +47 -1
- package/dist/types.js +6 -0
- package/dist/ui/assets/AiIdentityRosterCard-OcSz1PkK.js +1 -0
- package/dist/ui/assets/AiProfilesModule-ByhYW5Xi.js +1 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BTM6nIg_.js +3 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-TzYu7pkG.css +1 -0
- package/dist/ui/assets/{AssetTraySortControl-Kf1pelSy.js → AssetTraySortControl-DabEG8L4.js} +1 -1
- package/dist/ui/assets/{ContextAttachmentManager-B8boOs6Q.js → ContextAttachmentManager-Coa8yVGM.js} +2 -2
- package/dist/ui/assets/{DocumentWorkspace-DXH4XUsB.js → DocumentWorkspace-BB0qhdix.js} +1 -1
- package/dist/ui/assets/{EntityActivityTimeline-BtSTq0ON.js → EntityActivityTimeline-CZ8x4UJE.js} +1 -1
- package/dist/ui/assets/PlanningModule-pRPjR7v5.js +1 -0
- package/dist/ui/assets/PlansPage-D86pZSSl.js +1 -0
- package/dist/ui/assets/TaskContextUpload-BVIkU9yT.js +1 -0
- package/dist/ui/assets/TaskSettings-Cv1mNhv_.js +12 -0
- package/dist/ui/assets/TaskforceAgentsModule-b-8R25cJ.css +1 -0
- package/dist/ui/assets/TaskforceAgentsModule-gmH-PD2q.js +24 -0
- package/dist/ui/assets/{WorkflowManagerModule-DWFspC-o.js → WorkflowManagerModule-DbfnHJ-f.js} +1 -1
- package/dist/ui/assets/index-BZ-hdZSk.css +1 -0
- package/dist/ui/assets/index-CTsDBaef.js +7 -0
- package/dist/ui/assets/{vendor-icons-BkFLXavV.js → vendor-icons-Bsq-mcEn.js} +1 -1
- package/dist/ui/branding/logos/letterhead_dark.png +0 -0
- package/dist/ui/branding/logos/letterhead_light.png +0 -0
- package/dist/ui/branding/logos/signature_dark.png +0 -0
- package/dist/ui/branding/logos/signature_light.png +0 -0
- package/dist/ui/index.html +3 -3
- package/dist/utils/aiProfileDefaultLogo.js +16 -48
- package/dist/utils/httpSetCookie.d.ts +1 -0
- package/dist/utils/httpSetCookie.js +4 -1
- package/dist/utils/localRuntimeUrl.d.ts +1 -0
- package/dist/utils/localRuntimeUrl.js +14 -0
- package/dist/utils/productLogoRegistry.d.ts +2 -0
- package/dist/utils/productLogoRegistry.js +36 -0
- package/dist/utils/syncStatusPresentation.d.ts +4 -0
- package/dist/utils/syncStatusPresentation.js +17 -0
- package/dist/utils/taskActivity.d.ts +3 -2
- package/dist/utils/taskActivity.js +19 -2
- package/dist/utils/taskEditorReconciliation.d.ts +40 -0
- package/dist/utils/taskEditorReconciliation.js +217 -0
- package/dist/utils/taskEvents.d.ts +2 -0
- package/dist/utils/taskNormalization.d.ts +1 -0
- package/dist/utils/taskNormalization.js +39 -0
- package/dist/utils/taskSearch.js +2 -2
- package/dist/utils/uiNotice.d.ts +4 -0
- package/dist/utils/workspaceSyncPresentation.d.ts +1 -1
- package/dist/utils/workspaceSyncPresentation.js +23 -17
- package/package.json +36 -6
- package/dist/ui/assets/AiIdentityRosterCard-MZs7lVED.js +0 -1
- package/dist/ui/assets/AiProfilesModule-C3i0LOxe.js +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-CBRZ8rca.css +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-DVZk5Tln.js +0 -3
- package/dist/ui/assets/PlanningModule-BPVyEa-f.js +0 -1
- package/dist/ui/assets/PlansPage-ChqgxALc.js +0 -1
- package/dist/ui/assets/TaskContextUpload-CB3ol0sN.js +0 -1
- package/dist/ui/assets/TaskSettings-g4ECKNOz.js +0 -12
- package/dist/ui/assets/TaskforceAgentsModule-BazdUwxZ.js +0 -21
- package/dist/ui/assets/TaskforceAgentsModule-D6IC0S7Q.css +0 -1
- package/dist/ui/assets/index-BUplSsv_.js +0 -7
- package/dist/ui/assets/index-gz2EXuoK.css +0 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type { ModelProviderConnectionDisplayMetadata, ModelProviderConnectionRecord, ModelProviderConnectionLease, ModelProviderConnectionStore } from '../storage/modelProviderConnectionStore.js';
|
|
2
|
+
import type { ModelProviderCredentialHomeManager } from './modelProviderCredentialHome.js';
|
|
3
|
+
export interface PublicModelProviderConnection {
|
|
4
|
+
id: string;
|
|
5
|
+
providerKey: string;
|
|
6
|
+
authenticationType: string;
|
|
7
|
+
lifecycleStatus: ModelProviderConnectionRecord['lifecycleStatus'];
|
|
8
|
+
displayMetadata: ModelProviderConnectionDisplayMetadata;
|
|
9
|
+
lastVerifiedAt: string | null;
|
|
10
|
+
lastRefreshedAt: string | null;
|
|
11
|
+
failureCode: string | null;
|
|
12
|
+
createdAt: string;
|
|
13
|
+
updatedAt: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ModelProviderConnectionOperationContext {
|
|
16
|
+
connection: ModelProviderConnectionRecord;
|
|
17
|
+
environment: NodeJS.ProcessEnv;
|
|
18
|
+
lease: ModelProviderConnectionLease;
|
|
19
|
+
signal: AbortSignal;
|
|
20
|
+
}
|
|
21
|
+
export type ModelProviderConnectionOperation = (context: ModelProviderConnectionOperationContext) => Promise<{
|
|
22
|
+
displayMetadata?: unknown;
|
|
23
|
+
} | void>;
|
|
24
|
+
export interface ModelProviderConnectionLifecycleHandlers {
|
|
25
|
+
verify?: ModelProviderConnectionOperation;
|
|
26
|
+
refresh?: ModelProviderConnectionOperation;
|
|
27
|
+
disconnect?: ModelProviderConnectionOperation;
|
|
28
|
+
}
|
|
29
|
+
export declare class ModelProviderConnectionService {
|
|
30
|
+
private readonly store;
|
|
31
|
+
private readonly credentialHomes;
|
|
32
|
+
private readonly hasGrant;
|
|
33
|
+
private readonly supportedConnectionTypes;
|
|
34
|
+
private readonly handlers;
|
|
35
|
+
constructor(store: ModelProviderConnectionStore, credentialHomes: ModelProviderCredentialHomeManager, hasGrant: (userId: string) => boolean, handlers?: Array<{
|
|
36
|
+
providerKey: string;
|
|
37
|
+
authenticationType: string;
|
|
38
|
+
lifecycle: ModelProviderConnectionLifecycleHandlers;
|
|
39
|
+
}>, supportedConnectionTypes?: Array<{
|
|
40
|
+
providerKey: string;
|
|
41
|
+
authenticationType: string;
|
|
42
|
+
}>);
|
|
43
|
+
create(input: {
|
|
44
|
+
ownerUserId: string;
|
|
45
|
+
providerKey: string;
|
|
46
|
+
authenticationType: string;
|
|
47
|
+
}): PublicModelProviderConnection;
|
|
48
|
+
list(ownerUserId: string): PublicModelProviderConnection[];
|
|
49
|
+
get(ownerUserId: string, connectionId: string): PublicModelProviderConnection;
|
|
50
|
+
rename(ownerUserId: string, connectionId: string, displayName: unknown): PublicModelProviderConnection;
|
|
51
|
+
verify(ownerUserId: string, connectionId: string): Promise<PublicModelProviderConnection>;
|
|
52
|
+
refresh(ownerUserId: string, connectionId: string): Promise<PublicModelProviderConnection>;
|
|
53
|
+
disconnect(ownerUserId: string, connectionId: string): Promise<PublicModelProviderConnection>;
|
|
54
|
+
cleanup(ownerUserId: string, connectionId: string): Promise<{
|
|
55
|
+
id: string;
|
|
56
|
+
deleted: true;
|
|
57
|
+
}>;
|
|
58
|
+
withConnectionLease<T>(input: {
|
|
59
|
+
ownerUserId: string;
|
|
60
|
+
connectionId: string;
|
|
61
|
+
operation: 'login' | 'verify' | 'refresh' | 'invoke' | 'disconnect';
|
|
62
|
+
requireGrant?: boolean;
|
|
63
|
+
leaseDurationMs?: number;
|
|
64
|
+
}, callback: (context: ModelProviderConnectionOperationContext) => Promise<T>): Promise<T>;
|
|
65
|
+
assertReady(ownerUserId: string, connectionId: string): ModelProviderConnectionRecord;
|
|
66
|
+
private runWithConnectionLease;
|
|
67
|
+
private runOperation;
|
|
68
|
+
private assertGranted;
|
|
69
|
+
private assertOperationAvailable;
|
|
70
|
+
private assertOwner;
|
|
71
|
+
}
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
import { ModelProviderConnectionError } from '../storage/modelProviderConnectionStore.js';
|
|
2
|
+
function publicConnection(record) {
|
|
3
|
+
return {
|
|
4
|
+
id: record.id,
|
|
5
|
+
providerKey: record.providerKey,
|
|
6
|
+
authenticationType: record.authenticationType,
|
|
7
|
+
lifecycleStatus: record.lifecycleStatus,
|
|
8
|
+
displayMetadata: record.displayMetadata,
|
|
9
|
+
lastVerifiedAt: record.lastVerifiedAt,
|
|
10
|
+
lastRefreshedAt: record.lastRefreshedAt,
|
|
11
|
+
failureCode: record.failureCode,
|
|
12
|
+
createdAt: record.createdAt,
|
|
13
|
+
updatedAt: record.updatedAt,
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function handlerKey(providerKey, authenticationType) {
|
|
17
|
+
return `${providerKey}\0${authenticationType}`;
|
|
18
|
+
}
|
|
19
|
+
const RECONNECT_REQUIRED_ERROR_CODES = new Set([
|
|
20
|
+
'MODEL_CONNECTION_ACCOUNT_UNAVAILABLE',
|
|
21
|
+
'MODEL_CONNECTION_PROVIDER_FAILURE',
|
|
22
|
+
]);
|
|
23
|
+
export class ModelProviderConnectionService {
|
|
24
|
+
store;
|
|
25
|
+
credentialHomes;
|
|
26
|
+
hasGrant;
|
|
27
|
+
supportedConnectionTypes;
|
|
28
|
+
handlers = new Map();
|
|
29
|
+
constructor(store, credentialHomes, hasGrant, handlers = [], supportedConnectionTypes = [{ providerKey: 'openai', authenticationType: 'chatgpt_device_code' }]) {
|
|
30
|
+
this.store = store;
|
|
31
|
+
this.credentialHomes = credentialHomes;
|
|
32
|
+
this.hasGrant = hasGrant;
|
|
33
|
+
this.supportedConnectionTypes = supportedConnectionTypes;
|
|
34
|
+
for (const entry of handlers) {
|
|
35
|
+
this.handlers.set(handlerKey(entry.providerKey, entry.authenticationType), entry.lifecycle);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
create(input) {
|
|
39
|
+
this.assertGranted(input.ownerUserId);
|
|
40
|
+
const key = handlerKey(input.providerKey, input.authenticationType);
|
|
41
|
+
const supported = this.supportedConnectionTypes.some((entry) => handlerKey(entry.providerKey, entry.authenticationType) === key) || this.handlers.has(key);
|
|
42
|
+
if (!supported) {
|
|
43
|
+
throw new ModelProviderConnectionError('This model connection type is not available.', 400, 'MODEL_CONNECTION_TYPE_UNAVAILABLE');
|
|
44
|
+
}
|
|
45
|
+
if (!this.credentialHomes.isConfigured()) {
|
|
46
|
+
throw new ModelProviderConnectionError('Model connection credential storage is unavailable.', 503, 'MODEL_CONNECTION_STORAGE_UNAVAILABLE');
|
|
47
|
+
}
|
|
48
|
+
this.credentialHomes.prepareStorage();
|
|
49
|
+
const connection = this.store.create(input);
|
|
50
|
+
try {
|
|
51
|
+
this.credentialHomes.provision(connection);
|
|
52
|
+
}
|
|
53
|
+
catch (error) {
|
|
54
|
+
this.store.deletePendingOwned(input.ownerUserId, connection.id);
|
|
55
|
+
this.credentialHomes.removeProvisioningFailure(connection.credentialHomeRef);
|
|
56
|
+
throw error;
|
|
57
|
+
}
|
|
58
|
+
return publicConnection(connection);
|
|
59
|
+
}
|
|
60
|
+
list(ownerUserId) {
|
|
61
|
+
this.assertOwner(ownerUserId);
|
|
62
|
+
return this.store.listOwned(ownerUserId).map(publicConnection);
|
|
63
|
+
}
|
|
64
|
+
get(ownerUserId, connectionId) {
|
|
65
|
+
this.assertOwner(ownerUserId);
|
|
66
|
+
return publicConnection(this.store.requireOwned(ownerUserId, connectionId));
|
|
67
|
+
}
|
|
68
|
+
rename(ownerUserId, connectionId, displayName) {
|
|
69
|
+
this.assertOwner(ownerUserId);
|
|
70
|
+
return publicConnection(this.store.renameOwned(ownerUserId, connectionId, displayName));
|
|
71
|
+
}
|
|
72
|
+
async verify(ownerUserId, connectionId) {
|
|
73
|
+
return this.runOperation(ownerUserId, connectionId, 'verify', (context, result) => (this.store.markVerified({
|
|
74
|
+
ownerUserId,
|
|
75
|
+
connectionId,
|
|
76
|
+
leaseToken: context.lease.token,
|
|
77
|
+
displayMetadata: result?.displayMetadata,
|
|
78
|
+
})));
|
|
79
|
+
}
|
|
80
|
+
async refresh(ownerUserId, connectionId) {
|
|
81
|
+
return this.runOperation(ownerUserId, connectionId, 'refresh', (context, result) => (this.store.markRefreshed({
|
|
82
|
+
ownerUserId,
|
|
83
|
+
connectionId,
|
|
84
|
+
leaseToken: context.lease.token,
|
|
85
|
+
displayMetadata: result?.displayMetadata,
|
|
86
|
+
})));
|
|
87
|
+
}
|
|
88
|
+
async disconnect(ownerUserId, connectionId) {
|
|
89
|
+
this.assertOwner(ownerUserId);
|
|
90
|
+
const current = this.store.requireOwned(ownerUserId, connectionId);
|
|
91
|
+
if (current.lifecycleStatus === 'disconnected')
|
|
92
|
+
return publicConnection(current);
|
|
93
|
+
return this.runOperation(ownerUserId, connectionId, 'disconnect', (context) => (this.store.markDisconnected({
|
|
94
|
+
ownerUserId,
|
|
95
|
+
connectionId,
|
|
96
|
+
leaseToken: context.lease.token,
|
|
97
|
+
})), false);
|
|
98
|
+
}
|
|
99
|
+
async cleanup(ownerUserId, connectionId) {
|
|
100
|
+
this.assertOwner(ownerUserId);
|
|
101
|
+
const connection = this.store.requireOwned(ownerUserId, connectionId);
|
|
102
|
+
if (connection.lifecycleStatus !== 'pending'
|
|
103
|
+
&& connection.lifecycleStatus !== 'reconnect_required'
|
|
104
|
+
&& connection.lifecycleStatus !== 'disconnected'
|
|
105
|
+
&& connection.lifecycleStatus !== 'revoked') {
|
|
106
|
+
throw new ModelProviderConnectionError('Disconnect the model connection before removing its credential storage.', 409, 'MODEL_CONNECTION_DISCONNECT_REQUIRED');
|
|
107
|
+
}
|
|
108
|
+
return this.runWithConnectionLease({
|
|
109
|
+
ownerUserId,
|
|
110
|
+
connectionId,
|
|
111
|
+
operation: 'cleanup',
|
|
112
|
+
requireGrant: false,
|
|
113
|
+
}, async ({ connection: leasedConnection, lease }) => {
|
|
114
|
+
this.credentialHomes.removeCredentialHome(leasedConnection.credentialHomeRef);
|
|
115
|
+
if (!this.store.deleteCleanableUnderLease({
|
|
116
|
+
ownerUserId,
|
|
117
|
+
connectionId,
|
|
118
|
+
leaseToken: lease.token,
|
|
119
|
+
})) {
|
|
120
|
+
throw new ModelProviderConnectionError('Model connection cleanup could not be completed.', 409, 'MODEL_CONNECTION_CLEANUP_INCOMPLETE');
|
|
121
|
+
}
|
|
122
|
+
return { id: connectionId, deleted: true };
|
|
123
|
+
}, true);
|
|
124
|
+
}
|
|
125
|
+
async withConnectionLease(input, callback) {
|
|
126
|
+
return this.runWithConnectionLease(input, callback, false);
|
|
127
|
+
}
|
|
128
|
+
assertReady(ownerUserId, connectionId) {
|
|
129
|
+
this.assertGranted(ownerUserId);
|
|
130
|
+
const connection = this.store.requireOwned(ownerUserId, connectionId);
|
|
131
|
+
this.assertOperationAvailable(connection, 'invoke');
|
|
132
|
+
this.credentialHomes.assertStorageReady();
|
|
133
|
+
this.credentialHomes.assertReady(connection.credentialHomeRef, connection);
|
|
134
|
+
return connection;
|
|
135
|
+
}
|
|
136
|
+
async runWithConnectionLease(input, callback, callbackConsumesLease) {
|
|
137
|
+
if (input.requireGrant === false)
|
|
138
|
+
this.assertOwner(input.ownerUserId);
|
|
139
|
+
else
|
|
140
|
+
this.assertGranted(input.ownerUserId);
|
|
141
|
+
this.store.requireOwned(input.ownerUserId, input.connectionId);
|
|
142
|
+
this.credentialHomes.assertStorageReady();
|
|
143
|
+
const leaseDurationMs = Math.min(10 * 60_000, Math.max(3_000, input.leaseDurationMs ?? 120_000));
|
|
144
|
+
const lease = this.store.acquireLease({
|
|
145
|
+
ownerUserId: input.ownerUserId,
|
|
146
|
+
connectionId: input.connectionId,
|
|
147
|
+
operation: input.operation,
|
|
148
|
+
durationMs: leaseDurationMs,
|
|
149
|
+
});
|
|
150
|
+
let leaseCompleted = false;
|
|
151
|
+
const abortController = new AbortController();
|
|
152
|
+
const heartbeat = setInterval(() => {
|
|
153
|
+
try {
|
|
154
|
+
if (!this.store.renewLease(lease, leaseDurationMs))
|
|
155
|
+
abortController.abort();
|
|
156
|
+
}
|
|
157
|
+
catch {
|
|
158
|
+
abortController.abort();
|
|
159
|
+
}
|
|
160
|
+
}, Math.max(1_000, Math.floor(leaseDurationMs / 3)));
|
|
161
|
+
heartbeat.unref?.();
|
|
162
|
+
try {
|
|
163
|
+
const connection = this.store.requireOwnedUnderLease(input.ownerUserId, input.connectionId, lease.token);
|
|
164
|
+
this.assertOperationAvailable(connection, input.operation);
|
|
165
|
+
const homeExists = this.credentialHomes.hasCredentialHome(connection.credentialHomeRef);
|
|
166
|
+
if (input.operation !== 'cleanup') {
|
|
167
|
+
this.credentialHomes.assertReady(connection.credentialHomeRef, connection);
|
|
168
|
+
}
|
|
169
|
+
const result = await callback({
|
|
170
|
+
connection,
|
|
171
|
+
lease,
|
|
172
|
+
signal: abortController.signal,
|
|
173
|
+
environment: homeExists && input.operation !== 'cleanup'
|
|
174
|
+
? this.credentialHomes.buildCodexEnvironment(connection.credentialHomeRef, process.env, connection)
|
|
175
|
+
: {},
|
|
176
|
+
});
|
|
177
|
+
if (input.operation !== 'cleanup') {
|
|
178
|
+
this.credentialHomes.assertReady(connection.credentialHomeRef, connection);
|
|
179
|
+
}
|
|
180
|
+
if (abortController.signal.aborted) {
|
|
181
|
+
throw new ModelProviderConnectionError('Model connection operation lease was lost.', 409, 'MODEL_CONNECTION_LEASE_LOST');
|
|
182
|
+
}
|
|
183
|
+
if (!callbackConsumesLease && !this.store.completeLease(lease)) {
|
|
184
|
+
throw new ModelProviderConnectionError('Model connection operation lease was lost.', 409, 'MODEL_CONNECTION_LEASE_LOST');
|
|
185
|
+
}
|
|
186
|
+
leaseCompleted = true;
|
|
187
|
+
return result;
|
|
188
|
+
}
|
|
189
|
+
finally {
|
|
190
|
+
clearInterval(heartbeat);
|
|
191
|
+
if (!leaseCompleted)
|
|
192
|
+
this.store.releaseLease(lease);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
async runOperation(ownerUserId, connectionId, operation, finalize, requireGrant = true) {
|
|
196
|
+
if (requireGrant)
|
|
197
|
+
this.assertGranted(ownerUserId);
|
|
198
|
+
else
|
|
199
|
+
this.assertOwner(ownerUserId);
|
|
200
|
+
const connection = this.store.requireOwned(ownerUserId, connectionId);
|
|
201
|
+
if (connection.lifecycleStatus === 'revoked' || connection.lifecycleStatus === 'disconnected') {
|
|
202
|
+
throw new ModelProviderConnectionError('Model connection is unavailable.', 409, 'MODEL_CONNECTION_UNAVAILABLE');
|
|
203
|
+
}
|
|
204
|
+
const handler = this.handlers.get(handlerKey(connection.providerKey, connection.authenticationType))?.[operation];
|
|
205
|
+
if (!handler) {
|
|
206
|
+
throw new ModelProviderConnectionError('This model connection operation is not available.', 409, 'MODEL_CONNECTION_OPERATION_UNAVAILABLE');
|
|
207
|
+
}
|
|
208
|
+
try {
|
|
209
|
+
return await this.withConnectionLease({
|
|
210
|
+
ownerUserId,
|
|
211
|
+
connectionId,
|
|
212
|
+
operation,
|
|
213
|
+
requireGrant,
|
|
214
|
+
}, async (context) => {
|
|
215
|
+
try {
|
|
216
|
+
const result = await handler(context);
|
|
217
|
+
return publicConnection(finalize(context, result));
|
|
218
|
+
}
|
|
219
|
+
catch (error) {
|
|
220
|
+
if (!(error instanceof ModelProviderConnectionError)
|
|
221
|
+
|| RECONNECT_REQUIRED_ERROR_CODES.has(error.code)) {
|
|
222
|
+
try {
|
|
223
|
+
this.store.markReconnectRequired({
|
|
224
|
+
ownerUserId,
|
|
225
|
+
connectionId,
|
|
226
|
+
leaseToken: context.lease.token,
|
|
227
|
+
failureCode: error instanceof ModelProviderConnectionError
|
|
228
|
+
? error.code.toLowerCase()
|
|
229
|
+
: 'provider_operation_failed',
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
catch {
|
|
233
|
+
// The lease-loss path remains authoritative.
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
throw error;
|
|
237
|
+
}
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
catch (error) {
|
|
241
|
+
if (error instanceof ModelProviderConnectionError)
|
|
242
|
+
throw error;
|
|
243
|
+
throw new ModelProviderConnectionError('The model provider connection operation failed.', 502, 'MODEL_CONNECTION_PROVIDER_FAILURE');
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
assertGranted(userIdRaw) {
|
|
247
|
+
const userId = this.assertOwner(userIdRaw);
|
|
248
|
+
if (!this.hasGrant(userId)) {
|
|
249
|
+
throw new ModelProviderConnectionError('Subscription-backed model access is not enabled for this account.', 403, 'SUBSCRIPTION_MODEL_ACCESS_REQUIRED');
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
assertOperationAvailable(connection, operation) {
|
|
253
|
+
const status = connection.lifecycleStatus;
|
|
254
|
+
const available = operation === 'login'
|
|
255
|
+
? status === 'pending' || status === 'reconnect_required' || status === 'disconnected'
|
|
256
|
+
: operation === 'invoke'
|
|
257
|
+
? status === 'active'
|
|
258
|
+
: operation === 'cleanup'
|
|
259
|
+
? status === 'pending'
|
|
260
|
+
|| status === 'reconnect_required'
|
|
261
|
+
|| status === 'disconnected'
|
|
262
|
+
|| status === 'revoked'
|
|
263
|
+
: operation === 'verify' || operation === 'refresh'
|
|
264
|
+
? status === 'pending' || status === 'reconnect_required' || status === 'active'
|
|
265
|
+
: operation === 'disconnect'
|
|
266
|
+
? status === 'pending' || status === 'reconnect_required' || status === 'active'
|
|
267
|
+
: false;
|
|
268
|
+
if (!available) {
|
|
269
|
+
throw new ModelProviderConnectionError('Model connection is unavailable.', 409, 'MODEL_CONNECTION_UNAVAILABLE');
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
assertOwner(userIdRaw) {
|
|
273
|
+
const userId = String(userIdRaw || '').trim();
|
|
274
|
+
if (!userId) {
|
|
275
|
+
throw new ModelProviderConnectionError('Authentication is required.', 401, 'AUTH_REQUIRED');
|
|
276
|
+
}
|
|
277
|
+
return userId;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
interface CredentialHomeConnectionType {
|
|
2
|
+
providerKey: string;
|
|
3
|
+
authenticationType: string;
|
|
4
|
+
}
|
|
5
|
+
export declare class ModelProviderCredentialHomeManager {
|
|
6
|
+
private readonly root;
|
|
7
|
+
private readonly homesRoot;
|
|
8
|
+
constructor(rootPath?: string | null | undefined);
|
|
9
|
+
isConfigured(): boolean;
|
|
10
|
+
prepareStorage(): void;
|
|
11
|
+
provision(input: {
|
|
12
|
+
credentialHomeRef: string;
|
|
13
|
+
providerKey: string;
|
|
14
|
+
authenticationType: string;
|
|
15
|
+
}): void;
|
|
16
|
+
assertReady(credentialHomeRef: string, connectionType?: CredentialHomeConnectionType): void;
|
|
17
|
+
assertStorageReady(): void;
|
|
18
|
+
buildCodexEnvironment(credentialHomeRef: string, source?: NodeJS.ProcessEnv, connectionType?: CredentialHomeConnectionType): NodeJS.ProcessEnv;
|
|
19
|
+
/** Internal-only path list for diagnostics redaction. Never serialize this value. */
|
|
20
|
+
credentialPathsForRedaction(credentialHomeRef: string): string[];
|
|
21
|
+
hasCredentialHome(credentialHomeRef: string): boolean;
|
|
22
|
+
removeCredentialHome(credentialHomeRef: string): void;
|
|
23
|
+
removeProvisioningFailure(credentialHomeRef: string): void;
|
|
24
|
+
private resolveHomePath;
|
|
25
|
+
private ensurePrivateDirectory;
|
|
26
|
+
private assertPrivateDirectory;
|
|
27
|
+
private assertPrivateHomeLayout;
|
|
28
|
+
private assertPrivateHomeRoot;
|
|
29
|
+
private assertPrivateFile;
|
|
30
|
+
private writePrivateFile;
|
|
31
|
+
}
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
import fs from 'node:fs';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
import { randomBytes } from 'node:crypto';
|
|
4
|
+
import { parse as parseToml } from '@iarna/toml';
|
|
5
|
+
import { ModelProviderConnectionError } from '../storage/modelProviderConnectionStore.js';
|
|
6
|
+
import { ensureWindowsUserOnlyDirectoryAcl } from '../server/localServiceWindowsAcl.js';
|
|
7
|
+
const CREDENTIAL_HOME_REF_PATTERN = /^home_[A-Za-z0-9_-]{24,64}$/;
|
|
8
|
+
const CODEX_FILE_AUTH_CONFIG = [
|
|
9
|
+
'cli_auth_credentials_store = "file"',
|
|
10
|
+
'forced_login_method = "chatgpt"',
|
|
11
|
+
'',
|
|
12
|
+
].join('\n');
|
|
13
|
+
const PROCESS_ENV_ALLOWLIST = [
|
|
14
|
+
'PATH',
|
|
15
|
+
'SHELL',
|
|
16
|
+
'USER',
|
|
17
|
+
'LOGNAME',
|
|
18
|
+
'LANG',
|
|
19
|
+
'LC_ALL',
|
|
20
|
+
'LC_CTYPE',
|
|
21
|
+
'TERM',
|
|
22
|
+
'COLORTERM',
|
|
23
|
+
'NO_COLOR',
|
|
24
|
+
];
|
|
25
|
+
function isInside(root, candidate) {
|
|
26
|
+
const relative = path.relative(root, candidate);
|
|
27
|
+
return relative !== '..' && !relative.startsWith(`..${path.sep}`) && !path.isAbsolute(relative);
|
|
28
|
+
}
|
|
29
|
+
function storageUnavailable() {
|
|
30
|
+
return new ModelProviderConnectionError('Model connection credential storage is unavailable.', 503, 'MODEL_CONNECTION_STORAGE_UNAVAILABLE');
|
|
31
|
+
}
|
|
32
|
+
export class ModelProviderCredentialHomeManager {
|
|
33
|
+
root;
|
|
34
|
+
homesRoot;
|
|
35
|
+
constructor(rootPath = process.env.TASKFORCE_MODEL_CONNECTION_STORAGE_PATH) {
|
|
36
|
+
const configured = String(rootPath || '').trim();
|
|
37
|
+
if (!configured || !path.isAbsolute(configured)) {
|
|
38
|
+
this.root = '';
|
|
39
|
+
this.homesRoot = '';
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
this.root = path.resolve(configured);
|
|
43
|
+
this.homesRoot = path.join(this.root, 'connections');
|
|
44
|
+
}
|
|
45
|
+
isConfigured() {
|
|
46
|
+
return Boolean(this.root);
|
|
47
|
+
}
|
|
48
|
+
prepareStorage() {
|
|
49
|
+
if (!this.root)
|
|
50
|
+
throw storageUnavailable();
|
|
51
|
+
try {
|
|
52
|
+
this.ensurePrivateDirectory(this.root);
|
|
53
|
+
this.ensurePrivateDirectory(this.homesRoot);
|
|
54
|
+
}
|
|
55
|
+
catch (error) {
|
|
56
|
+
if (error instanceof ModelProviderConnectionError)
|
|
57
|
+
throw error;
|
|
58
|
+
throw storageUnavailable();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
provision(input) {
|
|
62
|
+
const homePath = this.resolveHomePath(input.credentialHomeRef);
|
|
63
|
+
try {
|
|
64
|
+
this.prepareStorage();
|
|
65
|
+
this.ensurePrivateDirectory(homePath);
|
|
66
|
+
this.ensurePrivateDirectory(path.join(homePath, 'tmp'));
|
|
67
|
+
this.ensurePrivateDirectory(path.join(homePath, 'xdg-config'));
|
|
68
|
+
this.ensurePrivateDirectory(path.join(homePath, 'xdg-cache'));
|
|
69
|
+
this.ensurePrivateDirectory(path.join(homePath, 'xdg-data'));
|
|
70
|
+
if (input.providerKey === 'openai' && input.authenticationType === 'chatgpt_device_code') {
|
|
71
|
+
this.writePrivateFile(path.join(homePath, 'config.toml'), CODEX_FILE_AUTH_CONFIG);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
catch (error) {
|
|
75
|
+
if (error instanceof ModelProviderConnectionError)
|
|
76
|
+
throw error;
|
|
77
|
+
throw storageUnavailable();
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
assertReady(credentialHomeRef, connectionType) {
|
|
81
|
+
const homePath = this.resolveHomePath(credentialHomeRef);
|
|
82
|
+
try {
|
|
83
|
+
this.assertPrivateHomeLayout(homePath);
|
|
84
|
+
if (connectionType?.providerKey === 'openai'
|
|
85
|
+
&& connectionType.authenticationType === 'chatgpt_device_code') {
|
|
86
|
+
const configPath = path.join(homePath, 'config.toml');
|
|
87
|
+
this.assertPrivateFile(configPath, true);
|
|
88
|
+
this.assertPrivateFile(path.join(homePath, 'auth.json'), false);
|
|
89
|
+
const config = parseToml(fs.readFileSync(configPath, 'utf8'));
|
|
90
|
+
if (config.cli_auth_credentials_store !== 'file'
|
|
91
|
+
|| config.forced_login_method !== 'chatgpt') {
|
|
92
|
+
throw storageUnavailable();
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
catch (error) {
|
|
97
|
+
if (error instanceof ModelProviderConnectionError)
|
|
98
|
+
throw error;
|
|
99
|
+
throw storageUnavailable();
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
assertStorageReady() {
|
|
103
|
+
if (!this.root)
|
|
104
|
+
throw storageUnavailable();
|
|
105
|
+
try {
|
|
106
|
+
this.assertPrivateDirectory(this.root);
|
|
107
|
+
this.assertPrivateDirectory(this.homesRoot);
|
|
108
|
+
}
|
|
109
|
+
catch (error) {
|
|
110
|
+
if (error instanceof ModelProviderConnectionError)
|
|
111
|
+
throw error;
|
|
112
|
+
throw storageUnavailable();
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
buildCodexEnvironment(credentialHomeRef, source = process.env, connectionType) {
|
|
116
|
+
this.assertReady(credentialHomeRef, connectionType);
|
|
117
|
+
const homePath = this.resolveHomePath(credentialHomeRef);
|
|
118
|
+
const environment = {};
|
|
119
|
+
for (const key of PROCESS_ENV_ALLOWLIST) {
|
|
120
|
+
const value = source[key];
|
|
121
|
+
if (typeof value === 'string' && value)
|
|
122
|
+
environment[key] = value;
|
|
123
|
+
}
|
|
124
|
+
return {
|
|
125
|
+
...environment,
|
|
126
|
+
HOME: homePath,
|
|
127
|
+
CODEX_HOME: this.resolveHomePath(credentialHomeRef),
|
|
128
|
+
XDG_CONFIG_HOME: path.join(homePath, 'xdg-config'),
|
|
129
|
+
XDG_CACHE_HOME: path.join(homePath, 'xdg-cache'),
|
|
130
|
+
XDG_DATA_HOME: path.join(homePath, 'xdg-data'),
|
|
131
|
+
TMPDIR: path.join(homePath, 'tmp'),
|
|
132
|
+
TEMP: path.join(homePath, 'tmp'),
|
|
133
|
+
TMP: path.join(homePath, 'tmp'),
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
/** Internal-only path list for diagnostics redaction. Never serialize this value. */
|
|
137
|
+
credentialPathsForRedaction(credentialHomeRef) {
|
|
138
|
+
return [this.resolveHomePath(credentialHomeRef), this.root];
|
|
139
|
+
}
|
|
140
|
+
hasCredentialHome(credentialHomeRef) {
|
|
141
|
+
const homePath = this.resolveHomePath(credentialHomeRef);
|
|
142
|
+
return fs.existsSync(homePath);
|
|
143
|
+
}
|
|
144
|
+
removeCredentialHome(credentialHomeRef) {
|
|
145
|
+
this.assertStorageReady();
|
|
146
|
+
const homePath = this.resolveHomePath(credentialHomeRef);
|
|
147
|
+
let stat;
|
|
148
|
+
try {
|
|
149
|
+
stat = fs.lstatSync(homePath);
|
|
150
|
+
}
|
|
151
|
+
catch (error) {
|
|
152
|
+
if (error?.code === 'ENOENT')
|
|
153
|
+
return;
|
|
154
|
+
throw storageUnavailable();
|
|
155
|
+
}
|
|
156
|
+
try {
|
|
157
|
+
if (stat.isSymbolicLink()) {
|
|
158
|
+
fs.unlinkSync(homePath);
|
|
159
|
+
return;
|
|
160
|
+
}
|
|
161
|
+
if (!stat.isDirectory())
|
|
162
|
+
throw storageUnavailable();
|
|
163
|
+
this.assertPrivateHomeRoot(homePath);
|
|
164
|
+
fs.rmSync(homePath, { recursive: true, force: false });
|
|
165
|
+
}
|
|
166
|
+
catch {
|
|
167
|
+
throw storageUnavailable();
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
removeProvisioningFailure(credentialHomeRef) {
|
|
171
|
+
const homePath = this.resolveHomePath(credentialHomeRef);
|
|
172
|
+
try {
|
|
173
|
+
const stat = fs.lstatSync(homePath);
|
|
174
|
+
if (stat.isDirectory() && !stat.isSymbolicLink()) {
|
|
175
|
+
fs.rmSync(homePath, { recursive: true, force: false });
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
catch {
|
|
179
|
+
// Best-effort cleanup only; the failed home reference is never reused.
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
resolveHomePath(credentialHomeRefRaw) {
|
|
183
|
+
if (!this.root)
|
|
184
|
+
throw storageUnavailable();
|
|
185
|
+
const credentialHomeRef = String(credentialHomeRefRaw || '').trim();
|
|
186
|
+
if (!CREDENTIAL_HOME_REF_PATTERN.test(credentialHomeRef))
|
|
187
|
+
throw storageUnavailable();
|
|
188
|
+
const candidate = path.resolve(this.homesRoot, credentialHomeRef);
|
|
189
|
+
if (!isInside(this.homesRoot, candidate))
|
|
190
|
+
throw storageUnavailable();
|
|
191
|
+
return candidate;
|
|
192
|
+
}
|
|
193
|
+
ensurePrivateDirectory(directory) {
|
|
194
|
+
fs.mkdirSync(directory, { recursive: true, mode: 0o700 });
|
|
195
|
+
this.assertPrivateDirectory(directory);
|
|
196
|
+
}
|
|
197
|
+
assertPrivateDirectory(directory) {
|
|
198
|
+
const stat = fs.lstatSync(directory);
|
|
199
|
+
if (!stat.isDirectory() || stat.isSymbolicLink())
|
|
200
|
+
throw storageUnavailable();
|
|
201
|
+
if (process.platform === 'win32') {
|
|
202
|
+
ensureWindowsUserOnlyDirectoryAcl(directory);
|
|
203
|
+
return;
|
|
204
|
+
}
|
|
205
|
+
if (typeof process.getuid === 'function' && stat.uid !== process.getuid())
|
|
206
|
+
throw storageUnavailable();
|
|
207
|
+
fs.chmodSync(directory, 0o700);
|
|
208
|
+
if ((fs.statSync(directory).mode & 0o077) !== 0)
|
|
209
|
+
throw storageUnavailable();
|
|
210
|
+
}
|
|
211
|
+
assertPrivateHomeLayout(homePath) {
|
|
212
|
+
this.assertPrivateHomeRoot(homePath);
|
|
213
|
+
for (const directory of [
|
|
214
|
+
path.join(homePath, 'tmp'),
|
|
215
|
+
path.join(homePath, 'xdg-config'),
|
|
216
|
+
path.join(homePath, 'xdg-cache'),
|
|
217
|
+
path.join(homePath, 'xdg-data'),
|
|
218
|
+
]) {
|
|
219
|
+
this.assertPrivateDirectory(directory);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
assertPrivateHomeRoot(homePath) {
|
|
223
|
+
for (const directory of [this.root, this.homesRoot, homePath]) {
|
|
224
|
+
this.assertPrivateDirectory(directory);
|
|
225
|
+
}
|
|
226
|
+
const rootRealPath = fs.realpathSync(this.homesRoot);
|
|
227
|
+
const homeRealPath = fs.realpathSync(homePath);
|
|
228
|
+
if (!isInside(rootRealPath, homeRealPath))
|
|
229
|
+
throw storageUnavailable();
|
|
230
|
+
}
|
|
231
|
+
assertPrivateFile(filePath, required) {
|
|
232
|
+
let stat;
|
|
233
|
+
try {
|
|
234
|
+
stat = fs.lstatSync(filePath);
|
|
235
|
+
}
|
|
236
|
+
catch (error) {
|
|
237
|
+
if (!required && error?.code === 'ENOENT')
|
|
238
|
+
return;
|
|
239
|
+
throw storageUnavailable();
|
|
240
|
+
}
|
|
241
|
+
if (!stat.isFile() || stat.isSymbolicLink() || stat.nlink > 1)
|
|
242
|
+
throw storageUnavailable();
|
|
243
|
+
if (process.platform === 'win32')
|
|
244
|
+
return;
|
|
245
|
+
if (typeof process.getuid === 'function' && stat.uid !== process.getuid())
|
|
246
|
+
throw storageUnavailable();
|
|
247
|
+
fs.chmodSync(filePath, 0o600);
|
|
248
|
+
if ((fs.statSync(filePath).mode & 0o077) !== 0)
|
|
249
|
+
throw storageUnavailable();
|
|
250
|
+
}
|
|
251
|
+
writePrivateFile(filePath, content) {
|
|
252
|
+
const temporaryPath = `${filePath}.${randomBytes(8).toString('hex')}.tmp`;
|
|
253
|
+
try {
|
|
254
|
+
fs.writeFileSync(temporaryPath, content, { encoding: 'utf8', mode: 0o600, flag: 'wx' });
|
|
255
|
+
if (process.platform !== 'win32')
|
|
256
|
+
fs.chmodSync(temporaryPath, 0o600);
|
|
257
|
+
fs.renameSync(temporaryPath, filePath);
|
|
258
|
+
if (process.platform !== 'win32')
|
|
259
|
+
fs.chmodSync(filePath, 0o600);
|
|
260
|
+
}
|
|
261
|
+
finally {
|
|
262
|
+
try {
|
|
263
|
+
if (fs.existsSync(temporaryPath))
|
|
264
|
+
fs.unlinkSync(temporaryPath);
|
|
265
|
+
}
|
|
266
|
+
catch {
|
|
267
|
+
// Preserve the original storage failure.
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ModelGateway, ModelGatewayGenerateInput, ModelGatewayGenerateResult } from './modelGateway.js';
|
|
2
|
+
import type { ModelProviderConnectionOperationContext, ModelProviderConnectionService } from './modelProviderConnectionService.js';
|
|
3
|
+
type ConnectionService = Pick<ModelProviderConnectionService, 'withConnectionLease'>;
|
|
4
|
+
export declare class OwnerScopedModelConnectionGateway implements ModelGateway {
|
|
5
|
+
private readonly connectionService;
|
|
6
|
+
private readonly ownerUserId;
|
|
7
|
+
private readonly connectionId;
|
|
8
|
+
private readonly createGateway;
|
|
9
|
+
constructor(connectionService: ConnectionService, ownerUserId: string, connectionId: string, createGateway: (context: ModelProviderConnectionOperationContext) => ModelGateway);
|
|
10
|
+
generate(input: ModelGatewayGenerateInput): Promise<ModelGatewayGenerateResult>;
|
|
11
|
+
}
|
|
12
|
+
export {};
|