skybridge 0.0.0-dev.efb7a49 → 0.0.0-dev.efba8c5

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 (500) hide show
  1. package/README.md +126 -128
  2. package/dist/cli/build-helpers.d.ts +11 -0
  3. package/dist/cli/build-helpers.js +107 -0
  4. package/dist/cli/build-helpers.js.map +1 -0
  5. package/dist/cli/build-helpers.test.js +132 -0
  6. package/dist/cli/build-helpers.test.js.map +1 -0
  7. package/dist/cli/build-steps.d.ts +2 -0
  8. package/dist/cli/build-steps.js +73 -0
  9. package/dist/cli/build-steps.js.map +1 -0
  10. package/dist/cli/build-steps.test.js +52 -0
  11. package/dist/cli/build-steps.test.js.map +1 -0
  12. package/dist/cli/detect-port.d.ts +2 -2
  13. package/dist/cli/detect-port.js +8 -20
  14. package/dist/cli/detect-port.js.map +1 -1
  15. package/dist/cli/header.d.ts +1 -1
  16. package/dist/cli/header.js +1 -1
  17. package/dist/cli/header.js.map +1 -1
  18. package/dist/cli/resolve-skybridge-config.d.ts +5 -0
  19. package/dist/cli/resolve-skybridge-config.js +18 -0
  20. package/dist/cli/resolve-skybridge-config.js.map +1 -0
  21. package/dist/cli/run-command.js.map +1 -1
  22. package/dist/cli/run-plain.d.ts +18 -0
  23. package/dist/cli/run-plain.js +89 -0
  24. package/dist/cli/run-plain.js.map +1 -0
  25. package/dist/cli/telemetry.js.map +1 -1
  26. package/dist/cli/tunnel-control-server.d.ts +9 -0
  27. package/dist/cli/tunnel-control-server.js +31 -0
  28. package/dist/cli/tunnel-control-server.js.map +1 -0
  29. package/dist/cli/tunnel-control-server.test.js +39 -0
  30. package/dist/cli/tunnel-control-server.test.js.map +1 -0
  31. package/dist/cli/tunnel-handler.d.ts +3 -0
  32. package/dist/cli/tunnel-handler.js +48 -0
  33. package/dist/cli/tunnel-handler.js.map +1 -0
  34. package/dist/cli/tunnel-handler.test.js +105 -0
  35. package/dist/cli/tunnel-handler.test.js.map +1 -0
  36. package/dist/cli/tunnel.d.ts +57 -0
  37. package/dist/cli/tunnel.js +154 -0
  38. package/dist/cli/tunnel.js.map +1 -0
  39. package/dist/cli/tunnel.test.js +190 -0
  40. package/dist/cli/tunnel.test.js.map +1 -0
  41. package/dist/cli/types.js.map +1 -1
  42. package/dist/cli/use-execute-steps.d.ts +1 -1
  43. package/dist/cli/use-execute-steps.js.map +1 -1
  44. package/dist/cli/use-messages.d.ts +3 -0
  45. package/dist/cli/use-messages.js +11 -0
  46. package/dist/cli/use-messages.js.map +1 -0
  47. package/dist/cli/use-nodemon.d.ts +16 -2
  48. package/dist/cli/use-nodemon.js +84 -72
  49. package/dist/cli/use-nodemon.js.map +1 -1
  50. package/dist/cli/use-open-browser.d.ts +1 -0
  51. package/dist/cli/use-open-browser.js +44 -0
  52. package/dist/cli/use-open-browser.js.map +1 -0
  53. package/dist/cli/use-tunnel.d.ts +13 -7
  54. package/dist/cli/use-tunnel.js +103 -73
  55. package/dist/cli/use-tunnel.js.map +1 -1
  56. package/dist/cli/use-typescript-check.d.ts +9 -2
  57. package/dist/cli/use-typescript-check.js +89 -51
  58. package/dist/cli/use-typescript-check.js.map +1 -1
  59. package/dist/commands/build.d.ts +0 -3
  60. package/dist/commands/build.js +3 -18
  61. package/dist/commands/build.js.map +1 -1
  62. package/dist/commands/create.d.ts +9 -0
  63. package/dist/commands/create.js +30 -0
  64. package/dist/commands/create.js.map +1 -0
  65. package/dist/commands/dev.d.ts +3 -0
  66. package/dist/commands/dev.js +90 -6
  67. package/dist/commands/dev.js.map +1 -1
  68. package/dist/commands/start.js +13 -10
  69. package/dist/commands/start.js.map +1 -1
  70. package/dist/commands/telemetry/disable.js.map +1 -1
  71. package/dist/commands/telemetry/enable.js.map +1 -1
  72. package/dist/commands/telemetry/status.js.map +1 -1
  73. package/dist/context-warnings.d.ts +5 -0
  74. package/dist/context-warnings.js +31 -0
  75. package/dist/context-warnings.js.map +1 -0
  76. package/dist/context-warnings.test.js +28 -0
  77. package/dist/context-warnings.test.js.map +1 -0
  78. package/dist/server/app.d.ts +194 -0
  79. package/dist/server/app.js +266 -0
  80. package/dist/server/app.js.map +1 -0
  81. package/dist/server/app.test.d.ts +1 -0
  82. package/dist/server/app.test.js +97 -0
  83. package/dist/server/app.test.js.map +1 -0
  84. package/dist/server/asset-base-url-transform-plugin.d.ts +6 -6
  85. package/dist/server/asset-base-url-transform-plugin.js +25 -11
  86. package/dist/server/asset-base-url-transform-plugin.js.map +1 -1
  87. package/dist/server/asset-base-url-transform-plugin.test.js +92 -14
  88. package/dist/server/asset-base-url-transform-plugin.test.js.map +1 -1
  89. package/dist/server/auth/discovery.d.ts +33 -0
  90. package/dist/server/auth/discovery.js +56 -0
  91. package/dist/server/auth/discovery.js.map +1 -0
  92. package/dist/server/auth/discovery.test.d.ts +1 -0
  93. package/dist/server/auth/discovery.test.js +93 -0
  94. package/dist/server/auth/discovery.test.js.map +1 -0
  95. package/dist/server/auth/index.d.ts +48 -0
  96. package/dist/server/auth/index.js +2 -0
  97. package/dist/server/auth/index.js.map +1 -0
  98. package/dist/server/auth/providers/auth0.d.ts +40 -0
  99. package/dist/server/auth/providers/auth0.js +36 -0
  100. package/dist/server/auth/providers/auth0.js.map +1 -0
  101. package/dist/server/auth/providers/auth0.test.d.ts +1 -0
  102. package/dist/server/auth/providers/auth0.test.js +50 -0
  103. package/dist/server/auth/providers/auth0.test.js.map +1 -0
  104. package/dist/server/auth/providers/authplane.d.ts +49 -0
  105. package/dist/server/auth/providers/authplane.js +57 -0
  106. package/dist/server/auth/providers/authplane.js.map +1 -0
  107. package/dist/server/auth/providers/authplane.test.d.ts +1 -0
  108. package/dist/server/auth/providers/authplane.test.js +143 -0
  109. package/dist/server/auth/providers/authplane.test.js.map +1 -0
  110. package/dist/server/auth/providers/clerk.d.ts +51 -0
  111. package/dist/server/auth/providers/clerk.js +19 -0
  112. package/dist/server/auth/providers/clerk.js.map +1 -0
  113. package/dist/server/auth/providers/clerk.test.d.ts +1 -0
  114. package/dist/server/auth/providers/clerk.test.js +30 -0
  115. package/dist/server/auth/providers/clerk.test.js.map +1 -0
  116. package/dist/server/auth/providers/custom.d.ts +40 -0
  117. package/dist/server/auth/providers/custom.js +59 -0
  118. package/dist/server/auth/providers/custom.js.map +1 -0
  119. package/dist/server/auth/providers/custom.test.d.ts +1 -0
  120. package/dist/server/auth/providers/custom.test.js +161 -0
  121. package/dist/server/auth/providers/custom.test.js.map +1 -0
  122. package/dist/server/auth/providers/descope.d.ts +44 -0
  123. package/dist/server/auth/providers/descope.js +44 -0
  124. package/dist/server/auth/providers/descope.js.map +1 -0
  125. package/dist/server/auth/providers/descope.test.d.ts +1 -0
  126. package/dist/server/auth/providers/descope.test.js +62 -0
  127. package/dist/server/auth/providers/descope.test.js.map +1 -0
  128. package/dist/server/auth/providers/shared.d.ts +2 -0
  129. package/dist/server/auth/providers/shared.js +6 -0
  130. package/dist/server/auth/providers/shared.js.map +1 -0
  131. package/dist/server/auth/providers/shared.test.d.ts +1 -0
  132. package/dist/server/auth/providers/shared.test.js +10 -0
  133. package/dist/server/auth/providers/shared.test.js.map +1 -0
  134. package/dist/server/auth/providers/stytch.d.ts +25 -0
  135. package/dist/server/auth/providers/stytch.js +16 -0
  136. package/dist/server/auth/providers/stytch.js.map +1 -0
  137. package/dist/server/auth/providers/verify-spy.d.ts +12 -0
  138. package/dist/server/auth/providers/verify-spy.js +21 -0
  139. package/dist/server/auth/providers/verify-spy.js.map +1 -0
  140. package/dist/server/auth/providers/workos.d.ts +33 -0
  141. package/dist/server/auth/providers/workos.js +15 -0
  142. package/dist/server/auth/providers/workos.js.map +1 -0
  143. package/dist/server/auth/security-schemes.d.ts +23 -0
  144. package/dist/server/auth/security-schemes.js +64 -0
  145. package/dist/server/auth/security-schemes.js.map +1 -0
  146. package/dist/server/auth/security-schemes.test.d.ts +1 -0
  147. package/dist/server/auth/security-schemes.test.js +99 -0
  148. package/dist/server/auth/security-schemes.test.js.map +1 -0
  149. package/dist/server/auth/setup.d.ts +6 -0
  150. package/dist/server/auth/setup.js +91 -0
  151. package/dist/server/auth/setup.js.map +1 -0
  152. package/dist/server/auth/setup.test.d.ts +1 -0
  153. package/dist/server/auth/setup.test.js +514 -0
  154. package/dist/server/auth/setup.test.js.map +1 -0
  155. package/dist/server/auth/verify.d.ts +46 -0
  156. package/dist/server/auth/verify.js +62 -0
  157. package/dist/server/auth/verify.js.map +1 -0
  158. package/dist/server/auth/verify.test.d.ts +1 -0
  159. package/dist/server/auth/verify.test.js +149 -0
  160. package/dist/server/auth/verify.test.js.map +1 -0
  161. package/dist/server/auth-extra.test-d.d.ts +1 -0
  162. package/dist/server/auth-extra.test-d.js +130 -0
  163. package/dist/server/auth-extra.test-d.js.map +1 -0
  164. package/dist/server/auth.d.ts +57 -0
  165. package/dist/server/auth.js +27 -0
  166. package/dist/server/auth.js.map +1 -0
  167. package/dist/server/build-manifest.test.d.ts +1 -0
  168. package/dist/server/build-manifest.test.js +28 -0
  169. package/dist/server/build-manifest.test.js.map +1 -0
  170. package/dist/server/content-helpers.d.ts +67 -0
  171. package/dist/server/content-helpers.js +79 -0
  172. package/dist/server/content-helpers.js.map +1 -0
  173. package/dist/server/content-helpers.test.d.ts +1 -0
  174. package/dist/server/content-helpers.test.js +70 -0
  175. package/dist/server/content-helpers.test.js.map +1 -0
  176. package/dist/server/express.d.ts +23 -7
  177. package/dist/server/express.js +62 -32
  178. package/dist/server/express.js.map +1 -1
  179. package/dist/server/express.test.js +429 -73
  180. package/dist/server/express.test.js.map +1 -1
  181. package/dist/server/file-ref.d.ts +28 -0
  182. package/dist/server/file-ref.js +27 -0
  183. package/dist/server/file-ref.js.map +1 -0
  184. package/dist/server/host.d.ts +2 -0
  185. package/dist/server/host.js +11 -0
  186. package/dist/server/host.js.map +1 -0
  187. package/dist/server/host.test.d.ts +1 -0
  188. package/dist/server/host.test.js +13 -0
  189. package/dist/server/host.test.js.map +1 -0
  190. package/dist/server/index.d.ts +20 -3
  191. package/dist/server/index.js +17 -2
  192. package/dist/server/index.js.map +1 -1
  193. package/dist/server/inferUtilityTypes.d.ts +6 -6
  194. package/dist/server/inferUtilityTypes.js.map +1 -1
  195. package/dist/server/mcp-errors.test.d.ts +1 -0
  196. package/dist/server/mcp-errors.test.js +41 -0
  197. package/dist/server/mcp-errors.test.js.map +1 -0
  198. package/dist/server/metric.d.ts +14 -0
  199. package/dist/server/metric.js +62 -0
  200. package/dist/server/metric.js.map +1 -0
  201. package/dist/server/middleware.d.ts +51 -13
  202. package/dist/server/middleware.js +33 -0
  203. package/dist/server/middleware.js.map +1 -1
  204. package/dist/server/middleware.test-d.js +1 -1
  205. package/dist/server/middleware.test-d.js.map +1 -1
  206. package/dist/server/middleware.test.js +242 -131
  207. package/dist/server/middleware.test.js.map +1 -1
  208. package/dist/server/register-tool.test.d.ts +1 -0
  209. package/dist/server/register-tool.test.js +27 -0
  210. package/dist/server/register-tool.test.js.map +1 -0
  211. package/dist/server/requestOrigin.d.ts +7 -0
  212. package/dist/server/requestOrigin.js +25 -0
  213. package/dist/server/requestOrigin.js.map +1 -0
  214. package/dist/server/server.d.ts +359 -89
  215. package/dist/server/server.js +488 -230
  216. package/dist/server/server.js.map +1 -1
  217. package/dist/server/skills-integration.test.d.ts +1 -0
  218. package/dist/server/skills-integration.test.js +86 -0
  219. package/dist/server/skills-integration.test.js.map +1 -0
  220. package/dist/server/skills.d.ts +27 -0
  221. package/dist/server/skills.js +188 -0
  222. package/dist/server/skills.js.map +1 -0
  223. package/dist/server/skills.test.d.ts +1 -0
  224. package/dist/server/skills.test.js +243 -0
  225. package/dist/server/skills.test.js.map +1 -0
  226. package/dist/server/templateHelper.d.ts +2 -7
  227. package/dist/server/templateHelper.js +3 -22
  228. package/dist/server/templateHelper.js.map +1 -1
  229. package/dist/server/templates.generated.d.ts +4 -0
  230. package/dist/server/templates.generated.js +43 -0
  231. package/dist/server/templates.generated.js.map +1 -0
  232. package/dist/server/tool-extra.test.d.ts +1 -0
  233. package/dist/server/tool-extra.test.js +88 -0
  234. package/dist/server/tool-extra.test.js.map +1 -0
  235. package/dist/server/tunnel-proxy-router.d.ts +7 -0
  236. package/dist/server/tunnel-proxy-router.js +110 -0
  237. package/dist/server/tunnel-proxy-router.js.map +1 -0
  238. package/dist/server/tunnel-proxy-router.test.d.ts +1 -0
  239. package/dist/server/tunnel-proxy-router.test.js +229 -0
  240. package/dist/server/tunnel-proxy-router.test.js.map +1 -0
  241. package/dist/server/view-name.test-d.d.ts +1 -0
  242. package/dist/server/view-name.test-d.js +8 -0
  243. package/dist/server/view-name.test-d.js.map +1 -0
  244. package/dist/server/view-resource-resolution.test.d.ts +6 -0
  245. package/dist/server/view-resource-resolution.test.js +176 -0
  246. package/dist/server/view-resource-resolution.test.js.map +1 -0
  247. package/dist/server/viewsDevServer.d.ts +14 -0
  248. package/dist/server/viewsDevServer.js +48 -0
  249. package/dist/server/viewsDevServer.js.map +1 -0
  250. package/dist/test/utils.d.ts +21 -31
  251. package/dist/test/utils.js +222 -198
  252. package/dist/test/utils.js.map +1 -1
  253. package/dist/test/view.test.d.ts +1 -0
  254. package/dist/test/view.test.js +540 -0
  255. package/dist/test/view.test.js.map +1 -0
  256. package/dist/version.d.ts +1 -0
  257. package/dist/version.js +3 -0
  258. package/dist/version.js.map +1 -0
  259. package/dist/views/index.d.ts +10 -0
  260. package/dist/views/index.js +3 -0
  261. package/dist/views/index.js.map +1 -0
  262. package/dist/views/scan-views.d.ts +16 -0
  263. package/dist/views/scan-views.js +88 -0
  264. package/dist/views/scan-views.js.map +1 -0
  265. package/dist/views/scan-views.test.d.ts +1 -0
  266. package/dist/views/scan-views.test.js +99 -0
  267. package/dist/views/scan-views.test.js.map +1 -0
  268. package/dist/views/validate-view.d.ts +1 -0
  269. package/dist/views/validate-view.js +9 -0
  270. package/dist/views/validate-view.js.map +1 -0
  271. package/dist/views/validate-view.test.d.ts +1 -0
  272. package/dist/views/validate-view.test.js +24 -0
  273. package/dist/views/validate-view.test.js.map +1 -0
  274. package/dist/web/bridges/adaptor.d.ts +51 -0
  275. package/dist/web/bridges/adaptor.js +327 -0
  276. package/dist/web/bridges/adaptor.js.map +1 -0
  277. package/dist/web/bridges/adaptor.test.d.ts +1 -0
  278. package/dist/web/bridges/adaptor.test.js +225 -0
  279. package/dist/web/bridges/adaptor.test.js.map +1 -0
  280. package/dist/web/bridges/apps-sdk/bridge.d.ts +6 -1
  281. package/dist/web/bridges/apps-sdk/bridge.js +15 -3
  282. package/dist/web/bridges/apps-sdk/bridge.js.map +1 -1
  283. package/dist/web/bridges/apps-sdk/index.d.ts +0 -1
  284. package/dist/web/bridges/apps-sdk/index.js +0 -1
  285. package/dist/web/bridges/apps-sdk/index.js.map +1 -1
  286. package/dist/web/bridges/apps-sdk/types.d.ts +18 -6
  287. package/dist/web/bridges/apps-sdk/types.js.map +1 -1
  288. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.d.ts +11 -0
  289. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js +11 -0
  290. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js.map +1 -1
  291. package/dist/web/bridges/get-adaptor.d.ts +7 -0
  292. package/dist/web/bridges/get-adaptor.js +9 -7
  293. package/dist/web/bridges/get-adaptor.js.map +1 -1
  294. package/dist/web/bridges/get-adaptor.test.d.ts +1 -0
  295. package/dist/web/bridges/get-adaptor.test.js +32 -0
  296. package/dist/web/bridges/get-adaptor.test.js.map +1 -0
  297. package/dist/web/bridges/index.js.map +1 -1
  298. package/dist/web/bridges/mcp-app/bridge.d.ts +15 -2
  299. package/dist/web/bridges/mcp-app/bridge.js +73 -7
  300. package/dist/web/bridges/mcp-app/bridge.js.map +1 -1
  301. package/dist/web/bridges/mcp-app/bridge.test.d.ts +1 -0
  302. package/dist/web/bridges/mcp-app/bridge.test.js +17 -0
  303. package/dist/web/bridges/mcp-app/bridge.test.js.map +1 -0
  304. package/dist/web/bridges/mcp-app/index.d.ts +0 -1
  305. package/dist/web/bridges/mcp-app/index.js +0 -1
  306. package/dist/web/bridges/mcp-app/index.js.map +1 -1
  307. package/dist/web/bridges/mcp-app/types.d.ts +2 -0
  308. package/dist/web/bridges/mcp-app/types.js.map +1 -1
  309. package/dist/web/bridges/mcp-app/use-mcp-app-context.d.ts +12 -0
  310. package/dist/web/bridges/mcp-app/use-mcp-app-context.js +12 -0
  311. package/dist/web/bridges/mcp-app/use-mcp-app-context.js.map +1 -1
  312. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.js +1 -1
  313. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.js.map +1 -1
  314. package/dist/web/bridges/mcp-app/view-tools.test.d.ts +1 -0
  315. package/dist/web/bridges/mcp-app/view-tools.test.js +143 -0
  316. package/dist/web/bridges/mcp-app/view-tools.test.js.map +1 -0
  317. package/dist/web/bridges/types.d.ts +127 -11
  318. package/dist/web/bridges/types.js +14 -1
  319. package/dist/web/bridges/types.js.map +1 -1
  320. package/dist/web/bridges/types.test.d.ts +1 -0
  321. package/dist/web/bridges/types.test.js +19 -0
  322. package/dist/web/bridges/types.test.js.map +1 -0
  323. package/dist/web/bridges/use-host-context.d.ts +5 -0
  324. package/dist/web/bridges/use-host-context.js +5 -0
  325. package/dist/web/bridges/use-host-context.js.map +1 -1
  326. package/dist/web/components/modal-provider.d.ts +1 -1
  327. package/dist/web/components/modal-provider.js +4 -3
  328. package/dist/web/components/modal-provider.js.map +1 -1
  329. package/dist/web/create-store.d.ts +26 -0
  330. package/dist/web/create-store.js +43 -3
  331. package/dist/web/create-store.js.map +1 -1
  332. package/dist/web/create-store.test.js +24 -23
  333. package/dist/web/create-store.test.js.map +1 -1
  334. package/dist/web/data-llm.d.ts +35 -2
  335. package/dist/web/data-llm.js +31 -3
  336. package/dist/web/data-llm.js.map +1 -1
  337. package/dist/web/data-llm.test.js +42 -29
  338. package/dist/web/data-llm.test.js.map +1 -1
  339. package/dist/web/generate-helpers.d.ts +39 -31
  340. package/dist/web/generate-helpers.js +36 -28
  341. package/dist/web/generate-helpers.js.map +1 -1
  342. package/dist/web/generate-helpers.test-d.js +33 -31
  343. package/dist/web/generate-helpers.test-d.js.map +1 -1
  344. package/dist/web/generate-helpers.test.js +2 -2
  345. package/dist/web/generate-helpers.test.js.map +1 -1
  346. package/dist/web/helpers/state.d.ts +2 -2
  347. package/dist/web/helpers/state.js +11 -11
  348. package/dist/web/helpers/state.js.map +1 -1
  349. package/dist/web/helpers/state.test.js +9 -9
  350. package/dist/web/helpers/state.test.js.map +1 -1
  351. package/dist/web/hooks/index.d.ts +7 -2
  352. package/dist/web/hooks/index.js +7 -2
  353. package/dist/web/hooks/index.js.map +1 -1
  354. package/dist/web/hooks/test/utils.d.ts +7 -2
  355. package/dist/web/hooks/test/utils.js +14 -3
  356. package/dist/web/hooks/test/utils.js.map +1 -1
  357. package/dist/web/hooks/use-call-tool.d.ts +45 -0
  358. package/dist/web/hooks/use-call-tool.js +28 -0
  359. package/dist/web/hooks/use-call-tool.js.map +1 -1
  360. package/dist/web/hooks/use-call-tool.test-d.js.map +1 -1
  361. package/dist/web/hooks/use-call-tool.test.js +64 -29
  362. package/dist/web/hooks/use-call-tool.test.js.map +1 -1
  363. package/dist/web/hooks/use-display-mode.d.ts +20 -0
  364. package/dist/web/hooks/use-display-mode.js +20 -0
  365. package/dist/web/hooks/use-display-mode.js.map +1 -1
  366. package/dist/web/hooks/use-display-mode.test-d.js.map +1 -1
  367. package/dist/web/hooks/use-display-mode.test.js +57 -21
  368. package/dist/web/hooks/use-display-mode.test.js.map +1 -1
  369. package/dist/web/hooks/use-download.d.ts +3 -0
  370. package/dist/web/hooks/use-download.js +7 -0
  371. package/dist/web/hooks/use-download.js.map +1 -0
  372. package/dist/web/hooks/use-download.test.d.ts +1 -0
  373. package/dist/web/hooks/use-download.test.js +103 -0
  374. package/dist/web/hooks/use-download.test.js.map +1 -0
  375. package/dist/web/hooks/use-files.d.ts +34 -1
  376. package/dist/web/hooks/use-files.js +33 -0
  377. package/dist/web/hooks/use-files.js.map +1 -1
  378. package/dist/web/hooks/use-files.test.js +31 -3
  379. package/dist/web/hooks/use-files.test.js.map +1 -1
  380. package/dist/web/hooks/use-host.d.ts +22 -0
  381. package/dist/web/hooks/use-host.js +30 -0
  382. package/dist/web/hooks/use-host.js.map +1 -0
  383. package/dist/web/hooks/use-host.test.d.ts +1 -0
  384. package/dist/web/hooks/use-host.test.js +59 -0
  385. package/dist/web/hooks/use-host.test.js.map +1 -0
  386. package/dist/web/hooks/use-open-external.d.ts +17 -0
  387. package/dist/web/hooks/use-open-external.js +16 -0
  388. package/dist/web/hooks/use-open-external.js.map +1 -1
  389. package/dist/web/hooks/use-open-external.test.js +15 -5
  390. package/dist/web/hooks/use-open-external.test.js.map +1 -1
  391. package/dist/web/hooks/use-register-view-tool.d.ts +37 -0
  392. package/dist/web/hooks/use-register-view-tool.js +50 -0
  393. package/dist/web/hooks/use-register-view-tool.js.map +1 -0
  394. package/dist/web/hooks/use-request-close.d.ts +16 -0
  395. package/dist/web/hooks/use-request-close.js +21 -0
  396. package/dist/web/hooks/use-request-close.js.map +1 -0
  397. package/dist/web/hooks/use-request-close.test.d.ts +1 -0
  398. package/dist/web/hooks/use-request-close.test.js +47 -0
  399. package/dist/web/hooks/use-request-close.test.js.map +1 -0
  400. package/dist/web/hooks/use-request-modal.d.ts +16 -1
  401. package/dist/web/hooks/use-request-modal.js +19 -4
  402. package/dist/web/hooks/use-request-modal.js.map +1 -1
  403. package/dist/web/hooks/use-request-modal.test.js +12 -2
  404. package/dist/web/hooks/use-request-modal.test.js.map +1 -1
  405. package/dist/web/hooks/use-request-size.d.ts +20 -0
  406. package/dist/web/hooks/use-request-size.js +24 -0
  407. package/dist/web/hooks/use-request-size.js.map +1 -0
  408. package/dist/web/hooks/use-request-size.test.d.ts +1 -0
  409. package/dist/web/hooks/use-request-size.test.js +47 -0
  410. package/dist/web/hooks/use-request-size.test.js.map +1 -0
  411. package/dist/web/hooks/use-send-follow-up-message.d.ts +19 -1
  412. package/dist/web/hooks/use-send-follow-up-message.js +19 -2
  413. package/dist/web/hooks/use-send-follow-up-message.js.map +1 -1
  414. package/dist/web/hooks/use-set-open-in-app-url.d.ts +17 -0
  415. package/dist/web/hooks/use-set-open-in-app-url.js +17 -0
  416. package/dist/web/hooks/use-set-open-in-app-url.js.map +1 -1
  417. package/dist/web/hooks/use-set-open-in-app-url.test.js +26 -12
  418. package/dist/web/hooks/use-set-open-in-app-url.test.js.map +1 -1
  419. package/dist/web/hooks/use-tool-info.d.ts +46 -14
  420. package/dist/web/hooks/use-tool-info.js +29 -7
  421. package/dist/web/hooks/use-tool-info.js.map +1 -1
  422. package/dist/web/hooks/use-tool-info.test-d.js +11 -34
  423. package/dist/web/hooks/use-tool-info.test-d.js.map +1 -1
  424. package/dist/web/hooks/use-tool-info.test.js +42 -37
  425. package/dist/web/hooks/use-tool-info.test.js.map +1 -1
  426. package/dist/web/hooks/use-user.d.ts +5 -2
  427. package/dist/web/hooks/use-user.js +6 -3
  428. package/dist/web/hooks/use-user.js.map +1 -1
  429. package/dist/web/hooks/use-user.test.js +85 -37
  430. package/dist/web/hooks/use-user.test.js.map +1 -1
  431. package/dist/web/hooks/use-view-state.d.ts +25 -0
  432. package/dist/web/hooks/use-view-state.js +42 -0
  433. package/dist/web/hooks/use-view-state.js.map +1 -0
  434. package/dist/web/hooks/use-view-state.test.d.ts +1 -0
  435. package/dist/web/hooks/use-view-state.test.js +212 -0
  436. package/dist/web/hooks/use-view-state.test.js.map +1 -0
  437. package/dist/web/hooks/use-viewport.d.ts +20 -0
  438. package/dist/web/hooks/use-viewport.js +21 -0
  439. package/dist/web/hooks/use-viewport.js.map +1 -0
  440. package/dist/web/hooks/use-viewport.test.d.ts +1 -0
  441. package/dist/web/hooks/use-viewport.test.js +109 -0
  442. package/dist/web/hooks/use-viewport.test.js.map +1 -0
  443. package/dist/web/index.d.ts +1 -2
  444. package/dist/web/index.js +1 -2
  445. package/dist/web/index.js.map +1 -1
  446. package/dist/web/mount-view.d.ts +21 -0
  447. package/dist/web/mount-view.js +43 -0
  448. package/dist/web/mount-view.js.map +1 -0
  449. package/dist/web/proxy.js.map +1 -1
  450. package/dist/web/types.d.ts +4 -0
  451. package/dist/web/types.js.map +1 -1
  452. package/package.json +46 -26
  453. package/tsconfig.base.json +2 -0
  454. package/dist/server/templates/development.hbs +0 -12
  455. package/dist/server/templates/production.hbs +0 -6
  456. package/dist/server/widgetsDevServer.d.ts +0 -13
  457. package/dist/server/widgetsDevServer.js +0 -57
  458. package/dist/server/widgetsDevServer.js.map +0 -1
  459. package/dist/test/widget.test.js +0 -263
  460. package/dist/test/widget.test.js.map +0 -1
  461. package/dist/web/bridges/apps-sdk/adaptor.d.ts +0 -22
  462. package/dist/web/bridges/apps-sdk/adaptor.js +0 -75
  463. package/dist/web/bridges/apps-sdk/adaptor.js.map +0 -1
  464. package/dist/web/bridges/mcp-app/adaptor.d.ts +0 -38
  465. package/dist/web/bridges/mcp-app/adaptor.js +0 -184
  466. package/dist/web/bridges/mcp-app/adaptor.js.map +0 -1
  467. package/dist/web/hooks/use-layout.d.ts +0 -22
  468. package/dist/web/hooks/use-layout.js +0 -23
  469. package/dist/web/hooks/use-layout.js.map +0 -1
  470. package/dist/web/hooks/use-layout.test.js +0 -96
  471. package/dist/web/hooks/use-layout.test.js.map +0 -1
  472. package/dist/web/hooks/use-widget-state.d.ts +0 -4
  473. package/dist/web/hooks/use-widget-state.js +0 -32
  474. package/dist/web/hooks/use-widget-state.js.map +0 -1
  475. package/dist/web/hooks/use-widget-state.test.js +0 -64
  476. package/dist/web/hooks/use-widget-state.test.js.map +0 -1
  477. package/dist/web/mount-widget.d.ts +0 -1
  478. package/dist/web/mount-widget.js +0 -27
  479. package/dist/web/mount-widget.js.map +0 -1
  480. package/dist/web/plugin/data-llm.test.js +0 -81
  481. package/dist/web/plugin/data-llm.test.js.map +0 -1
  482. package/dist/web/plugin/plugin.d.ts +0 -2
  483. package/dist/web/plugin/plugin.js +0 -54
  484. package/dist/web/plugin/plugin.js.map +0 -1
  485. package/dist/web/plugin/transform-data-llm.d.ts +0 -12
  486. package/dist/web/plugin/transform-data-llm.js +0 -96
  487. package/dist/web/plugin/transform-data-llm.js.map +0 -1
  488. package/dist/web/plugin/transform-data-llm.test.js +0 -81
  489. package/dist/web/plugin/transform-data-llm.test.js.map +0 -1
  490. package/dist/web/plugin/validate-widget.d.ts +0 -5
  491. package/dist/web/plugin/validate-widget.js +0 -27
  492. package/dist/web/plugin/validate-widget.js.map +0 -1
  493. package/dist/web/plugin/validate-widget.test.js +0 -42
  494. package/dist/web/plugin/validate-widget.test.js.map +0 -1
  495. /package/dist/{test/widget.test.d.ts → cli/build-helpers.test.d.ts} +0 -0
  496. /package/dist/{web/hooks/use-layout.test.d.ts → cli/build-steps.test.d.ts} +0 -0
  497. /package/dist/{web/hooks/use-widget-state.test.d.ts → cli/tunnel-control-server.test.d.ts} +0 -0
  498. /package/dist/{web/plugin/data-llm.test.d.ts → cli/tunnel-handler.test.d.ts} +0 -0
  499. /package/dist/{web/plugin/transform-data-llm.test.d.ts → cli/tunnel.test.d.ts} +0 -0
  500. /package/dist/{web/plugin/validate-widget.test.d.ts → context-warnings.test.d.ts} +0 -0
@@ -1 +1,19 @@
1
- export declare function useSendFollowUpMessage(): (prompt: string) => Promise<void>;
1
+ import { type SendFollowUpMessageOptions } from "../bridges/index.js";
2
+ /**
3
+ * Send a follow-up message to the LLM on behalf of the view, as if the user
4
+ * had sent it. Use to chain interactions from view UI (e.g. a button that
5
+ * triggers the next assistant turn).
6
+ *
7
+ * Pass `scrollToBottom: false` to keep the chat scroll position when the host
8
+ * posts the message. This option is Apps-SDK-only; it is silently ignored in
9
+ * the MCP Apps runtime.
10
+ *
11
+ * @example
12
+ * ```tsx
13
+ * const send = useSendFollowUpMessage();
14
+ * <button onClick={() => send("Summarize the last 5 results")}>Summarize</button>
15
+ * ```
16
+ *
17
+ * @see https://docs.skybridge.tech/api-reference/use-send-follow-up-message
18
+ */
19
+ export declare function useSendFollowUpMessage(): (prompt: string, options?: SendFollowUpMessageOptions) => Promise<void>;
@@ -1,8 +1,25 @@
1
1
  import { useCallback } from "react";
2
- import { getAdaptor } from "../bridges/index.js";
2
+ import { getAdaptor, } from "../bridges/index.js";
3
+ /**
4
+ * Send a follow-up message to the LLM on behalf of the view, as if the user
5
+ * had sent it. Use to chain interactions from view UI (e.g. a button that
6
+ * triggers the next assistant turn).
7
+ *
8
+ * Pass `scrollToBottom: false` to keep the chat scroll position when the host
9
+ * posts the message. This option is Apps-SDK-only; it is silently ignored in
10
+ * the MCP Apps runtime.
11
+ *
12
+ * @example
13
+ * ```tsx
14
+ * const send = useSendFollowUpMessage();
15
+ * <button onClick={() => send("Summarize the last 5 results")}>Summarize</button>
16
+ * ```
17
+ *
18
+ * @see https://docs.skybridge.tech/api-reference/use-send-follow-up-message
19
+ */
3
20
  export function useSendFollowUpMessage() {
4
21
  const adaptor = getAdaptor();
5
- const sendFollowUpMessage = useCallback((prompt) => adaptor.sendFollowUpMessage(prompt), [adaptor]);
22
+ const sendFollowUpMessage = useCallback((prompt, options) => adaptor.sendFollowUpMessage(prompt, options), [adaptor]);
6
23
  return sendFollowUpMessage;
7
24
  }
8
25
  //# sourceMappingURL=use-send-follow-up-message.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-send-follow-up-message.js","sourceRoot":"","sources":["../../../src/web/hooks/use-send-follow-up-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,MAAM,UAAU,sBAAsB;IACpC,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;IAC7B,MAAM,mBAAmB,GAAG,WAAW,CACrC,CAAC,MAAc,EAAE,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,MAAM,CAAC,EACvD,CAAC,OAAO,CAAC,CACV,CAAC;IAEF,OAAO,mBAAmB,CAAC;AAC7B,CAAC"}
1
+ {"version":3,"file":"use-send-follow-up-message.js","sourceRoot":"","sources":["../../../src/web/hooks/use-send-follow-up-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,EACL,UAAU,GAEX,MAAM,qBAAqB,CAAC;AAE7B;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,UAAU,sBAAsB;IACpC,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;IAC7B,MAAM,mBAAmB,GAAG,WAAW,CACrC,CAAC,MAAc,EAAE,OAAoC,EAAE,EAAE,CACvD,OAAO,CAAC,mBAAmB,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9C,CAAC,OAAO,CAAC,CACV,CAAC;IAEF,OAAO,mBAAmB,CAAC;AAC7B,CAAC","sourcesContent":["import { useCallback } from \"react\";\nimport {\n getAdaptor,\n type SendFollowUpMessageOptions,\n} from \"../bridges/index.js\";\n\n/**\n * Send a follow-up message to the LLM on behalf of the view, as if the user\n * had sent it. Use to chain interactions from view UI (e.g. a button that\n * triggers the next assistant turn).\n *\n * Pass `scrollToBottom: false` to keep the chat scroll position when the host\n * posts the message. This option is Apps-SDK-only; it is silently ignored in\n * the MCP Apps runtime.\n *\n * @example\n * ```tsx\n * const send = useSendFollowUpMessage();\n * <button onClick={() => send(\"Summarize the last 5 results\")}>Summarize</button>\n * ```\n *\n * @see https://docs.skybridge.tech/api-reference/use-send-follow-up-message\n */\nexport function useSendFollowUpMessage() {\n const adaptor = getAdaptor();\n const sendFollowUpMessage = useCallback(\n (prompt: string, options?: SendFollowUpMessageOptions) =>\n adaptor.sendFollowUpMessage(prompt, options),\n [adaptor],\n );\n\n return sendFollowUpMessage;\n}\n"]}
@@ -1 +1,18 @@
1
+ /**
2
+ * Override the target URL the host opens from its fullscreen "Open in <App>"
3
+ * affordance. If unset, the host opens the view's current iframe path.
4
+ *
5
+ * Currently Apps-SDK-only — calling this from MCP Apps throws.
6
+ *
7
+ * Call this once your view has enough context to construct the canonical URL
8
+ * (e.g. a permalink to the entity the user is currently viewing).
9
+ *
10
+ * @example
11
+ * ```tsx
12
+ * const setOpenInAppUrl = useSetOpenInAppUrl();
13
+ * useEffect(() => { setOpenInAppUrl(`https://example.com/orders/${orderId}`); }, [orderId]);
14
+ * ```
15
+ *
16
+ * @see https://docs.skybridge.tech/api-reference/use-set-open-in-app-url
17
+ */
1
18
  export declare function useSetOpenInAppUrl(): (href: string) => Promise<void>;
@@ -1,5 +1,22 @@
1
1
  import { useCallback } from "react";
2
2
  import { getAdaptor } from "../bridges/index.js";
3
+ /**
4
+ * Override the target URL the host opens from its fullscreen "Open in <App>"
5
+ * affordance. If unset, the host opens the view's current iframe path.
6
+ *
7
+ * Currently Apps-SDK-only — calling this from MCP Apps throws.
8
+ *
9
+ * Call this once your view has enough context to construct the canonical URL
10
+ * (e.g. a permalink to the entity the user is currently viewing).
11
+ *
12
+ * @example
13
+ * ```tsx
14
+ * const setOpenInAppUrl = useSetOpenInAppUrl();
15
+ * useEffect(() => { setOpenInAppUrl(`https://example.com/orders/${orderId}`); }, [orderId]);
16
+ * ```
17
+ *
18
+ * @see https://docs.skybridge.tech/api-reference/use-set-open-in-app-url
19
+ */
3
20
  export function useSetOpenInAppUrl() {
4
21
  const adaptor = getAdaptor();
5
22
  const setOpenInAppUrl = useCallback((href) => adaptor.setOpenInAppUrl(href), [adaptor]);
@@ -1 +1 @@
1
- {"version":3,"file":"use-set-open-in-app-url.js","sourceRoot":"","sources":["../../../src/web/hooks/use-set-open-in-app-url.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,MAAM,UAAU,kBAAkB;IAChC,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;IAC7B,MAAM,eAAe,GAAG,WAAW,CACjC,CAAC,IAAY,EAAE,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,EAC/C,CAAC,OAAO,CAAC,CACV,CAAC;IAEF,OAAO,eAAe,CAAC;AACzB,CAAC"}
1
+ {"version":3,"file":"use-set-open-in-app-url.js","sourceRoot":"","sources":["../../../src/web/hooks/use-set-open-in-app-url.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,UAAU,kBAAkB;IAChC,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;IAC7B,MAAM,eAAe,GAAG,WAAW,CACjC,CAAC,IAAY,EAAE,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,EAC/C,CAAC,OAAO,CAAC,CACV,CAAC;IAEF,OAAO,eAAe,CAAC;AACzB,CAAC","sourcesContent":["import { useCallback } from \"react\";\nimport { getAdaptor } from \"../bridges/index.js\";\n\n/**\n * Override the target URL the host opens from its fullscreen \"Open in <App>\"\n * affordance. If unset, the host opens the view's current iframe path.\n *\n * Currently Apps-SDK-only — calling this from MCP Apps throws.\n *\n * Call this once your view has enough context to construct the canonical URL\n * (e.g. a permalink to the entity the user is currently viewing).\n *\n * @example\n * ```tsx\n * const setOpenInAppUrl = useSetOpenInAppUrl();\n * useEffect(() => { setOpenInAppUrl(`https://example.com/orders/${orderId}`); }, [orderId]);\n * ```\n *\n * @see https://docs.skybridge.tech/api-reference/use-set-open-in-app-url\n */\nexport function useSetOpenInAppUrl() {\n const adaptor = getAdaptor();\n const setOpenInAppUrl = useCallback(\n (href: string) => adaptor.setOpenInAppUrl(href),\n [adaptor],\n );\n\n return setOpenInAppUrl;\n}\n"]}
@@ -1,8 +1,18 @@
1
1
  import { renderHook } from "@testing-library/react";
2
2
  import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
3
- import { AppsSdkAdaptor } from "../bridges/apps-sdk/adaptor.js";
3
+ import { HostAdaptor } from "../bridges/adaptor.js";
4
+ import { AppsSdkBridge } from "../bridges/apps-sdk/bridge.js";
5
+ import { McpAppBridge } from "../bridges/mcp-app/bridge.js";
6
+ import { NotSupportedError } from "../bridges/types.js";
4
7
  import { useSetOpenInAppUrl } from "./use-set-open-in-app-url.js";
5
8
  describe("useSetOpenInAppUrl", () => {
9
+ afterEach(() => {
10
+ vi.unstubAllGlobals();
11
+ vi.resetAllMocks();
12
+ HostAdaptor.resetInstance();
13
+ AppsSdkBridge.resetInstance();
14
+ McpAppBridge.resetInstance();
15
+ });
6
16
  describe("apps-sdk host", () => {
7
17
  let setOpenInAppUrlMock;
8
18
  beforeEach(() => {
@@ -10,15 +20,8 @@ describe("useSetOpenInAppUrl", () => {
10
20
  vi.stubGlobal("openai", {
11
21
  setOpenInAppUrl: setOpenInAppUrlMock,
12
22
  });
13
- vi.stubGlobal("skybridge", {
14
- hostType: "apps-sdk",
15
- serverUrl: "https://example.com",
16
- });
17
- });
18
- afterEach(() => {
19
- vi.unstubAllGlobals();
20
- vi.resetAllMocks();
21
- AppsSdkAdaptor.resetInstance();
23
+ vi.stubGlobal("skybridge", { serverUrl: "https://example.com" });
24
+ vi.stubGlobal("parent", { postMessage: vi.fn() });
22
25
  });
23
26
  it("should return a function that calls window.openai.setOpenInAppUrl with the href", async () => {
24
27
  const { result } = renderHook(() => useSetOpenInAppUrl());
@@ -27,9 +30,9 @@ describe("useSetOpenInAppUrl", () => {
27
30
  expect(setOpenInAppUrlMock).toHaveBeenCalledTimes(1);
28
31
  expect(setOpenInAppUrlMock).toHaveBeenCalledWith({ href });
29
32
  });
30
- it("should throw an error when href is empty", () => {
33
+ it("should reject when href is empty", async () => {
31
34
  const { result } = renderHook(() => useSetOpenInAppUrl());
32
- expect(() => result.current("")).toThrow("The href parameter is required.");
35
+ await expect(result.current("")).rejects.toThrow("The href parameter is required.");
33
36
  });
34
37
  it("should call setOpenInAppUrl when href origin differs from serverUrl origin", async () => {
35
38
  const { result } = renderHook(() => useSetOpenInAppUrl());
@@ -39,5 +42,16 @@ describe("useSetOpenInAppUrl", () => {
39
42
  expect(setOpenInAppUrlMock).toHaveBeenCalledWith({ href });
40
43
  });
41
44
  });
45
+ describe("mcp-app host", () => {
46
+ beforeEach(() => {
47
+ vi.stubGlobal("openai", undefined);
48
+ vi.stubGlobal("skybridge", { serverUrl: "https://example.com" });
49
+ vi.stubGlobal("parent", { postMessage: vi.fn() });
50
+ });
51
+ it("should throw NotSupportedError when called from an MCP App runtime", async () => {
52
+ const { result } = renderHook(() => useSetOpenInAppUrl());
53
+ await expect(result.current("https://example.com/path")).rejects.toBeInstanceOf(NotSupportedError);
54
+ });
55
+ });
42
56
  });
43
57
  //# sourceMappingURL=use-set-open-in-app-url.test.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-set-open-in-app-url.test.js","sourceRoot":"","sources":["../../../src/web/hooks/use-set-open-in-app-url.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAElE,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;IAClC,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;QAC7B,IAAI,mBAA6C,CAAC;QAElD,UAAU,CAAC,GAAG,EAAE;YACd,mBAAmB,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC;YAC3D,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE;gBACtB,eAAe,EAAE,mBAAmB;aACrC,CAAC,CAAC;YACH,EAAE,CAAC,UAAU,CAAC,WAAW,EAAE;gBACzB,QAAQ,EAAE,UAAU;gBACpB,SAAS,EAAE,qBAAqB;aACjC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;QAEH,SAAS,CAAC,GAAG,EAAE;YACb,EAAE,CAAC,gBAAgB,EAAE,CAAC;YACtB,EAAE,CAAC,aAAa,EAAE,CAAC;YACnB,cAAc,CAAC,aAAa,EAAE,CAAC;QACjC,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,iFAAiF,EAAE,KAAK,IAAI,EAAE;YAC/F,MAAM,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC,CAAC;YAE1D,MAAM,IAAI,GAAG,0BAA0B,CAAC;YACxC,MAAM,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YAE3B,MAAM,CAAC,mBAAmB,CAAC,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,CAAC,mBAAmB,CAAC,CAAC,oBAAoB,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,0CAA0C,EAAE,GAAG,EAAE;YAClD,MAAM,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC,CAAC;YAE1D,MAAM,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CACtC,iCAAiC,CAClC,CAAC;QACJ,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,4EAA4E,EAAE,KAAK,IAAI,EAAE;YAC1F,MAAM,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC,CAAC;YAE1D,MAAM,IAAI,GAAG,mCAAmC,CAAC;YACjD,MAAM,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YAE3B,MAAM,CAAC,mBAAmB,CAAC,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,CAAC,mBAAmB,CAAC,CAAC,oBAAoB,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"use-set-open-in-app-url.test.js","sourceRoot":"","sources":["../../../src/web/hooks/use-set-open-in-app-url.test.ts"],"names":[],"mappings":"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","sourcesContent":["import { renderHook } from \"@testing-library/react\";\nimport { afterEach, beforeEach, describe, expect, it, vi } from \"vitest\";\nimport { HostAdaptor } from \"../bridges/adaptor.js\";\nimport { AppsSdkBridge } from \"../bridges/apps-sdk/bridge.js\";\nimport { McpAppBridge } from \"../bridges/mcp-app/bridge.js\";\nimport { NotSupportedError } from \"../bridges/types.js\";\nimport { useSetOpenInAppUrl } from \"./use-set-open-in-app-url.js\";\n\ndescribe(\"useSetOpenInAppUrl\", () => {\n afterEach(() => {\n vi.unstubAllGlobals();\n vi.resetAllMocks();\n HostAdaptor.resetInstance();\n AppsSdkBridge.resetInstance();\n McpAppBridge.resetInstance();\n });\n\n describe(\"apps-sdk host\", () => {\n let setOpenInAppUrlMock: ReturnType<typeof vi.fn>;\n\n beforeEach(() => {\n setOpenInAppUrlMock = vi.fn().mockResolvedValue(undefined);\n vi.stubGlobal(\"openai\", {\n setOpenInAppUrl: setOpenInAppUrlMock,\n });\n vi.stubGlobal(\"skybridge\", { serverUrl: \"https://example.com\" });\n vi.stubGlobal(\"parent\", { postMessage: vi.fn() });\n });\n\n it(\"should return a function that calls window.openai.setOpenInAppUrl with the href\", async () => {\n const { result } = renderHook(() => useSetOpenInAppUrl());\n\n const href = \"https://example.com/path\";\n await result.current(href);\n\n expect(setOpenInAppUrlMock).toHaveBeenCalledTimes(1);\n expect(setOpenInAppUrlMock).toHaveBeenCalledWith({ href });\n });\n\n it(\"should reject when href is empty\", async () => {\n const { result } = renderHook(() => useSetOpenInAppUrl());\n\n await expect(result.current(\"\")).rejects.toThrow(\n \"The href parameter is required.\",\n );\n });\n\n it(\"should call setOpenInAppUrl when href origin differs from serverUrl origin\", async () => {\n const { result } = renderHook(() => useSetOpenInAppUrl());\n\n const href = \"https://different-domain.com/path\";\n await result.current(href);\n\n expect(setOpenInAppUrlMock).toHaveBeenCalledTimes(1);\n expect(setOpenInAppUrlMock).toHaveBeenCalledWith({ href });\n });\n });\n\n describe(\"mcp-app host\", () => {\n beforeEach(() => {\n vi.stubGlobal(\"openai\", undefined);\n vi.stubGlobal(\"skybridge\", { serverUrl: \"https://example.com\" });\n vi.stubGlobal(\"parent\", { postMessage: vi.fn() });\n });\n\n it(\"should throw NotSupportedError when called from an MCP App runtime\", async () => {\n const { result } = renderHook(() => useSetOpenInAppUrl());\n\n await expect(\n result.current(\"https://example.com/path\"),\n ).rejects.toBeInstanceOf(NotSupportedError);\n });\n });\n});\n"]}
@@ -1,36 +1,68 @@
1
1
  import type { UnknownObject } from "../types.js";
2
- export type ToolIdleState = {
3
- status: "idle";
4
- isIdle: true;
5
- isPending: false;
6
- isSuccess: false;
7
- input: undefined;
8
- output: undefined;
9
- responseMetadata: undefined;
10
- };
2
+ /**
3
+ * {@link useToolInfo} state while the tool is executing — `output` is not yet
4
+ * available.
5
+ *
6
+ * `input` is optional: the host may render the view before delivering the
7
+ * tool arguments.
8
+ */
11
9
  export type ToolPendingState<ToolInput extends UnknownObject> = {
12
10
  status: "pending";
13
- isIdle: false;
14
11
  isPending: true;
15
12
  isSuccess: false;
16
- input: ToolInput;
13
+ input: ToolInput | undefined;
17
14
  output: undefined;
18
15
  responseMetadata: undefined;
19
16
  };
17
+ /**
18
+ * {@link useToolInfo} state once the tool returned — `output` is available.
19
+ *
20
+ * `input` is optional: the host may not have surfaced the tool arguments by
21
+ * the time `output` arrives.
22
+ */
20
23
  export type ToolSuccessState<ToolInput extends UnknownObject, ToolOutput extends UnknownObject, ToolResponseMetadata extends UnknownObject> = {
21
24
  status: "success";
22
- isIdle: false;
23
25
  isPending: false;
24
26
  isSuccess: true;
25
- input: ToolInput;
27
+ input: ToolInput | undefined;
26
28
  output: ToolOutput;
27
29
  responseMetadata: ToolResponseMetadata;
28
30
  };
29
- export type ToolState<ToolInput extends UnknownObject, ToolOutput extends UnknownObject, ToolResponseMetadata extends UnknownObject> = ToolIdleState | ToolPendingState<ToolInput> | ToolSuccessState<ToolInput, ToolOutput, ToolResponseMetadata>;
31
+ /**
32
+ * Discriminated union describing the tool invocation that triggered the
33
+ * current view render. Use `isPending` / `isSuccess` to narrow.
34
+ */
35
+ export type ToolState<ToolInput extends UnknownObject, ToolOutput extends UnknownObject, ToolResponseMetadata extends UnknownObject> = ToolPendingState<ToolInput> | ToolSuccessState<ToolInput, ToolOutput, ToolResponseMetadata>;
30
36
  type ToolSignature = {
31
37
  input: UnknownObject;
32
38
  output: UnknownObject;
33
39
  responseMetadata: UnknownObject;
34
40
  };
41
+ /**
42
+ * Access the tool invocation that produced the current view: its `input`,
43
+ * resulting `output`, and `responseMetadata`. The shape evolves as the tool
44
+ * runs (pending → success), exposed through {@link ToolState}.
45
+ *
46
+ * For full input/output typing per tool name, prefer the typed `useToolInfo`
47
+ * returned by {@link generateHelpers} over the generic form.
48
+ *
49
+ * @typeParam TS - Optional partial shape `{ input, output, responseMetadata }`
50
+ * to refine each field's type. When omitted, each typed field resolves to
51
+ * `never` — pass an explicit shape or use the typed helper from
52
+ * {@link generateHelpers} to get usable types.
53
+ *
54
+ * @example
55
+ * ```tsx
56
+ * const { isSuccess, input, output } = useToolInfo<{
57
+ * input: { query: string };
58
+ * output: { results: Result[] };
59
+ * }>();
60
+ *
61
+ * if (!isSuccess || !output) return <Skeleton />;
62
+ * return <Results items={output.results} />;
63
+ * ```
64
+ *
65
+ * @see https://docs.skybridge.tech/api-reference/use-tool-info
66
+ */
35
67
  export declare function useToolInfo<TS extends Partial<ToolSignature> = Record<string, never>>(): ToolState<UnknownObject & TS["input"], UnknownObject & TS["output"], UnknownObject & TS["responseMetadata"]>;
36
68
  export {};
@@ -1,22 +1,44 @@
1
1
  import { useHostContext } from "../bridges/index.js";
2
- function deriveStatus(input, output, responseMetadata) {
3
- if (input === null) {
4
- return "idle";
5
- }
2
+ function deriveStatus(output, responseMetadata) {
6
3
  if (output === null && responseMetadata === null) {
7
4
  return "pending";
8
5
  }
9
6
  return "success";
10
7
  }
8
+ /**
9
+ * Access the tool invocation that produced the current view: its `input`,
10
+ * resulting `output`, and `responseMetadata`. The shape evolves as the tool
11
+ * runs (pending → success), exposed through {@link ToolState}.
12
+ *
13
+ * For full input/output typing per tool name, prefer the typed `useToolInfo`
14
+ * returned by {@link generateHelpers} over the generic form.
15
+ *
16
+ * @typeParam TS - Optional partial shape `{ input, output, responseMetadata }`
17
+ * to refine each field's type. When omitted, each typed field resolves to
18
+ * `never` — pass an explicit shape or use the typed helper from
19
+ * {@link generateHelpers} to get usable types.
20
+ *
21
+ * @example
22
+ * ```tsx
23
+ * const { isSuccess, input, output } = useToolInfo<{
24
+ * input: { query: string };
25
+ * output: { results: Result[] };
26
+ * }>();
27
+ *
28
+ * if (!isSuccess || !output) return <Skeleton />;
29
+ * return <Results items={output.results} />;
30
+ * ```
31
+ *
32
+ * @see https://docs.skybridge.tech/api-reference/use-tool-info
33
+ */
11
34
  export function useToolInfo() {
12
35
  const input = useHostContext("toolInput");
13
36
  const output = useHostContext("toolOutput");
14
37
  const responseMetadata = useHostContext("toolResponseMetadata");
15
- const status = deriveStatus(input, output, responseMetadata);
38
+ const status = deriveStatus(output, responseMetadata);
16
39
  return {
17
- input,
40
+ input: input ?? undefined,
18
41
  status,
19
- isIdle: status === "idle",
20
42
  isPending: status === "pending",
21
43
  isSuccess: status === "success",
22
44
  output,
@@ -1 +1 @@
1
- {"version":3,"file":"use-tool-info.js","sourceRoot":"","sources":["../../../src/web/hooks/use-tool-info.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAoDrD,SAAS,YAAY,CACnB,KAAqC,EACrC,MAAsC,EACtC,gBAAgD;IAEhD,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;QACnB,OAAO,MAAM,CAAC;IAChB,CAAC;IACD,IAAI,MAAM,KAAK,IAAI,IAAI,gBAAgB,KAAK,IAAI,EAAE,CAAC;QACjD,OAAO,SAAS,CAAC;IACnB,CAAC;IACD,OAAO,SAAS,CAAC;AACnB,CAAC;AAED,MAAM,UAAU,WAAW;IAGzB,MAAM,KAAK,GAAG,cAAc,CAAC,WAAW,CAAC,CAAC;IAC1C,MAAM,MAAM,GAAG,cAAc,CAAC,YAAY,CAAC,CAAC;IAC5C,MAAM,gBAAgB,GAAG,cAAc,CAAC,sBAAsB,CAAC,CAAC;IAEhE,MAAM,MAAM,GAAG,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAM7D,OAAO;QACL,KAAK;QACL,MAAM;QACN,MAAM,EAAE,MAAM,KAAK,MAAM;QACzB,SAAS,EAAE,MAAM,KAAK,SAAS;QAC/B,SAAS,EAAE,MAAM,KAAK,SAAS;QAC/B,MAAM;QACN,gBAAgB;KACqB,CAAC;AAC1C,CAAC"}
1
+ {"version":3,"file":"use-tool-info.js","sourceRoot":"","sources":["../../../src/web/hooks/use-tool-info.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAwDrD,SAAS,YAAY,CACnB,MAAsC,EACtC,gBAAgD;IAEhD,IAAI,MAAM,KAAK,IAAI,IAAI,gBAAgB,KAAK,IAAI,EAAE,CAAC;QACjD,OAAO,SAAS,CAAC;IACnB,CAAC;IACD,OAAO,SAAS,CAAC;AACnB,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAM,UAAU,WAAW;IAGzB,MAAM,KAAK,GAAG,cAAc,CAAC,WAAW,CAAC,CAAC;IAC1C,MAAM,MAAM,GAAG,cAAc,CAAC,YAAY,CAAC,CAAC;IAC5C,MAAM,gBAAgB,GAAG,cAAc,CAAC,sBAAsB,CAAC,CAAC;IAEhE,MAAM,MAAM,GAAG,YAAY,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAMtD,OAAO;QACL,KAAK,EAAE,KAAK,IAAI,SAAS;QACzB,MAAM;QACN,SAAS,EAAE,MAAM,KAAK,SAAS;QAC/B,SAAS,EAAE,MAAM,KAAK,SAAS;QAC/B,MAAM;QACN,gBAAgB;KACqB,CAAC;AAC1C,CAAC","sourcesContent":["import { useHostContext } from \"../bridges/index.js\";\nimport type { UnknownObject } from \"../types.js\";\n\n/**\n * {@link useToolInfo} state while the tool is executing — `output` is not yet\n * available.\n *\n * `input` is optional: the host may render the view before delivering the\n * tool arguments.\n */\nexport type ToolPendingState<ToolInput extends UnknownObject> = {\n status: \"pending\";\n isPending: true;\n isSuccess: false;\n input: ToolInput | undefined;\n output: undefined;\n responseMetadata: undefined;\n};\n\n/**\n * {@link useToolInfo} state once the tool returned — `output` is available.\n *\n * `input` is optional: the host may not have surfaced the tool arguments by\n * the time `output` arrives.\n */\nexport type ToolSuccessState<\n ToolInput extends UnknownObject,\n ToolOutput extends UnknownObject,\n ToolResponseMetadata extends UnknownObject,\n> = {\n status: \"success\";\n isPending: false;\n isSuccess: true;\n input: ToolInput | undefined;\n output: ToolOutput;\n responseMetadata: ToolResponseMetadata;\n};\n\n/**\n * Discriminated union describing the tool invocation that triggered the\n * current view render. Use `isPending` / `isSuccess` to narrow.\n */\nexport type ToolState<\n ToolInput extends UnknownObject,\n ToolOutput extends UnknownObject,\n ToolResponseMetadata extends UnknownObject,\n> =\n | ToolPendingState<ToolInput>\n | ToolSuccessState<ToolInput, ToolOutput, ToolResponseMetadata>;\n\ntype ToolSignature = {\n input: UnknownObject;\n output: UnknownObject;\n responseMetadata: UnknownObject;\n};\n\nfunction deriveStatus(\n output: Record<string, unknown> | null,\n responseMetadata: Record<string, unknown> | null,\n): \"pending\" | \"success\" {\n if (output === null && responseMetadata === null) {\n return \"pending\";\n }\n return \"success\";\n}\n\n/**\n * Access the tool invocation that produced the current view: its `input`,\n * resulting `output`, and `responseMetadata`. The shape evolves as the tool\n * runs (pending → success), exposed through {@link ToolState}.\n *\n * For full input/output typing per tool name, prefer the typed `useToolInfo`\n * returned by {@link generateHelpers} over the generic form.\n *\n * @typeParam TS - Optional partial shape `{ input, output, responseMetadata }`\n * to refine each field's type. When omitted, each typed field resolves to\n * `never` — pass an explicit shape or use the typed helper from\n * {@link generateHelpers} to get usable types.\n *\n * @example\n * ```tsx\n * const { isSuccess, input, output } = useToolInfo<{\n * input: { query: string };\n * output: { results: Result[] };\n * }>();\n *\n * if (!isSuccess || !output) return <Skeleton />;\n * return <Results items={output.results} />;\n * ```\n *\n * @see https://docs.skybridge.tech/api-reference/use-tool-info\n */\nexport function useToolInfo<\n TS extends Partial<ToolSignature> = Record<string, never>,\n>() {\n const input = useHostContext(\"toolInput\");\n const output = useHostContext(\"toolOutput\");\n const responseMetadata = useHostContext(\"toolResponseMetadata\");\n\n const status = deriveStatus(output, responseMetadata);\n\n type Input = UnknownObject & TS[\"input\"];\n type Output = UnknownObject & TS[\"output\"];\n type Metadata = UnknownObject & TS[\"responseMetadata\"];\n\n return {\n input: input ?? undefined,\n status,\n isPending: status === \"pending\",\n isSuccess: status === \"success\",\n output,\n responseMetadata,\n } as ToolState<Input, Output, Metadata>;\n}\n"]}
@@ -6,24 +6,19 @@ test("useToolInfo - TypeScript typing", () => {
6
6
  expectTypeOf(result.status);
7
7
  expectTypeOf(result.isPending);
8
8
  expectTypeOf(result.isSuccess);
9
- expectTypeOf(result.isIdle);
10
9
  expectTypeOf(result.input);
11
10
  });
12
11
  test("should correctly type input, output, and responseMetadata with explicit ToolSignature", () => {
13
12
  const result = useToolInfo();
14
- // When idle, input should be undefined
15
- if (result.status === "idle") {
16
- expectTypeOf(result.input);
17
- expectTypeOf(result.output);
18
- expectTypeOf(result.responseMetadata);
19
- }
20
- // When pending, output and responseMetadata should be undefined
13
+ // When pending, input may be undefined (host hasn't delivered args yet,
14
+ // or the tool has no input schema)
21
15
  if (result.status === "pending") {
22
16
  expectTypeOf(result.input);
23
17
  expectTypeOf(result.output);
24
18
  expectTypeOf(result.responseMetadata);
25
19
  }
26
- // When success, output and responseMetadata should be defined
20
+ // When success, output and responseMetadata are defined; input may still
21
+ // be undefined if the host hasn't surfaced the tool arguments
27
22
  if (result.status === "success") {
28
23
  expectTypeOf(result.input);
29
24
  expectTypeOf(result.output);
@@ -32,35 +27,17 @@ test("useToolInfo - TypeScript typing", () => {
32
27
  });
33
28
  test("should correctly narrow types based on status discriminated union", () => {
34
29
  const result = useToolInfo();
35
- // Test type narrowing for idle
36
- if (result.isIdle) {
37
- expectTypeOf(result.status);
38
- expectTypeOf(result.isIdle);
39
- expectTypeOf(result.isPending);
40
- expectTypeOf(result.isSuccess);
41
- expectTypeOf(result.input);
42
- expectTypeOf(result.output);
43
- expectTypeOf(result.responseMetadata);
44
- }
45
30
  // Test type narrowing for pending
46
31
  if (result.isPending) {
47
32
  expectTypeOf(result.status);
48
- expectTypeOf(result.isIdle);
49
33
  expectTypeOf(result.isPending);
50
34
  expectTypeOf(result.isSuccess);
35
+ expectTypeOf(result.input);
51
36
  expectTypeOf(result.output);
52
37
  expectTypeOf(result.responseMetadata);
53
38
  }
54
39
  if (result.isSuccess) {
55
40
  expectTypeOf(result.status);
56
- expectTypeOf(result.isIdle);
57
- expectTypeOf(result.isPending);
58
- expectTypeOf(result.isSuccess);
59
- expectTypeOf(result.output);
60
- expectTypeOf(result.responseMetadata);
61
- }
62
- if (result.status === "idle") {
63
- expectTypeOf(result.isIdle);
64
41
  expectTypeOf(result.isPending);
65
42
  expectTypeOf(result.isSuccess);
66
43
  expectTypeOf(result.input);
@@ -69,7 +46,6 @@ test("useToolInfo - TypeScript typing", () => {
69
46
  }
70
47
  if (result.status === "pending") {
71
48
  expectTypeOf(result.input);
72
- expectTypeOf(result.isIdle);
73
49
  expectTypeOf(result.isPending);
74
50
  expectTypeOf(result.isSuccess);
75
51
  expectTypeOf(result.output);
@@ -77,7 +53,6 @@ test("useToolInfo - TypeScript typing", () => {
77
53
  }
78
54
  if (result.status === "success") {
79
55
  expectTypeOf(result.input);
80
- expectTypeOf(result.isIdle);
81
56
  expectTypeOf(result.isPending);
82
57
  expectTypeOf(result.isSuccess);
83
58
  expectTypeOf(result.output);
@@ -86,22 +61,24 @@ test("useToolInfo - TypeScript typing", () => {
86
61
  });
87
62
  test("should handle partial ToolSignature with only input specified", () => {
88
63
  const result = useToolInfo();
89
- // Input can be TestInput or undefined (when idle)
90
- if (result.status === "pending" || result.status === "success") {
64
+ // Input is optional in both states — undefined while args haven't arrived
65
+ // (pending) and for no-input tools (success).
66
+ if (result.status === "pending") {
91
67
  expectTypeOf(result.input);
92
68
  }
93
69
  if (result.status === "success") {
70
+ expectTypeOf(result.input);
94
71
  expectTypeOf(result.output);
95
72
  expectTypeOf(result.responseMetadata);
96
73
  }
97
74
  });
98
75
  test("should handle ToolSignature with only output specified", () => {
99
76
  const result = useToolInfo();
100
- // Input can be Record<string, unknown> or undefined (when idle)
101
- if (result.status === "pending" || result.status === "success") {
77
+ if (result.status === "pending") {
102
78
  expectTypeOf(result.input);
103
79
  }
104
80
  if (result.status === "success") {
81
+ expectTypeOf(result.input);
105
82
  expectTypeOf(result.output);
106
83
  }
107
84
  });
@@ -1 +1 @@
1
- {"version":3,"file":"use-tool-info.test-d.js","sourceRoot":"","sources":["../../../src/web/hooks/use-tool-info.test-d.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"use-tool-info.test-d.js","sourceRoot":"","sources":["../../../src/web/hooks/use-tool-info.test-d.ts"],"names":[],"mappings":"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","sourcesContent":["import { expectTypeOf, test } from \"vitest\";\nimport { useToolInfo } from \"./use-tool-info.js\";\n\ntest(\"useToolInfo - TypeScript typing\", () => {\n test(\"should have correct types when no generic parameter is provided\", () => {\n const result = useToolInfo();\n\n expectTypeOf<\"pending\" | \"success\">(result.status);\n expectTypeOf<boolean>(result.isPending);\n expectTypeOf<boolean>(result.isSuccess);\n expectTypeOf<Record<string, unknown> | undefined>(result.input);\n });\n\n test(\"should correctly type input, output, and responseMetadata with explicit ToolSignature\", () => {\n type TestInput = { name: string; args: { name: string } };\n type TestOutput = { name: string; color: string };\n type TestMetadata = { id: number };\n\n const result = useToolInfo<{\n input: TestInput;\n output: TestOutput;\n responseMetadata: TestMetadata;\n }>();\n\n // When pending, input may be undefined (host hasn't delivered args yet,\n // or the tool has no input schema)\n if (result.status === \"pending\") {\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<undefined>(result.output);\n expectTypeOf<undefined>(result.responseMetadata);\n }\n\n // When success, output and responseMetadata are defined; input may still\n // be undefined if the host hasn't surfaced the tool arguments\n if (result.status === \"success\") {\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<TestOutput>(result.output);\n expectTypeOf<TestMetadata>(result.responseMetadata);\n }\n });\n\n test(\"should correctly narrow types based on status discriminated union\", () => {\n type TestInput = { query: string };\n type TestOutput = { result: string };\n type TestMetadata = { timestamp: number };\n\n const result = useToolInfo<{\n input: TestInput;\n output: TestOutput;\n responseMetadata: TestMetadata;\n }>();\n\n // Test type narrowing for pending\n if (result.isPending) {\n expectTypeOf<\"pending\">(result.status);\n expectTypeOf<true>(result.isPending);\n expectTypeOf<false>(result.isSuccess);\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<undefined>(result.output);\n expectTypeOf<undefined>(result.responseMetadata);\n }\n\n if (result.isSuccess) {\n expectTypeOf<\"success\">(result.status);\n expectTypeOf<false>(result.isPending);\n expectTypeOf<true>(result.isSuccess);\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<TestOutput>(result.output);\n expectTypeOf<TestMetadata>(result.responseMetadata);\n }\n\n if (result.status === \"pending\") {\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<true>(result.isPending);\n expectTypeOf<false>(result.isSuccess);\n expectTypeOf<undefined>(result.output);\n expectTypeOf<undefined>(result.responseMetadata);\n }\n\n if (result.status === \"success\") {\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<false>(result.isPending);\n expectTypeOf<true>(result.isSuccess);\n expectTypeOf<TestOutput>(result.output);\n expectTypeOf<TestMetadata>(result.responseMetadata);\n }\n });\n\n test(\"should handle partial ToolSignature with only input specified\", () => {\n type TestInput = { id: number };\n\n const result = useToolInfo<{\n input: TestInput;\n }>();\n\n // Input is optional in both states — undefined while args haven't arrived\n // (pending) and for no-input tools (success).\n if (result.status === \"pending\") {\n expectTypeOf<TestInput | undefined>(result.input);\n }\n\n if (result.status === \"success\") {\n expectTypeOf<TestInput | undefined>(result.input);\n expectTypeOf<Record<string, unknown>>(result.output);\n expectTypeOf<Record<string, unknown>>(result.responseMetadata);\n }\n });\n\n test(\"should handle ToolSignature with only output specified\", () => {\n type TestOutput = { data: string[] };\n\n const result = useToolInfo<{\n output: TestOutput;\n }>();\n\n if (result.status === \"pending\") {\n expectTypeOf<Record<string, unknown> | undefined>(result.input);\n }\n\n if (result.status === \"success\") {\n expectTypeOf<Record<string, unknown> | undefined>(result.input);\n expectTypeOf<TestOutput>(result.output);\n }\n });\n});\n"]}
@@ -1,36 +1,45 @@
1
- import { act, fireEvent, renderHook, waitFor } from "@testing-library/react";
1
+ import { act, renderHook, waitFor } from "@testing-library/react";
2
2
  import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
3
- import { SET_GLOBALS_EVENT_TYPE, SetGlobalsEvent, } from "../bridges/apps-sdk/index.js";
4
- import { McpAppAdaptor, McpAppBridge } from "../bridges/mcp-app/index.js";
3
+ import { HostAdaptor } from "../bridges/adaptor.js";
4
+ import { McpAppBridge } from "../bridges/mcp-app/index.js";
5
5
  import { fireToolInputNotification, fireToolResultNotification, getMcpAppHostPostMessageMock, MockResizeObserver, } from "./test/utils.js";
6
6
  import { useToolInfo } from "./use-tool-info.js";
7
7
  describe("useToolInfo", () => {
8
8
  describe("apps-sdk host", () => {
9
- let OpenaiMock;
10
9
  beforeEach(() => {
11
- OpenaiMock = {
12
- toolInput: { name: "pokemon", args: { name: "pikachu" } },
10
+ vi.stubGlobal("parent", { postMessage: getMcpAppHostPostMessageMock() });
11
+ vi.stubGlobal("openai", {
12
+ toolInput: null,
13
13
  toolOutput: null,
14
14
  toolResponseMetadata: null,
15
- };
16
- vi.stubGlobal("openai", OpenaiMock);
17
- vi.stubGlobal("skybridge", { hostType: "apps-sdk" });
15
+ });
16
+ vi.stubGlobal("skybridge", {});
17
+ vi.stubGlobal("ResizeObserver", MockResizeObserver);
18
18
  });
19
19
  afterEach(() => {
20
+ HostAdaptor.resetInstance();
20
21
  vi.unstubAllGlobals();
21
22
  vi.resetAllMocks();
23
+ McpAppBridge.resetInstance();
22
24
  });
23
- it("should return toolInput on initial mount window.openai", () => {
25
+ it("should return pending state with tool input from tool-input notification", async () => {
24
26
  const { result } = renderHook(() => useToolInfo());
25
- expect(result.current).toMatchObject({
26
- input: { name: "pokemon", args: { name: "pikachu" } },
27
- status: "pending",
28
- isIdle: false,
29
- isPending: true,
30
- isSuccess: false,
27
+ act(() => {
28
+ fireToolInputNotification({
29
+ name: "pokemon",
30
+ args: { name: "pikachu" },
31
+ });
32
+ });
33
+ await waitFor(() => {
34
+ expect(result.current).toMatchObject({
35
+ input: { name: "pokemon", args: { name: "pikachu" } },
36
+ status: "pending",
37
+ isPending: true,
38
+ isSuccess: false,
39
+ });
31
40
  });
32
41
  });
33
- it("should eventually return tool output and response metadata once tool call completes", async () => {
42
+ it("should return success state once tool-result notification arrives", async () => {
34
43
  const toolOutput = {
35
44
  name: "pikachu",
36
45
  color: "yellow",
@@ -39,21 +48,19 @@ describe("useToolInfo", () => {
39
48
  const toolResponseMetadata = { id: 12 };
40
49
  const { result } = renderHook(() => useToolInfo());
41
50
  act(() => {
42
- OpenaiMock.toolOutput = toolOutput;
43
- OpenaiMock.toolResponseMetadata = toolResponseMetadata;
44
- fireEvent(window, new SetGlobalsEvent(SET_GLOBALS_EVENT_TYPE, {
45
- detail: {
46
- globals: {
47
- toolOutput,
48
- toolResponseMetadata,
49
- },
50
- },
51
- }));
51
+ fireToolInputNotification({
52
+ name: "pokemon",
53
+ args: { name: "pikachu" },
54
+ });
55
+ fireToolResultNotification({
56
+ content: [{ type: "text", text: JSON.stringify(toolOutput) }],
57
+ structuredContent: toolOutput,
58
+ _meta: toolResponseMetadata,
59
+ });
52
60
  });
53
61
  await waitFor(() => {
54
62
  expect(result.current).toMatchObject({
55
63
  status: "success",
56
- isIdle: false,
57
64
  isPending: false,
58
65
  isSuccess: true,
59
66
  output: toolOutput,
@@ -65,24 +72,24 @@ describe("useToolInfo", () => {
65
72
  describe("mcp-app host", () => {
66
73
  beforeEach(() => {
67
74
  vi.stubGlobal("parent", { postMessage: getMcpAppHostPostMessageMock() });
68
- vi.stubGlobal("skybridge", { hostType: "mcp-app" });
75
+ vi.stubGlobal("skybridge", {});
76
+ vi.stubGlobal("openai", undefined);
69
77
  vi.stubGlobal("ResizeObserver", MockResizeObserver);
70
78
  });
71
79
  afterEach(async () => {
80
+ HostAdaptor.resetInstance();
72
81
  vi.unstubAllGlobals();
73
82
  vi.resetAllMocks();
74
83
  McpAppBridge.resetInstance();
75
- McpAppAdaptor.resetInstance();
76
84
  });
77
- it("should return idle state initially when tool input is not yet set", async () => {
85
+ it("should return pending state with undefined input before tool-input notification arrives", async () => {
78
86
  const { result } = renderHook(() => useToolInfo());
79
87
  await waitFor(() => {
80
88
  expect(result.current).toMatchObject({
81
- status: "idle",
82
- isIdle: true,
83
- isPending: false,
89
+ status: "pending",
90
+ isPending: true,
84
91
  isSuccess: false,
85
- input: null,
92
+ input: undefined,
86
93
  output: null,
87
94
  responseMetadata: null,
88
95
  });
@@ -96,7 +103,6 @@ describe("useToolInfo", () => {
96
103
  await waitFor(() => {
97
104
  expect(result.current).toMatchObject({
98
105
  status: "pending",
99
- isIdle: false,
100
106
  isPending: true,
101
107
  isSuccess: false,
102
108
  input: { name: "pokemon", query: "pikachu" },
@@ -116,7 +122,6 @@ describe("useToolInfo", () => {
116
122
  await waitFor(() => {
117
123
  expect(result.current).toMatchObject({
118
124
  status: "success",
119
- isIdle: false,
120
125
  isPending: false,
121
126
  isSuccess: true,
122
127
  input: { name: "pokemon", query: "pikachu" },