@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
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { parseAiProfileSurfaceType } from '../../shared/aiProfileSurfaceType.js';
|
|
2
|
+
import { parseAiProfileSeatScope } from '../../shared/aiProfileSeatScope.js';
|
|
3
|
+
import { normalizeSyncNullableId, normalizeSyncNullableIsoString, normalizeSyncNullableString, normalizeSyncSameOriginAssetUrl, } from '../../sync/syncFieldSemantics.js';
|
|
2
4
|
export const USER_GLOBAL_SYNC_META_KEY = 'taskforce.userGlobalSyncMeta.v1';
|
|
3
5
|
export const SYNC_DEBUG_LOG_KEY = 'taskforce.syncDebug.v1';
|
|
4
6
|
export const WORKSPACE_BOOTSTRAP_TIMEOUT_MS = 120_000;
|
|
@@ -36,29 +38,25 @@ export function normalizeWorkspaceSyncAiProfileSnapshotEntry(entry) {
|
|
|
36
38
|
username: String(entry?.username || '').trim(),
|
|
37
39
|
icon: String(entry?.icon || 'Bot').trim() || 'Bot',
|
|
38
40
|
color: String(entry?.color || '#8b5cf6').trim() || '#8b5cf6',
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
role:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
provider: typeof entry?.provider === 'string' && entry.provider.trim().length > 0
|
|
46
|
-
? entry.provider.trim()
|
|
47
|
-
: null,
|
|
48
|
-
model: typeof entry?.model === 'string' && entry.model.trim().length > 0
|
|
49
|
-
? entry.model.trim()
|
|
50
|
-
: null,
|
|
41
|
+
avatarUrl: normalizeSyncSameOriginAssetUrl(entry?.avatarUrl ?? entry?.avatar_url),
|
|
42
|
+
avatarSourceUrl: normalizeSyncSameOriginAssetUrl(entry?.avatarSourceUrl ?? entry?.avatar_source_url),
|
|
43
|
+
description: normalizeSyncNullableString(entry?.description),
|
|
44
|
+
role: normalizeSyncNullableString(entry?.role),
|
|
45
|
+
provider: normalizeSyncNullableString(entry?.provider),
|
|
46
|
+
model: normalizeSyncNullableString(entry?.model),
|
|
51
47
|
surfaceType: parseAiProfileSurfaceType(entry?.surfaceType ?? entry?.surface_type),
|
|
48
|
+
seatScope: parseAiProfileSeatScope(entry?.seatScope ?? entry?.seat_scope),
|
|
52
49
|
providerMetadata: metadata && typeof metadata === 'object' && !Array.isArray(metadata)
|
|
53
50
|
? metadata
|
|
54
51
|
: null,
|
|
52
|
+
archivedAt: normalizeSyncNullableIsoString(entry?.archivedAt ?? entry?.archived_at),
|
|
53
|
+
archivedBy: normalizeSyncNullableId(entry?.archivedBy ?? entry?.archived_by),
|
|
54
|
+
archivedReason: normalizeSyncNullableString(entry?.archivedReason ?? entry?.archived_reason),
|
|
55
|
+
mergedIntoProfileId: normalizeSyncNullableId(entry?.mergedIntoProfileId ?? entry?.merged_into_profile_id),
|
|
56
|
+
rosterStateUpdatedAt: normalizeSyncNullableIsoString(entry?.rosterStateUpdatedAt ?? entry?.roster_state_updated_at),
|
|
55
57
|
createdAt: String(entry?.createdAt || entry?.created_at || '').trim(),
|
|
56
58
|
updatedAt: String(entry?.updatedAt || entry?.updated_at || entry?.createdAt || entry?.created_at || '').trim(),
|
|
57
|
-
lastActiveAt:
|
|
58
|
-
? entry.lastActiveAt.trim()
|
|
59
|
-
: typeof entry?.last_active_at === 'string' && entry.last_active_at.trim().length > 0
|
|
60
|
-
? entry.last_active_at.trim()
|
|
61
|
-
: null
|
|
59
|
+
lastActiveAt: normalizeSyncNullableIsoString(entry?.lastActiveAt ?? entry?.last_active_at)
|
|
62
60
|
};
|
|
63
61
|
}
|
|
64
62
|
export function readUserGlobalSyncMeta() {
|
|
@@ -150,6 +148,52 @@ export function flattenTaskEvents(tasks, archivedTasks) {
|
|
|
150
148
|
return left.id.localeCompare(right.id);
|
|
151
149
|
});
|
|
152
150
|
}
|
|
151
|
+
export function buildPersistedSyncWatermarksSnapshot(data) {
|
|
152
|
+
return {
|
|
153
|
+
taskIds: Array.from(data.taskIds.values()),
|
|
154
|
+
taskWatermarks: Array.from(data.taskWatermarks.entries()),
|
|
155
|
+
taskChangeKeys: Array.from((data.taskChangeKeys || new Map()).entries()),
|
|
156
|
+
initiativeWatermarks: Array.from(data.initiativeWatermarks.entries()),
|
|
157
|
+
workstreamWatermarks: Array.from(data.workstreamWatermarks.entries()),
|
|
158
|
+
aiProfileWatermarks: Array.from(data.aiProfileWatermarks.entries()),
|
|
159
|
+
aiProfileChangeKeys: Array.from((data.aiProfileChangeKeys || new Map()).entries()),
|
|
160
|
+
documentWatermarks: Array.from(data.documentWatermarks.entries()),
|
|
161
|
+
assetWatermarks: Array.from(data.assetWatermarks.entries()),
|
|
162
|
+
documentReviewSessionWatermarks: Array.from(data.documentReviewSessionWatermarks.entries()),
|
|
163
|
+
documentReviewCommentWatermarks: Array.from(data.documentReviewCommentWatermarks.entries()),
|
|
164
|
+
annotatedAttachmentSessionWatermarks: Array.from(data.annotatedAttachmentSessionWatermarks.entries()),
|
|
165
|
+
taskEventWatermarks: Array.from(data.taskEventWatermarks.entries()),
|
|
166
|
+
taxonomyStateFingerprint: typeof data.taxonomyStateFingerprint === 'string' ? data.taxonomyStateFingerprint : ''
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
export function parsePersistedSyncWatermarksSnapshot(snapshot, taxonomyStateFingerprint) {
|
|
170
|
+
if (!snapshot || typeof snapshot !== 'object')
|
|
171
|
+
return null;
|
|
172
|
+
const savedTaxonomyStateFingerprint = typeof snapshot.taxonomyStateFingerprint === 'string'
|
|
173
|
+
? snapshot.taxonomyStateFingerprint
|
|
174
|
+
: '';
|
|
175
|
+
const taskWatermarks = (!taxonomyStateFingerprint || !savedTaxonomyStateFingerprint || savedTaxonomyStateFingerprint === taxonomyStateFingerprint)
|
|
176
|
+
? new Map(Array.isArray(snapshot.taskWatermarks) ? snapshot.taskWatermarks : [])
|
|
177
|
+
: new Map();
|
|
178
|
+
const taskIds = new Set(Array.isArray(snapshot.taskIds)
|
|
179
|
+
? snapshot.taskIds.map((entry) => String(entry || '').trim()).filter((entry) => entry.length > 0)
|
|
180
|
+
: Array.from(taskWatermarks.keys()));
|
|
181
|
+
return {
|
|
182
|
+
taskIds,
|
|
183
|
+
taskWatermarks,
|
|
184
|
+
taskChangeKeys: new Map(Array.isArray(snapshot.taskChangeKeys) ? snapshot.taskChangeKeys : []),
|
|
185
|
+
initiativeWatermarks: new Map(Array.isArray(snapshot.initiativeWatermarks) ? snapshot.initiativeWatermarks : []),
|
|
186
|
+
workstreamWatermarks: new Map(Array.isArray(snapshot.workstreamWatermarks) ? snapshot.workstreamWatermarks : []),
|
|
187
|
+
aiProfileWatermarks: new Map(Array.isArray(snapshot.aiProfileWatermarks) ? snapshot.aiProfileWatermarks : []),
|
|
188
|
+
aiProfileChangeKeys: new Map(Array.isArray(snapshot.aiProfileChangeKeys) ? snapshot.aiProfileChangeKeys : []),
|
|
189
|
+
documentWatermarks: new Map(Array.isArray(snapshot.documentWatermarks) ? snapshot.documentWatermarks : []),
|
|
190
|
+
assetWatermarks: new Map(Array.isArray(snapshot.assetWatermarks) ? snapshot.assetWatermarks : []),
|
|
191
|
+
documentReviewSessionWatermarks: new Map(Array.isArray(snapshot.documentReviewSessionWatermarks) ? snapshot.documentReviewSessionWatermarks : []),
|
|
192
|
+
documentReviewCommentWatermarks: new Map(Array.isArray(snapshot.documentReviewCommentWatermarks) ? snapshot.documentReviewCommentWatermarks : []),
|
|
193
|
+
annotatedAttachmentSessionWatermarks: new Map(Array.isArray(snapshot.annotatedAttachmentSessionWatermarks) ? snapshot.annotatedAttachmentSessionWatermarks : []),
|
|
194
|
+
taskEventWatermarks: new Map(Array.isArray(snapshot.taskEventWatermarks) ? snapshot.taskEventWatermarks : []),
|
|
195
|
+
};
|
|
196
|
+
}
|
|
153
197
|
export function readPersistedSyncWatermarks(workspaceId, taxonomyStateFingerprint) {
|
|
154
198
|
if (typeof window === 'undefined')
|
|
155
199
|
return null;
|
|
@@ -159,25 +203,9 @@ export function readPersistedSyncWatermarks(workspaceId, taxonomyStateFingerprin
|
|
|
159
203
|
if (!raw)
|
|
160
204
|
return null;
|
|
161
205
|
const parsed = JSON.parse(raw);
|
|
162
|
-
if (!parsed || (parsed.v !== 2 && parsed.v !== 3 && parsed.v !== 4 && parsed.v !== 5 && parsed.v !== 6 && parsed.v !== 7 && parsed.v !== 8))
|
|
206
|
+
if (!parsed || (parsed.v !== 2 && parsed.v !== 3 && parsed.v !== 4 && parsed.v !== 5 && parsed.v !== 6 && parsed.v !== 7 && parsed.v !== 8 && parsed.v !== 9 && parsed.v !== 10 && parsed.v !== 11))
|
|
163
207
|
return null;
|
|
164
|
-
|
|
165
|
-
? parsed.taxonomyStateFingerprint
|
|
166
|
-
: '';
|
|
167
|
-
const taskWatermarks = (!taxonomyStateFingerprint || !savedTaxonomyStateFingerprint || savedTaxonomyStateFingerprint === taxonomyStateFingerprint)
|
|
168
|
-
? new Map(Array.isArray(parsed.taskWatermarks) ? parsed.taskWatermarks : [])
|
|
169
|
-
: new Map();
|
|
170
|
-
return {
|
|
171
|
-
taskWatermarks,
|
|
172
|
-
initiativeWatermarks: new Map(Array.isArray(parsed.initiativeWatermarks) ? parsed.initiativeWatermarks : []),
|
|
173
|
-
workstreamWatermarks: new Map(Array.isArray(parsed.workstreamWatermarks) ? parsed.workstreamWatermarks : []),
|
|
174
|
-
documentWatermarks: new Map(Array.isArray(parsed.documentWatermarks) ? parsed.documentWatermarks : []),
|
|
175
|
-
assetWatermarks: new Map(Array.isArray(parsed.assetWatermarks) ? parsed.assetWatermarks : []),
|
|
176
|
-
documentReviewSessionWatermarks: new Map(Array.isArray(parsed.documentReviewSessionWatermarks) ? parsed.documentReviewSessionWatermarks : []),
|
|
177
|
-
documentReviewCommentWatermarks: new Map(Array.isArray(parsed.documentReviewCommentWatermarks) ? parsed.documentReviewCommentWatermarks : []),
|
|
178
|
-
annotatedAttachmentSessionWatermarks: new Map(Array.isArray(parsed.annotatedAttachmentSessionWatermarks) ? parsed.annotatedAttachmentSessionWatermarks : []),
|
|
179
|
-
taskEventWatermarks: new Map(Array.isArray(parsed.taskEventWatermarks) ? parsed.taskEventWatermarks : []),
|
|
180
|
-
};
|
|
208
|
+
return parsePersistedSyncWatermarksSnapshot(parsed, taxonomyStateFingerprint);
|
|
181
209
|
}
|
|
182
210
|
catch {
|
|
183
211
|
return null;
|
|
@@ -185,25 +213,18 @@ export function readPersistedSyncWatermarks(workspaceId, taxonomyStateFingerprin
|
|
|
185
213
|
}
|
|
186
214
|
export function savePersistedSyncWatermarks(workspaceId, data) {
|
|
187
215
|
if (typeof window === 'undefined')
|
|
188
|
-
return;
|
|
216
|
+
return false;
|
|
189
217
|
try {
|
|
190
218
|
const key = `${WORKSPACE_SYNC_WATERMARKS_KEY_PREFIX}.${workspaceId}`;
|
|
191
219
|
window.localStorage.setItem(key, JSON.stringify({
|
|
192
|
-
v:
|
|
220
|
+
v: 11,
|
|
193
221
|
savedAt: new Date().toISOString(),
|
|
194
|
-
|
|
195
|
-
initiativeWatermarks: Array.from(data.initiativeWatermarks.entries()),
|
|
196
|
-
workstreamWatermarks: Array.from(data.workstreamWatermarks.entries()),
|
|
197
|
-
documentWatermarks: Array.from(data.documentWatermarks.entries()),
|
|
198
|
-
assetWatermarks: Array.from(data.assetWatermarks.entries()),
|
|
199
|
-
documentReviewSessionWatermarks: Array.from(data.documentReviewSessionWatermarks.entries()),
|
|
200
|
-
documentReviewCommentWatermarks: Array.from(data.documentReviewCommentWatermarks.entries()),
|
|
201
|
-
annotatedAttachmentSessionWatermarks: Array.from(data.annotatedAttachmentSessionWatermarks.entries()),
|
|
202
|
-
taskEventWatermarks: Array.from(data.taskEventWatermarks.entries()),
|
|
203
|
-
taxonomyStateFingerprint: typeof data.taxonomyStateFingerprint === 'string' ? data.taxonomyStateFingerprint : ''
|
|
222
|
+
...buildPersistedSyncWatermarksSnapshot(data)
|
|
204
223
|
}));
|
|
224
|
+
return true;
|
|
205
225
|
}
|
|
206
226
|
catch {
|
|
207
227
|
// localStorage may be full or unavailable; non-fatal
|
|
228
|
+
return false;
|
|
208
229
|
}
|
|
209
230
|
}
|
|
@@ -8,11 +8,13 @@ describe('orchestratorShared sync watermarks', () => {
|
|
|
8
8
|
it('keeps persisted sync watermarks available across long idle periods', () => {
|
|
9
9
|
const key = `${WORKSPACE_SYNC_WATERMARKS_KEY_PREFIX}.${workspaceId}`;
|
|
10
10
|
localStorage.setItem(key, JSON.stringify({
|
|
11
|
-
v:
|
|
11
|
+
v: 9,
|
|
12
12
|
savedAt: '2026-04-14T10:00:00.000Z',
|
|
13
|
+
taskIds: ['task-1'],
|
|
13
14
|
taskWatermarks: [['task-1', '2026-04-14T09:00:00.000Z']],
|
|
14
15
|
initiativeWatermarks: [['initiative-1', '2026-04-14T09:00:00.000Z']],
|
|
15
16
|
workstreamWatermarks: [],
|
|
17
|
+
aiProfileWatermarks: [['ai-profile-1', '2026-04-14T09:15:00.000Z']],
|
|
16
18
|
documentWatermarks: [],
|
|
17
19
|
assetWatermarks: [],
|
|
18
20
|
documentReviewSessionWatermarks: [],
|
|
@@ -23,15 +25,40 @@ describe('orchestratorShared sync watermarks', () => {
|
|
|
23
25
|
}));
|
|
24
26
|
const persisted = readPersistedSyncWatermarks(workspaceId, '');
|
|
25
27
|
expect(persisted).not.toBeNull();
|
|
28
|
+
expect(Array.from(persisted?.taskIds || [])).toEqual(['task-1']);
|
|
26
29
|
expect(persisted?.taskWatermarks.get('task-1')).toBe('2026-04-14T09:00:00.000Z');
|
|
27
30
|
expect(persisted?.initiativeWatermarks.get('initiative-1')).toBe('2026-04-14T09:00:00.000Z');
|
|
31
|
+
expect(persisted?.aiProfileWatermarks.get('ai-profile-1')).toBe('2026-04-14T09:15:00.000Z');
|
|
28
32
|
expect(persisted?.taskEventWatermarks.get('event-1')).toBe('2026-04-14T09:30:00.000Z');
|
|
29
33
|
});
|
|
34
|
+
it('persists task and ai-profile change keys alongside legacy watermarks', () => {
|
|
35
|
+
savePersistedSyncWatermarks(workspaceId, {
|
|
36
|
+
taskIds: new Set(['task-1']),
|
|
37
|
+
taskWatermarks: new Map([['task-1', '2026-04-14T09:00:00.000Z']]),
|
|
38
|
+
taskChangeKeys: new Map([['task-1', 'task-change-key-1']]),
|
|
39
|
+
initiativeWatermarks: new Map(),
|
|
40
|
+
workstreamWatermarks: new Map(),
|
|
41
|
+
aiProfileWatermarks: new Map([['ai-profile-1', '2026-04-14T09:15:00.000Z']]),
|
|
42
|
+
aiProfileChangeKeys: new Map([['ai-profile-1', 'ai-change-key-1']]),
|
|
43
|
+
documentWatermarks: new Map(),
|
|
44
|
+
assetWatermarks: new Map(),
|
|
45
|
+
documentReviewSessionWatermarks: new Map(),
|
|
46
|
+
documentReviewCommentWatermarks: new Map(),
|
|
47
|
+
annotatedAttachmentSessionWatermarks: new Map(),
|
|
48
|
+
taskEventWatermarks: new Map(),
|
|
49
|
+
taxonomyStateFingerprint: 'fingerprint-a'
|
|
50
|
+
});
|
|
51
|
+
const persisted = readPersistedSyncWatermarks(workspaceId, 'fingerprint-a');
|
|
52
|
+
expect(persisted?.taskChangeKeys?.get('task-1')).toBe('task-change-key-1');
|
|
53
|
+
expect(persisted?.aiProfileChangeKeys?.get('ai-profile-1')).toBe('ai-change-key-1');
|
|
54
|
+
});
|
|
30
55
|
it('still clears task watermarks when the taxonomy fingerprint changes', () => {
|
|
31
56
|
savePersistedSyncWatermarks(workspaceId, {
|
|
57
|
+
taskIds: new Set(['task-1']),
|
|
32
58
|
taskWatermarks: new Map([['task-1', '2026-04-14T09:00:00.000Z']]),
|
|
33
59
|
initiativeWatermarks: new Map([['initiative-1', '2026-04-14T09:00:00.000Z']]),
|
|
34
60
|
workstreamWatermarks: new Map(),
|
|
61
|
+
aiProfileWatermarks: new Map([['ai-profile-1', '2026-04-14T09:15:00.000Z']]),
|
|
35
62
|
documentWatermarks: new Map(),
|
|
36
63
|
assetWatermarks: new Map(),
|
|
37
64
|
documentReviewSessionWatermarks: new Map(),
|
|
@@ -42,8 +69,30 @@ describe('orchestratorShared sync watermarks', () => {
|
|
|
42
69
|
});
|
|
43
70
|
const persisted = readPersistedSyncWatermarks(workspaceId, 'fingerprint-b');
|
|
44
71
|
expect(persisted).not.toBeNull();
|
|
72
|
+
expect(Array.from(persisted?.taskIds || [])).toEqual(['task-1']);
|
|
45
73
|
expect(persisted?.taskWatermarks.size).toBe(0);
|
|
46
74
|
expect(persisted?.initiativeWatermarks.get('initiative-1')).toBe('2026-04-14T09:00:00.000Z');
|
|
75
|
+
expect(persisted?.aiProfileWatermarks.get('ai-profile-1')).toBe('2026-04-14T09:15:00.000Z');
|
|
47
76
|
expect(persisted?.taskEventWatermarks.get('event-1')).toBe('2026-04-14T09:30:00.000Z');
|
|
48
77
|
});
|
|
78
|
+
it('falls back to task watermark keys when older persisted snapshots do not have taskIds', () => {
|
|
79
|
+
const key = `${WORKSPACE_SYNC_WATERMARKS_KEY_PREFIX}.${workspaceId}`;
|
|
80
|
+
localStorage.setItem(key, JSON.stringify({
|
|
81
|
+
v: 9,
|
|
82
|
+
savedAt: '2026-04-14T10:00:00.000Z',
|
|
83
|
+
taskWatermarks: [['task-legacy-1', '2026-04-14T09:00:00.000Z']],
|
|
84
|
+
initiativeWatermarks: [],
|
|
85
|
+
workstreamWatermarks: [],
|
|
86
|
+
aiProfileWatermarks: [],
|
|
87
|
+
documentWatermarks: [],
|
|
88
|
+
assetWatermarks: [],
|
|
89
|
+
documentReviewSessionWatermarks: [],
|
|
90
|
+
documentReviewCommentWatermarks: [],
|
|
91
|
+
annotatedAttachmentSessionWatermarks: [],
|
|
92
|
+
taskEventWatermarks: [],
|
|
93
|
+
taxonomyStateFingerprint: ''
|
|
94
|
+
}));
|
|
95
|
+
const persisted = readPersistedSyncWatermarks(workspaceId, '');
|
|
96
|
+
expect(Array.from(persisted?.taskIds || [])).toEqual(['task-legacy-1']);
|
|
97
|
+
});
|
|
49
98
|
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { WorkspaceSyncPhase } from '../../sync/workspaceSyncState';
|
|
2
|
+
export interface WorkspacePullRequestPlan {
|
|
3
|
+
bootstrap: boolean;
|
|
4
|
+
cursor: string | null;
|
|
5
|
+
successEventType: 'bootstrap' | 'pull';
|
|
6
|
+
}
|
|
7
|
+
interface ResolveWorkspacePullRequestPlanArgs {
|
|
8
|
+
workspaceSyncPhase: WorkspaceSyncPhase;
|
|
9
|
+
forceCursorNull?: boolean;
|
|
10
|
+
currentCursor: string | null;
|
|
11
|
+
}
|
|
12
|
+
interface ResolveWorkspacePullSuccessPlanArgs {
|
|
13
|
+
workspaceSyncPhase: WorkspaceSyncPhase;
|
|
14
|
+
forceCursorNull?: boolean;
|
|
15
|
+
startupFullReconcileRan: boolean;
|
|
16
|
+
pendingSignature: string;
|
|
17
|
+
fallbackSignature: string;
|
|
18
|
+
lastPushedSignature: string;
|
|
19
|
+
}
|
|
20
|
+
export interface WorkspacePullSuccessPlan {
|
|
21
|
+
successEventType: 'bootstrap' | 'pull';
|
|
22
|
+
shouldCaptureAttachBootstrapBaseline: boolean;
|
|
23
|
+
shouldClearPendingSignature: boolean;
|
|
24
|
+
shouldRefreshReferenceSnapshots: boolean;
|
|
25
|
+
shouldSeedWorkspaceSnapshotPushBaseline: boolean;
|
|
26
|
+
shouldScheduleStartupFullReconcile: boolean;
|
|
27
|
+
deferredPushSignature: string | null;
|
|
28
|
+
}
|
|
29
|
+
export declare function resolveWorkspacePullRequestPlan({ workspaceSyncPhase, forceCursorNull, currentCursor }: ResolveWorkspacePullRequestPlanArgs): WorkspacePullRequestPlan;
|
|
30
|
+
export declare function resolveWorkspacePullSuccessPlan({ workspaceSyncPhase, forceCursorNull, startupFullReconcileRan, pendingSignature, fallbackSignature, lastPushedSignature }: ResolveWorkspacePullSuccessPlanArgs): WorkspacePullSuccessPlan;
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export function resolveWorkspacePullRequestPlan({ workspaceSyncPhase, forceCursorNull, currentCursor }) {
|
|
2
|
+
const bootstrap = workspaceSyncPhase === 'attach-cloud';
|
|
3
|
+
return {
|
|
4
|
+
bootstrap,
|
|
5
|
+
cursor: bootstrap || forceCursorNull === true ? null : currentCursor,
|
|
6
|
+
successEventType: bootstrap ? 'bootstrap' : 'pull'
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export function resolveWorkspacePullSuccessPlan({ workspaceSyncPhase, forceCursorNull, startupFullReconcileRan, pendingSignature, fallbackSignature, lastPushedSignature }) {
|
|
10
|
+
const bootstrap = workspaceSyncPhase === 'attach-cloud';
|
|
11
|
+
const nextSignature = pendingSignature || fallbackSignature;
|
|
12
|
+
const deferredPushSignature = (!bootstrap
|
|
13
|
+
&& nextSignature
|
|
14
|
+
&& nextSignature !== lastPushedSignature) ? nextSignature : null;
|
|
15
|
+
return {
|
|
16
|
+
successEventType: bootstrap ? 'bootstrap' : 'pull',
|
|
17
|
+
shouldCaptureAttachBootstrapBaseline: bootstrap,
|
|
18
|
+
shouldClearPendingSignature: bootstrap || deferredPushSignature !== null,
|
|
19
|
+
shouldRefreshReferenceSnapshots: bootstrap,
|
|
20
|
+
shouldSeedWorkspaceSnapshotPushBaseline: bootstrap,
|
|
21
|
+
shouldScheduleStartupFullReconcile: !forceCursorNull && !bootstrap && !startupFullReconcileRan,
|
|
22
|
+
deferredPushSignature
|
|
23
|
+
};
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { describe, expect, it } from 'vitest';
|
|
2
|
+
import { resolveWorkspacePullRequestPlan, resolveWorkspacePullSuccessPlan, } from './pullLifecycle';
|
|
3
|
+
describe('pull lifecycle', () => {
|
|
4
|
+
it('treats attach-cloud pulls as bootstrap pulls with a null cursor', () => {
|
|
5
|
+
expect(resolveWorkspacePullRequestPlan({
|
|
6
|
+
workspaceSyncPhase: 'attach-cloud',
|
|
7
|
+
forceCursorNull: false,
|
|
8
|
+
currentCursor: 'cursor-1'
|
|
9
|
+
})).toEqual({
|
|
10
|
+
bootstrap: true,
|
|
11
|
+
cursor: null,
|
|
12
|
+
successEventType: 'bootstrap'
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
it('keeps the saved cursor for normal incremental pulls', () => {
|
|
16
|
+
expect(resolveWorkspacePullRequestPlan({
|
|
17
|
+
workspaceSyncPhase: 'active',
|
|
18
|
+
forceCursorNull: false,
|
|
19
|
+
currentCursor: 'cursor-1'
|
|
20
|
+
})).toEqual({
|
|
21
|
+
bootstrap: false,
|
|
22
|
+
cursor: 'cursor-1',
|
|
23
|
+
successEventType: 'pull'
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
it('marks attach-cloud success for reference refresh and baseline seeding without a follow-up push', () => {
|
|
27
|
+
expect(resolveWorkspacePullSuccessPlan({
|
|
28
|
+
workspaceSyncPhase: 'attach-cloud',
|
|
29
|
+
forceCursorNull: false,
|
|
30
|
+
startupFullReconcileRan: false,
|
|
31
|
+
pendingSignature: 'sig-pending',
|
|
32
|
+
fallbackSignature: 'sig-fallback',
|
|
33
|
+
lastPushedSignature: ''
|
|
34
|
+
})).toEqual({
|
|
35
|
+
successEventType: 'bootstrap',
|
|
36
|
+
shouldCaptureAttachBootstrapBaseline: true,
|
|
37
|
+
shouldClearPendingSignature: true,
|
|
38
|
+
shouldRefreshReferenceSnapshots: true,
|
|
39
|
+
shouldSeedWorkspaceSnapshotPushBaseline: true,
|
|
40
|
+
shouldScheduleStartupFullReconcile: false,
|
|
41
|
+
deferredPushSignature: null
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
it('schedules a one-time startup full reconcile and deferred push after the first normal pull', () => {
|
|
45
|
+
expect(resolveWorkspacePullSuccessPlan({
|
|
46
|
+
workspaceSyncPhase: 'active',
|
|
47
|
+
forceCursorNull: false,
|
|
48
|
+
startupFullReconcileRan: false,
|
|
49
|
+
pendingSignature: 'sig-pending',
|
|
50
|
+
fallbackSignature: 'sig-fallback',
|
|
51
|
+
lastPushedSignature: 'sig-old'
|
|
52
|
+
})).toEqual({
|
|
53
|
+
successEventType: 'pull',
|
|
54
|
+
shouldCaptureAttachBootstrapBaseline: false,
|
|
55
|
+
shouldClearPendingSignature: true,
|
|
56
|
+
shouldRefreshReferenceSnapshots: false,
|
|
57
|
+
shouldSeedWorkspaceSnapshotPushBaseline: false,
|
|
58
|
+
shouldScheduleStartupFullReconcile: true,
|
|
59
|
+
deferredPushSignature: 'sig-pending'
|
|
60
|
+
});
|
|
61
|
+
});
|
|
62
|
+
it('does not schedule a second startup full reconcile or redundant deferred push', () => {
|
|
63
|
+
expect(resolveWorkspacePullSuccessPlan({
|
|
64
|
+
workspaceSyncPhase: 'active',
|
|
65
|
+
forceCursorNull: true,
|
|
66
|
+
startupFullReconcileRan: true,
|
|
67
|
+
pendingSignature: '',
|
|
68
|
+
fallbackSignature: 'sig-current',
|
|
69
|
+
lastPushedSignature: 'sig-current'
|
|
70
|
+
})).toEqual({
|
|
71
|
+
successEventType: 'pull',
|
|
72
|
+
shouldCaptureAttachBootstrapBaseline: false,
|
|
73
|
+
shouldClearPendingSignature: false,
|
|
74
|
+
shouldRefreshReferenceSnapshots: false,
|
|
75
|
+
shouldSeedWorkspaceSnapshotPushBaseline: false,
|
|
76
|
+
shouldScheduleStartupFullReconcile: false,
|
|
77
|
+
deferredPushSignature: null
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
});
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { MutableRefObject } from 'react';
|
|
2
|
+
import type { WorkspaceSyncBaselineResetReason } from '../../sync/workspaceSyncModel';
|
|
2
3
|
import type { WorkspaceSyncPhase } from '../../sync/workspaceSyncState';
|
|
4
|
+
type SyncEventType = 'pull' | 'handshake' | 'bootstrap' | 'apply' | 'push';
|
|
3
5
|
interface CreateSyncRecoveryCoordinatorArgs {
|
|
4
6
|
currentWorkspaceId: string;
|
|
5
|
-
taxonomyStateFingerprint: string;
|
|
6
7
|
workspaceCloudSyncEnabled: boolean;
|
|
7
8
|
workspaceSyncPhase: WorkspaceSyncPhase;
|
|
8
9
|
workspaceLastPullAt: string | null;
|
|
@@ -18,12 +19,14 @@ interface CreateSyncRecoveryCoordinatorArgs {
|
|
|
18
19
|
workspacePendingSignatureRef: MutableRefObject<string>;
|
|
19
20
|
workspaceLastPushedSignatureRef: MutableRefObject<string>;
|
|
20
21
|
workspaceLastPushedWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
22
|
+
workspaceLastPushedTaskChangeKeysRef: MutableRefObject<Map<string, string>>;
|
|
21
23
|
workspaceLastPushedInitiativeIdsRef: MutableRefObject<Set<string>>;
|
|
22
24
|
workspaceLastPushedInitiativeWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
23
25
|
workspaceLastPushedWorkstreamIdsRef: MutableRefObject<Set<string>>;
|
|
24
26
|
workspaceLastPushedWorkstreamWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
25
27
|
workspaceLastPushedAiProfileIdsRef: MutableRefObject<Set<string>>;
|
|
26
28
|
workspaceLastPushedAiProfileWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
29
|
+
workspaceLastPushedAiProfileChangeKeysRef: MutableRefObject<Map<string, string>>;
|
|
27
30
|
workspaceLastPushedDocumentPathsRef: MutableRefObject<Set<string>>;
|
|
28
31
|
workspaceLastPushedDocumentWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
29
32
|
workspaceLastPushedAssetPathsRef: MutableRefObject<Set<string>>;
|
|
@@ -35,6 +38,7 @@ interface CreateSyncRecoveryCoordinatorArgs {
|
|
|
35
38
|
workspaceLastPushedAnnotatedAttachmentSessionIdsRef: MutableRefObject<Set<string>>;
|
|
36
39
|
workspaceLastPushedAnnotatedAttachmentSessionWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
37
40
|
workspaceLastPushedTaskEventWatermarksRef: MutableRefObject<Map<string, string>>;
|
|
41
|
+
workspaceBaselineResetReasonRef: MutableRefObject<WorkspaceSyncBaselineResetReason | null>;
|
|
38
42
|
bootstrapPhaseStartedAtRef: MutableRefObject<number | null>;
|
|
39
43
|
bootstrapLastProgressAtRef: MutableRefObject<number | null>;
|
|
40
44
|
acquireWorkspaceSyncLease: (workspaceId: string, owner: 'pull' | 'push' | 'repair') => Promise<boolean>;
|
|
@@ -43,11 +47,21 @@ interface CreateSyncRecoveryCoordinatorArgs {
|
|
|
43
47
|
clearWorkspaceRetry: () => void;
|
|
44
48
|
clearWorkspaceIssue: () => void;
|
|
45
49
|
reportWorkspaceWindowContention: (operation: 'pull' | 'push' | 'repair') => void;
|
|
50
|
+
reportSyncEvent: (workspaceId: string, event: {
|
|
51
|
+
eventType: SyncEventType;
|
|
52
|
+
status: 'success' | 'error';
|
|
53
|
+
statusCode?: number;
|
|
54
|
+
errorMessage?: string;
|
|
55
|
+
changeCount?: number;
|
|
56
|
+
requestMs?: number;
|
|
57
|
+
details?: Record<string, unknown>;
|
|
58
|
+
}) => void;
|
|
46
59
|
persistWorkspaceSyncPatch: (patch: {
|
|
47
60
|
phase: WorkspaceSyncPhase;
|
|
48
61
|
pullCursor: null;
|
|
49
62
|
lastErrorMessage: null;
|
|
50
63
|
}) => Promise<unknown>;
|
|
64
|
+
persistWorkspaceSyncWatermarksSnapshotBestEffort: () => boolean;
|
|
51
65
|
buildWorkspaceSyncSignature: () => string;
|
|
52
66
|
pullWorkspaceChangesFromCloud: (options?: {
|
|
53
67
|
repairMode?: boolean;
|
|
@@ -62,7 +76,7 @@ interface CreateSyncRecoveryCoordinatorArgs {
|
|
|
62
76
|
isAuthenticated: boolean;
|
|
63
77
|
checkAuthSession: () => Promise<boolean>;
|
|
64
78
|
}
|
|
65
|
-
export declare function createSyncRecoveryCoordinator({ currentWorkspaceId,
|
|
79
|
+
export declare function createSyncRecoveryCoordinator({ currentWorkspaceId, workspaceCloudSyncEnabled, workspaceSyncPhase, workspaceLastPullAt, lastBootstrapPhaseRef, workspaceRepairModeRef, workspaceForceFullAiProfilePushRef, workspaceStartupRepairRanRef, workspaceStartupFullReconcileRanRef, workspaceFullReconcileInFlightRef, workspacePullCursorRef, workspaceAttachBootstrapBaselineSignatureRef, workspaceCaptureAttachBootstrapBaselineRef, workspacePendingSignatureRef, workspaceLastPushedSignatureRef, workspaceLastPushedWatermarksRef, workspaceLastPushedTaskChangeKeysRef, workspaceLastPushedInitiativeIdsRef, workspaceLastPushedInitiativeWatermarksRef, workspaceLastPushedWorkstreamIdsRef, workspaceLastPushedWorkstreamWatermarksRef, workspaceLastPushedAiProfileIdsRef, workspaceLastPushedAiProfileWatermarksRef, workspaceLastPushedAiProfileChangeKeysRef, workspaceLastPushedDocumentPathsRef, workspaceLastPushedDocumentWatermarksRef, workspaceLastPushedAssetPathsRef, workspaceLastPushedAssetWatermarksRef, workspaceLastPushedDocumentReviewSessionIdsRef, workspaceLastPushedDocumentReviewSessionWatermarksRef, workspaceLastPushedDocumentReviewCommentIdsRef, workspaceLastPushedDocumentReviewCommentWatermarksRef, workspaceLastPushedAnnotatedAttachmentSessionIdsRef, workspaceLastPushedAnnotatedAttachmentSessionWatermarksRef, workspaceLastPushedTaskEventWatermarksRef, workspaceBaselineResetReasonRef, bootstrapPhaseStartedAtRef, bootstrapLastProgressAtRef, acquireWorkspaceSyncLease, releaseWorkspaceSyncLease, forceClearWorkspaceSyncLease, clearWorkspaceRetry, clearWorkspaceIssue, reportWorkspaceWindowContention, reportSyncEvent, persistWorkspaceSyncPatch, persistWorkspaceSyncWatermarksSnapshotBestEffort, buildWorkspaceSyncSignature, pullWorkspaceChangesFromCloud, pushWorkspaceChangesToCloud, cloudAuthConfigured, runtimeMode, isAuthenticated, checkAuthSession }: CreateSyncRecoveryCoordinatorArgs): {
|
|
66
80
|
retryWorkspaceCloudSync: () => Promise<boolean>;
|
|
67
81
|
resetWorkspaceSyncCursorAndPull: () => Promise<void>;
|
|
68
82
|
};
|