@elizaos/ui 2.0.0-beta.2 → 2.0.3-beta.2

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 (3576) hide show
  1. package/App.d.ts.map +1 -1
  2. package/App.js +785 -335
  3. package/agent-surface/AgentElementOverlay.d.ts +9 -0
  4. package/agent-surface/AgentElementOverlay.d.ts.map +1 -0
  5. package/agent-surface/AgentElementOverlay.js +85 -0
  6. package/agent-surface/AgentSurfaceContext.d.ts +18 -0
  7. package/agent-surface/AgentSurfaceContext.d.ts.map +1 -0
  8. package/agent-surface/AgentSurfaceContext.hooks.d.ts +16 -0
  9. package/agent-surface/AgentSurfaceContext.hooks.d.ts.map +1 -0
  10. package/agent-surface/AgentSurfaceContext.hooks.js +11 -0
  11. package/agent-surface/AgentSurfaceContext.js +33 -0
  12. package/agent-surface/__e2e__/fixture.d.ts +14 -0
  13. package/agent-surface/__e2e__/fixture.d.ts.map +1 -0
  14. package/agent-surface/__e2e__/fixture.js +52 -0
  15. package/agent-surface/capabilities.d.ts +20 -0
  16. package/agent-surface/capabilities.d.ts.map +1 -0
  17. package/agent-surface/capabilities.js +85 -0
  18. package/agent-surface/components.d.ts +52 -0
  19. package/agent-surface/components.d.ts.map +1 -0
  20. package/agent-surface/components.js +41 -0
  21. package/agent-surface/element-reporter.d.ts +19 -0
  22. package/agent-surface/element-reporter.d.ts.map +1 -0
  23. package/agent-surface/element-reporter.hooks.d.ts +27 -0
  24. package/agent-surface/element-reporter.hooks.d.ts.map +1 -0
  25. package/agent-surface/element-reporter.hooks.js +79 -0
  26. package/agent-surface/element-reporter.js +24 -0
  27. package/agent-surface/index.d.ts +16 -0
  28. package/agent-surface/index.d.ts.map +1 -0
  29. package/agent-surface/index.js +15 -0
  30. package/agent-surface/registry.d.ts +48 -0
  31. package/agent-surface/registry.d.ts.map +1 -0
  32. package/agent-surface/registry.js +274 -0
  33. package/agent-surface/types.d.ts +93 -0
  34. package/agent-surface/types.d.ts.map +1 -0
  35. package/agent-surface/types.js +40 -0
  36. package/agent-surface/useAgentElement.d.ts +31 -0
  37. package/agent-surface/useAgentElement.d.ts.map +1 -0
  38. package/agent-surface/useAgentElement.js +96 -0
  39. package/api/agent-client-type-shim.d.ts +12 -94
  40. package/api/agent-client-type-shim.d.ts.map +1 -1
  41. package/api/android-native-agent-transport.d.ts +25 -0
  42. package/api/android-native-agent-transport.d.ts.map +1 -1
  43. package/api/android-native-agent-transport.js +255 -50
  44. package/api/auth-client.d.ts.map +1 -1
  45. package/api/auth-client.js +61 -0
  46. package/api/browser-contracts.d.ts +222 -0
  47. package/api/browser-contracts.d.ts.map +1 -0
  48. package/api/browser-contracts.js +1 -0
  49. package/api/client-agent.d.ts +68 -10
  50. package/api/client-agent.d.ts.map +1 -1
  51. package/api/client-agent.js +980 -289
  52. package/api/client-base.d.ts +58 -8
  53. package/api/client-base.d.ts.map +1 -1
  54. package/api/client-base.js +591 -213
  55. package/api/client-browser-workspace.d.ts +1 -1
  56. package/api/client-browser-workspace.d.ts.map +1 -1
  57. package/api/client-chat.d.ts +87 -5
  58. package/api/client-chat.d.ts.map +1 -1
  59. package/api/client-chat.js +305 -94
  60. package/api/client-cloud.d.ts +139 -10
  61. package/api/client-cloud.d.ts.map +1 -1
  62. package/api/client-cloud.js +472 -45
  63. package/api/client-computeruse.d.ts +1 -1
  64. package/api/client-computeruse.d.ts.map +1 -1
  65. package/api/client-local-inference.d.ts +2 -2
  66. package/api/client-local-inference.d.ts.map +1 -1
  67. package/api/client-local-inference.js +2 -1
  68. package/api/client-notifications.d.ts +31 -0
  69. package/api/client-notifications.d.ts.map +1 -0
  70. package/api/client-notifications.js +34 -0
  71. package/api/client-skills.d.ts +109 -126
  72. package/api/client-skills.d.ts.map +1 -1
  73. package/api/client-skills.js +116 -90
  74. package/api/client-transcripts.d.ts +42 -0
  75. package/api/client-transcripts.d.ts.map +1 -0
  76. package/api/client-transcripts.js +25 -0
  77. package/api/client-types-chat.d.ts +187 -3
  78. package/api/client-types-chat.d.ts.map +1 -1
  79. package/api/client-types-cloud.d.ts +318 -37
  80. package/api/client-types-cloud.d.ts.map +1 -1
  81. package/api/client-types-cloud.js +4 -4
  82. package/api/client-types-commands.d.ts +55 -0
  83. package/api/client-types-commands.d.ts.map +1 -0
  84. package/api/client-types-commands.js +7 -0
  85. package/api/client-types-config.d.ts +1023 -16
  86. package/api/client-types-config.d.ts.map +1 -1
  87. package/api/client-types-core.d.ts +109 -156
  88. package/api/client-types-core.d.ts.map +1 -1
  89. package/api/client-types-feed.d.ts +262 -0
  90. package/api/client-types-feed.d.ts.map +1 -0
  91. package/api/client-types-feed.js +2 -0
  92. package/api/client-types.d.ts +1 -1
  93. package/api/client-types.d.ts.map +1 -1
  94. package/api/client-types.js +1 -1
  95. package/api/client-voice-models.d.ts +67 -0
  96. package/api/client-voice-models.d.ts.map +1 -0
  97. package/api/client-voice-models.js +34 -0
  98. package/api/client-voice-profiles.d.ts +153 -0
  99. package/api/client-voice-profiles.d.ts.map +1 -0
  100. package/api/client-voice-profiles.js +261 -0
  101. package/api/client-workflow.d.ts +9 -1
  102. package/api/client-workflow.d.ts.map +1 -1
  103. package/api/client-workflow.js +29 -0
  104. package/api/client-xr.d.ts +18 -0
  105. package/api/client-xr.d.ts.map +1 -0
  106. package/api/client-xr.js +4 -0
  107. package/api/client.d.ts +10 -5
  108. package/api/client.d.ts.map +1 -1
  109. package/api/client.js +8 -3
  110. package/api/csrf-client.d.ts.map +1 -1
  111. package/api/csrf-client.js +11 -1
  112. package/api/desktop-http-transport.d.ts.map +1 -1
  113. package/api/desktop-http-transport.js +1 -25
  114. package/api/i18n-locale-client.d.ts +15 -0
  115. package/api/i18n-locale-client.d.ts.map +1 -0
  116. package/api/i18n-locale-client.js +36 -0
  117. package/api/index.d.ts +1 -0
  118. package/api/index.d.ts.map +1 -1
  119. package/api/index.js +1 -0
  120. package/api/ios-local-agent-kernel.d.ts.map +1 -1
  121. package/api/ios-local-agent-kernel.js +821 -116
  122. package/api/ios-local-agent-transport.d.ts +32 -0
  123. package/api/ios-local-agent-transport.d.ts.map +1 -1
  124. package/api/ios-local-agent-transport.js +564 -4
  125. package/api/ittp-agent-transport.d.ts +8 -1
  126. package/api/ittp-agent-transport.d.ts.map +1 -1
  127. package/api/ittp-agent-transport.js +11 -1
  128. package/api/native-agent-stream.d.ts +57 -0
  129. package/api/native-agent-stream.d.ts.map +1 -0
  130. package/api/native-agent-stream.js +126 -0
  131. package/api/native-cloud-http-transport.d.ts.map +1 -1
  132. package/api/native-cloud-http-transport.js +77 -28
  133. package/api/request-timeout.d.ts.map +1 -1
  134. package/api/request-timeout.js +47 -1
  135. package/api/runtime-mode-client.d.ts.map +1 -1
  136. package/api/transport.d.ts +14 -0
  137. package/api/transport.d.ts.map +1 -1
  138. package/api/transport.js +49 -0
  139. package/app-navigate-view.d.ts +57 -0
  140. package/app-navigate-view.d.ts.map +1 -0
  141. package/app-navigate-view.js +191 -0
  142. package/app-shell-components.d.ts +3 -13
  143. package/app-shell-components.d.ts.map +1 -1
  144. package/app-shell-components.js +11 -12
  145. package/app-shell-registry.d.ts +21 -4
  146. package/app-shell-registry.d.ts.map +1 -1
  147. package/app-shell-registry.js +17 -1
  148. package/backgrounds/BackgroundHost.d.ts +14 -0
  149. package/backgrounds/BackgroundHost.d.ts.map +1 -0
  150. package/backgrounds/BackgroundHost.js +20 -0
  151. package/backgrounds/index.d.ts +4 -0
  152. package/backgrounds/index.d.ts.map +1 -0
  153. package/backgrounds/index.js +2 -0
  154. package/backgrounds/types.d.ts +13 -0
  155. package/backgrounds/types.d.ts.map +1 -0
  156. package/backgrounds/types.js +12 -0
  157. package/bridge/capacitor-bridge.d.ts.map +1 -1
  158. package/bridge/capacitor-bridge.js +18 -2
  159. package/bridge/electrobun-rpc.d.ts +115 -0
  160. package/bridge/electrobun-rpc.d.ts.map +1 -1
  161. package/bridge/electrobun-rpc.js +128 -1
  162. package/bridge/electrobun-runtime.d.ts.map +1 -1
  163. package/bridge/electrobun-runtime.js +33 -5
  164. package/bridge/gateway-discovery.d.ts.map +1 -1
  165. package/bridge/gateway-discovery.js +3 -1
  166. package/bridge/native-notifications.d.ts +40 -0
  167. package/bridge/native-notifications.d.ts.map +1 -0
  168. package/bridge/native-notifications.js +166 -0
  169. package/bridge/native-plugins.d.ts +231 -5
  170. package/bridge/native-plugins.d.ts.map +1 -1
  171. package/bridge/native-plugins.js +9 -0
  172. package/bridge/plugin-bridge.d.ts +1 -1
  173. package/bridge/plugin-bridge.d.ts.map +1 -1
  174. package/bridge/plugin-bridge.js +2 -10
  175. package/bridge/storage-bridge.d.ts.map +1 -1
  176. package/bridge/storage-bridge.js +163 -32
  177. package/browser.d.ts +86 -18
  178. package/browser.d.ts.map +1 -1
  179. package/browser.js +95 -18
  180. package/build-variant.d.ts +1 -1
  181. package/build-variant.js +3 -3
  182. package/cache-telemetry.d.ts +16 -0
  183. package/cache-telemetry.d.ts.map +1 -0
  184. package/cache-telemetry.js +26 -0
  185. package/chat/index.d.ts.map +1 -1
  186. package/chat/index.js +0 -1
  187. package/chat/slash-menu.d.ts +105 -0
  188. package/chat/slash-menu.d.ts.map +1 -0
  189. package/chat/slash-menu.js +259 -0
  190. package/chat/useSlashCommandController.d.ts +31 -0
  191. package/chat/useSlashCommandController.d.ts.map +1 -0
  192. package/chat/useSlashCommandController.js +192 -0
  193. package/cloud/account-security/AccountRoute.d.ts +22 -0
  194. package/cloud/account-security/AccountRoute.d.ts.map +1 -0
  195. package/cloud/account-security/AccountRoute.js +50 -0
  196. package/cloud/account-security/AccountSection.d.ts +12 -0
  197. package/cloud/account-security/AccountSection.d.ts.map +1 -0
  198. package/cloud/account-security/AccountSection.js +16 -0
  199. package/cloud/account-security/PermissionsRoute.d.ts +21 -0
  200. package/cloud/account-security/PermissionsRoute.d.ts.map +1 -0
  201. package/cloud/account-security/PermissionsRoute.js +33 -0
  202. package/cloud/account-security/PermissionsSection.d.ts +11 -0
  203. package/cloud/account-security/PermissionsSection.d.ts.map +1 -0
  204. package/cloud/account-security/PermissionsSection.js +15 -0
  205. package/cloud/account-security/SecurityRoute.d.ts +20 -0
  206. package/cloud/account-security/SecurityRoute.d.ts.map +1 -0
  207. package/cloud/account-security/SecurityRoute.js +42 -0
  208. package/cloud/account-security/SecuritySection.d.ts +10 -0
  209. package/cloud/account-security/SecuritySection.d.ts.map +1 -0
  210. package/cloud/account-security/SecuritySection.js +14 -0
  211. package/cloud/account-security/components/AuditEventList.d.ts +20 -0
  212. package/cloud/account-security/components/AuditEventList.d.ts.map +1 -0
  213. package/cloud/account-security/components/AuditEventList.js +30 -0
  214. package/cloud/account-security/components/account-details.d.ts +12 -0
  215. package/cloud/account-security/components/account-details.d.ts.map +1 -0
  216. package/cloud/account-security/components/account-details.js +54 -0
  217. package/cloud/account-security/components/account-page-client.d.ts +16 -0
  218. package/cloud/account-security/components/account-page-client.d.ts.map +1 -0
  219. package/cloud/account-security/components/account-page-client.js +26 -0
  220. package/cloud/account-security/components/active-sessions-panel.d.ts +10 -0
  221. package/cloud/account-security/components/active-sessions-panel.d.ts.map +1 -0
  222. package/cloud/account-security/components/active-sessions-panel.js +93 -0
  223. package/cloud/account-security/components/api-keys-link.d.ts +8 -0
  224. package/cloud/account-security/components/api-keys-link.d.ts.map +1 -0
  225. package/cloud/account-security/components/api-keys-link.js +17 -0
  226. package/cloud/account-security/components/incident-report-panel.d.ts +7 -0
  227. package/cloud/account-security/components/incident-report-panel.d.ts.map +1 -0
  228. package/cloud/account-security/components/incident-report-panel.js +65 -0
  229. package/cloud/account-security/components/mfa-panel.d.ts +11 -0
  230. package/cloud/account-security/components/mfa-panel.d.ts.map +1 -0
  231. package/cloud/account-security/components/mfa-panel.js +66 -0
  232. package/cloud/account-security/components/organization-info.d.ts +13 -0
  233. package/cloud/account-security/components/organization-info.d.ts.map +1 -0
  234. package/cloud/account-security/components/organization-info.js +46 -0
  235. package/cloud/account-security/components/plugin-permissions-page-client.d.ts +10 -0
  236. package/cloud/account-security/components/plugin-permissions-page-client.d.ts.map +1 -0
  237. package/cloud/account-security/components/plugin-permissions-page-client.js +72 -0
  238. package/cloud/account-security/components/privacy-panel.d.ts +12 -0
  239. package/cloud/account-security/components/privacy-panel.d.ts.map +1 -0
  240. package/cloud/account-security/components/privacy-panel.js +161 -0
  241. package/cloud/account-security/components/profile-form.d.ts +21 -0
  242. package/cloud/account-security/components/profile-form.d.ts.map +1 -0
  243. package/cloud/account-security/components/profile-form.js +255 -0
  244. package/cloud/account-security/components/recent-audit-events.d.ts +7 -0
  245. package/cloud/account-security/components/recent-audit-events.d.ts.map +1 -0
  246. package/cloud/account-security/components/recent-audit-events.js +48 -0
  247. package/cloud/account-security/data/audit-client.d.ts +33 -0
  248. package/cloud/account-security/data/audit-client.d.ts.map +1 -0
  249. package/cloud/account-security/data/audit-client.js +37 -0
  250. package/cloud/account-security/data/consent-store.d.ts +11 -0
  251. package/cloud/account-security/data/consent-store.d.ts.map +1 -0
  252. package/cloud/account-security/data/consent-store.js +45 -0
  253. package/cloud/account-security/data/use-session-auth.d.ts +39 -0
  254. package/cloud/account-security/data/use-session-auth.d.ts.map +1 -0
  255. package/cloud/account-security/data/use-session-auth.js +95 -0
  256. package/cloud/account-security/data/user.d.ts +238 -0
  257. package/cloud/account-security/data/user.d.ts.map +1 -0
  258. package/cloud/account-security/data/user.js +77 -0
  259. package/cloud/account-security/index.d.ts +44 -0
  260. package/cloud/account-security/index.d.ts.map +1 -0
  261. package/cloud/account-security/index.js +66 -0
  262. package/cloud/account-security/use-document-title.d.ts +10 -0
  263. package/cloud/account-security/use-document-title.d.ts.map +1 -0
  264. package/cloud/account-security/use-document-title.js +20 -0
  265. package/cloud/admin/AdminGate.d.ts +24 -0
  266. package/cloud/admin/AdminGate.d.ts.map +1 -0
  267. package/cloud/admin/AdminGate.js +84 -0
  268. package/cloud/admin/ModerationPage.d.ts +16 -0
  269. package/cloud/admin/ModerationPage.d.ts.map +1 -0
  270. package/cloud/admin/ModerationPage.js +234 -0
  271. package/cloud/admin/ModerationRoute.d.ts +3 -0
  272. package/cloud/admin/ModerationRoute.d.ts.map +1 -0
  273. package/cloud/admin/ModerationRoute.js +7 -0
  274. package/cloud/admin/RedemptionsPage.d.ts +21 -0
  275. package/cloud/admin/RedemptionsPage.d.ts.map +1 -0
  276. package/cloud/admin/RedemptionsPage.js +322 -0
  277. package/cloud/admin/RedemptionsRoute.d.ts +3 -0
  278. package/cloud/admin/RedemptionsRoute.d.ts.map +1 -0
  279. package/cloud/admin/RedemptionsRoute.js +7 -0
  280. package/cloud/admin/RpcStatusPage.d.ts +12 -0
  281. package/cloud/admin/RpcStatusPage.d.ts.map +1 -0
  282. package/cloud/admin/RpcStatusPage.js +54 -0
  283. package/cloud/admin/RpcStatusRoute.d.ts +3 -0
  284. package/cloud/admin/RpcStatusRoute.d.ts.map +1 -0
  285. package/cloud/admin/RpcStatusRoute.js +7 -0
  286. package/cloud/admin/data/use-admin-gate.d.ts +48 -0
  287. package/cloud/admin/data/use-admin-gate.d.ts.map +1 -0
  288. package/cloud/admin/data/use-admin-gate.js +93 -0
  289. package/cloud/admin/index.d.ts +48 -0
  290. package/cloud/admin/index.d.ts.map +1 -0
  291. package/cloud/admin/index.js +69 -0
  292. package/cloud/admin/lib/format-usd.d.ts +11 -0
  293. package/cloud/admin/lib/format-usd.d.ts.map +1 -0
  294. package/cloud/admin/lib/format-usd.js +18 -0
  295. package/cloud/admin/use-document-title.d.ts +10 -0
  296. package/cloud/admin/use-document-title.d.ts.map +1 -0
  297. package/cloud/admin/use-document-title.js +20 -0
  298. package/cloud/analytics/Page.d.ts +17 -0
  299. package/cloud/analytics/Page.d.ts.map +1 -0
  300. package/cloud/analytics/Page.js +46 -0
  301. package/cloud/analytics/_components/analytics-page-client.d.ts +18 -0
  302. package/cloud/analytics/_components/analytics-page-client.d.ts.map +1 -0
  303. package/cloud/analytics/_components/analytics-page-client.js +166 -0
  304. package/cloud/analytics/_components/filters.d.ts +2 -0
  305. package/cloud/analytics/_components/filters.d.ts.map +1 -0
  306. package/cloud/analytics/_components/filters.js +101 -0
  307. package/cloud/analytics/_components/model-breakdown.d.ts +12 -0
  308. package/cloud/analytics/_components/model-breakdown.d.ts.map +1 -0
  309. package/cloud/analytics/_components/model-breakdown.js +69 -0
  310. package/cloud/analytics/_components/projections-chart.d.ts +13 -0
  311. package/cloud/analytics/_components/projections-chart.d.ts.map +1 -0
  312. package/cloud/analytics/_components/projections-chart.js +123 -0
  313. package/cloud/analytics/_components/provider-breakdown.d.ts +12 -0
  314. package/cloud/analytics/_components/provider-breakdown.d.ts.map +1 -0
  315. package/cloud/analytics/_components/provider-breakdown.js +48 -0
  316. package/cloud/analytics/_components/usage-chart.d.ts +18 -0
  317. package/cloud/analytics/_components/usage-chart.d.ts.map +1 -0
  318. package/cloud/analytics/_components/usage-chart.js +117 -0
  319. package/cloud/analytics/index.d.ts +17 -0
  320. package/cloud/analytics/index.d.ts.map +1 -0
  321. package/cloud/analytics/index.js +23 -0
  322. package/cloud/analytics/lib/analytics-data.d.ts +41 -0
  323. package/cloud/analytics/lib/analytics-data.d.ts.map +1 -0
  324. package/cloud/analytics/lib/analytics-data.js +55 -0
  325. package/cloud/analytics/lib/auth-query.d.ts +23 -0
  326. package/cloud/analytics/lib/auth-query.d.ts.map +1 -0
  327. package/cloud/analytics/lib/auth-query.js +30 -0
  328. package/cloud/analytics/lib/format.d.ts +14 -0
  329. package/cloud/analytics/lib/format.d.ts.map +1 -0
  330. package/cloud/analytics/lib/format.js +15 -0
  331. package/cloud/analytics/lib/time-range.d.ts +14 -0
  332. package/cloud/analytics/lib/time-range.d.ts.map +1 -0
  333. package/cloud/analytics/lib/time-range.js +28 -0
  334. package/cloud/api-explorer/ApiExplorerPage.d.ts +23 -0
  335. package/cloud/api-explorer/ApiExplorerPage.d.ts.map +1 -0
  336. package/cloud/api-explorer/ApiExplorerPage.js +216 -0
  337. package/cloud/api-explorer/api-tester.d.ts +22 -0
  338. package/cloud/api-explorer/api-tester.d.ts.map +1 -0
  339. package/cloud/api-explorer/api-tester.js +433 -0
  340. package/cloud/api-explorer/auth-manager.d.ts +19 -0
  341. package/cloud/api-explorer/auth-manager.d.ts.map +1 -0
  342. package/cloud/api-explorer/auth-manager.js +49 -0
  343. package/cloud/api-explorer/index.d.ts +44 -0
  344. package/cloud/api-explorer/index.d.ts.map +1 -0
  345. package/cloud/api-explorer/index.js +53 -0
  346. package/cloud/api-explorer/toast.d.ts +10 -0
  347. package/cloud/api-explorer/toast.d.ts.map +1 -0
  348. package/cloud/api-explorer/toast.js +16 -0
  349. package/cloud/api-explorer/use-document-title.d.ts +11 -0
  350. package/cloud/api-explorer/use-document-title.d.ts.map +1 -0
  351. package/cloud/api-explorer/use-document-title.js +21 -0
  352. package/cloud/api-explorer/use-explorer-api-key.d.ts +30 -0
  353. package/cloud/api-explorer/use-explorer-api-key.d.ts.map +1 -0
  354. package/cloud/api-explorer/use-explorer-api-key.js +57 -0
  355. package/cloud/api-explorer/use-session-auth.d.ts +44 -0
  356. package/cloud/api-explorer/use-session-auth.d.ts.map +1 -0
  357. package/cloud/api-explorer/use-session-auth.js +152 -0
  358. package/cloud/api-keys/ApiKeysRoute.d.ts +20 -0
  359. package/cloud/api-keys/ApiKeysRoute.d.ts.map +1 -0
  360. package/cloud/api-keys/ApiKeysRoute.js +84 -0
  361. package/cloud/api-keys/ApiKeysSection.d.ts +15 -0
  362. package/cloud/api-keys/ApiKeysSection.d.ts.map +1 -0
  363. package/cloud/api-keys/ApiKeysSection.js +18 -0
  364. package/cloud/api-keys/ApiKeysView.d.ts +27 -0
  365. package/cloud/api-keys/ApiKeysView.d.ts.map +1 -0
  366. package/cloud/api-keys/ApiKeysView.js +312 -0
  367. package/cloud/api-keys/auth-gate.d.ts +28 -0
  368. package/cloud/api-keys/auth-gate.d.ts.map +1 -0
  369. package/cloud/api-keys/auth-gate.js +33 -0
  370. package/cloud/api-keys/copy-api-key.d.ts +31 -0
  371. package/cloud/api-keys/copy-api-key.d.ts.map +1 -0
  372. package/cloud/api-keys/copy-api-key.js +35 -0
  373. package/cloud/api-keys/index.d.ts +42 -0
  374. package/cloud/api-keys/index.d.ts.map +1 -0
  375. package/cloud/api-keys/index.js +50 -0
  376. package/cloud/api-keys/use-api-keys.d.ts +25 -0
  377. package/cloud/api-keys/use-api-keys.d.ts.map +1 -0
  378. package/cloud/api-keys/use-api-keys.js +29 -0
  379. package/cloud/api-keys/use-document-title.d.ts +10 -0
  380. package/cloud/api-keys/use-document-title.d.ts.map +1 -0
  381. package/cloud/api-keys/use-document-title.js +20 -0
  382. package/cloud/applications/ApplicationDetailPage.d.ts +10 -0
  383. package/cloud/applications/ApplicationDetailPage.d.ts.map +1 -0
  384. package/cloud/applications/ApplicationDetailPage.js +71 -0
  385. package/cloud/applications/ApplicationsPage.d.ts +12 -0
  386. package/cloud/applications/ApplicationsPage.d.ts.map +1 -0
  387. package/cloud/applications/ApplicationsPage.js +43 -0
  388. package/cloud/applications/components/app-analytics.d.ts +12 -0
  389. package/cloud/applications/components/app-analytics.d.ts.map +1 -0
  390. package/cloud/applications/components/app-analytics.js +207 -0
  391. package/cloud/applications/components/app-details-tabs.d.ts +14 -0
  392. package/cloud/applications/components/app-details-tabs.d.ts.map +1 -0
  393. package/cloud/applications/components/app-details-tabs.js +81 -0
  394. package/cloud/applications/components/app-domains.d.ts +13 -0
  395. package/cloud/applications/components/app-domains.d.ts.map +1 -0
  396. package/cloud/applications/components/app-domains.js +348 -0
  397. package/cloud/applications/components/app-earnings-dashboard.d.ts +11 -0
  398. package/cloud/applications/components/app-earnings-dashboard.d.ts.map +1 -0
  399. package/cloud/applications/components/app-earnings-dashboard.js +130 -0
  400. package/cloud/applications/components/app-monetization-settings.d.ts +12 -0
  401. package/cloud/applications/components/app-monetization-settings.d.ts.map +1 -0
  402. package/cloud/applications/components/app-monetization-settings.js +201 -0
  403. package/cloud/applications/components/app-overview.d.ts +14 -0
  404. package/cloud/applications/components/app-overview.d.ts.map +1 -0
  405. package/cloud/applications/components/app-overview.js +153 -0
  406. package/cloud/applications/components/app-promote.d.ts +22 -0
  407. package/cloud/applications/components/app-promote.d.ts.map +1 -0
  408. package/cloud/applications/components/app-promote.js +97 -0
  409. package/cloud/applications/components/app-settings.d.ts +15 -0
  410. package/cloud/applications/components/app-settings.d.ts.map +1 -0
  411. package/cloud/applications/components/app-settings.js +193 -0
  412. package/cloud/applications/components/app-users.d.ts +12 -0
  413. package/cloud/applications/components/app-users.d.ts.map +1 -0
  414. package/cloud/applications/components/app-users.js +82 -0
  415. package/cloud/applications/components/apps-table.d.ts +15 -0
  416. package/cloud/applications/components/apps-table.d.ts.map +1 -0
  417. package/cloud/applications/components/apps-table.js +74 -0
  418. package/cloud/applications/components/create-app-button.d.ts +6 -0
  419. package/cloud/applications/components/create-app-button.d.ts.map +1 -0
  420. package/cloud/applications/components/create-app-button.js +15 -0
  421. package/cloud/applications/components/create-app-dialog.d.ts +20 -0
  422. package/cloud/applications/components/create-app-dialog.d.ts.map +1 -0
  423. package/cloud/applications/components/create-app-dialog.js +157 -0
  424. package/cloud/applications/components/single-app-page-wrapper.d.ts +12 -0
  425. package/cloud/applications/components/single-app-page-wrapper.d.ts.map +1 -0
  426. package/cloud/applications/components/single-app-page-wrapper.js +5 -0
  427. package/cloud/applications/components/withdraw-dialog.d.ts +20 -0
  428. package/cloud/applications/components/withdraw-dialog.d.ts.map +1 -0
  429. package/cloud/applications/components/withdraw-dialog.js +60 -0
  430. package/cloud/applications/index.d.ts +39 -0
  431. package/cloud/applications/index.d.ts.map +1 -0
  432. package/cloud/applications/index.js +54 -0
  433. package/cloud/applications/lib/apps.d.ts +53 -0
  434. package/cloud/applications/lib/apps.d.ts.map +1 -0
  435. package/cloud/applications/lib/apps.js +80 -0
  436. package/cloud/applications/lib/auth-query.d.ts +14 -0
  437. package/cloud/applications/lib/auth-query.d.ts.map +1 -0
  438. package/cloud/applications/lib/auth-query.js +18 -0
  439. package/cloud/applications/lib/one-time-app-api-key.d.ts +12 -0
  440. package/cloud/applications/lib/one-time-app-api-key.d.ts.map +1 -0
  441. package/cloud/applications/lib/one-time-app-api-key.js +22 -0
  442. package/cloud/applications/lib/use-copy-feedback.d.ts +9 -0
  443. package/cloud/applications/lib/use-copy-feedback.d.ts.map +1 -0
  444. package/cloud/applications/lib/use-copy-feedback.js +13 -0
  445. package/cloud/applications/lib/use-session-auth.d.ts +28 -0
  446. package/cloud/applications/lib/use-session-auth.d.ts.map +1 -0
  447. package/cloud/applications/lib/use-session-auth.js +97 -0
  448. package/cloud/applications/lib/utils.d.ts +7 -0
  449. package/cloud/applications/lib/utils.d.ts.map +1 -0
  450. package/cloud/applications/lib/utils.js +9 -0
  451. package/cloud/approvals/ApprovalsRoute.d.ts +27 -0
  452. package/cloud/approvals/ApprovalsRoute.d.ts.map +1 -0
  453. package/cloud/approvals/ApprovalsRoute.js +45 -0
  454. package/cloud/approvals/components/approvals-tab.d.ts +14 -0
  455. package/cloud/approvals/components/approvals-tab.d.ts.map +1 -0
  456. package/cloud/approvals/components/approvals-tab.js +98 -0
  457. package/cloud/approvals/components/ballots-tab.d.ts +8 -0
  458. package/cloud/approvals/components/ballots-tab.d.ts.map +1 -0
  459. package/cloud/approvals/components/ballots-tab.js +86 -0
  460. package/cloud/approvals/components/sensitive-tab.d.ts +13 -0
  461. package/cloud/approvals/components/sensitive-tab.d.ts.map +1 -0
  462. package/cloud/approvals/components/sensitive-tab.js +50 -0
  463. package/cloud/approvals/components/status-badge.d.ts +13 -0
  464. package/cloud/approvals/components/status-badge.d.ts.map +1 -0
  465. package/cloud/approvals/components/status-badge.js +49 -0
  466. package/cloud/approvals/index.d.ts +32 -0
  467. package/cloud/approvals/index.d.ts.map +1 -0
  468. package/cloud/approvals/index.js +41 -0
  469. package/cloud/approvals/lib/approvals.d.ts +164 -0
  470. package/cloud/approvals/lib/approvals.d.ts.map +1 -0
  471. package/cloud/approvals/lib/approvals.js +186 -0
  472. package/cloud/approvals/lib/auth-query.d.ts +18 -0
  473. package/cloud/approvals/lib/auth-query.d.ts.map +1 -0
  474. package/cloud/approvals/lib/auth-query.js +22 -0
  475. package/cloud/approvals/lib/use-session-auth.d.ts +28 -0
  476. package/cloud/approvals/lib/use-session-auth.d.ts.map +1 -0
  477. package/cloud/approvals/lib/use-session-auth.js +97 -0
  478. package/cloud/approvals/lib/wallet-sign.d.ts +33 -0
  479. package/cloud/approvals/lib/wallet-sign.d.ts.map +1 -0
  480. package/cloud/approvals/lib/wallet-sign.js +79 -0
  481. package/cloud/billing/BillingSection.d.ts +18 -0
  482. package/cloud/billing/BillingSection.d.ts.map +1 -0
  483. package/cloud/billing/BillingSection.js +52 -0
  484. package/cloud/billing/BillingSuccessPage.d.ts +13 -0
  485. package/cloud/billing/BillingSuccessPage.d.ts.map +1 -0
  486. package/cloud/billing/BillingSuccessPage.js +78 -0
  487. package/cloud/billing/InvoiceDetailPage.d.ts +7 -0
  488. package/cloud/billing/InvoiceDetailPage.d.ts.map +1 -0
  489. package/cloud/billing/InvoiceDetailPage.js +38 -0
  490. package/cloud/billing/components/auto-top-up-card.d.ts +12 -0
  491. package/cloud/billing/components/auto-top-up-card.d.ts.map +1 -0
  492. package/cloud/billing/components/auto-top-up-card.js +137 -0
  493. package/cloud/billing/components/billing-tab.d.ts +18 -0
  494. package/cloud/billing/components/billing-tab.d.ts.map +1 -0
  495. package/cloud/billing/components/billing-tab.js +222 -0
  496. package/cloud/billing/components/direct-crypto-credit-card.d.ts +14 -0
  497. package/cloud/billing/components/direct-crypto-credit-card.d.ts.map +1 -0
  498. package/cloud/billing/components/direct-crypto-credit-card.js +329 -0
  499. package/cloud/billing/components/invoice-detail-client.d.ts +12 -0
  500. package/cloud/billing/components/invoice-detail-client.d.ts.map +1 -0
  501. package/cloud/billing/components/invoice-detail-client.js +81 -0
  502. package/cloud/billing/components/numeric-field.d.ts +13 -0
  503. package/cloud/billing/components/numeric-field.d.ts.map +1 -0
  504. package/cloud/billing/components/numeric-field.js +7 -0
  505. package/cloud/billing/components/pay-as-you-go-card.d.ts +11 -0
  506. package/cloud/billing/components/pay-as-you-go-card.d.ts.map +1 -0
  507. package/cloud/billing/components/pay-as-you-go-card.js +50 -0
  508. package/cloud/billing/components/payment-waiting-overlay.d.ts +36 -0
  509. package/cloud/billing/components/payment-waiting-overlay.d.ts.map +1 -0
  510. package/cloud/billing/components/payment-waiting-overlay.js +138 -0
  511. package/cloud/billing/components/success-client.d.ts +11 -0
  512. package/cloud/billing/components/success-client.d.ts.map +1 -0
  513. package/cloud/billing/components/success-client.js +64 -0
  514. package/cloud/billing/data/billing-data.d.ts +211 -0
  515. package/cloud/billing/data/billing-data.d.ts.map +1 -0
  516. package/cloud/billing/data/billing-data.js +120 -0
  517. package/cloud/billing/index.d.ts +26 -0
  518. package/cloud/billing/index.d.ts.map +1 -0
  519. package/cloud/billing/index.js +28 -0
  520. package/cloud/billing/routes.d.ts +16 -0
  521. package/cloud/billing/routes.d.ts.map +1 -0
  522. package/cloud/billing/routes.js +34 -0
  523. package/cloud/billing/types.d.ts +142 -0
  524. package/cloud/billing/types.d.ts.map +1 -0
  525. package/cloud/billing/types.js +12 -0
  526. package/cloud/billing/use-session-auth.d.ts +43 -0
  527. package/cloud/billing/use-session-auth.d.ts.map +1 -0
  528. package/cloud/billing/use-session-auth.js +138 -0
  529. package/cloud/billing/wallet/ConditionalWalletProviders.d.ts +18 -0
  530. package/cloud/billing/wallet/ConditionalWalletProviders.d.ts.map +1 -0
  531. package/cloud/billing/wallet/ConditionalWalletProviders.js +79 -0
  532. package/cloud/billing/wallet/steward-wallet-providers.d.ts +17 -0
  533. package/cloud/billing/wallet/steward-wallet-providers.d.ts.map +1 -0
  534. package/cloud/billing/wallet/steward-wallet-providers.js +59 -0
  535. package/cloud/connectors/CloudConnectorsSection.d.ts +12 -0
  536. package/cloud/connectors/CloudConnectorsSection.d.ts.map +1 -0
  537. package/cloud/connectors/CloudConnectorsSection.js +33 -0
  538. package/cloud/connectors/blooio-connection.d.ts +10 -0
  539. package/cloud/connectors/blooio-connection.d.ts.map +1 -0
  540. package/cloud/connectors/blooio-connection.js +230 -0
  541. package/cloud/connectors/discord-gateway-connection.d.ts +11 -0
  542. package/cloud/connectors/discord-gateway-connection.d.ts.map +1 -0
  543. package/cloud/connectors/discord-gateway-connection.js +480 -0
  544. package/cloud/connectors/google-connection.d.ts +10 -0
  545. package/cloud/connectors/google-connection.d.ts.map +1 -0
  546. package/cloud/connectors/google-connection.js +109 -0
  547. package/cloud/connectors/index.d.ts +50 -0
  548. package/cloud/connectors/index.d.ts.map +1 -0
  549. package/cloud/connectors/index.js +74 -0
  550. package/cloud/connectors/microsoft-connection.d.ts +10 -0
  551. package/cloud/connectors/microsoft-connection.d.ts.map +1 -0
  552. package/cloud/connectors/microsoft-connection.js +133 -0
  553. package/cloud/connectors/oauth-connection.d.ts +52 -0
  554. package/cloud/connectors/oauth-connection.d.ts.map +1 -0
  555. package/cloud/connectors/oauth-connection.js +114 -0
  556. package/cloud/connectors/telegram-connection.d.ts +11 -0
  557. package/cloud/connectors/telegram-connection.d.ts.map +1 -0
  558. package/cloud/connectors/telegram-connection.js +158 -0
  559. package/cloud/connectors/twilio-connection.d.ts +10 -0
  560. package/cloud/connectors/twilio-connection.d.ts.map +1 -0
  561. package/cloud/connectors/twilio-connection.js +189 -0
  562. package/cloud/connectors/use-connection-status.d.ts +13 -0
  563. package/cloud/connectors/use-connection-status.d.ts.map +1 -0
  564. package/cloud/connectors/use-connection-status.js +45 -0
  565. package/cloud/connectors/whatsapp-connection.d.ts +11 -0
  566. package/cloud/connectors/whatsapp-connection.d.ts.map +1 -0
  567. package/cloud/connectors/whatsapp-connection.js +223 -0
  568. package/cloud/documents/DocumentsRoute.d.ts +21 -0
  569. package/cloud/documents/DocumentsRoute.d.ts.map +1 -0
  570. package/cloud/documents/DocumentsRoute.js +45 -0
  571. package/cloud/documents/DocumentsSection.d.ts +15 -0
  572. package/cloud/documents/DocumentsSection.d.ts.map +1 -0
  573. package/cloud/documents/DocumentsSection.js +18 -0
  574. package/cloud/documents/components/document-list.d.ts +19 -0
  575. package/cloud/documents/components/document-list.d.ts.map +1 -0
  576. package/cloud/documents/components/document-list.js +75 -0
  577. package/cloud/documents/components/document-query.d.ts +15 -0
  578. package/cloud/documents/components/document-query.d.ts.map +1 -0
  579. package/cloud/documents/components/document-query.js +92 -0
  580. package/cloud/documents/components/document-upload.d.ts +16 -0
  581. package/cloud/documents/components/document-upload.d.ts.map +1 -0
  582. package/cloud/documents/components/document-upload.js +180 -0
  583. package/cloud/documents/components/documents-page-client.d.ts +20 -0
  584. package/cloud/documents/components/documents-page-client.d.ts.map +1 -0
  585. package/cloud/documents/components/documents-page-client.js +80 -0
  586. package/cloud/documents/index.d.ts +37 -0
  587. package/cloud/documents/index.d.ts.map +1 -0
  588. package/cloud/documents/index.js +45 -0
  589. package/cloud/documents/lib/agents.d.ts +23 -0
  590. package/cloud/documents/lib/agents.d.ts.map +1 -0
  591. package/cloud/documents/lib/agents.js +26 -0
  592. package/cloud/documents/lib/auth-query.d.ts +17 -0
  593. package/cloud/documents/lib/auth-query.d.ts.map +1 -0
  594. package/cloud/documents/lib/auth-query.js +21 -0
  595. package/cloud/documents/lib/documents.d.ts +54 -0
  596. package/cloud/documents/lib/documents.d.ts.map +1 -0
  597. package/cloud/documents/lib/documents.js +118 -0
  598. package/cloud/documents/lib/use-session-auth.d.ts +27 -0
  599. package/cloud/documents/lib/use-session-auth.d.ts.map +1 -0
  600. package/cloud/documents/lib/use-session-auth.js +96 -0
  601. package/cloud/documents/use-document-title.d.ts +11 -0
  602. package/cloud/documents/use-document-title.d.ts.map +1 -0
  603. package/cloud/documents/use-document-title.js +21 -0
  604. package/cloud/handoff/__integration__/two-agent-handoff.d.mts +2 -0
  605. package/cloud/handoff/__integration__/two-agent-handoff.d.mts.map +1 -0
  606. package/cloud/handoff/__integration__/two-agent-handoff.mjs +114 -0
  607. package/cloud/handoff/cloud-handoff-supervisor.d.ts +47 -0
  608. package/cloud/handoff/cloud-handoff-supervisor.d.ts.map +1 -0
  609. package/cloud/handoff/cloud-handoff-supervisor.js +67 -0
  610. package/cloud/handoff/conversation-handoff.d.ts +73 -0
  611. package/cloud/handoff/conversation-handoff.d.ts.map +1 -0
  612. package/cloud/handoff/conversation-handoff.js +98 -0
  613. package/cloud/index.d.ts +14 -0
  614. package/cloud/index.d.ts.map +1 -0
  615. package/cloud/index.js +13 -0
  616. package/cloud/instances/AgentChatPage.d.ts +13 -0
  617. package/cloud/instances/AgentChatPage.d.ts.map +1 -0
  618. package/cloud/instances/AgentChatPage.js +217 -0
  619. package/cloud/instances/AgentDetailPage.d.ts +6 -0
  620. package/cloud/instances/AgentDetailPage.d.ts.map +1 -0
  621. package/cloud/instances/AgentDetailPage.js +169 -0
  622. package/cloud/instances/AgentsPage.d.ts +6 -0
  623. package/cloud/instances/AgentsPage.d.ts.map +1 -0
  624. package/cloud/instances/AgentsPage.js +50 -0
  625. package/cloud/instances/MyAgentsPage.d.ts +7 -0
  626. package/cloud/instances/MyAgentsPage.d.ts.map +1 -0
  627. package/cloud/instances/MyAgentsPage.js +22 -0
  628. package/cloud/instances/components/agent-actions.d.ts +10 -0
  629. package/cloud/instances/components/agent-actions.d.ts.map +1 -0
  630. package/cloud/instances/components/agent-actions.js +231 -0
  631. package/cloud/instances/components/agent-card.d.ts +35 -0
  632. package/cloud/instances/components/agent-card.d.ts.map +1 -0
  633. package/cloud/instances/components/agent-card.js +287 -0
  634. package/cloud/instances/components/agent-cost-badge.d.ts +10 -0
  635. package/cloud/instances/components/agent-cost-badge.d.ts.map +1 -0
  636. package/cloud/instances/components/agent-cost-badge.js +25 -0
  637. package/cloud/instances/components/character-filters.d.ts +23 -0
  638. package/cloud/instances/components/character-filters.d.ts.map +1 -0
  639. package/cloud/instances/components/character-filters.js +36 -0
  640. package/cloud/instances/components/character-library-grid.d.ts +18 -0
  641. package/cloud/instances/components/character-library-grid.d.ts.map +1 -0
  642. package/cloud/instances/components/character-library-grid.js +17 -0
  643. package/cloud/instances/components/create-eliza-agent-dialog.d.ts +10 -0
  644. package/cloud/instances/components/create-eliza-agent-dialog.d.ts.map +1 -0
  645. package/cloud/instances/components/create-eliza-agent-dialog.js +376 -0
  646. package/cloud/instances/components/docker-logs-viewer.d.ts +8 -0
  647. package/cloud/instances/components/docker-logs-viewer.d.ts.map +1 -0
  648. package/cloud/instances/components/docker-logs-viewer.js +107 -0
  649. package/cloud/instances/components/eliza-agent-backups-panel.d.ts +8 -0
  650. package/cloud/instances/components/eliza-agent-backups-panel.d.ts.map +1 -0
  651. package/cloud/instances/components/eliza-agent-backups-panel.js +112 -0
  652. package/cloud/instances/components/eliza-agent-logs-viewer.d.ts +9 -0
  653. package/cloud/instances/components/eliza-agent-logs-viewer.d.ts.map +1 -0
  654. package/cloud/instances/components/eliza-agent-logs-viewer.js +180 -0
  655. package/cloud/instances/components/eliza-agent-pricing-banner.d.ts +13 -0
  656. package/cloud/instances/components/eliza-agent-pricing-banner.d.ts.map +1 -0
  657. package/cloud/instances/components/eliza-agent-pricing-banner.js +47 -0
  658. package/cloud/instances/components/eliza-agent-tabs.d.ts +8 -0
  659. package/cloud/instances/components/eliza-agent-tabs.d.ts.map +1 -0
  660. package/cloud/instances/components/eliza-agent-tabs.js +27 -0
  661. package/cloud/instances/components/eliza-agents-table.d.ts +25 -0
  662. package/cloud/instances/components/eliza-agents-table.d.ts.map +1 -0
  663. package/cloud/instances/components/eliza-agents-table.js +536 -0
  664. package/cloud/instances/components/eliza-connect-button.d.ts +6 -0
  665. package/cloud/instances/components/eliza-connect-button.d.ts.map +1 -0
  666. package/cloud/instances/components/eliza-connect-button.js +10 -0
  667. package/cloud/instances/components/eliza-policies-section.d.ts +6 -0
  668. package/cloud/instances/components/eliza-policies-section.d.ts.map +1 -0
  669. package/cloud/instances/components/eliza-policies-section.js +71 -0
  670. package/cloud/instances/components/eliza-transactions-section.d.ts +6 -0
  671. package/cloud/instances/components/eliza-transactions-section.d.ts.map +1 -0
  672. package/cloud/instances/components/eliza-transactions-section.js +147 -0
  673. package/cloud/instances/components/eliza-wallet-section.d.ts +6 -0
  674. package/cloud/instances/components/eliza-wallet-section.d.ts.map +1 -0
  675. package/cloud/instances/components/eliza-wallet-section.js +127 -0
  676. package/cloud/instances/components/empty-state.d.ts +6 -0
  677. package/cloud/instances/components/empty-state.d.ts.map +1 -0
  678. package/cloud/instances/components/empty-state.js +23 -0
  679. package/cloud/instances/components/my-agents.d.ts +8 -0
  680. package/cloud/instances/components/my-agents.d.ts.map +1 -0
  681. package/cloud/instances/components/my-agents.js +268 -0
  682. package/cloud/instances/components/types.d.ts +3 -0
  683. package/cloud/instances/components/types.d.ts.map +1 -0
  684. package/cloud/instances/components/types.js +1 -0
  685. package/cloud/instances/index.d.ts +36 -0
  686. package/cloud/instances/index.d.ts.map +1 -0
  687. package/cloud/instances/index.js +58 -0
  688. package/cloud/instances/lib/auth-query.d.ts +16 -0
  689. package/cloud/instances/lib/auth-query.d.ts.map +1 -0
  690. package/cloud/instances/lib/auth-query.js +20 -0
  691. package/cloud/instances/lib/data/credits.d.ts +14 -0
  692. package/cloud/instances/lib/data/credits.d.ts.map +1 -0
  693. package/cloud/instances/lib/data/credits.js +21 -0
  694. package/cloud/instances/lib/data/eliza-agents.d.ts +12 -0
  695. package/cloud/instances/lib/data/eliza-agents.d.ts.map +1 -0
  696. package/cloud/instances/lib/data/eliza-agents.js +33 -0
  697. package/cloud/instances/lib/format-bytes.d.ts +19 -0
  698. package/cloud/instances/lib/format-bytes.d.ts.map +1 -0
  699. package/cloud/instances/lib/format-bytes.js +25 -0
  700. package/cloud/instances/lib/i18n.d.ts +11 -0
  701. package/cloud/instances/lib/i18n.d.ts.map +1 -0
  702. package/cloud/instances/lib/i18n.js +10 -0
  703. package/cloud/instances/lib/open-web-ui.d.ts +14 -0
  704. package/cloud/instances/lib/open-web-ui.d.ts.map +1 -0
  705. package/cloud/instances/lib/open-web-ui.js +88 -0
  706. package/cloud/instances/lib/sandbox-status.d.ts +18 -0
  707. package/cloud/instances/lib/sandbox-status.d.ts.map +1 -0
  708. package/cloud/instances/lib/sandbox-status.js +54 -0
  709. package/cloud/instances/lib/use-copy-feedback.d.ts +9 -0
  710. package/cloud/instances/lib/use-copy-feedback.d.ts.map +1 -0
  711. package/cloud/instances/lib/use-copy-feedback.js +13 -0
  712. package/cloud/instances/lib/use-document-title.d.ts +13 -0
  713. package/cloud/instances/lib/use-document-title.d.ts.map +1 -0
  714. package/cloud/instances/lib/use-document-title.js +23 -0
  715. package/cloud/instances/lib/use-job-poller.d.ts +34 -0
  716. package/cloud/instances/lib/use-job-poller.d.ts.map +1 -0
  717. package/cloud/instances/lib/use-job-poller.js +142 -0
  718. package/cloud/instances/lib/use-sandbox-status-poll.d.ts +50 -0
  719. package/cloud/instances/lib/use-sandbox-status-poll.d.ts.map +1 -0
  720. package/cloud/instances/lib/use-sandbox-status-poll.js +173 -0
  721. package/cloud/instances/lib/use-session-auth.d.ts +44 -0
  722. package/cloud/instances/lib/use-session-auth.d.ts.map +1 -0
  723. package/cloud/instances/lib/use-session-auth.js +141 -0
  724. package/cloud/join/JoinPage.d.ts +19 -0
  725. package/cloud/join/JoinPage.d.ts.map +1 -0
  726. package/cloud/join/JoinPage.js +128 -0
  727. package/cloud/join/index.d.ts +19 -0
  728. package/cloud/join/index.d.ts.map +1 -0
  729. package/cloud/join/index.js +18 -0
  730. package/cloud/join/lib/resolve-cloud-connection.d.ts +21 -0
  731. package/cloud/join/lib/resolve-cloud-connection.d.ts.map +1 -0
  732. package/cloud/join/lib/resolve-cloud-connection.js +29 -0
  733. package/cloud/join/lib/run-join-flow.d.ts +95 -0
  734. package/cloud/join/lib/run-join-flow.d.ts.map +1 -0
  735. package/cloud/join/lib/run-join-flow.js +98 -0
  736. package/cloud/join/lib/use-join-session.d.ts +18 -0
  737. package/cloud/join/lib/use-join-session.d.ts.map +1 -0
  738. package/cloud/join/lib/use-join-session.js +62 -0
  739. package/cloud/join/register.d.ts +17 -0
  740. package/cloud/join/register.d.ts.map +1 -0
  741. package/cloud/join/register.js +29 -0
  742. package/cloud/lib/api-client.d.ts +33 -0
  743. package/cloud/lib/api-client.d.ts.map +1 -0
  744. package/cloud/lib/api-client.js +160 -0
  745. package/cloud/lib/jwt.d.ts +26 -0
  746. package/cloud/lib/jwt.d.ts.map +1 -0
  747. package/cloud/lib/jwt.js +34 -0
  748. package/cloud/lib/query-client.d.ts +9 -0
  749. package/cloud/lib/query-client.d.ts.map +1 -0
  750. package/cloud/lib/query-client.js +27 -0
  751. package/cloud/lib/steward-session.d.ts +28 -0
  752. package/cloud/lib/steward-session.d.ts.map +1 -0
  753. package/cloud/lib/steward-session.js +29 -0
  754. package/cloud/mcps/McpDetailDrawer.d.ts +20 -0
  755. package/cloud/mcps/McpDetailDrawer.d.ts.map +1 -0
  756. package/cloud/mcps/McpDetailDrawer.js +155 -0
  757. package/cloud/mcps/McpEditorDialog.d.ts +22 -0
  758. package/cloud/mcps/McpEditorDialog.d.ts.map +1 -0
  759. package/cloud/mcps/McpEditorDialog.js +224 -0
  760. package/cloud/mcps/McpsRoute.d.ts +12 -0
  761. package/cloud/mcps/McpsRoute.d.ts.map +1 -0
  762. package/cloud/mcps/McpsRoute.js +28 -0
  763. package/cloud/mcps/McpsSection.d.ts +10 -0
  764. package/cloud/mcps/McpsSection.d.ts.map +1 -0
  765. package/cloud/mcps/McpsSection.js +13 -0
  766. package/cloud/mcps/McpsView.d.ts +13 -0
  767. package/cloud/mcps/McpsView.d.ts.map +1 -0
  768. package/cloud/mcps/McpsView.js +142 -0
  769. package/cloud/mcps/index.d.ts +53 -0
  770. package/cloud/mcps/index.d.ts.map +1 -0
  771. package/cloud/mcps/index.js +77 -0
  772. package/cloud/mcps/lib/api-types.d.ts +213 -0
  773. package/cloud/mcps/lib/api-types.d.ts.map +1 -0
  774. package/cloud/mcps/lib/api-types.js +17 -0
  775. package/cloud/mcps/lib/mcp-mutations.d.ts +17 -0
  776. package/cloud/mcps/lib/mcp-mutations.d.ts.map +1 -0
  777. package/cloud/mcps/lib/mcp-mutations.js +82 -0
  778. package/cloud/mcps/lib/test-connection.d.ts +30 -0
  779. package/cloud/mcps/lib/test-connection.d.ts.map +1 -0
  780. package/cloud/mcps/lib/test-connection.js +140 -0
  781. package/cloud/mcps/lib/use-mcps.d.ts +30 -0
  782. package/cloud/mcps/lib/use-mcps.d.ts.map +1 -0
  783. package/cloud/mcps/lib/use-mcps.js +67 -0
  784. package/cloud/monetization/MonetizationRoute.d.ts +9 -0
  785. package/cloud/monetization/MonetizationRoute.d.ts.map +1 -0
  786. package/cloud/monetization/MonetizationRoute.js +19 -0
  787. package/cloud/monetization/MonetizationSection.d.ts +19 -0
  788. package/cloud/monetization/MonetizationSection.d.ts.map +1 -0
  789. package/cloud/monetization/MonetizationSection.js +34 -0
  790. package/cloud/monetization/affiliates/AffiliatesPageClient.d.ts +18 -0
  791. package/cloud/monetization/affiliates/AffiliatesPageClient.d.ts.map +1 -0
  792. package/cloud/monetization/affiliates/AffiliatesPageClient.js +249 -0
  793. package/cloud/monetization/affiliates/AffiliatesRoute.d.ts +19 -0
  794. package/cloud/monetization/affiliates/AffiliatesRoute.d.ts.map +1 -0
  795. package/cloud/monetization/affiliates/AffiliatesRoute.js +42 -0
  796. package/cloud/monetization/affiliates/referral-me.d.ts +27 -0
  797. package/cloud/monetization/affiliates/referral-me.d.ts.map +1 -0
  798. package/cloud/monetization/affiliates/referral-me.js +69 -0
  799. package/cloud/monetization/affiliates/use-dashboard-referral-me.d.ts +19 -0
  800. package/cloud/monetization/affiliates/use-dashboard-referral-me.d.ts.map +1 -0
  801. package/cloud/monetization/affiliates/use-dashboard-referral-me.js +49 -0
  802. package/cloud/monetization/auth-gate.d.ts +27 -0
  803. package/cloud/monetization/auth-gate.d.ts.map +1 -0
  804. package/cloud/monetization/auth-gate.js +60 -0
  805. package/cloud/monetization/earnings/EarningsPageClient.d.ts +24 -0
  806. package/cloud/monetization/earnings/EarningsPageClient.d.ts.map +1 -0
  807. package/cloud/monetization/earnings/EarningsPageClient.js +311 -0
  808. package/cloud/monetization/earnings/EarningsRoute.d.ts +19 -0
  809. package/cloud/monetization/earnings/EarningsRoute.d.ts.map +1 -0
  810. package/cloud/monetization/earnings/EarningsRoute.js +44 -0
  811. package/cloud/monetization/index.d.ts +43 -0
  812. package/cloud/monetization/index.d.ts.map +1 -0
  813. package/cloud/monetization/index.js +64 -0
  814. package/cloud/monetization/lib/clipboard.d.ts +21 -0
  815. package/cloud/monetization/lib/clipboard.d.ts.map +1 -0
  816. package/cloud/monetization/lib/clipboard.js +55 -0
  817. package/cloud/monetization/lib/format-usd.d.ts +12 -0
  818. package/cloud/monetization/lib/format-usd.d.ts.map +1 -0
  819. package/cloud/monetization/lib/format-usd.js +19 -0
  820. package/cloud/monetization/use-document-title.d.ts +10 -0
  821. package/cloud/monetization/use-document-title.d.ts.map +1 -0
  822. package/cloud/monetization/use-document-title.js +20 -0
  823. package/cloud/organization/OrganizationPage.d.ts +12 -0
  824. package/cloud/organization/OrganizationPage.d.ts.map +1 -0
  825. package/cloud/organization/OrganizationPage.js +15 -0
  826. package/cloud/organization/OrganizationSection.d.ts +15 -0
  827. package/cloud/organization/OrganizationSection.d.ts.map +1 -0
  828. package/cloud/organization/OrganizationSection.js +31 -0
  829. package/cloud/organization/data/cloud-org-types.d.ts +66 -0
  830. package/cloud/organization/data/cloud-org-types.d.ts.map +1 -0
  831. package/cloud/organization/data/cloud-org-types.js +19 -0
  832. package/cloud/organization/data/use-organization.d.ts +44 -0
  833. package/cloud/organization/data/use-organization.d.ts.map +1 -0
  834. package/cloud/organization/data/use-organization.js +124 -0
  835. package/cloud/organization/index.d.ts +30 -0
  836. package/cloud/organization/index.d.ts.map +1 -0
  837. package/cloud/organization/index.js +29 -0
  838. package/cloud/organization/invite-member-dialog.d.ts +26 -0
  839. package/cloud/organization/invite-member-dialog.d.ts.map +1 -0
  840. package/cloud/organization/invite-member-dialog.js +58 -0
  841. package/cloud/organization/members-list.d.ts +27 -0
  842. package/cloud/organization/members-list.d.ts.map +1 -0
  843. package/cloud/organization/members-list.js +96 -0
  844. package/cloud/organization/members-tab.d.ts +19 -0
  845. package/cloud/organization/members-tab.d.ts.map +1 -0
  846. package/cloud/organization/members-tab.js +99 -0
  847. package/cloud/organization/organization-general-tab.d.ts +17 -0
  848. package/cloud/organization/organization-general-tab.d.ts.map +1 -0
  849. package/cloud/organization/organization-general-tab.js +17 -0
  850. package/cloud/organization/organization-tab.d.ts +17 -0
  851. package/cloud/organization/organization-tab.d.ts.map +1 -0
  852. package/cloud/organization/organization-tab.js +23 -0
  853. package/cloud/organization/pending-invites-list.d.ts +19 -0
  854. package/cloud/organization/pending-invites-list.d.ts.map +1 -0
  855. package/cloud/organization/pending-invites-list.js +64 -0
  856. package/cloud/organization/routes.d.ts +18 -0
  857. package/cloud/organization/routes.d.ts.map +1 -0
  858. package/cloud/organization/routes.js +23 -0
  859. package/cloud/public-pages/index.d.ts +36 -0
  860. package/cloud/public-pages/index.d.ts.map +1 -0
  861. package/cloud/public-pages/index.js +35 -0
  862. package/cloud/public-pages/lib/error-message.d.ts +3 -0
  863. package/cloud/public-pages/lib/error-message.d.ts.map +1 -0
  864. package/cloud/public-pages/lib/error-message.js +4 -0
  865. package/cloud/public-pages/lib/login-return-to.d.ts +15 -0
  866. package/cloud/public-pages/lib/login-return-to.d.ts.map +1 -0
  867. package/cloud/public-pages/lib/login-return-to.js +76 -0
  868. package/cloud/public-pages/lib/steward-oauth-url.d.ts +25 -0
  869. package/cloud/public-pages/lib/steward-oauth-url.d.ts.map +1 -0
  870. package/cloud/public-pages/lib/steward-oauth-url.js +32 -0
  871. package/cloud/public-pages/lib/steward-session.d.ts +54 -0
  872. package/cloud/public-pages/lib/steward-session.d.ts.map +1 -0
  873. package/cloud/public-pages/lib/steward-session.js +143 -0
  874. package/cloud/public-pages/lib/use-page-title.d.ts +18 -0
  875. package/cloud/public-pages/lib/use-page-title.d.ts.map +1 -0
  876. package/cloud/public-pages/lib/use-page-title.js +40 -0
  877. package/cloud/public-pages/lib/use-session-auth.d.ts +40 -0
  878. package/cloud/public-pages/lib/use-session-auth.d.ts.map +1 -0
  879. package/cloud/public-pages/lib/use-session-auth.js +135 -0
  880. package/cloud/public-pages/pages/app-auth/app-authorize-page.d.ts +7 -0
  881. package/cloud/public-pages/pages/app-auth/app-authorize-page.d.ts.map +1 -0
  882. package/cloud/public-pages/pages/app-auth/app-authorize-page.js +17 -0
  883. package/cloud/public-pages/pages/approve/approval-page.d.ts +9 -0
  884. package/cloud/public-pages/pages/approve/approval-page.d.ts.map +1 -0
  885. package/cloud/public-pages/pages/approve/approval-page.js +171 -0
  886. package/cloud/public-pages/pages/auth/auth-error-page.d.ts +7 -0
  887. package/cloud/public-pages/pages/auth/auth-error-page.d.ts.map +1 -0
  888. package/cloud/public-pages/pages/auth/auth-error-page.js +50 -0
  889. package/cloud/public-pages/pages/auth/auth-success-page.d.ts +7 -0
  890. package/cloud/public-pages/pages/auth/auth-success-page.d.ts.map +1 -0
  891. package/cloud/public-pages/pages/auth/auth-success-page.js +72 -0
  892. package/cloud/public-pages/pages/auth/cli-login-page.d.ts +8 -0
  893. package/cloud/public-pages/pages/auth/cli-login-page.d.ts.map +1 -0
  894. package/cloud/public-pages/pages/auth/cli-login-page.js +176 -0
  895. package/cloud/public-pages/pages/auth/email-callback-page.d.ts +8 -0
  896. package/cloud/public-pages/pages/auth/email-callback-page.d.ts.map +1 -0
  897. package/cloud/public-pages/pages/auth/email-callback-page.js +104 -0
  898. package/cloud/public-pages/pages/ballot/ballot-page.d.ts +8 -0
  899. package/cloud/public-pages/pages/ballot/ballot-page.d.ts.map +1 -0
  900. package/cloud/public-pages/pages/ballot/ballot-page.js +126 -0
  901. package/cloud/public-pages/pages/bsc-page.d.ts +16 -0
  902. package/cloud/public-pages/pages/bsc-page.d.ts.map +1 -0
  903. package/cloud/public-pages/pages/bsc-page.js +58 -0
  904. package/cloud/public-pages/pages/chat/public-chat-page.d.ts +17 -0
  905. package/cloud/public-pages/pages/chat/public-chat-page.d.ts.map +1 -0
  906. package/cloud/public-pages/pages/chat/public-chat-page.js +100 -0
  907. package/cloud/public-pages/pages/invite/invite-accept-page.d.ts +12 -0
  908. package/cloud/public-pages/pages/invite/invite-accept-page.d.ts.map +1 -0
  909. package/cloud/public-pages/pages/invite/invite-accept-page.js +162 -0
  910. package/cloud/public-pages/pages/legal/privacy-policy-page.d.ts +7 -0
  911. package/cloud/public-pages/pages/legal/privacy-policy-page.d.ts.map +1 -0
  912. package/cloud/public-pages/pages/legal/privacy-policy-page.js +116 -0
  913. package/cloud/public-pages/pages/legal/terms-of-service-page.d.ts +10 -0
  914. package/cloud/public-pages/pages/legal/terms-of-service-page.d.ts.map +1 -0
  915. package/cloud/public-pages/pages/legal/terms-of-service-page.js +109 -0
  916. package/cloud/public-pages/pages/login/login-page.d.ts +7 -0
  917. package/cloud/public-pages/pages/login/login-page.d.ts.map +1 -0
  918. package/cloud/public-pages/pages/login/login-page.js +27 -0
  919. package/cloud/public-pages/pages/login/steward-login-section.d.ts +16 -0
  920. package/cloud/public-pages/pages/login/steward-login-section.d.ts.map +1 -0
  921. package/cloud/public-pages/pages/login/steward-login-section.js +448 -0
  922. package/cloud/public-pages/pages/payment/app-charge-page.d.ts +9 -0
  923. package/cloud/public-pages/pages/payment/app-charge-page.d.ts.map +1 -0
  924. package/cloud/public-pages/pages/payment/app-charge-page.js +200 -0
  925. package/cloud/public-pages/pages/payment/payment-navigation.d.ts +3 -0
  926. package/cloud/public-pages/pages/payment/payment-navigation.d.ts.map +1 -0
  927. package/cloud/public-pages/pages/payment/payment-navigation.js +4 -0
  928. package/cloud/public-pages/pages/payment/payment-request-page.d.ts +10 -0
  929. package/cloud/public-pages/pages/payment/payment-request-page.d.ts.map +1 -0
  930. package/cloud/public-pages/pages/payment/payment-request-page.js +142 -0
  931. package/cloud/public-pages/pages/payment/payment-success-page.d.ts +9 -0
  932. package/cloud/public-pages/pages/payment/payment-success-page.d.ts.map +1 -0
  933. package/cloud/public-pages/pages/payment/payment-success-page.js +57 -0
  934. package/cloud/public-pages/pages/sensitive-requests/sensitive-request-page.d.ts +9 -0
  935. package/cloud/public-pages/pages/sensitive-requests/sensitive-request-page.d.ts.map +1 -0
  936. package/cloud/public-pages/pages/sensitive-requests/sensitive-request-page.js +199 -0
  937. package/cloud/public-pages/register.d.ts +20 -0
  938. package/cloud/public-pages/register.d.ts.map +1 -0
  939. package/cloud/public-pages/register.js +158 -0
  940. package/cloud/register-all.d.ts +26 -0
  941. package/cloud/register-all.d.ts.map +1 -0
  942. package/cloud/register-all.js +55 -0
  943. package/cloud/settings/CloudSettingsSectionShell.d.ts +39 -0
  944. package/cloud/settings/CloudSettingsSectionShell.d.ts.map +1 -0
  945. package/cloud/settings/CloudSettingsSectionShell.js +50 -0
  946. package/cloud/settings/cloud-settings-group.d.ts +35 -0
  947. package/cloud/settings/cloud-settings-group.d.ts.map +1 -0
  948. package/cloud/settings/cloud-settings-group.js +43 -0
  949. package/cloud/settings/index.d.ts +14 -0
  950. package/cloud/settings/index.d.ts.map +1 -0
  951. package/cloud/settings/index.js +13 -0
  952. package/cloud/settings/register-cloud-settings.d.ts +33 -0
  953. package/cloud/settings/register-cloud-settings.d.ts.map +1 -0
  954. package/cloud/settings/register-cloud-settings.js +161 -0
  955. package/cloud/settings/sections.d.ts +29 -0
  956. package/cloud/settings/sections.d.ts.map +1 -0
  957. package/cloud/settings/sections.js +74 -0
  958. package/cloud/shell/CloudI18nProvider.d.ts +32 -0
  959. package/cloud/shell/CloudI18nProvider.d.ts.map +1 -0
  960. package/cloud/shell/CloudI18nProvider.js +88 -0
  961. package/cloud/shell/CloudRouterShell.d.ts +39 -0
  962. package/cloud/shell/CloudRouterShell.d.ts.map +1 -0
  963. package/cloud/shell/CloudRouterShell.js +109 -0
  964. package/cloud/shell/StewardProvider.d.ts +55 -0
  965. package/cloud/shell/StewardProvider.d.ts.map +1 -0
  966. package/cloud/shell/StewardProvider.js +205 -0
  967. package/cloud/shell/StewardProviderRuntime.d.ts +19 -0
  968. package/cloud/shell/StewardProviderRuntime.d.ts.map +1 -0
  969. package/cloud/shell/StewardProviderRuntime.js +199 -0
  970. package/cloud/shell/cloud-route-registry.d.ts +41 -0
  971. package/cloud/shell/cloud-route-registry.d.ts.map +1 -0
  972. package/cloud/shell/cloud-route-registry.js +41 -0
  973. package/cloud/shell/steward-url.d.ts +12 -0
  974. package/cloud/shell/steward-url.d.ts.map +1 -0
  975. package/cloud/shell/steward-url.js +63 -0
  976. package/cloud-ui/components/ai-elements/eliza-avatar.d.ts +11 -0
  977. package/cloud-ui/components/ai-elements/eliza-avatar.d.ts.map +1 -0
  978. package/cloud-ui/components/ai-elements/eliza-avatar.js +102 -0
  979. package/cloud-ui/components/ai-elements/hooks/use-typewriter-text.d.ts +9 -0
  980. package/cloud-ui/components/ai-elements/hooks/use-typewriter-text.d.ts.map +1 -0
  981. package/cloud-ui/components/ai-elements/hooks/use-typewriter-text.js +88 -0
  982. package/cloud-ui/components/ai-elements/index.d.ts +4 -0
  983. package/cloud-ui/components/ai-elements/index.d.ts.map +1 -0
  984. package/cloud-ui/components/ai-elements/index.js +3 -0
  985. package/cloud-ui/components/ai-elements/memoized-chat-message.d.ts +39 -0
  986. package/cloud-ui/components/ai-elements/memoized-chat-message.d.ts.map +1 -0
  987. package/cloud-ui/components/ai-elements/memoized-chat-message.js +227 -0
  988. package/cloud-ui/components/analytics/cost-alerts.d.ts +9 -0
  989. package/cloud-ui/components/analytics/cost-alerts.d.ts.map +1 -0
  990. package/cloud-ui/components/analytics/cost-alerts.js +42 -0
  991. package/cloud-ui/components/analytics/cost-insights-card.d.ts +8 -0
  992. package/cloud-ui/components/analytics/cost-insights-card.d.ts.map +1 -0
  993. package/cloud-ui/components/analytics/cost-insights-card.js +20 -0
  994. package/cloud-ui/components/analytics/export-button.d.ts +20 -0
  995. package/cloud-ui/components/analytics/export-button.d.ts.map +1 -0
  996. package/cloud-ui/components/analytics/export-button.js +32 -0
  997. package/cloud-ui/components/analytics/index.d.ts +4 -0
  998. package/cloud-ui/components/analytics/index.d.ts.map +1 -0
  999. package/cloud-ui/components/analytics/index.js +3 -0
  1000. package/cloud-ui/components/api-key-empty-state.d.ts +6 -0
  1001. package/cloud-ui/components/api-key-empty-state.d.ts.map +1 -0
  1002. package/cloud-ui/components/api-key-empty-state.js +10 -0
  1003. package/cloud-ui/components/auth/authorize-content.d.ts +2 -0
  1004. package/cloud-ui/components/auth/authorize-content.d.ts.map +1 -0
  1005. package/cloud-ui/components/auth/authorize-content.js +181 -0
  1006. package/cloud-ui/components/auth/authorize-return.d.ts +17 -0
  1007. package/cloud-ui/components/auth/authorize-return.d.ts.map +1 -0
  1008. package/cloud-ui/components/auth/authorize-return.js +76 -0
  1009. package/cloud-ui/components/brand/brand-button.d.ts +17 -0
  1010. package/cloud-ui/components/brand/brand-button.d.ts.map +1 -0
  1011. package/cloud-ui/components/brand/brand-button.js +37 -0
  1012. package/cloud-ui/components/brand/brand-card.d.ts +31 -0
  1013. package/cloud-ui/components/brand/brand-card.d.ts.map +1 -0
  1014. package/cloud-ui/components/brand/brand-card.js +24 -0
  1015. package/cloud-ui/components/brand/brand-tabs-responsive.d.ts +40 -0
  1016. package/cloud-ui/components/brand/brand-tabs-responsive.d.ts.map +1 -0
  1017. package/cloud-ui/components/brand/brand-tabs-responsive.js +38 -0
  1018. package/cloud-ui/components/brand/brand-tabs.d.ts +19 -0
  1019. package/cloud-ui/components/brand/brand-tabs.d.ts.map +1 -0
  1020. package/cloud-ui/components/brand/brand-tabs.js +20 -0
  1021. package/cloud-ui/components/brand/corner-brackets.d.ts +11 -0
  1022. package/cloud-ui/components/brand/corner-brackets.d.ts.map +1 -0
  1023. package/cloud-ui/components/brand/corner-brackets.js +28 -0
  1024. package/cloud-ui/components/brand/dashboard-section.d.ts +11 -0
  1025. package/cloud-ui/components/brand/dashboard-section.d.ts.map +1 -0
  1026. package/cloud-ui/components/brand/dashboard-section.js +5 -0
  1027. package/cloud-ui/components/brand/dashboard-stat-card.d.ts +14 -0
  1028. package/cloud-ui/components/brand/dashboard-stat-card.d.ts.map +1 -0
  1029. package/cloud-ui/components/brand/dashboard-stat-card.js +15 -0
  1030. package/cloud-ui/components/brand/eliza-cloud-lockup.d.ts +8 -0
  1031. package/cloud-ui/components/brand/eliza-cloud-lockup.d.ts.map +1 -0
  1032. package/cloud-ui/components/brand/eliza-cloud-lockup.js +5 -0
  1033. package/cloud-ui/components/brand/eliza-logo.d.ts +8 -0
  1034. package/cloud-ui/components/brand/eliza-logo.d.ts.map +1 -0
  1035. package/cloud-ui/components/brand/eliza-logo.js +6 -0
  1036. package/cloud-ui/components/brand/hud-container.d.ts +8 -0
  1037. package/cloud-ui/components/brand/hud-container.d.ts.map +1 -0
  1038. package/cloud-ui/components/brand/hud-container.js +6 -0
  1039. package/cloud-ui/components/brand/index.d.ts +26 -0
  1040. package/cloud-ui/components/brand/index.d.ts.map +1 -0
  1041. package/cloud-ui/components/brand/index.js +20 -0
  1042. package/cloud-ui/components/brand/key-metrics-grid.d.ts +21 -0
  1043. package/cloud-ui/components/brand/key-metrics-grid.d.ts.map +1 -0
  1044. package/cloud-ui/components/brand/key-metrics-grid.js +25 -0
  1045. package/cloud-ui/components/brand/lock-on-button.d.ts +5 -0
  1046. package/cloud-ui/components/brand/lock-on-button.d.ts.map +1 -0
  1047. package/cloud-ui/components/brand/lock-on-button.js +10 -0
  1048. package/cloud-ui/components/brand/lock-on-button.variants.d.ts +11 -0
  1049. package/cloud-ui/components/brand/lock-on-button.variants.d.ts.map +1 -0
  1050. package/cloud-ui/components/brand/lock-on-button.variants.js +20 -0
  1051. package/cloud-ui/components/brand/mini-stat-card.d.ts +9 -0
  1052. package/cloud-ui/components/brand/mini-stat-card.d.ts.map +1 -0
  1053. package/cloud-ui/components/brand/mini-stat-card.js +5 -0
  1054. package/cloud-ui/components/brand/prompt-card.d.ts +17 -0
  1055. package/cloud-ui/components/brand/prompt-card.d.ts.map +1 -0
  1056. package/cloud-ui/components/brand/prompt-card.js +12 -0
  1057. package/cloud-ui/components/brand/section-header.d.ts +17 -0
  1058. package/cloud-ui/components/brand/section-header.d.ts.map +1 -0
  1059. package/cloud-ui/components/brand/section-header.js +16 -0
  1060. package/cloud-ui/components/code/code-display.d.ts +7 -0
  1061. package/cloud-ui/components/code/code-display.d.ts.map +1 -0
  1062. package/cloud-ui/components/code/code-display.js +46 -0
  1063. package/cloud-ui/components/code/index.d.ts +4 -0
  1064. package/cloud-ui/components/code/index.d.ts.map +1 -0
  1065. package/cloud-ui/components/code/index.js +2 -0
  1066. package/cloud-ui/components/code/monaco-editor-skeleton.d.ts +10 -0
  1067. package/cloud-ui/components/code/monaco-editor-skeleton.d.ts.map +1 -0
  1068. package/cloud-ui/components/code/monaco-editor-skeleton.js +10 -0
  1069. package/cloud-ui/components/code/prism-light.d.ts +6 -0
  1070. package/cloud-ui/components/code/prism-light.d.ts.map +1 -0
  1071. package/cloud-ui/components/code/prism-light.js +45 -0
  1072. package/cloud-ui/components/connection-card.d.ts +85 -0
  1073. package/cloud-ui/components/connection-card.d.ts.map +1 -0
  1074. package/cloud-ui/components/connection-card.js +58 -0
  1075. package/cloud-ui/components/dashboard/cloud-dashboard-components.d.ts +33 -0
  1076. package/cloud-ui/components/dashboard/cloud-dashboard-components.d.ts.map +1 -0
  1077. package/cloud-ui/components/dashboard/cloud-dashboard-components.js +78 -0
  1078. package/cloud-ui/components/dashboard/dashboard-route-error.d.ts +8 -0
  1079. package/cloud-ui/components/dashboard/dashboard-route-error.d.ts.map +1 -0
  1080. package/cloud-ui/components/dashboard/dashboard-route-error.helpers.d.ts +7 -0
  1081. package/cloud-ui/components/dashboard/dashboard-route-error.helpers.d.ts.map +1 -0
  1082. package/cloud-ui/components/dashboard/dashboard-route-error.helpers.js +12 -0
  1083. package/cloud-ui/components/dashboard/dashboard-route-error.js +9 -0
  1084. package/cloud-ui/components/dashboard/route-placeholders.d.ts +15 -0
  1085. package/cloud-ui/components/dashboard/route-placeholders.d.ts.map +1 -0
  1086. package/cloud-ui/components/dashboard/route-placeholders.js +19 -0
  1087. package/cloud-ui/components/data-list/api-keys-summary.d.ts +12 -0
  1088. package/cloud-ui/components/data-list/api-keys-summary.d.ts.map +1 -0
  1089. package/cloud-ui/components/data-list/api-keys-summary.js +35 -0
  1090. package/cloud-ui/components/data-list/api-keys-table.d.ts +22 -0
  1091. package/cloud-ui/components/data-list/api-keys-table.d.ts.map +1 -0
  1092. package/cloud-ui/components/data-list/api-keys-table.js +79 -0
  1093. package/cloud-ui/components/data-list/apps-list-view.d.ts +26 -0
  1094. package/cloud-ui/components/data-list/apps-list-view.d.ts.map +1 -0
  1095. package/cloud-ui/components/data-list/apps-list-view.js +72 -0
  1096. package/cloud-ui/components/data-list/dashboard-data-list.d.ts +30 -0
  1097. package/cloud-ui/components/data-list/dashboard-data-list.d.ts.map +1 -0
  1098. package/cloud-ui/components/data-list/dashboard-data-list.js +17 -0
  1099. package/cloud-ui/components/data-list/dashboard-table-skeleton.d.ts +15 -0
  1100. package/cloud-ui/components/data-list/dashboard-table-skeleton.d.ts.map +1 -0
  1101. package/cloud-ui/components/data-list/dashboard-table-skeleton.js +8 -0
  1102. package/cloud-ui/components/data-list/data-list-empty-state.d.ts +18 -0
  1103. package/cloud-ui/components/data-list/data-list-empty-state.d.ts.map +1 -0
  1104. package/cloud-ui/components/data-list/data-list-empty-state.js +11 -0
  1105. package/cloud-ui/components/data-list/index.d.ts +9 -0
  1106. package/cloud-ui/components/data-list/index.d.ts.map +1 -0
  1107. package/cloud-ui/components/data-list/index.js +7 -0
  1108. package/cloud-ui/components/data-list/list-action-menu.d.ts +40 -0
  1109. package/cloud-ui/components/data-list/list-action-menu.d.ts.map +1 -0
  1110. package/cloud-ui/components/data-list/list-action-menu.js +18 -0
  1111. package/cloud-ui/components/docs/api-parameter-select.d.ts +13 -0
  1112. package/cloud-ui/components/docs/api-parameter-select.d.ts.map +1 -0
  1113. package/cloud-ui/components/docs/api-parameter-select.js +7 -0
  1114. package/cloud-ui/components/docs/api-route-explorer-client.d.ts +5 -0
  1115. package/cloud-ui/components/docs/api-route-explorer-client.d.ts.map +1 -0
  1116. package/cloud-ui/components/docs/api-route-explorer-client.js +162 -0
  1117. package/cloud-ui/components/docs/docs-layout.d.ts +10 -0
  1118. package/cloud-ui/components/docs/docs-layout.d.ts.map +1 -0
  1119. package/cloud-ui/components/docs/docs-layout.js +21 -0
  1120. package/cloud-ui/components/docs/docs-types.d.ts +26 -0
  1121. package/cloud-ui/components/docs/docs-types.d.ts.map +1 -0
  1122. package/cloud-ui/components/docs/docs-types.js +1 -0
  1123. package/cloud-ui/components/docs/endpoint-card.d.ts +30 -0
  1124. package/cloud-ui/components/docs/endpoint-card.d.ts.map +1 -0
  1125. package/cloud-ui/components/docs/endpoint-card.js +29 -0
  1126. package/cloud-ui/components/docs/index.d.ts +12 -0
  1127. package/cloud-ui/components/docs/index.d.ts.map +1 -0
  1128. package/cloud-ui/components/docs/index.js +6 -0
  1129. package/cloud-ui/components/docs/llms-txt-badge.d.ts +2 -0
  1130. package/cloud-ui/components/docs/llms-txt-badge.d.ts.map +1 -0
  1131. package/cloud-ui/components/docs/llms-txt-badge.js +17 -0
  1132. package/cloud-ui/components/docs/mdx-components.d.ts +34 -0
  1133. package/cloud-ui/components/docs/mdx-components.d.ts.map +1 -0
  1134. package/cloud-ui/components/docs/mdx-components.js +25 -0
  1135. package/cloud-ui/components/docs/openapi-viewer.d.ts +6 -0
  1136. package/cloud-ui/components/docs/openapi-viewer.d.ts.map +1 -0
  1137. package/cloud-ui/components/docs/openapi-viewer.js +7 -0
  1138. package/cloud-ui/components/drawer.d.ts +14 -0
  1139. package/cloud-ui/components/drawer.d.ts.map +1 -0
  1140. package/cloud-ui/components/drawer.js +39 -0
  1141. package/cloud-ui/components/icons.d.ts +7 -0
  1142. package/cloud-ui/components/icons.d.ts.map +1 -0
  1143. package/cloud-ui/components/icons.js +16 -0
  1144. package/cloud-ui/components/image-gen/empty-state.d.ts +3 -0
  1145. package/cloud-ui/components/image-gen/empty-state.d.ts.map +1 -0
  1146. package/cloud-ui/components/image-gen/empty-state.js +12 -0
  1147. package/cloud-ui/components/image-gen/enhanced-loading.d.ts +14 -0
  1148. package/cloud-ui/components/image-gen/enhanced-loading.d.ts.map +1 -0
  1149. package/cloud-ui/components/image-gen/enhanced-loading.js +23 -0
  1150. package/cloud-ui/components/image-gen/index.d.ts +5 -0
  1151. package/cloud-ui/components/image-gen/index.d.ts.map +1 -0
  1152. package/cloud-ui/components/image-gen/index.js +4 -0
  1153. package/cloud-ui/components/image-gen/loading-state.d.ts +2 -0
  1154. package/cloud-ui/components/image-gen/loading-state.d.ts.map +1 -0
  1155. package/cloud-ui/components/image-gen/loading-state.js +11 -0
  1156. package/cloud-ui/components/image-gen/prompt-input.d.ts +32 -0
  1157. package/cloud-ui/components/image-gen/prompt-input.d.ts.map +1 -0
  1158. package/cloud-ui/components/image-gen/prompt-input.js +24 -0
  1159. package/cloud-ui/components/layout/dashboard-header.d.ts +18 -0
  1160. package/cloud-ui/components/layout/dashboard-header.d.ts.map +1 -0
  1161. package/cloud-ui/components/layout/dashboard-header.js +10 -0
  1162. package/cloud-ui/components/layout/dashboard-page.d.ts +25 -0
  1163. package/cloud-ui/components/layout/dashboard-page.d.ts.map +1 -0
  1164. package/cloud-ui/components/layout/dashboard-page.js +24 -0
  1165. package/cloud-ui/components/layout/dashboard-route-page.d.ts +20 -0
  1166. package/cloud-ui/components/layout/dashboard-route-page.d.ts.map +1 -0
  1167. package/cloud-ui/components/layout/dashboard-route-page.js +31 -0
  1168. package/cloud-ui/components/layout/dashboard-shell.d.ts +8 -0
  1169. package/cloud-ui/components/layout/dashboard-shell.d.ts.map +1 -0
  1170. package/cloud-ui/components/layout/dashboard-shell.js +5 -0
  1171. package/cloud-ui/components/layout/dashboard-sidebar-item.d.ts +12 -0
  1172. package/cloud-ui/components/layout/dashboard-sidebar-item.d.ts.map +1 -0
  1173. package/cloud-ui/components/layout/dashboard-sidebar-item.js +65 -0
  1174. package/cloud-ui/components/layout/dashboard-sidebar-section.d.ts +15 -0
  1175. package/cloud-ui/components/layout/dashboard-sidebar-section.d.ts.map +1 -0
  1176. package/cloud-ui/components/layout/dashboard-sidebar-section.js +51 -0
  1177. package/cloud-ui/components/layout/dashboard-sidebar-types.d.ts +29 -0
  1178. package/cloud-ui/components/layout/dashboard-sidebar-types.d.ts.map +1 -0
  1179. package/cloud-ui/components/layout/dashboard-sidebar-types.js +1 -0
  1180. package/cloud-ui/components/layout/dashboard-sidebar.d.ts +22 -0
  1181. package/cloud-ui/components/layout/dashboard-sidebar.d.ts.map +1 -0
  1182. package/cloud-ui/components/layout/dashboard-sidebar.js +17 -0
  1183. package/cloud-ui/components/layout/index.d.ts +12 -0
  1184. package/cloud-ui/components/layout/index.d.ts.map +1 -0
  1185. package/cloud-ui/components/layout/index.js +10 -0
  1186. package/cloud-ui/components/layout/page-header-context.d.ts +11 -0
  1187. package/cloud-ui/components/layout/page-header-context.d.ts.map +1 -0
  1188. package/cloud-ui/components/layout/page-header-context.hooks.d.ts +30 -0
  1189. package/cloud-ui/components/layout/page-header-context.hooks.d.ts.map +1 -0
  1190. package/cloud-ui/components/layout/page-header-context.hooks.js +49 -0
  1191. package/cloud-ui/components/layout/page-header-context.js +31 -0
  1192. package/cloud-ui/components/layout/page-transition.d.ts +10 -0
  1193. package/cloud-ui/components/layout/page-transition.d.ts.map +1 -0
  1194. package/cloud-ui/components/layout/page-transition.js +27 -0
  1195. package/cloud-ui/components/log-viewer.d.ts +87 -0
  1196. package/cloud-ui/components/log-viewer.d.ts.map +1 -0
  1197. package/cloud-ui/components/log-viewer.js +95 -0
  1198. package/cloud-ui/components/monetization/animated-counter.d.ts +26 -0
  1199. package/cloud-ui/components/monetization/animated-counter.d.ts.map +1 -0
  1200. package/cloud-ui/components/monetization/animated-counter.js +44 -0
  1201. package/cloud-ui/components/monetization/earnings-simulator.d.ts +12 -0
  1202. package/cloud-ui/components/monetization/earnings-simulator.d.ts.map +1 -0
  1203. package/cloud-ui/components/monetization/earnings-simulator.js +40 -0
  1204. package/cloud-ui/components/monetization/index.d.ts +5 -0
  1205. package/cloud-ui/components/monetization/index.d.ts.map +1 -0
  1206. package/cloud-ui/components/monetization/index.js +4 -0
  1207. package/cloud-ui/components/monetization/milestone-progress.d.ts +18 -0
  1208. package/cloud-ui/components/monetization/milestone-progress.d.ts.map +1 -0
  1209. package/cloud-ui/components/monetization/milestone-progress.js +28 -0
  1210. package/cloud-ui/components/monetization/revenue-flow-diagram.d.ts +12 -0
  1211. package/cloud-ui/components/monetization/revenue-flow-diagram.d.ts.map +1 -0
  1212. package/cloud-ui/components/monetization/revenue-flow-diagram.js +26 -0
  1213. package/cloud-ui/components/navigation-progress.d.ts +11 -0
  1214. package/cloud-ui/components/navigation-progress.d.ts.map +1 -0
  1215. package/cloud-ui/components/navigation-progress.js +42 -0
  1216. package/cloud-ui/components/primitives.d.ts +58 -0
  1217. package/cloud-ui/components/primitives.d.ts.map +1 -0
  1218. package/cloud-ui/components/primitives.js +56 -0
  1219. package/cloud-ui/components/product-switcher.d.ts +16 -0
  1220. package/cloud-ui/components/product-switcher.d.ts.map +1 -0
  1221. package/cloud-ui/components/product-switcher.js +7 -0
  1222. package/cloud-ui/components/promotion/promote-app-dialog.d.ts +18 -0
  1223. package/cloud-ui/components/promotion/promote-app-dialog.d.ts.map +1 -0
  1224. package/cloud-ui/components/promotion/promote-app-dialog.js +243 -0
  1225. package/cloud-ui/components/promotion/social-connection-hint.d.ts +29 -0
  1226. package/cloud-ui/components/promotion/social-connection-hint.d.ts.map +1 -0
  1227. package/cloud-ui/components/promotion/social-connection-hint.js +63 -0
  1228. package/cloud-ui/components/resizable.d.ts +21 -0
  1229. package/cloud-ui/components/resizable.d.ts.map +1 -0
  1230. package/cloud-ui/components/resizable.js +133 -0
  1231. package/cloud-ui/components/share/index.d.ts +2 -0
  1232. package/cloud-ui/components/share/index.d.ts.map +1 -0
  1233. package/cloud-ui/components/share/index.js +1 -0
  1234. package/cloud-ui/components/share/share-buttons.d.ts +16 -0
  1235. package/cloud-ui/components/share/share-buttons.d.ts.map +1 -0
  1236. package/cloud-ui/components/share/share-buttons.js +62 -0
  1237. package/cloud-ui/components/sonner.d.ts +4 -0
  1238. package/cloud-ui/components/sonner.d.ts.map +1 -0
  1239. package/cloud-ui/components/sonner.js +13 -0
  1240. package/cloud-ui/components/spotlight.d.ts +7 -0
  1241. package/cloud-ui/components/spotlight.d.ts.map +1 -0
  1242. package/cloud-ui/components/spotlight.js +5 -0
  1243. package/cloud-ui/components/theme/index.d.ts +8 -0
  1244. package/cloud-ui/components/theme/index.d.ts.map +1 -0
  1245. package/cloud-ui/components/theme/index.js +7 -0
  1246. package/cloud-ui/components/theme/theme-provider.d.ts +13 -0
  1247. package/cloud-ui/components/theme/theme-provider.d.ts.map +1 -0
  1248. package/cloud-ui/components/theme/theme-provider.hooks.d.ts +16 -0
  1249. package/cloud-ui/components/theme/theme-provider.hooks.d.ts.map +1 -0
  1250. package/cloud-ui/components/theme/theme-provider.hooks.js +15 -0
  1251. package/cloud-ui/components/theme/theme-provider.js +88 -0
  1252. package/cloud-ui/components/theme/theme-toggle.d.ts +2 -0
  1253. package/cloud-ui/components/theme/theme-toggle.d.ts.map +1 -0
  1254. package/cloud-ui/components/theme/theme-toggle.js +9 -0
  1255. package/cloud-ui/components/timeline.d.ts +12 -0
  1256. package/cloud-ui/components/timeline.d.ts.map +1 -0
  1257. package/cloud-ui/components/timeline.js +28 -0
  1258. package/cloud-ui/components/voice/audio-utils.d.ts +4 -0
  1259. package/cloud-ui/components/voice/audio-utils.d.ts.map +1 -0
  1260. package/cloud-ui/components/voice/audio-utils.js +24 -0
  1261. package/cloud-ui/components/voice/index.d.ts +9 -0
  1262. package/cloud-ui/components/voice/index.d.ts.map +1 -0
  1263. package/cloud-ui/components/voice/index.js +7 -0
  1264. package/cloud-ui/components/voice/types.d.ts +30 -0
  1265. package/cloud-ui/components/voice/types.d.ts.map +1 -0
  1266. package/cloud-ui/components/voice/types.js +4 -0
  1267. package/cloud-ui/components/voice/use-audio-player.d.ts +13 -0
  1268. package/cloud-ui/components/voice/use-audio-player.d.ts.map +1 -0
  1269. package/cloud-ui/components/voice/use-audio-player.js +119 -0
  1270. package/cloud-ui/components/voice/use-audio-recorder.d.ts +14 -0
  1271. package/cloud-ui/components/voice/use-audio-recorder.d.ts.map +1 -0
  1272. package/cloud-ui/components/voice/use-audio-recorder.js +166 -0
  1273. package/cloud-ui/components/voice/voice-audio-player.d.ts +14 -0
  1274. package/cloud-ui/components/voice/voice-audio-player.d.ts.map +1 -0
  1275. package/cloud-ui/components/voice/voice-audio-player.js +89 -0
  1276. package/cloud-ui/components/voice/voice-empty-state.d.ts +6 -0
  1277. package/cloud-ui/components/voice/voice-empty-state.d.ts.map +1 -0
  1278. package/cloud-ui/components/voice/voice-empty-state.js +11 -0
  1279. package/cloud-ui/components/voice/voice-status-badge.d.ts +10 -0
  1280. package/cloud-ui/components/voice/voice-status-badge.d.ts.map +1 -0
  1281. package/cloud-ui/components/voice/voice-status-badge.helpers.d.ts +11 -0
  1282. package/cloud-ui/components/voice/voice-status-badge.helpers.d.ts.map +1 -0
  1283. package/cloud-ui/components/voice/voice-status-badge.helpers.js +23 -0
  1284. package/cloud-ui/components/voice/voice-status-badge.js +36 -0
  1285. package/cloud-ui/index.css +3 -0
  1286. package/cloud-ui/index.d.ts +31 -0
  1287. package/cloud-ui/index.d.ts.map +1 -0
  1288. package/cloud-ui/index.js +28 -0
  1289. package/cloud-ui/lib/utils.d.ts +2 -0
  1290. package/cloud-ui/lib/utils.d.ts.map +1 -0
  1291. package/cloud-ui/lib/utils.js +1 -0
  1292. package/cloud-ui/runtime/dynamic.d.ts +11 -0
  1293. package/cloud-ui/runtime/dynamic.d.ts.map +1 -0
  1294. package/cloud-ui/runtime/dynamic.js +16 -0
  1295. package/cloud-ui/runtime/image.d.ts +18 -0
  1296. package/cloud-ui/runtime/image.d.ts.map +1 -0
  1297. package/cloud-ui/runtime/image.js +13 -0
  1298. package/cloud-ui/runtime/navigation.d.ts +24 -0
  1299. package/cloud-ui/runtime/navigation.d.ts.map +1 -0
  1300. package/cloud-ui/runtime/navigation.js +90 -0
  1301. package/cloud-ui/runtime/render-telemetry.d.ts +6 -0
  1302. package/cloud-ui/runtime/render-telemetry.d.ts.map +1 -0
  1303. package/cloud-ui/runtime/render-telemetry.js +51 -0
  1304. package/cloud-ui/types/chat-media.d.ts +24 -0
  1305. package/cloud-ui/types/chat-media.d.ts.map +1 -0
  1306. package/cloud-ui/types/chat-media.js +12 -0
  1307. package/cloud-ui/types/cloud-api.d.ts +518 -0
  1308. package/cloud-ui/types/cloud-api.d.ts.map +1 -0
  1309. package/cloud-ui/types/cloud-api.js +1 -0
  1310. package/companion/desktop-bar/CompanionBar.d.ts +14 -0
  1311. package/companion/desktop-bar/CompanionBar.d.ts.map +1 -0
  1312. package/companion/desktop-bar/CompanionBar.js +79 -0
  1313. package/companion/desktop-bar/index.d.ts +7 -0
  1314. package/companion/desktop-bar/index.d.ts.map +1 -0
  1315. package/companion/desktop-bar/index.js +4 -0
  1316. package/companion/desktop-bar/platform/electrobun-tray.d.ts +11 -0
  1317. package/companion/desktop-bar/platform/electrobun-tray.d.ts.map +1 -0
  1318. package/companion/desktop-bar/platform/electrobun-tray.js +36 -0
  1319. package/companion/desktop-bar/platform/index.d.ts +4 -0
  1320. package/companion/desktop-bar/platform/index.d.ts.map +1 -0
  1321. package/companion/desktop-bar/platform/index.js +14 -0
  1322. package/companion/desktop-bar/platform/web-fallback.d.ts +3 -0
  1323. package/companion/desktop-bar/platform/web-fallback.d.ts.map +1 -0
  1324. package/companion/desktop-bar/platform/web-fallback.js +6 -0
  1325. package/companion/desktop-bar/types.d.ts +16 -0
  1326. package/companion/desktop-bar/types.d.ts.map +1 -0
  1327. package/companion/desktop-bar/types.js +1 -0
  1328. package/companion/desktop-bar/useKeyboardShortcuts.d.ts +19 -0
  1329. package/companion/desktop-bar/useKeyboardShortcuts.d.ts.map +1 -0
  1330. package/companion/desktop-bar/useKeyboardShortcuts.js +100 -0
  1331. package/companion/desktop-bar/usePushToTalk.d.ts +17 -0
  1332. package/companion/desktop-bar/usePushToTalk.d.ts.map +1 -0
  1333. package/companion/desktop-bar/usePushToTalk.js +68 -0
  1334. package/components/accounts/AccountCard.d.ts.map +1 -1
  1335. package/components/accounts/AccountCard.js +19 -19
  1336. package/components/accounts/AccountList.d.ts.map +1 -1
  1337. package/components/accounts/AccountList.js +4 -3
  1338. package/components/accounts/AddAccountDialog.d.ts.map +1 -1
  1339. package/components/accounts/AddAccountDialog.js +11 -2
  1340. package/components/accounts/EditableAccountLabel.d.ts.map +1 -1
  1341. package/components/accounts/EditableAccountLabel.js +3 -2
  1342. package/components/accounts/RotationStrategyPicker.d.ts.map +1 -1
  1343. package/components/accounts/RotationStrategyPicker.js +2 -2
  1344. package/components/apps/AppWindowRenderer.d.ts +5 -0
  1345. package/components/apps/AppWindowRenderer.d.ts.map +1 -0
  1346. package/components/apps/AppWindowRenderer.helpers.d.ts +4 -0
  1347. package/components/apps/AppWindowRenderer.helpers.d.ts.map +1 -0
  1348. package/components/apps/AppWindowRenderer.helpers.js +20 -0
  1349. package/components/apps/AppWindowRenderer.js +72 -0
  1350. package/components/apps/AppsCatalogGrid.d.ts +2 -1
  1351. package/components/apps/AppsCatalogGrid.d.ts.map +1 -1
  1352. package/components/apps/AppsCatalogGrid.js +29 -7
  1353. package/components/apps/AppsSidebar.d.ts.map +1 -1
  1354. package/components/apps/AppsSidebar.js +6 -4
  1355. package/components/apps/GameView.d.ts +0 -4
  1356. package/components/apps/GameView.d.ts.map +1 -1
  1357. package/components/apps/GameView.helpers.d.ts +3 -0
  1358. package/components/apps/GameView.helpers.d.ts.map +1 -0
  1359. package/components/apps/GameView.helpers.js +50 -0
  1360. package/components/apps/GameView.js +180 -171
  1361. package/components/apps/GameViewOverlay.d.ts.map +1 -1
  1362. package/components/apps/GameViewOverlay.js +27 -6
  1363. package/components/apps/RunningAppsRow.js +4 -4
  1364. package/components/apps/app-identity.d.ts +7 -12
  1365. package/components/apps/app-identity.d.ts.map +1 -1
  1366. package/components/apps/app-identity.helpers.d.ts +13 -0
  1367. package/components/apps/app-identity.helpers.d.ts.map +1 -0
  1368. package/components/apps/app-identity.helpers.js +49 -0
  1369. package/components/apps/app-identity.js +8 -54
  1370. package/components/apps/apps-cache.d.ts +1 -1
  1371. package/components/apps/apps-cache.d.ts.map +1 -1
  1372. package/components/apps/extensions/registry.d.ts +1 -1
  1373. package/components/apps/extensions/registry.js +1 -1
  1374. package/components/apps/extensions/surface.d.ts +1 -6
  1375. package/components/apps/extensions/surface.d.ts.map +1 -1
  1376. package/components/apps/extensions/surface.helpers.d.ts +8 -0
  1377. package/components/apps/extensions/surface.helpers.d.ts.map +1 -0
  1378. package/components/apps/extensions/surface.helpers.js +66 -0
  1379. package/components/apps/extensions/surface.js +3 -69
  1380. package/components/apps/helpers.d.ts +2 -1
  1381. package/components/apps/helpers.d.ts.map +1 -1
  1382. package/components/apps/helpers.js +39 -44
  1383. package/components/apps/home-grid-apps.d.ts +19 -0
  1384. package/components/apps/home-grid-apps.d.ts.map +1 -0
  1385. package/components/apps/home-grid-apps.js +75 -0
  1386. package/components/apps/internal-tool-apps.d.ts.map +1 -1
  1387. package/components/apps/internal-tool-apps.js +25 -15
  1388. package/components/apps/load-apps-catalog.d.ts.map +1 -1
  1389. package/components/apps/load-apps-catalog.js +6 -22
  1390. package/components/apps/overlay-app-api.d.ts +17 -4
  1391. package/components/apps/overlay-app-api.d.ts.map +1 -1
  1392. package/components/apps/overlay-app-registry.d.ts +5 -5
  1393. package/components/apps/overlay-app-registry.d.ts.map +1 -1
  1394. package/components/apps/overlay-app-registry.js +26 -15
  1395. package/components/apps/provenance.d.ts +36 -0
  1396. package/components/apps/provenance.d.ts.map +1 -0
  1397. package/components/apps/provenance.js +40 -0
  1398. package/components/apps/surfaces/GameOperatorShell.d.ts +1 -9
  1399. package/components/apps/surfaces/GameOperatorShell.d.ts.map +1 -1
  1400. package/components/apps/surfaces/GameOperatorShell.js +5 -11
  1401. package/components/apps/surfaces/registry.d.ts +1 -1
  1402. package/components/apps/surfaces/registry.js +1 -1
  1403. package/components/apps/useRegistryCatalog.d.ts +1 -0
  1404. package/components/apps/useRegistryCatalog.d.ts.map +1 -1
  1405. package/components/apps/useRegistryCatalog.js +12 -4
  1406. package/components/apps/viewer-auth.d.ts +10 -1
  1407. package/components/apps/viewer-auth.d.ts.map +1 -1
  1408. package/components/apps/viewer-auth.js +12 -3
  1409. package/components/auth/LoginView.d.ts.map +1 -1
  1410. package/components/auth/LoginView.js +51 -11
  1411. package/components/brand/eliza-mark.d.ts +16 -0
  1412. package/components/brand/eliza-mark.d.ts.map +1 -0
  1413. package/components/brand/eliza-mark.js +15 -0
  1414. package/components/character/CharacterEditor.d.ts.map +1 -1
  1415. package/components/character/CharacterEditor.js +194 -132
  1416. package/components/character/CharacterEditorPanels.d.ts.map +1 -1
  1417. package/components/character/CharacterEditorPanels.js +228 -117
  1418. package/components/character/CharacterExperienceWorkspace.d.ts.map +1 -1
  1419. package/components/character/CharacterExperienceWorkspace.js +210 -208
  1420. package/components/character/CharacterHubView.d.ts.map +1 -1
  1421. package/components/character/CharacterHubView.js +50 -155
  1422. package/components/character/CharacterLearnedSkillsSection.d.ts.map +1 -1
  1423. package/components/character/CharacterLearnedSkillsSection.js +67 -34
  1424. package/components/character/CharacterOverviewSection.d.ts +6 -9
  1425. package/components/character/CharacterOverviewSection.d.ts.map +1 -1
  1426. package/components/character/CharacterOverviewSection.js +19 -20
  1427. package/components/character/CharacterPersonalityTimeline.js +1 -1
  1428. package/components/character/CharacterRoster.d.ts +2 -12
  1429. package/components/character/CharacterRoster.d.ts.map +1 -1
  1430. package/components/character/CharacterRoster.helpers.d.ts +13 -0
  1431. package/components/character/CharacterRoster.helpers.d.ts.map +1 -0
  1432. package/components/character/CharacterRoster.helpers.js +43 -0
  1433. package/components/character/CharacterRoster.js +6 -50
  1434. package/components/character/MusicLibraryCharacterWidget.js +2 -2
  1435. package/components/character/character-editor-helpers.d.ts +2 -2
  1436. package/components/character/character-editor-helpers.d.ts.map +1 -1
  1437. package/components/character/character-editor-helpers.js +1 -1
  1438. package/components/chat/AccountRequiredCard.d.ts +11 -1
  1439. package/components/chat/AccountRequiredCard.d.ts.map +1 -1
  1440. package/components/chat/AccountRequiredCard.js +55 -5
  1441. package/components/chat/AgentActivityBox.js +1 -1
  1442. package/components/chat/AppsSection.d.ts.map +1 -1
  1443. package/components/chat/AppsSection.js +2 -2
  1444. package/components/chat/ConnectorAccountPicker.d.ts.map +1 -1
  1445. package/components/chat/ConnectorAccountPicker.js +5 -1
  1446. package/components/chat/MessageAttachments.d.ts +21 -0
  1447. package/components/chat/MessageAttachments.d.ts.map +1 -0
  1448. package/components/chat/MessageAttachments.js +157 -0
  1449. package/components/chat/MessageContent.d.ts +1 -34
  1450. package/components/chat/MessageContent.d.ts.map +1 -1
  1451. package/components/chat/MessageContent.js +160 -43
  1452. package/components/chat/SaveCommandModal.js +6 -4
  1453. package/components/chat/TasksEventsPanel.d.ts +1 -2
  1454. package/components/chat/TasksEventsPanel.d.ts.map +1 -1
  1455. package/components/chat/TasksEventsPanel.js +5 -7
  1456. package/components/chat/ThinkingBlock.d.ts +14 -0
  1457. package/components/chat/ThinkingBlock.d.ts.map +1 -0
  1458. package/components/chat/ThinkingBlock.js +19 -0
  1459. package/components/chat/WidgetVisibilityPanel.d.ts +1 -2
  1460. package/components/chat/WidgetVisibilityPanel.d.ts.map +1 -1
  1461. package/components/chat/WidgetVisibilityPanel.helpers.d.ts +3 -0
  1462. package/components/chat/WidgetVisibilityPanel.helpers.d.ts.map +1 -0
  1463. package/components/chat/WidgetVisibilityPanel.helpers.js +13 -0
  1464. package/components/chat/WidgetVisibilityPanel.js +3 -22
  1465. package/components/chat/message-choice-parser.d.ts +2 -0
  1466. package/components/chat/message-choice-parser.d.ts.map +1 -1
  1467. package/components/chat/message-choice-parser.js +8 -2
  1468. package/components/chat/message-followups-parser.d.ts +38 -0
  1469. package/components/chat/message-followups-parser.d.ts.map +1 -0
  1470. package/components/chat/message-followups-parser.js +81 -0
  1471. package/components/chat/message-form-parser.d.ts +65 -0
  1472. package/components/chat/message-form-parser.d.ts.map +1 -0
  1473. package/components/chat/message-form-parser.js +144 -0
  1474. package/components/chat/message-task-parser.d.ts +39 -0
  1475. package/components/chat/message-task-parser.d.ts.map +1 -0
  1476. package/components/chat/message-task-parser.js +56 -0
  1477. package/components/chat/widgets/ChoiceWidget.d.ts +3 -1
  1478. package/components/chat/widgets/ChoiceWidget.d.ts.map +1 -1
  1479. package/components/chat/widgets/ChoiceWidget.js +19 -4
  1480. package/components/chat/widgets/__e2e__/orchestrator-accounts-fixture.d.ts +2 -0
  1481. package/components/chat/widgets/__e2e__/orchestrator-accounts-fixture.d.ts.map +1 -0
  1482. package/components/chat/widgets/__e2e__/orchestrator-accounts-fixture.js +131 -0
  1483. package/components/chat/widgets/agent-orchestrator-accounts-view.d.ts +13 -0
  1484. package/components/chat/widgets/agent-orchestrator-accounts-view.d.ts.map +1 -0
  1485. package/components/chat/widgets/agent-orchestrator-accounts-view.js +87 -0
  1486. package/components/chat/widgets/agent-orchestrator.d.ts.map +1 -1
  1487. package/components/chat/widgets/agent-orchestrator.js +160 -39
  1488. package/components/chat/widgets/browser-status.d.ts +1 -2
  1489. package/components/chat/widgets/browser-status.d.ts.map +1 -1
  1490. package/components/chat/widgets/browser-status.helpers.d.ts +3 -0
  1491. package/components/chat/widgets/browser-status.helpers.d.ts.map +1 -0
  1492. package/components/chat/widgets/browser-status.helpers.js +8 -0
  1493. package/components/chat/widgets/browser-status.js +1 -8
  1494. package/components/chat/widgets/followups.d.ts +35 -0
  1495. package/components/chat/widgets/followups.d.ts.map +1 -0
  1496. package/components/chat/widgets/followups.js +56 -0
  1497. package/components/chat/widgets/form-request.d.ts +23 -0
  1498. package/components/chat/widgets/form-request.d.ts.map +1 -0
  1499. package/components/chat/widgets/form-request.js +97 -0
  1500. package/components/chat/widgets/inline-builtins.d.ts +12 -0
  1501. package/components/chat/widgets/inline-builtins.d.ts.map +1 -0
  1502. package/components/chat/widgets/inline-builtins.js +36 -0
  1503. package/components/chat/widgets/inline-registry.d.ts +59 -0
  1504. package/components/chat/widgets/inline-registry.d.ts.map +1 -0
  1505. package/components/chat/widgets/inline-registry.js +33 -0
  1506. package/components/chat/widgets/music-player.d.ts +1 -2
  1507. package/components/chat/widgets/music-player.d.ts.map +1 -1
  1508. package/components/chat/widgets/music-player.helpers.d.ts +3 -0
  1509. package/components/chat/widgets/music-player.helpers.d.ts.map +1 -0
  1510. package/components/chat/widgets/music-player.helpers.js +8 -0
  1511. package/components/chat/widgets/music-player.js +5 -10
  1512. package/components/chat/widgets/shared.js +1 -1
  1513. package/components/chat/widgets/task-widget.d.ts +34 -0
  1514. package/components/chat/widgets/task-widget.d.ts.map +1 -0
  1515. package/components/chat/widgets/task-widget.js +187 -0
  1516. package/components/chat/widgets/todo.d.ts.map +1 -1
  1517. package/components/chat/widgets/todo.js +7 -17
  1518. package/components/cloud/CloudSourceControls.d.ts.map +1 -1
  1519. package/components/cloud/CloudSourceControls.js +5 -4
  1520. package/components/cloud/CloudStatusBadge.d.ts +0 -18
  1521. package/components/cloud/CloudStatusBadge.d.ts.map +1 -1
  1522. package/components/cloud/CloudStatusBadge.js +8 -9
  1523. package/components/cloud/FlaminaGuide.d.ts.map +1 -1
  1524. package/components/cloud/FlaminaGuide.js +10 -10
  1525. package/components/cloud/StripeEmbeddedCheckout.js +2 -2
  1526. package/components/companion/injected.d.ts +1 -3
  1527. package/components/companion/injected.d.ts.map +1 -1
  1528. package/components/companion/injected.hooks.d.ts +4 -0
  1529. package/components/companion/injected.hooks.d.ts.map +1 -0
  1530. package/components/companion/injected.hooks.js +12 -0
  1531. package/components/companion/injected.js +1 -13
  1532. package/components/composites/OwnerBadge.d.ts +35 -0
  1533. package/components/composites/OwnerBadge.d.ts.map +1 -0
  1534. package/components/composites/OwnerBadge.js +35 -0
  1535. package/components/composites/chat/ChatVoiceStatusBar.d.ts +38 -0
  1536. package/components/composites/chat/ChatVoiceStatusBar.d.ts.map +1 -0
  1537. package/components/composites/chat/ChatVoiceStatusBar.js +71 -0
  1538. package/components/composites/chat/ContinuousChatToggle.d.ts +26 -0
  1539. package/components/composites/chat/ContinuousChatToggle.d.ts.map +1 -0
  1540. package/components/composites/chat/ContinuousChatToggle.js +66 -0
  1541. package/components/composites/chat/chat-attachment-strip.d.ts.map +1 -1
  1542. package/components/composites/chat/chat-attachment-strip.js +7 -2
  1543. package/components/composites/chat/chat-bubble.d.ts.map +1 -1
  1544. package/components/composites/chat/chat-bubble.js +7 -2
  1545. package/components/composites/chat/chat-composer-shell.js +4 -4
  1546. package/components/composites/chat/chat-composer.d.ts +4 -5
  1547. package/components/composites/chat/chat-composer.d.ts.map +1 -1
  1548. package/components/composites/chat/chat-composer.js +51 -53
  1549. package/components/composites/chat/chat-conversation-item.d.ts.map +1 -1
  1550. package/components/composites/chat/chat-conversation-item.js +16 -14
  1551. package/components/composites/chat/chat-empty-state.js +1 -1
  1552. package/components/composites/chat/chat-message-actions.js +1 -1
  1553. package/components/composites/chat/chat-message.d.ts +9 -2
  1554. package/components/composites/chat/chat-message.d.ts.map +1 -1
  1555. package/components/composites/chat/chat-message.js +132 -36
  1556. package/components/composites/chat/chat-source.d.ts +15 -17
  1557. package/components/composites/chat/chat-source.d.ts.map +1 -1
  1558. package/components/composites/chat/chat-source.helpers.d.ts +25 -0
  1559. package/components/composites/chat/chat-source.helpers.d.ts.map +1 -0
  1560. package/components/composites/chat/chat-source.helpers.js +66 -0
  1561. package/components/composites/chat/chat-source.js +18 -51
  1562. package/components/composites/chat/chat-transcript.d.ts.map +1 -1
  1563. package/components/composites/chat/chat-transcript.js +26 -6
  1564. package/components/composites/chat/chat-types.d.ts +23 -0
  1565. package/components/composites/chat/chat-types.d.ts.map +1 -1
  1566. package/components/composites/chat/chat-typing-indicator.js +1 -1
  1567. package/components/composites/chat/index.d.ts +2 -3
  1568. package/components/composites/chat/index.d.ts.map +1 -1
  1569. package/components/composites/chat/index.js +2 -3
  1570. package/components/composites/chat/permission-card.d.ts +1 -62
  1571. package/components/composites/chat/permission-card.d.ts.map +1 -1
  1572. package/components/composites/chat/permission-card.helpers.d.ts +67 -0
  1573. package/components/composites/chat/permission-card.helpers.d.ts.map +1 -0
  1574. package/components/composites/chat/permission-card.helpers.js +182 -0
  1575. package/components/composites/chat/permission-card.js +82 -171
  1576. package/components/composites/chat/permission-card.render.d.ts +7 -0
  1577. package/components/composites/chat/permission-card.render.d.ts.map +1 -0
  1578. package/components/composites/chat/permission-card.render.js +9 -0
  1579. package/components/composites/chat-search-hint.d.ts +21 -0
  1580. package/components/composites/chat-search-hint.d.ts.map +1 -0
  1581. package/components/composites/chat-search-hint.js +24 -0
  1582. package/components/composites/code/DiffReviewPanel.d.ts +17 -0
  1583. package/components/composites/code/DiffReviewPanel.d.ts.map +1 -0
  1584. package/components/composites/code/DiffReviewPanel.js +97 -0
  1585. package/components/composites/code/index.d.ts +2 -0
  1586. package/components/composites/code/index.d.ts.map +1 -0
  1587. package/components/composites/code/index.js +1 -0
  1588. package/components/composites/index.d.ts +5 -1
  1589. package/components/composites/index.d.ts.map +1 -1
  1590. package/components/composites/index.js +5 -1
  1591. package/components/composites/page-panel/index.d.ts +4 -1
  1592. package/components/composites/page-panel/index.d.ts.map +1 -1
  1593. package/components/composites/page-panel/index.js +3 -0
  1594. package/components/composites/page-panel/page-panel-collapsible-section.js +1 -1
  1595. package/components/composites/page-panel/page-panel-empty.js +2 -2
  1596. package/components/composites/page-panel/page-panel-feature-empty.d.ts +22 -0
  1597. package/components/composites/page-panel/page-panel-feature-empty.d.ts.map +1 -0
  1598. package/components/composites/page-panel/page-panel-feature-empty.js +9 -0
  1599. package/components/composites/page-panel/page-panel-header.d.ts.map +1 -1
  1600. package/components/composites/page-panel/page-panel-header.js +9 -9
  1601. package/components/composites/page-panel/page-panel-loading.js +1 -1
  1602. package/components/composites/page-panel/page-panel-root.d.ts +1 -1
  1603. package/components/composites/page-panel/page-panel-root.d.ts.map +1 -1
  1604. package/components/composites/page-panel/page-panel-root.js +7 -6
  1605. package/components/composites/page-panel/page-panel-types.d.ts +1 -1
  1606. package/components/composites/page-panel/page-panel-types.d.ts.map +1 -1
  1607. package/components/composites/search/index.d.ts +0 -1
  1608. package/components/composites/search/index.d.ts.map +1 -1
  1609. package/components/composites/search/index.js +0 -1
  1610. package/components/composites/search/searchbar.d.ts +0 -10
  1611. package/components/composites/search/searchbar.d.ts.map +1 -1
  1612. package/components/composites/search/searchbar.js +1 -12
  1613. package/components/composites/sidebar/index.d.ts +1 -1
  1614. package/components/composites/sidebar/index.d.ts.map +1 -1
  1615. package/components/composites/sidebar/index.js +1 -1
  1616. package/components/composites/sidebar/nav-active.d.ts +16 -0
  1617. package/components/composites/sidebar/nav-active.d.ts.map +1 -0
  1618. package/components/composites/sidebar/nav-active.js +15 -0
  1619. package/components/composites/sidebar/sidebar-content.d.ts.map +1 -1
  1620. package/components/composites/sidebar/sidebar-content.js +6 -5
  1621. package/components/composites/sidebar/sidebar-header.d.ts +1 -1
  1622. package/components/composites/sidebar/sidebar-header.d.ts.map +1 -1
  1623. package/components/composites/sidebar/sidebar-root.d.ts.map +1 -1
  1624. package/components/composites/sidebar/sidebar-root.js +9 -9
  1625. package/components/composites/sidebar/sidebar-types.d.ts +0 -19
  1626. package/components/composites/sidebar/sidebar-types.d.ts.map +1 -1
  1627. package/components/composites/skills/skill-sidebar-item.js +2 -2
  1628. package/components/composites/trajectories/trajectory-cache-stats.js +1 -1
  1629. package/components/composites/trajectories/trajectory-code-block.js +1 -1
  1630. package/components/composites/trajectories/trajectory-context-diff-list.js +2 -2
  1631. package/components/composites/trajectories/trajectory-event-timeline.js +1 -1
  1632. package/components/composites/trajectories/trajectory-llm-call-card.d.ts +2 -3
  1633. package/components/composites/trajectories/trajectory-llm-call-card.d.ts.map +1 -1
  1634. package/components/composites/trajectories/trajectory-llm-call-card.js +2 -2
  1635. package/components/composites/trajectories/trajectory-pipeline-graph.js +4 -4
  1636. package/components/config-ui/config-control-primitives.d.ts +0 -10
  1637. package/components/config-ui/config-control-primitives.d.ts.map +1 -1
  1638. package/components/config-ui/config-control-primitives.helpers.d.ts +11 -0
  1639. package/components/config-ui/config-control-primitives.helpers.d.ts.map +1 -0
  1640. package/components/config-ui/config-control-primitives.helpers.js +15 -0
  1641. package/components/config-ui/config-control-primitives.js +0 -15
  1642. package/components/config-ui/config-field.d.ts +0 -47
  1643. package/components/config-ui/config-field.d.ts.map +1 -1
  1644. package/components/config-ui/config-field.helpers.d.ts +49 -0
  1645. package/components/config-ui/config-field.helpers.d.ts.map +1 -0
  1646. package/components/config-ui/config-field.helpers.js +857 -0
  1647. package/components/config-ui/config-field.js +2 -847
  1648. package/components/config-ui/config-renderer.d.ts +1 -131
  1649. package/components/config-ui/config-renderer.d.ts.map +1 -1
  1650. package/components/config-ui/config-renderer.helpers.d.ts +25 -0
  1651. package/components/config-ui/config-renderer.helpers.d.ts.map +1 -0
  1652. package/components/config-ui/config-renderer.helpers.js +30 -0
  1653. package/components/config-ui/config-renderer.js +3 -35
  1654. package/components/config-ui/index.d.ts +4 -1
  1655. package/components/config-ui/index.d.ts.map +1 -1
  1656. package/components/config-ui/index.js +4 -1
  1657. package/components/config-ui/ui-renderer.d.ts +1 -6
  1658. package/components/config-ui/ui-renderer.d.ts.map +1 -1
  1659. package/components/config-ui/ui-renderer.helpers.d.ts +9 -0
  1660. package/components/config-ui/ui-renderer.helpers.d.ts.map +1 -0
  1661. package/components/config-ui/ui-renderer.helpers.js +175 -0
  1662. package/components/config-ui/ui-renderer.js +15 -129
  1663. package/components/connectors/BlueBubblesStatusPanel.d.ts.map +1 -1
  1664. package/components/connectors/BlueBubblesStatusPanel.js +4 -3
  1665. package/components/connectors/ConnectorAccountAuditList.d.ts.map +1 -1
  1666. package/components/connectors/ConnectorAccountAuditList.js +27 -7
  1667. package/components/connectors/ConnectorAccountCard.d.ts.map +1 -1
  1668. package/components/connectors/ConnectorAccountCard.js +100 -32
  1669. package/components/connectors/ConnectorAccountList.d.ts +23 -2
  1670. package/components/connectors/ConnectorAccountList.d.ts.map +1 -1
  1671. package/components/connectors/ConnectorAccountList.js +38 -8
  1672. package/components/connectors/ConnectorAccountPrivacySelector.d.ts.map +1 -1
  1673. package/components/connectors/ConnectorAccountPrivacySelector.js +33 -6
  1674. package/components/connectors/ConnectorAccountPurposeSelector.d.ts.map +1 -1
  1675. package/components/connectors/ConnectorAccountPurposeSelector.js +20 -3
  1676. package/components/connectors/ConnectorAccountSetupScope.d.ts.map +1 -1
  1677. package/components/connectors/ConnectorAccountSetupScope.js +18 -5
  1678. package/components/connectors/ConnectorModeSelector.d.ts +1 -30
  1679. package/components/connectors/ConnectorModeSelector.d.ts.map +1 -1
  1680. package/components/connectors/ConnectorModeSelector.helpers.d.ts +21 -0
  1681. package/components/connectors/ConnectorModeSelector.helpers.d.ts.map +1 -0
  1682. package/components/connectors/ConnectorModeSelector.helpers.js +257 -0
  1683. package/components/connectors/ConnectorModeSelector.hooks.d.ts +13 -0
  1684. package/components/connectors/ConnectorModeSelector.hooks.d.ts.map +1 -0
  1685. package/components/connectors/ConnectorModeSelector.hooks.js +22 -0
  1686. package/components/connectors/ConnectorModeSelector.js +7 -246
  1687. package/components/connectors/ConnectorQrPairingOverlay.d.ts +33 -0
  1688. package/components/connectors/ConnectorQrPairingOverlay.d.ts.map +1 -0
  1689. package/components/connectors/ConnectorQrPairingOverlay.js +50 -0
  1690. package/components/connectors/ConnectorSetupPanel.d.ts +0 -8
  1691. package/components/connectors/ConnectorSetupPanel.d.ts.map +1 -1
  1692. package/components/connectors/ConnectorSetupPanel.helpers.d.ts +11 -0
  1693. package/components/connectors/ConnectorSetupPanel.helpers.d.ts.map +1 -0
  1694. package/components/connectors/ConnectorSetupPanel.helpers.js +52 -0
  1695. package/components/connectors/ConnectorSetupPanel.js +1 -50
  1696. package/components/connectors/DiscordLocalConnectorPanel.d.ts.map +1 -1
  1697. package/components/connectors/DiscordLocalConnectorPanel.js +11 -10
  1698. package/components/connectors/IMessageStatusPanel.d.ts.map +1 -1
  1699. package/components/connectors/IMessageStatusPanel.js +4 -3
  1700. package/components/connectors/OwnerAgentConnectorSetupPanel.d.ts +34 -0
  1701. package/components/connectors/OwnerAgentConnectorSetupPanel.d.ts.map +1 -0
  1702. package/components/connectors/OwnerAgentConnectorSetupPanel.js +32 -0
  1703. package/components/connectors/SignalQrOverlay.d.ts.map +1 -1
  1704. package/components/connectors/SignalQrOverlay.js +35 -58
  1705. package/components/connectors/TelegramAccountConnectorPanel.d.ts.map +1 -1
  1706. package/components/connectors/TelegramAccountConnectorPanel.js +23 -21
  1707. package/components/connectors/TelegramBotSetupPanel.d.ts.map +1 -1
  1708. package/components/connectors/TelegramBotSetupPanel.js +15 -9
  1709. package/components/connectors/WhatsAppQrOverlay.d.ts.map +1 -1
  1710. package/components/connectors/WhatsAppQrOverlay.js +24 -48
  1711. package/components/connectors/XRPairingPanel.d.ts +2 -0
  1712. package/components/connectors/XRPairingPanel.d.ts.map +1 -0
  1713. package/components/connectors/XRPairingPanel.js +54 -0
  1714. package/components/conversations/ConversationRenameDialog.js +1 -1
  1715. package/components/conversations/ConversationsSidebar.d.ts.map +1 -1
  1716. package/components/conversations/ConversationsSidebar.js +19 -77
  1717. package/components/conversations/conversation-sidebar-model.d.ts.map +1 -1
  1718. package/components/conversations/conversation-sidebar-model.js +1 -1
  1719. package/components/conversations/conversation-utils.d.ts +2 -2
  1720. package/components/conversations/conversation-utils.d.ts.map +1 -1
  1721. package/components/conversations/conversation-utils.js +2 -58
  1722. package/components/custom-actions/CustomActionEditor.d.ts.map +1 -1
  1723. package/components/custom-actions/CustomActionEditor.js +8 -2
  1724. package/components/custom-actions/CustomActionsPanel.d.ts.map +1 -1
  1725. package/components/custom-actions/CustomActionsPanel.js +9 -10
  1726. package/components/custom-actions/CustomActionsView.d.ts.map +1 -1
  1727. package/components/custom-actions/CustomActionsView.js +18 -17
  1728. package/components/custom-actions/custom-action-form.d.ts +5 -5
  1729. package/components/custom-actions/custom-action-form.d.ts.map +1 -1
  1730. package/components/custom-actions/custom-action-form.js +3 -3
  1731. package/components/desktop/DesktopTabBar.d.ts +24 -0
  1732. package/components/desktop/DesktopTabBar.d.ts.map +1 -0
  1733. package/components/desktop/DesktopTabBar.js +34 -0
  1734. package/components/index.d.ts +64 -16
  1735. package/components/index.d.ts.map +1 -1
  1736. package/components/index.js +70 -16
  1737. package/components/local-inference/ActiveModelBar.d.ts.map +1 -1
  1738. package/components/local-inference/ActiveModelBar.js +15 -6
  1739. package/components/local-inference/CustomModelSearch.d.ts +19 -0
  1740. package/components/local-inference/CustomModelSearch.d.ts.map +1 -0
  1741. package/components/local-inference/CustomModelSearch.js +128 -0
  1742. package/components/local-inference/DeviceBridgeStatus.d.ts +4 -1
  1743. package/components/local-inference/DeviceBridgeStatus.d.ts.map +1 -1
  1744. package/components/local-inference/DeviceBridgeStatus.js +18 -28
  1745. package/components/local-inference/DevicesPanel.d.ts +4 -1
  1746. package/components/local-inference/DevicesPanel.d.ts.map +1 -1
  1747. package/components/local-inference/DevicesPanel.js +21 -29
  1748. package/components/local-inference/DownloadProgress.d.ts.map +1 -1
  1749. package/components/local-inference/DownloadProgress.js +16 -2
  1750. package/components/local-inference/DownloadQueue.d.ts.map +1 -1
  1751. package/components/local-inference/DownloadQueue.js +16 -5
  1752. package/components/local-inference/FirstRunOffer.d.ts +3 -2
  1753. package/components/local-inference/FirstRunOffer.d.ts.map +1 -1
  1754. package/components/local-inference/FirstRunOffer.js +43 -23
  1755. package/components/local-inference/HardwareBadge.d.ts.map +1 -1
  1756. package/components/local-inference/HardwareBadge.js +12 -2
  1757. package/components/local-inference/LocalInferencePanel.d.ts.map +1 -1
  1758. package/components/local-inference/LocalInferencePanel.js +228 -38
  1759. package/components/local-inference/ModelCard.d.ts +2 -1
  1760. package/components/local-inference/ModelCard.d.ts.map +1 -1
  1761. package/components/local-inference/ModelCard.js +25 -5
  1762. package/components/local-inference/ModelHubView.d.ts.map +1 -1
  1763. package/components/local-inference/ModelHubView.js +29 -6
  1764. package/components/local-inference/ModelUpdatesPanel.d.ts +52 -0
  1765. package/components/local-inference/ModelUpdatesPanel.d.ts.map +1 -0
  1766. package/components/local-inference/ModelUpdatesPanel.js +113 -0
  1767. package/components/local-inference/ProvidersList.d.ts.map +1 -1
  1768. package/components/local-inference/ProvidersList.js +51 -17
  1769. package/components/local-inference/RoutingMatrix.d.ts.map +1 -1
  1770. package/components/local-inference/RoutingMatrix.js +126 -44
  1771. package/components/local-inference/SlotAssignments.d.ts.map +1 -1
  1772. package/components/local-inference/SlotAssignments.js +46 -27
  1773. package/components/local-inference/hub-utils.d.ts +4 -1
  1774. package/components/local-inference/hub-utils.d.ts.map +1 -1
  1775. package/components/local-inference/hub-utils.js +14 -8
  1776. package/components/local-inference/slot-metadata.d.ts +9 -0
  1777. package/components/local-inference/slot-metadata.d.ts.map +1 -0
  1778. package/components/local-inference/slot-metadata.js +32 -0
  1779. package/components/local-inference/useDeviceBridgeStatus.d.ts +4 -0
  1780. package/components/local-inference/useDeviceBridgeStatus.d.ts.map +1 -0
  1781. package/components/local-inference/useDeviceBridgeStatus.js +30 -0
  1782. package/components/local-inference/useHomeModelStatus.d.ts +9 -0
  1783. package/components/local-inference/useHomeModelStatus.d.ts.map +1 -0
  1784. package/components/local-inference/useHomeModelStatus.js +60 -0
  1785. package/components/pages/AppDetailsView.d.ts +1 -12
  1786. package/components/pages/AppDetailsView.d.ts.map +1 -1
  1787. package/components/pages/AppDetailsView.helpers.d.ts +11 -0
  1788. package/components/pages/AppDetailsView.helpers.d.ts.map +1 -0
  1789. package/components/pages/AppDetailsView.helpers.js +35 -0
  1790. package/components/pages/AppDetailsView.js +201 -61
  1791. package/components/pages/AppsPageView.d.ts.map +1 -1
  1792. package/components/pages/AppsPageView.js +12 -11
  1793. package/components/pages/AppsView.d.ts +0 -1
  1794. package/components/pages/AppsView.d.ts.map +1 -1
  1795. package/components/pages/AppsView.js +68 -57
  1796. package/components/pages/AutomationsFeed.d.ts +7 -18
  1797. package/components/pages/AutomationsFeed.d.ts.map +1 -1
  1798. package/components/pages/AutomationsFeed.js +279 -121
  1799. package/components/pages/BrowserWorkspaceView.d.ts +65 -11
  1800. package/components/pages/BrowserWorkspaceView.d.ts.map +1 -1
  1801. package/components/pages/BrowserWorkspaceView.js +255 -126
  1802. package/components/pages/CameraPageView.d.ts +2 -0
  1803. package/components/pages/CameraPageView.d.ts.map +1 -0
  1804. package/components/pages/CameraPageView.js +149 -0
  1805. package/components/pages/ChatView.d.ts +8 -2
  1806. package/components/pages/ChatView.d.ts.map +1 -1
  1807. package/components/pages/ChatView.js +128 -80
  1808. package/components/pages/ConfigPageView.d.ts.map +1 -1
  1809. package/components/pages/ConfigPageView.js +129 -75
  1810. package/components/pages/DatabasePageView.d.ts.map +1 -1
  1811. package/components/pages/DatabasePageView.js +32 -7
  1812. package/components/pages/DatabaseView.d.ts.map +1 -1
  1813. package/components/pages/DatabaseView.js +140 -67
  1814. package/components/pages/DocumentsView.d.ts +1 -1
  1815. package/components/pages/DocumentsView.d.ts.map +1 -1
  1816. package/components/pages/DocumentsView.js +141 -64
  1817. package/components/pages/ElizaCloudDashboard.d.ts.map +1 -1
  1818. package/components/pages/ElizaCloudDashboard.js +27 -20
  1819. package/components/pages/ElizaOsAppsView.d.ts.map +1 -1
  1820. package/components/pages/ElizaOsAppsView.js +407 -44
  1821. package/components/pages/GeneratedViewHero.d.ts +31 -0
  1822. package/components/pages/GeneratedViewHero.d.ts.map +1 -0
  1823. package/components/pages/GeneratedViewHero.js +118 -0
  1824. package/components/pages/HeartbeatForm.d.ts.map +1 -1
  1825. package/components/pages/HeartbeatForm.js +322 -28
  1826. package/components/pages/HeartbeatsView.d.ts.map +1 -1
  1827. package/components/pages/HeartbeatsView.js +162 -45
  1828. package/components/pages/LogsView.d.ts.map +1 -1
  1829. package/components/pages/LogsView.js +104 -40
  1830. package/components/pages/MediaGalleryView.d.ts.map +1 -1
  1831. package/components/pages/MediaGalleryView.js +65 -27
  1832. package/components/pages/MemoryDetailPanel.d.ts.map +1 -1
  1833. package/components/pages/MemoryDetailPanel.js +4 -3
  1834. package/components/pages/MemoryViewerView.d.ts.map +1 -1
  1835. package/components/pages/MemoryViewerView.js +250 -82
  1836. package/components/pages/PluginCard.d.ts +1 -1
  1837. package/components/pages/PluginCard.d.ts.map +1 -1
  1838. package/components/pages/PluginCard.js +64 -101
  1839. package/components/pages/PluginConfigForm.d.ts +0 -11
  1840. package/components/pages/PluginConfigForm.d.ts.map +1 -1
  1841. package/components/pages/PluginConfigForm.js +5 -4
  1842. package/components/pages/PluginVisual.d.ts +12 -0
  1843. package/components/pages/PluginVisual.d.ts.map +1 -0
  1844. package/components/pages/PluginVisual.js +66 -0
  1845. package/components/pages/PluginsPageView.d.ts.map +1 -1
  1846. package/components/pages/PluginsPageView.js +2 -1
  1847. package/components/pages/PluginsView.d.ts +0 -1
  1848. package/components/pages/PluginsView.d.ts.map +1 -1
  1849. package/components/pages/PluginsView.js +142 -71
  1850. package/components/pages/RelationshipsGraphPanel.d.ts.map +1 -1
  1851. package/components/pages/RelationshipsGraphPanel.js +58 -15
  1852. package/components/pages/RelationshipsIdentityCluster.js +1 -1
  1853. package/components/pages/RelationshipsView.d.ts.map +1 -1
  1854. package/components/pages/RelationshipsView.js +2 -1
  1855. package/components/pages/ReleaseCenterView.d.ts.map +1 -1
  1856. package/components/pages/ReleaseCenterView.js +192 -47
  1857. package/components/pages/RuntimeView.d.ts.map +1 -1
  1858. package/components/pages/RuntimeView.js +121 -60
  1859. package/components/pages/SecretsView.d.ts.map +1 -1
  1860. package/components/pages/SecretsView.js +47 -35
  1861. package/components/pages/SettingsView.d.ts +1 -1
  1862. package/components/pages/SettingsView.d.ts.map +1 -1
  1863. package/components/pages/SettingsView.js +133 -491
  1864. package/components/pages/SkillsView.d.ts.map +1 -1
  1865. package/components/pages/SkillsView.js +188 -82
  1866. package/components/pages/SqlEditorPanel.d.ts.map +1 -1
  1867. package/components/pages/SqlEditorPanel.js +7 -5
  1868. package/components/pages/StreamView.d.ts.map +1 -1
  1869. package/components/pages/StreamView.js +67 -62
  1870. package/components/pages/TaskEditor.d.ts +0 -1
  1871. package/components/pages/TaskEditor.d.ts.map +1 -1
  1872. package/components/pages/TaskEditor.js +107 -11
  1873. package/components/pages/TasksPageView.d.ts +4 -0
  1874. package/components/pages/TasksPageView.d.ts.map +1 -1
  1875. package/components/pages/TasksPageView.js +7 -7
  1876. package/components/pages/TrajectoriesView.d.ts.map +1 -1
  1877. package/components/pages/TrajectoriesView.js +67 -38
  1878. package/components/pages/TrajectoryDetailView.d.ts.map +1 -1
  1879. package/components/pages/TrajectoryDetailView.js +24 -33
  1880. package/components/pages/ViewCatalog.d.ts +10 -0
  1881. package/components/pages/ViewCatalog.d.ts.map +1 -0
  1882. package/components/pages/ViewCatalog.js +600 -0
  1883. package/components/pages/WorkflowEditor.d.ts +4 -4
  1884. package/components/pages/WorkflowEditor.d.ts.map +1 -1
  1885. package/components/pages/WorkflowEditor.js +402 -54
  1886. package/components/pages/WorkflowGraphViewer.d.ts.map +1 -1
  1887. package/components/pages/WorkflowGraphViewer.js +81 -65
  1888. package/components/pages/browser-workspace-wallet.d.ts +8 -1
  1889. package/components/pages/browser-workspace-wallet.d.ts.map +1 -1
  1890. package/components/pages/browser-workspace-wallet.js +54 -5
  1891. package/components/pages/chat-view-hooks.d.ts +17 -7
  1892. package/components/pages/chat-view-hooks.d.ts.map +1 -1
  1893. package/components/pages/chat-view-hooks.js +189 -86
  1894. package/components/pages/config-page-sections.d.ts +1 -45
  1895. package/components/pages/config-page-sections.d.ts.map +1 -1
  1896. package/components/pages/config-page-sections.helpers.d.ts +37 -0
  1897. package/components/pages/config-page-sections.helpers.d.ts.map +1 -0
  1898. package/components/pages/config-page-sections.helpers.js +4 -0
  1899. package/components/pages/config-page-sections.js +24 -17
  1900. package/components/pages/database-utils.d.ts +0 -6
  1901. package/components/pages/database-utils.d.ts.map +1 -1
  1902. package/components/pages/database-utils.js +14 -18
  1903. package/components/pages/documents-detail.d.ts +0 -4
  1904. package/components/pages/documents-detail.d.ts.map +1 -1
  1905. package/components/pages/documents-detail.helpers.d.ts +5 -0
  1906. package/components/pages/documents-detail.helpers.d.ts.map +1 -0
  1907. package/components/pages/documents-detail.helpers.js +24 -0
  1908. package/components/pages/documents-detail.js +8 -28
  1909. package/components/pages/documents-upload.d.ts +1 -18
  1910. package/components/pages/documents-upload.d.ts.map +1 -1
  1911. package/components/pages/documents-upload.helpers.d.ts +19 -0
  1912. package/components/pages/documents-upload.helpers.d.ts.map +1 -0
  1913. package/components/pages/documents-upload.helpers.js +46 -0
  1914. package/components/pages/documents-upload.js +115 -60
  1915. package/components/pages/heartbeat-utils.d.ts +3 -5
  1916. package/components/pages/heartbeat-utils.d.ts.map +1 -1
  1917. package/components/pages/heartbeat-utils.js +11 -26
  1918. package/components/pages/help/HelpView.d.ts +3 -0
  1919. package/components/pages/help/HelpView.d.ts.map +1 -0
  1920. package/components/pages/help/HelpView.js +80 -0
  1921. package/components/pages/help/help-content.d.ts +28 -0
  1922. package/components/pages/help/help-content.d.ts.map +1 -0
  1923. package/components/pages/help/help-content.js +479 -0
  1924. package/components/pages/page-scoped-conversations.js +1 -1
  1925. package/components/pages/plugin-list-utils.d.ts +10 -1
  1926. package/components/pages/plugin-list-utils.d.ts.map +1 -1
  1927. package/components/pages/plugin-list-utils.js +45 -4
  1928. package/components/pages/plugin-view-connectors.d.ts.map +1 -1
  1929. package/components/pages/plugin-view-connectors.js +220 -51
  1930. package/components/pages/plugin-view-dialogs.d.ts.map +1 -1
  1931. package/components/pages/plugin-view-dialogs.js +59 -13
  1932. package/components/pages/plugin-view-modal.d.ts.map +1 -1
  1933. package/components/pages/plugin-view-modal.js +91 -10
  1934. package/components/pages/plugin-view-sidebar.d.ts +1 -3
  1935. package/components/pages/plugin-view-sidebar.d.ts.map +1 -1
  1936. package/components/pages/plugin-view-sidebar.js +87 -21
  1937. package/components/pages/relationships/RelationshipsActivityFeed.d.ts.map +1 -1
  1938. package/components/pages/relationships/RelationshipsActivityFeed.js +17 -7
  1939. package/components/pages/relationships/RelationshipsCandidateMergesPanel.d.ts.map +1 -1
  1940. package/components/pages/relationships/RelationshipsCandidateMergesPanel.js +34 -6
  1941. package/components/pages/relationships/RelationshipsPersonPanels.d.ts.map +1 -1
  1942. package/components/pages/relationships/RelationshipsPersonPanels.js +171 -50
  1943. package/components/pages/relationships/RelationshipsSidebar.d.ts +1 -4
  1944. package/components/pages/relationships/RelationshipsSidebar.d.ts.map +1 -1
  1945. package/components/pages/relationships/RelationshipsSidebar.js +8 -12
  1946. package/components/pages/relationships/RelationshipsWorkspaceView.d.ts.map +1 -1
  1947. package/components/pages/relationships/RelationshipsWorkspaceView.js +77 -17
  1948. package/components/pages/skill-detail-panel.d.ts.map +1 -1
  1949. package/components/pages/skill-detail-panel.js +52 -12
  1950. package/components/pages/skill-marketplace.d.ts.map +1 -1
  1951. package/components/pages/skill-marketplace.js +82 -21
  1952. package/components/pages/tutorial/TutorialNarrator.d.ts +13 -0
  1953. package/components/pages/tutorial/TutorialNarrator.d.ts.map +1 -0
  1954. package/components/pages/tutorial/TutorialNarrator.js +42 -0
  1955. package/components/pages/tutorial/TutorialOverlay.d.ts +3 -0
  1956. package/components/pages/tutorial/TutorialOverlay.d.ts.map +1 -0
  1957. package/components/pages/tutorial/TutorialOverlay.js +181 -0
  1958. package/components/pages/tutorial/TutorialSpotlight.d.ts +25 -0
  1959. package/components/pages/tutorial/TutorialSpotlight.d.ts.map +1 -0
  1960. package/components/pages/tutorial/TutorialSpotlight.js +139 -0
  1961. package/components/pages/tutorial/TutorialView.d.ts +9 -0
  1962. package/components/pages/tutorial/TutorialView.d.ts.map +1 -0
  1963. package/components/pages/tutorial/TutorialView.js +30 -0
  1964. package/components/pages/tutorial/tutorial-controller.d.ts +10 -0
  1965. package/components/pages/tutorial/tutorial-controller.d.ts.map +1 -0
  1966. package/components/pages/tutorial/tutorial-controller.js +54 -0
  1967. package/components/pages/tutorial/tutorial-steps.d.ts +83 -0
  1968. package/components/pages/tutorial/tutorial-steps.d.ts.map +1 -0
  1969. package/components/pages/tutorial/tutorial-steps.js +95 -0
  1970. package/components/pages/useBrowserWorkspaceWalletBridge.d.ts +21 -2
  1971. package/components/pages/useBrowserWorkspaceWalletBridge.d.ts.map +1 -1
  1972. package/components/pages/useBrowserWorkspaceWalletBridge.js +58 -182
  1973. package/components/pages/workflow-action-handoff.d.ts +4 -0
  1974. package/components/pages/workflow-action-handoff.d.ts.map +1 -0
  1975. package/components/pages/workflow-action-handoff.js +24 -0
  1976. package/components/permissions/PermissionRecoveryCallout.d.ts +13 -0
  1977. package/components/permissions/PermissionRecoveryCallout.d.ts.map +1 -0
  1978. package/components/permissions/PermissionRecoveryCallout.js +46 -0
  1979. package/components/permissions/StreamingPermissions.d.ts +0 -1
  1980. package/components/permissions/StreamingPermissions.d.ts.map +1 -1
  1981. package/components/permissions/StreamingPermissions.js +6 -7
  1982. package/components/plugins/showcase-data.d.ts.map +1 -1
  1983. package/components/plugins/showcase-data.js +3 -3
  1984. package/components/policy-controls/ApprovedAddressesSection.d.ts +0 -1
  1985. package/components/policy-controls/ApprovedAddressesSection.d.ts.map +1 -1
  1986. package/components/policy-controls/ApprovedAddressesSection.helpers.d.ts +3 -0
  1987. package/components/policy-controls/ApprovedAddressesSection.helpers.d.ts.map +1 -0
  1988. package/components/policy-controls/ApprovedAddressesSection.helpers.js +5 -0
  1989. package/components/policy-controls/ApprovedAddressesSection.js +36 -15
  1990. package/components/policy-controls/AutoApproveSection.d.ts +0 -1
  1991. package/components/policy-controls/AutoApproveSection.d.ts.map +1 -1
  1992. package/components/policy-controls/AutoApproveSection.helpers.d.ts +3 -0
  1993. package/components/policy-controls/AutoApproveSection.helpers.d.ts.map +1 -0
  1994. package/components/policy-controls/AutoApproveSection.helpers.js +3 -0
  1995. package/components/policy-controls/AutoApproveSection.js +10 -6
  1996. package/components/policy-controls/PolicyToggle.d.ts.map +1 -1
  1997. package/components/policy-controls/PolicyToggle.js +5 -3
  1998. package/components/policy-controls/RateLimitSection.d.ts +0 -1
  1999. package/components/policy-controls/RateLimitSection.d.ts.map +1 -1
  2000. package/components/policy-controls/RateLimitSection.helpers.d.ts +3 -0
  2001. package/components/policy-controls/RateLimitSection.helpers.d.ts.map +1 -0
  2002. package/components/policy-controls/RateLimitSection.helpers.js +3 -0
  2003. package/components/policy-controls/RateLimitSection.js +5 -5
  2004. package/components/policy-controls/SpendingLimitSection.d.ts +0 -1
  2005. package/components/policy-controls/SpendingLimitSection.d.ts.map +1 -1
  2006. package/components/policy-controls/SpendingLimitSection.helpers.d.ts +3 -0
  2007. package/components/policy-controls/SpendingLimitSection.helpers.d.ts.map +1 -0
  2008. package/components/policy-controls/SpendingLimitSection.helpers.js +3 -0
  2009. package/components/policy-controls/SpendingLimitSection.js +7 -5
  2010. package/components/policy-controls/TimeWindowSection.d.ts +0 -1
  2011. package/components/policy-controls/TimeWindowSection.d.ts.map +1 -1
  2012. package/components/policy-controls/TimeWindowSection.helpers.d.ts +3 -0
  2013. package/components/policy-controls/TimeWindowSection.helpers.d.ts.map +1 -0
  2014. package/components/policy-controls/TimeWindowSection.helpers.js +10 -0
  2015. package/components/policy-controls/TimeWindowSection.js +8 -14
  2016. package/components/policy-controls/index.d.ts +10 -5
  2017. package/components/policy-controls/index.d.ts.map +1 -1
  2018. package/components/policy-controls/index.js +10 -5
  2019. package/components/policy-controls/types.js +1 -1
  2020. package/components/primitives/index.d.ts +5 -1
  2021. package/components/primitives/index.d.ts.map +1 -1
  2022. package/components/primitives/index.js +5 -1
  2023. package/components/release-center/sections.d.ts.map +1 -1
  2024. package/components/release-center/sections.js +16 -14
  2025. package/components/release-center/shared.d.ts +0 -3
  2026. package/components/release-center/shared.d.ts.map +1 -1
  2027. package/components/release-center/shared.helpers.d.ts +4 -0
  2028. package/components/release-center/shared.helpers.d.ts.map +1 -0
  2029. package/components/release-center/shared.helpers.js +21 -0
  2030. package/components/release-center/shared.js +1 -22
  2031. package/components/settings/AdvancedSection.d.ts +2 -0
  2032. package/components/settings/AdvancedSection.d.ts.map +1 -0
  2033. package/components/settings/AdvancedSection.js +143 -0
  2034. package/components/settings/AdvancedToggle.d.ts +15 -0
  2035. package/components/settings/AdvancedToggle.d.ts.map +1 -0
  2036. package/components/settings/AdvancedToggle.hooks.d.ts +22 -0
  2037. package/components/settings/AdvancedToggle.hooks.d.ts.map +1 -0
  2038. package/components/settings/AdvancedToggle.hooks.js +63 -0
  2039. package/components/settings/AdvancedToggle.js +39 -0
  2040. package/components/settings/ApiKeyConfig.d.ts +1 -7
  2041. package/components/settings/ApiKeyConfig.d.ts.map +1 -1
  2042. package/components/settings/ApiKeyConfig.js +127 -83
  2043. package/components/settings/AppPermissionsSection.d.ts +10 -0
  2044. package/components/settings/AppPermissionsSection.d.ts.map +1 -0
  2045. package/components/settings/AppPermissionsSection.js +157 -0
  2046. package/components/settings/AppearanceSettingsSection.d.ts.map +1 -1
  2047. package/components/settings/AppearanceSettingsSection.js +22 -250
  2048. package/components/settings/AppsManagementSection.d.ts +1 -7
  2049. package/components/settings/AppsManagementSection.d.ts.map +1 -1
  2050. package/components/settings/AppsManagementSection.js +193 -74
  2051. package/components/settings/CapabilitiesSection.d.ts.map +1 -1
  2052. package/components/settings/CapabilitiesSection.js +268 -28
  2053. package/components/settings/CloudAgentsSection.d.ts +7 -0
  2054. package/components/settings/CloudAgentsSection.d.ts.map +1 -0
  2055. package/components/settings/CloudAgentsSection.js +402 -0
  2056. package/components/settings/ConnectorsSection.d.ts +9 -0
  2057. package/components/settings/ConnectorsSection.d.ts.map +1 -0
  2058. package/components/settings/ConnectorsSection.js +181 -0
  2059. package/components/settings/DesktopWorkspaceDisplay.d.ts +7 -0
  2060. package/components/settings/DesktopWorkspaceDisplay.d.ts.map +1 -0
  2061. package/components/settings/DesktopWorkspaceDisplay.hooks.d.ts +5 -0
  2062. package/components/settings/DesktopWorkspaceDisplay.hooks.d.ts.map +1 -0
  2063. package/components/settings/DesktopWorkspaceDisplay.hooks.js +27 -0
  2064. package/components/settings/DesktopWorkspaceDisplay.js +5 -0
  2065. package/components/settings/DesktopWorkspaceSection.d.ts +0 -2
  2066. package/components/settings/DesktopWorkspaceSection.d.ts.map +1 -1
  2067. package/components/settings/DesktopWorkspaceSection.js +194 -321
  2068. package/components/settings/IdentitySettingsSection.d.ts.map +1 -1
  2069. package/components/settings/IdentitySettingsSection.js +58 -58
  2070. package/components/settings/LoadContentPackForm.d.ts +2 -0
  2071. package/components/settings/LoadContentPackForm.d.ts.map +1 -0
  2072. package/components/settings/LoadContentPackForm.js +78 -0
  2073. package/components/settings/LoadedPacksList.d.ts +9 -0
  2074. package/components/settings/LoadedPacksList.d.ts.map +1 -0
  2075. package/components/settings/LoadedPacksList.js +30 -0
  2076. package/components/settings/PermissionsSection.d.ts.map +1 -1
  2077. package/components/settings/PermissionsSection.js +266 -47
  2078. package/components/settings/PolicyControlsView.d.ts.map +1 -1
  2079. package/components/settings/PolicyControlsView.js +295 -74
  2080. package/components/settings/ProviderCard.d.ts +29 -0
  2081. package/components/settings/ProviderCard.d.ts.map +1 -0
  2082. package/components/settings/ProviderCard.js +32 -0
  2083. package/components/settings/ProviderPanels.d.ts +71 -0
  2084. package/components/settings/ProviderPanels.d.ts.map +1 -0
  2085. package/components/settings/ProviderPanels.js +57 -0
  2086. package/components/settings/ProviderRoutingPanel.d.ts +22 -0
  2087. package/components/settings/ProviderRoutingPanel.d.ts.map +1 -0
  2088. package/components/settings/ProviderRoutingPanel.js +26 -0
  2089. package/components/settings/ProviderSwitcher.d.ts +1 -11
  2090. package/components/settings/ProviderSwitcher.d.ts.map +1 -1
  2091. package/components/settings/ProviderSwitcher.js +58 -600
  2092. package/components/settings/RemotePluginHostSection.d.ts +6 -0
  2093. package/components/settings/RemotePluginHostSection.d.ts.map +1 -0
  2094. package/components/settings/RemotePluginHostSection.js +316 -0
  2095. package/components/settings/RuntimeSettingsSection.d.ts +0 -8
  2096. package/components/settings/RuntimeSettingsSection.d.ts.map +1 -1
  2097. package/components/settings/RuntimeSettingsSection.js +50 -46
  2098. package/components/settings/SecretsManagerSection.d.ts +0 -3
  2099. package/components/settings/SecretsManagerSection.d.ts.map +1 -1
  2100. package/components/settings/SecretsManagerSection.js +18 -36
  2101. package/components/settings/SecuritySettingsSection.d.ts.map +1 -1
  2102. package/components/settings/SecuritySettingsSection.js +298 -74
  2103. package/components/settings/SubscriptionStatus.d.ts +1 -6
  2104. package/components/settings/SubscriptionStatus.d.ts.map +1 -1
  2105. package/components/settings/SubscriptionStatus.js +78 -35
  2106. package/components/settings/VaultInventoryPanel.d.ts.map +1 -1
  2107. package/components/settings/VaultInventoryPanel.js +261 -18
  2108. package/components/settings/VoiceConfigView.d.ts +0 -2
  2109. package/components/settings/VoiceConfigView.d.ts.map +1 -1
  2110. package/components/settings/VoiceConfigView.helpers.d.ts +3 -0
  2111. package/components/settings/VoiceConfigView.helpers.d.ts.map +1 -0
  2112. package/components/settings/VoiceConfigView.helpers.js +34 -0
  2113. package/components/settings/VoiceConfigView.js +354 -166
  2114. package/components/settings/VoiceProfileSection.d.ts +19 -0
  2115. package/components/settings/VoiceProfileSection.d.ts.map +1 -0
  2116. package/components/settings/VoiceProfileSection.js +295 -0
  2117. package/components/settings/VoiceSection.d.ts +57 -0
  2118. package/components/settings/VoiceSection.d.ts.map +1 -0
  2119. package/components/settings/VoiceSection.helpers.d.ts +4 -0
  2120. package/components/settings/VoiceSection.helpers.d.ts.map +1 -0
  2121. package/components/settings/VoiceSection.helpers.js +13 -0
  2122. package/components/settings/VoiceSection.js +158 -0
  2123. package/components/settings/VoiceSectionMount.d.ts +17 -0
  2124. package/components/settings/VoiceSectionMount.d.ts.map +1 -0
  2125. package/components/settings/VoiceSectionMount.js +103 -0
  2126. package/components/settings/VoiceTierBanner.d.ts +19 -0
  2127. package/components/settings/VoiceTierBanner.d.ts.map +1 -0
  2128. package/components/settings/VoiceTierBanner.helpers.d.ts +4 -0
  2129. package/components/settings/VoiceTierBanner.helpers.d.ts.map +1 -0
  2130. package/components/settings/VoiceTierBanner.helpers.js +7 -0
  2131. package/components/settings/VoiceTierBanner.js +52 -0
  2132. package/components/settings/WalletKeysSection.d.ts +3 -13
  2133. package/components/settings/WalletKeysSection.d.ts.map +1 -1
  2134. package/components/settings/WalletKeysSection.js +119 -26
  2135. package/components/settings/WalletRpcSection.d.ts +2 -0
  2136. package/components/settings/WalletRpcSection.d.ts.map +1 -0
  2137. package/components/settings/WalletRpcSection.js +7 -0
  2138. package/components/settings/XRSettingsSection.d.ts +2 -0
  2139. package/components/settings/XRSettingsSection.d.ts.map +1 -0
  2140. package/components/settings/XRSettingsSection.js +114 -0
  2141. package/components/settings/appearance-primitives.helpers.d.ts +2 -0
  2142. package/components/settings/appearance-primitives.helpers.d.ts.map +1 -0
  2143. package/components/settings/appearance-primitives.helpers.js +5 -0
  2144. package/components/settings/cloud-model-schema.d.ts +2 -2
  2145. package/components/settings/cloud-model-schema.d.ts.map +1 -1
  2146. package/components/settings/cloud-model-schema.js +1 -8
  2147. package/components/settings/desktop-workspace-audit-config.d.ts +3 -0
  2148. package/components/settings/desktop-workspace-audit-config.d.ts.map +1 -0
  2149. package/components/settings/desktop-workspace-audit-config.js +171 -0
  2150. package/components/settings/permission-controls.d.ts +1 -17
  2151. package/components/settings/permission-controls.d.ts.map +1 -1
  2152. package/components/settings/permission-controls.hooks.d.ts +18 -0
  2153. package/components/settings/permission-controls.hooks.d.ts.map +1 -0
  2154. package/components/settings/permission-controls.hooks.js +434 -0
  2155. package/components/settings/permission-controls.js +83 -460
  2156. package/components/settings/permission-types.d.ts +1 -1
  2157. package/components/settings/permission-types.d.ts.map +1 -1
  2158. package/components/settings/permission-types.js +144 -16
  2159. package/components/settings/settings-agent-rows.d.ts +96 -0
  2160. package/components/settings/settings-agent-rows.d.ts.map +1 -0
  2161. package/components/settings/settings-agent-rows.js +110 -0
  2162. package/components/settings/settings-control-primitives.d.ts +4 -5
  2163. package/components/settings/settings-control-primitives.d.ts.map +1 -1
  2164. package/components/settings/settings-control-primitives.hooks.d.ts +14 -0
  2165. package/components/settings/settings-control-primitives.hooks.d.ts.map +1 -0
  2166. package/components/settings/settings-control-primitives.hooks.js +43 -0
  2167. package/components/settings/settings-control-primitives.js +10 -12
  2168. package/components/settings/settings-layout.d.ts +78 -0
  2169. package/components/settings/settings-layout.d.ts.map +1 -0
  2170. package/components/settings/settings-layout.js +36 -0
  2171. package/components/settings/settings-section-meta.d.ts +26 -0
  2172. package/components/settings/settings-section-meta.d.ts.map +1 -0
  2173. package/components/settings/settings-section-meta.js +42 -0
  2174. package/components/settings/settings-section-registry.d.ts +55 -0
  2175. package/components/settings/settings-section-registry.d.ts.map +1 -0
  2176. package/components/settings/settings-section-registry.js +33 -0
  2177. package/components/settings/settings-section-tokens.d.ts +18 -0
  2178. package/components/settings/settings-section-tokens.d.ts.map +1 -0
  2179. package/components/settings/settings-section-tokens.js +66 -0
  2180. package/components/settings/settings-sections.d.ts +21 -0
  2181. package/components/settings/settings-sections.d.ts.map +1 -0
  2182. package/components/settings/settings-sections.js +227 -0
  2183. package/components/settings/useCloudModelConfig.d.ts +28 -0
  2184. package/components/settings/useCloudModelConfig.d.ts.map +1 -0
  2185. package/components/settings/useCloudModelConfig.js +198 -0
  2186. package/components/settings/useDesktopWindowControls.d.ts +13 -0
  2187. package/components/settings/useDesktopWindowControls.d.ts.map +1 -0
  2188. package/components/settings/useDesktopWindowControls.js +59 -0
  2189. package/components/settings/useProviderBootstrap.d.ts +15 -0
  2190. package/components/settings/useProviderBootstrap.d.ts.map +1 -0
  2191. package/components/settings/useProviderBootstrap.js +74 -0
  2192. package/components/settings/useProviderEntries.d.ts +51 -0
  2193. package/components/settings/useProviderEntries.d.ts.map +1 -0
  2194. package/components/settings/useProviderEntries.js +180 -0
  2195. package/components/settings/useProviderSelection.d.ts +31 -0
  2196. package/components/settings/useProviderSelection.d.ts.map +1 -0
  2197. package/components/settings/useProviderSelection.js +231 -0
  2198. package/components/settings/vault-tabs/LoginsTab.d.ts +0 -2
  2199. package/components/settings/vault-tabs/LoginsTab.d.ts.map +1 -1
  2200. package/components/settings/vault-tabs/LoginsTab.js +144 -28
  2201. package/components/settings/vault-tabs/OverviewTab.d.ts +3 -5
  2202. package/components/settings/vault-tabs/OverviewTab.d.ts.map +1 -1
  2203. package/components/settings/vault-tabs/OverviewTab.js +240 -19
  2204. package/components/settings/vault-tabs/RoutingTab.d.ts +2 -5
  2205. package/components/settings/vault-tabs/RoutingTab.d.ts.map +1 -1
  2206. package/components/settings/vault-tabs/RoutingTab.js +155 -17
  2207. package/components/settings/vault-tabs/types.d.ts +7 -1
  2208. package/components/settings/vault-tabs/types.d.ts.map +1 -1
  2209. package/components/settings/vault-tabs/types.js +30 -1
  2210. package/components/setup/BootstrapStep.d.ts +35 -0
  2211. package/components/setup/BootstrapStep.d.ts.map +1 -0
  2212. package/components/setup/BootstrapStep.js +181 -0
  2213. package/components/setup/setup-classes.d.ts +28 -0
  2214. package/components/setup/setup-classes.d.ts.map +1 -0
  2215. package/components/setup/setup-classes.js +32 -0
  2216. package/components/setup/setup-form-primitives.d.ts +20 -0
  2217. package/components/setup/setup-form-primitives.d.ts.map +1 -0
  2218. package/components/setup/setup-form-primitives.js +11 -0
  2219. package/components/setup/setup-step-chrome.d.ts +2 -0
  2220. package/components/setup/setup-step-chrome.d.ts.map +1 -0
  2221. package/components/setup/setup-step-chrome.js +4 -0
  2222. package/components/shared/AppPageSidebar.d.ts +1 -1
  2223. package/components/shared/AppPageSidebar.d.ts.map +1 -1
  2224. package/components/shared/AppPageSidebar.js +2 -2
  2225. package/components/shared/CollapsibleSidebarSection.js +1 -1
  2226. package/components/shared/LanguageDropdown.d.ts +0 -7
  2227. package/components/shared/LanguageDropdown.d.ts.map +1 -1
  2228. package/components/shared/LanguageDropdown.helpers.d.ts +9 -0
  2229. package/components/shared/LanguageDropdown.helpers.d.ts.map +1 -0
  2230. package/components/shared/LanguageDropdown.helpers.js +12 -0
  2231. package/components/shared/LanguageDropdown.js +9 -18
  2232. package/components/shared/ThemeToggle.d.ts.map +1 -1
  2233. package/components/shared/ThemeToggle.js +7 -3
  2234. package/components/shared/confirm-delete-control.d.ts.map +1 -1
  2235. package/components/shared/confirm-delete-control.js +1 -1
  2236. package/components/shell/ActionBanner.d.ts +10 -0
  2237. package/components/shell/ActionBanner.d.ts.map +1 -0
  2238. package/components/shell/ActionBanner.js +27 -0
  2239. package/components/shell/AssistantOverlay.d.ts +25 -0
  2240. package/components/shell/AssistantOverlay.d.ts.map +1 -0
  2241. package/components/shell/AssistantOverlay.js +113 -0
  2242. package/components/shell/BugReportModal.d.ts.map +1 -1
  2243. package/components/shell/BugReportModal.js +19 -19
  2244. package/components/shell/ChatAmbientBackground.d.ts +8 -0
  2245. package/components/shell/ChatAmbientBackground.d.ts.map +1 -0
  2246. package/components/shell/ChatAmbientBackground.js +51 -0
  2247. package/components/shell/ChatSurface.d.ts +12 -0
  2248. package/components/shell/ChatSurface.d.ts.map +1 -0
  2249. package/components/shell/ChatSurface.js +55 -0
  2250. package/components/shell/CloudHandoffBanner.d.ts +15 -0
  2251. package/components/shell/CloudHandoffBanner.d.ts.map +1 -0
  2252. package/components/shell/CloudHandoffBanner.js +45 -0
  2253. package/components/shell/CommandPalette.js +4 -2
  2254. package/components/shell/ComputerUseApprovalOverlay.d.ts.map +1 -1
  2255. package/components/shell/ComputerUseApprovalOverlay.js +76 -13
  2256. package/components/shell/ConnectionFailedBanner.d.ts.map +1 -1
  2257. package/components/shell/ConnectionFailedBanner.js +6 -3
  2258. package/components/shell/ConnectionLostOverlay.d.ts.map +1 -1
  2259. package/components/shell/ConnectionLostOverlay.js +5 -4
  2260. package/components/shell/ContinuousChatOverlay.d.ts +25 -0
  2261. package/components/shell/ContinuousChatOverlay.d.ts.map +1 -0
  2262. package/components/shell/ContinuousChatOverlay.js +1918 -0
  2263. package/components/shell/HomePill.d.ts +15 -0
  2264. package/components/shell/HomePill.d.ts.map +1 -0
  2265. package/components/shell/HomePill.js +27 -0
  2266. package/components/shell/HomeScreen.d.ts +23 -0
  2267. package/components/shell/HomeScreen.d.ts.map +1 -0
  2268. package/components/shell/HomeScreen.js +158 -0
  2269. package/components/shell/KioskViewCanvas.d.ts +23 -0
  2270. package/components/shell/KioskViewCanvas.d.ts.map +1 -0
  2271. package/components/shell/KioskViewCanvas.js +82 -0
  2272. package/components/shell/LoadingScreen.d.ts +1 -2
  2273. package/components/shell/LoadingScreen.d.ts.map +1 -1
  2274. package/components/shell/LoadingScreen.js +2 -12
  2275. package/components/shell/NotificationCenter.d.ts +16 -0
  2276. package/components/shell/NotificationCenter.d.ts.map +1 -0
  2277. package/components/shell/NotificationCenter.js +96 -0
  2278. package/components/shell/PairingCommandHint.d.ts.map +1 -1
  2279. package/components/shell/PairingCommandHint.js +10 -14
  2280. package/components/shell/PairingView.d.ts.map +1 -1
  2281. package/components/shell/PairingView.js +12 -6
  2282. package/components/shell/RestartBanner.d.ts.map +1 -1
  2283. package/components/shell/RestartBanner.js +5 -3
  2284. package/components/shell/ShellControllerContext.d.ts +10 -0
  2285. package/components/shell/ShellControllerContext.d.ts.map +1 -0
  2286. package/components/shell/ShellControllerContext.hooks.d.ts +6 -0
  2287. package/components/shell/ShellControllerContext.hooks.d.ts.map +1 -0
  2288. package/components/shell/ShellControllerContext.hooks.js +6 -0
  2289. package/components/shell/ShellControllerContext.js +12 -0
  2290. package/components/shell/ShellHeaderControls.d.ts +1 -1
  2291. package/components/shell/ShellHeaderControls.d.ts.map +1 -1
  2292. package/components/shell/ShellHeaderControls.js +8 -7
  2293. package/components/shell/ShellOverlays.d.ts.map +1 -1
  2294. package/components/shell/ShellOverlays.js +59 -2
  2295. package/components/shell/ShortcutsOverlay.js +2 -2
  2296. package/components/shell/SlashCommandMenu.d.ts +47 -0
  2297. package/components/shell/SlashCommandMenu.d.ts.map +1 -0
  2298. package/components/shell/SlashCommandMenu.js +150 -0
  2299. package/components/shell/StartupFailureView.d.ts.map +1 -1
  2300. package/components/shell/StartupFailureView.js +9 -91
  2301. package/components/shell/StartupScreen.d.ts +2 -0
  2302. package/components/shell/StartupScreen.d.ts.map +1 -0
  2303. package/components/shell/StartupScreen.js +8 -0
  2304. package/components/shell/StartupShell.d.ts +2 -11
  2305. package/components/shell/StartupShell.d.ts.map +1 -1
  2306. package/components/shell/StartupShell.js +32 -220
  2307. package/components/shell/SystemWarningBanner.d.ts.map +1 -1
  2308. package/components/shell/SystemWarningBanner.js +4 -2
  2309. package/components/shell/__e2e__/chat-ambient-fixture.d.ts +2 -0
  2310. package/components/shell/__e2e__/chat-ambient-fixture.d.ts.map +1 -0
  2311. package/components/shell/__e2e__/chat-ambient-fixture.js +9 -0
  2312. package/components/shell/__e2e__/chat-sheet-fixture.d.ts +2 -0
  2313. package/components/shell/__e2e__/chat-sheet-fixture.d.ts.map +1 -0
  2314. package/components/shell/__e2e__/chat-sheet-fixture.js +264 -0
  2315. package/components/shell/__e2e__/home-screen-fixture.activity-stub.d.ts +10 -0
  2316. package/components/shell/__e2e__/home-screen-fixture.activity-stub.d.ts.map +1 -0
  2317. package/components/shell/__e2e__/home-screen-fixture.activity-stub.js +12 -0
  2318. package/components/shell/__e2e__/home-screen-fixture.api-stub.d.ts +15 -0
  2319. package/components/shell/__e2e__/home-screen-fixture.api-stub.d.ts.map +1 -0
  2320. package/components/shell/__e2e__/home-screen-fixture.api-stub.js +11 -0
  2321. package/components/shell/__e2e__/home-screen-fixture.d.ts +2 -0
  2322. package/components/shell/__e2e__/home-screen-fixture.d.ts.map +1 -0
  2323. package/components/shell/__e2e__/home-screen-fixture.docvis-stub.d.ts +3 -0
  2324. package/components/shell/__e2e__/home-screen-fixture.docvis-stub.d.ts.map +1 -0
  2325. package/components/shell/__e2e__/home-screen-fixture.docvis-stub.js +3 -0
  2326. package/components/shell/__e2e__/home-screen-fixture.js +14 -0
  2327. package/components/shell/__e2e__/home-screen-fixture.views-stub.d.ts +8 -0
  2328. package/components/shell/__e2e__/home-screen-fixture.views-stub.d.ts.map +1 -0
  2329. package/components/shell/__e2e__/home-screen-fixture.views-stub.js +13 -0
  2330. package/components/shell/__e2e__/usePromptSuggestions.stub.d.ts +2 -0
  2331. package/components/shell/__e2e__/usePromptSuggestions.stub.d.ts.map +1 -0
  2332. package/components/shell/__e2e__/usePromptSuggestions.stub.js +11 -0
  2333. package/components/shell/first-run-theme.d.ts +6 -0
  2334. package/components/shell/first-run-theme.d.ts.map +1 -0
  2335. package/components/shell/first-run-theme.js +31 -0
  2336. package/components/shell/glass-composer.d.ts +13 -0
  2337. package/components/shell/glass-composer.d.ts.map +1 -0
  2338. package/components/shell/glass-composer.helpers.d.ts +3 -0
  2339. package/components/shell/glass-composer.helpers.d.ts.map +1 -0
  2340. package/components/shell/glass-composer.helpers.js +2 -0
  2341. package/components/shell/glass-composer.js +43 -0
  2342. package/components/shell/shell-state.d.ts +25 -0
  2343. package/components/shell/shell-state.d.ts.map +1 -0
  2344. package/components/shell/shell-state.js +1 -0
  2345. package/components/shell/startup-shell-types.d.ts +25 -0
  2346. package/components/shell/startup-shell-types.d.ts.map +1 -0
  2347. package/components/shell/startup-shell-types.js +1 -0
  2348. package/components/shell/use-pull-gesture.d.ts +44 -0
  2349. package/components/shell/use-pull-gesture.d.ts.map +1 -0
  2350. package/components/shell/use-pull-gesture.js +85 -0
  2351. package/components/shell/useKioskViewSurfaces.d.ts +28 -0
  2352. package/components/shell/useKioskViewSurfaces.d.ts.map +1 -0
  2353. package/components/shell/useKioskViewSurfaces.js +56 -0
  2354. package/components/shell/usePromptSuggestions.d.ts +39 -0
  2355. package/components/shell/usePromptSuggestions.d.ts.map +1 -0
  2356. package/components/shell/usePromptSuggestions.js +277 -0
  2357. package/components/shell/useShellController.d.ts +110 -0
  2358. package/components/shell/useShellController.d.ts.map +1 -0
  2359. package/components/shell/useShellController.js +695 -0
  2360. package/components/shell/useShellVoiceOutput.d.ts +38 -0
  2361. package/components/shell/useShellVoiceOutput.d.ts.map +1 -0
  2362. package/components/shell/useShellVoiceOutput.js +116 -0
  2363. package/components/steward/injected.js +1 -1
  2364. package/components/stream/StatusBar.d.ts.map +1 -1
  2365. package/components/stream/StatusBar.js +6 -14
  2366. package/components/stream/popout-url.d.ts +3 -0
  2367. package/components/stream/popout-url.d.ts.map +1 -0
  2368. package/components/stream/popout-url.js +17 -0
  2369. package/components/tool-events/ToolCallEventLog.d.ts +0 -2
  2370. package/components/tool-events/ToolCallEventLog.d.ts.map +1 -1
  2371. package/components/tool-events/ToolCallEventLog.helpers.d.ts +5 -0
  2372. package/components/tool-events/ToolCallEventLog.helpers.d.ts.map +1 -0
  2373. package/components/tool-events/ToolCallEventLog.helpers.js +19 -0
  2374. package/components/tool-events/ToolCallEventLog.js +3 -21
  2375. package/components/training/BudgetPanel.d.ts +14 -0
  2376. package/components/training/BudgetPanel.d.ts.map +1 -0
  2377. package/components/training/BudgetPanel.js +91 -0
  2378. package/components/training/InferenceEndpointPanel.d.ts.map +1 -1
  2379. package/components/training/InferenceEndpointPanel.js +52 -11
  2380. package/components/training/JobDetailPanel.d.ts.map +1 -1
  2381. package/components/training/JobDetailPanel.js +38 -14
  2382. package/components/training/TrainingDashboard.d.ts.map +1 -1
  2383. package/components/training/TrainingDashboard.js +78 -16
  2384. package/components/training/hooks/useTrainingApi.d.ts +13 -1
  2385. package/components/training/hooks/useTrainingApi.d.ts.map +1 -1
  2386. package/components/training/hooks/useTrainingApi.js +49 -24
  2387. package/components/training/injected.js +1 -1
  2388. package/components/training/types.d.ts +26 -0
  2389. package/components/training/types.d.ts.map +1 -1
  2390. package/components/transcripts/TranscriptBody.d.ts +22 -0
  2391. package/components/transcripts/TranscriptBody.d.ts.map +1 -0
  2392. package/components/transcripts/TranscriptBody.js +41 -0
  2393. package/components/transcripts/TranscriptPlayer.d.ts +17 -0
  2394. package/components/transcripts/TranscriptPlayer.d.ts.map +1 -0
  2395. package/components/transcripts/TranscriptPlayer.js +17 -0
  2396. package/components/transcripts/TranscriptsPage.d.ts +9 -0
  2397. package/components/transcripts/TranscriptsPage.d.ts.map +1 -0
  2398. package/components/transcripts/TranscriptsPage.js +41 -0
  2399. package/components/transcripts/TranscriptsView.d.ts +19 -0
  2400. package/components/transcripts/TranscriptsView.d.ts.map +1 -0
  2401. package/components/transcripts/TranscriptsView.js +30 -0
  2402. package/components/transcripts/index.d.ts +5 -0
  2403. package/components/transcripts/index.d.ts.map +1 -0
  2404. package/components/transcripts/index.js +4 -0
  2405. package/components/transcripts/useAudioElement.d.ts +22 -0
  2406. package/components/transcripts/useAudioElement.d.ts.map +1 -0
  2407. package/components/transcripts/useAudioElement.js +77 -0
  2408. package/components/ui/accordion.d.ts +12 -0
  2409. package/components/ui/accordion.d.ts.map +1 -0
  2410. package/components/ui/accordion.js +17 -0
  2411. package/components/ui/admin-dialog.d.ts +2 -2
  2412. package/components/ui/admin-dialog.d.ts.map +1 -1
  2413. package/components/ui/admin-dialog.js +6 -5
  2414. package/components/ui/alert-dialog.d.ts +15 -0
  2415. package/components/ui/alert-dialog.d.ts.map +1 -0
  2416. package/components/ui/alert-dialog.js +39 -0
  2417. package/components/ui/alert.d.ts +14 -0
  2418. package/components/ui/alert.d.ts.map +1 -0
  2419. package/components/ui/alert.js +28 -0
  2420. package/components/ui/avatar.d.ts +7 -0
  2421. package/components/ui/avatar.d.ts.map +1 -0
  2422. package/components/ui/avatar.js +18 -0
  2423. package/components/ui/badge.js +1 -1
  2424. package/components/ui/banner.d.ts.map +1 -1
  2425. package/components/ui/button.d.ts +2 -2
  2426. package/components/ui/button.d.ts.map +1 -1
  2427. package/components/ui/button.js +20 -16
  2428. package/components/ui/calendar.d.ts +9 -0
  2429. package/components/ui/calendar.d.ts.map +1 -0
  2430. package/components/ui/calendar.js +78 -0
  2431. package/components/ui/card.d.ts +3 -2
  2432. package/components/ui/card.d.ts.map +1 -1
  2433. package/components/ui/card.js +8 -6
  2434. package/components/ui/carousel.d.ts +24 -0
  2435. package/components/ui/carousel.d.ts.map +1 -0
  2436. package/components/ui/carousel.js +106 -0
  2437. package/components/ui/chart.d.ts +74 -0
  2438. package/components/ui/chart.d.ts.map +1 -0
  2439. package/components/ui/chart.js +139 -0
  2440. package/components/ui/code-block.d.ts +14 -0
  2441. package/components/ui/code-block.d.ts.map +1 -0
  2442. package/components/ui/code-block.js +21 -0
  2443. package/components/ui/collapsible.d.ts +6 -0
  2444. package/components/ui/collapsible.d.ts.map +1 -0
  2445. package/components/ui/collapsible.js +17 -0
  2446. package/components/ui/confirm-delete.js +3 -3
  2447. package/components/ui/confirm-dialog.d.ts +0 -8
  2448. package/components/ui/confirm-dialog.d.ts.map +1 -1
  2449. package/components/ui/confirm-dialog.hooks.d.ts +10 -0
  2450. package/components/ui/confirm-dialog.hooks.d.ts.map +1 -0
  2451. package/components/ui/confirm-dialog.hooks.js +53 -0
  2452. package/components/ui/confirm-dialog.js +2 -54
  2453. package/components/ui/connection-status.js +1 -1
  2454. package/components/ui/copy-button.d.ts.map +1 -1
  2455. package/components/ui/copy-button.js +15 -4
  2456. package/components/ui/dialog.d.ts.map +1 -1
  2457. package/components/ui/dialog.js +10 -3
  2458. package/components/ui/dropdown-menu.js +2 -2
  2459. package/components/ui/empty-state.d.ts +2 -0
  2460. package/components/ui/empty-state.d.ts.map +1 -1
  2461. package/components/ui/empty-state.js +2 -1
  2462. package/components/ui/error-boundary.d.ts +1 -1
  2463. package/components/ui/error-boundary.d.ts.map +1 -1
  2464. package/components/ui/error-boundary.js +3 -3
  2465. package/components/ui/field-switch.js +1 -1
  2466. package/components/ui/form-select.js +2 -2
  2467. package/components/ui/form.d.ts +62 -0
  2468. package/components/ui/form.d.ts.map +1 -0
  2469. package/components/ui/form.js +98 -0
  2470. package/components/ui/grid.d.ts +1 -1
  2471. package/components/ui/hover-card.d.ts +7 -0
  2472. package/components/ui/hover-card.d.ts.map +1 -0
  2473. package/components/ui/hover-card.js +18 -0
  2474. package/components/ui/input-group.d.ts +25 -0
  2475. package/components/ui/input-group.d.ts.map +1 -0
  2476. package/components/ui/input-group.js +44 -0
  2477. package/components/ui/input.js +3 -3
  2478. package/components/ui/new-action-button.js +1 -1
  2479. package/components/ui/pagination.d.ts +18 -0
  2480. package/components/ui/pagination.d.ts.map +1 -0
  2481. package/components/ui/pagination.js +33 -0
  2482. package/components/ui/popover.js +1 -1
  2483. package/components/ui/progress.d.ts +5 -0
  2484. package/components/ui/progress.d.ts.map +1 -0
  2485. package/components/ui/progress.js +8 -0
  2486. package/components/ui/scroll-area.d.ts +8 -0
  2487. package/components/ui/scroll-area.d.ts.map +1 -0
  2488. package/components/ui/scroll-area.js +17 -0
  2489. package/components/ui/segmented-control.js +4 -4
  2490. package/components/ui/select.js +2 -2
  2491. package/components/ui/settings-controls.d.ts +12 -13
  2492. package/components/ui/settings-controls.d.ts.map +1 -1
  2493. package/components/ui/settings-controls.js +28 -19
  2494. package/components/ui/skeleton-layouts.d.ts +17 -0
  2495. package/components/ui/skeleton-layouts.d.ts.map +1 -0
  2496. package/components/ui/skeleton-layouts.js +26 -0
  2497. package/components/ui/skeleton.js +1 -1
  2498. package/components/ui/slider.d.ts +3 -1
  2499. package/components/ui/slider.d.ts.map +1 -1
  2500. package/components/ui/slider.js +1 -1
  2501. package/components/ui/stack.d.ts +2 -2
  2502. package/components/ui/status-badge.d.ts +4 -4
  2503. package/components/ui/status-badge.d.ts.map +1 -1
  2504. package/components/ui/status-badge.helpers.d.ts +6 -0
  2505. package/components/ui/status-badge.helpers.d.ts.map +1 -0
  2506. package/components/ui/status-badge.helpers.js +72 -0
  2507. package/components/ui/status-badge.js +41 -51
  2508. package/components/ui/switch.d.ts +5 -2
  2509. package/components/ui/switch.d.ts.map +1 -1
  2510. package/components/ui/switch.js +18 -3
  2511. package/components/ui/table.d.ts +15 -0
  2512. package/components/ui/table.d.ts.map +1 -0
  2513. package/components/ui/table.js +24 -0
  2514. package/components/ui/tabs.js +2 -2
  2515. package/components/ui/tag-editor.js +1 -1
  2516. package/components/ui/textarea.js +3 -3
  2517. package/components/ui/toggle.d.ts +10 -0
  2518. package/components/ui/toggle.d.ts.map +1 -0
  2519. package/components/ui/toggle.js +30 -0
  2520. package/components/ui/tooltip-extended.d.ts +1 -1
  2521. package/components/ui/tooltip-extended.d.ts.map +1 -1
  2522. package/components/ui/tooltip-extended.js +5 -3
  2523. package/components/ui/tooltip.d.ts +6 -4
  2524. package/components/ui/tooltip.d.ts.map +1 -1
  2525. package/components/ui/tooltip.js +1 -1
  2526. package/components/ui/typography.d.ts +1 -1
  2527. package/components/views/DynamicViewLoader.d.ts +52 -0
  2528. package/components/views/DynamicViewLoader.d.ts.map +1 -0
  2529. package/components/views/DynamicViewLoader.js +896 -0
  2530. package/components/views/ShellViewAgentSurface.d.ts +22 -0
  2531. package/components/views/ShellViewAgentSurface.d.ts.map +1 -0
  2532. package/components/views/ShellViewAgentSurface.js +71 -0
  2533. package/components/views/TerminalPluginView.d.ts +10 -0
  2534. package/components/views/TerminalPluginView.d.ts.map +1 -0
  2535. package/components/views/TerminalPluginView.js +146 -0
  2536. package/components/views/ViewIcon.d.ts +7 -0
  2537. package/components/views/ViewIcon.d.ts.map +1 -0
  2538. package/components/views/ViewIcon.js +97 -0
  2539. package/components/views/view-interact-registry.d.ts +32 -0
  2540. package/components/views/view-interact-registry.d.ts.map +1 -0
  2541. package/components/views/view-interact-registry.js +81 -0
  2542. package/components/workspace/AppWorkspaceChrome.d.ts +9 -53
  2543. package/components/workspace/AppWorkspaceChrome.d.ts.map +1 -1
  2544. package/components/workspace/AppWorkspaceChrome.js +26 -212
  2545. package/config/allowed-hosts.d.ts +1 -7
  2546. package/config/allowed-hosts.d.ts.map +1 -1
  2547. package/config/allowed-hosts.js +1 -43
  2548. package/config/api-key-prefix-hints.d.ts +1 -24
  2549. package/config/api-key-prefix-hints.d.ts.map +1 -1
  2550. package/config/api-key-prefix-hints.js +1 -26
  2551. package/config/boot-config-react.hooks.d.ts +5 -0
  2552. package/config/boot-config-react.hooks.d.ts.map +1 -0
  2553. package/config/boot-config-react.hooks.js +12 -0
  2554. package/config/boot-config-store.d.ts +37 -23
  2555. package/config/boot-config-store.d.ts.map +1 -1
  2556. package/config/boot-config-store.js +3 -3
  2557. package/config/boot-config.d.ts +1 -1
  2558. package/config/boot-config.js +1 -1
  2559. package/config/branding-base.d.ts +71 -0
  2560. package/config/branding-base.d.ts.map +1 -0
  2561. package/config/branding-base.js +18 -0
  2562. package/config/branding-react.hooks.d.ts +4 -0
  2563. package/config/branding-react.hooks.d.ts.map +1 -0
  2564. package/config/branding-react.hooks.js +11 -0
  2565. package/config/branding.d.ts +2 -68
  2566. package/config/branding.d.ts.map +1 -1
  2567. package/config/branding.js +2 -23
  2568. package/config/cloud-only.d.ts +1 -5
  2569. package/config/cloud-only.d.ts.map +1 -1
  2570. package/config/cloud-only.js +1 -15
  2571. package/config/index.d.ts +2 -1
  2572. package/config/index.d.ts.map +1 -1
  2573. package/config/index.js +2 -2
  2574. package/config/plugin-ui-spec.d.ts +1 -41
  2575. package/config/plugin-ui-spec.d.ts.map +1 -1
  2576. package/config/plugin-ui-spec.js +1 -256
  2577. package/config/ui-spec.d.ts +1 -163
  2578. package/config/ui-spec.d.ts.map +1 -1
  2579. package/config/ui-spec.js +0 -12
  2580. package/content-packs/apply-pack.d.ts +4 -4
  2581. package/content-packs/apply-pack.d.ts.map +1 -1
  2582. package/content-packs/apply-pack.js +4 -4
  2583. package/desktop-shell-compat.d.ts +7 -0
  2584. package/desktop-shell-compat.d.ts.map +1 -0
  2585. package/desktop-shell-compat.js +9 -0
  2586. package/events/index.d.ts +91 -4
  2587. package/events/index.d.ts.map +1 -1
  2588. package/events/index.js +92 -2
  2589. package/first-run/AgentPicker.d.ts +26 -0
  2590. package/first-run/AgentPicker.d.ts.map +1 -0
  2591. package/first-run/AgentPicker.js +45 -0
  2592. package/first-run/CompactOnboarding.d.ts +3 -0
  2593. package/first-run/CompactOnboarding.d.ts.map +1 -0
  2594. package/first-run/CompactOnboarding.js +114 -0
  2595. package/first-run/__e2e__/onboarding-fixture.d.ts +2 -0
  2596. package/first-run/__e2e__/onboarding-fixture.d.ts.map +1 -0
  2597. package/first-run/__e2e__/onboarding-fixture.js +16 -0
  2598. package/first-run/__e2e__/use-first-run-controller.stub.d.ts +41 -0
  2599. package/first-run/__e2e__/use-first-run-controller.stub.d.ts.map +1 -0
  2600. package/first-run/__e2e__/use-first-run-controller.stub.js +70 -0
  2601. package/first-run/auto-download-recommended.d.ts +24 -0
  2602. package/first-run/auto-download-recommended.d.ts.map +1 -0
  2603. package/first-run/auto-download-recommended.js +118 -0
  2604. package/first-run/deep-link-handler.d.ts +62 -0
  2605. package/first-run/deep-link-handler.d.ts.map +1 -0
  2606. package/first-run/deep-link-handler.js +147 -0
  2607. package/first-run/ensure-store-build-workspace-folder.d.ts +22 -0
  2608. package/first-run/ensure-store-build-workspace-folder.d.ts.map +1 -0
  2609. package/first-run/ensure-store-build-workspace-folder.js +45 -0
  2610. package/first-run/first-run-config.d.ts +55 -0
  2611. package/first-run/first-run-config.d.ts.map +1 -0
  2612. package/first-run/first-run-config.js +227 -0
  2613. package/first-run/first-run.d.ts +89 -0
  2614. package/first-run/first-run.d.ts.map +1 -0
  2615. package/first-run/first-run.js +339 -0
  2616. package/first-run/local-agent-token.d.ts +5 -0
  2617. package/first-run/local-agent-token.d.ts.map +1 -0
  2618. package/first-run/local-agent-token.js +53 -0
  2619. package/first-run/mobile-runtime-mode.d.ts +32 -0
  2620. package/first-run/mobile-runtime-mode.d.ts.map +1 -0
  2621. package/first-run/mobile-runtime-mode.js +201 -0
  2622. package/first-run/onboarding-intent.d.ts +34 -0
  2623. package/first-run/onboarding-intent.d.ts.map +1 -0
  2624. package/first-run/onboarding-intent.js +38 -0
  2625. package/first-run/pre-seed-local-runtime.d.ts +6 -0
  2626. package/first-run/pre-seed-local-runtime.d.ts.map +1 -0
  2627. package/first-run/pre-seed-local-runtime.js +91 -0
  2628. package/first-run/probe-local-agent.d.ts +50 -0
  2629. package/first-run/probe-local-agent.d.ts.map +1 -0
  2630. package/first-run/probe-local-agent.js +219 -0
  2631. package/first-run/reload-into-first-run-runtime.d.ts +14 -0
  2632. package/first-run/reload-into-first-run-runtime.d.ts.map +1 -0
  2633. package/first-run/reload-into-first-run-runtime.js +46 -0
  2634. package/first-run/runtime-target.d.ts +4 -0
  2635. package/first-run/runtime-target.d.ts.map +1 -0
  2636. package/first-run/runtime-target.js +13 -0
  2637. package/first-run/setup-steps.d.ts +22 -0
  2638. package/first-run/setup-steps.d.ts.map +1 -0
  2639. package/first-run/setup-steps.js +55 -0
  2640. package/first-run/use-first-run-controller.d.ts +46 -0
  2641. package/first-run/use-first-run-controller.d.ts.map +1 -0
  2642. package/first-run/use-first-run-controller.js +1150 -0
  2643. package/first-run/use-microphone-permission.d.ts +17 -0
  2644. package/first-run/use-microphone-permission.d.ts.map +1 -0
  2645. package/first-run/use-microphone-permission.js +106 -0
  2646. package/first-run/voice-readiness.d.ts +14 -0
  2647. package/first-run/voice-readiness.d.ts.map +1 -0
  2648. package/first-run/voice-readiness.js +78 -0
  2649. package/genui/actions.d.ts +8 -0
  2650. package/genui/actions.d.ts.map +1 -0
  2651. package/genui/actions.js +28 -0
  2652. package/genui/catalog.d.ts +11 -0
  2653. package/genui/catalog.d.ts.map +1 -0
  2654. package/genui/catalog.js +58 -0
  2655. package/genui/index.d.ts +9 -0
  2656. package/genui/index.d.ts.map +1 -0
  2657. package/genui/index.js +8 -0
  2658. package/genui/modes.d.ts +7 -0
  2659. package/genui/modes.d.ts.map +1 -0
  2660. package/genui/modes.js +41 -0
  2661. package/genui/pipe.d.ts +10 -0
  2662. package/genui/pipe.d.ts.map +1 -0
  2663. package/genui/pipe.js +122 -0
  2664. package/genui/renderer.d.ts +4 -0
  2665. package/genui/renderer.d.ts.map +1 -0
  2666. package/genui/renderer.js +213 -0
  2667. package/genui/starter-pack-demo.d.ts +3 -0
  2668. package/genui/starter-pack-demo.d.ts.map +1 -0
  2669. package/genui/starter-pack-demo.js +114 -0
  2670. package/genui/streaming.d.ts +5 -0
  2671. package/genui/streaming.d.ts.map +1 -0
  2672. package/genui/streaming.js +145 -0
  2673. package/genui/types.d.ts +132 -0
  2674. package/genui/types.d.ts.map +1 -0
  2675. package/genui/types.js +1 -0
  2676. package/genui/use-json-render-message.d.ts +20 -0
  2677. package/genui/use-json-render-message.d.ts.map +1 -0
  2678. package/genui/use-json-render-message.js +38 -0
  2679. package/genui/use-ui-stream.d.ts +8 -0
  2680. package/genui/use-ui-stream.d.ts.map +1 -0
  2681. package/genui/use-ui-stream.js +56 -0
  2682. package/genui/validator.d.ts +4 -0
  2683. package/genui/validator.d.ts.map +1 -0
  2684. package/genui/validator.js +301 -0
  2685. package/hooks/BugReportProvider.d.ts +7 -0
  2686. package/hooks/BugReportProvider.d.ts.map +1 -0
  2687. package/hooks/BugReportProvider.js +5 -0
  2688. package/hooks/index.d.ts +9 -4
  2689. package/hooks/index.d.ts.map +1 -1
  2690. package/hooks/index.js +9 -4
  2691. package/hooks/resource-cache.d.ts +58 -0
  2692. package/hooks/resource-cache.d.ts.map +1 -0
  2693. package/hooks/resource-cache.js +241 -0
  2694. package/hooks/useAccounts.d.ts.map +1 -1
  2695. package/hooks/useAccounts.js +2 -8
  2696. package/hooks/useActivityEvents.d.ts.map +1 -1
  2697. package/hooks/useActivityEvents.js +20 -9
  2698. package/hooks/useAuthStatus.d.ts +1 -1
  2699. package/hooks/useAuthStatus.d.ts.map +1 -1
  2700. package/hooks/useAuthStatus.js +34 -22
  2701. package/hooks/useAvailableViews.d.ts +72 -0
  2702. package/hooks/useAvailableViews.d.ts.map +1 -0
  2703. package/hooks/useAvailableViews.js +159 -0
  2704. package/hooks/useBugReport.hooks.d.ts +21 -0
  2705. package/hooks/useBugReport.hooks.d.ts.map +1 -0
  2706. package/hooks/useBugReport.hooks.js +24 -0
  2707. package/hooks/useCachedResource.d.ts +38 -0
  2708. package/hooks/useCachedResource.d.ts.map +1 -0
  2709. package/hooks/useCachedResource.js +108 -0
  2710. package/hooks/useChatAvatarVoiceBridge.d.ts +0 -1
  2711. package/hooks/useChatAvatarVoiceBridge.d.ts.map +1 -1
  2712. package/hooks/useCloudHandoffPhase.d.ts +11 -0
  2713. package/hooks/useCloudHandoffPhase.d.ts.map +1 -0
  2714. package/hooks/useCloudHandoffPhase.js +39 -0
  2715. package/hooks/useConnectorAccounts.d.ts.map +1 -1
  2716. package/hooks/useConnectorAccounts.js +2 -8
  2717. package/hooks/useConnectorReconnect.d.ts +81 -0
  2718. package/hooks/useConnectorReconnect.d.ts.map +1 -0
  2719. package/hooks/useConnectorReconnect.js +180 -0
  2720. package/hooks/useConnectorSendAsAccount.d.ts.map +1 -1
  2721. package/hooks/useConnectorSendAsAccount.js +14 -14
  2722. package/hooks/useContextMenu.js +1 -1
  2723. package/hooks/useContinuousChat.d.ts +109 -0
  2724. package/hooks/useContinuousChat.d.ts.map +1 -0
  2725. package/hooks/useContinuousChat.js +241 -0
  2726. package/hooks/useDefaultProviderPresets.d.ts +46 -0
  2727. package/hooks/useDefaultProviderPresets.d.ts.map +1 -0
  2728. package/hooks/useDefaultProviderPresets.js +54 -0
  2729. package/hooks/useDesktopBridgeEvent.d.ts +29 -0
  2730. package/hooks/useDesktopBridgeEvent.d.ts.map +1 -0
  2731. package/hooks/useDesktopBridgeEvent.js +39 -0
  2732. package/hooks/useDesktopTabs.d.ts +26 -0
  2733. package/hooks/useDesktopTabs.d.ts.map +1 -0
  2734. package/hooks/useDesktopTabs.js +95 -0
  2735. package/hooks/useFetchData.d.ts +37 -0
  2736. package/hooks/useFetchData.d.ts.map +1 -0
  2737. package/hooks/useFetchData.js +93 -0
  2738. package/hooks/useKeyboardShortcuts.d.ts +2 -13
  2739. package/hooks/useKeyboardShortcuts.d.ts.map +1 -1
  2740. package/hooks/useKeyboardShortcuts.js +5 -38
  2741. package/hooks/useModalState.d.ts +31 -0
  2742. package/hooks/useModalState.d.ts.map +1 -0
  2743. package/hooks/useModalState.js +45 -0
  2744. package/hooks/useRenderGuard.d.ts +51 -12
  2745. package/hooks/useRenderGuard.d.ts.map +1 -1
  2746. package/hooks/useRenderGuard.js +157 -30
  2747. package/hooks/useRuntimeMode.d.ts.map +1 -1
  2748. package/hooks/useViewCatalog.d.ts +25 -0
  2749. package/hooks/useViewCatalog.d.ts.map +1 -0
  2750. package/hooks/useViewCatalog.js +85 -0
  2751. package/hooks/useViewEvent.d.ts +28 -0
  2752. package/hooks/useViewEvent.d.ts.map +1 -0
  2753. package/hooks/useViewEvent.js +40 -0
  2754. package/hooks/useVoiceChat.d.ts +8 -2
  2755. package/hooks/useVoiceChat.d.ts.map +1 -1
  2756. package/hooks/useVoiceChat.js +617 -97
  2757. package/hooks/useWhatsAppPairing.d.ts.map +1 -1
  2758. package/hooks/useWhatsAppPairing.js +28 -5
  2759. package/hooks/view-catalog.d.ts +74 -0
  2760. package/hooks/view-catalog.d.ts.map +1 -0
  2761. package/hooks/view-catalog.js +106 -0
  2762. package/i18n/index.d.ts +2 -2
  2763. package/i18n/index.d.ts.map +1 -1
  2764. package/i18n/index.js +4 -2
  2765. package/i18n/locales/en.json +4803 -666
  2766. package/i18n/locales/es.json +5333 -1208
  2767. package/i18n/locales/ja.json +7418 -0
  2768. package/i18n/locales/ko.json +5221 -1096
  2769. package/i18n/locales/pt.json +5215 -1090
  2770. package/i18n/locales/tl.json +5449 -1324
  2771. package/i18n/locales/vi.json +5150 -1025
  2772. package/i18n/locales/zh-CN.json +5094 -969
  2773. package/i18n/messages.d.ts +15 -1
  2774. package/i18n/messages.d.ts.map +1 -1
  2775. package/i18n/messages.js +54 -13
  2776. package/i18n/region.d.ts +43 -0
  2777. package/i18n/region.d.ts.map +1 -0
  2778. package/i18n/region.js +169 -0
  2779. package/index.d.ts +125 -25
  2780. package/index.d.ts.map +1 -1
  2781. package/index.js +102 -9
  2782. package/layouts/chat-panel-layout/chat-panel-layout.js +2 -2
  2783. package/layouts/page-layout/page-layout-mobile-drawer.d.ts.map +1 -1
  2784. package/layouts/page-layout/page-layout-mobile-drawer.js +2 -2
  2785. package/layouts/workspace-layout/index.d.ts +1 -1
  2786. package/layouts/workspace-layout/index.d.ts.map +1 -1
  2787. package/layouts/workspace-layout/index.js +1 -1
  2788. package/layouts/workspace-layout/workspace-layout.d.ts.map +1 -1
  2789. package/layouts/workspace-layout/workspace-layout.js +1 -3
  2790. package/layouts/workspace-layout/workspace-mobile-sidebar-controls.hooks.d.ts +13 -0
  2791. package/layouts/workspace-layout/workspace-mobile-sidebar-controls.hooks.d.ts.map +1 -0
  2792. package/lib/floating-layers.d.ts +1 -2
  2793. package/lib/floating-layers.d.ts.map +1 -1
  2794. package/lib/floating-layers.js +2 -3
  2795. package/navigation/index.d.ts +17 -20
  2796. package/navigation/index.d.ts.map +1 -1
  2797. package/navigation/index.js +97 -69
  2798. package/navigation/main-tab.d.ts +6 -11
  2799. package/navigation/main-tab.d.ts.map +1 -1
  2800. package/navigation/main-tab.js +8 -17
  2801. package/navigation/nav-lock.d.ts +18 -0
  2802. package/navigation/nav-lock.d.ts.map +1 -0
  2803. package/navigation/nav-lock.js +34 -0
  2804. package/package.json +288 -19
  2805. package/platform/android-runtime.d.ts +3 -3
  2806. package/platform/android-runtime.d.ts.map +1 -1
  2807. package/platform/android-runtime.js +4 -7
  2808. package/platform/aosp-user-agent.d.ts +10 -0
  2809. package/platform/aosp-user-agent.d.ts.map +1 -0
  2810. package/platform/aosp-user-agent.js +13 -0
  2811. package/platform/assistant-launch-payload.d.ts +27 -0
  2812. package/platform/assistant-launch-payload.d.ts.map +1 -0
  2813. package/platform/assistant-launch-payload.js +113 -0
  2814. package/platform/browser-launch.d.ts +1 -0
  2815. package/platform/browser-launch.d.ts.map +1 -1
  2816. package/platform/browser-launch.js +56 -12
  2817. package/platform/cloud-preference-patch.d.ts +0 -4
  2818. package/platform/cloud-preference-patch.d.ts.map +1 -1
  2819. package/platform/cloud-preference-patch.js +2 -24
  2820. package/platform/empty-node-module.d.ts +2 -2
  2821. package/platform/empty-node-module.d.ts.map +1 -1
  2822. package/platform/empty-node-module.js +2 -2
  2823. package/platform/first-run-reset.d.ts +21 -0
  2824. package/platform/first-run-reset.d.ts.map +1 -0
  2825. package/platform/first-run-reset.js +140 -0
  2826. package/platform/index.d.ts +9 -5
  2827. package/platform/index.d.ts.map +1 -1
  2828. package/platform/index.js +7 -10
  2829. package/platform/init.d.ts +16 -18
  2830. package/platform/init.d.ts.map +1 -1
  2831. package/platform/init.js +41 -29
  2832. package/platform/ios-runtime.d.ts +18 -1
  2833. package/platform/ios-runtime.d.ts.map +1 -1
  2834. package/platform/ios-runtime.js +45 -24
  2835. package/platform/mobile-permissions-client.d.ts +25 -0
  2836. package/platform/mobile-permissions-client.d.ts.map +1 -0
  2837. package/platform/mobile-permissions-client.js +628 -0
  2838. package/platform/platform-guards.d.ts +39 -0
  2839. package/platform/platform-guards.d.ts.map +1 -0
  2840. package/platform/platform-guards.js +57 -0
  2841. package/platform/types.d.ts +6 -10
  2842. package/platform/types.d.ts.map +1 -1
  2843. package/platform/window-shell.d.ts +20 -3
  2844. package/platform/window-shell.d.ts.map +1 -1
  2845. package/platform/window-shell.js +25 -5
  2846. package/providers/index.d.ts +1 -1
  2847. package/providers/index.d.ts.map +1 -1
  2848. package/providers/index.js +1 -1
  2849. package/retained-lazy.d.ts +28 -0
  2850. package/retained-lazy.d.ts.map +1 -0
  2851. package/retained-lazy.js +285 -0
  2852. package/services/app-updates/update-policy.d.ts +64 -0
  2853. package/services/app-updates/update-policy.d.ts.map +1 -0
  2854. package/services/app-updates/update-policy.js +228 -0
  2855. package/services/local-inference/active-model.d.ts +5 -83
  2856. package/services/local-inference/active-model.d.ts.map +1 -1
  2857. package/services/local-inference/active-model.js +88 -23
  2858. package/services/local-inference/assignments.d.ts +12 -12
  2859. package/services/local-inference/assignments.d.ts.map +1 -1
  2860. package/services/local-inference/assignments.js +29 -19
  2861. package/services/local-inference/bundled-models.d.ts +1 -1
  2862. package/services/local-inference/bundled-models.js +1 -1
  2863. package/services/local-inference/catalog-policy.d.ts +6 -0
  2864. package/services/local-inference/catalog-policy.d.ts.map +1 -0
  2865. package/services/local-inference/catalog-policy.js +13 -0
  2866. package/services/local-inference/catalog.d.ts +6 -51
  2867. package/services/local-inference/catalog.d.ts.map +1 -1
  2868. package/services/local-inference/catalog.js +6 -268
  2869. package/services/local-inference/custom-search.d.ts +33 -0
  2870. package/services/local-inference/custom-search.d.ts.map +1 -0
  2871. package/services/local-inference/custom-search.js +69 -0
  2872. package/services/local-inference/device-bridge.d.ts +35 -4
  2873. package/services/local-inference/device-bridge.d.ts.map +1 -1
  2874. package/services/local-inference/device-bridge.js +56 -3
  2875. package/services/local-inference/disk-space.d.ts +15 -0
  2876. package/services/local-inference/disk-space.d.ts.map +1 -0
  2877. package/services/local-inference/disk-space.js +29 -0
  2878. package/services/local-inference/downloader.d.ts +35 -1
  2879. package/services/local-inference/downloader.d.ts.map +1 -1
  2880. package/services/local-inference/downloader.js +95 -141
  2881. package/services/local-inference/engine.d.ts +18 -32
  2882. package/services/local-inference/engine.d.ts.map +1 -1
  2883. package/services/local-inference/engine.js +42 -207
  2884. package/services/local-inference/handler-registry.d.ts +1 -1
  2885. package/services/local-inference/handler-registry.d.ts.map +1 -1
  2886. package/services/local-inference/handler-registry.js +14 -7
  2887. package/services/local-inference/hardware.d.ts +44 -10
  2888. package/services/local-inference/hardware.d.ts.map +1 -1
  2889. package/services/local-inference/hardware.js +187 -76
  2890. package/services/local-inference/hf-search.d.ts +7 -0
  2891. package/services/local-inference/hf-search.d.ts.map +1 -1
  2892. package/services/local-inference/hf-search.js +117 -6
  2893. package/services/local-inference/home-model-status.d.ts +25 -0
  2894. package/services/local-inference/home-model-status.d.ts.map +1 -0
  2895. package/services/local-inference/home-model-status.js +90 -0
  2896. package/services/local-inference/index.d.ts +6 -3
  2897. package/services/local-inference/index.d.ts.map +1 -1
  2898. package/services/local-inference/index.js +5 -2
  2899. package/services/local-inference/load-args.d.ts +60 -0
  2900. package/services/local-inference/load-args.d.ts.map +1 -0
  2901. package/services/local-inference/load-args.js +10 -0
  2902. package/services/local-inference/manifest.d.ts +45 -0
  2903. package/services/local-inference/manifest.d.ts.map +1 -0
  2904. package/services/local-inference/manifest.js +26 -0
  2905. package/services/local-inference/paths.d.ts +1 -7
  2906. package/services/local-inference/paths.d.ts.map +1 -1
  2907. package/services/local-inference/paths.js +1 -7
  2908. package/services/local-inference/readiness.js +1 -1
  2909. package/services/local-inference/recommendation.d.ts +9 -6
  2910. package/services/local-inference/recommendation.d.ts.map +1 -1
  2911. package/services/local-inference/recommendation.js +64 -53
  2912. package/services/local-inference/registry.d.ts.map +1 -1
  2913. package/services/local-inference/registry.js +3 -2
  2914. package/services/local-inference/resource-snapshot-bridge.d.ts +51 -0
  2915. package/services/local-inference/resource-snapshot-bridge.d.ts.map +1 -0
  2916. package/services/local-inference/resource-snapshot-bridge.js +90 -0
  2917. package/services/local-inference/routing-policy.d.ts.map +1 -1
  2918. package/services/local-inference/routing-policy.js +6 -0
  2919. package/services/local-inference/routing-preferences.d.ts +1 -7
  2920. package/services/local-inference/routing-preferences.d.ts.map +1 -1
  2921. package/services/local-inference/routing-preferences.js +1 -7
  2922. package/services/local-inference/service.d.ts +11 -1
  2923. package/services/local-inference/service.d.ts.map +1 -1
  2924. package/services/local-inference/service.js +24 -5
  2925. package/services/local-inference/token-tree.d.ts +188 -0
  2926. package/services/local-inference/token-tree.d.ts.map +1 -0
  2927. package/services/local-inference/token-tree.js +185 -0
  2928. package/services/local-inference/tokenizer-client.d.ts +88 -0
  2929. package/services/local-inference/tokenizer-client.d.ts.map +1 -0
  2930. package/services/local-inference/tokenizer-client.js +166 -0
  2931. package/services/local-inference/types.d.ts +5 -235
  2932. package/services/local-inference/types.d.ts.map +1 -1
  2933. package/services/local-inference/types.js +5 -18
  2934. package/services/local-inference/verify.d.ts +1 -7
  2935. package/services/local-inference/verify.d.ts.map +1 -1
  2936. package/services/local-inference/verify.js +1 -7
  2937. package/shell-params.d.ts +1 -1
  2938. package/shell-params.d.ts.map +1 -1
  2939. package/shell-params.js +0 -1
  2940. package/slots/task-coordinator-slots.d.ts +8 -26
  2941. package/slots/task-coordinator-slots.d.ts.map +1 -1
  2942. package/slots/task-coordinator-slots.helpers.d.ts +32 -0
  2943. package/slots/task-coordinator-slots.helpers.d.ts.map +1 -0
  2944. package/slots/task-coordinator-slots.helpers.js +14 -0
  2945. package/slots/task-coordinator-slots.js +19 -8
  2946. package/spatial/context.d.ts +24 -0
  2947. package/spatial/context.d.ts.map +1 -0
  2948. package/spatial/context.js +15 -0
  2949. package/spatial/dom.d.ts +42 -0
  2950. package/spatial/dom.d.ts.map +1 -0
  2951. package/spatial/dom.js +41 -0
  2952. package/spatial/evaluate.d.ts +67 -0
  2953. package/spatial/evaluate.d.ts.map +1 -0
  2954. package/spatial/evaluate.js +233 -0
  2955. package/spatial/example.d.ts +19 -0
  2956. package/spatial/example.d.ts.map +1 -0
  2957. package/spatial/example.js +28 -0
  2958. package/spatial/gallery.d.ts +20 -0
  2959. package/spatial/gallery.d.ts.map +1 -0
  2960. package/spatial/gallery.js +179 -0
  2961. package/spatial/index.d.ts +24 -0
  2962. package/spatial/index.d.ts.map +1 -0
  2963. package/spatial/index.js +25 -0
  2964. package/spatial/ir.d.ts +157 -0
  2965. package/spatial/ir.d.ts.map +1 -0
  2966. package/spatial/ir.js +41 -0
  2967. package/spatial/primitives.d.ts +107 -0
  2968. package/spatial/primitives.d.ts.map +1 -0
  2969. package/spatial/primitives.js +447 -0
  2970. package/spatial/tui/engine.d.ts +28 -0
  2971. package/spatial/tui/engine.d.ts.map +1 -0
  2972. package/spatial/tui/engine.js +488 -0
  2973. package/spatial/tui/framing.d.ts +33 -0
  2974. package/spatial/tui/framing.d.ts.map +1 -0
  2975. package/spatial/tui/framing.js +189 -0
  2976. package/spatial/tui/index.d.ts +10 -0
  2977. package/spatial/tui/index.d.ts.map +1 -0
  2978. package/spatial/tui/index.js +10 -0
  2979. package/spatial/tui/renderer.d.ts +55 -0
  2980. package/spatial/tui/renderer.d.ts.map +1 -0
  2981. package/spatial/tui/renderer.js +116 -0
  2982. package/state/AppContext.d.ts +0 -2
  2983. package/state/AppContext.d.ts.map +1 -1
  2984. package/state/AppContext.hooks.d.ts +15 -0
  2985. package/state/AppContext.hooks.d.ts.map +1 -0
  2986. package/state/AppContext.hooks.js +11 -0
  2987. package/state/AppContext.js +618 -559
  2988. package/state/ChatComposerContext.hooks.d.ts +59 -0
  2989. package/state/ChatComposerContext.hooks.d.ts.map +1 -0
  2990. package/state/ChatComposerContext.hooks.js +148 -0
  2991. package/state/CompanionSceneConfigContext.hooks.d.ts +28 -0
  2992. package/state/CompanionSceneConfigContext.hooks.d.ts.map +1 -0
  2993. package/state/CompanionSceneConfigContext.hooks.js +33 -0
  2994. package/state/PtySessionsContext.hooks.d.ts +18 -0
  2995. package/state/PtySessionsContext.hooks.d.ts.map +1 -0
  2996. package/state/PtySessionsContext.hooks.js +18 -0
  2997. package/state/TranslationContext.hooks.d.ts +28 -0
  2998. package/state/TranslationContext.hooks.d.ts.map +1 -0
  2999. package/state/TranslationContext.hooks.js +38 -0
  3000. package/state/TranslationProvider.d.ts +23 -0
  3001. package/state/TranslationProvider.d.ts.map +1 -0
  3002. package/state/TranslationProvider.js +86 -0
  3003. package/state/action-banner.d.ts +18 -0
  3004. package/state/action-banner.d.ts.map +1 -0
  3005. package/state/action-banner.js +1 -0
  3006. package/state/agent-profiles.d.ts.map +1 -1
  3007. package/state/agent-profiles.js +1 -2
  3008. package/state/agent-runtime-target.d.ts +1 -1
  3009. package/state/agent-runtime-target.d.ts.map +1 -1
  3010. package/state/agent-runtime-target.js +5 -1
  3011. package/state/cloud-steward-login.d.ts +44 -0
  3012. package/state/cloud-steward-login.d.ts.map +1 -0
  3013. package/state/cloud-steward-login.js +52 -0
  3014. package/state/complete-reset-local-state-after-wipe.d.ts +8 -8
  3015. package/state/complete-reset-local-state-after-wipe.d.ts.map +1 -1
  3016. package/state/complete-reset-local-state-after-wipe.js +6 -6
  3017. package/state/conversation-message-filter.d.ts +10 -0
  3018. package/state/conversation-message-filter.d.ts.map +1 -0
  3019. package/state/conversation-message-filter.js +18 -0
  3020. package/state/first-run-bootstrap.d.ts +17 -0
  3021. package/state/first-run-bootstrap.d.ts.map +1 -0
  3022. package/state/first-run-bootstrap.js +62 -0
  3023. package/state/first-run-restart.d.ts +8 -0
  3024. package/state/first-run-restart.d.ts.map +1 -0
  3025. package/state/first-run-restart.js +8 -0
  3026. package/state/handle-reset-applied-from-main.d.ts +1 -1
  3027. package/state/index.d.ts +9 -6
  3028. package/state/index.d.ts.map +1 -1
  3029. package/state/index.js +9 -6
  3030. package/state/internal.d.ts +8 -5
  3031. package/state/internal.d.ts.map +1 -1
  3032. package/state/internal.js +8 -6
  3033. package/state/notifications/notification-store.d.ts +35 -0
  3034. package/state/notifications/notification-store.d.ts.map +1 -0
  3035. package/state/notifications/notification-store.js +179 -0
  3036. package/state/parsers.d.ts.map +1 -1
  3037. package/state/parsers.js +7 -0
  3038. package/state/persistence.d.ts +42 -13
  3039. package/state/persistence.d.ts.map +1 -1
  3040. package/state/persistence.js +141 -91
  3041. package/state/private-network-host.d.ts +11 -0
  3042. package/state/private-network-host.d.ts.map +1 -0
  3043. package/state/private-network-host.js +35 -0
  3044. package/state/setup-resume.d.ts +9 -0
  3045. package/state/setup-resume.d.ts.map +1 -0
  3046. package/state/setup-resume.js +98 -0
  3047. package/state/shell-routing.d.ts +3 -3
  3048. package/state/shell-routing.d.ts.map +1 -1
  3049. package/state/startup-coordinator.d.ts +46 -22
  3050. package/state/startup-coordinator.d.ts.map +1 -1
  3051. package/state/startup-coordinator.js +94 -44
  3052. package/state/startup-phase-hydrate.d.ts +7 -6
  3053. package/state/startup-phase-hydrate.d.ts.map +1 -1
  3054. package/state/startup-phase-hydrate.js +206 -103
  3055. package/state/startup-phase-poll.d.ts +76 -23
  3056. package/state/startup-phase-poll.d.ts.map +1 -1
  3057. package/state/startup-phase-poll.js +359 -83
  3058. package/state/startup-phase-restore.d.ts +16 -8
  3059. package/state/startup-phase-restore.d.ts.map +1 -1
  3060. package/state/startup-phase-restore.js +169 -101
  3061. package/state/startup-phase-runtime.d.ts +7 -3
  3062. package/state/startup-phase-runtime.d.ts.map +1 -1
  3063. package/state/startup-phase-runtime.js +227 -17
  3064. package/state/types.d.ts +131 -104
  3065. package/state/types.d.ts.map +1 -1
  3066. package/state/types.js +47 -13
  3067. package/state/ui-preferences.d.ts +6 -0
  3068. package/state/ui-preferences.d.ts.map +1 -1
  3069. package/state/use-startup-shell-controller.d.ts +7 -0
  3070. package/state/use-startup-shell-controller.d.ts.map +1 -0
  3071. package/state/use-startup-shell-controller.js +170 -0
  3072. package/state/useApp.d.ts.map +1 -1
  3073. package/state/useApp.js +6 -2
  3074. package/state/useAppLifecycleEvents.d.ts +32 -0
  3075. package/state/useAppLifecycleEvents.d.ts.map +1 -0
  3076. package/state/useAppLifecycleEvents.js +102 -0
  3077. package/state/useAppProviderEffects.d.ts.map +1 -1
  3078. package/state/useAppProviderEffects.js +20 -13
  3079. package/state/useAppShellState.d.ts +6 -6
  3080. package/state/useCharacterState.js +1 -1
  3081. package/state/useChatCallbacks.d.ts +28 -29
  3082. package/state/useChatCallbacks.d.ts.map +1 -1
  3083. package/state/useChatCallbacks.js +32 -41
  3084. package/state/useChatLifecycle.d.ts +26 -27
  3085. package/state/useChatLifecycle.d.ts.map +1 -1
  3086. package/state/useChatLifecycle.js +127 -125
  3087. package/state/useChatSend.d.ts +3 -4
  3088. package/state/useChatSend.d.ts.map +1 -1
  3089. package/state/useChatSend.js +303 -99
  3090. package/state/useChatState.d.ts +1 -6
  3091. package/state/useChatState.d.ts.map +1 -1
  3092. package/state/useChatState.js +1 -9
  3093. package/state/useCloudState.d.ts +7 -3
  3094. package/state/useCloudState.d.ts.map +1 -1
  3095. package/state/useCloudState.js +187 -27
  3096. package/state/useContentPack.d.ts +27 -0
  3097. package/state/useContentPack.d.ts.map +1 -0
  3098. package/state/useContentPack.js +210 -0
  3099. package/state/useDataLoaders.d.ts +6 -6
  3100. package/state/useDataLoaders.d.ts.map +1 -1
  3101. package/state/useDataLoaders.js +37 -25
  3102. package/state/useDisplayPreferences.d.ts +3 -3
  3103. package/state/useDisplayPreferences.d.ts.map +1 -1
  3104. package/state/useDisplayPreferences.js +29 -15
  3105. package/state/useFirstRunCallbacks.d.ts +102 -0
  3106. package/state/useFirstRunCallbacks.d.ts.map +1 -0
  3107. package/state/useFirstRunCallbacks.js +838 -0
  3108. package/state/useFirstRunState.d.ts +126 -0
  3109. package/state/useFirstRunState.d.ts.map +1 -0
  3110. package/state/useFirstRunState.js +259 -0
  3111. package/state/useLifecycleState.d.ts +18 -10
  3112. package/state/useLifecycleState.d.ts.map +1 -1
  3113. package/state/useLifecycleState.js +53 -26
  3114. package/state/useMiscUiState.js +1 -1
  3115. package/state/useNavigationState.d.ts +3 -4
  3116. package/state/useNavigationState.d.ts.map +1 -1
  3117. package/state/useNavigationState.js +34 -27
  3118. package/state/usePluginsSkillsState.d.ts +6 -3
  3119. package/state/usePluginsSkillsState.d.ts.map +1 -1
  3120. package/state/usePluginsSkillsState.js +58 -13
  3121. package/state/useStartupCoordinator.d.ts +4 -1
  3122. package/state/useStartupCoordinator.d.ts.map +1 -1
  3123. package/state/useStartupCoordinator.js +125 -29
  3124. package/state/useStreamingText.d.ts +74 -0
  3125. package/state/useStreamingText.d.ts.map +1 -0
  3126. package/state/useStreamingText.js +104 -0
  3127. package/state/useTabSync.d.ts +32 -0
  3128. package/state/useTabSync.d.ts.map +1 -0
  3129. package/state/useTabSync.js +81 -0
  3130. package/state/useTriggersState.d.ts +3 -3
  3131. package/state/useTriggersState.d.ts.map +1 -1
  3132. package/state/useWalletState.d.ts +2 -2
  3133. package/state/useWalletState.d.ts.map +1 -1
  3134. package/state/useWalletState.js +13 -4
  3135. package/state/view-chat-binding.d.ts +29 -0
  3136. package/state/view-chat-binding.d.ts.map +1 -0
  3137. package/state/view-chat-binding.js +41 -0
  3138. package/storage/workspace-folder.d.ts +30 -0
  3139. package/storage/workspace-folder.d.ts.map +1 -0
  3140. package/storage/workspace-folder.js +74 -0
  3141. package/stories/layout-story-fixtures.d.ts +0 -5
  3142. package/stories/layout-story-fixtures.d.ts.map +1 -1
  3143. package/stories/layout-story-fixtures.data.d.ts +6 -0
  3144. package/stories/layout-story-fixtures.data.d.ts.map +1 -0
  3145. package/stories/layout-story-fixtures.data.js +7 -0
  3146. package/stories/layout-story-fixtures.js +9 -8
  3147. package/storybook/mock-providers.d.ts +24 -0
  3148. package/storybook/mock-providers.d.ts.map +1 -0
  3149. package/storybook/mock-providers.helpers.d.ts +10 -0
  3150. package/storybook/mock-providers.helpers.d.ts.map +1 -0
  3151. package/storybook/mock-providers.helpers.js +11 -0
  3152. package/storybook/mock-providers.js +76 -0
  3153. package/styles/base.css +373 -162
  3154. package/styles/brand-gold.css +245 -197
  3155. package/styles/electrobun-mac-window-drag.css +3 -3
  3156. package/styles/styles.css +75 -149
  3157. package/styles/tailwind-theme.css +140 -0
  3158. package/styles/theme.css +78 -61
  3159. package/styles.d.ts +4 -0
  3160. package/styles.d.ts.map +1 -0
  3161. package/styles.js +9 -0
  3162. package/themes/apply-theme.d.ts +0 -5
  3163. package/themes/apply-theme.d.ts.map +1 -1
  3164. package/themes/apply-theme.js +1 -9
  3165. package/themes/index.d.ts +14 -0
  3166. package/themes/index.d.ts.map +1 -0
  3167. package/themes/index.js +12 -0
  3168. package/themes/presets.d.ts +7 -0
  3169. package/themes/presets.d.ts.map +1 -0
  3170. package/themes/presets.js +157 -0
  3171. package/types/host-external-modules.d.ts +5 -0
  3172. package/types/host-external-modules.d.ts.map +1 -0
  3173. package/types/host-external-modules.js +1 -0
  3174. package/types/index.d.ts +1 -654
  3175. package/types/index.d.ts.map +1 -1
  3176. package/types/index.js +1 -4
  3177. package/types/plugin-views.d.ts +17 -0
  3178. package/types/plugin-views.d.ts.map +1 -0
  3179. package/types/plugin-views.js +1 -0
  3180. package/utils/browser-tab-kit-types.d.ts +1 -80
  3181. package/utils/browser-tab-kit-types.d.ts.map +1 -1
  3182. package/utils/browser-tab-kit-types.js +0 -21
  3183. package/utils/browser-tabs-renderer-registry.d.ts +1 -55
  3184. package/utils/browser-tabs-renderer-registry.d.ts.map +1 -1
  3185. package/utils/browser-tabs-renderer-registry.js +1 -1223
  3186. package/utils/character-message-examples.d.ts +1 -6
  3187. package/utils/character-message-examples.d.ts.map +1 -1
  3188. package/utils/character-message-examples.js +1 -122
  3189. package/utils/cloud-agent-base.d.ts +50 -0
  3190. package/utils/cloud-agent-base.d.ts.map +1 -0
  3191. package/utils/cloud-agent-base.js +140 -0
  3192. package/utils/cloud-status.d.ts +1 -2
  3193. package/utils/cloud-status.d.ts.map +1 -1
  3194. package/utils/cloud-status.js +1 -10
  3195. package/utils/desktop-workspace.d.ts +1 -1
  3196. package/utils/desktop-workspace.d.ts.map +1 -1
  3197. package/utils/desktop-workspace.js +0 -5
  3198. package/utils/documents-upload-image.d.ts +1 -26
  3199. package/utils/documents-upload-image.d.ts.map +1 -1
  3200. package/utils/documents-upload-image.js +1 -146
  3201. package/utils/eliza-cloud-model-route.d.ts +1 -2
  3202. package/utils/eliza-cloud-model-route.d.ts.map +1 -1
  3203. package/utils/eliza-cloud-model-route.js +1 -9
  3204. package/utils/eliza-globals.d.ts +1 -12
  3205. package/utils/eliza-globals.d.ts.map +1 -1
  3206. package/utils/eliza-globals.js +1 -48
  3207. package/utils/errors.d.ts +1 -12
  3208. package/utils/errors.d.ts.map +1 -1
  3209. package/utils/errors.js +1 -25
  3210. package/utils/format.d.ts +8 -62
  3211. package/utils/format.d.ts.map +1 -1
  3212. package/utils/format.js +34 -117
  3213. package/utils/globals.js +1 -1
  3214. package/utils/host-capabilities.d.ts +39 -0
  3215. package/utils/host-capabilities.d.ts.map +1 -0
  3216. package/utils/host-capabilities.js +85 -0
  3217. package/utils/image-attachment.d.ts +35 -0
  3218. package/utils/image-attachment.d.ts.map +1 -0
  3219. package/utils/image-attachment.js +124 -0
  3220. package/utils/index.d.ts +5 -4
  3221. package/utils/index.d.ts.map +1 -1
  3222. package/utils/index.js +5 -4
  3223. package/utils/labels.d.ts +1 -5
  3224. package/utils/labels.d.ts.map +1 -1
  3225. package/utils/labels.js +1 -41
  3226. package/utils/log-prefix.d.ts +1 -1
  3227. package/utils/log-prefix.d.ts.map +1 -1
  3228. package/utils/log-prefix.js +1 -53
  3229. package/utils/name-tokens.d.ts +1 -23
  3230. package/utils/name-tokens.d.ts.map +1 -1
  3231. package/utils/name-tokens.js +1 -36
  3232. package/utils/namespace-defaults.d.ts +1 -5
  3233. package/utils/namespace-defaults.d.ts.map +1 -1
  3234. package/utils/namespace-defaults.js +1 -15
  3235. package/utils/openExternalUrl.d.ts.map +1 -1
  3236. package/utils/openExternalUrl.js +3 -6
  3237. package/utils/owner-name.d.ts +1 -2
  3238. package/utils/owner-name.d.ts.map +1 -1
  3239. package/utils/owner-name.js +1 -7
  3240. package/utils/rate-limiter.d.ts +1 -31
  3241. package/utils/rate-limiter.d.ts.map +1 -1
  3242. package/utils/rate-limiter.js +1 -52
  3243. package/utils/serialise.d.ts +1 -11
  3244. package/utils/serialise.d.ts.map +1 -1
  3245. package/utils/serialise.js +1 -21
  3246. package/utils/sql-compat.d.ts +1 -9
  3247. package/utils/sql-compat.d.ts.map +1 -1
  3248. package/utils/sql-compat.js +1 -111
  3249. package/utils/streaming-text.d.ts +1 -8
  3250. package/utils/streaming-text.d.ts.map +1 -1
  3251. package/utils/streaming-text.js +1 -112
  3252. package/utils/subscription-auth.d.ts +1 -8
  3253. package/utils/subscription-auth.d.ts.map +1 -1
  3254. package/utils/subscription-auth.js +1 -48
  3255. package/utils/trajectory-format.d.ts +1 -5
  3256. package/utils/trajectory-format.d.ts.map +1 -1
  3257. package/utils/trajectory-format.js +1 -43
  3258. package/utils/transient-fetch.d.ts +20 -0
  3259. package/utils/transient-fetch.d.ts.map +1 -0
  3260. package/utils/transient-fetch.js +36 -0
  3261. package/utils/tts-debug.d.ts.map +1 -1
  3262. package/utils/tts-debug.js +3 -24
  3263. package/utils/workflow-executions.d.ts +26 -0
  3264. package/utils/workflow-executions.d.ts.map +1 -0
  3265. package/utils/workflow-executions.js +166 -0
  3266. package/utils/workflow-json.d.ts.map +1 -1
  3267. package/utils/workflow-json.js +10 -0
  3268. package/view-recents.d.ts +6 -0
  3269. package/view-recents.d.ts.map +1 -0
  3270. package/view-recents.js +35 -0
  3271. package/views/view-event-bus.d.ts +40 -0
  3272. package/views/view-event-bus.d.ts.map +1 -0
  3273. package/views/view-event-bus.js +94 -0
  3274. package/views/view-event-types.d.ts +24 -0
  3275. package/views/view-event-types.d.ts.map +1 -0
  3276. package/views/view-event-types.js +22 -0
  3277. package/views/view-interact-protocol.d.ts +39 -0
  3278. package/views/view-interact-protocol.d.ts.map +1 -0
  3279. package/views/view-interact-protocol.js +22 -0
  3280. package/voice/audio-frame-diarization-harness.d.ts +38 -0
  3281. package/voice/audio-frame-diarization-harness.d.ts.map +1 -0
  3282. package/voice/audio-frame-diarization-harness.js +63 -0
  3283. package/voice/audio-frame-pump.d.ts +68 -0
  3284. package/voice/audio-frame-pump.d.ts.map +1 -0
  3285. package/voice/audio-frame-pump.js +137 -0
  3286. package/voice/character-voice-config.d.ts +2 -0
  3287. package/voice/character-voice-config.d.ts.map +1 -1
  3288. package/voice/character-voice-config.js +8 -0
  3289. package/voice/emotion.d.ts +43 -0
  3290. package/voice/emotion.d.ts.map +1 -0
  3291. package/voice/emotion.js +131 -0
  3292. package/voice/end-of-turn.d.ts +81 -0
  3293. package/voice/end-of-turn.d.ts.map +1 -0
  3294. package/voice/end-of-turn.js +224 -0
  3295. package/voice/index.d.ts +8 -0
  3296. package/voice/index.d.ts.map +1 -1
  3297. package/voice/index.js +8 -0
  3298. package/voice/jni-voice-harness.d.ts +52 -0
  3299. package/voice/jni-voice-harness.d.ts.map +1 -0
  3300. package/voice/jni-voice-harness.js +90 -0
  3301. package/voice/jni-voice-pipeline.d.ts +103 -0
  3302. package/voice/jni-voice-pipeline.d.ts.map +1 -0
  3303. package/voice/jni-voice-pipeline.js +238 -0
  3304. package/voice/local-asr-capture.d.ts +46 -0
  3305. package/voice/local-asr-capture.d.ts.map +1 -0
  3306. package/voice/local-asr-capture.js +238 -0
  3307. package/voice/local-asr-transcribe.d.ts +42 -0
  3308. package/voice/local-asr-transcribe.d.ts.map +1 -0
  3309. package/voice/local-asr-transcribe.js +93 -0
  3310. package/voice/should-respond.d.ts +36 -0
  3311. package/voice/should-respond.d.ts.map +1 -0
  3312. package/voice/should-respond.js +71 -0
  3313. package/voice/transcript-session.d.ts +49 -0
  3314. package/voice/transcript-session.d.ts.map +1 -0
  3315. package/voice/transcript-session.js +136 -0
  3316. package/voice/transcription-exit.d.ts +40 -0
  3317. package/voice/transcription-exit.d.ts.map +1 -0
  3318. package/voice/transcription-exit.js +114 -0
  3319. package/voice/useVoiceConfig.d.ts +18 -0
  3320. package/voice/useVoiceConfig.d.ts.map +1 -0
  3321. package/voice/useVoiceConfig.js +79 -0
  3322. package/voice/voice-capture-factory.d.ts +116 -0
  3323. package/voice/voice-capture-factory.d.ts.map +1 -0
  3324. package/voice/voice-capture-factory.js +328 -0
  3325. package/voice/voice-chat-playback.d.ts +3 -0
  3326. package/voice/voice-chat-playback.d.ts.map +1 -1
  3327. package/voice/voice-chat-playback.js +10 -2
  3328. package/voice/voice-chat-types.d.ts +146 -18
  3329. package/voice/voice-chat-types.d.ts.map +1 -1
  3330. package/voice/voice-chat-types.js +11 -9
  3331. package/voice/voice-provider-defaults.d.ts +40 -0
  3332. package/voice/voice-provider-defaults.d.ts.map +1 -0
  3333. package/voice/voice-provider-defaults.js +46 -0
  3334. package/voice/voice-selftest/VoiceSelfTestShell.d.ts +17 -0
  3335. package/voice/voice-selftest/VoiceSelfTestShell.d.ts.map +1 -0
  3336. package/voice/voice-selftest/VoiceSelfTestShell.js +130 -0
  3337. package/voice/voice-selftest/fixtures/known-phrase.d.ts +3 -0
  3338. package/voice/voice-selftest/fixtures/known-phrase.d.ts.map +1 -0
  3339. package/voice/voice-selftest/fixtures/known-phrase.js +5 -0
  3340. package/voice/voice-selftest/voice-selftest-harness.d.ts +66 -0
  3341. package/voice/voice-selftest/voice-selftest-harness.d.ts.map +1 -0
  3342. package/voice/voice-selftest/voice-selftest-harness.js +320 -0
  3343. package/voice/voice-turn-signal.d.ts +27 -0
  3344. package/voice/voice-turn-signal.d.ts.map +1 -0
  3345. package/voice/voice-turn-signal.js +59 -0
  3346. package/widgets/WidgetHost.constants.d.ts +2 -0
  3347. package/widgets/WidgetHost.constants.d.ts.map +1 -0
  3348. package/widgets/WidgetHost.constants.js +1 -0
  3349. package/widgets/WidgetHost.d.ts +7 -0
  3350. package/widgets/WidgetHost.d.ts.map +1 -1
  3351. package/widgets/WidgetHost.js +18 -5
  3352. package/widgets/index.d.ts +3 -2
  3353. package/widgets/index.d.ts.map +1 -1
  3354. package/widgets/index.js +2 -1
  3355. package/widgets/registry-store.js +1 -1
  3356. package/widgets/registry.d.ts +0 -8
  3357. package/widgets/registry.d.ts.map +1 -1
  3358. package/widgets/registry.js +5 -17
  3359. package/widgets/useChatSidebarVisibility.js +1 -1
  3360. package/widgets/visibility.d.ts +3 -3
  3361. package/widgets/visibility.d.ts.map +1 -1
  3362. package/widgets/visibility.js +4 -5
  3363. package/api/client-types-babylon.d.ts +0 -254
  3364. package/api/client-types-babylon.d.ts.map +0 -1
  3365. package/api/client-types-babylon.js +0 -2
  3366. package/components/character/CharacterRelationshipsSection.d.ts +0 -7
  3367. package/components/character/CharacterRelationshipsSection.d.ts.map +0 -1
  3368. package/components/character/CharacterRelationshipsSection.js +0 -4
  3369. package/components/chat/widgets/registry.d.ts +0 -8
  3370. package/components/chat/widgets/registry.d.ts.map +0 -1
  3371. package/components/chat/widgets/registry.js +0 -7
  3372. package/components/composites/chat/chat-sidebar.d.ts +0 -54
  3373. package/components/composites/chat/chat-sidebar.d.ts.map +0 -1
  3374. package/components/composites/chat/chat-sidebar.js +0 -64
  3375. package/components/composites/chat/create-task-popover.d.ts +0 -13
  3376. package/components/composites/chat/create-task-popover.d.ts.map +0 -1
  3377. package/components/composites/chat/create-task-popover.js +0 -44
  3378. package/components/composites/search/search-input.d.ts +0 -11
  3379. package/components/composites/search/search-input.d.ts.map +0 -1
  3380. package/components/composites/search/search-input.js +0 -10
  3381. package/components/composites/sidebar/sidebar-filter-bar.d.ts +0 -3
  3382. package/components/composites/sidebar/sidebar-filter-bar.d.ts.map +0 -1
  3383. package/components/composites/sidebar/sidebar-filter-bar.js +0 -14
  3384. package/components/local-inference/HuggingFaceSearch.d.ts +0 -22
  3385. package/components/local-inference/HuggingFaceSearch.d.ts.map +0 -1
  3386. package/components/local-inference/HuggingFaceSearch.js +0 -68
  3387. package/components/onboarding/BootstrapStep.d.ts +0 -35
  3388. package/components/onboarding/BootstrapStep.d.ts.map +0 -1
  3389. package/components/onboarding/BootstrapStep.js +0 -151
  3390. package/components/onboarding/PasswordSetupStep.d.ts +0 -28
  3391. package/components/onboarding/PasswordSetupStep.d.ts.map +0 -1
  3392. package/components/onboarding/PasswordSetupStep.js +0 -82
  3393. package/components/onboarding/onboarding-form-primitives.d.ts +0 -54
  3394. package/components/onboarding/onboarding-form-primitives.d.ts.map +0 -1
  3395. package/components/onboarding/onboarding-form-primitives.js +0 -55
  3396. package/components/onboarding/onboarding-step-chrome.d.ts +0 -40
  3397. package/components/onboarding/onboarding-step-chrome.d.ts.map +0 -1
  3398. package/components/onboarding/onboarding-step-chrome.js +0 -74
  3399. package/components/pages/AutomationsChatPane.d.ts +0 -19
  3400. package/components/pages/AutomationsChatPane.d.ts.map +0 -1
  3401. package/components/pages/AutomationsChatPane.js +0 -15
  3402. package/components/pages/ChatModalView.d.ts +0 -13
  3403. package/components/pages/ChatModalView.d.ts.map +0 -1
  3404. package/components/pages/ChatModalView.js +0 -17
  3405. package/components/pages/ChatPanelLayout.d.ts +0 -11
  3406. package/components/pages/ChatPanelLayout.d.ts.map +0 -1
  3407. package/components/pages/ChatPanelLayout.js +0 -37
  3408. package/components/pages/ConnectorsPageView.d.ts +0 -8
  3409. package/components/pages/ConnectorsPageView.d.ts.map +0 -1
  3410. package/components/pages/ConnectorsPageView.js +0 -8
  3411. package/components/pages/HomePlaceholderView.d.ts +0 -16
  3412. package/components/pages/HomePlaceholderView.d.ts.map +0 -1
  3413. package/components/pages/HomePlaceholderView.js +0 -17
  3414. package/components/pages/PageScopedChatPane.d.ts +0 -51
  3415. package/components/pages/PageScopedChatPane.d.ts.map +0 -1
  3416. package/components/pages/PageScopedChatPane.js +0 -586
  3417. package/components/pages/VectorBrowserView.d.ts +0 -13
  3418. package/components/pages/VectorBrowserView.d.ts.map +0 -1
  3419. package/components/pages/VectorBrowserView.js +0 -863
  3420. package/components/settings/CloudInstancePanel.d.ts +0 -2
  3421. package/components/settings/CloudInstancePanel.d.ts.map +0 -1
  3422. package/components/settings/CloudInstancePanel.js +0 -48
  3423. package/components/shell/DnaLoader.d.ts +0 -8
  3424. package/components/shell/DnaLoader.d.ts.map +0 -1
  3425. package/components/shell/DnaLoader.js +0 -50
  3426. package/components/shell/Header.d.ts +0 -12
  3427. package/components/shell/Header.d.ts.map +0 -1
  3428. package/components/shell/Header.js +0 -316
  3429. package/components/shell/RuntimeGate.d.ts +0 -51
  3430. package/components/shell/RuntimeGate.d.ts.map +0 -1
  3431. package/components/shell/RuntimeGate.js +0 -1293
  3432. package/components/shell/SplashServerChooser.d.ts +0 -14
  3433. package/components/shell/SplashServerChooser.d.ts.map +0 -1
  3434. package/components/shell/SplashServerChooser.js +0 -23
  3435. package/components/shell/onboarding-theme.d.ts +0 -6
  3436. package/components/shell/onboarding-theme.d.ts.map +0 -1
  3437. package/components/shell/onboarding-theme.js +0 -29
  3438. package/components/ui/drawer-sheet.d.ts +0 -19
  3439. package/components/ui/drawer-sheet.d.ts.map +0 -1
  3440. package/components/ui/drawer-sheet.js +0 -21
  3441. package/components/ui/section-card.d.ts +0 -15
  3442. package/components/ui/section-card.d.ts.map +0 -1
  3443. package/components/ui/section-card.js +0 -10
  3444. package/config/app-config.d.ts +0 -273
  3445. package/config/app-config.d.ts.map +0 -1
  3446. package/config/app-config.js +0 -31
  3447. package/config/boot-config-react.d.ts +0 -5
  3448. package/config/boot-config-react.d.ts.map +0 -1
  3449. package/config/boot-config-react.js +0 -7
  3450. package/config/branding-react.d.ts +0 -4
  3451. package/config/branding-react.d.ts.map +0 -1
  3452. package/config/branding-react.js +0 -11
  3453. package/desktop-runtime/AppWindowRenderer.d.ts +0 -17
  3454. package/desktop-runtime/AppWindowRenderer.d.ts.map +0 -1
  3455. package/desktop-runtime/AppWindowRenderer.js +0 -327
  3456. package/desktop-runtime/DesktopOnboardingRuntime.d.ts +0 -9
  3457. package/desktop-runtime/DesktopOnboardingRuntime.d.ts.map +0 -1
  3458. package/desktop-runtime/DesktopOnboardingRuntime.js +0 -10
  3459. package/desktop-runtime/DesktopSurfaceNavigationRuntime.d.ts +0 -2
  3460. package/desktop-runtime/DesktopSurfaceNavigationRuntime.d.ts.map +0 -1
  3461. package/desktop-runtime/DesktopSurfaceNavigationRuntime.js +0 -48
  3462. package/desktop-runtime/DesktopTrayRuntime.d.ts +0 -11
  3463. package/desktop-runtime/DesktopTrayRuntime.d.ts.map +0 -1
  3464. package/desktop-runtime/DesktopTrayRuntime.js +0 -265
  3465. package/desktop-runtime/DetachedShellRoot.d.ts +0 -10
  3466. package/desktop-runtime/DetachedShellRoot.d.ts.map +0 -1
  3467. package/desktop-runtime/DetachedShellRoot.js +0 -114
  3468. package/desktop-runtime/index.d.ts +0 -6
  3469. package/desktop-runtime/index.d.ts.map +0 -1
  3470. package/desktop-runtime/index.js +0 -5
  3471. package/hooks/useBugReport.d.ts +0 -26
  3472. package/hooks/useBugReport.d.ts.map +0 -1
  3473. package/hooks/useBugReport.js +0 -28
  3474. package/hooks/useStreamPopoutNavigation.d.ts +0 -3
  3475. package/hooks/useStreamPopoutNavigation.d.ts.map +0 -1
  3476. package/hooks/useStreamPopoutNavigation.js +0 -4
  3477. package/hooks/useWorkflowGenerationState.d.ts +0 -20
  3478. package/hooks/useWorkflowGenerationState.d.ts.map +0 -1
  3479. package/hooks/useWorkflowGenerationState.js +0 -43
  3480. package/layouts/workspace-layout/workspace-mobile-sidebar-controls.d.ts +0 -13
  3481. package/layouts/workspace-layout/workspace-mobile-sidebar-controls.d.ts.map +0 -1
  3482. package/onboarding/auto-download-recommended.d.ts +0 -30
  3483. package/onboarding/auto-download-recommended.d.ts.map +0 -1
  3484. package/onboarding/auto-download-recommended.js +0 -105
  3485. package/onboarding/flow.d.ts +0 -66
  3486. package/onboarding/flow.d.ts.map +0 -1
  3487. package/onboarding/flow.js +0 -100
  3488. package/onboarding/local-agent-token.d.ts +0 -6
  3489. package/onboarding/local-agent-token.d.ts.map +0 -1
  3490. package/onboarding/local-agent-token.js +0 -79
  3491. package/onboarding/mobile-runtime-mode.d.ts +0 -19
  3492. package/onboarding/mobile-runtime-mode.d.ts.map +0 -1
  3493. package/onboarding/mobile-runtime-mode.js +0 -91
  3494. package/onboarding/pre-seed-local-runtime.d.ts +0 -53
  3495. package/onboarding/pre-seed-local-runtime.d.ts.map +0 -1
  3496. package/onboarding/pre-seed-local-runtime.js +0 -111
  3497. package/onboarding/probe-local-agent.d.ts +0 -51
  3498. package/onboarding/probe-local-agent.d.ts.map +0 -1
  3499. package/onboarding/probe-local-agent.js +0 -235
  3500. package/onboarding/reload-into-runtime-picker.d.ts +0 -25
  3501. package/onboarding/reload-into-runtime-picker.d.ts.map +0 -1
  3502. package/onboarding/reload-into-runtime-picker.js +0 -45
  3503. package/onboarding/server-target.d.ts +0 -4
  3504. package/onboarding/server-target.d.ts.map +0 -1
  3505. package/onboarding/server-target.js +0 -13
  3506. package/onboarding-config.d.ts +0 -61
  3507. package/onboarding-config.d.ts.map +0 -1
  3508. package/onboarding-config.js +0 -172
  3509. package/platform/onboarding-reset.d.ts +0 -11
  3510. package/platform/onboarding-reset.d.ts.map +0 -1
  3511. package/platform/onboarding-reset.js +0 -127
  3512. package/services/local-inference/dflash-doctor.d.ts +0 -22
  3513. package/services/local-inference/dflash-doctor.d.ts.map +0 -1
  3514. package/services/local-inference/dflash-doctor.js +0 -139
  3515. package/services/local-inference/dflash-server.d.ts +0 -76
  3516. package/services/local-inference/dflash-server.d.ts.map +0 -1
  3517. package/services/local-inference/dflash-server.js +0 -451
  3518. package/services/local-inference/providers.d.ts +0 -61
  3519. package/services/local-inference/providers.d.ts.map +0 -1
  3520. package/services/local-inference/providers.js +0 -306
  3521. package/state/ChatComposerContext.d.ts +0 -28
  3522. package/state/ChatComposerContext.d.ts.map +0 -1
  3523. package/state/ChatComposerContext.js +0 -30
  3524. package/state/CompanionSceneConfigContext.d.ts +0 -27
  3525. package/state/CompanionSceneConfigContext.d.ts.map +0 -1
  3526. package/state/CompanionSceneConfigContext.js +0 -32
  3527. package/state/PtySessionsContext.d.ts +0 -15
  3528. package/state/PtySessionsContext.d.ts.map +0 -1
  3529. package/state/PtySessionsContext.js +0 -15
  3530. package/state/TranslationContext.d.ts +0 -37
  3531. package/state/TranslationContext.d.ts.map +0 -1
  3532. package/state/TranslationContext.js +0 -63
  3533. package/state/connector-deeplink.d.ts +0 -30
  3534. package/state/connector-deeplink.d.ts.map +0 -1
  3535. package/state/connector-deeplink.js +0 -46
  3536. package/state/navigation-events.d.ts +0 -12
  3537. package/state/navigation-events.d.ts.map +0 -1
  3538. package/state/navigation-events.js +0 -25
  3539. package/state/onboarding-bootstrap.d.ts +0 -28
  3540. package/state/onboarding-bootstrap.d.ts.map +0 -1
  3541. package/state/onboarding-bootstrap.js +0 -76
  3542. package/state/onboarding-restart.d.ts +0 -8
  3543. package/state/onboarding-restart.d.ts.map +0 -1
  3544. package/state/onboarding-restart.js +0 -8
  3545. package/state/onboarding-resume.d.ts +0 -9
  3546. package/state/onboarding-resume.d.ts.map +0 -1
  3547. package/state/onboarding-resume.js +0 -93
  3548. package/state/useOnboardingCallbacks.d.ts +0 -100
  3549. package/state/useOnboardingCallbacks.d.ts.map +0 -1
  3550. package/state/useOnboardingCallbacks.js +0 -804
  3551. package/state/useOnboardingCompat.d.ts +0 -61
  3552. package/state/useOnboardingCompat.d.ts.map +0 -1
  3553. package/state/useOnboardingCompat.js +0 -110
  3554. package/state/useOnboardingState.d.ts +0 -126
  3555. package/state/useOnboardingState.d.ts.map +0 -1
  3556. package/state/useOnboardingState.js +0 -263
  3557. package/state/useVincentState.d.ts +0 -3
  3558. package/state/useVincentState.d.ts.map +0 -1
  3559. package/state/useVincentState.js +0 -13
  3560. package/styles/onboarding-game.css +0 -568
  3561. package/terminal/links.d.ts +0 -9
  3562. package/terminal/links.d.ts.map +0 -1
  3563. package/terminal/links.js +0 -20
  3564. package/utils/assistant-text.d.ts +0 -2
  3565. package/utils/assistant-text.d.ts.map +0 -1
  3566. package/utils/assistant-text.js +0 -167
  3567. package/utils/eliza-root.d.ts +0 -9
  3568. package/utils/eliza-root.d.ts.map +0 -1
  3569. package/utils/eliza-root.js +0 -101
  3570. package/utils/exec-safety.d.ts +0 -2
  3571. package/utils/exec-safety.d.ts.map +0 -1
  3572. package/utils/exec-safety.js +0 -21
  3573. package/utils/number-parsing.d.ts +0 -26
  3574. package/utils/number-parsing.d.ts.map +0 -1
  3575. package/utils/number-parsing.js +0 -51
  3576. /package/layouts/workspace-layout/{workspace-mobile-sidebar-controls.js → workspace-mobile-sidebar-controls.hooks.js} +0 -0
@@ -1,12 +1,15 @@
1
1
  /**
2
2
  * Agent domain methods — lifecycle, auth, config, connectors, triggers,
3
- * training, plugins, streaming/PTY, logs, character, permissions, updates.
3
+ * training, plugins, streaming, logs, character, permissions, updates.
4
4
  */
5
5
  import { isElizaSettingsDebugEnabled, sanitizeForSettingsDebug, settingsDebugCloudSummary, } from "@elizaos/shared";
6
+ import { invokeDesktopBridgeRequest, invokeDesktopBridgeRequestWithTimeout, } from "../bridge/electrobun-rpc.js";
6
7
  import { getAppBlockerPlugin, getWebsiteBlockerPlugin, } from "../bridge/native-plugins.js";
7
8
  import { TERMINAL_STATUSES } from "../chat/coding-agent-session-state.js";
9
+ import { androidNativeAgentLifecycleForUrl } from "./android-native-agent-transport.js";
8
10
  import { ElizaClient } from "./client-base.js";
9
- import { mapPtySessionsToCodingAgentSessions, mapTaskThreadsToCodingAgentSessions, } from "./client-types.js";
11
+ import { isDirectCloudSharedAgentBase } from "./client-cloud.js";
12
+ import { ApiError, mapAcpSessionsToCodingAgentSessions, mapTaskThreadsToCodingAgentSessions, } from "./client-types.js";
10
13
  // ---------------------------------------------------------------------------
11
14
  // Module-level helpers
12
15
  // ---------------------------------------------------------------------------
@@ -23,6 +26,12 @@ function clientSettingsDebug() {
23
26
  env: typeof process !== "undefined" ? process.env : undefined,
24
27
  });
25
28
  }
29
+ function isTradePermissionMode(value) {
30
+ return (value === "user-sign-only" ||
31
+ value === "manual-local-key" ||
32
+ value === "agent-auto" ||
33
+ value === "disabled");
34
+ }
26
35
  const WEBSITE_BLOCKING_PERMISSION_ID = "website-blocking";
27
36
  function getNativeWebsiteBlockerPluginIfAvailable() {
28
37
  const plugin = getWebsiteBlockerPlugin();
@@ -84,16 +93,106 @@ function logSettingsClient(phase, detail) {
84
93
  console.debug(`[eliza][settings][client] ${phase}`, sanitizeForSettingsDebug(detail));
85
94
  }
86
95
  const SETTINGS_MUTATION_TIMEOUT_MS = 30_000;
96
+ const DESKTOP_STATUS_RPC_TIMEOUT_MS = 1_500;
97
+ async function getDesktopStatusRpc(rpcMethod, params) {
98
+ const outcome = await invokeDesktopBridgeRequestWithTimeout({
99
+ rpcMethod,
100
+ ipcChannel: "agent",
101
+ params,
102
+ timeoutMs: DESKTOP_STATUS_RPC_TIMEOUT_MS,
103
+ });
104
+ return outcome.status === "ok" && outcome.value ? outcome.value : null;
105
+ }
87
106
  // ---------------------------------------------------------------------------
88
107
  // Prototype augmentation
89
108
  // ---------------------------------------------------------------------------
90
109
  ElizaClient.prototype.getStatus = async function () {
110
+ // A shared-runtime cloud agent is provisioned and running cloud-side with no
111
+ // agent server, so /api/status 404s and the readiness poll would wedge on
112
+ // "Initializing agent…". Report it running (the provision response confirms
113
+ // status:"running") so startup proceeds to chat — its REST adapter already
114
+ // serves /api/conversations + /api/conversations/:id/messages.
115
+ if (isDirectCloudSharedAgentBase(this.getBaseUrl())) {
116
+ return {
117
+ state: "running",
118
+ agentName: "Eliza",
119
+ model: undefined,
120
+ // Cloud-shared agent is provisioned + serving cloud-side — first-turn
121
+ // capability is online, so the composer should be live immediately.
122
+ canRespond: true,
123
+ uptime: undefined,
124
+ startedAt: undefined,
125
+ };
126
+ }
127
+ try {
128
+ const viaRpc = await getDesktopStatusRpc("getAgentStatus");
129
+ if (viaRpc)
130
+ return viaRpc;
131
+ }
132
+ catch {
133
+ /* fall through */
134
+ }
135
+ const nativeAgent = await androidNativeAgentLifecycleForUrl(this.getBaseUrl());
136
+ if (nativeAgent?.getStatus) {
137
+ const native = (await nativeAgent.getStatus());
138
+ // The native lifecycle plugin reports the bun *process* state but not the
139
+ // agent's first-turn readiness (`canRespond`) or loaded `model` — those
140
+ // exist only in the HTTP `/api/status` the running agent serves. Without
141
+ // them `deriveAgentReady` never flips, so the chat's `ready` gate stays
142
+ // false forever ("waking up…") and voice / hands-free is blocked even though
143
+ // the agent can answer. When the process is up but its status doesn't yet
144
+ // confirm `canRespond`, fill the readiness fields from `/api/status`.
145
+ if (native.state === "running" && native.canRespond !== true) {
146
+ try {
147
+ const http = (await this.fetch("/api/status"));
148
+ if (http && typeof http === "object") {
149
+ return { ...native, ...http };
150
+ }
151
+ }
152
+ catch {
153
+ /* /api/status unreachable — fall back to the native lifecycle status */
154
+ }
155
+ }
156
+ return native;
157
+ }
91
158
  return this.fetch("/api/status");
92
159
  };
160
+ ElizaClient.prototype.getBootProgress = async function () {
161
+ try {
162
+ return await getDesktopStatusRpc("bootProgress");
163
+ }
164
+ catch {
165
+ return null;
166
+ }
167
+ };
168
+ ElizaClient.prototype.getLaunchProgress = async function () {
169
+ try {
170
+ return await getDesktopStatusRpc("launchProgress");
171
+ }
172
+ catch {
173
+ return null;
174
+ }
175
+ };
93
176
  ElizaClient.prototype.getAgentSelfStatus = async function () {
177
+ try {
178
+ const viaRpc = await getDesktopStatusRpc("getAgentSelfStatus");
179
+ if (viaRpc)
180
+ return viaRpc;
181
+ }
182
+ catch {
183
+ /* fall through */
184
+ }
94
185
  return this.fetch("/api/agent/self-status");
95
186
  };
96
187
  ElizaClient.prototype.getRuntimeSnapshot = async function (opts) {
188
+ try {
189
+ const viaRpc = await getDesktopStatusRpc("getRuntimeSnapshot", opts);
190
+ if (viaRpc)
191
+ return viaRpc;
192
+ }
193
+ catch {
194
+ /* fall through */
195
+ }
97
196
  const params = new URLSearchParams();
98
197
  if (typeof opts?.depth === "number")
99
198
  params.set("depth", String(opts.depth));
@@ -110,12 +209,42 @@ ElizaClient.prototype.getRuntimeSnapshot = async function (opts) {
110
209
  return this.fetch(`/api/runtime${qs ? `?${qs}` : ""}`);
111
210
  };
112
211
  ElizaClient.prototype.setAutomationMode = async function (mode) {
212
+ try {
213
+ const viaRpc = await invokeDesktopBridgeRequest({
214
+ rpcMethod: "setAgentAutomationMode",
215
+ ipcChannel: "agent:setAgentAutomationMode",
216
+ params: { mode },
217
+ });
218
+ if (viaRpc)
219
+ return { mode: viaRpc.mode };
220
+ }
221
+ catch {
222
+ /* fall through */
223
+ }
113
224
  return this.fetch("/api/permissions/automation-mode", {
114
225
  method: "PUT",
115
226
  body: JSON.stringify({ mode }),
116
227
  });
117
228
  };
118
229
  ElizaClient.prototype.setTradeMode = async function (mode) {
230
+ if (isTradePermissionMode(mode)) {
231
+ try {
232
+ const viaRpc = await invokeDesktopBridgeRequest({
233
+ rpcMethod: "setTradePermissionMode",
234
+ ipcChannel: "agent:setTradePermissionMode",
235
+ params: { mode },
236
+ });
237
+ if (viaRpc) {
238
+ return {
239
+ ok: viaRpc.ok ?? true,
240
+ tradePermissionMode: viaRpc.tradePermissionMode,
241
+ };
242
+ }
243
+ }
244
+ catch {
245
+ /* fall through */
246
+ }
247
+ }
119
248
  return this.fetch("/api/permissions/trade-mode", {
120
249
  method: "PUT",
121
250
  body: JSON.stringify({ mode }),
@@ -133,8 +262,30 @@ ElizaClient.prototype.runTerminalCommand = async function (command) {
133
262
  body: JSON.stringify({ command }),
134
263
  });
135
264
  };
136
- ElizaClient.prototype.getOnboardingStatus = async function () {
137
- return this.fetch("/api/onboarding/status");
265
+ ElizaClient.prototype.getFirstRunStatus = async function () {
266
+ // A shared-runtime cloud agent is provisioned on our behalf, so first-run is
267
+ // complete by definition AND its REST adapter has no /api/first-run* surface.
268
+ // Short-circuit here: otherwise the native-bridge RPC path (a local on-device
269
+ // agent that auto-starts on stock phones) answers with ITS first-run state
270
+ // ({complete:false}), and the HTTP path 404s — either way the app wrongly
271
+ // re-enters onboarding instead of going to the cloud chat.
272
+ if (isDirectCloudSharedAgentBase(this.getBaseUrl())) {
273
+ return { complete: true, cloudProvisioned: true };
274
+ }
275
+ // Prefer typed Electrobun RPC. The bun-side composer throws
276
+ // AgentNotReadyError if the agent has no port yet; we catch and
277
+ // fall through to HTTP so the renderer's polling loop sees the
278
+ // same "transport not ready" semantic as before RPC was wired.
279
+ // Server contract: eliza/packages/agent/src/api/first-run-routes.ts.
280
+ try {
281
+ const viaRpc = await invokeDesktopBridgeRequest({ rpcMethod: "getFirstRunStatus", ipcChannel: "agent" });
282
+ if (viaRpc)
283
+ return viaRpc;
284
+ }
285
+ catch {
286
+ /* AgentNotReadyError or any RPC failure → fall through to HTTP */
287
+ }
288
+ return this.fetch("/api/first-run/status");
138
289
  };
139
290
  ElizaClient.prototype.getWalletKeys = async function () {
140
291
  return this.fetch("/api/wallet/keys");
@@ -149,6 +300,20 @@ ElizaClient.prototype.postWalletOsStoreAction = async function (action) {
149
300
  });
150
301
  };
151
302
  ElizaClient.prototype.getAuthStatus = async function () {
303
+ // Prefer typed Electrobun RPC. Throws AgentNotReadyError when the
304
+ // agent has no port yet — we catch and fall through to HTTP so the
305
+ // existing retry/backoff loop handles the "not ready" semantic
306
+ // exactly as it did before RPC was in the picture. NEVER fabricates
307
+ // a 401-shaped fallback response (see the auth-client.ts authMe wrapper
308
+ // history if you need the bug story).
309
+ try {
310
+ const viaRpc = await invokeDesktopBridgeRequest({ rpcMethod: "getAuthStatus", ipcChannel: "agent" });
311
+ if (viaRpc)
312
+ return viaRpc;
313
+ }
314
+ catch {
315
+ /* AgentNotReadyError or any RPC failure → fall through to HTTP */
316
+ }
152
317
  const maxRetries = 3;
153
318
  const baseBackoffMs = 1000;
154
319
  let lastErr;
@@ -213,11 +378,22 @@ ElizaClient.prototype.pair = async function (code) {
213
378
  });
214
379
  return res;
215
380
  };
216
- ElizaClient.prototype.getOnboardingOptions = async function () {
217
- return this.fetch("/api/onboarding/options");
381
+ ElizaClient.prototype.getFirstRunOptions = async function () {
382
+ try {
383
+ const viaRpc = await invokeDesktopBridgeRequest({
384
+ rpcMethod: "getFirstRunOptions",
385
+ ipcChannel: "agent",
386
+ });
387
+ if (viaRpc)
388
+ return viaRpc;
389
+ }
390
+ catch {
391
+ /* AgentNotReadyError or any RPC failure → fall through to HTTP */
392
+ }
393
+ return this.fetch("/api/first-run/options");
218
394
  };
219
- ElizaClient.prototype.submitOnboarding = async function (data) {
220
- await this.fetch("/api/onboarding", {
395
+ ElizaClient.prototype.submitFirstRun = async function (data) {
396
+ await this.fetch("/api/first-run", {
221
397
  method: "POST",
222
398
  body: JSON.stringify(data),
223
399
  });
@@ -240,6 +416,17 @@ ElizaClient.prototype.submitAnthropicSetupToken = async function (token) {
240
416
  });
241
417
  };
242
418
  ElizaClient.prototype.getSubscriptionStatus = async function () {
419
+ try {
420
+ const viaRpc = await invokeDesktopBridgeRequest({
421
+ rpcMethod: "getSubscriptionStatus",
422
+ ipcChannel: "agent",
423
+ });
424
+ if (viaRpc)
425
+ return viaRpc;
426
+ }
427
+ catch {
428
+ /* fall through */
429
+ }
243
430
  return this.fetch("/api/subscription/status");
244
431
  };
245
432
  ElizaClient.prototype.deleteSubscription = async function (provider) {
@@ -247,7 +434,7 @@ ElizaClient.prototype.deleteSubscription = async function (provider) {
247
434
  method: "DELETE",
248
435
  });
249
436
  };
250
- ElizaClient.prototype.switchProvider = async function (provider, apiKey, primaryModel, options) {
437
+ ElizaClient.prototype.switchProvider = async function (provider, apiKey, primaryModel) {
251
438
  logSettingsClient("POST /api/provider/switch → start", {
252
439
  baseUrl: this.getBaseUrl(),
253
440
  provider,
@@ -255,7 +442,6 @@ ElizaClient.prototype.switchProvider = async function (provider, apiKey, primary
255
442
  apiKey,
256
443
  hasPrimaryModel: Boolean(primaryModel?.trim()),
257
444
  primaryModel,
258
- useLocalEmbeddings: options?.useLocalEmbeddings,
259
445
  });
260
446
  const result = (await this.fetch("/api/provider/switch", {
261
447
  method: "POST",
@@ -264,9 +450,6 @@ ElizaClient.prototype.switchProvider = async function (provider, apiKey, primary
264
450
  provider,
265
451
  ...(apiKey ? { apiKey } : {}),
266
452
  ...(primaryModel ? { primaryModel } : {}),
267
- ...(options?.useLocalEmbeddings != null
268
- ? { useLocalEmbeddings: options.useLocalEmbeddings }
269
- : {}),
270
453
  }),
271
454
  }));
272
455
  logSettingsClient("POST /api/provider/switch ← ok", {
@@ -286,12 +469,26 @@ ElizaClient.prototype.exchangeOpenAICode = async function (code) {
286
469
  });
287
470
  };
288
471
  ElizaClient.prototype.startAgent = async function () {
472
+ const nativeAgent = await androidNativeAgentLifecycleForUrl(this.getBaseUrl());
473
+ if (nativeAgent?.start) {
474
+ return (await nativeAgent.start());
475
+ }
289
476
  const res = await this.fetch("/api/agent/start", {
290
477
  method: "POST",
291
478
  });
292
479
  return res.status;
293
480
  };
294
481
  ElizaClient.prototype.stopAgent = async function () {
482
+ const nativeAgent = await androidNativeAgentLifecycleForUrl(this.getBaseUrl());
483
+ if (nativeAgent?.stop) {
484
+ await nativeAgent.stop();
485
+ return {
486
+ state: "stopped",
487
+ agentName: "Eliza",
488
+ port: undefined,
489
+ startedAt: undefined,
490
+ };
491
+ }
295
492
  const res = await this.fetch("/api/agent/stop", {
296
493
  method: "POST",
297
494
  });
@@ -310,6 +507,13 @@ ElizaClient.prototype.resumeAgent = async function () {
310
507
  return res.status;
311
508
  };
312
509
  ElizaClient.prototype.restartAgent = async function () {
510
+ const nativeAgent = await androidNativeAgentLifecycleForUrl(this.getBaseUrl());
511
+ if (nativeAgent?.start) {
512
+ if (nativeAgent.stop) {
513
+ await nativeAgent.stop();
514
+ }
515
+ return (await nativeAgent.start());
516
+ }
313
517
  try {
314
518
  const res = await this.fetch("/api/agent/restart", {
315
519
  method: "POST",
@@ -330,62 +534,30 @@ ElizaClient.prototype.restartAgent = async function () {
330
534
  }
331
535
  };
332
536
  ElizaClient.prototype.restartAndWait = async function (maxWaitMs = 30000) {
333
- const t0 = Date.now();
334
- console.info("[eliza][reset][client] restartAndWait: begin", {
335
- baseUrl: this.getBaseUrl(),
336
- maxWaitMs,
337
- });
338
537
  try {
339
538
  await this.restartAgent();
340
- console.info("[eliza][reset][client] restartAndWait: restart accepted");
341
539
  }
342
- catch (e) {
343
- console.info("[eliza][reset][client] restartAndWait: initial restart call failed (often 409 while restarting)", e);
540
+ catch {
541
+ // 409 is expected while already restarting; poll will detect running state
344
542
  }
345
543
  const start = Date.now();
346
544
  const interval = 1000;
347
- let pollN = 0;
348
545
  while (Date.now() - start < maxWaitMs) {
349
546
  await new Promise((r) => setTimeout(r, interval));
350
- pollN += 1;
351
547
  try {
352
548
  const status = await this.getStatus();
353
549
  if (status.state === "running") {
354
- console.info("[eliza][reset][client] restartAndWait: running", {
355
- pollN,
356
- waitedMs: Date.now() - t0,
357
- port: status.port,
358
- });
359
550
  return status;
360
551
  }
361
- if (pollN === 1 || pollN % 5 === 0) {
362
- console.debug("[eliza][reset][client] restartAndWait: poll", {
363
- pollN,
364
- state: status.state,
365
- waitedMs: Date.now() - t0,
366
- });
367
- }
368
552
  }
369
- catch (pollErr) {
370
- if (pollN === 1 || pollN % 5 === 0) {
371
- console.debug("[eliza][reset][client] restartAndWait: getStatus error while polling", { pollN, waitedMs: Date.now() - t0 }, pollErr);
372
- }
553
+ catch {
554
+ // getStatus may fail while agent is restarting; keep polling
373
555
  }
374
556
  }
375
- const final = await this.getStatus();
376
- console.warn("[eliza][reset][client] restartAndWait: timed out — returning last status", {
377
- state: final.state,
378
- waitedMs: Date.now() - t0,
379
- maxWaitMs,
380
- });
381
- return final;
557
+ return this.getStatus();
382
558
  };
383
559
  ElizaClient.prototype.resetAgent = async function () {
384
- console.info("[eliza][reset][client] POST /api/agent/reset", {
385
- baseUrl: this.getBaseUrl(),
386
- });
387
560
  await this.fetch("/api/agent/reset", { method: "POST" });
388
- console.info("[eliza][reset][client] POST /api/agent/reset OK");
389
561
  };
390
562
  ElizaClient.prototype.restart = async function () {
391
563
  return this.fetch("/api/restart", { method: "POST" });
@@ -394,16 +566,38 @@ ElizaClient.prototype.getConfig = async function () {
394
566
  logSettingsClient("GET /api/config → start", {
395
567
  baseUrl: this.getBaseUrl(),
396
568
  });
397
- const r = (await this.fetch("/api/config"));
569
+ let viaRpc = null;
570
+ try {
571
+ viaRpc = await invokeDesktopBridgeRequest({
572
+ rpcMethod: "getConfig",
573
+ ipcChannel: "agent",
574
+ });
575
+ }
576
+ catch {
577
+ /* AgentNotReadyError or any RPC failure → fall through to HTTP */
578
+ }
579
+ const r = viaRpc ?? (await this.fetch("/api/config"));
398
580
  const cloud = r.cloud;
399
581
  logSettingsClient("GET /api/config ← ok", {
400
582
  baseUrl: this.getBaseUrl(),
401
583
  topKeys: Object.keys(r).sort(),
402
584
  cloud: settingsDebugCloudSummary(cloud),
585
+ transport: viaRpc ? "rpc" : "http",
403
586
  });
404
587
  return r;
405
588
  };
406
589
  ElizaClient.prototype.getConfigSchema = async function () {
590
+ try {
591
+ const viaRpc = await invokeDesktopBridgeRequest({
592
+ rpcMethod: "getConfigSchema",
593
+ ipcChannel: "agent",
594
+ });
595
+ if (viaRpc)
596
+ return viaRpc;
597
+ }
598
+ catch {
599
+ /* fall through */
600
+ }
407
601
  return this.fetch("/api/config/schema");
408
602
  };
409
603
  ElizaClient.prototype.updateConfig = async function (patch) {
@@ -411,18 +605,34 @@ ElizaClient.prototype.updateConfig = async function (patch) {
411
605
  baseUrl: this.getBaseUrl(),
412
606
  patch,
413
607
  });
414
- const out = (await this.fetch("/api/config", {
415
- method: "PUT",
416
- headers: { "Content-Type": "application/json" },
417
- body: JSON.stringify(patch),
418
- }, {
419
- timeoutMs: SETTINGS_MUTATION_TIMEOUT_MS,
420
- }));
608
+ let out = null;
609
+ let transport = "rpc";
610
+ try {
611
+ out = await invokeDesktopBridgeRequest({
612
+ rpcMethod: "updateConfig",
613
+ ipcChannel: "agent:updateConfig",
614
+ params: patch,
615
+ });
616
+ }
617
+ catch {
618
+ out = null;
619
+ }
620
+ if (!out) {
621
+ transport = "http";
622
+ out = (await this.fetch("/api/config", {
623
+ method: "PUT",
624
+ headers: { "Content-Type": "application/json" },
625
+ body: JSON.stringify(patch),
626
+ }, {
627
+ timeoutMs: SETTINGS_MUTATION_TIMEOUT_MS,
628
+ }));
629
+ }
421
630
  const cloud = out.cloud;
422
631
  logSettingsClient("PUT /api/config ← ok", {
423
632
  baseUrl: this.getBaseUrl(),
424
633
  topKeys: Object.keys(out).sort(),
425
634
  cloud: settingsDebugCloudSummary(cloud),
635
+ transport,
426
636
  });
427
637
  return out;
428
638
  };
@@ -531,23 +741,38 @@ function normalizeConnectorPurposeList(value) {
531
741
  .map((item) => (typeof item === "string" ? item.trim() : ""))
532
742
  .filter((item) => Boolean(item) && !isConnectorRoleValue(item));
533
743
  }
534
- function normalizeConnectorAccountRecord(provider, connectorId, raw) {
535
- const record = raw && typeof raw === "object" && !Array.isArray(raw)
744
+ function recordFromUnknown(raw) {
745
+ return raw && typeof raw === "object" && !Array.isArray(raw)
536
746
  ? raw
537
747
  : {};
748
+ }
749
+ function nonEmptyString(value) {
750
+ return typeof value === "string" && value.trim() ? value : null;
751
+ }
752
+ function connectorAccountLabel(record) {
753
+ return (nonEmptyString(record.label) ??
754
+ nonEmptyString(record.displayHandle) ??
755
+ nonEmptyString(record.handle) ??
756
+ nonEmptyString(record.externalId) ??
757
+ String(record.id ?? "unknown"));
758
+ }
759
+ function connectorAccountHandle(record) {
760
+ return typeof record.handle === "string"
761
+ ? record.handle
762
+ : typeof record.displayHandle === "string"
763
+ ? record.displayHandle
764
+ : null;
765
+ }
766
+ function connectorAccountMetadata(record) {
767
+ return record.metadata && typeof record.metadata === "object"
768
+ ? record.metadata
769
+ : undefined;
770
+ }
771
+ function normalizeConnectorAccountRecord(provider, connectorId, raw) {
772
+ const record = recordFromUnknown(raw);
538
773
  const role = normalizeConnectorAccountRole(record.role) ??
539
774
  normalizeConnectorAccountRole(record.purpose) ??
540
775
  "OWNER";
541
- const purpose = normalizeConnectorPurposeList(record.purpose);
542
- const label = typeof record.label === "string" && record.label.trim()
543
- ? record.label
544
- : typeof record.displayHandle === "string" && record.displayHandle.trim()
545
- ? record.displayHandle
546
- : typeof record.handle === "string" && record.handle.trim()
547
- ? record.handle
548
- : typeof record.externalId === "string" && record.externalId.trim()
549
- ? record.externalId
550
- : String(record.id ?? "unknown");
551
776
  return {
552
777
  ...record,
553
778
  id: String(record.id ?? ""),
@@ -555,21 +780,15 @@ function normalizeConnectorAccountRecord(provider, connectorId, raw) {
555
780
  ? record.provider
556
781
  : provider,
557
782
  connectorId,
558
- label,
559
- handle: typeof record.handle === "string"
560
- ? record.handle
561
- : typeof record.displayHandle === "string"
562
- ? record.displayHandle
563
- : null,
783
+ label: connectorAccountLabel(record),
784
+ handle: connectorAccountHandle(record),
564
785
  externalId: typeof record.externalId === "string" ? record.externalId : null,
565
786
  status: normalizeConnectorStatus(record.status),
566
787
  role,
567
- purpose,
788
+ purpose: normalizeConnectorPurposeList(record.purpose),
568
789
  isDefault: record.isDefault === true,
569
790
  enabled: record.enabled !== false,
570
- metadata: record.metadata && typeof record.metadata === "object"
571
- ? record.metadata
572
- : undefined,
791
+ metadata: connectorAccountMetadata(record),
573
792
  };
574
793
  }
575
794
  function normalizeConnectorAccountsListResponse(provider, connectorId, raw) {
@@ -594,20 +813,12 @@ function normalizeConnectorAccountsListResponse(provider, connectorId, raw) {
594
813
  };
595
814
  }
596
815
  function normalizeConnectorAccountActionResult(provider, connectorId, raw) {
597
- const record = raw && typeof raw === "object" && !Array.isArray(raw)
598
- ? raw
599
- : {};
816
+ const record = recordFromUnknown(raw);
600
817
  const account = record.account ?? (typeof record.id === "string" ? record : null);
601
- const flow = record.flow &&
602
- typeof record.flow === "object" &&
603
- !Array.isArray(record.flow)
604
- ? record.flow
605
- : null;
818
+ const flow = recordFromUnknown(record.flow);
606
819
  return {
607
820
  ...record,
608
- ok: typeof record.ok === "boolean"
609
- ? record.ok
610
- : record.deleted === true || (!("error" in record) && account !== null),
821
+ ok: normalizeConnectorActionOk(record, account),
611
822
  account: account
612
823
  ? normalizeConnectorAccountRecord(provider, connectorId, account)
613
824
  : undefined,
@@ -617,20 +828,30 @@ function normalizeConnectorAccountActionResult(provider, connectorId, raw) {
617
828
  defaultAccountId: typeof record.defaultAccountId === "string"
618
829
  ? record.defaultAccountId
619
830
  : null,
620
- flow: flow ?? undefined,
621
- authUrl: typeof record.authUrl === "string"
622
- ? record.authUrl
623
- : typeof flow?.authUrl === "string"
624
- ? flow.authUrl
625
- : undefined,
626
- status: typeof record.status === "string"
627
- ? normalizeConnectorStatus(record.status)
628
- : typeof flow?.status === "string"
629
- ? normalizeConnectorStatus(flow.status)
630
- : undefined,
831
+ flow: Object.keys(flow).length > 0 ? flow : undefined,
832
+ authUrl: connectorActionAuthUrl(record, flow),
833
+ status: connectorActionStatus(record, flow),
631
834
  error: typeof record.error === "string" ? record.error : undefined,
632
835
  };
633
836
  }
837
+ function normalizeConnectorActionOk(record, account) {
838
+ return typeof record.ok === "boolean"
839
+ ? record.ok
840
+ : record.deleted === true || (!("error" in record) && account !== null);
841
+ }
842
+ function connectorActionAuthUrl(record, flow) {
843
+ if (typeof record.authUrl === "string")
844
+ return record.authUrl;
845
+ return typeof flow.authUrl === "string" ? flow.authUrl : undefined;
846
+ }
847
+ function connectorActionStatus(record, flow) {
848
+ if (typeof record.status === "string") {
849
+ return normalizeConnectorStatus(record.status);
850
+ }
851
+ return typeof flow.status === "string"
852
+ ? normalizeConnectorStatus(flow.status)
853
+ : undefined;
854
+ }
634
855
  function connectorAccountAuditPath(provider, query = {}) {
635
856
  const params = new URLSearchParams();
636
857
  if (query.accountId)
@@ -727,6 +948,17 @@ ElizaClient.prototype.emitTriggerEvent = async function (eventKind, payload = {}
727
948
  });
728
949
  };
729
950
  ElizaClient.prototype.getTriggerHealth = async function () {
951
+ try {
952
+ const viaRpc = await invokeDesktopBridgeRequest({
953
+ rpcMethod: "getTriggerHealth",
954
+ ipcChannel: "agent",
955
+ });
956
+ if (viaRpc)
957
+ return viaRpc;
958
+ }
959
+ catch {
960
+ /* fall through */
961
+ }
730
962
  return this.fetch("/api/triggers/health");
731
963
  };
732
964
  ElizaClient.prototype.getTrainingStatus = async function () {
@@ -770,8 +1002,49 @@ ElizaClient.prototype.cancelTrainingJob = async function (jobId) {
770
1002
  method: "POST",
771
1003
  });
772
1004
  };
1005
+ function trainingModelRecordFromVastRegistry(item, loadedAt) {
1006
+ const entry = item.entry;
1007
+ const id = item.short_name ?? entry?.eliza_short_name;
1008
+ if (!id || !entry)
1009
+ return null;
1010
+ return {
1011
+ id,
1012
+ createdAt: loadedAt ?? "",
1013
+ jobId: `vast-registry:${id}`,
1014
+ outputDir: entry.gguf_repo_id ?? entry.eliza_repo_id ?? "",
1015
+ modelPath: entry.gguf_repo_id ?? entry.eliza_repo_id ?? id,
1016
+ adapterPath: null,
1017
+ sourceModel: entry.base_hf_id ?? null,
1018
+ backend: "cuda",
1019
+ ollamaModel: null,
1020
+ active: false,
1021
+ benchmark: {
1022
+ status: "not_run",
1023
+ lastRunAt: null,
1024
+ output: entry.tier
1025
+ ? `Eliza-1 ${entry.tier} registry entry`
1026
+ : "Eliza-1 registry entry",
1027
+ },
1028
+ };
1029
+ }
773
1030
  ElizaClient.prototype.listTrainingModels = async function () {
774
- return this.fetch("/api/training/models");
1031
+ const listed = await this.fetch("/api/training/models");
1032
+ if (Array.isArray(listed.models) && listed.models.length > 0) {
1033
+ return { models: listed.models };
1034
+ }
1035
+ try {
1036
+ const registry = await this.fetch("/api/training/vast/models");
1037
+ const registryModels = (registry.entries ?? [])
1038
+ .map((item) => trainingModelRecordFromVastRegistry(item, registry.loaded_at))
1039
+ .filter((model) => model !== null);
1040
+ if (registryModels.length > 0)
1041
+ return { models: registryModels };
1042
+ }
1043
+ catch {
1044
+ // The legacy training service and Vast registry are optional independent
1045
+ // surfaces; keep the legacy response when the registry is unavailable.
1046
+ }
1047
+ return { models: listed.models ?? [] };
775
1048
  };
776
1049
  ElizaClient.prototype.importTrainingModelToOllama = async function (modelId, options) {
777
1050
  return this.fetch(`/api/training/models/${encodeURIComponent(modelId)}/import-ollama`, {
@@ -788,6 +1061,77 @@ ElizaClient.prototype.activateTrainingModel = async function (modelId, providerM
788
1061
  ElizaClient.prototype.benchmarkTrainingModel = async function (modelId) {
789
1062
  return this.fetch(`/api/training/models/${encodeURIComponent(modelId)}/benchmark`, { method: "POST" });
790
1063
  };
1064
+ ElizaClient.prototype.buildTrainingAnalysisIndex = async function (options) {
1065
+ return this.fetch("/api/training/analysis/index", {
1066
+ method: "POST",
1067
+ body: JSON.stringify(options ?? {}),
1068
+ });
1069
+ };
1070
+ ElizaClient.prototype.buildTrainingReadinessReport = async function (options) {
1071
+ return this.fetch("/api/training/analysis/readiness", {
1072
+ method: "POST",
1073
+ body: JSON.stringify(options ?? {}),
1074
+ });
1075
+ };
1076
+ ElizaClient.prototype.ingestHuggingFaceTrainingDataset = async function (options) {
1077
+ return this.fetch("/api/training/datasets/ingest-hf", {
1078
+ method: "POST",
1079
+ body: JSON.stringify(options ?? {}),
1080
+ });
1081
+ };
1082
+ ElizaClient.prototype.stageEliza1Bundle = async function (options) {
1083
+ return this.fetch("/api/training/models/stage-eliza1-bundle", {
1084
+ method: "POST",
1085
+ body: JSON.stringify(options ?? {}),
1086
+ });
1087
+ };
1088
+ ElizaClient.prototype.runFeedTrainingGeneration = async function (options) {
1089
+ return this.fetch("/api/training/feed/generate", {
1090
+ method: "POST",
1091
+ body: JSON.stringify(options ?? {}),
1092
+ });
1093
+ };
1094
+ ElizaClient.prototype.runTrainingScenarios = async function (options) {
1095
+ return this.fetch("/api/training/scenarios/run", {
1096
+ method: "POST",
1097
+ body: JSON.stringify(options ?? {}),
1098
+ });
1099
+ };
1100
+ ElizaClient.prototype.runTrainingActionBenchmark = async function (options) {
1101
+ return this.fetch("/api/training/benchmarks/action-selection/run", {
1102
+ method: "POST",
1103
+ body: JSON.stringify(options ?? {}),
1104
+ });
1105
+ };
1106
+ ElizaClient.prototype.runTrainingBenchmarkVsCerebras = async function (options) {
1107
+ return this.fetch("/api/training/benchmarks/run-vs-cerebras", {
1108
+ method: "POST",
1109
+ body: JSON.stringify(options ?? {}),
1110
+ });
1111
+ };
1112
+ ElizaClient.prototype.runTrainingLocalEvalComparison = async function (options) {
1113
+ return this.fetch("/api/training/evals/run-local-comparison", {
1114
+ method: "POST",
1115
+ body: JSON.stringify(options ?? {}),
1116
+ });
1117
+ };
1118
+ ElizaClient.prototype.runTrainingCollection = async function (options) {
1119
+ return this.fetch("/api/training/collect", {
1120
+ method: "POST",
1121
+ body: JSON.stringify(options ?? {}),
1122
+ });
1123
+ };
1124
+ ElizaClient.prototype.listTrainingCollections = async function (options) {
1125
+ const params = new URLSearchParams();
1126
+ if (options?.limit !== undefined) {
1127
+ params.set("limit", String(options.limit));
1128
+ }
1129
+ if (options?.root) {
1130
+ params.set("root", options.root);
1131
+ }
1132
+ const query = params.toString();
1133
+ return this.fetch(`/api/training/collections${query ? `?${query}` : ""}`);
1134
+ };
791
1135
  ElizaClient.prototype.getPlugins = async function () {
792
1136
  return this.fetch("/api/plugins");
793
1137
  };
@@ -798,6 +1142,17 @@ ElizaClient.prototype.fetchModels = async function (provider, refresh = true) {
798
1142
  return this.fetch(`/api/models?${params.toString()}`);
799
1143
  };
800
1144
  ElizaClient.prototype.getCorePlugins = async function () {
1145
+ try {
1146
+ const viaRpc = await invokeDesktopBridgeRequest({
1147
+ rpcMethod: "getCorePlugins",
1148
+ ipcChannel: "agent",
1149
+ });
1150
+ if (viaRpc)
1151
+ return viaRpc;
1152
+ }
1153
+ catch {
1154
+ /* fall through */
1155
+ }
801
1156
  return this.fetch("/api/plugins/core");
802
1157
  };
803
1158
  ElizaClient.prototype.toggleCorePlugin = async function (npmName, enabled) {
@@ -883,6 +1238,67 @@ function buildSecurityAuditParams(filter, includeStream = false) {
883
1238
  params.set("stream", "1");
884
1239
  return params;
885
1240
  }
1241
+ async function throwSecurityAuditResponseError(res) {
1242
+ const body = (await res
1243
+ .json()
1244
+ .catch(() => ({ error: res.statusText })));
1245
+ const err = new Error(body?.error ?? `HTTP ${res.status}`);
1246
+ err.status = res.status;
1247
+ throw err;
1248
+ }
1249
+ function findSseEventBreak(chunkBuffer) {
1250
+ const lfBreak = chunkBuffer.indexOf("\n\n");
1251
+ const crlfBreak = chunkBuffer.indexOf("\r\n\r\n");
1252
+ if (lfBreak === -1 && crlfBreak === -1)
1253
+ return null;
1254
+ if (lfBreak === -1)
1255
+ return { index: crlfBreak, length: 4 };
1256
+ if (crlfBreak === -1)
1257
+ return { index: lfBreak, length: 2 };
1258
+ return lfBreak < crlfBreak
1259
+ ? { index: lfBreak, length: 2 }
1260
+ : { index: crlfBreak, length: 4 };
1261
+ }
1262
+ function parseSecurityAuditPayload(payload, onEvent) {
1263
+ if (!payload)
1264
+ return;
1265
+ try {
1266
+ const parsed = JSON.parse(payload);
1267
+ if (parsed.type === "snapshot" || parsed.type === "entry") {
1268
+ onEvent(parsed);
1269
+ }
1270
+ }
1271
+ catch (error) {
1272
+ console.warn("[client-agent] dropped malformed security audit stream frame", { payload, error });
1273
+ }
1274
+ }
1275
+ function consumeSecurityAuditEvent(rawEvent, onEvent) {
1276
+ for (const line of rawEvent.split(/\r?\n/)) {
1277
+ if (!line.startsWith("data:"))
1278
+ continue;
1279
+ parseSecurityAuditPayload(line.slice(5).trim(), onEvent);
1280
+ }
1281
+ }
1282
+ async function readSecurityAuditStream(body, onEvent) {
1283
+ const decoder = new TextDecoder();
1284
+ const reader = body.getReader();
1285
+ let buffer = "";
1286
+ while (true) {
1287
+ const { done, value } = await reader.read();
1288
+ if (done)
1289
+ break;
1290
+ buffer += decoder.decode(value, { stream: true });
1291
+ let eventBreak = findSseEventBreak(buffer);
1292
+ while (eventBreak) {
1293
+ const rawEvent = buffer.slice(0, eventBreak.index);
1294
+ buffer = buffer.slice(eventBreak.index + eventBreak.length);
1295
+ consumeSecurityAuditEvent(rawEvent, onEvent);
1296
+ eventBreak = findSseEventBreak(buffer);
1297
+ }
1298
+ }
1299
+ if (buffer.trim())
1300
+ consumeSecurityAuditEvent(buffer, onEvent);
1301
+ }
886
1302
  ElizaClient.prototype.getSecurityAudit = async function (filter) {
887
1303
  const qs = buildSecurityAuditParams(filter).toString();
888
1304
  return this.fetch(`/api/security/audit${qs ? `?${qs}` : ""}`);
@@ -893,78 +1309,21 @@ ElizaClient.prototype.streamSecurityAudit = async function (onEvent, filter, sig
893
1309
  }
894
1310
  const token = this.apiToken;
895
1311
  const qs = buildSecurityAuditParams(filter, true).toString();
896
- const res = await fetch(`${this.baseUrl}/api/security/audit${qs ? `?${qs}` : ""}`, {
1312
+ const res = await this.rawRequest(`/api/security/audit${qs ? `?${qs}` : ""}`, {
897
1313
  method: "GET",
898
1314
  headers: {
899
1315
  Accept: "text/event-stream",
900
1316
  ...(token ? { Authorization: `Bearer ${token}` } : {}),
901
1317
  },
902
1318
  signal,
903
- });
1319
+ }, { allowNonOk: true });
904
1320
  if (!res.ok) {
905
- const body = (await res
906
- .json()
907
- .catch(() => ({ error: res.statusText })));
908
- const err = new Error(body?.error ?? `HTTP ${res.status}`);
909
- err.status = res.status;
910
- throw err;
1321
+ await throwSecurityAuditResponseError(res);
911
1322
  }
912
1323
  if (!res.body) {
913
1324
  throw new Error("Streaming not supported by this browser");
914
1325
  }
915
- const parsePayload = (payload) => {
916
- if (!payload)
917
- return;
918
- try {
919
- const parsed = JSON.parse(payload);
920
- if (parsed.type === "snapshot" || parsed.type === "entry") {
921
- onEvent(parsed);
922
- }
923
- }
924
- catch {
925
- // Ignore malformed payloads to keep stream consumption resilient.
926
- }
927
- };
928
- const decoder = new TextDecoder();
929
- const reader = res.body.getReader();
930
- let buffer = "";
931
- const findSseEventBreak = (chunkBuffer) => {
932
- const lfBreak = chunkBuffer.indexOf("\n\n");
933
- const crlfBreak = chunkBuffer.indexOf("\r\n\r\n");
934
- if (lfBreak === -1 && crlfBreak === -1)
935
- return null;
936
- if (lfBreak === -1)
937
- return { index: crlfBreak, length: 4 };
938
- if (crlfBreak === -1)
939
- return { index: lfBreak, length: 2 };
940
- return lfBreak < crlfBreak
941
- ? { index: lfBreak, length: 2 }
942
- : { index: crlfBreak, length: 4 };
943
- };
944
- while (true) {
945
- const { done, value } = await reader.read();
946
- if (done)
947
- break;
948
- buffer += decoder.decode(value, { stream: true });
949
- let eventBreak = findSseEventBreak(buffer);
950
- while (eventBreak) {
951
- const rawEvent = buffer.slice(0, eventBreak.index);
952
- buffer = buffer.slice(eventBreak.index + eventBreak.length);
953
- for (const line of rawEvent.split(/\r?\n/)) {
954
- if (!line.startsWith("data:"))
955
- continue;
956
- parsePayload(line.slice(5).trim());
957
- }
958
- eventBreak = findSseEventBreak(buffer);
959
- }
960
- }
961
- if (buffer.trim()) {
962
- for (const line of buffer.split(/\r?\n/)) {
963
- if (!line.startsWith("data:"))
964
- continue;
965
- parsePayload(line.slice(5).trim());
966
- }
967
- }
1326
+ await readSecurityAuditStream(res.body, onEvent);
968
1327
  };
969
1328
  ElizaClient.prototype.getAgentEvents = async function (opts) {
970
1329
  const params = new URLSearchParams();
@@ -980,6 +1339,17 @@ ElizaClient.prototype.getAgentEvents = async function (opts) {
980
1339
  return this.fetch(`/api/agent/events${qs ? `?${qs}` : ""}`);
981
1340
  };
982
1341
  ElizaClient.prototype.getExtensionStatus = async function () {
1342
+ try {
1343
+ const viaRpc = await invokeDesktopBridgeRequest({
1344
+ rpcMethod: "getExtensionStatus",
1345
+ ipcChannel: "agent",
1346
+ });
1347
+ if (viaRpc)
1348
+ return viaRpc;
1349
+ }
1350
+ catch {
1351
+ /* fall through */
1352
+ }
983
1353
  return this.fetch("/api/extension/status");
984
1354
  };
985
1355
  ElizaClient.prototype.getRelationshipsGraph = async function (query) {
@@ -1054,6 +1424,18 @@ ElizaClient.prototype.proposeRelationshipsLink = async function (sourceEntityId,
1054
1424
  return response.data;
1055
1425
  };
1056
1426
  ElizaClient.prototype.getCharacter = async function () {
1427
+ // RPC composer forwards the `/api/character` body verbatim, so the
1428
+ // wire shape is `{ character, agentName }` — bun-side just types it
1429
+ // loosely as Record. Catch swallows AgentNotReadyError + transport
1430
+ // failure → fall through to HTTP.
1431
+ try {
1432
+ const viaRpc = await invokeDesktopBridgeRequest({ rpcMethod: "getCharacter", ipcChannel: "agent" });
1433
+ if (viaRpc)
1434
+ return viaRpc;
1435
+ }
1436
+ catch {
1437
+ /* fall through */
1438
+ }
1057
1439
  return this.fetch("/api/character");
1058
1440
  };
1059
1441
  ElizaClient.prototype.getRandomName = async function () {
@@ -1082,52 +1464,62 @@ ElizaClient.prototype.listCharacterHistory = async function (options) {
1082
1464
  const qs = params.toString();
1083
1465
  return this.fetch(`/api/character/history${qs ? `?${qs}` : ""}`);
1084
1466
  };
1085
- ElizaClient.prototype.listExperiences = async function (options) {
1086
- const params = new URLSearchParams();
1087
- const appendMulti = (key, value) => {
1088
- if (Array.isArray(value)) {
1089
- value
1090
- .map((item) => item.trim())
1091
- .filter(Boolean)
1092
- .forEach((item) => {
1093
- params.append(key, item);
1094
- });
1095
- return;
1096
- }
1097
- if (typeof value === "string" && value.trim()) {
1098
- params.append(key, value.trim());
1099
- }
1100
- };
1101
- if (typeof options?.limit === "number") {
1102
- params.set("limit", String(options.limit));
1103
- }
1104
- if (typeof options?.offset === "number") {
1105
- params.set("offset", String(options.offset));
1106
- }
1107
- if (typeof options?.q === "string" && options.q.trim()) {
1108
- params.set("q", options.q.trim());
1109
- }
1110
- if (typeof options?.query === "string" && options.query.trim()) {
1111
- params.set("query", options.query.trim());
1112
- }
1113
- if (typeof options?.minConfidence === "number") {
1114
- params.set("minConfidence", String(options.minConfidence));
1115
- }
1116
- if (typeof options?.minImportance === "number") {
1117
- params.set("minImportance", String(options.minImportance));
1467
+ function appendMultiQueryParam(params, key, value) {
1468
+ if (Array.isArray(value)) {
1469
+ value
1470
+ .map((item) => item.trim())
1471
+ .filter(Boolean)
1472
+ .forEach((item) => {
1473
+ params.append(key, item);
1474
+ });
1475
+ return;
1118
1476
  }
1119
- if (typeof options?.includeRelated === "boolean") {
1120
- params.set("includeRelated", String(options.includeRelated));
1477
+ if (typeof value === "string" && value.trim()) {
1478
+ params.append(key, value.trim());
1121
1479
  }
1122
- appendMulti("type", options?.type);
1123
- appendMulti("outcome", options?.outcome);
1124
- appendMulti("domain", options?.domain);
1480
+ }
1481
+ function appendTrimmedQueryParam(params, key, value) {
1482
+ const trimmed = typeof value === "string" ? value.trim() : "";
1483
+ if (trimmed)
1484
+ params.set(key, trimmed);
1485
+ }
1486
+ function appendNumberQueryParam(params, key, value) {
1487
+ if (typeof value === "number")
1488
+ params.set(key, String(value));
1489
+ }
1490
+ function appendBooleanQueryParam(params, key, value) {
1491
+ if (typeof value === "boolean")
1492
+ params.set(key, String(value));
1493
+ }
1494
+ function appendExperienceScalarParams(params, options, includeOffset) {
1495
+ appendNumberQueryParam(params, "limit", options?.limit);
1496
+ if (includeOffset)
1497
+ appendNumberQueryParam(params, "offset", options?.offset);
1498
+ appendTrimmedQueryParam(params, "q", options?.q);
1499
+ appendTrimmedQueryParam(params, "query", options?.query);
1500
+ appendNumberQueryParam(params, "minConfidence", options?.minConfidence);
1501
+ appendNumberQueryParam(params, "minImportance", options?.minImportance);
1502
+ appendBooleanQueryParam(params, "includeRelated", options?.includeRelated);
1503
+ }
1504
+ function appendExperienceCollectionParams(params, options) {
1505
+ appendMultiQueryParam(params, "type", options?.type);
1506
+ appendMultiQueryParam(params, "outcome", options?.outcome);
1507
+ appendMultiQueryParam(params, "domain", options?.domain);
1125
1508
  options?.tags
1126
1509
  ?.map((tag) => tag.trim())
1127
1510
  .filter(Boolean)
1128
1511
  .forEach((tag) => {
1129
1512
  params.append("tag", tag);
1130
1513
  });
1514
+ }
1515
+ function buildExperienceQueryParams(options, includeOffset) {
1516
+ const params = new URLSearchParams();
1517
+ appendExperienceScalarParams(params, options, includeOffset);
1518
+ appendExperienceCollectionParams(params, options);
1519
+ return params;
1520
+ }
1521
+ ElizaClient.prototype.listExperiences = async function (options) {
1522
+ const params = buildExperienceQueryParams(options, true);
1131
1523
  const qs = params.toString();
1132
1524
  const response = await this.fetch(`/api/character/experiences${qs ? `?${qs}` : ""}`);
1133
1525
  return {
@@ -1136,48 +1528,7 @@ ElizaClient.prototype.listExperiences = async function (options) {
1136
1528
  };
1137
1529
  };
1138
1530
  ElizaClient.prototype.getExperienceGraph = async function (options) {
1139
- const params = new URLSearchParams();
1140
- const appendMulti = (key, value) => {
1141
- if (Array.isArray(value)) {
1142
- value
1143
- .map((item) => item.trim())
1144
- .filter(Boolean)
1145
- .forEach((item) => {
1146
- params.append(key, item);
1147
- });
1148
- return;
1149
- }
1150
- if (typeof value === "string" && value.trim()) {
1151
- params.append(key, value.trim());
1152
- }
1153
- };
1154
- if (typeof options?.limit === "number") {
1155
- params.set("limit", String(options.limit));
1156
- }
1157
- if (typeof options?.q === "string" && options.q.trim()) {
1158
- params.set("q", options.q.trim());
1159
- }
1160
- if (typeof options?.query === "string" && options.query.trim()) {
1161
- params.set("query", options.query.trim());
1162
- }
1163
- if (typeof options?.minConfidence === "number") {
1164
- params.set("minConfidence", String(options.minConfidence));
1165
- }
1166
- if (typeof options?.minImportance === "number") {
1167
- params.set("minImportance", String(options.minImportance));
1168
- }
1169
- if (typeof options?.includeRelated === "boolean") {
1170
- params.set("includeRelated", String(options.includeRelated));
1171
- }
1172
- appendMulti("type", options?.type);
1173
- appendMulti("outcome", options?.outcome);
1174
- appendMulti("domain", options?.domain);
1175
- options?.tags
1176
- ?.map((tag) => tag.trim())
1177
- .filter(Boolean)
1178
- .forEach((tag) => {
1179
- params.append("tag", tag);
1180
- });
1531
+ const params = buildExperienceQueryParams(options, false);
1181
1532
  const qs = params.toString();
1182
1533
  const response = await this.fetch(`/api/character/experiences/graph${qs ? `?${qs}` : ""}`);
1183
1534
  return { graph: response.data };
@@ -1206,6 +1557,18 @@ ElizaClient.prototype.deleteExperience = async function (id) {
1206
1557
  });
1207
1558
  };
1208
1559
  ElizaClient.prototype.getUpdateStatus = async function (force = false) {
1560
+ try {
1561
+ const viaRpc = await invokeDesktopBridgeRequest({
1562
+ rpcMethod: "getUpdateStatus",
1563
+ ipcChannel: "agent",
1564
+ params: { force },
1565
+ });
1566
+ if (viaRpc)
1567
+ return viaRpc;
1568
+ }
1569
+ catch {
1570
+ /* fall through */
1571
+ }
1209
1572
  return this.fetch(`/api/update/status${force ? "?force=true" : ""}`);
1210
1573
  };
1211
1574
  ElizaClient.prototype.setUpdateChannel = async function (channel) {
@@ -1215,18 +1578,64 @@ ElizaClient.prototype.setUpdateChannel = async function (channel) {
1215
1578
  });
1216
1579
  };
1217
1580
  ElizaClient.prototype.getAgentAutomationMode = async function () {
1581
+ try {
1582
+ const viaRpc = await invokeDesktopBridgeRequest({
1583
+ rpcMethod: "getAgentAutomationMode",
1584
+ ipcChannel: "agent:getAgentAutomationMode",
1585
+ });
1586
+ if (viaRpc)
1587
+ return viaRpc;
1588
+ }
1589
+ catch {
1590
+ /* fall through */
1591
+ }
1218
1592
  return this.fetch("/api/permissions/automation-mode");
1219
1593
  };
1220
1594
  ElizaClient.prototype.setAgentAutomationMode = async function (mode) {
1595
+ try {
1596
+ const viaRpc = await invokeDesktopBridgeRequest({
1597
+ rpcMethod: "setAgentAutomationMode",
1598
+ ipcChannel: "agent:setAgentAutomationMode",
1599
+ params: { mode },
1600
+ });
1601
+ if (viaRpc)
1602
+ return viaRpc;
1603
+ }
1604
+ catch {
1605
+ /* fall through */
1606
+ }
1221
1607
  return this.fetch("/api/permissions/automation-mode", {
1222
1608
  method: "PUT",
1223
1609
  body: JSON.stringify({ mode }),
1224
1610
  });
1225
1611
  };
1226
1612
  ElizaClient.prototype.getTradePermissionMode = async function () {
1613
+ try {
1614
+ const viaRpc = await invokeDesktopBridgeRequest({
1615
+ rpcMethod: "getTradePermissionMode",
1616
+ ipcChannel: "agent:getTradePermissionMode",
1617
+ });
1618
+ if (viaRpc)
1619
+ return viaRpc;
1620
+ }
1621
+ catch {
1622
+ /* fall through */
1623
+ }
1227
1624
  return this.fetch("/api/permissions/trade-mode");
1228
1625
  };
1229
1626
  ElizaClient.prototype.setTradePermissionMode = async function (mode) {
1627
+ try {
1628
+ const viaRpc = await invokeDesktopBridgeRequest({
1629
+ rpcMethod: "setTradePermissionMode",
1630
+ ipcChannel: "agent:setTradePermissionMode",
1631
+ params: { mode },
1632
+ });
1633
+ if (viaRpc)
1634
+ return viaRpc;
1635
+ }
1636
+ catch {
1637
+ /* fall through */
1638
+ }
1230
1639
  return this.fetch("/api/permissions/trade-mode", {
1231
1640
  method: "PUT",
1232
1641
  body: JSON.stringify({ mode }),
@@ -1301,14 +1710,14 @@ ElizaClient.prototype.isShellEnabled = async function () {
1301
1710
  ElizaClient.prototype.getWebsiteBlockerStatus = async function () {
1302
1711
  const plugin = getNativeWebsiteBlockerPluginIfAvailable();
1303
1712
  if (plugin) {
1304
- return await plugin.getStatus();
1713
+ return plugin.getStatus();
1305
1714
  }
1306
1715
  return this.fetch("/api/website-blocker");
1307
1716
  };
1308
1717
  ElizaClient.prototype.startWebsiteBlock = async function (options) {
1309
1718
  const plugin = getNativeWebsiteBlockerPluginIfAvailable();
1310
1719
  if (plugin) {
1311
- return await plugin.startBlock(options);
1720
+ return plugin.startBlock(options);
1312
1721
  }
1313
1722
  return this.fetch("/api/website-blocker", {
1314
1723
  method: "PUT",
@@ -1318,7 +1727,7 @@ ElizaClient.prototype.startWebsiteBlock = async function (options) {
1318
1727
  ElizaClient.prototype.stopWebsiteBlock = async function () {
1319
1728
  const plugin = getNativeWebsiteBlockerPluginIfAvailable();
1320
1729
  if (plugin) {
1321
- return await plugin.stopBlock();
1730
+ return plugin.stopBlock();
1322
1731
  }
1323
1732
  return this.fetch("/api/website-blocker", {
1324
1733
  method: "DELETE",
@@ -1327,7 +1736,7 @@ ElizaClient.prototype.stopWebsiteBlock = async function () {
1327
1736
  ElizaClient.prototype.getAppBlockerStatus = async function () {
1328
1737
  const plugin = getNativeAppBlockerPluginIfAvailable();
1329
1738
  if (plugin) {
1330
- return await plugin.getStatus();
1739
+ return plugin.getStatus();
1331
1740
  }
1332
1741
  return {
1333
1742
  available: false,
@@ -1344,7 +1753,7 @@ ElizaClient.prototype.getAppBlockerStatus = async function () {
1344
1753
  ElizaClient.prototype.checkAppBlockerPermissions = async function () {
1345
1754
  const plugin = getNativeAppBlockerPluginIfAvailable();
1346
1755
  if (plugin) {
1347
- return await plugin.checkPermissions();
1756
+ return plugin.checkPermissions();
1348
1757
  }
1349
1758
  return {
1350
1759
  status: "not-applicable",
@@ -1355,7 +1764,7 @@ ElizaClient.prototype.checkAppBlockerPermissions = async function () {
1355
1764
  ElizaClient.prototype.requestAppBlockerPermissions = async function () {
1356
1765
  const plugin = getNativeAppBlockerPluginIfAvailable();
1357
1766
  if (plugin) {
1358
- return await plugin.requestPermissions();
1767
+ return plugin.requestPermissions();
1359
1768
  }
1360
1769
  return {
1361
1770
  status: "not-applicable",
@@ -1366,14 +1775,14 @@ ElizaClient.prototype.requestAppBlockerPermissions = async function () {
1366
1775
  ElizaClient.prototype.getInstalledAppsToBlock = async function () {
1367
1776
  const plugin = getNativeAppBlockerPluginIfAvailable();
1368
1777
  if (plugin) {
1369
- return await plugin.getInstalledApps();
1778
+ return plugin.getInstalledApps();
1370
1779
  }
1371
1780
  return { apps: [] };
1372
1781
  };
1373
1782
  ElizaClient.prototype.selectAppBlockerApps = async function () {
1374
1783
  const plugin = getNativeAppBlockerPluginIfAvailable();
1375
1784
  if (plugin) {
1376
- return await plugin.selectApps();
1785
+ return plugin.selectApps();
1377
1786
  }
1378
1787
  return {
1379
1788
  apps: [],
@@ -1383,7 +1792,7 @@ ElizaClient.prototype.selectAppBlockerApps = async function () {
1383
1792
  ElizaClient.prototype.startAppBlock = async function (options) {
1384
1793
  const plugin = getNativeAppBlockerPluginIfAvailable();
1385
1794
  if (plugin) {
1386
- return await plugin.blockApps(options);
1795
+ return plugin.blockApps(options);
1387
1796
  }
1388
1797
  return {
1389
1798
  success: false,
@@ -1395,7 +1804,7 @@ ElizaClient.prototype.startAppBlock = async function (options) {
1395
1804
  ElizaClient.prototype.stopAppBlock = async function () {
1396
1805
  const plugin = getNativeAppBlockerPluginIfAvailable();
1397
1806
  if (plugin) {
1398
- return await plugin.unblockApps();
1807
+ return plugin.unblockApps();
1399
1808
  }
1400
1809
  return {
1401
1810
  success: false,
@@ -1403,38 +1812,49 @@ ElizaClient.prototype.stopAppBlock = async function () {
1403
1812
  };
1404
1813
  };
1405
1814
  ElizaClient.prototype.getCodingAgentStatus = async function () {
1815
+ const [acpResult, orchestratorStatusResult, taskThreadsResult] = await Promise.allSettled([
1816
+ this.fetch("/api/coding-agents"),
1817
+ this.getOrchestratorStatus(),
1818
+ this.listCodingAgentTaskThreads({ limit: 20 }),
1819
+ ]);
1820
+ const acpSessions = acpResult.status === "fulfilled" && Array.isArray(acpResult.value)
1821
+ ? acpResult.value
1822
+ : null;
1823
+ const taskThreads = taskThreadsResult.status === "fulfilled" &&
1824
+ Array.isArray(taskThreadsResult.value)
1825
+ ? taskThreadsResult.value
1826
+ : null;
1827
+ const orchestratorStatus = orchestratorStatusResult.status === "fulfilled"
1828
+ ? orchestratorStatusResult.value
1829
+ : null;
1830
+ if (!acpSessions && !taskThreads && !orchestratorStatus) {
1831
+ return null;
1832
+ }
1833
+ const acpTasks = acpSessions
1834
+ ? mapAcpSessionsToCodingAgentSessions(acpSessions).filter((task) => !TERMINAL_STATUSES.has(task.status))
1835
+ : [];
1836
+ const taskThreadSessions = taskThreads
1837
+ ? mapTaskThreadsToCodingAgentSessions(taskThreads).filter((task) => !TERMINAL_STATUSES.has(task.status))
1838
+ : [];
1839
+ const tasks = [...acpTasks, ...taskThreadSessions];
1840
+ const taskThreadCount = typeof orchestratorStatus?.taskCount === "number"
1841
+ ? orchestratorStatus.taskCount
1842
+ : (taskThreads?.length ?? 0);
1406
1843
  try {
1407
- const status = await this.fetch("/api/coding-agents/coordinator/status");
1408
- if (status &&
1409
- status.tasks.length === 0 &&
1410
- Array.isArray(status.taskThreads) &&
1411
- status.taskThreads.length > 0) {
1412
- status.tasks = mapTaskThreadsToCodingAgentSessions(status.taskThreads).filter((task) => !TERMINAL_STATUSES.has(task.status));
1413
- status.taskCount = status.tasks.length;
1414
- }
1415
- if (status && !status.tasks) {
1416
- // Only fall back to the raw PTY session list when the coordinator
1417
- // didn't return a tasks array at all (null/undefined). An empty
1418
- // array means "no tasks" — no need to hit /api/coding-agents which
1419
- // may not have a handler and would hang until timeout.
1420
- try {
1421
- const ptySessions = await this.fetch("/api/coding-agents");
1422
- if (Array.isArray(ptySessions) && ptySessions.length > 0) {
1423
- status.tasks = mapPtySessionsToCodingAgentSessions(ptySessions);
1424
- status.taskCount = status.tasks.length;
1425
- }
1426
- }
1427
- catch {
1428
- // /api/coding-agents may not exist — ignore
1429
- }
1430
- }
1431
- return status;
1844
+ return {
1845
+ supervisionLevel: acpSessions ? "acp" : "orchestrator",
1846
+ taskCount: tasks.length,
1847
+ tasks,
1848
+ pendingConfirmations: 0,
1849
+ taskThreadCount,
1850
+ taskThreads: taskThreads ?? [],
1851
+ };
1432
1852
  }
1433
1853
  catch {
1434
1854
  return null;
1435
1855
  }
1436
1856
  };
1437
- ElizaClient.prototype.listCodingAgentTaskThreads = function (options) {
1857
+ ElizaClient.prototype.listCodingAgentTaskThreads = async function (options) {
1438
1858
  const params = new URLSearchParams();
1439
1859
  if (options?.includeArchived)
1440
1860
  params.set("includeArchived", "true");
@@ -1442,23 +1862,284 @@ ElizaClient.prototype.listCodingAgentTaskThreads = function (options) {
1442
1862
  params.set("status", options.status);
1443
1863
  if (options?.search)
1444
1864
  params.set("search", options.search);
1445
- if (typeof options?.limit === "number" && options.limit > 0) {
1865
+ if (typeof options?.limit === "number") {
1446
1866
  params.set("limit", String(options.limit));
1447
1867
  }
1448
- const query = params.toString();
1449
- return this.fetch(`/api/coding-agents/coordinator/threads${query ? `?${query}` : ""}`);
1868
+ const qs = params.toString();
1869
+ const res = await this.fetch(`/api/orchestrator/tasks${qs ? `?${qs}` : ""}`);
1870
+ return res.tasks;
1450
1871
  };
1451
- ElizaClient.prototype.getCodingAgentTaskThread = function (threadId) {
1452
- return this.fetch(`/api/coding-agents/coordinator/threads/${encodeURIComponent(threadId)}`);
1872
+ ElizaClient.prototype.getCodingAgentTaskThread = async function (threadId) {
1873
+ try {
1874
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(threadId)}`);
1875
+ }
1876
+ catch (error) {
1877
+ // A task that no longer exists (deleted between list and detail fetch) is a
1878
+ // normal "no detail" outcome, not a load failure. Every other error
1879
+ // propagates so the caller can surface it.
1880
+ if (error instanceof ApiError && error.status === 404) {
1881
+ return null;
1882
+ }
1883
+ throw error;
1884
+ }
1453
1885
  };
1454
1886
  ElizaClient.prototype.archiveCodingAgentTaskThread = async function (threadId) {
1455
- await this.fetch(`/api/coding-agents/coordinator/threads/${encodeURIComponent(threadId)}/archive`, { method: "POST" });
1887
+ await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(threadId)}/archive`, { method: "POST" });
1456
1888
  return true;
1457
1889
  };
1458
1890
  ElizaClient.prototype.reopenCodingAgentTaskThread = async function (threadId) {
1459
- await this.fetch(`/api/coding-agents/coordinator/threads/${encodeURIComponent(threadId)}/reopen`, { method: "POST" });
1891
+ await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(threadId)}/reopen`, { method: "POST" });
1892
+ return true;
1893
+ };
1894
+ // --- Orchestrator-native task operations (/api/orchestrator/*) -------------
1895
+ // The four methods above are the compatibility surface the legacy coding-agent
1896
+ // panel binds to. The methods below are the orchestrator workbench vocabulary.
1897
+ // A task that vanished resolves to null on detail reads so the rail can refresh.
1898
+ ElizaClient.prototype.getOrchestratorStatus = async function () {
1899
+ return this.fetch("/api/orchestrator/status");
1900
+ };
1901
+ ElizaClient.prototype.getOrchestratorAccounts = async function () {
1902
+ return this.fetch("/api/orchestrator/accounts");
1903
+ };
1904
+ ElizaClient.prototype.getOrchestratorRooms = async function () {
1905
+ return this.fetch("/api/orchestrator/rooms");
1906
+ };
1907
+ ElizaClient.prototype.createOrchestratorTask = function (input) {
1908
+ return this.fetch("/api/orchestrator/tasks", {
1909
+ method: "POST",
1910
+ body: JSON.stringify(input),
1911
+ headers: { "Content-Type": "application/json" },
1912
+ });
1913
+ };
1914
+ ElizaClient.prototype.pauseOrchestratorTask = async function (taskId) {
1915
+ try {
1916
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/pause`, { method: "POST" });
1917
+ }
1918
+ catch (error) {
1919
+ if (error instanceof ApiError && error.status === 404)
1920
+ return null;
1921
+ throw error;
1922
+ }
1923
+ };
1924
+ ElizaClient.prototype.resumeOrchestratorTask = async function (taskId) {
1925
+ try {
1926
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/resume`, { method: "POST" });
1927
+ }
1928
+ catch (error) {
1929
+ if (error instanceof ApiError && error.status === 404)
1930
+ return null;
1931
+ throw error;
1932
+ }
1933
+ };
1934
+ ElizaClient.prototype.deleteOrchestratorTask = async function (taskId) {
1935
+ await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}`, { method: "DELETE" });
1936
+ return true;
1937
+ };
1938
+ ElizaClient.prototype.forkOrchestratorTask = async function (taskId, input) {
1939
+ try {
1940
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/fork`, {
1941
+ method: "POST",
1942
+ body: JSON.stringify(input ?? {}),
1943
+ headers: { "Content-Type": "application/json" },
1944
+ });
1945
+ }
1946
+ catch (error) {
1947
+ if (error instanceof ApiError && error.status === 404)
1948
+ return null;
1949
+ throw error;
1950
+ }
1951
+ };
1952
+ ElizaClient.prototype.updateOrchestratorTask = async function (taskId, input) {
1953
+ try {
1954
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}`, {
1955
+ method: "PATCH",
1956
+ body: JSON.stringify(input),
1957
+ headers: { "Content-Type": "application/json" },
1958
+ });
1959
+ }
1960
+ catch (error) {
1961
+ if (error instanceof ApiError && error.status === 404)
1962
+ return null;
1963
+ throw error;
1964
+ }
1965
+ };
1966
+ ElizaClient.prototype.validateOrchestratorTask = async function (taskId, input) {
1967
+ try {
1968
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/validate`, {
1969
+ method: "POST",
1970
+ body: JSON.stringify(input),
1971
+ headers: { "Content-Type": "application/json" },
1972
+ });
1973
+ }
1974
+ catch (error) {
1975
+ if (error instanceof ApiError && error.status === 404)
1976
+ return null;
1977
+ throw error;
1978
+ }
1979
+ };
1980
+ ElizaClient.prototype.addOrchestratorAgent = async function (taskId, input) {
1981
+ try {
1982
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/agents`, {
1983
+ method: "POST",
1984
+ body: JSON.stringify(input),
1985
+ headers: { "Content-Type": "application/json" },
1986
+ });
1987
+ }
1988
+ catch (error) {
1989
+ if (error instanceof ApiError && error.status === 404)
1990
+ return null;
1991
+ throw error;
1992
+ }
1993
+ };
1994
+ ElizaClient.prototype.stopOrchestratorAgent = async function (taskId, sessionId) {
1995
+ await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/agents/${encodeURIComponent(sessionId)}/stop`, { method: "POST" });
1460
1996
  return true;
1461
1997
  };
1998
+ ElizaClient.prototype.retryOrchestratorTaskTurn = async function (taskId, input) {
1999
+ try {
2000
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/retry-turn`, {
2001
+ method: "POST",
2002
+ body: JSON.stringify(input),
2003
+ headers: { "Content-Type": "application/json" },
2004
+ });
2005
+ }
2006
+ catch (error) {
2007
+ if (error instanceof ApiError && error.status === 404)
2008
+ return null;
2009
+ throw error;
2010
+ }
2011
+ };
2012
+ ElizaClient.prototype.rerunOrchestratorTaskFromEvent = async function (taskId, input) {
2013
+ try {
2014
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/rerun-from-event`, {
2015
+ method: "POST",
2016
+ body: JSON.stringify(input),
2017
+ headers: { "Content-Type": "application/json" },
2018
+ });
2019
+ }
2020
+ catch (error) {
2021
+ if (error instanceof ApiError && error.status === 404)
2022
+ return null;
2023
+ throw error;
2024
+ }
2025
+ };
2026
+ ElizaClient.prototype.restartOrchestratorTask = async function (taskId, input) {
2027
+ try {
2028
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/restart`, {
2029
+ method: "POST",
2030
+ body: JSON.stringify(input ?? {}),
2031
+ headers: { "Content-Type": "application/json" },
2032
+ });
2033
+ }
2034
+ catch (error) {
2035
+ if (error instanceof ApiError && error.status === 404)
2036
+ return null;
2037
+ throw error;
2038
+ }
2039
+ };
2040
+ ElizaClient.prototype.restartOrchestratorTaskWithEditedPlan = async function (taskId, input) {
2041
+ try {
2042
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/restart-with-edited-plan`, {
2043
+ method: "POST",
2044
+ body: JSON.stringify(input),
2045
+ headers: { "Content-Type": "application/json" },
2046
+ });
2047
+ }
2048
+ catch (error) {
2049
+ if (error instanceof ApiError && error.status === 404)
2050
+ return null;
2051
+ throw error;
2052
+ }
2053
+ };
2054
+ ElizaClient.prototype.listOrchestratorTaskPlanRevisions = function (taskId, options) {
2055
+ const params = new URLSearchParams();
2056
+ if (options?.cursor)
2057
+ params.set("cursor", options.cursor);
2058
+ if (typeof options?.limit === "number") {
2059
+ params.set("limit", String(options.limit));
2060
+ }
2061
+ const qs = params.toString();
2062
+ return this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/plan-revisions${qs ? `?${qs}` : ""}`);
2063
+ };
2064
+ ElizaClient.prototype.createOrchestratorTaskPlanRevision = async function (taskId, input) {
2065
+ try {
2066
+ return await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/plan-revisions`, {
2067
+ method: "POST",
2068
+ body: JSON.stringify(input),
2069
+ headers: { "Content-Type": "application/json" },
2070
+ });
2071
+ }
2072
+ catch (error) {
2073
+ if (error instanceof ApiError && error.status === 404)
2074
+ return null;
2075
+ throw error;
2076
+ }
2077
+ };
2078
+ ElizaClient.prototype.listOrchestratorTaskMessages = function (taskId, options) {
2079
+ const params = new URLSearchParams();
2080
+ if (options?.cursor)
2081
+ params.set("cursor", options.cursor);
2082
+ if (typeof options?.limit === "number") {
2083
+ params.set("limit", String(options.limit));
2084
+ }
2085
+ const qs = params.toString();
2086
+ return this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/messages${qs ? `?${qs}` : ""}`);
2087
+ };
2088
+ ElizaClient.prototype.postOrchestratorTaskMessage = async function (taskId, content) {
2089
+ const result = await this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/messages`, {
2090
+ method: "POST",
2091
+ body: JSON.stringify({ content }),
2092
+ headers: { "Content-Type": "application/json" },
2093
+ });
2094
+ return result.recorded && (result.failedTo?.length ?? 0) === 0;
2095
+ };
2096
+ ElizaClient.prototype.listOrchestratorTaskEvents = function (taskId, options) {
2097
+ const params = new URLSearchParams();
2098
+ if (options?.cursor)
2099
+ params.set("cursor", options.cursor);
2100
+ if (typeof options?.limit === "number") {
2101
+ params.set("limit", String(options.limit));
2102
+ }
2103
+ const qs = params.toString();
2104
+ return this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/events${qs ? `?${qs}` : ""}`);
2105
+ };
2106
+ ElizaClient.prototype.listOrchestratorTaskTimeline = function (taskId, options) {
2107
+ const params = new URLSearchParams();
2108
+ if (options?.cursor)
2109
+ params.set("cursor", options.cursor);
2110
+ if (typeof options?.limit === "number") {
2111
+ params.set("limit", String(options.limit));
2112
+ }
2113
+ const qs = params.toString();
2114
+ return this.fetch(`/api/orchestrator/tasks/${encodeURIComponent(taskId)}/timeline${qs ? `?${qs}` : ""}`);
2115
+ };
2116
+ ElizaClient.prototype.streamOrchestratorTask = function (taskId, onChange) {
2117
+ if (typeof EventSource === "undefined")
2118
+ return () => { };
2119
+ const url = `${this.baseUrl || ""}/api/orchestrator/tasks/${encodeURIComponent(taskId)}/stream`;
2120
+ const source = new EventSource(url);
2121
+ source.onmessage = (event) => {
2122
+ try {
2123
+ const data = JSON.parse(event.data);
2124
+ // The stream pings `{type:"change"}` on every room mutation; the caller
2125
+ // refetches the tail. `ready` and heartbeat comments are ignored.
2126
+ if (data && data.type === "change")
2127
+ onChange();
2128
+ }
2129
+ catch {
2130
+ // ignore non-JSON frames
2131
+ }
2132
+ };
2133
+ return () => source.close();
2134
+ };
2135
+ ElizaClient.prototype.pauseAllOrchestratorTasks = async function () {
2136
+ const res = await this.fetch("/api/orchestrator/pause-all", { method: "POST" });
2137
+ return res.paused;
2138
+ };
2139
+ ElizaClient.prototype.resumeAllOrchestratorTasks = async function () {
2140
+ const res = await this.fetch("/api/orchestrator/resume-all", { method: "POST" });
2141
+ return res.resumed;
2142
+ };
1462
2143
  ElizaClient.prototype.stopCodingAgent = async function (sessionId) {
1463
2144
  try {
1464
2145
  await this.fetch(`/api/coding-agents/${encodeURIComponent(sessionId)}/stop`, { method: "POST" });
@@ -1472,8 +2153,7 @@ ElizaClient.prototype.listCodingAgentScratchWorkspaces = async function () {
1472
2153
  try {
1473
2154
  return await this.fetch("/api/coding-agents/scratch");
1474
2155
  }
1475
- catch (err) {
1476
- console.warn("[api-client] Failed to list coding agent scratch workspaces:", err);
2156
+ catch {
1477
2157
  return [];
1478
2158
  }
1479
2159
  };
@@ -1583,6 +2263,17 @@ ElizaClient.prototype.streamVoiceSpeak = async function (text) {
1583
2263
  body: JSON.stringify({ text }),
1584
2264
  });
1585
2265
  };
2266
+ ElizaClient.prototype.synthesizeFirstRunSpeech = async function (lineId) {
2267
+ const res = await this.rawRequest("/api/tts/first-run/speak", {
2268
+ method: "POST",
2269
+ headers: { "Content-Type": "application/json" },
2270
+ body: JSON.stringify({ lineId }),
2271
+ });
2272
+ if (!res.ok) {
2273
+ throw new Error(`first-run TTS ${res.status}`);
2274
+ }
2275
+ return res.arrayBuffer();
2276
+ };
1586
2277
  ElizaClient.prototype.getOverlayLayout = async function (destinationId) {
1587
2278
  const qs = destinationId
1588
2279
  ? `?destination=${encodeURIComponent(destinationId)}`