@taskforcehq/taskforce 0.3.305 → 0.3.307
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -2
- package/dist/Taskforce.module.css +603 -107
- package/dist/TaskforceCore.js +216 -43
- package/dist/TaskforceCore.test.js +611 -28
- package/dist/assets/fonts/CourierPrime-Bold.woff2 +0 -0
- package/dist/assets/fonts/CourierPrime-BoldItalic.woff2 +0 -0
- package/dist/assets/fonts/CourierPrime-Italic.woff2 +0 -0
- package/dist/assets/fonts/CourierPrime-Regular.woff2 +0 -0
- package/dist/assets/fonts/Noir_medium.woff2 +0 -0
- package/dist/assets/fonts/Noir_regular.woff2 +0 -0
- package/dist/assets/fonts/RussoOne-Regular.woff2 +0 -0
- package/dist/assets/fonts/SpecialElite-Regular.woff2 +0 -0
- package/dist/compat/workspaceSyncCompat.js +46 -2
- package/dist/compat/workspaceSyncCompat.test.js +38 -1
- package/dist/components/activity/EntityActivityTimeline.d.ts +34 -0
- package/dist/components/activity/EntityActivityTimeline.js +81 -0
- package/dist/components/context/ContextAttachmentManager.d.ts +14 -0
- package/dist/components/context/ContextAttachmentManager.js +561 -0
- package/dist/components/features/AgentsModule.d.ts +14 -1
- package/dist/components/features/AgentsModule.js +366 -18
- package/dist/components/features/AgentsModule.test.js +507 -8
- package/dist/components/features/AnnotatedAttachmentWorkspace.d.ts +3 -1
- package/dist/components/features/AnnotatedAttachmentWorkspace.js +118 -4
- package/dist/components/features/AnnotatedAttachmentWorkspace.test.js +52 -0
- package/dist/components/features/DocumentIndex.d.ts +2 -2
- package/dist/components/features/DocumentIndex.js +3 -4
- package/dist/components/features/DocumentViewer.d.ts +7 -1
- package/dist/components/features/DocumentViewer.js +62 -4
- package/dist/components/features/DocumentWorkspace.d.ts +10 -2
- package/dist/components/features/DocumentWorkspace.js +15 -4
- package/dist/components/features/DocumentWorkspace.test.js +51 -1
- package/dist/components/features/TaskSettings.d.ts +2 -0
- package/dist/components/features/TaskSettings.js +83 -78
- package/dist/components/features/TaskSettings.test.js +171 -82
- package/dist/components/features/documentWorkspaceModel.d.ts +1 -1
- package/dist/components/task/TaskActionHeader.js +11 -5
- package/dist/components/task/TaskActionHeader.test.js +10 -0
- package/dist/components/task/TaskCard.js +24 -29
- package/dist/components/task/TaskCard.test.js +38 -3
- package/dist/components/task/TaskContextUpload.js +4 -526
- package/dist/components/task/TaskContextUpload.test.js +3 -3
- package/dist/components/task/TaskForm.js +61 -116
- package/dist/components/task/TaskForm.test.js +110 -8
- package/dist/components/task/TaskKanban.d.ts +2 -1
- package/dist/components/task/TaskKanban.js +94 -21
- package/dist/components/task/TaskKanban.test.js +36 -0
- package/dist/components/task/TaskList.js +5 -1
- package/dist/components/task/TaskList.test.js +4 -0
- package/dist/components/ui/EditableAvatarButton.d.ts +18 -0
- package/dist/components/ui/EditableAvatarButton.js +18 -0
- package/dist/components/ui/HierarchyActionBadge.d.ts +10 -0
- package/dist/components/ui/HierarchyActionBadge.js +5 -0
- package/dist/components/views/AppShellHeader.d.ts +3 -1
- package/dist/components/views/AppShellHeader.js +27 -11
- package/dist/components/views/AppShellHeader.test.js +18 -1
- package/dist/components/views/PlanComparisonPage.d.ts +9 -1
- package/dist/components/views/PlanComparisonPage.js +78 -14
- package/dist/components/views/PlanComparisonPage.test.js +257 -0
- package/dist/components/views/PlansPage.js +127 -36
- package/dist/components/views/PlansPage.test.js +294 -12
- package/dist/components/views/StandaloneLayout.js +529 -592
- package/dist/components/views/WidgetView.js +10 -8
- package/dist/components/views/panels/PlanningDrawer.d.ts +25 -5
- package/dist/components/views/panels/PlanningDrawer.js +270 -55
- package/dist/components/views/panels/PlanningDrawer.test.d.ts +1 -0
- package/dist/components/views/panels/PlanningDrawer.test.js +529 -0
- package/dist/components/views/planningScope.d.ts +20 -0
- package/dist/components/views/planningScope.js +25 -0
- package/dist/components/views/planningScope.test.d.ts +1 -0
- package/dist/components/views/planningScope.test.js +60 -0
- package/dist/components/views/standalone/modals/AccountHubModal.d.ts +26 -1
- package/dist/components/views/standalone/modals/AccountHubModal.js +76 -2
- package/dist/components/views/standalone/modals/AccountHubModal.test.js +20 -3
- package/dist/components/views/standalone/modals/AvatarImageManagerModal.d.ts +20 -0
- package/dist/components/views/standalone/modals/AvatarImageManagerModal.js +127 -0
- package/dist/components/views/standalone/modals/EditProfileModal.d.ts +2 -9
- package/dist/components/views/standalone/modals/EditProfileModal.js +3 -2
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.d.ts +9 -0
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.js +6 -0
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.test.d.ts +1 -0
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.test.js +24 -0
- package/dist/components/views/standalone/modals/SyncStatusModal.d.ts +2 -1
- package/dist/components/views/standalone/modals/SyncStatusModal.js +2 -2
- package/dist/config/envSchema.js +1 -0
- package/dist/core/AiProfileService.d.ts +46 -2
- package/dist/core/AiProfileService.js +1073 -82
- package/dist/core/AiProfileService.test.js +19 -1
- package/dist/core/AiProfiles.test.js +1249 -44
- package/dist/core/AttachmentLinkService.d.ts +3 -0
- package/dist/core/AttachmentLinkService.js +110 -23
- package/dist/core/AuthIdentityService.d.ts +107 -0
- package/dist/core/AuthIdentityService.js +284 -0
- package/dist/core/AuthTokenService.d.ts +4 -0
- package/dist/core/AuthTokenService.js +34 -6
- package/dist/core/AuthTokenService.test.js +3 -3
- package/dist/core/EntitlementsPolicy.test.js +2 -2
- package/dist/core/GlobalSettingsService.js +127 -6
- package/dist/core/McpTokenService.d.ts +12 -0
- package/dist/core/McpTokenService.js +44 -1
- package/dist/core/PlanEntitlementService.d.ts +23 -2
- package/dist/core/PlanEntitlementService.js +343 -57
- package/dist/core/PlanFeatureCatalog.test.d.ts +1 -0
- package/dist/core/PlanFeatureCatalog.test.js +84 -0
- package/dist/core/PlanVersionPolicy.test.js +35 -2
- package/dist/core/PlanningEntities.test.js +418 -4
- package/dist/core/SignupMonetizationSettings.test.js +199 -27
- package/dist/core/SyncReconciliationService.js +2 -65
- package/dist/core/SystemAdmin.test.js +42 -42
- package/dist/core/TaskActivityService.d.ts +28 -1
- package/dist/core/TaskActivityService.js +227 -46
- package/dist/core/TaskActivitySync.test.d.ts +1 -0
- package/dist/core/TaskActivitySync.test.js +90 -0
- package/dist/core/TaskAttachmentsCanonical.test.js +51 -1
- package/dist/core/TaskAuditTimeline.test.js +96 -0
- package/dist/core/Taskforce.d.ts +415 -40
- package/dist/core/Taskforce.ids.test.js +58 -0
- package/dist/core/Taskforce.js +1543 -266
- package/dist/core/Taskforce.listTasksSlim.test.d.ts +1 -0
- package/dist/core/Taskforce.listTasksSlim.test.js +91 -0
- package/dist/core/Taskforce.mcpAuth.test.js +109 -0
- package/dist/core/UserProfileAvatarDrafts.test.js +30 -3
- package/dist/core/WorkspaceLifecycleService.js +0 -5
- package/dist/core/WorkspacePermissions.test.js +25 -1
- package/dist/core/WorkspacePlanMode.test.js +117 -16
- package/dist/core/shared.d.ts +1 -1
- package/dist/core/shared.js +5 -1
- package/dist/core/types.d.ts +75 -2
- package/dist/hooks/auth/useTaskforceAuthBootstrap.js +28 -2
- package/dist/hooks/bootstrapTimeouts.d.ts +4 -0
- package/dist/hooks/bootstrapTimeouts.js +8 -0
- package/dist/hooks/bootstrapTimeouts.test.d.ts +1 -0
- package/dist/hooks/bootstrapTimeouts.test.js +12 -0
- package/dist/hooks/sync/bootstrap.js +2 -0
- package/dist/hooks/sync/controlPlane.d.ts +37 -0
- package/dist/hooks/sync/controlPlane.js +78 -0
- package/dist/hooks/sync/controlPlane.test.d.ts +1 -0
- package/dist/hooks/sync/controlPlane.test.js +121 -0
- package/dist/hooks/sync/lifecyclePolicy.d.ts +45 -0
- package/dist/hooks/sync/lifecyclePolicy.js +93 -0
- package/dist/hooks/sync/lifecyclePolicy.test.d.ts +1 -0
- package/dist/hooks/sync/lifecyclePolicy.test.js +124 -0
- package/dist/hooks/sync/orchestratorShared.d.ts +13 -4
- package/dist/hooks/sync/orchestratorShared.js +129 -48
- package/dist/hooks/sync/orchestratorShared.test.js +50 -1
- package/dist/hooks/sync/pullLifecycle.d.ts +31 -0
- package/dist/hooks/sync/pullLifecycle.js +24 -0
- package/dist/hooks/sync/pullLifecycle.test.d.ts +1 -0
- package/dist/hooks/sync/pullLifecycle.test.js +80 -0
- package/dist/hooks/sync/recovery.d.ts +16 -2
- package/dist/hooks/sync/recovery.js +179 -53
- package/dist/hooks/sync/recovery.test.d.ts +1 -0
- package/dist/hooks/sync/recovery.test.js +292 -0
- package/dist/hooks/sync/transfers.d.ts +16 -3
- package/dist/hooks/sync/transfers.js +210 -66
- package/dist/hooks/sync/transfers.test.d.ts +1 -0
- package/dist/hooks/sync/transfers.test.js +928 -0
- package/dist/hooks/sync/useRecentSyncEvents.d.ts +21 -0
- package/dist/hooks/sync/useRecentSyncEvents.js +92 -0
- package/dist/hooks/sync/useRecentSyncEvents.test.d.ts +1 -0
- package/dist/hooks/sync/useRecentSyncEvents.test.js +124 -0
- package/dist/hooks/sync/useSyncStatusActions.d.ts +30 -0
- package/dist/hooks/sync/useSyncStatusActions.js +88 -0
- package/dist/hooks/sync/useSyncStatusActions.test.d.ts +1 -0
- package/dist/hooks/sync/useSyncStatusActions.test.js +133 -0
- package/dist/hooks/sync/useSyncStatusControls.d.ts +25 -0
- package/dist/hooks/sync/useSyncStatusControls.js +60 -0
- package/dist/hooks/sync/useSyncStatusControls.test.d.ts +1 -0
- package/dist/hooks/sync/useSyncStatusControls.test.js +88 -0
- package/dist/hooks/useFilterSort.js +13 -13
- package/dist/hooks/useFilterSort.test.js +87 -1
- package/dist/hooks/useSyncOrchestrator.aiProfiles.test.js +12 -0
- package/dist/hooks/useSyncOrchestrator.d.ts +9 -2
- package/dist/hooks/useSyncOrchestrator.js +409 -183
- package/dist/hooks/useSyncOrchestrator.retry-closure.test.js +407 -0
- package/dist/hooks/useTaskData.js +8 -3
- package/dist/hooks/useTaskData.test.js +45 -0
- package/dist/hooks/useTaskforce.d.ts +145 -52
- package/dist/hooks/useTaskforce.js +592 -253
- package/dist/hooks/useTaskforce.runtime-routing.test.d.ts +1 -0
- package/dist/hooks/useTaskforce.runtime-routing.test.js +246 -0
- package/dist/hooks/useTaskforce.sync-behavior.test.js +2468 -201
- package/dist/hooks/useWorkspaceSyncController.d.ts +1 -0
- package/dist/hooks/useWorkspaceSyncController.js +13 -2
- package/dist/hooks/useWorkspaceSyncController.test.js +48 -0
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.d.ts +16 -0
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.js +328 -40
- package/dist/localization/locales/en-US.d.ts +0 -1
- package/dist/localization/locales/en-US.js +0 -1
- package/dist/localization/locales/es-419.js +0 -1
- package/dist/localization/locales/pt-BR.js +0 -1
- package/dist/mcp/canonicalAssetHelpers.d.ts +16 -4
- package/dist/mcp/canonicalAssetHelpers.js +18 -10
- package/dist/mcp/canonicalAssetHelpers.test.d.ts +1 -0
- package/dist/mcp/canonicalAssetHelpers.test.js +67 -0
- package/dist/mcp/clientIntegrations.d.ts +1 -0
- package/dist/mcp/clientIntegrations.js +25 -0
- package/dist/mcp/clientIntegrations.test.js +14 -3
- package/dist/mcp/clientProfileDefaults.js +3 -3
- package/dist/mcp/collaborationRegistrar.js +7 -7
- package/dist/mcp/documentAssetRegistrar.js +116 -10
- package/dist/mcp/runtime.d.ts +3 -0
- package/dist/mcp/runtime.js +1099 -185
- package/dist/mcp/runtime.test.js +1491 -140
- package/dist/mcp/taskAttachmentTypes.d.ts +1 -1
- package/dist/mcp/taskPlanningRegistrar.js +48 -0
- package/dist/mcp/toolRegistry.d.ts +56 -0
- package/dist/mcp/toolRegistry.js +8 -0
- package/dist/mcp/toolRegistry.test.js +4 -0
- package/dist/migrations/taskSchemaMigrations.d.ts +1 -1
- package/dist/migrations/taskSchemaMigrations.js +192 -61
- package/dist/migrations/taskSchemaMigrations.test.js +15 -0
- package/dist/resources/templates/workflow-sources/workflowDocs.mjs +6 -6
- package/dist/resources/templates/workflows/collaborate.yaml +1 -1
- package/dist/resources/templates/workflows/evaluate.yaml +2 -2
- package/dist/resources/templates/workflows/plan.yaml +1 -1
- package/dist/resources/templates/workflows/review.yaml +2 -2
- package/dist/server/aiProfileAvatarAssets.d.ts +49 -0
- package/dist/server/aiProfileAvatarAssets.js +319 -0
- package/dist/server/aiProfileAvatarAssets.test.d.ts +1 -0
- package/dist/server/aiProfileAvatarAssets.test.js +213 -0
- package/dist/server/annotatedAttachmentsRoutes.test.js +69 -10
- package/dist/server/auth/providers/apple.d.ts +33 -0
- package/dist/server/auth/providers/apple.js +82 -0
- package/dist/server/auth/providers/appleClientSecret.d.ts +37 -0
- package/dist/server/auth/providers/appleClientSecret.js +65 -0
- package/dist/server/auth/providers/github.d.ts +26 -0
- package/dist/server/auth/providers/github.js +86 -0
- package/dist/server/auth/providers/google.d.ts +21 -0
- package/dist/server/auth/providers/google.js +56 -0
- package/dist/server/auth/providers/types.d.ts +21 -0
- package/dist/server/auth/providers/types.js +1 -0
- package/dist/server/auth.d.ts +2 -0
- package/dist/server/auth.js +6 -3
- package/dist/server/documentReviewRoutes.test.js +36 -3
- package/dist/server/index.cookieProxy.test.js +1 -0
- package/dist/server/index.d.ts +12 -0
- package/dist/server/index.js +124 -9
- package/dist/server/index.rateLimit.test.js +3 -0
- package/dist/server/index.test.js +111 -3
- package/dist/server/routes/admin.d.ts +3 -0
- package/dist/server/routes/admin.js +459 -28
- package/dist/server/routes/annotatedAttachments.js +51 -0
- package/dist/server/routes/auth.d.ts +26 -2
- package/dist/server/routes/auth.js +1170 -71
- package/dist/server/routes/authSupport.d.ts +5 -1
- package/dist/server/routes/authSupport.js +13 -2
- package/dist/server/routes/billing.js +372 -35
- package/dist/server/routes/billing.test.js +595 -12
- package/dist/server/routes/documents.d.ts +1 -0
- package/dist/server/routes/documents.js +182 -70
- package/dist/server/routes/shared.d.ts +28 -2
- package/dist/server/routes/shared.js +69 -14
- package/dist/server/routes/sync.integration.test.js +658 -39
- package/dist/server/routes/sync.js +74 -608
- package/dist/server/routes/syncAuxRoutes.d.ts +15 -0
- package/dist/server/routes/syncAuxRoutes.js +91 -0
- package/dist/server/routes/syncAuxRoutes.test.d.ts +1 -0
- package/dist/server/routes/syncAuxRoutes.test.js +158 -0
- package/dist/server/routes/syncPullApplyRoutes.d.ts +36 -0
- package/dist/server/routes/syncPullApplyRoutes.js +204 -0
- package/dist/server/routes/syncPushRoutes.d.ts +24 -0
- package/dist/server/routes/syncPushRoutes.js +212 -0
- package/dist/server/routes/syncRouteGuards.d.ts +36 -0
- package/dist/server/routes/syncRouteGuards.js +67 -0
- package/dist/server/routes/syncRouteGuards.test.d.ts +1 -0
- package/dist/server/routes/syncRouteGuards.test.js +94 -0
- package/dist/server/routes/syncRouteTypes.d.ts +13 -0
- package/dist/server/routes/syncRouteTypes.js +1 -0
- package/dist/server/routes/syncSnapshotRoutes.d.ts +66 -0
- package/dist/server/routes/syncSnapshotRoutes.js +182 -0
- package/dist/server/routes/tasks.js +55 -10
- package/dist/server/routes/workspaces.js +36 -5
- package/dist/server/routes.js +147 -11
- package/dist/server/routes.test.js +2704 -183
- package/dist/services/workflowExportSnapshots.test.js +2 -0
- package/dist/shared/aiProfileSeatScope.d.ts +5 -0
- package/dist/shared/aiProfileSeatScope.js +21 -0
- package/dist/shared/aiProfileSurfaceType.d.ts +1 -1
- package/dist/shared/aiProfileSurfaceType.js +10 -8
- package/dist/shared/passwordPolicy.d.ts +13 -0
- package/dist/shared/passwordPolicy.js +84 -0
- package/dist/shared/passwordPolicy.test.d.ts +1 -0
- package/dist/shared/passwordPolicy.test.js +34 -0
- package/dist/storage/objectStorage.d.ts +1 -0
- package/dist/storage/objectStorage.js +2 -1
- package/dist/storage/objectStorageClient.d.ts +1 -0
- package/dist/storage/objectStorageClient.js +41 -8
- package/dist/storage/objectStorageClient.test.js +26 -1
- package/dist/storage/objectStorageConfig.js +3 -1
- package/dist/storage/objectStorageConfig.test.js +13 -1
- package/dist/storage/workspaceAssetStore.d.ts +15 -3
- package/dist/storage/workspaceAssetStore.js +132 -44
- package/dist/storage/workspaceAssetStore.test.js +93 -6
- package/dist/styles/fonts.css +70 -0
- package/dist/sync/collaborationSyncPayload.d.ts +6 -1
- package/dist/sync/collaborationSyncPayload.js +19 -11
- package/dist/sync/collaborationSyncPayload.test.js +14 -1
- package/dist/sync/collaborationSyncState.d.ts +3 -3
- package/dist/sync/collaborationSyncState.js +19 -12
- package/dist/sync/contentSyncPayload.d.ts +5 -1
- package/dist/sync/contentSyncPayload.js +9 -0
- package/dist/sync/contentSyncPayload.test.js +39 -0
- package/dist/sync/contentSyncState.d.ts +9 -9
- package/dist/sync/contentSyncState.js +248 -107
- package/dist/sync/planningSyncPayload.js +5 -0
- package/dist/sync/planningSyncPayload.test.js +24 -0
- package/dist/sync/syncApplyHandlers.d.ts +11 -4
- package/dist/sync/syncApplyHandlers.js +115 -42
- package/dist/sync/syncApplyHandlers.test.js +251 -4
- package/dist/sync/syncFieldSemantics.d.ts +12 -0
- package/dist/sync/syncFieldSemantics.js +55 -0
- package/dist/sync/syncResourceAdapters.d.ts +46 -0
- package/dist/sync/syncResourceAdapters.js +79 -0
- package/dist/sync/syncService.d.ts +6 -0
- package/dist/sync/syncService.js +65 -1
- package/dist/sync/syncService.test.js +96 -3
- package/dist/sync/taskSyncChangeKey.d.ts +2 -0
- package/dist/sync/taskSyncChangeKey.js +143 -0
- package/dist/sync/taskSyncPayload.js +3 -8
- package/dist/sync/workspacePullFeed.d.ts +4 -0
- package/dist/sync/workspacePullFeed.js +132 -72
- package/dist/sync/workspacePullFeed.test.js +92 -0
- package/dist/sync/workspaceRepair.js +5 -2
- package/dist/sync/workspaceSyncModel.d.ts +73 -6
- package/dist/sync/workspaceSyncModel.js +342 -73
- package/dist/sync/workspaceSyncModel.test.js +559 -14
- package/dist/sync/workspaceSyncState.d.ts +17 -0
- package/dist/sync/workspaceSyncState.js +2 -1
- package/dist/sync/workspaceSyncSurface.js +3 -8
- package/dist/types.d.ts +50 -2
- package/dist/ui/assets/AgentsModule-2y82_3DO.js +1 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BTLZZCiQ.js +3 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BVKew-mH.css +1 -0
- package/dist/ui/assets/ContextAttachmentManager-D2epuNnG.js +3 -0
- package/dist/ui/assets/CourierPrime-Bold-BuLj_dpw.woff2 +0 -0
- package/dist/ui/assets/CourierPrime-BoldItalic-BrK2pUkZ.woff2 +0 -0
- package/dist/ui/assets/CourierPrime-Italic-DFUZK5Ey.woff2 +0 -0
- package/dist/ui/assets/CourierPrime-Regular-BsKphzVf.woff2 +0 -0
- package/dist/ui/assets/DocumentWorkspace-D4rJKXzd.css +1 -0
- package/dist/ui/assets/DocumentWorkspace-sVa-3Do6.js +252 -0
- package/dist/ui/assets/EntityActivityTimeline-DyqvvhuF.css +1 -0
- package/dist/ui/assets/EntityActivityTimeline-Zods27y_.js +1 -0
- package/dist/ui/assets/{InitiativesModule-Dhm7M8e7.js → InitiativesModule-D4XseTwW.js} +1 -1
- package/dist/ui/assets/Noir_medium-bxQwKGzB.woff2 +0 -0
- package/dist/ui/assets/Noir_regular-ojf2kxlG.woff2 +0 -0
- package/dist/ui/assets/PlansPage-D5AcbO0L.js +1 -0
- package/dist/ui/assets/PlansPage-Dvqsz5zc.css +1 -0
- package/dist/ui/assets/RussoOne-Regular-Cu_qq_qC.woff2 +0 -0
- package/dist/ui/assets/SpecialElite-Regular-Di6gSvAS.woff2 +0 -0
- package/dist/ui/assets/TaskContextUpload-uC5qx4Bv.js +1 -0
- package/dist/ui/assets/TaskSettings-CqvPAsTv.js +9 -0
- package/dist/ui/assets/{WorkflowsModule-BcS4afRn.js → WorkflowsModule-oOA9bcdK.js} +4 -4
- package/dist/ui/assets/documentReferences-DPZuTgHh.js +1 -0
- package/dist/ui/assets/index-607WPo_X.js +4 -0
- package/dist/ui/assets/index-CYyodXsg.css +1 -0
- package/dist/ui/assets/{vendor-icons-BSUaRwF8.js → vendor-icons-B32hGuF2.js} +1 -1
- package/dist/ui/fonts/CourierPrime-Bold.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-Bold.woff2 +0 -0
- package/dist/ui/fonts/CourierPrime-BoldItalic.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-BoldItalic.woff2 +0 -0
- package/dist/ui/fonts/CourierPrime-Italic.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-Italic.woff2 +0 -0
- package/dist/ui/fonts/CourierPrime-Regular.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-Regular.woff2 +0 -0
- package/dist/ui/fonts/Noir_medium.otf +0 -0
- package/dist/ui/fonts/Noir_medium.woff2 +0 -0
- package/dist/ui/fonts/Noir_regular.otf +0 -0
- package/dist/ui/fonts/Noir_regular.woff2 +0 -0
- package/dist/ui/fonts/RussoOne-Regular.woff2 +0 -0
- package/dist/ui/fonts/SpecialElite-Regular.ttf +0 -0
- package/dist/ui/fonts/SpecialElite-Regular.woff2 +0 -0
- package/dist/ui/index.html +3 -3
- package/dist/ui/product/agent manager.png +0 -0
- package/dist/ui/product/agent_manager_02.png +0 -0
- package/dist/utils/accountProfileSummaryCache.d.ts +5 -0
- package/dist/utils/aiProfileEvents.d.ts +7 -0
- package/dist/utils/aiProfileEvents.js +6 -0
- package/dist/utils/assignees.d.ts +8 -0
- package/dist/utils/assignees.js +10 -1
- package/dist/utils/assignees.test.d.ts +1 -0
- package/dist/utils/assignees.test.js +25 -0
- package/dist/utils/avatarDisplay.d.ts +1 -0
- package/dist/utils/avatarDisplay.js +15 -0
- package/dist/utils/avatarUpload.d.ts +27 -0
- package/dist/utils/avatarUpload.js +132 -0
- package/dist/utils/avatarUpload.test.d.ts +1 -0
- package/dist/utils/avatarUpload.test.js +40 -0
- package/dist/utils/bootstrapTrace.d.ts +7 -0
- package/dist/utils/bootstrapTrace.js +29 -0
- package/dist/utils/commercialLifecyclePresentation.js +3 -0
- package/dist/utils/contextAssetEvents.d.ts +2 -0
- package/dist/utils/contextFiles.d.ts +3 -1
- package/dist/utils/contextFiles.js +2 -1
- package/dist/utils/syncEventDetails.d.ts +3 -0
- package/dist/utils/syncEventDetails.js +64 -0
- package/dist/utils/syncEventDetails.test.d.ts +1 -0
- package/dist/utils/syncEventDetails.test.js +23 -0
- package/dist/utils/syncEventPresentation.d.ts +15 -0
- package/dist/utils/syncEventPresentation.js +129 -0
- package/dist/utils/syncEventPresentation.test.d.ts +1 -0
- package/dist/utils/syncEventPresentation.test.js +64 -0
- package/dist/utils/syncStatusPresentation.d.ts +72 -0
- package/dist/utils/syncStatusPresentation.js +217 -0
- package/dist/utils/syncStatusPresentation.test.d.ts +1 -0
- package/dist/utils/syncStatusPresentation.test.js +164 -0
- package/dist/utils/taskActivity.d.ts +9 -1
- package/dist/utils/taskActivity.js +290 -22
- package/dist/utils/taskActivity.test.js +141 -8
- package/dist/utils/taskSearch.d.ts +22 -0
- package/dist/utils/taskSearch.js +87 -0
- package/dist/utils/taskSearch.test.d.ts +1 -0
- package/dist/utils/taskSearch.test.js +69 -0
- package/dist/utils/taskUtils.js +10 -3
- package/dist/utils/taskUtils.test.d.ts +1 -0
- package/dist/utils/taskUtils.test.js +19 -0
- package/dist/utils/workspaceSyncPresentation.d.ts +4 -0
- package/dist/utils/workspaceSyncPresentation.js +68 -2
- package/dist/utils/workspaceSyncPresentation.test.js +36 -1
- package/package.json +3 -2
- package/scripts/export-sqlite-to-postgres.mjs +7 -9
- package/scripts/run-e2e-realtime.sh +17 -3
- package/scripts/run-smoke.sh +17 -5
- package/scripts/run-soak.sh +17 -5
- package/src/resources/templates/workflow-sources/workflowDocs.mjs +6 -6
- package/src/resources/templates/workflows/collaborate.yaml +1 -1
- package/src/resources/templates/workflows/evaluate.yaml +2 -2
- package/src/resources/templates/workflows/plan.yaml +1 -1
- package/src/resources/templates/workflows/review.yaml +2 -2
- package/dist/ui/assets/AgentsModule-N2MnQBZk.js +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BG6P_GVW.js +0 -3
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BaS2VwIr.css +0 -1
- package/dist/ui/assets/DocumentWorkspace-B3nV_Gc5.css +0 -1
- package/dist/ui/assets/DocumentWorkspace-DRbDMwh8.js +0 -252
- package/dist/ui/assets/PlansPage-C2dd2n1X.css +0 -1
- package/dist/ui/assets/PlansPage-Cq0zXj3I.js +0 -1
- package/dist/ui/assets/RussoOne-Regular-C3BxZIj7.ttf +0 -0
- package/dist/ui/assets/TaskSettings-ln0aF7xc.js +0 -9
- package/dist/ui/assets/index-C2-OXZV7.css +0 -1
- package/dist/ui/assets/index-DcSI5F86.js +0 -6
- package/scripts/migrate-planning-model.ts +0 -233
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IncomingMessage } from 'http';
|
|
2
|
+
import type { WorkspaceAssetStore } from '../../storage/workspaceAssetStore.js';
|
|
3
|
+
import type { SyncAddRoute, SyncResolveRequestAccess, SyncRouteAuthConfig, SyncRouteCore } from './syncRouteTypes.js';
|
|
4
|
+
interface RegisterWorkspaceSyncAuxRoutesArgs {
|
|
5
|
+
addRoute: SyncAddRoute;
|
|
6
|
+
core: SyncRouteCore;
|
|
7
|
+
context: {
|
|
8
|
+
authConfig?: SyncRouteAuthConfig | null;
|
|
9
|
+
};
|
|
10
|
+
resolveRequestAccess: SyncResolveRequestAccess;
|
|
11
|
+
requestWorkspaceId: (req: IncomingMessage) => string | null | undefined;
|
|
12
|
+
workspaceAssetStore: WorkspaceAssetStore | null;
|
|
13
|
+
}
|
|
14
|
+
export declare function registerWorkspaceSyncAuxRoutes({ addRoute, core, context, resolveRequestAccess, requestWorkspaceId, workspaceAssetStore }: RegisterWorkspaceSyncAuxRoutesArgs): void;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { applyWorkspaceRepair } from '../../sync/workspaceRepair.js';
|
|
2
|
+
import { normalizeSyncEventDetails } from '../../utils/syncEventDetails.js';
|
|
3
|
+
import { parseJsonBody } from './primitives.js';
|
|
4
|
+
import { requireAuthenticatedSyncRequest } from './syncRouteGuards.js';
|
|
5
|
+
export function registerWorkspaceSyncAuxRoutes({ addRoute, core, context, resolveRequestAccess, requestWorkspaceId, workspaceAssetStore }) {
|
|
6
|
+
// GET /api/taskforce/sync/events - Query recent sync events (local runtime only)
|
|
7
|
+
addRoute('GET', '/api/taskforce/sync/events', async (req, res) => {
|
|
8
|
+
const authConfig = context.authConfig;
|
|
9
|
+
const access = authConfig?.enabled ? resolveRequestAccess(req, authConfig) : null;
|
|
10
|
+
if (access && (!access.authenticated || !access.userId || access.userId === 'anonymous')) {
|
|
11
|
+
res.writeHead(401, { 'Content-Type': 'application/json' });
|
|
12
|
+
res.end(JSON.stringify({ success: false, error: 'Authentication required.' }));
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
const url = new URL(req.url || '/', 'http://localhost');
|
|
16
|
+
const workspaceId = String(url.searchParams.get('workspace_id') || access?.workspaceId || '').trim() || 'default';
|
|
17
|
+
const limit = Math.min(500, Math.max(1, Number(url.searchParams.get('limit') || '100')));
|
|
18
|
+
const events = core.listSyncEvents(workspaceId, limit);
|
|
19
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
20
|
+
res.end(JSON.stringify({ success: true, events }));
|
|
21
|
+
});
|
|
22
|
+
// POST /api/taskforce/sync/events - Record a client-side sync event (pull results, handshake outcomes)
|
|
23
|
+
addRoute('POST', '/api/taskforce/sync/events', async (req, res) => {
|
|
24
|
+
const authConfig = context.authConfig;
|
|
25
|
+
const access = authConfig?.enabled ? resolveRequestAccess(req, authConfig) : null;
|
|
26
|
+
if (access && (!access.authenticated || !access.userId || access.userId === 'anonymous')) {
|
|
27
|
+
res.writeHead(401, { 'Content-Type': 'application/json' });
|
|
28
|
+
res.end(JSON.stringify({ success: false, error: 'Authentication required.' }));
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
const body = await parseJsonBody(req);
|
|
32
|
+
const allowedEventTypes = ['pull', 'handshake', 'bootstrap', 'apply', 'push'];
|
|
33
|
+
const eventType = String(body?.eventType || '').trim().toLowerCase();
|
|
34
|
+
if (!allowedEventTypes.includes(eventType)) {
|
|
35
|
+
res.writeHead(400, { 'Content-Type': 'application/json' });
|
|
36
|
+
res.end(JSON.stringify({ success: false, error: 'Invalid eventType.' }));
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
const workspaceId = String(body?.workspaceId || access?.workspaceId || '').trim() || 'default';
|
|
40
|
+
core.recordSyncEvent(workspaceId, {
|
|
41
|
+
eventType: eventType,
|
|
42
|
+
status: String(body?.status || '') === 'error' ? 'error' : 'success',
|
|
43
|
+
statusCode: typeof body?.statusCode === 'number' ? body.statusCode : undefined,
|
|
44
|
+
errorMessage: typeof body?.errorMessage === 'string' ? body.errorMessage.slice(0, 500) : undefined,
|
|
45
|
+
changeCount: typeof body?.changeCount === 'number' ? body.changeCount : undefined,
|
|
46
|
+
requestMs: typeof body?.requestMs === 'number' ? body.requestMs : undefined,
|
|
47
|
+
details: normalizeSyncEventDetails(body?.details)
|
|
48
|
+
});
|
|
49
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
50
|
+
res.end(JSON.stringify({ success: true }));
|
|
51
|
+
});
|
|
52
|
+
// POST /api/taskforce/sync/workspace/repair-startup - Auto-repair missing asset/document
|
|
53
|
+
// metadata on workspace open. Only safe fixups: re-registers DB records for files that
|
|
54
|
+
// exist on disk but have no (or a stale deleted) metadata entry. Never deletes files.
|
|
55
|
+
// Called once by the sync orchestrator when the workspace becomes active.
|
|
56
|
+
addRoute('POST', '/api/taskforce/sync/workspace/repair-startup', async (req, res) => {
|
|
57
|
+
const authConfig = context.authConfig;
|
|
58
|
+
if (authConfig?.enabled && !requireAuthenticatedSyncRequest({
|
|
59
|
+
req,
|
|
60
|
+
res,
|
|
61
|
+
authConfig,
|
|
62
|
+
resolveRequestAccess
|
|
63
|
+
})) {
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
const body = await parseJsonBody(req);
|
|
67
|
+
const workspaceId = String(body?.workspaceId || requestWorkspaceId(req) || '').trim() || 'default';
|
|
68
|
+
if (!workspaceAssetStore) {
|
|
69
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
70
|
+
res.end(JSON.stringify({ success: true, applied: 0, skipped: 0, failed: 0, detail: 'Asset store unavailable.' }));
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
const { basePath } = core.getPaths();
|
|
74
|
+
const result = applyWorkspaceRepair({
|
|
75
|
+
workspaceId,
|
|
76
|
+
basePath,
|
|
77
|
+
tasks: core.listTasks(workspaceId)?.tasks || [],
|
|
78
|
+
archivedTasks: core.listArchive(workspaceId)?.archived || [],
|
|
79
|
+
deletedTasks: core.listWorkspaceSyncDeletes(workspaceId) || [],
|
|
80
|
+
workspaceAssetStore,
|
|
81
|
+
upsertDocumentWatermark: (targetWorkspaceId, docPath, contentHash, updatedAt) => {
|
|
82
|
+
core.upsertDocumentWatermark(targetWorkspaceId, docPath, contentHash, updatedAt);
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
const applied = result.actionsApplied.filter((a) => a.status === 'applied').length;
|
|
86
|
+
const failed = result.actionsApplied.filter((a) => a.status === 'failed').length;
|
|
87
|
+
const skipped = result.actionsApplied.filter((a) => a.status === 'skipped').length;
|
|
88
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
89
|
+
res.end(JSON.stringify({ success: true, applied, skipped, failed }));
|
|
90
|
+
});
|
|
91
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { Readable } from 'stream';
|
|
2
|
+
import { beforeEach, describe, expect, it, vi } from 'vitest';
|
|
3
|
+
import { applyWorkspaceRepair } from '../../sync/workspaceRepair.js';
|
|
4
|
+
import { registerWorkspaceSyncAuxRoutes } from './syncAuxRoutes';
|
|
5
|
+
vi.mock('../../sync/workspaceRepair.js', () => ({
|
|
6
|
+
applyWorkspaceRepair: vi.fn()
|
|
7
|
+
}));
|
|
8
|
+
function createJsonRequest(method, url, body) {
|
|
9
|
+
const chunks = body === undefined ? [] : [JSON.stringify(body)];
|
|
10
|
+
const req = Readable.from(chunks);
|
|
11
|
+
req.method = method;
|
|
12
|
+
req.url = url;
|
|
13
|
+
req.headers = body === undefined
|
|
14
|
+
? {}
|
|
15
|
+
: { 'content-type': 'application/json' };
|
|
16
|
+
return req;
|
|
17
|
+
}
|
|
18
|
+
function createResponse() {
|
|
19
|
+
return {
|
|
20
|
+
writeHead: vi.fn(),
|
|
21
|
+
end: vi.fn()
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
function registerAuxRoutes(overrides) {
|
|
25
|
+
const handlers = new Map();
|
|
26
|
+
const addRoute = (method, path, handler) => {
|
|
27
|
+
handlers.set(`${method} ${path}`, handler);
|
|
28
|
+
};
|
|
29
|
+
const core = {
|
|
30
|
+
listSyncEvents: vi.fn(() => []),
|
|
31
|
+
recordSyncEvent: vi.fn(),
|
|
32
|
+
getPaths: vi.fn(() => ({ basePath: '/tmp/taskforce-sync' })),
|
|
33
|
+
listTasks: vi.fn(() => ({ tasks: [] })),
|
|
34
|
+
listArchive: vi.fn(() => ({ archived: [] })),
|
|
35
|
+
listWorkspaceSyncDeletes: vi.fn(() => []),
|
|
36
|
+
upsertDocumentWatermark: vi.fn()
|
|
37
|
+
};
|
|
38
|
+
registerWorkspaceSyncAuxRoutes({
|
|
39
|
+
addRoute,
|
|
40
|
+
core,
|
|
41
|
+
context: { authConfig: (overrides?.authConfig ?? null) },
|
|
42
|
+
resolveRequestAccess: overrides?.resolveRequestAccess ?? (() => ({
|
|
43
|
+
authenticated: true,
|
|
44
|
+
userId: 'user-1',
|
|
45
|
+
workspaceId: 'workspace-local'
|
|
46
|
+
})),
|
|
47
|
+
requestWorkspaceId: () => null,
|
|
48
|
+
workspaceAssetStore: overrides?.workspaceAssetStore ?? null
|
|
49
|
+
});
|
|
50
|
+
return { handlers, core };
|
|
51
|
+
}
|
|
52
|
+
describe('syncAuxRoutes', () => {
|
|
53
|
+
beforeEach(() => {
|
|
54
|
+
vi.clearAllMocks();
|
|
55
|
+
});
|
|
56
|
+
it('returns zeroed startup repair results when the asset store is unavailable', async () => {
|
|
57
|
+
const { handlers } = registerAuxRoutes({
|
|
58
|
+
authConfig: { enabled: false, runtimeMode: 'local' },
|
|
59
|
+
workspaceAssetStore: null
|
|
60
|
+
});
|
|
61
|
+
const handler = handlers.get('POST /api/taskforce/sync/workspace/repair-startup');
|
|
62
|
+
const req = createJsonRequest('POST', '/api/taskforce/sync/workspace/repair-startup', {
|
|
63
|
+
workspaceId: 'workspace-local'
|
|
64
|
+
});
|
|
65
|
+
const res = createResponse();
|
|
66
|
+
await handler?.(req, res);
|
|
67
|
+
expect(res.writeHead).toHaveBeenCalledWith(200, { 'Content-Type': 'application/json' });
|
|
68
|
+
expect(res.end).toHaveBeenCalledWith(JSON.stringify({
|
|
69
|
+
success: true,
|
|
70
|
+
applied: 0,
|
|
71
|
+
skipped: 0,
|
|
72
|
+
failed: 0,
|
|
73
|
+
detail: 'Asset store unavailable.'
|
|
74
|
+
}));
|
|
75
|
+
});
|
|
76
|
+
it('requires authentication for startup repair when auth is enabled', async () => {
|
|
77
|
+
const { handlers } = registerAuxRoutes({
|
|
78
|
+
authConfig: { enabled: true, runtimeMode: 'local' },
|
|
79
|
+
resolveRequestAccess: () => ({
|
|
80
|
+
authenticated: false,
|
|
81
|
+
userId: null,
|
|
82
|
+
workspaceId: null
|
|
83
|
+
}),
|
|
84
|
+
workspaceAssetStore: {}
|
|
85
|
+
});
|
|
86
|
+
const handler = handlers.get('POST /api/taskforce/sync/workspace/repair-startup');
|
|
87
|
+
const req = createJsonRequest('POST', '/api/taskforce/sync/workspace/repair-startup', {
|
|
88
|
+
workspaceId: 'workspace-local'
|
|
89
|
+
});
|
|
90
|
+
const res = createResponse();
|
|
91
|
+
await handler?.(req, res);
|
|
92
|
+
expect(res.writeHead).toHaveBeenCalledWith(401, { 'Content-Type': 'application/json' });
|
|
93
|
+
expect(res.end).toHaveBeenCalledWith(JSON.stringify({
|
|
94
|
+
success: false,
|
|
95
|
+
error: 'Authentication required.'
|
|
96
|
+
}));
|
|
97
|
+
});
|
|
98
|
+
it('returns applied, skipped, and failed counts from startup repair actions', async () => {
|
|
99
|
+
vi.mocked(applyWorkspaceRepair).mockReturnValue({
|
|
100
|
+
actionsApplied: [
|
|
101
|
+
{ status: 'applied' },
|
|
102
|
+
{ status: 'applied' },
|
|
103
|
+
{ status: 'skipped' },
|
|
104
|
+
{ status: 'failed' }
|
|
105
|
+
]
|
|
106
|
+
});
|
|
107
|
+
const { handlers, core } = registerAuxRoutes({
|
|
108
|
+
authConfig: { enabled: false, runtimeMode: 'local' },
|
|
109
|
+
workspaceAssetStore: {}
|
|
110
|
+
});
|
|
111
|
+
const handler = handlers.get('POST /api/taskforce/sync/workspace/repair-startup');
|
|
112
|
+
const req = createJsonRequest('POST', '/api/taskforce/sync/workspace/repair-startup', {
|
|
113
|
+
workspaceId: 'workspace-local'
|
|
114
|
+
});
|
|
115
|
+
const res = createResponse();
|
|
116
|
+
await handler?.(req, res);
|
|
117
|
+
expect(applyWorkspaceRepair).toHaveBeenCalledWith(expect.objectContaining({
|
|
118
|
+
workspaceId: 'workspace-local',
|
|
119
|
+
basePath: '/tmp/taskforce-sync',
|
|
120
|
+
tasks: [],
|
|
121
|
+
archivedTasks: [],
|
|
122
|
+
deletedTasks: []
|
|
123
|
+
}));
|
|
124
|
+
expect(core.getPaths).toHaveBeenCalled();
|
|
125
|
+
expect(res.end).toHaveBeenCalledWith(JSON.stringify({
|
|
126
|
+
success: true,
|
|
127
|
+
applied: 2,
|
|
128
|
+
skipped: 1,
|
|
129
|
+
failed: 1
|
|
130
|
+
}));
|
|
131
|
+
});
|
|
132
|
+
it('sanitizes sync event details before recording them', async () => {
|
|
133
|
+
const { handlers, core } = registerAuxRoutes({
|
|
134
|
+
authConfig: { enabled: false, runtimeMode: 'local' }
|
|
135
|
+
});
|
|
136
|
+
const handler = handlers.get('POST /api/taskforce/sync/events');
|
|
137
|
+
const req = createJsonRequest('POST', '/api/taskforce/sync/events', {
|
|
138
|
+
workspaceId: 'workspace-local',
|
|
139
|
+
eventType: 'apply',
|
|
140
|
+
status: 'error',
|
|
141
|
+
errorMessage: 'Reference drift detected.',
|
|
142
|
+
details: {
|
|
143
|
+
nested: {
|
|
144
|
+
items: ['doc-1', 'doc-2']
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
const res = createResponse();
|
|
149
|
+
await handler?.(req, res);
|
|
150
|
+
expect(core.recordSyncEvent).toHaveBeenCalledWith('workspace-local', expect.objectContaining({
|
|
151
|
+
details: {
|
|
152
|
+
nested: {
|
|
153
|
+
items: ['doc-1', 'doc-2']
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}));
|
|
157
|
+
});
|
|
158
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { IncomingMessage } from 'http';
|
|
2
|
+
import { buildWorkspacePullFeed } from '../../sync/workspacePullFeed.js';
|
|
3
|
+
import type { WorkspaceSyncChange, WorkspaceSyncWorkspaceMemberSnapshot } from '../../sync/workspaceSyncModel.js';
|
|
4
|
+
import type { SyncAddRoute, SyncResolveRequestAccess, SyncRouteAuthConfig, SyncRouteCore } from './syncRouteTypes.js';
|
|
5
|
+
interface RegisterWorkspacePullApplySyncRoutesArgs {
|
|
6
|
+
addRoute: SyncAddRoute;
|
|
7
|
+
core: SyncRouteCore;
|
|
8
|
+
context: {
|
|
9
|
+
authConfig?: SyncRouteAuthConfig | null;
|
|
10
|
+
};
|
|
11
|
+
auditAuthAction: (req: IncomingMessage, action: string, details: Record<string, unknown>) => void;
|
|
12
|
+
resolveErrorStatusCode: (error: unknown, fallback?: number) => number;
|
|
13
|
+
requestWorkspaceId: (req: IncomingMessage) => string | null | undefined;
|
|
14
|
+
resolveRequestAccess: SyncResolveRequestAccess;
|
|
15
|
+
contentSyncState: Parameters<typeof buildWorkspacePullFeed>[0]['contentSyncState'];
|
|
16
|
+
collaborationSyncState: Parameters<typeof buildWorkspacePullFeed>[0]['collaborationSyncState'];
|
|
17
|
+
decodeWorkspaceSyncCursor: (raw: string | null | undefined) => {
|
|
18
|
+
u: string;
|
|
19
|
+
id: string;
|
|
20
|
+
} | null;
|
|
21
|
+
encodeWorkspaceSyncCursor: (cursor: {
|
|
22
|
+
u: string;
|
|
23
|
+
id: string;
|
|
24
|
+
} | null) => string | null;
|
|
25
|
+
normalizeWorkspaceMemberSyncSnapshot: (workspaceId: string, raw: Record<string, unknown> | null | undefined) => WorkspaceSyncWorkspaceMemberSnapshot | null;
|
|
26
|
+
dispatchWorkspaceSyncChanges: (workspaceId: string, incomingChanges: WorkspaceSyncChange[], options?: {
|
|
27
|
+
allowReferenceNumberReassignment?: boolean;
|
|
28
|
+
workspaceMembers?: WorkspaceSyncWorkspaceMemberSnapshot[];
|
|
29
|
+
}) => Promise<{
|
|
30
|
+
result: any;
|
|
31
|
+
deleteCount: number;
|
|
32
|
+
emittedEventIds: string[];
|
|
33
|
+
}>;
|
|
34
|
+
}
|
|
35
|
+
export declare function registerWorkspacePullApplySyncRoutes({ addRoute, core, context, auditAuthAction, resolveErrorStatusCode, requestWorkspaceId, resolveRequestAccess, contentSyncState, collaborationSyncState, decodeWorkspaceSyncCursor, encodeWorkspaceSyncCursor, normalizeWorkspaceMemberSyncSnapshot, dispatchWorkspaceSyncChanges }: RegisterWorkspacePullApplySyncRoutesArgs): void;
|
|
36
|
+
export {};
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import { buildWorkspacePullFeed } from '../../sync/workspacePullFeed.js';
|
|
2
|
+
import { parseJsonBody } from './primitives.js';
|
|
3
|
+
import { requireAuthenticatedSyncRequest, requireEnabledSyncAuth, resolveAuthorizedSyncWorkspace, } from './syncRouteGuards.js';
|
|
4
|
+
export function registerWorkspacePullApplySyncRoutes({ addRoute, core, context, auditAuthAction, resolveErrorStatusCode, requestWorkspaceId, resolveRequestAccess, contentSyncState, collaborationSyncState, decodeWorkspaceSyncCursor, encodeWorkspaceSyncCursor, normalizeWorkspaceMemberSyncSnapshot, dispatchWorkspaceSyncChanges }) {
|
|
5
|
+
// GET /api/taskforce/sync/workspace/pull - Incremental workspace task deltas with cursor paging
|
|
6
|
+
addRoute('GET', '/api/taskforce/sync/workspace/pull', async (req, res) => {
|
|
7
|
+
const authConfig = context.authConfig;
|
|
8
|
+
if (!requireEnabledSyncAuth(res, authConfig)) {
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
const access = requireAuthenticatedSyncRequest({
|
|
12
|
+
req,
|
|
13
|
+
res,
|
|
14
|
+
authConfig,
|
|
15
|
+
resolveRequestAccess,
|
|
16
|
+
auditAuthAction,
|
|
17
|
+
unauthorizedAuditAction: 'sync-workspace-pull-unauthorized'
|
|
18
|
+
});
|
|
19
|
+
if (!access) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
const url = new URL(req.url || '/api/taskforce/sync/workspace/pull', 'http://localhost');
|
|
23
|
+
const targetWorkspaceId = resolveAuthorizedSyncWorkspace({
|
|
24
|
+
req,
|
|
25
|
+
res,
|
|
26
|
+
core,
|
|
27
|
+
access,
|
|
28
|
+
requestedWorkspaceId: String(url.searchParams.get('workspaceId') || '').trim(),
|
|
29
|
+
auditAuthAction,
|
|
30
|
+
missingWorkspaceAuditAction: 'sync-workspace-pull-missing-workspace',
|
|
31
|
+
forbiddenWorkspaceAuditAction: 'sync-workspace-pull-forbidden'
|
|
32
|
+
});
|
|
33
|
+
if (!targetWorkspaceId) {
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
const repairMode = url.searchParams.get('repair') === '1' || url.searchParams.get('repair') === 'true';
|
|
37
|
+
const rawCursor = repairMode ? '' : String(url.searchParams.get('cursor') || '').trim();
|
|
38
|
+
const cursor = decodeWorkspaceSyncCursor(rawCursor);
|
|
39
|
+
if (rawCursor && !cursor) {
|
|
40
|
+
auditAuthAction(req, 'sync-workspace-pull-invalid-cursor', {
|
|
41
|
+
workspaceId: targetWorkspaceId
|
|
42
|
+
});
|
|
43
|
+
res.writeHead(400, { 'Content-Type': 'application/json' });
|
|
44
|
+
res.end(JSON.stringify({
|
|
45
|
+
success: false,
|
|
46
|
+
error: 'Invalid sync cursor.',
|
|
47
|
+
code: 'INVALID_SYNC_CURSOR'
|
|
48
|
+
}));
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
const requestedLimit = Number.parseInt(String(url.searchParams.get('limit') || ''), 10);
|
|
52
|
+
const pageSize = Number.isFinite(requestedLimit) && requestedLimit > 0
|
|
53
|
+
? Math.max(1, Math.min(500, Math.floor(requestedLimit)))
|
|
54
|
+
: 200;
|
|
55
|
+
const { workspaceMembers, changes, nextCursor, hasMore, diagnostics } = await buildWorkspacePullFeed({
|
|
56
|
+
core,
|
|
57
|
+
workspaceId: targetWorkspaceId,
|
|
58
|
+
cursor,
|
|
59
|
+
pageSize,
|
|
60
|
+
encodeWorkspaceSyncCursor,
|
|
61
|
+
contentSyncState,
|
|
62
|
+
collaborationSyncState,
|
|
63
|
+
});
|
|
64
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
65
|
+
res.end(JSON.stringify({
|
|
66
|
+
success: true,
|
|
67
|
+
workspaceId: targetWorkspaceId,
|
|
68
|
+
workspaceMembers,
|
|
69
|
+
changes,
|
|
70
|
+
nextCursor,
|
|
71
|
+
hasMore,
|
|
72
|
+
diagnostics
|
|
73
|
+
}));
|
|
74
|
+
try {
|
|
75
|
+
auditAuthAction(req, 'sync-workspace-pull-success', {
|
|
76
|
+
workspaceId: targetWorkspaceId,
|
|
77
|
+
returnedChanges: changes.length,
|
|
78
|
+
hasMore,
|
|
79
|
+
repairMode,
|
|
80
|
+
diagnostics
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
catch {
|
|
84
|
+
// post-response diagnostics must never cause an unhandled rejection
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
// POST /api/taskforce/sync/workspace/apply-local - Apply pulled cloud deltas into local workspace store
|
|
88
|
+
addRoute('POST', '/api/taskforce/sync/workspace/apply-local', async (req, res) => {
|
|
89
|
+
const startedAtMs = Date.now();
|
|
90
|
+
const authConfig = context.authConfig;
|
|
91
|
+
if (authConfig?.runtimeMode === 'cloud') {
|
|
92
|
+
res.writeHead(400, { 'Content-Type': 'application/json' });
|
|
93
|
+
res.end(JSON.stringify({ success: false, error: 'Local apply endpoint is only available in local runtime.' }));
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
const body = await parseJsonBody(req, 50 * 1024 * 1024);
|
|
97
|
+
const bodyWorkspaceId = String(body?.workspaceId || '').trim();
|
|
98
|
+
const headerWorkspaceId = String(Array.isArray(req.headers['x-taskforce-workspace-id'])
|
|
99
|
+
? req.headers['x-taskforce-workspace-id'][0]
|
|
100
|
+
: req.headers['x-taskforce-workspace-id'] || '').trim();
|
|
101
|
+
let workspaceId = bodyWorkspaceId || headerWorkspaceId || requestWorkspaceId(req);
|
|
102
|
+
if (authConfig?.enabled) {
|
|
103
|
+
const access = requireAuthenticatedSyncRequest({
|
|
104
|
+
req,
|
|
105
|
+
res,
|
|
106
|
+
authConfig,
|
|
107
|
+
resolveRequestAccess,
|
|
108
|
+
auditAuthAction,
|
|
109
|
+
unauthorizedAuditAction: 'sync-workspace-apply-unauthorized'
|
|
110
|
+
});
|
|
111
|
+
if (!access) {
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
if (workspaceId && workspaceId !== 'default' && workspaceId !== 'null') {
|
|
115
|
+
const authorizedWorkspaceId = resolveAuthorizedSyncWorkspace({
|
|
116
|
+
req,
|
|
117
|
+
res,
|
|
118
|
+
core,
|
|
119
|
+
access,
|
|
120
|
+
requestedWorkspaceId: workspaceId,
|
|
121
|
+
auditAuthAction,
|
|
122
|
+
forbiddenWorkspaceAuditAction: 'sync-workspace-apply-forbidden'
|
|
123
|
+
});
|
|
124
|
+
if (!authorizedWorkspaceId) {
|
|
125
|
+
return;
|
|
126
|
+
}
|
|
127
|
+
workspaceId = authorizedWorkspaceId;
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
const accessWorkspaceId = String(access.workspaceId || '').trim();
|
|
131
|
+
if (accessWorkspaceId && accessWorkspaceId !== 'default') {
|
|
132
|
+
workspaceId = accessWorkspaceId;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
if (!workspaceId || workspaceId === 'default' || workspaceId === 'null') {
|
|
137
|
+
res.writeHead(400, { 'Content-Type': 'application/json' });
|
|
138
|
+
res.end(JSON.stringify({
|
|
139
|
+
success: false,
|
|
140
|
+
error: 'Workspace ID required.',
|
|
141
|
+
code: 'WORKSPACE_ID_REQUIRED'
|
|
142
|
+
}));
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
const incomingChanges = Array.isArray(body?.changes) ? body.changes : [];
|
|
146
|
+
const workspaceMembers = Array.isArray(body?.workspaceMembers)
|
|
147
|
+
? body.workspaceMembers
|
|
148
|
+
.map((entry) => normalizeWorkspaceMemberSyncSnapshot(workspaceId, entry && typeof entry === 'object' ? entry : null))
|
|
149
|
+
.filter((entry) => Boolean(entry))
|
|
150
|
+
: undefined;
|
|
151
|
+
const allowReferenceNumberReassignment = body?.repair === true;
|
|
152
|
+
try {
|
|
153
|
+
const { result, emittedEventIds } = await dispatchWorkspaceSyncChanges(workspaceId, incomingChanges, {
|
|
154
|
+
allowReferenceNumberReassignment,
|
|
155
|
+
...(Array.isArray(workspaceMembers) ? { workspaceMembers } : {})
|
|
156
|
+
});
|
|
157
|
+
const durationMs = Date.now() - startedAtMs;
|
|
158
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
159
|
+
res.end(JSON.stringify({
|
|
160
|
+
success: true,
|
|
161
|
+
workspaceId,
|
|
162
|
+
result,
|
|
163
|
+
emittedEventIds,
|
|
164
|
+
durationMs
|
|
165
|
+
}));
|
|
166
|
+
try {
|
|
167
|
+
core.recordSyncEvent(workspaceId, {
|
|
168
|
+
eventType: 'apply',
|
|
169
|
+
status: 'success',
|
|
170
|
+
changeCount: incomingChanges.length,
|
|
171
|
+
requestMs: durationMs
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
catch {
|
|
175
|
+
// success-path diagnostics must never flip a committed local apply into failure
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
catch (error) {
|
|
179
|
+
const statusCode = resolveErrorStatusCode(error, 400);
|
|
180
|
+
const durationMs = Date.now() - startedAtMs;
|
|
181
|
+
res.writeHead(statusCode, { 'Content-Type': 'application/json' });
|
|
182
|
+
res.end(JSON.stringify({
|
|
183
|
+
success: false,
|
|
184
|
+
error: String(error?.message || 'Failed to apply local workspace deltas'),
|
|
185
|
+
code: error?.code,
|
|
186
|
+
details: error?.details || undefined,
|
|
187
|
+
durationMs
|
|
188
|
+
}));
|
|
189
|
+
try {
|
|
190
|
+
core.recordSyncEvent(workspaceId, {
|
|
191
|
+
eventType: 'apply',
|
|
192
|
+
status: 'error',
|
|
193
|
+
statusCode,
|
|
194
|
+
errorMessage: String(error?.message || 'Failed to apply local workspace deltas'),
|
|
195
|
+
changeCount: incomingChanges.length,
|
|
196
|
+
requestMs: durationMs
|
|
197
|
+
});
|
|
198
|
+
}
|
|
199
|
+
catch {
|
|
200
|
+
// error-path diagnostics must never suppress a committed error response
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { IncomingMessage } from 'http';
|
|
2
|
+
import type { WorkspaceSyncChange } from '../../sync/workspaceSyncModel.js';
|
|
3
|
+
import type { SyncAddRoute, SyncResolveRequestAccess, SyncRouteAuthConfig, SyncRouteCore } from './syncRouteTypes.js';
|
|
4
|
+
interface RegisterWorkspacePushSyncRoutesArgs {
|
|
5
|
+
addRoute: SyncAddRoute;
|
|
6
|
+
core: SyncRouteCore;
|
|
7
|
+
context: {
|
|
8
|
+
authConfig?: SyncRouteAuthConfig | null;
|
|
9
|
+
};
|
|
10
|
+
auditAuthAction: (req: IncomingMessage, action: string, details: Record<string, unknown>) => void;
|
|
11
|
+
resolveErrorStatusCode: (error: unknown, fallback?: number) => number;
|
|
12
|
+
resolveRequestAccess: SyncResolveRequestAccess;
|
|
13
|
+
readPushIdempotency: (workspaceId: string, key: string) => string | null;
|
|
14
|
+
writePushIdempotency: (workspaceId: string, key: string, payload: string) => void;
|
|
15
|
+
dispatchWorkspaceSyncChanges: (workspaceId: string, incomingChanges: WorkspaceSyncChange[], options?: {
|
|
16
|
+
allowReferenceNumberReassignment?: boolean;
|
|
17
|
+
}) => Promise<{
|
|
18
|
+
result: any;
|
|
19
|
+
deleteCount: number;
|
|
20
|
+
emittedEventIds: string[];
|
|
21
|
+
}>;
|
|
22
|
+
}
|
|
23
|
+
export declare function registerWorkspacePushSyncRoutes({ addRoute, core, context, auditAuthAction, resolveErrorStatusCode, resolveRequestAccess, readPushIdempotency, writePushIdempotency, dispatchWorkspaceSyncChanges }: RegisterWorkspacePushSyncRoutesArgs): void;
|
|
24
|
+
export {};
|