@taskforcehq/taskforce 0.3.304 → 0.3.306
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 +140 -247
- package/dist/Taskforce.module.css +295 -89
- package/dist/TaskforceCore.js +378 -111
- package/dist/TaskforceCore.test.js +1221 -107
- 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 +52 -2
- package/dist/compat/workspaceSyncCompat.test.js +38 -1
- package/dist/components/context/ContextAttachmentManager.d.ts +14 -0
- package/dist/components/context/ContextAttachmentManager.js +549 -0
- package/dist/components/features/AgentsModule.d.ts +10 -1
- package/dist/components/features/AgentsModule.js +260 -15
- package/dist/components/features/AgentsModule.test.js +255 -5
- package/dist/components/features/DocumentIndex.d.ts +1 -1
- package/dist/components/features/DocumentIndex.js +1 -1
- package/dist/components/features/DocumentViewer.d.ts +6 -2
- package/dist/components/features/DocumentViewer.js +90 -10
- package/dist/components/features/DocumentWorkspace.d.ts +5 -22
- package/dist/components/features/DocumentWorkspace.js +12 -155
- package/dist/components/features/DocumentWorkspace.test.js +226 -6
- package/dist/components/features/TaskSettings.js +29 -3
- package/dist/components/features/TaskSettings.test.js +42 -1
- package/dist/components/features/documentWorkspaceModel.d.ts +24 -0
- package/dist/components/features/documentWorkspaceModel.js +57 -0
- package/dist/components/features/useDocumentWorkspaceController.d.ts +34 -0
- package/dist/components/features/useDocumentWorkspaceController.js +113 -0
- package/dist/components/task/TaskCard.js +19 -28
- package/dist/components/task/TaskCard.test.js +38 -3
- package/dist/components/task/TaskContextUpload.js +4 -526
- package/dist/components/task/TaskForm.d.ts +8 -8
- package/dist/components/task/TaskForm.js +362 -230
- package/dist/components/task/TaskForm.test.js +558 -381
- package/dist/components/task/TaskKanban.d.ts +2 -1
- package/dist/components/task/TaskKanban.js +96 -14
- package/dist/components/task/TaskKanban.test.js +36 -0
- package/dist/components/ui/EditableAvatarButton.d.ts +18 -0
- package/dist/components/ui/EditableAvatarButton.js +18 -0
- package/dist/components/views/PlanComparisonPage.d.ts +9 -1
- package/dist/components/views/PlanComparisonPage.js +70 -17
- package/dist/components/views/PlanComparisonPage.test.js +289 -41
- package/dist/components/views/PlansPage.js +239 -106
- package/dist/components/views/PlansPage.test.js +593 -42
- package/dist/components/views/StandaloneLayout.js +310 -554
- package/dist/components/views/panels/FilterToolbar.test.js +6 -4
- package/dist/components/views/panels/PlanningDrawer.d.ts +8 -1
- package/dist/components/views/panels/PlanningDrawer.js +18 -11
- package/dist/components/views/panels/PlanningDrawer.test.d.ts +1 -0
- package/dist/components/views/panels/PlanningDrawer.test.js +141 -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 +27 -14
- package/dist/components/views/standalone/modals/AccountHubModal.js +87 -15
- package/dist/components/views/standalone/modals/AccountHubModal.test.js +42 -2
- 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 -1
- package/dist/core/AiProfileService.d.ts +45 -3
- package/dist/core/AiProfileService.js +774 -63
- package/dist/core/AiProfileService.test.js +22 -2
- package/dist/core/AiProfiles.test.js +761 -2
- package/dist/core/AttachmentLinkService.js +57 -15
- 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.d.ts +1 -0
- package/dist/core/AuthTokenService.test.js +78 -0
- package/dist/core/EntitlementsPolicy.test.js +77 -15
- package/dist/core/GlobalSettingsService.js +115 -6
- package/dist/core/PlanEntitlementService.d.ts +30 -3
- package/dist/core/PlanEntitlementService.js +454 -93
- package/dist/core/PlanFeatureCatalog.test.d.ts +1 -0
- package/dist/core/PlanFeatureCatalog.test.js +84 -0
- package/dist/core/PlanVersionPolicy.test.js +54 -28
- package/dist/core/PlanningEntities.test.js +52 -0
- package/dist/core/SignupMonetizationSettings.test.js +241 -44
- package/dist/core/SyncReconciliationService.js +2 -65
- package/dist/core/SystemAdmin.test.js +244 -88
- package/dist/core/TaskAttachmentsCanonical.test.js +51 -1
- package/dist/core/TaskTaxonomyValidation.test.js +53 -0
- package/dist/core/Taskforce.d.ts +228 -14
- package/dist/core/Taskforce.js +814 -201
- package/dist/core/Taskforce.listTasksSlim.test.d.ts +1 -0
- package/dist/core/Taskforce.listTasksSlim.test.js +91 -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 +128 -27
- package/dist/core/shared.d.ts +3 -1
- package/dist/core/shared.js +16 -1
- package/dist/core/types.d.ts +68 -2
- package/dist/hooks/auth/useTaskforceAuthBootstrap.js +26 -1
- package/dist/hooks/sync/auth.js +3 -1
- 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 +10 -1
- package/dist/hooks/sync/orchestratorShared.js +68 -47
- 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 +171 -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 +186 -65
- package/dist/hooks/sync/transfers.test.d.ts +1 -0
- package/dist/hooks/sync/transfers.test.js +396 -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/useSyncOrchestrator.aiProfiles.test.js +12 -0
- package/dist/hooks/useSyncOrchestrator.d.ts +16 -6
- package/dist/hooks/useSyncOrchestrator.js +424 -175
- package/dist/hooks/useSyncOrchestrator.retry-closure.test.js +487 -10
- package/dist/hooks/useTaskData.js +8 -3
- package/dist/hooks/useTaskData.test.js +45 -0
- package/dist/hooks/useTaskMutations.d.ts +2 -1
- package/dist/hooks/useTaskMutations.js +12 -1
- package/dist/hooks/useTaskMutations.test.js +30 -1
- package/dist/hooks/useTaskforce.d.ts +65 -4
- package/dist/hooks/useTaskforce.js +564 -243
- package/dist/hooks/useTaskforce.runtime-routing.test.d.ts +1 -0
- package/dist/hooks/useTaskforce.runtime-routing.test.js +152 -0
- package/dist/hooks/useTaskforce.sync-behavior.test.js +2454 -208
- package/dist/hooks/useWorkspaceSyncController.d.ts +4 -1
- package/dist/hooks/useWorkspaceSyncController.js +17 -2
- package/dist/hooks/useWorkspaceSyncController.test.js +1 -0
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.d.ts +16 -0
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.js +316 -35
- 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/adminWorkspaceRegistrar.d.ts +2 -0
- package/dist/mcp/adminWorkspaceRegistrar.js +154 -0
- package/dist/mcp/collaborationRegistrar.d.ts +2 -0
- package/dist/mcp/collaborationRegistrar.js +71 -0
- package/dist/mcp/documentAssetRegistrar.d.ts +2 -0
- package/dist/mcp/documentAssetRegistrar.js +346 -0
- package/dist/mcp/runtime.d.ts +2 -0
- package/dist/mcp/runtime.js +2433 -3534
- package/dist/mcp/runtime.test.js +440 -2
- package/dist/mcp/taskPlanningRegistrar.d.ts +2 -0
- package/dist/mcp/taskPlanningRegistrar.js +418 -0
- package/dist/mcp/toolCatalog.d.ts +35 -0
- package/dist/mcp/toolCatalog.js +3 -0
- package/dist/migrations/taskSchemaMigrations.d.ts +1 -1
- package/dist/migrations/taskSchemaMigrations.js +171 -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/annotatedAttachmentsRoutes.test.js +3 -3
- 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 +120 -9
- package/dist/server/index.rateLimit.test.js +3 -0
- package/dist/server/index.test.js +106 -3
- package/dist/server/routes/admin.d.ts +4 -5
- package/dist/server/routes/admin.js +410 -80
- package/dist/server/routes/annotatedAttachments.d.ts +1 -1
- package/dist/server/routes/annotatedAttachments.js +1 -1
- package/dist/server/routes/auth.d.ts +16 -6
- package/dist/server/routes/auth.js +1015 -118
- package/dist/server/routes/authSupport.d.ts +30 -0
- package/dist/server/routes/authSupport.js +81 -0
- package/dist/server/routes/billing.d.ts +1 -1
- package/dist/server/routes/billing.js +276 -34
- package/dist/server/routes/billing.test.js +760 -52
- package/dist/server/routes/documentReviews.d.ts +1 -1
- package/dist/server/routes/documentReviews.js +1 -1
- package/dist/server/routes/documents.d.ts +5 -2
- package/dist/server/routes/documents.js +242 -74
- package/dist/server/routes/primitives.d.ts +11 -0
- package/dist/server/routes/primitives.js +73 -0
- package/dist/server/routes/resources.d.ts +1 -1
- package/dist/server/routes/resources.js +1 -1
- package/dist/server/routes/shared.d.ts +29 -3
- package/dist/server/routes/shared.js +69 -4
- package/dist/server/routes/sync.d.ts +1 -1
- package/dist/server/routes/sync.integration.test.js +437 -39
- package/dist/server/routes/sync.js +62 -606
- 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 +180 -0
- package/dist/server/routes/tasks.d.ts +1 -1
- package/dist/server/routes/tasks.js +44 -2
- package/dist/server/routes/workspaces.d.ts +1 -1
- package/dist/server/routes/workspaces.js +37 -6
- package/dist/server/routes.d.ts +2 -9
- package/dist/server/routes.js +136 -165
- package/dist/server/routes.test.js +2457 -162
- 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/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/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 +17 -11
- package/dist/sync/collaborationSyncPayload.test.js +13 -1
- package/dist/sync/contentSyncState.d.ts +4 -8
- package/dist/sync/contentSyncState.js +33 -77
- package/dist/sync/syncApplyHandlers.d.ts +7 -0
- package/dist/sync/syncApplyHandlers.js +28 -13
- package/dist/sync/syncApplyHandlers.test.js +72 -3
- package/dist/sync/syncFieldSemantics.d.ts +12 -0
- package/dist/sync/syncFieldSemantics.js +55 -0
- package/dist/sync/syncResourceAdapters.d.ts +44 -0
- package/dist/sync/syncResourceAdapters.js +77 -0
- package/dist/sync/syncService.d.ts +6 -0
- package/dist/sync/syncService.js +60 -0
- package/dist/sync/syncService.test.js +71 -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.js +4 -3
- package/dist/sync/workspacePullFeed.test.js +43 -0
- package/dist/sync/workspaceRepair.js +5 -2
- package/dist/sync/workspaceSyncModel.d.ts +48 -0
- package/dist/sync/workspaceSyncModel.js +195 -31
- package/dist/sync/workspaceSyncModel.test.js +325 -12
- package/dist/sync/workspaceSyncState.d.ts +19 -0
- package/dist/sync/workspaceSyncState.js +3 -1
- package/dist/sync/workspaceSyncSurface.js +3 -8
- package/dist/types.d.ts +17 -0
- package/dist/ui/assets/AgentsModule-DrLawwNl.js +1 -0
- package/dist/ui/assets/{AnnotatedAttachmentWorkspace-BlS-cqnl.js → AnnotatedAttachmentWorkspace-Z9_whf7F.js} +1 -1
- 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-B03MaSkw.js +252 -0
- package/dist/ui/assets/DocumentWorkspace-Dhdso07p.css +1 -0
- package/dist/ui/assets/{InitiativesModule-BjR6iBf9.js → InitiativesModule-9E6ParrY.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-CvfnMiWq.css +1 -0
- package/dist/ui/assets/PlansPage-DRXscYxH.js +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/TaskSettings-DZX4jk7e.js +9 -0
- package/dist/ui/assets/{WorkflowsModule-DnFqdUME.js → WorkflowsModule-BA7jcEpH.js} +1 -1
- package/dist/ui/assets/index-9eT8e0Lu.css +1 -0
- package/dist/ui/assets/index-C6k75jr8.js +6 -0
- package/dist/ui/assets/{vendor-icons-I7ZwG1z_.js → vendor-icons-DuEd_65c.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/utils/accountProfileSummaryCache.d.ts +5 -0
- package/dist/utils/assignees.d.ts +2 -0
- package/dist/utils/assignees.js +2 -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.d.ts +19 -0
- package/dist/utils/commercialLifecyclePresentation.js +199 -0
- package/dist/utils/contextAssetEvents.d.ts +2 -0
- 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 +2 -0
- package/dist/utils/taskActivity.js +228 -22
- package/dist/utils/taskActivity.test.js +119 -8
- 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 +10 -2
- package/scripts/check-cloud-mcp.mjs +83 -0
- package/scripts/export-sqlite-to-postgres.mjs +7 -9
- package/scripts/playwright-auth.sh +5 -1
- package/scripts/run-billing-performance-smoke.sh +24 -0
- 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-BLWVbuKP.js +0 -1
- package/dist/ui/assets/DocumentWorkspace-BH_6DF6x.js +0 -250
- package/dist/ui/assets/DocumentWorkspace-C_8T8oz-.css +0 -1
- package/dist/ui/assets/PlansPage-C2dd2n1X.css +0 -1
- package/dist/ui/assets/PlansPage-CSDQ4sLa.js +0 -1
- package/dist/ui/assets/RussoOne-Regular-C3BxZIj7.ttf +0 -0
- package/dist/ui/assets/TaskSettings-CEDy34Jo.js +0 -9
- package/dist/ui/assets/index-DXUdtH1B.js +0 -6
- package/dist/ui/assets/index-Ii0B0rTO.css +0 -1
- package/scripts/migrate-planning-model.ts +0 -233
|
@@ -614,19 +614,20 @@ describe('useSyncOrchestrator', () => {
|
|
|
614
614
|
});
|
|
615
615
|
expect(result.current.workspaceCloudSyncEnabled).toBe(true);
|
|
616
616
|
expect(result.current.workspaceSyncPhase).toBe('provision-local');
|
|
617
|
+
runWorkspacePushSyncServiceMock.mockClear();
|
|
617
618
|
await act(async () => {
|
|
618
619
|
await result.current.pushWorkspaceChangesToCloud('sig-push-retry');
|
|
619
620
|
});
|
|
620
|
-
expect(runWorkspacePushSyncServiceMock).
|
|
621
|
+
expect(runWorkspacePushSyncServiceMock.mock.calls.length).toBeGreaterThanOrEqual(1);
|
|
621
622
|
expect(result.current.isWorkspaceRetryPending()).toBe(true);
|
|
622
623
|
await act(async () => {
|
|
623
624
|
await result.current.pushWorkspaceChangesToCloud('sig-push-retry');
|
|
624
625
|
});
|
|
625
626
|
await waitFor(() => {
|
|
626
|
-
expect(runWorkspacePushSyncServiceMock).
|
|
627
|
+
expect(runWorkspacePushSyncServiceMock.mock.calls.length).toBeGreaterThanOrEqual(2);
|
|
627
628
|
});
|
|
628
629
|
expect(result.current.workspaceSyncPhase).toBe('active');
|
|
629
|
-
expect(result.current.workspaceLastPushAt).
|
|
630
|
+
expect(result.current.workspaceLastPushAt).toBeTruthy();
|
|
630
631
|
await act(async () => {
|
|
631
632
|
await Promise.resolve();
|
|
632
633
|
await Promise.resolve();
|
|
@@ -786,14 +787,19 @@ describe('useSyncOrchestrator', () => {
|
|
|
786
787
|
await Promise.resolve();
|
|
787
788
|
});
|
|
788
789
|
expect(runWorkspacePushSyncServiceMock.mock.calls.length).toBeGreaterThanOrEqual(1);
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
790
|
+
const pushedChanges = runWorkspacePushSyncServiceMock.mock.calls
|
|
791
|
+
.map((call) => call?.[0]?.payload?.changes)
|
|
792
|
+
.filter(Array.isArray);
|
|
793
|
+
expect(pushedChanges).toEqual(expect.arrayContaining([
|
|
794
|
+
expect.arrayContaining([
|
|
795
|
+
expect.objectContaining({
|
|
796
|
+
op: 'upsert',
|
|
797
|
+
archived: false,
|
|
798
|
+
task: expect.objectContaining({
|
|
799
|
+
id: 'task-local-1'
|
|
800
|
+
})
|
|
795
801
|
})
|
|
796
|
-
|
|
802
|
+
])
|
|
797
803
|
]));
|
|
798
804
|
unmount();
|
|
799
805
|
});
|
|
@@ -890,6 +896,114 @@ describe('useSyncOrchestrator', () => {
|
|
|
890
896
|
]));
|
|
891
897
|
unmount();
|
|
892
898
|
});
|
|
899
|
+
it('schedules a delete push when authoritative deleted task state changes', async () => {
|
|
900
|
+
vi.useFakeTimers();
|
|
901
|
+
const baseTask = {
|
|
902
|
+
id: 'task-local-delete-1',
|
|
903
|
+
title: 'Local delete task',
|
|
904
|
+
status: 'task',
|
|
905
|
+
createdAt: '2026-03-14T12:00:00.000Z',
|
|
906
|
+
updatedAt: '2026-03-14T12:00:00.000Z'
|
|
907
|
+
};
|
|
908
|
+
runWorkspacePushSyncServiceMock.mockResolvedValue({
|
|
909
|
+
success: true,
|
|
910
|
+
syncedAt: '2026-03-15T15:05:00.000Z',
|
|
911
|
+
requestMs: 1,
|
|
912
|
+
changeCount: 1,
|
|
913
|
+
deleteCount: 0,
|
|
914
|
+
currentTaskIds: new Set(['task-local-delete-1']),
|
|
915
|
+
deleteTaskIds: new Set(),
|
|
916
|
+
currentDocumentPaths: new Set(),
|
|
917
|
+
deleteDocumentPaths: new Set(),
|
|
918
|
+
currentDocumentWatermarks: new Map(),
|
|
919
|
+
currentAssetPaths: new Set(),
|
|
920
|
+
deleteAssetPaths: new Set(),
|
|
921
|
+
currentAssetWatermarks: new Map(),
|
|
922
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
923
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
924
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
925
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
926
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
927
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
928
|
+
pushedWatermarks: new Map([['task-local-delete-1', '2026-03-14T12:00:00.000Z']]),
|
|
929
|
+
emittedEventIds: []
|
|
930
|
+
});
|
|
931
|
+
let input = buildInput({
|
|
932
|
+
tasks: [baseTask]
|
|
933
|
+
});
|
|
934
|
+
const { result, rerender, unmount } = renderHook((props) => useSyncOrchestrator(props), {
|
|
935
|
+
initialProps: input
|
|
936
|
+
});
|
|
937
|
+
act(() => {
|
|
938
|
+
result.current.applyWorkspaceSyncStateSnapshot({
|
|
939
|
+
enabled: true,
|
|
940
|
+
phase: 'provision-local',
|
|
941
|
+
pullCursor: null
|
|
942
|
+
});
|
|
943
|
+
});
|
|
944
|
+
await act(async () => {
|
|
945
|
+
await vi.runOnlyPendingTimersAsync();
|
|
946
|
+
await Promise.resolve();
|
|
947
|
+
await Promise.resolve();
|
|
948
|
+
});
|
|
949
|
+
runWorkspacePushSyncServiceMock.mockClear();
|
|
950
|
+
runWorkspacePushSyncServiceMock.mockResolvedValue({
|
|
951
|
+
success: true,
|
|
952
|
+
syncedAt: '2026-03-15T15:06:00.000Z',
|
|
953
|
+
requestMs: 1,
|
|
954
|
+
changeCount: 0,
|
|
955
|
+
deleteCount: 1,
|
|
956
|
+
currentTaskIds: new Set(),
|
|
957
|
+
deleteTaskIds: new Set(['task-local-delete-1']),
|
|
958
|
+
currentDocumentPaths: new Set(),
|
|
959
|
+
deleteDocumentPaths: new Set(),
|
|
960
|
+
currentDocumentWatermarks: new Map(),
|
|
961
|
+
currentAssetPaths: new Set(),
|
|
962
|
+
deleteAssetPaths: new Set(),
|
|
963
|
+
currentAssetWatermarks: new Map(),
|
|
964
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
965
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
966
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
967
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
968
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
969
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
970
|
+
pushedWatermarks: new Map(),
|
|
971
|
+
emittedEventIds: []
|
|
972
|
+
});
|
|
973
|
+
input = buildInput({
|
|
974
|
+
tasks: [],
|
|
975
|
+
deletedTasks: [{
|
|
976
|
+
id: 'deleted-task-local-delete-1',
|
|
977
|
+
taskId: 'task-local-delete-1',
|
|
978
|
+
workspaceId: 'workspace-local-active',
|
|
979
|
+
deletedAt: '2026-03-15T15:06:00.000Z',
|
|
980
|
+
actor: 'user-1',
|
|
981
|
+
actorType: 'human',
|
|
982
|
+
source: 'ui',
|
|
983
|
+
taskSnapshot: baseTask
|
|
984
|
+
}]
|
|
985
|
+
});
|
|
986
|
+
rerender(input);
|
|
987
|
+
await act(async () => {
|
|
988
|
+
await vi.advanceTimersByTimeAsync(1600);
|
|
989
|
+
await Promise.resolve();
|
|
990
|
+
await Promise.resolve();
|
|
991
|
+
});
|
|
992
|
+
expect(runWorkspacePushSyncServiceMock.mock.calls.length).toBeGreaterThanOrEqual(1);
|
|
993
|
+
const pushedChanges = runWorkspacePushSyncServiceMock.mock.calls
|
|
994
|
+
.map((call) => call?.[0]?.payload?.changes)
|
|
995
|
+
.filter(Array.isArray);
|
|
996
|
+
expect(pushedChanges).toEqual(expect.arrayContaining([
|
|
997
|
+
expect.arrayContaining([
|
|
998
|
+
expect.objectContaining({
|
|
999
|
+
op: 'delete',
|
|
1000
|
+
taskId: 'task-local-delete-1',
|
|
1001
|
+
deletedAt: '2026-03-15T15:06:00.000Z'
|
|
1002
|
+
})
|
|
1003
|
+
])
|
|
1004
|
+
]));
|
|
1005
|
+
unmount();
|
|
1006
|
+
});
|
|
893
1007
|
it('runs a startup full reconcile after the first successful pull when a saved cursor exists', async () => {
|
|
894
1008
|
vi.useFakeTimers();
|
|
895
1009
|
runWorkspacePullSyncServiceMock.mockResolvedValue({
|
|
@@ -925,6 +1039,66 @@ describe('useSyncOrchestrator', () => {
|
|
|
925
1039
|
expect(runWorkspacePullSyncServiceMock.mock.calls.some((call) => call?.[0]?.cursor === null)).toBe(true);
|
|
926
1040
|
unmount();
|
|
927
1041
|
});
|
|
1042
|
+
it('clears an invalid saved pull cursor and retries from the beginning', async () => {
|
|
1043
|
+
vi.useFakeTimers();
|
|
1044
|
+
runWorkspacePullSyncServiceMock
|
|
1045
|
+
.mockResolvedValueOnce({
|
|
1046
|
+
success: false,
|
|
1047
|
+
kind: 'pull_http',
|
|
1048
|
+
status: 400,
|
|
1049
|
+
errorCode: 'INVALID_SYNC_CURSOR',
|
|
1050
|
+
error: 'Invalid sync cursor.',
|
|
1051
|
+
cursor: 'stale-cursor',
|
|
1052
|
+
pages: 0,
|
|
1053
|
+
appliedChanges: 0,
|
|
1054
|
+
pullRequestMs: 1,
|
|
1055
|
+
applyMs: 0,
|
|
1056
|
+
pulledDeleteTaskIds: new Set(),
|
|
1057
|
+
pulledActiveUpserts: false,
|
|
1058
|
+
pulledArchivedUpserts: false,
|
|
1059
|
+
documentDecryptFailures: []
|
|
1060
|
+
})
|
|
1061
|
+
.mockResolvedValueOnce({
|
|
1062
|
+
success: true,
|
|
1063
|
+
syncedAt: '2026-03-15T19:31:00.000Z',
|
|
1064
|
+
cursor: 'fresh-cursor-1',
|
|
1065
|
+
pages: 1,
|
|
1066
|
+
appliedChanges: 0,
|
|
1067
|
+
pullRequestMs: 1,
|
|
1068
|
+
applyMs: 0,
|
|
1069
|
+
pulledDeleteTaskIds: new Set(),
|
|
1070
|
+
pulledActiveUpserts: false,
|
|
1071
|
+
pulledArchivedUpserts: false,
|
|
1072
|
+
documentDecryptFailures: []
|
|
1073
|
+
});
|
|
1074
|
+
const { result, unmount } = renderHook((props) => useSyncOrchestrator(props), {
|
|
1075
|
+
initialProps: buildInput()
|
|
1076
|
+
});
|
|
1077
|
+
act(() => {
|
|
1078
|
+
result.current.applyWorkspaceSyncStateSnapshot({
|
|
1079
|
+
enabled: true,
|
|
1080
|
+
phase: 'active',
|
|
1081
|
+
pullCursor: 'stale-cursor'
|
|
1082
|
+
});
|
|
1083
|
+
});
|
|
1084
|
+
await act(async () => {
|
|
1085
|
+
await vi.advanceTimersByTimeAsync(500);
|
|
1086
|
+
await Promise.resolve();
|
|
1087
|
+
await Promise.resolve();
|
|
1088
|
+
});
|
|
1089
|
+
await act(async () => {
|
|
1090
|
+
await vi.runOnlyPendingTimersAsync();
|
|
1091
|
+
await Promise.resolve();
|
|
1092
|
+
await Promise.resolve();
|
|
1093
|
+
});
|
|
1094
|
+
expect(runWorkspacePullSyncServiceMock.mock.calls.length).toBeGreaterThanOrEqual(2);
|
|
1095
|
+
expect(runWorkspacePullSyncServiceMock.mock.calls[0]?.[0]?.cursor).toBe('stale-cursor');
|
|
1096
|
+
expect(runWorkspacePullSyncServiceMock.mock.calls.some((call) => call?.[0]?.cursor === null)).toBe(true);
|
|
1097
|
+
expect(result.current.workspaceRetryAt).toBeNull();
|
|
1098
|
+
expect(result.current.workspaceLastErrorMessage).toBeNull();
|
|
1099
|
+
expect(result.current.workspaceSyncPhase).toBe('active');
|
|
1100
|
+
unmount();
|
|
1101
|
+
});
|
|
928
1102
|
it('finishes provision-local bootstrap by moving to active after the first push', async () => {
|
|
929
1103
|
runWorkspacePushSyncServiceMock.mockResolvedValue({
|
|
930
1104
|
success: true,
|
|
@@ -994,6 +1168,243 @@ describe('useSyncOrchestrator', () => {
|
|
|
994
1168
|
expect(result.current.workspaceSyncPhase).toBe('active');
|
|
995
1169
|
expect(result.current.workspaceLastPullAt).toBe('2026-03-15T19:00:00.000Z');
|
|
996
1170
|
});
|
|
1171
|
+
const persisted = localStorage.getItem('taskforce.syncWatermarks.v3.workspace-local-active');
|
|
1172
|
+
expect(persisted).toBeTruthy();
|
|
1173
|
+
expect(JSON.parse(String(persisted))).toEqual(expect.objectContaining({
|
|
1174
|
+
v: 11,
|
|
1175
|
+
taskIds: [],
|
|
1176
|
+
taxonomyStateFingerprint: expect.any(String),
|
|
1177
|
+
documentWatermarks: [],
|
|
1178
|
+
assetWatermarks: [],
|
|
1179
|
+
taskEventWatermarks: []
|
|
1180
|
+
}));
|
|
1181
|
+
unmount();
|
|
1182
|
+
});
|
|
1183
|
+
it('persists task and planning baselines when attach-cloud bootstrap completes', async () => {
|
|
1184
|
+
runWorkspacePullSyncServiceMock.mockResolvedValue({
|
|
1185
|
+
success: true,
|
|
1186
|
+
syncedAt: '2026-03-15T19:00:00.000Z',
|
|
1187
|
+
cursor: null,
|
|
1188
|
+
pages: 1,
|
|
1189
|
+
appliedChanges: 0,
|
|
1190
|
+
pullRequestMs: 1,
|
|
1191
|
+
applyMs: 0,
|
|
1192
|
+
pulledDeleteTaskIds: new Set(),
|
|
1193
|
+
pulledActiveUpserts: false,
|
|
1194
|
+
pulledArchivedUpserts: false,
|
|
1195
|
+
documentDecryptFailures: []
|
|
1196
|
+
});
|
|
1197
|
+
const { result, unmount } = renderHook((props) => useSyncOrchestrator(props), {
|
|
1198
|
+
initialProps: buildInput({
|
|
1199
|
+
tasks: [{
|
|
1200
|
+
id: 'task-1',
|
|
1201
|
+
title: 'Seeded task',
|
|
1202
|
+
status: 'task',
|
|
1203
|
+
createdAt: '2026-03-15T18:00:00.000Z',
|
|
1204
|
+
updatedAt: '2026-03-15T18:05:00.000Z'
|
|
1205
|
+
}],
|
|
1206
|
+
initiatives: [{
|
|
1207
|
+
id: 'initiative-1',
|
|
1208
|
+
title: 'Seeded initiative',
|
|
1209
|
+
createdAt: '2026-03-15T17:00:00.000Z',
|
|
1210
|
+
updatedAt: '2026-03-15T17:05:00.000Z',
|
|
1211
|
+
isArchived: false
|
|
1212
|
+
}],
|
|
1213
|
+
workstreams: [{
|
|
1214
|
+
id: 'workstream-1',
|
|
1215
|
+
title: 'Seeded workstream',
|
|
1216
|
+
initiativeId: 'initiative-1',
|
|
1217
|
+
createdAt: '2026-03-15T17:10:00.000Z',
|
|
1218
|
+
updatedAt: '2026-03-15T17:15:00.000Z',
|
|
1219
|
+
isArchived: false
|
|
1220
|
+
}]
|
|
1221
|
+
})
|
|
1222
|
+
});
|
|
1223
|
+
act(() => {
|
|
1224
|
+
result.current.applyWorkspaceSyncStateSnapshot({
|
|
1225
|
+
enabled: true,
|
|
1226
|
+
phase: 'attach-cloud',
|
|
1227
|
+
pullCursor: null
|
|
1228
|
+
});
|
|
1229
|
+
});
|
|
1230
|
+
await waitFor(() => {
|
|
1231
|
+
expect(result.current.workspaceSyncPhase).toBe('active');
|
|
1232
|
+
});
|
|
1233
|
+
const persisted = JSON.parse(String(localStorage.getItem('taskforce.syncWatermarks.v3.workspace-local-active')));
|
|
1234
|
+
expect(persisted.taskIds).toEqual(['task-1']);
|
|
1235
|
+
expect(persisted.taskWatermarks).toEqual([['task-1', '2026-03-15T18:05:00.000Z']]);
|
|
1236
|
+
expect(persisted.initiativeWatermarks).toEqual([['initiative-1', '2026-03-15T17:05:00.000Z']]);
|
|
1237
|
+
expect(persisted.workstreamWatermarks).toEqual([['workstream-1', '2026-03-15T17:15:00.000Z']]);
|
|
1238
|
+
unmount();
|
|
1239
|
+
});
|
|
1240
|
+
it('rehydrates push baselines from workspace sync state when local storage is empty', async () => {
|
|
1241
|
+
vi.stubGlobal('fetch', vi.fn((url, init) => {
|
|
1242
|
+
if (url.includes('/api/taskforce/ui-state?key=workspace-sync')) {
|
|
1243
|
+
return Promise.resolve({
|
|
1244
|
+
ok: true,
|
|
1245
|
+
json: () => Promise.resolve({
|
|
1246
|
+
success: true,
|
|
1247
|
+
state: {
|
|
1248
|
+
version: 2,
|
|
1249
|
+
enabled: true,
|
|
1250
|
+
phase: 'active',
|
|
1251
|
+
pullCursor: null,
|
|
1252
|
+
pushBaseline: {
|
|
1253
|
+
taskIds: ['task-1'],
|
|
1254
|
+
taskWatermarks: [['task-1', '2026-03-15T18:05:00.000Z']],
|
|
1255
|
+
initiativeWatermarks: [['initiative-1', '2026-03-15T17:05:00.000Z']],
|
|
1256
|
+
workstreamWatermarks: [['workstream-1', '2026-03-15T17:15:00.000Z']],
|
|
1257
|
+
aiProfileWatermarks: [['ai-profile-codex', '2026-03-15T18:00:00.000Z']],
|
|
1258
|
+
documentWatermarks: [],
|
|
1259
|
+
assetWatermarks: [],
|
|
1260
|
+
documentReviewSessionWatermarks: [],
|
|
1261
|
+
documentReviewCommentWatermarks: [],
|
|
1262
|
+
annotatedAttachmentSessionWatermarks: [],
|
|
1263
|
+
taskEventWatermarks: [],
|
|
1264
|
+
taxonomyStateFingerprint: 'null'
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
})
|
|
1268
|
+
});
|
|
1269
|
+
}
|
|
1270
|
+
if (url.includes('/api/taskforce/ui-state') && String(init?.method || '').toUpperCase() === 'POST') {
|
|
1271
|
+
return Promise.resolve({ ok: true, json: () => Promise.resolve({ success: true }) });
|
|
1272
|
+
}
|
|
1273
|
+
return Promise.resolve({ ok: true, json: () => Promise.resolve({ success: true }) });
|
|
1274
|
+
}));
|
|
1275
|
+
const { result, unmount } = renderHook((props) => useSyncOrchestrator(props), {
|
|
1276
|
+
initialProps: buildInput({
|
|
1277
|
+
tasks: [{
|
|
1278
|
+
id: 'task-1',
|
|
1279
|
+
title: 'Seeded task',
|
|
1280
|
+
status: 'task',
|
|
1281
|
+
createdAt: '2026-03-15T18:00:00.000Z',
|
|
1282
|
+
updatedAt: '2026-03-15T18:05:00.000Z'
|
|
1283
|
+
}]
|
|
1284
|
+
})
|
|
1285
|
+
});
|
|
1286
|
+
expect(localStorage.getItem('taskforce.syncWatermarks.v3.workspace-local-active')).toBeNull();
|
|
1287
|
+
await act(async () => {
|
|
1288
|
+
await result.current.loadWorkspaceSyncState();
|
|
1289
|
+
});
|
|
1290
|
+
await waitFor(() => {
|
|
1291
|
+
const persisted = JSON.parse(String(localStorage.getItem('taskforce.syncWatermarks.v3.workspace-local-active')));
|
|
1292
|
+
expect(persisted.taskIds).toEqual(['task-1']);
|
|
1293
|
+
expect(persisted.taskWatermarks).toEqual([['task-1', '2026-03-15T18:05:00.000Z']]);
|
|
1294
|
+
expect(persisted.initiativeWatermarks).toEqual([['initiative-1', '2026-03-15T17:05:00.000Z']]);
|
|
1295
|
+
expect(persisted.workstreamWatermarks).toEqual([['workstream-1', '2026-03-15T17:15:00.000Z']]);
|
|
1296
|
+
expect(persisted.aiProfileWatermarks).toEqual([['ai-profile-codex', '2026-03-15T18:00:00.000Z']]);
|
|
1297
|
+
});
|
|
1298
|
+
unmount();
|
|
1299
|
+
});
|
|
1300
|
+
it('rehydrates task delete baselines from persisted taskIds even when task watermarks are empty', async () => {
|
|
1301
|
+
vi.useFakeTimers();
|
|
1302
|
+
vi.stubGlobal('fetch', vi.fn((url, init) => {
|
|
1303
|
+
if (url.includes('/api/taskforce/ui-state?key=workspace-sync')) {
|
|
1304
|
+
return Promise.resolve({
|
|
1305
|
+
ok: true,
|
|
1306
|
+
json: () => Promise.resolve({
|
|
1307
|
+
success: true,
|
|
1308
|
+
state: {
|
|
1309
|
+
version: 2,
|
|
1310
|
+
enabled: true,
|
|
1311
|
+
phase: 'active',
|
|
1312
|
+
pullCursor: null,
|
|
1313
|
+
pushBaseline: {
|
|
1314
|
+
taskIds: ['task-delete-hydrated-1'],
|
|
1315
|
+
taskWatermarks: [],
|
|
1316
|
+
initiativeWatermarks: [],
|
|
1317
|
+
workstreamWatermarks: [],
|
|
1318
|
+
aiProfileWatermarks: [],
|
|
1319
|
+
documentWatermarks: [],
|
|
1320
|
+
assetWatermarks: [],
|
|
1321
|
+
documentReviewSessionWatermarks: [],
|
|
1322
|
+
documentReviewCommentWatermarks: [],
|
|
1323
|
+
annotatedAttachmentSessionWatermarks: [],
|
|
1324
|
+
taskEventWatermarks: [],
|
|
1325
|
+
taxonomyStateFingerprint: 'fingerprint-a'
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
})
|
|
1329
|
+
});
|
|
1330
|
+
}
|
|
1331
|
+
if (url.includes('/api/taskforce/ui-state') && String(init?.method || '').toUpperCase() === 'POST') {
|
|
1332
|
+
return Promise.resolve({ ok: true, json: () => Promise.resolve({ success: true }) });
|
|
1333
|
+
}
|
|
1334
|
+
return Promise.resolve({ ok: true, json: () => Promise.resolve({ success: true }) });
|
|
1335
|
+
}));
|
|
1336
|
+
runWorkspacePushSyncServiceMock.mockResolvedValue({
|
|
1337
|
+
success: true,
|
|
1338
|
+
syncedAt: '2026-03-16T12:00:00.000Z',
|
|
1339
|
+
requestMs: 1,
|
|
1340
|
+
changeCount: 0,
|
|
1341
|
+
deleteCount: 1,
|
|
1342
|
+
currentTaskIds: new Set(),
|
|
1343
|
+
deleteTaskIds: new Set(['task-delete-hydrated-1']),
|
|
1344
|
+
currentDocumentPaths: new Set(),
|
|
1345
|
+
deleteDocumentPaths: new Set(),
|
|
1346
|
+
currentDocumentWatermarks: new Map(),
|
|
1347
|
+
currentAssetPaths: new Set(),
|
|
1348
|
+
deleteAssetPaths: new Set(),
|
|
1349
|
+
currentAssetWatermarks: new Map(),
|
|
1350
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
1351
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
1352
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
1353
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
1354
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
1355
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
1356
|
+
pushedWatermarks: new Map(),
|
|
1357
|
+
emittedEventIds: []
|
|
1358
|
+
});
|
|
1359
|
+
const { result, unmount } = renderHook((props) => useSyncOrchestrator(props), {
|
|
1360
|
+
initialProps: buildInput({
|
|
1361
|
+
tasks: [],
|
|
1362
|
+
deletedTasks: [{
|
|
1363
|
+
id: 'deleted-task-delete-hydrated-1',
|
|
1364
|
+
taskId: 'task-delete-hydrated-1',
|
|
1365
|
+
workspaceId: 'workspace-local-active',
|
|
1366
|
+
deletedAt: '2026-03-16T11:59:00.000Z',
|
|
1367
|
+
actor: 'user-1',
|
|
1368
|
+
actorType: 'human',
|
|
1369
|
+
source: 'ui',
|
|
1370
|
+
taskSnapshot: {
|
|
1371
|
+
id: 'task-delete-hydrated-1',
|
|
1372
|
+
title: 'Deleted before reload',
|
|
1373
|
+
status: 'task',
|
|
1374
|
+
createdAt: '2026-03-15T10:00:00.000Z',
|
|
1375
|
+
updatedAt: '2026-03-15T10:00:00.000Z'
|
|
1376
|
+
}
|
|
1377
|
+
}]
|
|
1378
|
+
})
|
|
1379
|
+
});
|
|
1380
|
+
await act(async () => {
|
|
1381
|
+
await result.current.loadWorkspaceSyncState();
|
|
1382
|
+
});
|
|
1383
|
+
act(() => {
|
|
1384
|
+
result.current.applyWorkspaceSyncStateSnapshot({
|
|
1385
|
+
enabled: true,
|
|
1386
|
+
phase: 'active',
|
|
1387
|
+
pullCursor: null
|
|
1388
|
+
});
|
|
1389
|
+
});
|
|
1390
|
+
await act(async () => {
|
|
1391
|
+
await vi.advanceTimersByTimeAsync(1600);
|
|
1392
|
+
await Promise.resolve();
|
|
1393
|
+
await Promise.resolve();
|
|
1394
|
+
});
|
|
1395
|
+
expect(runWorkspacePushSyncServiceMock.mock.calls.length).toBeGreaterThanOrEqual(1);
|
|
1396
|
+
const pushedChanges = runWorkspacePushSyncServiceMock.mock.calls
|
|
1397
|
+
.map((call) => call?.[0]?.payload?.changes)
|
|
1398
|
+
.filter(Array.isArray);
|
|
1399
|
+
expect(pushedChanges).toEqual(expect.arrayContaining([
|
|
1400
|
+
expect.arrayContaining([
|
|
1401
|
+
expect.objectContaining({
|
|
1402
|
+
op: 'delete',
|
|
1403
|
+
taskId: 'task-delete-hydrated-1',
|
|
1404
|
+
deletedAt: '2026-03-16T11:59:00.000Z'
|
|
1405
|
+
})
|
|
1406
|
+
])
|
|
1407
|
+
]));
|
|
997
1408
|
unmount();
|
|
998
1409
|
});
|
|
999
1410
|
it('finishes attach-cloud bootstrap locally even if persisting the active phase fails', async () => {
|
|
@@ -1418,6 +1829,70 @@ describe('useSyncOrchestrator', () => {
|
|
|
1418
1829
|
expect(result.current.workspaceLastPullAt).toBe('2026-03-15T21:05:00.000Z');
|
|
1419
1830
|
unmount();
|
|
1420
1831
|
});
|
|
1832
|
+
it('periodically retries a stale local push signature even without a new state change', async () => {
|
|
1833
|
+
vi.useFakeTimers();
|
|
1834
|
+
const localTask = {
|
|
1835
|
+
id: 'task-local-watchdog',
|
|
1836
|
+
title: 'Watchdog push recovery',
|
|
1837
|
+
status: 'task',
|
|
1838
|
+
priority: 2,
|
|
1839
|
+
complexity: 3,
|
|
1840
|
+
type: 'feature',
|
|
1841
|
+
category: 'general',
|
|
1842
|
+
createdAt: '2026-03-15T18:00:00.000Z',
|
|
1843
|
+
updatedAt: '2026-03-15T18:00:00.000Z',
|
|
1844
|
+
comments: [],
|
|
1845
|
+
attachments: [],
|
|
1846
|
+
checklistItems: [],
|
|
1847
|
+
taxonomies: {},
|
|
1848
|
+
assignee: 'unassigned',
|
|
1849
|
+
referenceNumber: null,
|
|
1850
|
+
localReferenceNumber: 18
|
|
1851
|
+
};
|
|
1852
|
+
const { result, unmount } = renderHook((props) => useSyncOrchestrator(props), {
|
|
1853
|
+
initialProps: buildInput({ tasks: [localTask] })
|
|
1854
|
+
});
|
|
1855
|
+
act(() => {
|
|
1856
|
+
result.current.applyWorkspaceSyncStateSnapshot({
|
|
1857
|
+
enabled: true,
|
|
1858
|
+
phase: 'active',
|
|
1859
|
+
pullCursor: null
|
|
1860
|
+
});
|
|
1861
|
+
});
|
|
1862
|
+
await act(async () => {
|
|
1863
|
+
await result.current.pushWorkspaceChangesToCloud('sig-initial-watchdog');
|
|
1864
|
+
});
|
|
1865
|
+
expect(runWorkspacePushSyncServiceMock).toHaveBeenCalledTimes(1);
|
|
1866
|
+
runWorkspacePushSyncServiceMock.mockClear();
|
|
1867
|
+
act(() => {
|
|
1868
|
+
result.current.workspaceLastPushedSignatureRef.current = 'stale-signature';
|
|
1869
|
+
result.current.workspacePullInFlightRef.current = true;
|
|
1870
|
+
});
|
|
1871
|
+
await act(async () => {
|
|
1872
|
+
await vi.advanceTimersByTimeAsync(20_000);
|
|
1873
|
+
});
|
|
1874
|
+
expect(runWorkspacePushSyncServiceMock).not.toHaveBeenCalled();
|
|
1875
|
+
act(() => {
|
|
1876
|
+
result.current.workspacePullInFlightRef.current = false;
|
|
1877
|
+
});
|
|
1878
|
+
await act(async () => {
|
|
1879
|
+
await vi.advanceTimersByTimeAsync(12_000);
|
|
1880
|
+
});
|
|
1881
|
+
expect(runWorkspacePushSyncServiceMock).toHaveBeenCalledTimes(1);
|
|
1882
|
+
expect(runWorkspacePushSyncServiceMock).toHaveBeenCalledWith(expect.objectContaining({
|
|
1883
|
+
payload: expect.objectContaining({
|
|
1884
|
+
changes: expect.arrayContaining([
|
|
1885
|
+
expect.objectContaining({
|
|
1886
|
+
op: 'upsert',
|
|
1887
|
+
task: expect.objectContaining({
|
|
1888
|
+
id: 'task-local-watchdog'
|
|
1889
|
+
})
|
|
1890
|
+
})
|
|
1891
|
+
])
|
|
1892
|
+
})
|
|
1893
|
+
}));
|
|
1894
|
+
unmount();
|
|
1895
|
+
});
|
|
1421
1896
|
it('forces a full ai-profile push during manual retry even when the workspace signature is unchanged', async () => {
|
|
1422
1897
|
vi.stubGlobal('fetch', vi.fn((url, init) => {
|
|
1423
1898
|
if (url.includes('/api/taskforce/ui-state?key=workspace-sync')) {
|
|
@@ -1544,6 +2019,8 @@ describe('useSyncOrchestrator', () => {
|
|
|
1544
2019
|
])
|
|
1545
2020
|
})
|
|
1546
2021
|
]));
|
|
2022
|
+
const persisted = JSON.parse(String(localStorage.getItem('taskforce.syncWatermarks.v3.workspace-local-active')));
|
|
2023
|
+
expect(persisted.aiProfileWatermarks).toEqual([['ai-profile-codex', '2026-03-15T18:00:00.000Z']]);
|
|
1547
2024
|
expect(result.current.workspaceSyncPendingChanges).toBe(0);
|
|
1548
2025
|
unmount();
|
|
1549
2026
|
});
|
|
@@ -102,8 +102,14 @@ export function useTaskData({ tasks, archivedTasks, setTasks, setArchivedTasks,
|
|
|
102
102
|
const ignoreAuthGuard = options?.ignoreAuthGuard === true;
|
|
103
103
|
if (!ignoreAuthGuard && (shouldDeferProtectedApiCalls || shouldBlockProtectedApiCalls))
|
|
104
104
|
return;
|
|
105
|
-
if (!isSilent)
|
|
105
|
+
if (!isSilent) {
|
|
106
106
|
setLoadingTasks(true);
|
|
107
|
+
}
|
|
108
|
+
else {
|
|
109
|
+
// Silent refreshes should not leave the board-level loading indicator active
|
|
110
|
+
// if they supersede a visible fetch that already turned it on.
|
|
111
|
+
setLoadingTasks(false);
|
|
112
|
+
}
|
|
107
113
|
const requestWorkspaceId = String(getCurrentWorkspaceId() || '').trim();
|
|
108
114
|
tasksAbortRef.current?.abort('superseded');
|
|
109
115
|
const abortController = new AbortController();
|
|
@@ -155,9 +161,8 @@ export function useTaskData({ tasks, archivedTasks, setTasks, setArchivedTasks,
|
|
|
155
161
|
const isCurrentRequest = tasksAbortRef.current === abortController;
|
|
156
162
|
if (isCurrentRequest) {
|
|
157
163
|
tasksAbortRef.current = null;
|
|
158
|
-
}
|
|
159
|
-
if (!isSilent && isCurrentRequest)
|
|
160
164
|
setLoadingTasks(false);
|
|
165
|
+
}
|
|
161
166
|
}
|
|
162
167
|
}, [
|
|
163
168
|
getTaskRevisionKey,
|
|
@@ -243,4 +243,49 @@ describe('useTaskData', () => {
|
|
|
243
243
|
expect(setLoadingTasks).toHaveBeenLastCalledWith(false);
|
|
244
244
|
expect(setLoadingTasks).toHaveBeenCalledTimes(3);
|
|
245
245
|
});
|
|
246
|
+
it('clears loading when a silent tasks refresh replaces a visible fetch', async () => {
|
|
247
|
+
const firstRequest = makeControlledAbortableRequest({ tasks: [] });
|
|
248
|
+
const secondRequest = makeControlledAbortableRequest({ tasks: [] });
|
|
249
|
+
const fetchMock = vi.mocked(fetch);
|
|
250
|
+
const setLoadingTasks = vi.fn();
|
|
251
|
+
let requestCount = 0;
|
|
252
|
+
fetchMock.mockImplementation((_input, init) => {
|
|
253
|
+
const signal = init?.signal;
|
|
254
|
+
requestCount += 1;
|
|
255
|
+
if (requestCount === 1) {
|
|
256
|
+
firstRequest.attach(signal);
|
|
257
|
+
return firstRequest.promise;
|
|
258
|
+
}
|
|
259
|
+
secondRequest.attach(signal);
|
|
260
|
+
return secondRequest.promise;
|
|
261
|
+
});
|
|
262
|
+
const { result } = renderHook(() => useTaskData({
|
|
263
|
+
tasks: [],
|
|
264
|
+
archivedTasks: [],
|
|
265
|
+
setTasks: vi.fn(),
|
|
266
|
+
setArchivedTasks: vi.fn(),
|
|
267
|
+
setLoadingTasks,
|
|
268
|
+
getCurrentWorkspaceId: () => 'workspace-1',
|
|
269
|
+
workspaceResetKey: 'workspace-1',
|
|
270
|
+
shouldDeferProtectedApiCalls: false,
|
|
271
|
+
shouldBlockProtectedApiCalls: false,
|
|
272
|
+
handleUnauthorized: vi.fn(),
|
|
273
|
+
authRequiredForApi: false
|
|
274
|
+
}));
|
|
275
|
+
let firstPromise;
|
|
276
|
+
let secondPromise;
|
|
277
|
+
await act(async () => {
|
|
278
|
+
firstPromise = result.current.fetchTasks(false);
|
|
279
|
+
secondPromise = result.current.fetchTasks(true);
|
|
280
|
+
await Promise.resolve();
|
|
281
|
+
});
|
|
282
|
+
expect(setLoadingTasks).toHaveBeenNthCalledWith(1, true);
|
|
283
|
+
expect(setLoadingTasks).toHaveBeenNthCalledWith(2, false);
|
|
284
|
+
await act(async () => {
|
|
285
|
+
secondRequest.resolve();
|
|
286
|
+
await secondPromise;
|
|
287
|
+
await firstPromise;
|
|
288
|
+
});
|
|
289
|
+
expect(setLoadingTasks).toHaveBeenLastCalledWith(false);
|
|
290
|
+
});
|
|
246
291
|
});
|
|
@@ -24,8 +24,9 @@ export interface UseTaskMutationsProps {
|
|
|
24
24
|
pushWorkspaceChangesToCloud: (sig: string) => void;
|
|
25
25
|
workspacePendingSignatureRef: MutableRefObject<string | null>;
|
|
26
26
|
workspaceDeletedTaskIdsRef: MutableRefObject<Set<string>>;
|
|
27
|
+
workspaceDeletedTaskWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
27
28
|
}
|
|
28
|
-
export declare function useTaskMutations({ tasks, archivedTasks, editingTaskId, setTasks, setArchivedTasks, setDeletedTasks, setError, resetForm, setActiveTab, fetchTasks, fetchArchive, fetchDeletedTasks, mergeTaskFromServer, pushNotice, cloudAuthConfigured, runtimeMode, isAuthenticated, workspaceCloudSyncEnabled, buildWorkspaceSyncSignature, pushWorkspaceChangesToCloud, workspacePendingSignatureRef, workspaceDeletedTaskIdsRef, }: UseTaskMutationsProps): {
|
|
29
|
+
export declare function useTaskMutations({ tasks, archivedTasks, editingTaskId, setTasks, setArchivedTasks, setDeletedTasks, setError, resetForm, setActiveTab, fetchTasks, fetchArchive, fetchDeletedTasks, mergeTaskFromServer, pushNotice, cloudAuthConfigured, runtimeMode, isAuthenticated, workspaceCloudSyncEnabled, buildWorkspaceSyncSignature, pushWorkspaceChangesToCloud, workspacePendingSignatureRef, workspaceDeletedTaskIdsRef, workspaceDeletedTaskWatermarksRef, }: UseTaskMutationsProps): {
|
|
29
30
|
copiedId: string | null;
|
|
30
31
|
handleDelete: (id: string, archive?: boolean, options?: {
|
|
31
32
|
skipConfirm?: boolean;
|