@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.
Files changed (383) hide show
  1. package/README.md +140 -247
  2. package/dist/Taskforce.module.css +295 -89
  3. package/dist/TaskforceCore.js +378 -111
  4. package/dist/TaskforceCore.test.js +1221 -107
  5. package/dist/assets/fonts/CourierPrime-Bold.woff2 +0 -0
  6. package/dist/assets/fonts/CourierPrime-BoldItalic.woff2 +0 -0
  7. package/dist/assets/fonts/CourierPrime-Italic.woff2 +0 -0
  8. package/dist/assets/fonts/CourierPrime-Regular.woff2 +0 -0
  9. package/dist/assets/fonts/Noir_medium.woff2 +0 -0
  10. package/dist/assets/fonts/Noir_regular.woff2 +0 -0
  11. package/dist/assets/fonts/RussoOne-Regular.woff2 +0 -0
  12. package/dist/assets/fonts/SpecialElite-Regular.woff2 +0 -0
  13. package/dist/compat/workspaceSyncCompat.js +52 -2
  14. package/dist/compat/workspaceSyncCompat.test.js +38 -1
  15. package/dist/components/context/ContextAttachmentManager.d.ts +14 -0
  16. package/dist/components/context/ContextAttachmentManager.js +549 -0
  17. package/dist/components/features/AgentsModule.d.ts +10 -1
  18. package/dist/components/features/AgentsModule.js +260 -15
  19. package/dist/components/features/AgentsModule.test.js +255 -5
  20. package/dist/components/features/DocumentIndex.d.ts +1 -1
  21. package/dist/components/features/DocumentIndex.js +1 -1
  22. package/dist/components/features/DocumentViewer.d.ts +6 -2
  23. package/dist/components/features/DocumentViewer.js +90 -10
  24. package/dist/components/features/DocumentWorkspace.d.ts +5 -22
  25. package/dist/components/features/DocumentWorkspace.js +12 -155
  26. package/dist/components/features/DocumentWorkspace.test.js +226 -6
  27. package/dist/components/features/TaskSettings.js +29 -3
  28. package/dist/components/features/TaskSettings.test.js +42 -1
  29. package/dist/components/features/documentWorkspaceModel.d.ts +24 -0
  30. package/dist/components/features/documentWorkspaceModel.js +57 -0
  31. package/dist/components/features/useDocumentWorkspaceController.d.ts +34 -0
  32. package/dist/components/features/useDocumentWorkspaceController.js +113 -0
  33. package/dist/components/task/TaskCard.js +19 -28
  34. package/dist/components/task/TaskCard.test.js +38 -3
  35. package/dist/components/task/TaskContextUpload.js +4 -526
  36. package/dist/components/task/TaskForm.d.ts +8 -8
  37. package/dist/components/task/TaskForm.js +362 -230
  38. package/dist/components/task/TaskForm.test.js +558 -381
  39. package/dist/components/task/TaskKanban.d.ts +2 -1
  40. package/dist/components/task/TaskKanban.js +96 -14
  41. package/dist/components/task/TaskKanban.test.js +36 -0
  42. package/dist/components/ui/EditableAvatarButton.d.ts +18 -0
  43. package/dist/components/ui/EditableAvatarButton.js +18 -0
  44. package/dist/components/views/PlanComparisonPage.d.ts +9 -1
  45. package/dist/components/views/PlanComparisonPage.js +70 -17
  46. package/dist/components/views/PlanComparisonPage.test.js +289 -41
  47. package/dist/components/views/PlansPage.js +239 -106
  48. package/dist/components/views/PlansPage.test.js +593 -42
  49. package/dist/components/views/StandaloneLayout.js +310 -554
  50. package/dist/components/views/panels/FilterToolbar.test.js +6 -4
  51. package/dist/components/views/panels/PlanningDrawer.d.ts +8 -1
  52. package/dist/components/views/panels/PlanningDrawer.js +18 -11
  53. package/dist/components/views/panels/PlanningDrawer.test.d.ts +1 -0
  54. package/dist/components/views/panels/PlanningDrawer.test.js +141 -0
  55. package/dist/components/views/planningScope.d.ts +20 -0
  56. package/dist/components/views/planningScope.js +25 -0
  57. package/dist/components/views/planningScope.test.d.ts +1 -0
  58. package/dist/components/views/planningScope.test.js +60 -0
  59. package/dist/components/views/standalone/modals/AccountHubModal.d.ts +27 -14
  60. package/dist/components/views/standalone/modals/AccountHubModal.js +87 -15
  61. package/dist/components/views/standalone/modals/AccountHubModal.test.js +42 -2
  62. package/dist/components/views/standalone/modals/AvatarImageManagerModal.d.ts +20 -0
  63. package/dist/components/views/standalone/modals/AvatarImageManagerModal.js +127 -0
  64. package/dist/components/views/standalone/modals/EditProfileModal.d.ts +2 -9
  65. package/dist/components/views/standalone/modals/EditProfileModal.js +3 -2
  66. package/dist/components/views/standalone/modals/SyncEnableWarningModal.d.ts +9 -0
  67. package/dist/components/views/standalone/modals/SyncEnableWarningModal.js +6 -0
  68. package/dist/components/views/standalone/modals/SyncEnableWarningModal.test.d.ts +1 -0
  69. package/dist/components/views/standalone/modals/SyncEnableWarningModal.test.js +24 -0
  70. package/dist/components/views/standalone/modals/SyncStatusModal.d.ts +2 -1
  71. package/dist/components/views/standalone/modals/SyncStatusModal.js +2 -2
  72. package/dist/config/envSchema.js +1 -1
  73. package/dist/core/AiProfileService.d.ts +45 -3
  74. package/dist/core/AiProfileService.js +774 -63
  75. package/dist/core/AiProfileService.test.js +22 -2
  76. package/dist/core/AiProfiles.test.js +761 -2
  77. package/dist/core/AttachmentLinkService.js +57 -15
  78. package/dist/core/AuthIdentityService.d.ts +107 -0
  79. package/dist/core/AuthIdentityService.js +284 -0
  80. package/dist/core/AuthTokenService.d.ts +4 -0
  81. package/dist/core/AuthTokenService.js +34 -6
  82. package/dist/core/AuthTokenService.test.d.ts +1 -0
  83. package/dist/core/AuthTokenService.test.js +78 -0
  84. package/dist/core/EntitlementsPolicy.test.js +77 -15
  85. package/dist/core/GlobalSettingsService.js +115 -6
  86. package/dist/core/PlanEntitlementService.d.ts +30 -3
  87. package/dist/core/PlanEntitlementService.js +454 -93
  88. package/dist/core/PlanFeatureCatalog.test.d.ts +1 -0
  89. package/dist/core/PlanFeatureCatalog.test.js +84 -0
  90. package/dist/core/PlanVersionPolicy.test.js +54 -28
  91. package/dist/core/PlanningEntities.test.js +52 -0
  92. package/dist/core/SignupMonetizationSettings.test.js +241 -44
  93. package/dist/core/SyncReconciliationService.js +2 -65
  94. package/dist/core/SystemAdmin.test.js +244 -88
  95. package/dist/core/TaskAttachmentsCanonical.test.js +51 -1
  96. package/dist/core/TaskTaxonomyValidation.test.js +53 -0
  97. package/dist/core/Taskforce.d.ts +228 -14
  98. package/dist/core/Taskforce.js +814 -201
  99. package/dist/core/Taskforce.listTasksSlim.test.d.ts +1 -0
  100. package/dist/core/Taskforce.listTasksSlim.test.js +91 -0
  101. package/dist/core/UserProfileAvatarDrafts.test.js +30 -3
  102. package/dist/core/WorkspaceLifecycleService.js +0 -5
  103. package/dist/core/WorkspacePermissions.test.js +25 -1
  104. package/dist/core/WorkspacePlanMode.test.js +128 -27
  105. package/dist/core/shared.d.ts +3 -1
  106. package/dist/core/shared.js +16 -1
  107. package/dist/core/types.d.ts +68 -2
  108. package/dist/hooks/auth/useTaskforceAuthBootstrap.js +26 -1
  109. package/dist/hooks/sync/auth.js +3 -1
  110. package/dist/hooks/sync/bootstrap.js +2 -0
  111. package/dist/hooks/sync/controlPlane.d.ts +37 -0
  112. package/dist/hooks/sync/controlPlane.js +78 -0
  113. package/dist/hooks/sync/controlPlane.test.d.ts +1 -0
  114. package/dist/hooks/sync/controlPlane.test.js +121 -0
  115. package/dist/hooks/sync/lifecyclePolicy.d.ts +45 -0
  116. package/dist/hooks/sync/lifecyclePolicy.js +93 -0
  117. package/dist/hooks/sync/lifecyclePolicy.test.d.ts +1 -0
  118. package/dist/hooks/sync/lifecyclePolicy.test.js +124 -0
  119. package/dist/hooks/sync/orchestratorShared.d.ts +10 -1
  120. package/dist/hooks/sync/orchestratorShared.js +68 -47
  121. package/dist/hooks/sync/orchestratorShared.test.js +50 -1
  122. package/dist/hooks/sync/pullLifecycle.d.ts +31 -0
  123. package/dist/hooks/sync/pullLifecycle.js +24 -0
  124. package/dist/hooks/sync/pullLifecycle.test.d.ts +1 -0
  125. package/dist/hooks/sync/pullLifecycle.test.js +80 -0
  126. package/dist/hooks/sync/recovery.d.ts +16 -2
  127. package/dist/hooks/sync/recovery.js +171 -53
  128. package/dist/hooks/sync/recovery.test.d.ts +1 -0
  129. package/dist/hooks/sync/recovery.test.js +292 -0
  130. package/dist/hooks/sync/transfers.d.ts +16 -3
  131. package/dist/hooks/sync/transfers.js +186 -65
  132. package/dist/hooks/sync/transfers.test.d.ts +1 -0
  133. package/dist/hooks/sync/transfers.test.js +396 -0
  134. package/dist/hooks/sync/useRecentSyncEvents.d.ts +21 -0
  135. package/dist/hooks/sync/useRecentSyncEvents.js +92 -0
  136. package/dist/hooks/sync/useRecentSyncEvents.test.d.ts +1 -0
  137. package/dist/hooks/sync/useRecentSyncEvents.test.js +124 -0
  138. package/dist/hooks/sync/useSyncStatusActions.d.ts +30 -0
  139. package/dist/hooks/sync/useSyncStatusActions.js +88 -0
  140. package/dist/hooks/sync/useSyncStatusActions.test.d.ts +1 -0
  141. package/dist/hooks/sync/useSyncStatusActions.test.js +133 -0
  142. package/dist/hooks/sync/useSyncStatusControls.d.ts +25 -0
  143. package/dist/hooks/sync/useSyncStatusControls.js +60 -0
  144. package/dist/hooks/sync/useSyncStatusControls.test.d.ts +1 -0
  145. package/dist/hooks/sync/useSyncStatusControls.test.js +88 -0
  146. package/dist/hooks/useSyncOrchestrator.aiProfiles.test.js +12 -0
  147. package/dist/hooks/useSyncOrchestrator.d.ts +16 -6
  148. package/dist/hooks/useSyncOrchestrator.js +424 -175
  149. package/dist/hooks/useSyncOrchestrator.retry-closure.test.js +487 -10
  150. package/dist/hooks/useTaskData.js +8 -3
  151. package/dist/hooks/useTaskData.test.js +45 -0
  152. package/dist/hooks/useTaskMutations.d.ts +2 -1
  153. package/dist/hooks/useTaskMutations.js +12 -1
  154. package/dist/hooks/useTaskMutations.test.js +30 -1
  155. package/dist/hooks/useTaskforce.d.ts +65 -4
  156. package/dist/hooks/useTaskforce.js +564 -243
  157. package/dist/hooks/useTaskforce.runtime-routing.test.d.ts +1 -0
  158. package/dist/hooks/useTaskforce.runtime-routing.test.js +152 -0
  159. package/dist/hooks/useTaskforce.sync-behavior.test.js +2454 -208
  160. package/dist/hooks/useWorkspaceSyncController.d.ts +4 -1
  161. package/dist/hooks/useWorkspaceSyncController.js +17 -2
  162. package/dist/hooks/useWorkspaceSyncController.test.js +1 -0
  163. package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.d.ts +16 -0
  164. package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.js +316 -35
  165. package/dist/localization/locales/en-US.d.ts +0 -1
  166. package/dist/localization/locales/en-US.js +0 -1
  167. package/dist/localization/locales/es-419.js +0 -1
  168. package/dist/localization/locales/pt-BR.js +0 -1
  169. package/dist/mcp/adminWorkspaceRegistrar.d.ts +2 -0
  170. package/dist/mcp/adminWorkspaceRegistrar.js +154 -0
  171. package/dist/mcp/collaborationRegistrar.d.ts +2 -0
  172. package/dist/mcp/collaborationRegistrar.js +71 -0
  173. package/dist/mcp/documentAssetRegistrar.d.ts +2 -0
  174. package/dist/mcp/documentAssetRegistrar.js +346 -0
  175. package/dist/mcp/runtime.d.ts +2 -0
  176. package/dist/mcp/runtime.js +2433 -3534
  177. package/dist/mcp/runtime.test.js +440 -2
  178. package/dist/mcp/taskPlanningRegistrar.d.ts +2 -0
  179. package/dist/mcp/taskPlanningRegistrar.js +418 -0
  180. package/dist/mcp/toolCatalog.d.ts +35 -0
  181. package/dist/mcp/toolCatalog.js +3 -0
  182. package/dist/migrations/taskSchemaMigrations.d.ts +1 -1
  183. package/dist/migrations/taskSchemaMigrations.js +171 -61
  184. package/dist/migrations/taskSchemaMigrations.test.js +15 -0
  185. package/dist/resources/templates/workflow-sources/workflowDocs.mjs +6 -6
  186. package/dist/resources/templates/workflows/collaborate.yaml +1 -1
  187. package/dist/resources/templates/workflows/evaluate.yaml +2 -2
  188. package/dist/resources/templates/workflows/plan.yaml +1 -1
  189. package/dist/resources/templates/workflows/review.yaml +2 -2
  190. package/dist/server/annotatedAttachmentsRoutes.test.js +3 -3
  191. package/dist/server/auth/providers/apple.d.ts +33 -0
  192. package/dist/server/auth/providers/apple.js +82 -0
  193. package/dist/server/auth/providers/appleClientSecret.d.ts +37 -0
  194. package/dist/server/auth/providers/appleClientSecret.js +65 -0
  195. package/dist/server/auth/providers/github.d.ts +26 -0
  196. package/dist/server/auth/providers/github.js +86 -0
  197. package/dist/server/auth/providers/google.d.ts +21 -0
  198. package/dist/server/auth/providers/google.js +56 -0
  199. package/dist/server/auth/providers/types.d.ts +21 -0
  200. package/dist/server/auth/providers/types.js +1 -0
  201. package/dist/server/auth.d.ts +2 -0
  202. package/dist/server/auth.js +6 -3
  203. package/dist/server/documentReviewRoutes.test.js +36 -3
  204. package/dist/server/index.cookieProxy.test.js +1 -0
  205. package/dist/server/index.d.ts +12 -0
  206. package/dist/server/index.js +120 -9
  207. package/dist/server/index.rateLimit.test.js +3 -0
  208. package/dist/server/index.test.js +106 -3
  209. package/dist/server/routes/admin.d.ts +4 -5
  210. package/dist/server/routes/admin.js +410 -80
  211. package/dist/server/routes/annotatedAttachments.d.ts +1 -1
  212. package/dist/server/routes/annotatedAttachments.js +1 -1
  213. package/dist/server/routes/auth.d.ts +16 -6
  214. package/dist/server/routes/auth.js +1015 -118
  215. package/dist/server/routes/authSupport.d.ts +30 -0
  216. package/dist/server/routes/authSupport.js +81 -0
  217. package/dist/server/routes/billing.d.ts +1 -1
  218. package/dist/server/routes/billing.js +276 -34
  219. package/dist/server/routes/billing.test.js +760 -52
  220. package/dist/server/routes/documentReviews.d.ts +1 -1
  221. package/dist/server/routes/documentReviews.js +1 -1
  222. package/dist/server/routes/documents.d.ts +5 -2
  223. package/dist/server/routes/documents.js +242 -74
  224. package/dist/server/routes/primitives.d.ts +11 -0
  225. package/dist/server/routes/primitives.js +73 -0
  226. package/dist/server/routes/resources.d.ts +1 -1
  227. package/dist/server/routes/resources.js +1 -1
  228. package/dist/server/routes/shared.d.ts +29 -3
  229. package/dist/server/routes/shared.js +69 -4
  230. package/dist/server/routes/sync.d.ts +1 -1
  231. package/dist/server/routes/sync.integration.test.js +437 -39
  232. package/dist/server/routes/sync.js +62 -606
  233. package/dist/server/routes/syncAuxRoutes.d.ts +15 -0
  234. package/dist/server/routes/syncAuxRoutes.js +91 -0
  235. package/dist/server/routes/syncAuxRoutes.test.d.ts +1 -0
  236. package/dist/server/routes/syncAuxRoutes.test.js +158 -0
  237. package/dist/server/routes/syncPullApplyRoutes.d.ts +36 -0
  238. package/dist/server/routes/syncPullApplyRoutes.js +204 -0
  239. package/dist/server/routes/syncPushRoutes.d.ts +24 -0
  240. package/dist/server/routes/syncPushRoutes.js +212 -0
  241. package/dist/server/routes/syncRouteGuards.d.ts +36 -0
  242. package/dist/server/routes/syncRouteGuards.js +67 -0
  243. package/dist/server/routes/syncRouteGuards.test.d.ts +1 -0
  244. package/dist/server/routes/syncRouteGuards.test.js +94 -0
  245. package/dist/server/routes/syncRouteTypes.d.ts +13 -0
  246. package/dist/server/routes/syncRouteTypes.js +1 -0
  247. package/dist/server/routes/syncSnapshotRoutes.d.ts +66 -0
  248. package/dist/server/routes/syncSnapshotRoutes.js +180 -0
  249. package/dist/server/routes/tasks.d.ts +1 -1
  250. package/dist/server/routes/tasks.js +44 -2
  251. package/dist/server/routes/workspaces.d.ts +1 -1
  252. package/dist/server/routes/workspaces.js +37 -6
  253. package/dist/server/routes.d.ts +2 -9
  254. package/dist/server/routes.js +136 -165
  255. package/dist/server/routes.test.js +2457 -162
  256. package/dist/services/workflowExportSnapshots.test.js +2 -0
  257. package/dist/shared/aiProfileSeatScope.d.ts +5 -0
  258. package/dist/shared/aiProfileSeatScope.js +21 -0
  259. package/dist/shared/passwordPolicy.d.ts +13 -0
  260. package/dist/shared/passwordPolicy.js +84 -0
  261. package/dist/shared/passwordPolicy.test.d.ts +1 -0
  262. package/dist/shared/passwordPolicy.test.js +34 -0
  263. package/dist/storage/workspaceAssetStore.d.ts +15 -3
  264. package/dist/storage/workspaceAssetStore.js +132 -44
  265. package/dist/storage/workspaceAssetStore.test.js +93 -6
  266. package/dist/styles/fonts.css +70 -0
  267. package/dist/sync/collaborationSyncPayload.d.ts +6 -1
  268. package/dist/sync/collaborationSyncPayload.js +17 -11
  269. package/dist/sync/collaborationSyncPayload.test.js +13 -1
  270. package/dist/sync/contentSyncState.d.ts +4 -8
  271. package/dist/sync/contentSyncState.js +33 -77
  272. package/dist/sync/syncApplyHandlers.d.ts +7 -0
  273. package/dist/sync/syncApplyHandlers.js +28 -13
  274. package/dist/sync/syncApplyHandlers.test.js +72 -3
  275. package/dist/sync/syncFieldSemantics.d.ts +12 -0
  276. package/dist/sync/syncFieldSemantics.js +55 -0
  277. package/dist/sync/syncResourceAdapters.d.ts +44 -0
  278. package/dist/sync/syncResourceAdapters.js +77 -0
  279. package/dist/sync/syncService.d.ts +6 -0
  280. package/dist/sync/syncService.js +60 -0
  281. package/dist/sync/syncService.test.js +71 -3
  282. package/dist/sync/taskSyncChangeKey.d.ts +2 -0
  283. package/dist/sync/taskSyncChangeKey.js +143 -0
  284. package/dist/sync/taskSyncPayload.js +3 -8
  285. package/dist/sync/workspacePullFeed.js +4 -3
  286. package/dist/sync/workspacePullFeed.test.js +43 -0
  287. package/dist/sync/workspaceRepair.js +5 -2
  288. package/dist/sync/workspaceSyncModel.d.ts +48 -0
  289. package/dist/sync/workspaceSyncModel.js +195 -31
  290. package/dist/sync/workspaceSyncModel.test.js +325 -12
  291. package/dist/sync/workspaceSyncState.d.ts +19 -0
  292. package/dist/sync/workspaceSyncState.js +3 -1
  293. package/dist/sync/workspaceSyncSurface.js +3 -8
  294. package/dist/types.d.ts +17 -0
  295. package/dist/ui/assets/AgentsModule-DrLawwNl.js +1 -0
  296. package/dist/ui/assets/{AnnotatedAttachmentWorkspace-BlS-cqnl.js → AnnotatedAttachmentWorkspace-Z9_whf7F.js} +1 -1
  297. package/dist/ui/assets/CourierPrime-Bold-BuLj_dpw.woff2 +0 -0
  298. package/dist/ui/assets/CourierPrime-BoldItalic-BrK2pUkZ.woff2 +0 -0
  299. package/dist/ui/assets/CourierPrime-Italic-DFUZK5Ey.woff2 +0 -0
  300. package/dist/ui/assets/CourierPrime-Regular-BsKphzVf.woff2 +0 -0
  301. package/dist/ui/assets/DocumentWorkspace-B03MaSkw.js +252 -0
  302. package/dist/ui/assets/DocumentWorkspace-Dhdso07p.css +1 -0
  303. package/dist/ui/assets/{InitiativesModule-BjR6iBf9.js → InitiativesModule-9E6ParrY.js} +1 -1
  304. package/dist/ui/assets/Noir_medium-bxQwKGzB.woff2 +0 -0
  305. package/dist/ui/assets/Noir_regular-ojf2kxlG.woff2 +0 -0
  306. package/dist/ui/assets/PlansPage-CvfnMiWq.css +1 -0
  307. package/dist/ui/assets/PlansPage-DRXscYxH.js +1 -0
  308. package/dist/ui/assets/RussoOne-Regular-Cu_qq_qC.woff2 +0 -0
  309. package/dist/ui/assets/SpecialElite-Regular-Di6gSvAS.woff2 +0 -0
  310. package/dist/ui/assets/TaskSettings-DZX4jk7e.js +9 -0
  311. package/dist/ui/assets/{WorkflowsModule-DnFqdUME.js → WorkflowsModule-BA7jcEpH.js} +1 -1
  312. package/dist/ui/assets/index-9eT8e0Lu.css +1 -0
  313. package/dist/ui/assets/index-C6k75jr8.js +6 -0
  314. package/dist/ui/assets/{vendor-icons-I7ZwG1z_.js → vendor-icons-DuEd_65c.js} +1 -1
  315. package/dist/ui/fonts/CourierPrime-Bold.ttf +0 -0
  316. package/dist/ui/fonts/CourierPrime-Bold.woff2 +0 -0
  317. package/dist/ui/fonts/CourierPrime-BoldItalic.ttf +0 -0
  318. package/dist/ui/fonts/CourierPrime-BoldItalic.woff2 +0 -0
  319. package/dist/ui/fonts/CourierPrime-Italic.ttf +0 -0
  320. package/dist/ui/fonts/CourierPrime-Italic.woff2 +0 -0
  321. package/dist/ui/fonts/CourierPrime-Regular.ttf +0 -0
  322. package/dist/ui/fonts/CourierPrime-Regular.woff2 +0 -0
  323. package/dist/ui/fonts/Noir_medium.otf +0 -0
  324. package/dist/ui/fonts/Noir_medium.woff2 +0 -0
  325. package/dist/ui/fonts/Noir_regular.otf +0 -0
  326. package/dist/ui/fonts/Noir_regular.woff2 +0 -0
  327. package/dist/ui/fonts/RussoOne-Regular.woff2 +0 -0
  328. package/dist/ui/fonts/SpecialElite-Regular.ttf +0 -0
  329. package/dist/ui/fonts/SpecialElite-Regular.woff2 +0 -0
  330. package/dist/ui/index.html +3 -3
  331. package/dist/utils/accountProfileSummaryCache.d.ts +5 -0
  332. package/dist/utils/assignees.d.ts +2 -0
  333. package/dist/utils/assignees.js +2 -0
  334. package/dist/utils/avatarUpload.d.ts +27 -0
  335. package/dist/utils/avatarUpload.js +132 -0
  336. package/dist/utils/avatarUpload.test.d.ts +1 -0
  337. package/dist/utils/avatarUpload.test.js +40 -0
  338. package/dist/utils/bootstrapTrace.d.ts +7 -0
  339. package/dist/utils/bootstrapTrace.js +29 -0
  340. package/dist/utils/commercialLifecyclePresentation.d.ts +19 -0
  341. package/dist/utils/commercialLifecyclePresentation.js +199 -0
  342. package/dist/utils/contextAssetEvents.d.ts +2 -0
  343. package/dist/utils/syncEventDetails.d.ts +3 -0
  344. package/dist/utils/syncEventDetails.js +64 -0
  345. package/dist/utils/syncEventDetails.test.d.ts +1 -0
  346. package/dist/utils/syncEventDetails.test.js +23 -0
  347. package/dist/utils/syncEventPresentation.d.ts +15 -0
  348. package/dist/utils/syncEventPresentation.js +129 -0
  349. package/dist/utils/syncEventPresentation.test.d.ts +1 -0
  350. package/dist/utils/syncEventPresentation.test.js +64 -0
  351. package/dist/utils/syncStatusPresentation.d.ts +72 -0
  352. package/dist/utils/syncStatusPresentation.js +217 -0
  353. package/dist/utils/syncStatusPresentation.test.d.ts +1 -0
  354. package/dist/utils/syncStatusPresentation.test.js +164 -0
  355. package/dist/utils/taskActivity.d.ts +2 -0
  356. package/dist/utils/taskActivity.js +228 -22
  357. package/dist/utils/taskActivity.test.js +119 -8
  358. package/dist/utils/workspaceSyncPresentation.d.ts +4 -0
  359. package/dist/utils/workspaceSyncPresentation.js +68 -2
  360. package/dist/utils/workspaceSyncPresentation.test.js +36 -1
  361. package/package.json +10 -2
  362. package/scripts/check-cloud-mcp.mjs +83 -0
  363. package/scripts/export-sqlite-to-postgres.mjs +7 -9
  364. package/scripts/playwright-auth.sh +5 -1
  365. package/scripts/run-billing-performance-smoke.sh +24 -0
  366. package/scripts/run-e2e-realtime.sh +17 -3
  367. package/scripts/run-smoke.sh +17 -5
  368. package/scripts/run-soak.sh +17 -5
  369. package/src/resources/templates/workflow-sources/workflowDocs.mjs +6 -6
  370. package/src/resources/templates/workflows/collaborate.yaml +1 -1
  371. package/src/resources/templates/workflows/evaluate.yaml +2 -2
  372. package/src/resources/templates/workflows/plan.yaml +1 -1
  373. package/src/resources/templates/workflows/review.yaml +2 -2
  374. package/dist/ui/assets/AgentsModule-BLWVbuKP.js +0 -1
  375. package/dist/ui/assets/DocumentWorkspace-BH_6DF6x.js +0 -250
  376. package/dist/ui/assets/DocumentWorkspace-C_8T8oz-.css +0 -1
  377. package/dist/ui/assets/PlansPage-C2dd2n1X.css +0 -1
  378. package/dist/ui/assets/PlansPage-CSDQ4sLa.js +0 -1
  379. package/dist/ui/assets/RussoOne-Regular-C3BxZIj7.ttf +0 -0
  380. package/dist/ui/assets/TaskSettings-CEDy34Jo.js +0 -9
  381. package/dist/ui/assets/index-DXUdtH1B.js +0 -6
  382. package/dist/ui/assets/index-Ii0B0rTO.css +0 -1
  383. package/scripts/migrate-planning-model.ts +0 -233
@@ -1,25 +1,97 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useState, useEffect } from 'react';
2
3
  import { Modal } from '../../../ui/Modal';
3
4
  import modalStyles from '../../../ui/Modal.module.css';
4
5
  import accountStyles from '../../StandaloneAccount.module.css';
5
6
  import authStyles from '../../AuthShell.module.css';
6
7
  import managementStyles from '../../StandaloneManagement.module.css';
7
8
  import styles from '../../../../Taskforce.module.css';
8
- export function AccountHubModal({ isOpen, theme, runtimeMode, authRequiredForApi, isAuthenticated, hasAuthIdentity, authIdentityLabel, billingLoading, billingError, billingActionError, billingNotice, billingActionBusy, billingIntervalChoice, accountProfileSummary, currentWorkspaceId, canOpenTeamManagement, canManageWorkspaceSync, workspaceCloudSyncEnabled, syncStatusLabel, workspaceSyncError, syncControlBusy, onClose, onOpenWorkspaceAudit, onBillingIntervalChange, onRefreshBilling, onUpdateInterval, onManageBilling, onStartCheckout, onToggleWorkspaceSync, onOpenHelp, }) {
9
- const billingGate = String(accountProfileSummary?.gate || '').trim().toLowerCase();
10
- const billingConflictCode = String(accountProfileSummary?.billingConflictCode || '').trim().toUpperCase();
11
- const billingRecoveryMessage = String(accountProfileSummary?.message || '').trim()
12
- || (billingConflictCode === 'CHECKOUT_SESSION_EXPIRED'
13
- ? 'Your latest checkout expired. Choose a plan to continue.'
14
- : (billingConflictCode === 'CHECKOUT_SESSION_SUPERSEDED'
15
- ? 'A newer checkout is already in progress for this account. Open plans to continue.'
16
- : ''));
17
- const startCheckoutLabel = billingConflictCode === 'CHECKOUT_SESSION_EXPIRED'
18
- || accountProfileSummary?.planSelectionRequired === true
19
- || billingGate === 'plan_selection_required'
20
- ? 'Choose Plan'
21
- : (billingGate === 'checkout_pending' ? 'Open Plans' : 'Start Checkout');
9
+ import { resolveCommercialLifecyclePresentation } from '../../../../utils/commercialLifecyclePresentation';
10
+ import { getPasswordPolicyGuidance, validatePasswordPolicy } from '../../../../shared/passwordPolicy';
11
+ export function AccountHubModal({ isOpen, theme, runtimeMode, authRequiredForApi, isAuthenticated, hasAuthIdentity, authIdentityLabel, billingLoading, billingError, billingActionError, billingNotice, billingActionBusy, billingIntervalChoice, accountProfileSummary, currentWorkspaceId, canOpenTeamManagement, canManageWorkspaceSync, workspaceCloudSyncEnabled, syncStatusLabel, workspaceSyncError, syncControlBusy, cloudAuthEnabled, availableAuthProviders, onFetchLoginMethods, onUnlinkLoginMethod, onAddPassword, onLinkProvider, onClose, onOpenWorkspaceAudit, onBillingIntervalChange, onRefreshBilling, onUpdateInterval, onManageBilling, onStartCheckout, onToggleWorkspaceSync, onOpenHelp, }) {
12
+ const lifecyclePresentation = resolveCommercialLifecyclePresentation(accountProfileSummary);
13
+ const addPasswordGuidance = getPasswordPolicyGuidance();
14
+ const billingRecoveryMessage = lifecyclePresentation.message;
15
+ const startCheckoutLabel = lifecyclePresentation.primaryLabel || 'Start Checkout';
22
16
  const resolvedPlanLabel = String(accountProfileSummary?.planName || accountProfileSummary?.planId || 'n/a').trim() || 'n/a';
17
+ const primaryBillingAction = () => {
18
+ if (lifecyclePresentation.primaryAction === 'manage_billing') {
19
+ onManageBilling();
20
+ return;
21
+ }
22
+ onStartCheckout();
23
+ };
24
+ // ── Login methods state ──────────────────────────────────────────────────────
25
+ const [loginMethods, setLoginMethods] = useState([]);
26
+ const [loginMethodsLoading, setLoginMethodsLoading] = useState(false);
27
+ const [loginMethodsError, setLoginMethodsError] = useState(null);
28
+ const [unlinkBusy, setUnlinkBusy] = useState(null); // provider being unlinked
29
+ const [unlinkError, setUnlinkError] = useState(null);
30
+ const [showAddPassword, setShowAddPassword] = useState(false);
31
+ const [addPasswordValue, setAddPasswordValue] = useState('');
32
+ const [addPasswordBusy, setAddPasswordBusy] = useState(false);
33
+ const [addPasswordError, setAddPasswordError] = useState(null);
34
+ const [addPasswordDone, setAddPasswordDone] = useState(false);
35
+ // Reload login methods whenever the modal opens (and auth is available)
36
+ useEffect(() => {
37
+ if (!isOpen || !isAuthenticated || !cloudAuthEnabled)
38
+ return;
39
+ setLoginMethodsLoading(true);
40
+ setLoginMethodsError(null);
41
+ onFetchLoginMethods().then(result => {
42
+ setLoginMethodsLoading(false);
43
+ if (result.success && result.methods) {
44
+ setLoginMethods(result.methods);
45
+ }
46
+ else {
47
+ setLoginMethodsError(result.error || 'Failed to load login methods.');
48
+ }
49
+ });
50
+ }, [isOpen, isAuthenticated, cloudAuthEnabled, onFetchLoginMethods]);
51
+ const handleUnlink = async (provider) => {
52
+ setUnlinkBusy(provider);
53
+ setUnlinkError(null);
54
+ const result = await onUnlinkLoginMethod(provider);
55
+ setUnlinkBusy(null);
56
+ if (!result.success) {
57
+ setUnlinkError(result.error || 'Unlink failed.');
58
+ }
59
+ else {
60
+ setLoginMethods(prev => prev.filter(m => m.provider !== provider));
61
+ }
62
+ };
63
+ const handleAddPassword = async () => {
64
+ const validation = validatePasswordPolicy(addPasswordValue);
65
+ if (!validation.ok) {
66
+ setAddPasswordError(validation.message || 'Password does not meet the password policy.');
67
+ return;
68
+ }
69
+ setAddPasswordBusy(true);
70
+ setAddPasswordError(null);
71
+ const result = await onAddPassword(addPasswordValue);
72
+ setAddPasswordBusy(false);
73
+ if (!result.success) {
74
+ setAddPasswordError(result.error || 'Failed to add password.');
75
+ }
76
+ else {
77
+ setAddPasswordDone(true);
78
+ setAddPasswordValue('');
79
+ setShowAddPassword(false);
80
+ // Refresh the list to show the new password method
81
+ const updated = await onFetchLoginMethods();
82
+ if (updated.success && updated.methods)
83
+ setLoginMethods(updated.methods);
84
+ }
85
+ };
86
+ const PROVIDER_LABELS = {
87
+ password: 'Email & Password',
88
+ google: 'Google',
89
+ github: 'GitHub',
90
+ apple: 'Apple',
91
+ };
92
+ const linkedProviders = new Set(loginMethods.map(m => m.provider));
93
+ const hasPassword = linkedProviders.has('password');
94
+ const linkableProviders = availableAuthProviders.filter(p => p !== 'password' && !linkedProviders.has(p));
23
95
  return (_jsx(Modal, { isOpen: isOpen, onClose: onClose, title: "Account Hub", size: "md", theme: theme, draggable: true, children: _jsxs("div", { className: `${modalStyles.form} ${managementStyles.modalBody}`, children: [_jsx("p", { className: managementStyles.mutedText, children: "Manage sign in, profile, and workspace controls from one place." }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Authentication" }), _jsx("p", { className: managementStyles.sectionText, children: runtimeMode === 'cloud'
24
96
  ? (authRequiredForApi
25
97
  ? (isAuthenticated ? 'Signed in. API access is enabled.' : 'Cloud mode requires sign in before app usage.')
@@ -28,7 +100,7 @@ export function AccountHubModal({ isOpen, theme, runtimeMode, authRequiredForApi
28
100
  ? (hasAuthIdentity
29
101
  ? _jsxs(_Fragment, { children: ["Signed in as ", _jsx("span", { className: accountStyles.accountIdentityEmail, children: authIdentityLabel })] })
30
102
  : 'Signed in')
31
- : 'Signed in as: not signed in' }), runtimeMode === 'cloud' && authRequiredForApi && !isAuthenticated && (_jsx("p", { className: managementStyles.sectionTextTop, children: "Use the `/login` screen to sign in." }))] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Profile & Account" }), _jsx("p", { className: managementStyles.sectionText, children: "Profile editing and account preferences will live here." })] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Billing" }), !isAuthenticated ? (_jsx("p", { className: managementStyles.sectionText, children: "Sign in to manage subscription billing." })) : runtimeMode !== 'cloud' ? (_jsx("p", { className: managementStyles.sectionText, children: "Billing remains cloud-backed in local runtime and uses your connected cloud account." })) : (_jsxs(_Fragment, { children: [billingLoading && (_jsx("p", { className: managementStyles.sectionTextSpaced, children: "Loading billing status..." })), billingError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: billingError })), billingActionError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: billingActionError })), billingNotice && (_jsx("p", { className: managementStyles.errorText, children: billingNotice })), billingRecoveryMessage && (_jsx("p", { className: managementStyles.sectionText, children: billingRecoveryMessage })), _jsxs("p", { className: managementStyles.sectionTextSpaced, children: ["Plan: ", _jsx("code", { children: resolvedPlanLabel }), ' · ', "Entitlement: ", _jsx("code", { children: String(accountProfileSummary?.entitlementState || 'n/a') })] }), _jsxs("p", { className: managementStyles.sectionText, children: ["Stripe status: ", _jsx("code", { children: String(accountProfileSummary?.stripeStatus || 'n/a') }), accountProfileSummary?.effectiveUntil ? ` · Effective until ${new Date(accountProfileSummary.effectiveUntil).toLocaleString()}` : ''] }), _jsx("div", { className: managementStyles.wrapRow, children: _jsxs("label", { className: `${accountStyles.accountMenuMeta} ${managementStyles.inlineFieldLabel}`, children: ["Interval", _jsxs("select", { className: styles.input, value: billingIntervalChoice, onChange: (event) => onBillingIntervalChange(event.target.value === 'year' ? 'year' : 'month'), disabled: billingActionBusy, children: [_jsx("option", { value: "month", children: "Monthly" }), _jsx("option", { value: "year", children: "Yearly" })] })] }) }), _jsxs("div", { className: managementStyles.actionRowEnd, children: [_jsx("button", { className: styles.cancelBtn, onClick: onRefreshBilling, disabled: billingActionBusy || billingLoading, children: "Refresh Billing" }), _jsx("button", { className: styles.cancelBtn, onClick: onUpdateInterval, disabled: billingActionBusy || !accountProfileSummary?.stripeSubscriptionId, children: "Update Interval" }), _jsx("button", { className: styles.cancelBtn, onClick: onManageBilling, disabled: billingActionBusy || !accountProfileSummary?.stripeCustomerId, children: "Manage Billing" }), _jsx("button", { className: styles.submitBtn, onClick: onStartCheckout, disabled: billingActionBusy, children: billingActionBusy ? 'Working...' : startCheckoutLabel })] })] }))] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Workspace Audit Log" }), _jsx("p", { className: managementStyles.sectionText, children: "Audit entries are workspace-scoped for the active workspace, not global account history." }), _jsxs("p", { className: managementStyles.sectionText, children: ["Active workspace: ", _jsx("code", { children: currentWorkspaceId })] }), _jsx("div", { className: managementStyles.actionRowEnd, children: _jsx("button", { className: styles.cancelBtn, onClick: onOpenWorkspaceAudit, disabled: !canOpenTeamManagement, children: "Open Workspace Audit" }) })] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Workspace Cloud Sync" }), _jsx("p", { className: managementStyles.sectionText, children: canManageWorkspaceSync
103
+ : 'Signed in as: not signed in' }), runtimeMode === 'cloud' && authRequiredForApi && !isAuthenticated && (_jsx("p", { className: managementStyles.sectionTextTop, children: "Use the `/login` screen to sign in." }))] }), isAuthenticated && cloudAuthEnabled && (_jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Login Methods" }), loginMethodsLoading && (_jsx("p", { className: managementStyles.sectionText, children: "Loading..." })), loginMethodsError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: loginMethodsError })), unlinkError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: unlinkError })), addPasswordDone && (_jsx("p", { className: managementStyles.sectionText, style: { color: 'var(--color-success, #4ade80)' }, children: "Password login added." })), !loginMethodsLoading && loginMethods.length > 0 && (_jsx("div", { style: { marginTop: 8, display: 'grid', gap: 6 }, children: loginMethods.map(method => (_jsxs("div", { style: { display: 'flex', alignItems: 'center', justifyContent: 'space-between', gap: 8, flexWrap: 'wrap' }, children: [_jsxs("span", { className: managementStyles.sectionText, children: [_jsx("strong", { children: PROVIDER_LABELS[method.provider] || method.provider }), method.providerEmail ? _jsxs(_Fragment, { children: [" \u00B7 ", _jsx("span", { className: accountStyles.accountMenuMeta, children: method.providerEmail })] }) : null] }), loginMethods.length > 1 && (_jsx("button", { className: styles.cancelBtn, style: { fontSize: 11, padding: '2px 8px' }, disabled: unlinkBusy === method.provider, onClick: () => handleUnlink(method.provider), children: unlinkBusy === method.provider ? 'Removing…' : 'Remove' }))] }, method.provider))) })), !loginMethodsLoading && !hasPassword && !showAddPassword && (_jsx("div", { className: managementStyles.actionRowEnd, children: _jsx("button", { className: styles.cancelBtn, onClick: () => { setShowAddPassword(true); setAddPasswordDone(false); setAddPasswordError(null); }, children: "Add Password Login" }) })), showAddPassword && (_jsxs("div", { style: { marginTop: 10, display: 'grid', gap: 6 }, children: [_jsxs("label", { className: accountStyles.accountMenuMeta, style: { display: 'block' }, children: ["New password", _jsx("input", { type: "password", className: styles.input, placeholder: "Use 12+ characters", value: addPasswordValue, onChange: e => setAddPasswordValue(e.target.value), disabled: addPasswordBusy, style: { marginTop: 4, display: 'block', width: '100%' }, autoComplete: "new-password" })] }), _jsx("p", { className: accountStyles.accountMenuMeta, style: { margin: 0 }, children: addPasswordGuidance.join(' ') }), addPasswordError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: addPasswordError })), _jsxs("div", { className: managementStyles.actionRowEnd, children: [_jsx("button", { className: styles.cancelBtn, onClick: () => { setShowAddPassword(false); setAddPasswordValue(''); setAddPasswordError(null); }, disabled: addPasswordBusy, children: "Cancel" }), _jsx("button", { className: styles.submitBtn, onClick: handleAddPassword, disabled: addPasswordBusy || !addPasswordValue, children: addPasswordBusy ? 'Saving…' : 'Save Password' })] })] })), !loginMethodsLoading && linkableProviders.length > 0 && (_jsxs("div", { style: { marginTop: 10 }, children: [_jsx("p", { className: accountStyles.accountMenuMeta, style: { marginBottom: 6 }, children: "Link another account:" }), _jsx("div", { className: authStyles.oauthButtons, children: linkableProviders.map(provider => (_jsx("button", { className: authStyles.oauthButton, onClick: () => onLinkProvider(provider), children: PROVIDER_LABELS[provider] || provider }, provider))) })] }))] })), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Profile & Account" }), _jsx("p", { className: managementStyles.sectionText, children: "Profile editing and account preferences will live here." })] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Billing" }), !isAuthenticated ? (_jsx("p", { className: managementStyles.sectionText, children: "Sign in to manage subscription billing." })) : runtimeMode !== 'cloud' ? (_jsx("p", { className: managementStyles.sectionText, children: "Billing remains cloud-backed in local runtime and uses your connected cloud account." })) : (_jsxs(_Fragment, { children: [billingLoading && (_jsx("p", { className: managementStyles.sectionTextSpaced, children: "Loading billing status..." })), billingError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: billingError })), billingActionError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: billingActionError })), billingNotice && (_jsx("p", { className: managementStyles.errorText, children: billingNotice })), billingRecoveryMessage && (_jsx("p", { className: managementStyles.sectionText, children: billingRecoveryMessage })), _jsxs("p", { className: managementStyles.sectionTextSpaced, children: ["Plan: ", _jsx("code", { children: resolvedPlanLabel }), ' · ', "Entitlement: ", _jsx("code", { children: String(accountProfileSummary?.entitlementState || 'n/a') })] }), _jsxs("p", { className: managementStyles.sectionText, children: ["Stripe status: ", _jsx("code", { children: String(accountProfileSummary?.stripeStatus || 'n/a') }), accountProfileSummary?.effectiveUntil ? ` · Effective until ${new Date(accountProfileSummary.effectiveUntil).toLocaleString()}` : ''] }), _jsx("div", { className: managementStyles.wrapRow, children: _jsxs("label", { className: `${accountStyles.accountMenuMeta} ${managementStyles.inlineFieldLabel}`, children: ["Interval", _jsxs("select", { className: styles.input, value: billingIntervalChoice, onChange: (event) => onBillingIntervalChange(event.target.value === 'year' ? 'year' : 'month'), disabled: billingActionBusy, children: [_jsx("option", { value: "month", children: "Monthly" }), _jsx("option", { value: "year", children: "Yearly" })] })] }) }), _jsxs("div", { className: managementStyles.actionRowEnd, children: [_jsx("button", { className: styles.cancelBtn, onClick: onRefreshBilling, disabled: billingActionBusy || billingLoading, children: "Refresh Billing" }), _jsx("button", { className: styles.cancelBtn, onClick: onUpdateInterval, disabled: billingActionBusy || !accountProfileSummary?.stripeSubscriptionId, children: "Update Interval" }), _jsx("button", { className: styles.cancelBtn, onClick: onManageBilling, disabled: billingActionBusy || !accountProfileSummary?.stripeCustomerId, children: "Manage Billing" }), _jsx("button", { className: styles.submitBtn, onClick: primaryBillingAction, disabled: billingActionBusy || (lifecyclePresentation.primaryAction === 'manage_billing' && !accountProfileSummary?.stripeCustomerId), children: billingActionBusy ? 'Working...' : startCheckoutLabel })] })] }))] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Workspace Audit Log" }), _jsx("p", { className: managementStyles.sectionText, children: "Audit entries are workspace-scoped for the active workspace, not global account history." }), _jsxs("p", { className: managementStyles.sectionText, children: ["Active workspace: ", _jsx("code", { children: currentWorkspaceId })] }), _jsx("div", { className: managementStyles.actionRowEnd, children: _jsx("button", { className: styles.cancelBtn, onClick: onOpenWorkspaceAudit, disabled: !canOpenTeamManagement, children: "Open Workspace Audit" }) })] }), _jsxs("div", { className: accountStyles.accountHubCard, children: [_jsx("strong", { children: "Workspace Cloud Sync" }), _jsx("p", { className: managementStyles.sectionText, children: canManageWorkspaceSync
32
104
  ? (workspaceCloudSyncEnabled
33
105
  ? `Enabled · ${syncStatusLabel}`
34
106
  : 'Disabled')
@@ -16,11 +16,51 @@ describe('AccountHubModal', () => {
16
16
  message: 'Your latest checkout expired. Choose a plan to continue.',
17
17
  billingConflictCode: 'CHECKOUT_SESSION_EXPIRED',
18
18
  planSelectionRequired: true
19
- }, currentWorkspaceId: "workspace-1", canOpenTeamManagement: false, canManageWorkspaceSync: false, workspaceCloudSyncEnabled: false, syncStatusLabel: "Disabled", workspaceSyncError: null, syncControlBusy: false, onClose: () => { }, onOpenWorkspaceAudit: () => { }, onBillingIntervalChange: () => { }, onRefreshBilling: () => { }, onUpdateInterval: () => { }, onManageBilling: () => { }, onStartCheckout: onStartCheckout, onToggleWorkspaceSync: () => { }, onOpenHelp: () => { } }));
20
- expect(screen.getByText('Your latest checkout expired. Choose a plan to continue.')).toBeInTheDocument();
19
+ }, currentWorkspaceId: "workspace-1", canOpenTeamManagement: false, canManageWorkspaceSync: false, workspaceCloudSyncEnabled: false, syncStatusLabel: "Disabled", workspaceSyncError: null, syncControlBusy: false, cloudAuthEnabled: true, availableAuthProviders: [], onFetchLoginMethods: async () => ({ success: true, methods: [] }), onUnlinkLoginMethod: async () => ({ success: true }), onAddPassword: async () => ({ success: true }), onLinkProvider: () => { }, onClose: () => { }, onOpenWorkspaceAudit: () => { }, onBillingIntervalChange: () => { }, onRefreshBilling: () => { }, onUpdateInterval: () => { }, onManageBilling: () => { }, onStartCheckout: onStartCheckout, onToggleWorkspaceSync: () => { }, onOpenHelp: () => { } }));
20
+ expect(screen.getByText('Your previous checkout expired. Choose a plan to continue.')).toBeInTheDocument();
21
21
  expect(screen.getByText('Pro Plan')).toBeInTheDocument();
22
22
  const cta = screen.getByRole('button', { name: 'Choose Plan' });
23
23
  fireEvent.click(cta);
24
24
  expect(onStartCheckout).toHaveBeenCalledTimes(1);
25
25
  });
26
+ it('makes billing recovery the primary action for suspended accounts', () => {
27
+ const onManageBilling = vi.fn();
28
+ render(_jsx(AccountHubModal, { isOpen: true, theme: "dark", runtimeMode: "cloud", authRequiredForApi: true, isAuthenticated: true, hasAuthIdentity: true, authIdentityLabel: "owner@example.com", billingLoading: false, billingError: null, billingActionError: null, billingNotice: null, billingActionBusy: false, billingIntervalChoice: "month", accountProfileSummary: {
29
+ planId: 'pro',
30
+ planName: 'Pro Plan',
31
+ entitlementState: 'suspended',
32
+ stripeCustomerId: 'cus_123'
33
+ }, currentWorkspaceId: "workspace-1", canOpenTeamManagement: false, canManageWorkspaceSync: false, workspaceCloudSyncEnabled: false, syncStatusLabel: "Disabled", workspaceSyncError: null, syncControlBusy: false, cloudAuthEnabled: true, availableAuthProviders: [], onFetchLoginMethods: async () => ({ success: true, methods: [] }), onUnlinkLoginMethod: async () => ({ success: true }), onAddPassword: async () => ({ success: true }), onLinkProvider: () => { }, onClose: () => { }, onOpenWorkspaceAudit: () => { }, onBillingIntervalChange: () => { }, onRefreshBilling: () => { }, onUpdateInterval: () => { }, onManageBilling: onManageBilling, onStartCheckout: () => { }, onToggleWorkspaceSync: () => { }, onOpenHelp: () => { } }));
34
+ expect(screen.getByText('Your access is suspended because billing needs attention. Update billing to restore access.')).toBeInTheDocument();
35
+ fireEvent.click(screen.getAllByRole('button', { name: 'Manage Billing' })[1]);
36
+ expect(onManageBilling).toHaveBeenCalledTimes(1);
37
+ });
38
+ it('shows trialing accounts as active without blocked recovery copy', () => {
39
+ render(_jsx(AccountHubModal, { isOpen: true, theme: "dark", runtimeMode: "cloud", authRequiredForApi: true, isAuthenticated: true, hasAuthIdentity: true, authIdentityLabel: "owner@example.com", billingLoading: false, billingError: null, billingActionError: null, billingNotice: null, billingActionBusy: false, billingIntervalChoice: "month", accountProfileSummary: {
40
+ planId: 'starter',
41
+ planName: 'Starter',
42
+ entitlementState: 'trialing',
43
+ stripeCustomerId: 'cus_123',
44
+ trialEnd: '2026-05-01T12:00:00.000Z'
45
+ }, currentWorkspaceId: "workspace-1", canOpenTeamManagement: false, canManageWorkspaceSync: false, workspaceCloudSyncEnabled: false, syncStatusLabel: "Disabled", workspaceSyncError: null, syncControlBusy: false, cloudAuthEnabled: true, availableAuthProviders: [], onFetchLoginMethods: async () => ({ success: true, methods: [] }), onUnlinkLoginMethod: async () => ({ success: true }), onAddPassword: async () => ({ success: true }), onLinkProvider: () => { }, onClose: () => { }, onOpenWorkspaceAudit: () => { }, onBillingIntervalChange: () => { }, onRefreshBilling: () => { }, onUpdateInterval: () => { }, onManageBilling: () => { }, onStartCheckout: () => { }, onToggleWorkspaceSync: () => { }, onOpenHelp: () => { } }));
46
+ expect(screen.getByText(/Your trial is active through/)).toBeInTheDocument();
47
+ expect(screen.queryByText('Your access is suspended because billing needs attention. Update billing to restore access.')).not.toBeInTheDocument();
48
+ });
49
+ it('shows an updating message instead of an expired active-trial date', () => {
50
+ const nowSpy = vi.spyOn(Date, 'now').mockReturnValue(new Date('2026-04-20T12:00:00.000Z').getTime());
51
+ try {
52
+ render(_jsx(AccountHubModal, { isOpen: true, theme: "dark", runtimeMode: "cloud", authRequiredForApi: true, isAuthenticated: true, hasAuthIdentity: true, authIdentityLabel: "owner@example.com", billingLoading: false, billingError: null, billingActionError: null, billingNotice: null, billingActionBusy: false, billingIntervalChoice: "month", accountProfileSummary: {
53
+ planId: 'starter',
54
+ planName: 'Starter',
55
+ entitlementState: 'trialing',
56
+ stripeCustomerId: 'cus_123',
57
+ trialEnd: '2026-04-12T16:09:09.000Z'
58
+ }, currentWorkspaceId: "workspace-1", canOpenTeamManagement: false, canManageWorkspaceSync: false, workspaceCloudSyncEnabled: false, syncStatusLabel: "Disabled", workspaceSyncError: null, syncControlBusy: false, cloudAuthEnabled: true, availableAuthProviders: [], onFetchLoginMethods: async () => ({ success: true, methods: [] }), onUnlinkLoginMethod: async () => ({ success: true }), onAddPassword: async () => ({ success: true }), onLinkProvider: () => { }, onClose: () => { }, onOpenWorkspaceAudit: () => { }, onBillingIntervalChange: () => { }, onRefreshBilling: () => { }, onUpdateInterval: () => { }, onManageBilling: () => { }, onStartCheckout: () => { }, onToggleWorkspaceSync: () => { }, onOpenHelp: () => { } }));
59
+ expect(screen.getByText('Your trial end date has passed. Billing status is updating.')).toBeInTheDocument();
60
+ expect(screen.queryByText(/Your trial is active through/)).not.toBeInTheDocument();
61
+ }
62
+ finally {
63
+ nowSpy.mockRestore();
64
+ }
65
+ });
26
66
  });
@@ -0,0 +1,20 @@
1
+ import type { ModalThemeName } from './types';
2
+ export interface AvatarImageManagerModalProps {
3
+ isOpen: boolean;
4
+ theme: ModalThemeName;
5
+ title?: string;
6
+ currentImageUrl: string;
7
+ editorImageUrl?: string;
8
+ fallbackInitial: string;
9
+ accept: string;
10
+ busy: boolean;
11
+ hasPendingImage: boolean;
12
+ canRemove: boolean;
13
+ error: string | null;
14
+ notice: string | null;
15
+ onClose: () => void;
16
+ onApplyImage: (file: File, sourceFile?: File | null) => Promise<boolean> | boolean;
17
+ onRemoveImage?: () => void;
18
+ onDiscardPendingImage?: () => void;
19
+ }
20
+ export declare function AvatarImageManagerModal({ isOpen, theme, title, currentImageUrl, editorImageUrl: editorImageUrlProp, fallbackInitial, accept, busy, hasPendingImage, canRemove, error, notice, onClose, onApplyImage, onRemoveImage, onDiscardPendingImage, }: AvatarImageManagerModalProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,127 @@
1
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
3
+ import AvatarEditor from 'react-avatar-editor';
4
+ import { ImagePlus, RotateCcw, Trash2 } from 'lucide-react';
5
+ import { Modal } from '../../../ui/Modal';
6
+ import styles from '../../../../Taskforce.module.css';
7
+ import avatarStyles from './AvatarImageManagerModal.module.css';
8
+ const EDITOR_SIZE = 512;
9
+ const EDITOR_BORDER = 48;
10
+ const OUTPUT_SIZE = 512;
11
+ function canvasToBlob(canvas, type, quality) {
12
+ return new Promise((resolve) => {
13
+ canvas.toBlob(resolve, type, quality);
14
+ });
15
+ }
16
+ function replaceExtension(name, extension) {
17
+ const trimmed = String(name || '').trim() || 'avatar';
18
+ const dotIndex = trimmed.lastIndexOf('.');
19
+ if (dotIndex <= 0)
20
+ return `${trimmed}${extension}`;
21
+ return `${trimmed.slice(0, dotIndex)}${extension}`;
22
+ }
23
+ async function exportAvatarEditorFile(editor, sourceName) {
24
+ const sourceCanvas = editor.getImageScaledToCanvas();
25
+ const outputCanvas = document.createElement('canvas');
26
+ outputCanvas.width = OUTPUT_SIZE;
27
+ outputCanvas.height = OUTPUT_SIZE;
28
+ const context = outputCanvas.getContext('2d');
29
+ if (!context) {
30
+ throw new Error('Image editing requires a 2D canvas context.');
31
+ }
32
+ context.drawImage(sourceCanvas, 0, 0, OUTPUT_SIZE, OUTPUT_SIZE);
33
+ const webpBlob = await canvasToBlob(outputCanvas, 'image/webp', 0.9);
34
+ const blob = webpBlob || await canvasToBlob(outputCanvas, 'image/jpeg', 0.9);
35
+ if (!blob) {
36
+ throw new Error('Unable to prepare profile photo.');
37
+ }
38
+ const type = blob.type || 'image/jpeg';
39
+ const extension = type === 'image/webp' ? '.webp' : '.jpg';
40
+ return new File([blob], replaceExtension(sourceName, extension), {
41
+ type,
42
+ lastModified: Date.now()
43
+ });
44
+ }
45
+ export function AvatarImageManagerModal({ isOpen, theme, title = 'Edit Photo', currentImageUrl, editorImageUrl: editorImageUrlProp = '', fallbackInitial, accept, busy, hasPendingImage, canRemove, error, notice, onClose, onApplyImage, onRemoveImage, onDiscardPendingImage, }) {
46
+ const editorRef = useRef(null);
47
+ const fileInputRef = useRef(null);
48
+ const [selectedFile, setSelectedFile] = useState(null);
49
+ const [selectedObjectUrl, setSelectedObjectUrl] = useState('');
50
+ const [scale, setScale] = useState(1.1);
51
+ const [localError, setLocalError] = useState(null);
52
+ const [localNotice, setLocalNotice] = useState(null);
53
+ useEffect(() => {
54
+ if (!isOpen) {
55
+ setSelectedFile(null);
56
+ setSelectedObjectUrl('');
57
+ setScale(1.1);
58
+ setLocalError(null);
59
+ setLocalNotice(null);
60
+ }
61
+ }, [isOpen]);
62
+ useEffect(() => {
63
+ if (!selectedFile) {
64
+ setSelectedObjectUrl('');
65
+ return;
66
+ }
67
+ const objectUrl = URL.createObjectURL(selectedFile);
68
+ setSelectedObjectUrl(objectUrl);
69
+ return () => URL.revokeObjectURL(objectUrl);
70
+ }, [selectedFile]);
71
+ const editorImage = selectedObjectUrl || editorImageUrlProp || currentImageUrl;
72
+ const sourceName = selectedFile?.name || 'avatar';
73
+ const displayInitial = String(fallbackInitial || '').trim().charAt(0).toUpperCase();
74
+ const effectiveError = localError || error;
75
+ const effectiveNotice = localNotice || notice;
76
+ const handleSelectedFile = useCallback((file) => {
77
+ setLocalError(null);
78
+ setLocalNotice(null);
79
+ if (!file)
80
+ return;
81
+ if (!file.type.startsWith('image/')) {
82
+ setLocalError('Profile photo must be an image file.');
83
+ return;
84
+ }
85
+ if (file.type === 'image/gif') {
86
+ setLocalNotice('Animated GIFs will upload without repositioning.');
87
+ }
88
+ setSelectedFile(file);
89
+ setScale(1.1);
90
+ }, []);
91
+ const handleApply = useCallback(async () => {
92
+ setLocalError(null);
93
+ const editor = editorRef.current;
94
+ if (selectedFile?.type === 'image/gif') {
95
+ const applied = await onApplyImage(selectedFile);
96
+ if (applied) {
97
+ onClose();
98
+ }
99
+ return;
100
+ }
101
+ if (!editor || !editorImage) {
102
+ setLocalError('Choose a profile photo first.');
103
+ return;
104
+ }
105
+ try {
106
+ const file = await exportAvatarEditorFile(editor, sourceName);
107
+ const applied = await onApplyImage(file, selectedFile);
108
+ if (applied) {
109
+ onClose();
110
+ }
111
+ }
112
+ catch (nextError) {
113
+ setLocalError(nextError instanceof Error ? nextError.message : 'Unable to prepare profile photo.');
114
+ }
115
+ }, [editorImage, onApplyImage, onClose, selectedFile, sourceName]);
116
+ const canApply = selectedFile?.type === 'image/gif' || Boolean(editorImage);
117
+ const footer = useMemo(() => (_jsxs(_Fragment, { children: [_jsx("button", { type: "button", className: styles.secondaryButton, onClick: onClose, disabled: busy, children: "Cancel" }), _jsx("button", { type: "button", className: styles.primaryUpdateBtn, onClick: () => { void handleApply(); }, disabled: busy || !canApply, children: busy ? 'Applying...' : 'Apply Photo' })] })), [busy, canApply, handleApply, onClose]);
118
+ return (_jsx(Modal, { isOpen: isOpen, onClose: onClose, title: title, size: "md", theme: theme, draggable: true, footer: footer, children: _jsxs("div", { className: avatarStyles.avatarManagerBody, children: [_jsxs("div", { className: avatarStyles.editorPanel, children: [_jsx("div", { className: `tf-surface-inset ${avatarStyles.editorFrame}`, children: selectedFile?.type === 'image/gif' && selectedObjectUrl ? (_jsx("img", { src: selectedObjectUrl, alt: "", className: avatarStyles.gifPreviewImage })) : editorImage ? (_jsx(AvatarEditor, { ref: editorRef, image: editorImage, width: EDITOR_SIZE, height: EDITOR_SIZE, border: EDITOR_BORDER, borderRadius: EDITOR_SIZE / 2, scale: scale, color: [15, 15, 26, 0.72], backgroundColor: "transparent", style: {
119
+ width: '100%',
120
+ height: '100%',
121
+ maxWidth: '100%',
122
+ maxHeight: '100%',
123
+ display: 'block',
124
+ borderRadius: 'var(--radius-lg)',
125
+ boxShadow: 'var(--box-shadow-sm)'
126
+ }, disableCanvasRotation: true })) : (_jsx("div", { className: avatarStyles.emptyPreview, "aria-hidden": "true", children: displayInitial })) }), _jsxs("div", { className: avatarStyles.controlPanel, children: [_jsx("input", { ref: fileInputRef, type: "file", "aria-label": "Choose profile photo", accept: accept, className: avatarStyles.fileInput, onChange: (event) => handleSelectedFile(event.target.files?.[0] || null), disabled: busy }), _jsxs("div", { className: avatarStyles.actionGrid, children: [_jsxs("button", { type: "button", className: "tf-button-secondary tf-button-compact", onClick: () => fileInputRef.current?.click(), disabled: busy, children: [_jsx(ImagePlus, { size: 16 }), "Choose"] }), hasPendingImage && onDiscardPendingImage && (_jsxs("button", { type: "button", className: "tf-button-secondary tf-button-compact", onClick: onDiscardPendingImage, disabled: busy, children: [_jsx(RotateCcw, { size: 16 }), "Discard"] })), canRemove && onRemoveImage && (_jsxs("button", { type: "button", className: "tf-button-destructive tf-button-compact", onClick: onRemoveImage, disabled: busy, children: [_jsx(Trash2, { size: 16 }), "Remove"] }))] }), _jsxs("label", { className: `tf-field-stack ${avatarStyles.zoomField}`, children: [_jsx("span", { className: "tf-field-label", children: "Zoom" }), _jsx("input", { type: "range", min: "1", max: "3", step: "0.01", value: scale, onChange: (event) => setScale(Number(event.target.value)), className: avatarStyles.zoomSlider, disabled: busy || !editorImage || selectedFile?.type === 'image/gif' })] })] })] }), (effectiveError || effectiveNotice) && (_jsxs("div", { className: avatarStyles.messageStack, children: [effectiveError && _jsx("p", { className: "tf-text-error", children: effectiveError }), effectiveNotice && !effectiveError && _jsx("p", { className: "tf-text-helper", children: effectiveNotice })] }))] }) }));
127
+ }
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import type { ModalThemeName } from './types';
3
2
  interface EditProfileModalProps {
4
3
  isOpen: boolean;
@@ -9,18 +8,12 @@ interface EditProfileModalProps {
9
8
  email: string;
10
9
  avatarDisplayUrl: string;
11
10
  accountBadgeInitial: string;
12
- avatarInputRef: React.RefObject<HTMLInputElement | null>;
13
- avatarAccept: string;
14
- avatarDraftId: string | null;
15
11
  saveBusy: boolean;
16
12
  avatarBusy: boolean;
17
13
  saveError: string | null;
18
14
  saveNotice: string | null;
19
15
  onDisplayNameChange: (value: string) => void;
20
- onAvatarInputChange: (file: File | null) => void;
21
- onStartAvatarUpload: () => void;
22
- onDiscardUpload: () => void;
23
- onRemovePhoto: () => void;
16
+ onOpenAvatarManager: () => void;
24
17
  }
25
- export declare function EditProfileModal({ isOpen, theme, onClose, onSave, displayName, email, avatarDisplayUrl, accountBadgeInitial, avatarInputRef, avatarAccept, avatarDraftId, saveBusy, avatarBusy, saveError, saveNotice, onDisplayNameChange, onAvatarInputChange, onStartAvatarUpload, onDiscardUpload, onRemovePhoto, }: EditProfileModalProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare function EditProfileModal({ isOpen, theme, onClose, onSave, displayName, email, avatarDisplayUrl, accountBadgeInitial, saveBusy, avatarBusy, saveError, saveNotice, onDisplayNameChange, onOpenAvatarManager, }: EditProfileModalProps): import("react/jsx-runtime").JSX.Element;
26
19
  export {};
@@ -1,10 +1,11 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { Modal } from '../../../ui/Modal';
3
+ import { EditableAvatarButton } from '../../../ui/EditableAvatarButton';
3
4
  import modalStyles from '../../../ui/Modal.module.css';
4
5
  import accountStyles from '../../StandaloneAccount.module.css';
5
6
  import authStyles from '../../AuthShell.module.css';
6
7
  import managementStyles from '../../StandaloneManagement.module.css';
7
8
  import styles from '../../../../Taskforce.module.css';
8
- export function EditProfileModal({ isOpen, theme, onClose, onSave, displayName, email, avatarDisplayUrl, accountBadgeInitial, avatarInputRef, avatarAccept, avatarDraftId, saveBusy, avatarBusy, saveError, saveNotice, onDisplayNameChange, onAvatarInputChange, onStartAvatarUpload, onDiscardUpload, onRemovePhoto, }) {
9
- return (_jsx(Modal, { isOpen: isOpen, onClose: onClose, title: "Edit Profile", size: "sm", theme: theme, draggable: true, footer: (_jsxs(_Fragment, { children: [_jsx("button", { type: "button", className: styles.secondaryButton, onClick: onClose, disabled: saveBusy || avatarBusy, children: "Cancel" }), _jsx("button", { type: "button", className: styles.primaryUpdateBtn, onClick: onSave, disabled: saveBusy || avatarBusy || !displayName.trim(), children: saveBusy ? 'Saving...' : 'Save Profile' })] })), children: _jsxs("div", { className: `${modalStyles.form} ${managementStyles.modalBody}`, children: [_jsx("p", { className: managementStyles.sectionText, children: "Update the name shown around your account and shared workspace surfaces." }), _jsxs("div", { className: accountStyles.profileAvatarEditor, children: [_jsx("div", { className: accountStyles.profileAvatarPreview, "aria-label": "Profile photo preview", children: avatarDisplayUrl ? (_jsx("img", { src: avatarDisplayUrl, alt: "", className: accountStyles.profileAvatarImage })) : (_jsx("span", { children: accountBadgeInitial })) }), _jsxs("div", { className: accountStyles.profileAvatarActions, children: [_jsx("input", { ref: avatarInputRef, type: "file", "aria-label": "Upload profile photo", accept: avatarAccept, className: accountStyles.profileAvatarInput, onChange: (event) => onAvatarInputChange(event.target.files?.[0] || null), disabled: saveBusy || avatarBusy }), _jsx("button", { type: "button", className: styles.secondaryButton, onClick: onStartAvatarUpload, disabled: saveBusy || avatarBusy, children: avatarBusy ? 'Uploading...' : 'Upload Photo' }), avatarDraftId && (_jsx("button", { type: "button", className: styles.secondaryButton, onClick: onDiscardUpload, disabled: saveBusy || avatarBusy, children: "Discard Upload" })), avatarDisplayUrl && (_jsx("button", { type: "button", className: styles.secondaryButton, onClick: onRemovePhoto, disabled: saveBusy || avatarBusy, children: "Remove Photo" }))] })] }), _jsxs("label", { className: managementStyles.inlineFieldLabel, children: ["Display name", _jsx("input", { className: styles.input, type: "text", value: displayName, onChange: (event) => onDisplayNameChange(event.target.value), placeholder: "Display name", disabled: saveBusy })] }), _jsxs("label", { className: managementStyles.inlineFieldLabel, children: ["Email", _jsx("input", { className: styles.input, type: "email", value: email, readOnly: true, disabled: true })] }), saveError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: saveError })), saveNotice && !saveError && (_jsx("p", { className: managementStyles.errorText, children: saveNotice }))] }) }));
9
+ export function EditProfileModal({ isOpen, theme, onClose, onSave, displayName, email, avatarDisplayUrl, accountBadgeInitial, saveBusy, avatarBusy, saveError, saveNotice, onDisplayNameChange, onOpenAvatarManager, }) {
10
+ return (_jsx(Modal, { isOpen: isOpen, onClose: onClose, title: "Edit Profile", size: "sm", theme: theme, draggable: true, footer: (_jsxs(_Fragment, { children: [_jsx("button", { type: "button", className: styles.secondaryButton, onClick: onClose, disabled: saveBusy || avatarBusy, children: "Cancel" }), _jsx("button", { type: "button", className: styles.primaryUpdateBtn, onClick: onSave, disabled: saveBusy || avatarBusy || !displayName.trim(), children: saveBusy ? 'Saving...' : 'Save Profile' })] })), children: _jsxs("div", { className: `${modalStyles.form} ${managementStyles.modalBody}`, children: [_jsxs("div", { className: accountStyles.profileEditLayout, children: [_jsx("div", { className: accountStyles.profileAvatarEditor, children: _jsx(EditableAvatarButton, { label: "Edit profile photo", imageUrl: avatarDisplayUrl, fallback: accountBadgeInitial, disabled: saveBusy || avatarBusy, onClick: onOpenAvatarManager }) }), _jsxs("div", { className: accountStyles.profileFieldStack, children: [_jsxs("label", { className: accountStyles.profileFieldLabel, children: [_jsx("span", { children: "Display name" }), _jsx("input", { className: styles.input, type: "text", value: displayName, onChange: (event) => onDisplayNameChange(event.target.value), placeholder: "Display name", disabled: saveBusy })] }), _jsxs("label", { className: accountStyles.profileFieldLabel, children: [_jsx("span", { children: "Email" }), _jsx("input", { className: styles.input, type: "email", value: email, readOnly: true, disabled: true })] })] })] }), saveError && (_jsx("p", { className: `${authStyles.loginError} ${managementStyles.errorText}`, children: saveError })), saveNotice && !saveError && (_jsx("p", { className: managementStyles.errorText, children: saveNotice }))] }) }));
10
11
  }
@@ -0,0 +1,9 @@
1
+ import type { ModalThemeName } from './types';
2
+ interface SyncEnableWarningModalProps {
3
+ isOpen: boolean;
4
+ theme: ModalThemeName;
5
+ onClose: () => void;
6
+ onConfirm: () => void;
7
+ }
8
+ export declare function SyncEnableWarningModal({ isOpen, theme, onClose, onConfirm }: SyncEnableWarningModalProps): import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,6 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Modal } from '../../../ui/Modal';
3
+ import styles from '../../../../Taskforce.module.css';
4
+ export function SyncEnableWarningModal({ isOpen, theme, onClose, onConfirm }) {
5
+ return (_jsx(Modal, { isOpen: isOpen, onClose: onClose, title: "Cloud Sync Warning", size: "sm", theme: theme, draggable: false, closeOnOverlayClick: false, children: _jsxs("div", { className: `${styles.form} tf-inline-stack-sm`, style: { padding: '16px', gap: '12px' }, children: [_jsx("p", { className: "tf-text-body", children: "Turning on cloud sync can renumber task, document, and image references to match the cloud workspace." }), _jsxs("p", { className: "tf-text-helper", children: ["Labels like ", _jsx("code", { children: "T-12" }), ", ", _jsx("code", { children: "D-4" }), ", and ", _jsx("code", { children: "IMG-2" }), " may change. Plain file attachments are not renumbered."] }), _jsxs("div", { className: styles.formActions, children: [_jsx("button", { className: styles.cancelBtn, onClick: onClose, children: "Go Back" }), _jsx("button", { className: styles.submitBtn, onClick: onConfirm, children: "Enable Sync Anyway" })] })] }) }));
6
+ }
@@ -0,0 +1,24 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { fireEvent, render, screen } from '@testing-library/react';
3
+ import { describe, expect, it, vi } from 'vitest';
4
+ import { SyncEnableWarningModal } from './SyncEnableWarningModal';
5
+ vi.mock('../../../ui/Modal', () => ({
6
+ Modal: ({ isOpen, children, title }) => (isOpen ? _jsxs("div", { children: [_jsx("h1", { children: title }), children] }) : null)
7
+ }));
8
+ describe('SyncEnableWarningModal', () => {
9
+ it('warns that cloud sync reassigns canonical reference numbers', () => {
10
+ render(_jsx(SyncEnableWarningModal, { isOpen: true, theme: "dark", onClose: () => { }, onConfirm: () => { } }));
11
+ expect(screen.getByText('Turning on cloud sync can renumber task, document, and image references to match the cloud workspace.')).toBeInTheDocument();
12
+ expect(screen.getByText(/Plain file attachments are not renumbered/)).toBeInTheDocument();
13
+ expect(screen.getByRole('button', { name: 'Enable Sync Anyway' })).toBeInTheDocument();
14
+ });
15
+ it('routes cancel and confirm actions to the provided handlers', () => {
16
+ const onClose = vi.fn();
17
+ const onConfirm = vi.fn();
18
+ render(_jsx(SyncEnableWarningModal, { isOpen: true, theme: "dark", onClose: onClose, onConfirm: onConfirm }));
19
+ fireEvent.click(screen.getByRole('button', { name: 'Go Back' }));
20
+ fireEvent.click(screen.getByRole('button', { name: 'Enable Sync Anyway' }));
21
+ expect(onClose).toHaveBeenCalledTimes(1);
22
+ expect(onConfirm).toHaveBeenCalledTimes(1);
23
+ });
24
+ });
@@ -32,6 +32,7 @@ interface SyncStatusModalProps {
32
32
  syncControlBusy: boolean;
33
33
  canManageWorkspaceSync: boolean;
34
34
  workspaceSyncSummary: string;
35
+ workspaceSyncRecommendedAction: string;
35
36
  workspaceSyncRepairBusy: boolean;
36
37
  referenceMismatchCount: number;
37
38
  syncStageLabel: string;
@@ -57,5 +58,5 @@ interface SyncStatusModalProps {
57
58
  onOpenLogin: () => void;
58
59
  onRetrySync: () => void;
59
60
  }
60
- export declare function SyncStatusModal({ isOpen, theme, currentWorkspaceLabel, syncStatusMeta, workspaceCloudSyncEnabled, syncControlBusy, canManageWorkspaceSync, workspaceSyncSummary, workspaceSyncRepairBusy, referenceMismatchCount, syncStageLabel, workspaceSyncPendingChanges, formattedLastSyncTime, formattedLastPullTime, formattedLastPushTime, syncLastError, workspaceSyncDiagnostics, activeReferenceMismatchSummaries, syncDiagnosticsSummary, syncEventRows, syncEventsListRef, workspaceSyncRepairQueued, workspaceSyncBusy, workspaceSyncCopied, runtimeMode, isAuthenticated, onClose, onToggleWorkspaceSync, onRepairSync, onCopyReport, onOpenLogin, onRetrySync, }: SyncStatusModalProps): import("react/jsx-runtime").JSX.Element;
61
+ export declare function SyncStatusModal({ isOpen, theme, currentWorkspaceLabel, syncStatusMeta, workspaceCloudSyncEnabled, syncControlBusy, canManageWorkspaceSync, workspaceSyncSummary, workspaceSyncRecommendedAction, workspaceSyncRepairBusy, referenceMismatchCount, syncStageLabel, workspaceSyncPendingChanges, formattedLastSyncTime, formattedLastPullTime, formattedLastPushTime, syncLastError, workspaceSyncDiagnostics, activeReferenceMismatchSummaries, syncDiagnosticsSummary, syncEventRows, syncEventsListRef, workspaceSyncRepairQueued, workspaceSyncBusy, workspaceSyncCopied, runtimeMode, isAuthenticated, onClose, onToggleWorkspaceSync, onRepairSync, onCopyReport, onOpenLogin, onRetrySync, }: SyncStatusModalProps): import("react/jsx-runtime").JSX.Element;
61
62
  export {};
@@ -4,7 +4,7 @@ import { Modal } from '../../../ui/Modal';
4
4
  import modalStyles from '../../../ui/Modal.module.css';
5
5
  import syncStatusStyles from '../../SyncStatusModal.module.css';
6
6
  import styles from '../../../../Taskforce.module.css';
7
- export function SyncStatusModal({ isOpen, theme, currentWorkspaceLabel, syncStatusMeta, workspaceCloudSyncEnabled, syncControlBusy, canManageWorkspaceSync, workspaceSyncSummary, workspaceSyncRepairBusy, referenceMismatchCount, syncStageLabel, workspaceSyncPendingChanges, formattedLastSyncTime, formattedLastPullTime, formattedLastPushTime, syncLastError, workspaceSyncDiagnostics, activeReferenceMismatchSummaries, syncDiagnosticsSummary, syncEventRows, syncEventsListRef, workspaceSyncRepairQueued, workspaceSyncBusy, workspaceSyncCopied, runtimeMode, isAuthenticated, onClose, onToggleWorkspaceSync, onRepairSync, onCopyReport, onOpenLogin, onRetrySync, }) {
7
+ export function SyncStatusModal({ isOpen, theme, currentWorkspaceLabel, syncStatusMeta, workspaceCloudSyncEnabled, syncControlBusy, canManageWorkspaceSync, workspaceSyncSummary, workspaceSyncRecommendedAction, workspaceSyncRepairBusy, referenceMismatchCount, syncStageLabel, workspaceSyncPendingChanges, formattedLastSyncTime, formattedLastPullTime, formattedLastPushTime, syncLastError, workspaceSyncDiagnostics, activeReferenceMismatchSummaries, syncDiagnosticsSummary, syncEventRows, syncEventsListRef, workspaceSyncRepairQueued, workspaceSyncBusy, workspaceSyncCopied, runtimeMode, isAuthenticated, onClose, onToggleWorkspaceSync, onRepairSync, onCopyReport, onOpenLogin, onRetrySync, }) {
8
8
  return (_jsx(Modal, { isOpen: isOpen, onClose: onClose, title: "Sync Manager", size: "mdWide", theme: theme, draggable: true, children: _jsxs("div", { className: `${modalStyles.form} ${syncStatusStyles.syncStatusModal}`, style: { gap: '10px' }, children: [_jsxs("div", { className: syncStatusStyles.syncStatusTop, children: [_jsx("div", { className: syncStatusStyles.syncStatusHeaderInfo, children: _jsxs("div", { className: syncStatusStyles.syncStatusMetaHeader, children: [_jsx("div", { className: syncStatusStyles.syncStatusBadge, style: {
9
9
  borderColor: syncStatusMeta.border,
10
10
  background: syncStatusMeta.background,
@@ -14,7 +14,7 @@ export function SyncStatusModal({ isOpen, theme, currentWorkspaceLabel, syncStat
14
14
  workspaceCloudSyncEnabled ? syncStatusStyles.syncToggleControlEnabled : syncStatusStyles.syncToggleControlDisabled,
15
15
  syncControlBusy ? syncStatusStyles.syncToggleControlBusy : '',
16
16
  !canManageWorkspaceSync ? syncStatusStyles.syncToggleControlBlocked : ''
17
- ].filter(Boolean).join(' '), children: [_jsx("input", { className: syncStatusStyles.syncToggleInput, type: "checkbox", role: "switch", "aria-label": "Enable Sync", checked: workspaceCloudSyncEnabled, disabled: !canManageWorkspaceSync || syncControlBusy, onChange: (event) => onToggleWorkspaceSync(event.target.checked) }), _jsx("span", { className: `${syncStatusStyles.syncToggleState} ${syncStatusStyles.syncToggleStateOn}`, children: "On" }), _jsx("span", { className: `${syncStatusStyles.syncToggleState} ${syncStatusStyles.syncToggleStateOff}`, children: "Off" }), _jsx("span", { className: syncStatusStyles.syncToggleThumb })] }) })] }), _jsxs("div", { className: syncStatusStyles.syncStatusSummaryCompact, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Health" }), _jsx("span", { className: syncStatusStyles.syncStatusSummaryValue, children: workspaceSyncSummary })] }), workspaceSyncRepairBusy && (_jsxs("div", { className: syncStatusStyles.syncStatusRepairBanner, children: [_jsxs("div", { className: syncStatusStyles.syncStatusRepairHeader, children: [_jsxs("div", { className: syncStatusStyles.syncStatusRepairBadge, children: [_jsx(Loader2, { size: 13, className: styles.spinner }), _jsx("span", { children: "Repair In Progress" })] }), _jsx("span", { className: syncStatusStyles.syncStatusRepairMeta, children: "Advanced recovery mode" })] }), _jsx("span", { className: syncStatusStyles.syncStatusRepairText, children: referenceMismatchCount > 0
17
+ ].filter(Boolean).join(' '), children: [_jsx("input", { className: syncStatusStyles.syncToggleInput, type: "checkbox", role: "switch", "aria-label": "Enable Sync", checked: workspaceCloudSyncEnabled, disabled: !canManageWorkspaceSync || syncControlBusy, onChange: (event) => onToggleWorkspaceSync(event.target.checked) }), _jsx("span", { className: `${syncStatusStyles.syncToggleState} ${syncStatusStyles.syncToggleStateOn}`, children: "On" }), _jsx("span", { className: `${syncStatusStyles.syncToggleState} ${syncStatusStyles.syncToggleStateOff}`, children: "Off" }), _jsx("span", { className: syncStatusStyles.syncToggleThumb })] }) })] }), _jsxs("div", { className: syncStatusStyles.syncStatusSummaryCompact, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Health" }), _jsx("span", { className: syncStatusStyles.syncStatusSummaryValue, children: workspaceSyncSummary })] }), _jsxs("div", { className: syncStatusStyles.syncStatusSummaryCompact, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Next Step" }), _jsx("span", { className: syncStatusStyles.syncStatusSummaryValue, children: workspaceSyncRecommendedAction })] }), workspaceSyncRepairBusy && (_jsxs("div", { className: syncStatusStyles.syncStatusRepairBanner, children: [_jsxs("div", { className: syncStatusStyles.syncStatusRepairHeader, children: [_jsxs("div", { className: syncStatusStyles.syncStatusRepairBadge, children: [_jsx(Loader2, { size: 13, className: styles.spinner }), _jsx("span", { children: "Repair In Progress" })] }), _jsx("span", { className: syncStatusStyles.syncStatusRepairMeta, children: "Advanced recovery mode" })] }), _jsx("span", { className: syncStatusStyles.syncStatusRepairText, children: referenceMismatchCount > 0
18
18
  ? `Taskforce is clearing the saved sync cursor and reconciling workspace state from the cloud again, including ${referenceMismatchCount} detected reference mismatch${referenceMismatchCount === 1 ? '' : 'es'}. The panel may stay busy for a while during large repairs.`
19
19
  : 'Taskforce is clearing the saved sync cursor and reconciling workspace state from the cloud again. The panel may stay busy for a while during large repairs.' })] })), _jsx("div", { className: syncStatusStyles.syncStatusSectionHeader, children: _jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Current Session" }) }), _jsxs("div", { className: syncStatusStyles.syncStatusCompactGrid, children: [_jsxs("div", { className: syncStatusStyles.syncStatusCompactItem, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Stage" }), _jsx("span", { className: syncStatusStyles.syncStatusValue, children: syncStageLabel })] }), _jsxs("div", { className: syncStatusStyles.syncStatusCompactItem, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Local Changes" }), _jsx("span", { className: syncStatusStyles.syncStatusValue, children: workspaceSyncPendingChanges })] }), _jsxs("div", { className: syncStatusStyles.syncStatusCompactItem, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Last Successful" }), _jsx("span", { className: syncStatusStyles.syncStatusValue, children: formattedLastSyncTime })] })] }), _jsx("div", { className: syncStatusStyles.syncStatusSectionHeader, children: _jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Activity" }) }), _jsxs("div", { className: syncStatusStyles.syncStatusCompactGrid, children: [_jsxs("div", { className: syncStatusStyles.syncStatusCompactItem, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Last Pull" }), _jsx("span", { className: syncStatusStyles.syncStatusValue, children: formattedLastPullTime })] }), _jsxs("div", { className: syncStatusStyles.syncStatusCompactItem, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, children: "Last Push" }), _jsx("span", { className: syncStatusStyles.syncStatusValue, children: formattedLastPushTime })] })] }), syncLastError !== 'None' && (_jsxs("div", { className: syncStatusStyles.syncStatusPanel, style: { background: 'rgba(239, 68, 68, 0.05)', borderColor: 'rgba(239, 68, 68, 0.2)' }, children: [_jsxs("div", { className: syncStatusStyles.syncStatusSectionHeader, style: { marginTop: 0 }, children: [_jsx(AlertTriangle, { size: 12, color: "#fda4af" }), _jsxs("span", { className: syncStatusStyles.syncStatusLabel, style: { color: '#fda4af' }, children: ["Last Error (", workspaceSyncDiagnostics.lastErrorAt ? new Date(workspaceSyncDiagnostics.lastErrorAt).toLocaleTimeString() : 'Recent', ")"] })] }), _jsx("span", { className: `${syncStatusStyles.syncStatusValue} ${syncStatusStyles.syncStatusValueError}`, children: syncLastError })] })), referenceMismatchCount > 0 && (_jsxs("div", { className: syncStatusStyles.syncStatusPanel, style: { background: 'rgba(250, 204, 21, 0.08)', borderColor: 'rgba(250, 204, 21, 0.22)' }, children: [_jsxs("div", { className: syncStatusStyles.syncStatusPanelHeader, children: [_jsx("span", { className: syncStatusStyles.syncStatusLabel, style: { color: '#fde68a' }, children: "Identifier Integrity" }), _jsxs("span", { className: syncStatusStyles.syncStatusPanelMeta, children: [referenceMismatchCount, " mismatch", referenceMismatchCount === 1 ? '' : 'es', " detected"] })] }), _jsx("span", { className: syncStatusStyles.syncStatusValue, children: "Task, document, or image reference numbers disagreed during normal sync. Cloud-backed sync preserves the incoming cloud reference and renumbers the displaced local item to the next available reference." }), activeReferenceMismatchSummaries.length > 0 && (_jsx("div", { style: { marginTop: '10px', display: 'flex', flexDirection: 'column', gap: '8px' }, children: activeReferenceMismatchSummaries.map((item) => (_jsxs("div", { style: {
20
20
  display: 'flex',
@@ -26,7 +26,7 @@ const SPECS = [
26
26
  { key: 'TASKFORCE_BOOTSTRAP_ADMIN_EMAIL', description: 'Bootstrap admin email used by login fallback.', category: 'Auth', targets: ['server', 'all'] },
27
27
  { key: 'TASKFORCE_BOOTSTRAP_ADMIN_PASSWORD', description: 'Bootstrap admin password used by login fallback.', category: 'Auth', secret: true, targets: ['server', 'all'] },
28
28
  { key: 'TASKFORCE_AUTH_PUBLIC_BASE_URL', description: 'Public auth URL used in email links.', category: 'Auth', example: 'https://performance-app.taskforcehq.ai', targets: ['server', 'all'] },
29
- { key: 'TASKFORCE_AUTH_EXPOSE_DEV_TOKENS', description: 'Expose dev auth tokens in responses.', category: 'Auth', defaultValue: 'false', targets: ['server', 'all'] },
29
+ { key: 'TASKFORCE_AUTH_EXPOSE_DEV_TOKENS', description: 'Explicitly expose auth tokens in non-production responses for test automation.', category: 'Auth', defaultValue: 'false', targets: ['server', 'all'] },
30
30
  { key: 'TASKFORCE_CLOUD_PROXY_BASE_URL', description: 'Optional upstream cloud base URL for local proxying of auth/sync API calls.', category: 'Auth', example: 'https://performance-app.taskforcehq.ai', targets: ['server', 'all'] },
31
31
  { key: 'TASKFORCE_CF_ACCESS_CLIENT_ID', description: 'Optional Cloudflare Access service token client id for local cloud proxy.', category: 'Cloudflare', secret: true, targets: ['server', 'all'] },
32
32
  { key: 'TASKFORCE_CF_ACCESS_CLIENT_SECRET', description: 'Optional Cloudflare Access service token client secret for local cloud proxy.', category: 'Cloudflare', secret: true, targets: ['server', 'all'] },