@frontmcp/sdk 0.6.2 → 0.7.1

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 (798) hide show
  1. package/adapter/adapter.instance.d.ts +3 -1
  2. package/adapter/adapter.instance.d.ts.map +1 -0
  3. package/adapter/adapter.regsitry.d.ts +1 -0
  4. package/adapter/adapter.regsitry.d.ts.map +1 -0
  5. package/adapter/adapter.utils.d.ts +3 -1
  6. package/adapter/adapter.utils.d.ts.map +1 -0
  7. package/agent/adapters/adapter.factory.d.ts +105 -0
  8. package/agent/adapters/adapter.factory.d.ts.map +1 -0
  9. package/agent/adapters/base.adapter.d.ts +116 -0
  10. package/agent/adapters/base.adapter.d.ts.map +1 -0
  11. package/agent/adapters/index.d.ts +47 -0
  12. package/agent/adapters/index.d.ts.map +1 -0
  13. package/agent/adapters/langchain.adapter.d.ts +178 -0
  14. package/agent/adapters/langchain.adapter.d.ts.map +1 -0
  15. package/agent/adapters/providers/index.d.ts +36 -0
  16. package/agent/adapters/providers/index.d.ts.map +1 -0
  17. package/agent/adapters/providers/types.d.ts +15 -0
  18. package/agent/adapters/providers/types.d.ts.map +1 -0
  19. package/agent/agent-execution-loop.d.ts +209 -0
  20. package/agent/agent-execution-loop.d.ts.map +1 -0
  21. package/agent/agent.events.d.ts +149 -0
  22. package/agent/agent.events.d.ts.map +1 -0
  23. package/agent/agent.instance.d.ts +201 -0
  24. package/agent/agent.instance.d.ts.map +1 -0
  25. package/agent/agent.registry.d.ts +137 -0
  26. package/agent/agent.registry.d.ts.map +1 -0
  27. package/agent/agent.scope.d.ts +333 -0
  28. package/agent/agent.scope.d.ts.map +1 -0
  29. package/agent/agent.utils.d.ts +72 -0
  30. package/agent/agent.utils.d.ts.map +1 -0
  31. package/agent/flows/call-agent.flow.d.ts +306 -0
  32. package/agent/flows/call-agent.flow.d.ts.map +1 -0
  33. package/agent/flows/index.d.ts +2 -0
  34. package/agent/flows/index.d.ts.map +1 -0
  35. package/agent/hooks/agent.hooks.d.ts +52 -0
  36. package/agent/hooks/agent.hooks.d.ts.map +1 -0
  37. package/agent/hooks/index.d.ts +2 -0
  38. package/agent/hooks/index.d.ts.map +1 -0
  39. package/agent/index.d.ts +51 -0
  40. package/agent/index.d.ts.map +1 -0
  41. package/app/app.registry.d.ts +1 -0
  42. package/app/app.registry.d.ts.map +1 -0
  43. package/app/app.utils.d.ts +3 -1
  44. package/app/app.utils.d.ts.map +1 -0
  45. package/app/instances/app.local.instance.d.ts +4 -0
  46. package/app/instances/app.local.instance.d.ts.map +1 -0
  47. package/app/instances/app.remote.instance.d.ts +98 -0
  48. package/app/instances/app.remote.instance.d.ts.map +1 -0
  49. package/app/instances/index.d.ts +1 -0
  50. package/app/instances/index.d.ts.map +1 -0
  51. package/auth/auth.registry.d.ts +1 -0
  52. package/auth/auth.registry.d.ts.map +1 -0
  53. package/auth/auth.utils.d.ts +3 -1
  54. package/auth/auth.utils.d.ts.map +1 -0
  55. package/auth/authorization/authorization.class.d.ts +1 -0
  56. package/auth/authorization/authorization.class.d.ts.map +1 -0
  57. package/auth/authorization/authorization.types.d.ts +1 -0
  58. package/auth/authorization/authorization.types.d.ts.map +1 -0
  59. package/auth/authorization/index.d.ts +1 -0
  60. package/auth/authorization/index.d.ts.map +1 -0
  61. package/auth/authorization/orchestrated.authorization.d.ts +1 -0
  62. package/auth/authorization/orchestrated.authorization.d.ts.map +1 -0
  63. package/auth/authorization/public.authorization.d.ts +1 -0
  64. package/auth/authorization/public.authorization.d.ts.map +1 -0
  65. package/auth/authorization/transparent.authorization.d.ts +1 -0
  66. package/auth/authorization/transparent.authorization.d.ts.map +1 -0
  67. package/auth/consent/consent.types.d.ts +1 -0
  68. package/auth/consent/consent.types.d.ts.map +1 -0
  69. package/auth/consent/index.d.ts +1 -0
  70. package/auth/consent/index.d.ts.map +1 -0
  71. package/auth/detection/auth-provider-detection.d.ts +1 -0
  72. package/auth/detection/auth-provider-detection.d.ts.map +1 -0
  73. package/auth/detection/index.d.ts +1 -0
  74. package/auth/detection/index.d.ts.map +1 -0
  75. package/auth/flows/auth.verify.flow.d.ts +8 -2
  76. package/auth/flows/auth.verify.flow.d.ts.map +1 -0
  77. package/auth/flows/oauth.authorize.flow.d.ts +1 -0
  78. package/auth/flows/oauth.authorize.flow.d.ts.map +1 -0
  79. package/auth/flows/oauth.callback.flow.d.ts +1 -0
  80. package/auth/flows/oauth.callback.flow.d.ts.map +1 -0
  81. package/auth/flows/oauth.register.flow.d.ts +4 -3
  82. package/auth/flows/oauth.register.flow.d.ts.map +1 -0
  83. package/auth/flows/oauth.token.flow.d.ts +1 -0
  84. package/auth/flows/oauth.token.flow.d.ts.map +1 -0
  85. package/auth/flows/session.verify.flow.d.ts +12 -1
  86. package/auth/flows/session.verify.flow.d.ts.map +1 -0
  87. package/auth/flows/well-known.jwks.flow.d.ts +1 -0
  88. package/auth/flows/well-known.jwks.flow.d.ts.map +1 -0
  89. package/auth/flows/well-known.oauth-authorization-server.flow.d.ts +1 -0
  90. package/auth/flows/well-known.oauth-authorization-server.flow.d.ts.map +1 -0
  91. package/auth/flows/well-known.prm.flow.d.ts +1 -0
  92. package/auth/flows/well-known.prm.flow.d.ts.map +1 -0
  93. package/auth/instances/instance.local-primary-auth.d.ts +1 -0
  94. package/auth/instances/instance.local-primary-auth.d.ts.map +1 -0
  95. package/auth/instances/instance.remote-primary-auth.d.ts +1 -0
  96. package/auth/instances/instance.remote-primary-auth.d.ts.map +1 -0
  97. package/auth/jwks/dev-key-persistence.d.ts +1 -0
  98. package/auth/jwks/dev-key-persistence.d.ts.map +1 -0
  99. package/auth/jwks/index.d.ts +1 -0
  100. package/auth/jwks/index.d.ts.map +1 -0
  101. package/auth/jwks/jwks.service.d.ts +16 -2
  102. package/auth/jwks/jwks.service.d.ts.map +1 -0
  103. package/auth/jwks/jwks.types.d.ts +1 -0
  104. package/auth/jwks/jwks.types.d.ts.map +1 -0
  105. package/auth/jwks/jwks.utils.d.ts +1 -0
  106. package/auth/jwks/jwks.utils.d.ts.map +1 -0
  107. package/auth/machine-id.d.ts +1 -0
  108. package/auth/machine-id.d.ts.map +1 -0
  109. package/auth/oauth/flows/oauth.authorize.flow.d.ts +1 -0
  110. package/auth/oauth/flows/oauth.authorize.flow.d.ts.map +1 -0
  111. package/auth/oauth/flows/oauth.device-authorization.flow.d.ts +1 -0
  112. package/auth/oauth/flows/oauth.device-authorization.flow.d.ts.map +1 -0
  113. package/auth/oauth/flows/oauth.introspect.flow.d.ts +1 -0
  114. package/auth/oauth/flows/oauth.introspect.flow.d.ts.map +1 -0
  115. package/auth/oauth/flows/oauth.par.flow.d.ts +1 -0
  116. package/auth/oauth/flows/oauth.par.flow.d.ts.map +1 -0
  117. package/auth/oauth/flows/oauth.revoke.flow.d.ts +1 -0
  118. package/auth/oauth/flows/oauth.revoke.flow.d.ts.map +1 -0
  119. package/auth/oauth/flows/oauth.token.flow.d.ts +1 -0
  120. package/auth/oauth/flows/oauth.token.flow.d.ts.map +1 -0
  121. package/auth/oauth/flows/oauth.userinfo.flow.d.ts +1 -0
  122. package/auth/oauth/flows/oauth.userinfo.flow.d.ts.map +1 -0
  123. package/auth/oauth/flows/oidc.logout.flow.d.ts +1 -0
  124. package/auth/oauth/flows/oidc.logout.flow.d.ts.map +1 -0
  125. package/auth/session/authorization-vault.d.ts +5 -4
  126. package/auth/session/authorization-vault.d.ts.map +1 -0
  127. package/auth/session/authorization.store.d.ts +1 -0
  128. package/auth/session/authorization.store.d.ts.map +1 -0
  129. package/auth/session/encrypted-authorization-vault.d.ts +1 -0
  130. package/auth/session/encrypted-authorization-vault.d.ts.map +1 -0
  131. package/auth/session/index.d.ts +5 -2
  132. package/auth/session/index.d.ts.map +1 -0
  133. package/auth/session/record/session.base.d.ts +1 -0
  134. package/auth/session/record/session.base.d.ts.map +1 -0
  135. package/auth/session/record/session.stateful.d.ts +1 -0
  136. package/auth/session/record/session.stateful.d.ts.map +1 -0
  137. package/auth/session/record/session.stateless.d.ts +1 -0
  138. package/auth/session/record/session.stateless.d.ts.map +1 -0
  139. package/auth/session/record/session.transparent.d.ts +1 -0
  140. package/auth/session/record/session.transparent.d.ts.map +1 -0
  141. package/auth/session/redis-session.store.d.ts +27 -3
  142. package/auth/session/redis-session.store.d.ts.map +1 -0
  143. package/auth/session/session-crypto.d.ts +87 -0
  144. package/auth/session/session-crypto.d.ts.map +1 -0
  145. package/auth/session/session-rate-limiter.d.ts +114 -0
  146. package/auth/session/session-rate-limiter.d.ts.map +1 -0
  147. package/auth/session/session.crypto.d.ts +1 -0
  148. package/auth/session/session.crypto.d.ts.map +1 -0
  149. package/auth/session/session.schema.d.ts +1 -0
  150. package/auth/session/session.schema.d.ts.map +1 -0
  151. package/auth/session/session.service.d.ts +1 -0
  152. package/auth/session/session.service.d.ts.map +1 -0
  153. package/auth/session/session.transport.d.ts +1 -0
  154. package/auth/session/session.transport.d.ts.map +1 -0
  155. package/auth/session/session.types.d.ts +1 -0
  156. package/auth/session/session.types.d.ts.map +1 -0
  157. package/auth/session/token.refresh.d.ts +1 -0
  158. package/auth/session/token.refresh.d.ts.map +1 -0
  159. package/auth/session/token.store.d.ts +3 -2
  160. package/auth/session/token.store.d.ts.map +1 -0
  161. package/auth/session/token.vault.d.ts +1 -0
  162. package/auth/session/token.vault.d.ts.map +1 -0
  163. package/auth/session/transport-session.manager.d.ts +1 -0
  164. package/auth/session/transport-session.manager.d.ts.map +1 -0
  165. package/auth/session/transport-session.types.d.ts +60 -42
  166. package/auth/session/transport-session.types.d.ts.map +1 -0
  167. package/auth/session/utils/auth-token.utils.d.ts +1 -0
  168. package/auth/session/utils/auth-token.utils.d.ts.map +1 -0
  169. package/auth/session/utils/session-id.utils.d.ts +1 -0
  170. package/auth/session/utils/session-id.utils.d.ts.map +1 -0
  171. package/auth/session/utils/tiny-ttl-cache.d.ts +1 -0
  172. package/auth/session/utils/tiny-ttl-cache.d.ts.map +1 -0
  173. package/auth/session/vault-encryption.d.ts +1 -0
  174. package/auth/session/vault-encryption.d.ts.map +1 -0
  175. package/auth/session/vercel-kv-session.store.d.ts +23 -2
  176. package/auth/session/vercel-kv-session.store.d.ts.map +1 -0
  177. package/auth/ui/base-layout.d.ts +1 -0
  178. package/auth/ui/base-layout.d.ts.map +1 -0
  179. package/auth/ui/index.d.ts +1 -0
  180. package/auth/ui/index.d.ts.map +1 -0
  181. package/auth/ui/templates.d.ts +1 -0
  182. package/auth/ui/templates.d.ts.map +1 -0
  183. package/auth/utils/audience.validator.d.ts +1 -0
  184. package/auth/utils/audience.validator.d.ts.map +1 -0
  185. package/auth/utils/index.d.ts +1 -0
  186. package/auth/utils/index.d.ts.map +1 -0
  187. package/auth/utils/www-authenticate.utils.d.ts +1 -0
  188. package/auth/utils/www-authenticate.utils.d.ts.map +1 -0
  189. package/common/common.schema.d.ts +1 -0
  190. package/common/common.schema.d.ts.map +1 -0
  191. package/common/decorators/adapter.decorator.d.ts +1 -0
  192. package/common/decorators/adapter.decorator.d.ts.map +1 -0
  193. package/common/decorators/agent.decorator.d.ts +116 -0
  194. package/common/decorators/agent.decorator.d.ts.map +1 -0
  195. package/common/decorators/app.decorator.d.ts +1 -0
  196. package/common/decorators/app.decorator.d.ts.map +1 -0
  197. package/common/decorators/auth-provider.decorator.d.ts +1 -0
  198. package/common/decorators/auth-provider.decorator.d.ts.map +1 -0
  199. package/common/decorators/decorator-utils.d.ts +1 -0
  200. package/common/decorators/decorator-utils.d.ts.map +1 -0
  201. package/common/decorators/flow.decorator.d.ts +1 -0
  202. package/common/decorators/flow.decorator.d.ts.map +1 -0
  203. package/common/decorators/front-mcp.decorator.d.ts +1 -0
  204. package/common/decorators/front-mcp.decorator.d.ts.map +1 -0
  205. package/common/decorators/hook.decorator.d.ts +1 -0
  206. package/common/decorators/hook.decorator.d.ts.map +1 -0
  207. package/common/decorators/index.d.ts +2 -0
  208. package/common/decorators/index.d.ts.map +1 -0
  209. package/common/decorators/logger.decorator.d.ts +1 -0
  210. package/common/decorators/logger.decorator.d.ts.map +1 -0
  211. package/common/decorators/plugin.decorator.d.ts +1 -0
  212. package/common/decorators/plugin.decorator.d.ts.map +1 -0
  213. package/common/decorators/prompt.decorator.d.ts +8 -3
  214. package/common/decorators/prompt.decorator.d.ts.map +1 -0
  215. package/common/decorators/provider.decorator.d.ts +1 -0
  216. package/common/decorators/provider.decorator.d.ts.map +1 -0
  217. package/common/decorators/resource.decorator.d.ts +1 -0
  218. package/common/decorators/resource.decorator.d.ts.map +1 -0
  219. package/common/decorators/tool.decorator.d.ts +1 -0
  220. package/common/decorators/tool.decorator.d.ts.map +1 -0
  221. package/common/dynamic/dynamic.adapter.d.ts +1 -0
  222. package/common/dynamic/dynamic.adapter.d.ts.map +1 -0
  223. package/common/dynamic/dynamic.plugin.d.ts +3 -1
  224. package/common/dynamic/dynamic.plugin.d.ts.map +1 -0
  225. package/common/dynamic/dynamic.utils.d.ts +1 -0
  226. package/common/dynamic/dynamic.utils.d.ts.map +1 -0
  227. package/common/dynamic/index.d.ts +1 -0
  228. package/common/dynamic/index.d.ts.map +1 -0
  229. package/common/entries/adapter.entry.d.ts +1 -0
  230. package/common/entries/adapter.entry.d.ts.map +1 -0
  231. package/common/entries/agent.entry.d.ts +143 -0
  232. package/common/entries/agent.entry.d.ts.map +1 -0
  233. package/common/entries/app.entry.d.ts +8 -0
  234. package/common/entries/app.entry.d.ts.map +1 -0
  235. package/common/entries/auth-provider.entry.d.ts +1 -0
  236. package/common/entries/auth-provider.entry.d.ts.map +1 -0
  237. package/common/entries/base.entry.d.ts +3 -2
  238. package/common/entries/base.entry.d.ts.map +1 -0
  239. package/common/entries/flow.entry.d.ts +3 -1
  240. package/common/entries/flow.entry.d.ts.map +1 -0
  241. package/common/entries/hook.entry.d.ts +7 -5
  242. package/common/entries/hook.entry.d.ts.map +1 -0
  243. package/common/entries/index.d.ts +2 -0
  244. package/common/entries/index.d.ts.map +1 -0
  245. package/common/entries/logger.entry.d.ts +1 -0
  246. package/common/entries/logger.entry.d.ts.map +1 -0
  247. package/common/entries/plugin.entry.d.ts +3 -1
  248. package/common/entries/plugin.entry.d.ts.map +1 -0
  249. package/common/entries/prompt.entry.d.ts +13 -0
  250. package/common/entries/prompt.entry.d.ts.map +1 -0
  251. package/common/entries/provider.entry.d.ts +1 -0
  252. package/common/entries/provider.entry.d.ts.map +1 -0
  253. package/common/entries/resource.entry.d.ts +7 -0
  254. package/common/entries/resource.entry.d.ts.map +1 -0
  255. package/common/entries/scope.entry.d.ts +3 -1
  256. package/common/entries/scope.entry.d.ts.map +1 -0
  257. package/common/entries/tool.entry.d.ts +17 -0
  258. package/common/entries/tool.entry.d.ts.map +1 -0
  259. package/common/flow/flow.utils.d.ts +1 -0
  260. package/common/flow/flow.utils.d.ts.map +1 -0
  261. package/common/index.d.ts +1 -1
  262. package/common/index.d.ts.map +1 -0
  263. package/common/interfaces/adapter.interface.d.ts +2 -1
  264. package/common/interfaces/adapter.interface.d.ts.map +1 -0
  265. package/common/interfaces/agent.interface.d.ts +255 -0
  266. package/common/interfaces/agent.interface.d.ts.map +1 -0
  267. package/common/interfaces/app.interface.d.ts +5 -3
  268. package/common/interfaces/app.interface.d.ts.map +1 -0
  269. package/common/interfaces/auth-hook.interface.d.ts +1 -0
  270. package/common/interfaces/auth-hook.interface.d.ts.map +1 -0
  271. package/common/interfaces/auth-provider.interface.d.ts +2 -1
  272. package/common/interfaces/auth-provider.interface.d.ts.map +1 -0
  273. package/common/interfaces/base.interface.d.ts +2 -77
  274. package/common/interfaces/base.interface.d.ts.map +1 -0
  275. package/common/interfaces/execution-context.interface.d.ts +2 -1
  276. package/common/interfaces/execution-context.interface.d.ts.map +1 -0
  277. package/common/interfaces/flow.interface.d.ts +2 -1
  278. package/common/interfaces/flow.interface.d.ts.map +1 -0
  279. package/common/interfaces/front-mcp.interface.d.ts +1 -0
  280. package/common/interfaces/front-mcp.interface.d.ts.map +1 -0
  281. package/common/interfaces/hook.interface.d.ts +2 -1
  282. package/common/interfaces/hook.interface.d.ts.map +1 -0
  283. package/common/interfaces/index.d.ts +4 -0
  284. package/common/interfaces/index.d.ts.map +1 -0
  285. package/common/interfaces/internal/flow.utils.d.ts +1 -0
  286. package/common/interfaces/internal/flow.utils.d.ts.map +1 -0
  287. package/common/interfaces/internal/index.d.ts +1 -0
  288. package/common/interfaces/internal/index.d.ts.map +1 -0
  289. package/common/interfaces/internal/primary-auth-provider.interface.d.ts +1 -0
  290. package/common/interfaces/internal/primary-auth-provider.interface.d.ts.map +1 -0
  291. package/common/interfaces/internal/registry.interface.d.ts +13 -3
  292. package/common/interfaces/internal/registry.interface.d.ts.map +1 -0
  293. package/common/interfaces/llm-adapter.interface.d.ts +221 -0
  294. package/common/interfaces/llm-adapter.interface.d.ts.map +1 -0
  295. package/common/interfaces/logger.interface.d.ts +7 -6
  296. package/common/interfaces/logger.interface.d.ts.map +1 -0
  297. package/common/interfaces/plugin.interface.d.ts +2 -1
  298. package/common/interfaces/plugin.interface.d.ts.map +1 -0
  299. package/common/interfaces/prompt.interface.d.ts +10 -2
  300. package/common/interfaces/prompt.interface.d.ts.map +1 -0
  301. package/common/interfaces/provider.interface.d.ts +2 -1
  302. package/common/interfaces/provider.interface.d.ts.map +1 -0
  303. package/common/interfaces/resource.interface.d.ts +12 -2
  304. package/common/interfaces/resource.interface.d.ts.map +1 -0
  305. package/common/interfaces/scope.interface.d.ts +3 -2
  306. package/common/interfaces/scope.interface.d.ts.map +1 -0
  307. package/common/interfaces/server.interface.d.ts +1 -0
  308. package/common/interfaces/server.interface.d.ts.map +1 -0
  309. package/common/interfaces/session-hook.interface.d.ts +1 -0
  310. package/common/interfaces/session-hook.interface.d.ts.map +1 -0
  311. package/common/interfaces/tool-hook.interface.d.ts +1 -0
  312. package/common/interfaces/tool-hook.interface.d.ts.map +1 -0
  313. package/common/interfaces/tool.interface.d.ts +52 -2
  314. package/common/interfaces/tool.interface.d.ts.map +1 -0
  315. package/common/metadata/adapter.metadata.d.ts +1 -0
  316. package/common/metadata/adapter.metadata.d.ts.map +1 -0
  317. package/common/metadata/agent.metadata.d.ts +398 -0
  318. package/common/metadata/agent.metadata.d.ts.map +1 -0
  319. package/common/metadata/app.metadata.d.ts +162 -16
  320. package/common/metadata/app.metadata.d.ts.map +1 -0
  321. package/common/metadata/auth-provider.metadata.d.ts +1 -0
  322. package/common/metadata/auth-provider.metadata.d.ts.map +1 -0
  323. package/common/metadata/flow.metadata.d.ts +5 -3
  324. package/common/metadata/flow.metadata.d.ts.map +1 -0
  325. package/common/metadata/front-mcp.metadata.d.ts +138 -46
  326. package/common/metadata/front-mcp.metadata.d.ts.map +1 -0
  327. package/common/metadata/hook.metadata.d.ts +2 -1
  328. package/common/metadata/hook.metadata.d.ts.map +1 -0
  329. package/common/metadata/index.d.ts +3 -0
  330. package/common/metadata/index.d.ts.map +1 -0
  331. package/common/metadata/logger.metadata.d.ts +1 -0
  332. package/common/metadata/logger.metadata.d.ts.map +1 -0
  333. package/common/metadata/plugin.metadata.d.ts +74 -7
  334. package/common/metadata/plugin.metadata.d.ts.map +1 -0
  335. package/common/metadata/prompt.metadata.d.ts +1 -0
  336. package/common/metadata/prompt.metadata.d.ts.map +1 -0
  337. package/common/metadata/provider.metadata.d.ts +5 -30
  338. package/common/metadata/provider.metadata.d.ts.map +1 -0
  339. package/common/metadata/resource.metadata.d.ts +1 -0
  340. package/common/metadata/resource.metadata.d.ts.map +1 -0
  341. package/common/metadata/tool-ui.metadata.d.ts +1 -0
  342. package/common/metadata/tool-ui.metadata.d.ts.map +1 -0
  343. package/common/metadata/tool.metadata.d.ts +1 -0
  344. package/common/metadata/tool.metadata.d.ts.map +1 -0
  345. package/common/migrate/auth-transport.migrate.d.ts +1 -0
  346. package/common/migrate/auth-transport.migrate.d.ts.map +1 -0
  347. package/common/migrate/index.d.ts +1 -0
  348. package/common/migrate/index.d.ts.map +1 -0
  349. package/common/providers/base-config.provider.d.ts +1 -0
  350. package/common/providers/base-config.provider.d.ts.map +1 -0
  351. package/common/records/adapter.record.d.ts +2 -1
  352. package/common/records/adapter.record.d.ts.map +1 -0
  353. package/common/records/agent.record.d.ts +89 -0
  354. package/common/records/agent.record.d.ts.map +1 -0
  355. package/common/records/app.record.d.ts +2 -1
  356. package/common/records/app.record.d.ts.map +1 -0
  357. package/common/records/auth-provider.record.d.ts +3 -1
  358. package/common/records/auth-provider.record.d.ts.map +1 -0
  359. package/common/records/flow.record.d.ts +1 -0
  360. package/common/records/flow.record.d.ts.map +1 -0
  361. package/common/records/hook.record.d.ts +1 -0
  362. package/common/records/hook.record.d.ts.map +1 -0
  363. package/common/records/index.d.ts +3 -0
  364. package/common/records/index.d.ts.map +1 -0
  365. package/common/records/logger.record.d.ts +4 -2
  366. package/common/records/logger.record.d.ts.map +1 -0
  367. package/common/records/plugin.record.d.ts +3 -1
  368. package/common/records/plugin.record.d.ts.map +1 -0
  369. package/common/records/prompt.record.d.ts +2 -1
  370. package/common/records/prompt.record.d.ts.map +1 -0
  371. package/common/records/provider.record.d.ts +2 -36
  372. package/common/records/provider.record.d.ts.map +1 -0
  373. package/common/records/resource.record.d.ts +2 -1
  374. package/common/records/resource.record.d.ts.map +1 -0
  375. package/common/records/scope.record.d.ts +2 -1
  376. package/common/records/scope.record.d.ts.map +1 -0
  377. package/common/records/tool.record.d.ts +3 -1
  378. package/common/records/tool.record.d.ts.map +1 -0
  379. package/common/schemas/annotated-class.schema.d.ts +4 -1
  380. package/common/schemas/annotated-class.schema.d.ts.map +1 -0
  381. package/common/schemas/http-input.schema.d.ts +1 -0
  382. package/common/schemas/http-input.schema.d.ts.map +1 -0
  383. package/common/schemas/http-output.schema.d.ts +1 -0
  384. package/common/schemas/http-output.schema.d.ts.map +1 -0
  385. package/common/schemas/index.d.ts +1 -0
  386. package/common/schemas/index.d.ts.map +1 -0
  387. package/common/schemas/session-header.schema.d.ts +1 -0
  388. package/common/schemas/session-header.schema.d.ts.map +1 -0
  389. package/common/tokens/adapter.tokens.d.ts +1 -0
  390. package/common/tokens/adapter.tokens.d.ts.map +1 -0
  391. package/common/tokens/agent.tokens.d.ts +33 -0
  392. package/common/tokens/agent.tokens.d.ts.map +1 -0
  393. package/common/tokens/app.tokens.d.ts +1 -0
  394. package/common/tokens/app.tokens.d.ts.map +1 -0
  395. package/common/tokens/auth-provider.tokens.d.ts +1 -0
  396. package/common/tokens/auth-provider.tokens.d.ts.map +1 -0
  397. package/common/tokens/base.tokens.d.ts +6 -4
  398. package/common/tokens/base.tokens.d.ts.map +1 -0
  399. package/common/tokens/flow-hook.tokens.d.ts +1 -0
  400. package/common/tokens/flow-hook.tokens.d.ts.map +1 -0
  401. package/common/tokens/flow.tokens.d.ts +1 -0
  402. package/common/tokens/flow.tokens.d.ts.map +1 -0
  403. package/common/tokens/front-mcp.tokens.d.ts +1 -0
  404. package/common/tokens/front-mcp.tokens.d.ts.map +1 -0
  405. package/common/tokens/index.d.ts +2 -0
  406. package/common/tokens/index.d.ts.map +1 -0
  407. package/common/tokens/logger.tokens.d.ts +1 -0
  408. package/common/tokens/logger.tokens.d.ts.map +1 -0
  409. package/common/tokens/plugin.tokens.d.ts +3 -0
  410. package/common/tokens/plugin.tokens.d.ts.map +1 -0
  411. package/common/tokens/prompt.tokens.d.ts +1 -0
  412. package/common/tokens/prompt.tokens.d.ts.map +1 -0
  413. package/common/tokens/provider.tokens.d.ts +1 -0
  414. package/common/tokens/provider.tokens.d.ts.map +1 -0
  415. package/common/tokens/resource.tokens.d.ts +1 -0
  416. package/common/tokens/resource.tokens.d.ts.map +1 -0
  417. package/common/tokens/server.tokens.d.ts +1 -0
  418. package/common/tokens/server.tokens.d.ts.map +1 -0
  419. package/common/tokens/tool.tokens.d.ts +1 -0
  420. package/common/tokens/tool.tokens.d.ts.map +1 -0
  421. package/common/types/auth/index.d.ts +1 -0
  422. package/common/types/auth/index.d.ts.map +1 -0
  423. package/common/types/auth/jwt.types.d.ts +1 -0
  424. package/common/types/auth/jwt.types.d.ts.map +1 -0
  425. package/common/types/auth/session.types.d.ts +1 -0
  426. package/common/types/auth/session.types.d.ts.map +1 -0
  427. package/common/types/common.types.d.ts +1 -0
  428. package/common/types/common.types.d.ts.map +1 -0
  429. package/common/types/index.d.ts +1 -0
  430. package/common/types/index.d.ts.map +1 -0
  431. package/common/types/options/auth/app-auth.schema.d.ts +1 -0
  432. package/common/types/options/auth/app-auth.schema.d.ts.map +1 -0
  433. package/common/types/options/auth/auth.interfaces.d.ts +1 -0
  434. package/common/types/options/auth/auth.interfaces.d.ts.map +1 -0
  435. package/common/types/options/auth/auth.schema.d.ts +1 -0
  436. package/common/types/options/auth/auth.schema.d.ts.map +1 -0
  437. package/common/types/options/auth/auth.typecheck.d.ts +1 -0
  438. package/common/types/options/auth/auth.typecheck.d.ts.map +1 -0
  439. package/common/types/options/auth/auth.utils.d.ts +1 -0
  440. package/common/types/options/auth/auth.utils.d.ts.map +1 -0
  441. package/common/types/options/auth/index.d.ts +1 -0
  442. package/common/types/options/auth/index.d.ts.map +1 -0
  443. package/common/types/options/auth/orchestrated.schema.d.ts +1 -0
  444. package/common/types/options/auth/orchestrated.schema.d.ts.map +1 -0
  445. package/common/types/options/auth/public.schema.d.ts +1 -0
  446. package/common/types/options/auth/public.schema.d.ts.map +1 -0
  447. package/common/types/options/auth/shared.schemas.d.ts +1 -0
  448. package/common/types/options/auth/shared.schemas.d.ts.map +1 -0
  449. package/common/types/options/auth/transparent.schema.d.ts +1 -0
  450. package/common/types/options/auth/transparent.schema.d.ts.map +1 -0
  451. package/common/types/options/auth/transport.deprecated.d.ts +1 -0
  452. package/common/types/options/auth/transport.deprecated.d.ts.map +1 -0
  453. package/common/types/options/http.options.d.ts +1 -0
  454. package/common/types/options/http.options.d.ts.map +1 -0
  455. package/common/types/options/index.d.ts +1 -0
  456. package/common/types/options/index.d.ts.map +1 -0
  457. package/common/types/options/logging.options.d.ts +2 -5
  458. package/common/types/options/logging.options.d.ts.map +1 -0
  459. package/common/types/options/redis.options.d.ts +1 -0
  460. package/common/types/options/redis.options.d.ts.map +1 -0
  461. package/common/types/options/server-info.options.d.ts +1 -0
  462. package/common/types/options/server-info.options.d.ts.map +1 -0
  463. package/common/types/options/session.options.d.ts +1 -0
  464. package/common/types/options/session.options.d.ts.map +1 -0
  465. package/common/types/options/transport.options.d.ts +25 -0
  466. package/common/types/options/transport.options.d.ts.map +1 -0
  467. package/common/utils/decide-request-intent.utils.d.ts +1 -0
  468. package/common/utils/decide-request-intent.utils.d.ts.map +1 -0
  469. package/common/utils/global-config.utils.d.ts +1 -0
  470. package/common/utils/global-config.utils.d.ts.map +1 -0
  471. package/common/utils/index.d.ts +1 -0
  472. package/common/utils/index.d.ts.map +1 -0
  473. package/common/utils/path.utils.d.ts +3 -4
  474. package/common/utils/path.utils.d.ts.map +1 -0
  475. package/completion/flows/complete.flow.d.ts +1 -0
  476. package/completion/flows/complete.flow.d.ts.map +1 -0
  477. package/context/context-extension.d.ts +52 -0
  478. package/context/context-extension.d.ts.map +1 -0
  479. package/context/frontmcp-context-storage.d.ts +1 -0
  480. package/context/frontmcp-context-storage.d.ts.map +1 -0
  481. package/context/frontmcp-context.d.ts +1 -0
  482. package/context/frontmcp-context.d.ts.map +1 -0
  483. package/context/frontmcp-context.provider.d.ts +3 -2
  484. package/context/frontmcp-context.provider.d.ts.map +1 -0
  485. package/context/index.d.ts +1 -0
  486. package/context/index.d.ts.map +1 -0
  487. package/context/request-context-storage.d.ts +1 -0
  488. package/context/request-context-storage.d.ts.map +1 -0
  489. package/context/request-context.d.ts +1 -0
  490. package/context/request-context.d.ts.map +1 -0
  491. package/context/request-context.provider.d.ts +1 -0
  492. package/context/request-context.provider.d.ts.map +1 -0
  493. package/context/session-key.provider.d.ts +1 -0
  494. package/context/session-key.provider.d.ts.map +1 -0
  495. package/context/trace-context.d.ts +1 -0
  496. package/context/trace-context.d.ts.map +1 -0
  497. package/errors/agent.errors.d.ts +80 -0
  498. package/errors/agent.errors.d.ts.map +1 -0
  499. package/errors/authorization-required.error.d.ts +1 -0
  500. package/errors/authorization-required.error.d.ts.map +1 -0
  501. package/errors/error-handler.d.ts +1 -0
  502. package/errors/error-handler.d.ts.map +1 -0
  503. package/errors/index.d.ts +4 -1
  504. package/errors/index.d.ts.map +1 -0
  505. package/errors/mcp.error.d.ts +31 -0
  506. package/errors/mcp.error.d.ts.map +1 -0
  507. package/errors/remote.errors.d.ts +156 -0
  508. package/errors/remote.errors.d.ts.map +1 -0
  509. package/esm/index.mjs +18399 -10886
  510. package/esm/package.json +26 -18
  511. package/flows/flow.instance.d.ts +1 -0
  512. package/flows/flow.instance.d.ts.map +1 -0
  513. package/flows/flow.registry.d.ts +3 -1
  514. package/flows/flow.registry.d.ts.map +1 -0
  515. package/flows/flow.stages.d.ts +1 -0
  516. package/flows/flow.stages.d.ts.map +1 -0
  517. package/flows/flow.utils.d.ts +3 -1
  518. package/flows/flow.utils.d.ts.map +1 -0
  519. package/front-mcp/front-mcp.d.ts +21 -1
  520. package/front-mcp/front-mcp.d.ts.map +1 -0
  521. package/front-mcp/front-mcp.providers.d.ts +42 -21
  522. package/front-mcp/front-mcp.providers.d.ts.map +1 -0
  523. package/front-mcp/front-mcp.tokens.d.ts +3 -1
  524. package/front-mcp/front-mcp.tokens.d.ts.map +1 -0
  525. package/front-mcp/index.d.ts +1 -0
  526. package/front-mcp/index.d.ts.map +1 -0
  527. package/front-mcp/serverless-handler.d.ts +1 -0
  528. package/front-mcp/serverless-handler.d.ts.map +1 -0
  529. package/hooks/hook.instance.d.ts +1 -0
  530. package/hooks/hook.instance.d.ts.map +1 -0
  531. package/hooks/hook.registry.d.ts +1 -0
  532. package/hooks/hook.registry.d.ts.map +1 -0
  533. package/hooks/hooks.utils.d.ts +3 -1
  534. package/hooks/hooks.utils.d.ts.map +1 -0
  535. package/index.d.ts +29 -20
  536. package/index.d.ts.map +1 -0
  537. package/index.js +18589 -11006
  538. package/logger/instances/instance.console-logger.d.ts +1 -0
  539. package/logger/instances/instance.console-logger.d.ts.map +1 -0
  540. package/logger/instances/instance.logger.d.ts +1 -0
  541. package/logger/instances/instance.logger.d.ts.map +1 -0
  542. package/logger/logger.registry.d.ts +1 -0
  543. package/logger/logger.registry.d.ts.map +1 -0
  544. package/logger/logger.tokens.d.ts +1 -0
  545. package/logger/logger.tokens.d.ts.map +1 -0
  546. package/logger/logger.types.d.ts +1 -0
  547. package/logger/logger.types.d.ts.map +1 -0
  548. package/logger/logger.utils.d.ts +3 -1
  549. package/logger/logger.utils.d.ts.map +1 -0
  550. package/logging/flows/set-level.flow.d.ts +1 -0
  551. package/logging/flows/set-level.flow.d.ts.map +1 -0
  552. package/notification/index.d.ts +1 -0
  553. package/notification/index.d.ts.map +1 -0
  554. package/notification/notification.service.d.ts +17 -4
  555. package/notification/notification.service.d.ts.map +1 -0
  556. package/package.json +17 -7
  557. package/plugin/plugin.registry.d.ts +25 -6
  558. package/plugin/plugin.registry.d.ts.map +1 -0
  559. package/plugin/plugin.utils.d.ts +3 -1
  560. package/plugin/plugin.utils.d.ts.map +1 -0
  561. package/prompt/flows/get-prompt.flow.d.ts +8 -1
  562. package/prompt/flows/get-prompt.flow.d.ts.map +1 -0
  563. package/prompt/flows/prompts-list.flow.d.ts +8 -1
  564. package/prompt/flows/prompts-list.flow.d.ts.map +1 -0
  565. package/prompt/index.d.ts +1 -0
  566. package/prompt/index.d.ts.map +1 -0
  567. package/prompt/prompt.events.d.ts +3 -2
  568. package/prompt/prompt.events.d.ts.map +1 -0
  569. package/prompt/prompt.instance.d.ts +7 -1
  570. package/prompt/prompt.instance.d.ts.map +1 -0
  571. package/prompt/prompt.registry.d.ts +32 -7
  572. package/prompt/prompt.registry.d.ts.map +1 -0
  573. package/prompt/prompt.types.d.ts +5 -4
  574. package/prompt/prompt.types.d.ts.map +1 -0
  575. package/prompt/prompt.utils.d.ts +3 -3
  576. package/prompt/prompt.utils.d.ts.map +1 -0
  577. package/provider/flow-context-providers.d.ts +24 -0
  578. package/provider/flow-context-providers.d.ts.map +1 -0
  579. package/provider/provider.registry.d.ts +26 -4
  580. package/provider/provider.registry.d.ts.map +1 -0
  581. package/provider/provider.types.d.ts +2 -1
  582. package/provider/provider.types.d.ts.map +1 -0
  583. package/provider/provider.utils.d.ts +21 -2
  584. package/provider/provider.utils.d.ts.map +1 -0
  585. package/regsitry/index.d.ts +1 -0
  586. package/regsitry/index.d.ts.map +1 -0
  587. package/regsitry/registry.base.d.ts +3 -1
  588. package/regsitry/registry.base.d.ts.map +1 -0
  589. package/remote-mcp/cache/capability-cache.d.ts +87 -0
  590. package/remote-mcp/cache/capability-cache.d.ts.map +1 -0
  591. package/remote-mcp/cache/index.d.ts +6 -0
  592. package/remote-mcp/cache/index.d.ts.map +1 -0
  593. package/remote-mcp/factories/context-factories.d.ts +43 -0
  594. package/remote-mcp/factories/context-factories.d.ts.map +1 -0
  595. package/remote-mcp/factories/index.d.ts +12 -0
  596. package/remote-mcp/factories/index.d.ts.map +1 -0
  597. package/remote-mcp/factories/instance-factories.d.ts +81 -0
  598. package/remote-mcp/factories/instance-factories.d.ts.map +1 -0
  599. package/remote-mcp/factories/record-builders.d.ts +50 -0
  600. package/remote-mcp/factories/record-builders.d.ts.map +1 -0
  601. package/remote-mcp/index.d.ts +14 -0
  602. package/remote-mcp/index.d.ts.map +1 -0
  603. package/remote-mcp/mcp-client.service.d.ts +169 -0
  604. package/remote-mcp/mcp-client.service.d.ts.map +1 -0
  605. package/remote-mcp/mcp-client.types.d.ts +298 -0
  606. package/remote-mcp/mcp-client.types.d.ts.map +1 -0
  607. package/remote-mcp/resilience/circuit-breaker.d.ts +100 -0
  608. package/remote-mcp/resilience/circuit-breaker.d.ts.map +1 -0
  609. package/remote-mcp/resilience/health-check.d.ts +107 -0
  610. package/remote-mcp/resilience/health-check.d.ts.map +1 -0
  611. package/remote-mcp/resilience/index.d.ts +8 -0
  612. package/remote-mcp/resilience/index.d.ts.map +1 -0
  613. package/remote-mcp/resilience/retry.d.ts +37 -0
  614. package/remote-mcp/resilience/retry.d.ts.map +1 -0
  615. package/resource/flows/read-resource.flow.d.ts +8 -1
  616. package/resource/flows/read-resource.flow.d.ts.map +1 -0
  617. package/resource/flows/resource-templates-list.flow.d.ts +8 -1
  618. package/resource/flows/resource-templates-list.flow.d.ts.map +1 -0
  619. package/resource/flows/resources-list.flow.d.ts +8 -1
  620. package/resource/flows/resources-list.flow.d.ts.map +1 -0
  621. package/resource/flows/subscribe-resource.flow.d.ts +1 -0
  622. package/resource/flows/subscribe-resource.flow.d.ts.map +1 -0
  623. package/resource/flows/unsubscribe-resource.flow.d.ts +1 -0
  624. package/resource/flows/unsubscribe-resource.flow.d.ts.map +1 -0
  625. package/resource/index.d.ts +1 -0
  626. package/resource/index.d.ts.map +1 -0
  627. package/resource/resource.events.d.ts +3 -2
  628. package/resource/resource.events.d.ts.map +1 -0
  629. package/resource/resource.instance.d.ts +1 -0
  630. package/resource/resource.instance.d.ts.map +1 -0
  631. package/resource/resource.registry.d.ts +33 -8
  632. package/resource/resource.registry.d.ts.map +1 -0
  633. package/resource/resource.types.d.ts +5 -4
  634. package/resource/resource.types.d.ts.map +1 -0
  635. package/resource/resource.utils.d.ts +3 -5
  636. package/resource/resource.utils.d.ts.map +1 -0
  637. package/scope/flows/http.request.flow.d.ts +1 -0
  638. package/scope/flows/http.request.flow.d.ts.map +1 -0
  639. package/scope/index.d.ts +1 -0
  640. package/scope/index.d.ts.map +1 -0
  641. package/scope/scope.instance.d.ts +7 -0
  642. package/scope/scope.instance.d.ts.map +1 -0
  643. package/scope/scope.registry.d.ts +6 -0
  644. package/scope/scope.registry.d.ts.map +1 -0
  645. package/scope/scope.utils.d.ts +3 -1
  646. package/scope/scope.utils.d.ts.map +1 -0
  647. package/server/adapters/base.host.adapter.d.ts +1 -0
  648. package/server/adapters/base.host.adapter.d.ts.map +1 -0
  649. package/server/adapters/express.host.adapter.d.ts +1 -0
  650. package/server/adapters/express.host.adapter.d.ts.map +1 -0
  651. package/server/server.instance.d.ts +1 -0
  652. package/server/server.instance.d.ts.map +1 -0
  653. package/server/server.types.d.ts +1 -0
  654. package/server/server.types.d.ts.map +1 -0
  655. package/server/server.validation.d.ts +1 -0
  656. package/server/server.validation.d.ts.map +1 -0
  657. package/store/adapters/store.base.adapter.d.ts +1 -0
  658. package/store/adapters/store.base.adapter.d.ts.map +1 -0
  659. package/store/adapters/store.memory.adapter.d.ts +1 -0
  660. package/store/adapters/store.memory.adapter.d.ts.map +1 -0
  661. package/store/adapters/store.redis.adapter.d.ts +1 -0
  662. package/store/adapters/store.redis.adapter.d.ts.map +1 -0
  663. package/store/adapters/store.vercel-kv.adapter.d.ts +1 -0
  664. package/store/adapters/store.vercel-kv.adapter.d.ts.map +1 -0
  665. package/store/index.d.ts +1 -0
  666. package/store/index.d.ts.map +1 -0
  667. package/store/store.factory.d.ts +1 -0
  668. package/store/store.factory.d.ts.map +1 -0
  669. package/store/store.helpers.d.ts +1 -0
  670. package/store/store.helpers.d.ts.map +1 -0
  671. package/store/store.registry.d.ts +1 -0
  672. package/store/store.registry.d.ts.map +1 -0
  673. package/store/store.tokens.d.ts +1 -0
  674. package/store/store.tokens.d.ts.map +1 -0
  675. package/store/store.types.d.ts +1 -0
  676. package/store/store.types.d.ts.map +1 -0
  677. package/store/store.utils.d.ts +1 -0
  678. package/store/store.utils.d.ts.map +1 -0
  679. package/tool/flows/call-tool.flow.d.ts +9 -1
  680. package/tool/flows/call-tool.flow.d.ts.map +1 -0
  681. package/tool/flows/tools-list.flow.d.ts +8 -1
  682. package/tool/flows/tools-list.flow.d.ts.map +1 -0
  683. package/tool/tool.events.d.ts +3 -2
  684. package/tool/tool.events.d.ts.map +1 -0
  685. package/tool/tool.instance.d.ts +18 -1
  686. package/tool/tool.instance.d.ts.map +1 -0
  687. package/tool/tool.registry.d.ts +57 -5
  688. package/tool/tool.registry.d.ts.map +1 -0
  689. package/tool/tool.types.d.ts +5 -4
  690. package/tool/tool.types.d.ts.map +1 -0
  691. package/tool/tool.utils.d.ts +20 -3
  692. package/tool/tool.utils.d.ts.map +1 -0
  693. package/tool/ui/index.d.ts +1 -0
  694. package/tool/ui/index.d.ts.map +1 -0
  695. package/tool/ui/platform-adapters.d.ts +1 -0
  696. package/tool/ui/platform-adapters.d.ts.map +1 -0
  697. package/tool/ui/template-helpers.d.ts +1 -0
  698. package/tool/ui/template-helpers.d.ts.map +1 -0
  699. package/tool/ui/ui-resource-template.d.ts +1 -0
  700. package/tool/ui/ui-resource-template.d.ts.map +1 -0
  701. package/tool/ui/ui-resource.handler.d.ts +1 -0
  702. package/tool/ui/ui-resource.handler.d.ts.map +1 -0
  703. package/transport/adapters/sse-transport.d.ts +66 -0
  704. package/transport/adapters/sse-transport.d.ts.map +1 -0
  705. package/transport/adapters/streamable-http-transport.d.ts +96 -0
  706. package/transport/adapters/streamable-http-transport.d.ts.map +1 -0
  707. package/transport/adapters/transport.local.adapter.d.ts +27 -1
  708. package/transport/adapters/transport.local.adapter.d.ts.map +1 -0
  709. package/transport/adapters/transport.sse.adapter.d.ts +17 -3
  710. package/transport/adapters/transport.sse.adapter.d.ts.map +1 -0
  711. package/transport/adapters/transport.streamable-http.adapter.d.ts +13 -3
  712. package/transport/adapters/transport.streamable-http.adapter.d.ts.map +1 -0
  713. package/transport/flows/handle.sse.flow.d.ts +1 -0
  714. package/transport/flows/handle.sse.flow.d.ts.map +1 -0
  715. package/transport/flows/handle.stateless-http.flow.d.ts +1 -0
  716. package/transport/flows/handle.stateless-http.flow.d.ts.map +1 -0
  717. package/transport/flows/handle.streamable-http.flow.d.ts +1 -0
  718. package/transport/flows/handle.streamable-http.flow.d.ts.map +1 -0
  719. package/transport/index.d.ts +22 -0
  720. package/transport/index.d.ts.map +1 -0
  721. package/transport/legacy/legacy.sse.tranporter.d.ts +1 -0
  722. package/transport/legacy/legacy.sse.tranporter.d.ts.map +1 -0
  723. package/transport/mcp-handlers/Initialized-notification.hanlder.d.ts +1 -0
  724. package/transport/mcp-handlers/Initialized-notification.hanlder.d.ts.map +1 -0
  725. package/transport/mcp-handlers/call-tool-request.handler.d.ts +1 -0
  726. package/transport/mcp-handlers/call-tool-request.handler.d.ts.map +1 -0
  727. package/transport/mcp-handlers/complete-request.handler.d.ts +1 -0
  728. package/transport/mcp-handlers/complete-request.handler.d.ts.map +1 -0
  729. package/transport/mcp-handlers/get-prompt-request.handler.d.ts +1 -0
  730. package/transport/mcp-handlers/get-prompt-request.handler.d.ts.map +1 -0
  731. package/transport/mcp-handlers/index.d.ts +2 -1
  732. package/transport/mcp-handlers/index.d.ts.map +1 -0
  733. package/transport/mcp-handlers/initialize-request.handler.d.ts +1 -0
  734. package/transport/mcp-handlers/initialize-request.handler.d.ts.map +1 -0
  735. package/transport/mcp-handlers/list-prompts-request.handler.d.ts +1 -0
  736. package/transport/mcp-handlers/list-prompts-request.handler.d.ts.map +1 -0
  737. package/transport/mcp-handlers/list-resource-templates-request.handler.d.ts +1 -0
  738. package/transport/mcp-handlers/list-resource-templates-request.handler.d.ts.map +1 -0
  739. package/transport/mcp-handlers/list-resources-request.handler.d.ts +1 -0
  740. package/transport/mcp-handlers/list-resources-request.handler.d.ts.map +1 -0
  741. package/transport/mcp-handlers/list-tools-request.handler.d.ts +1 -0
  742. package/transport/mcp-handlers/list-tools-request.handler.d.ts.map +1 -0
  743. package/transport/mcp-handlers/logging-set-level-request.handler.d.ts +2 -1
  744. package/transport/mcp-handlers/logging-set-level-request.handler.d.ts.map +1 -0
  745. package/transport/mcp-handlers/mcp-handlers.types.d.ts +1 -0
  746. package/transport/mcp-handlers/mcp-handlers.types.d.ts.map +1 -0
  747. package/transport/mcp-handlers/read-resource-request.handler.d.ts +1 -0
  748. package/transport/mcp-handlers/read-resource-request.handler.d.ts.map +1 -0
  749. package/transport/mcp-handlers/roots-list-changed-notification.handler.d.ts +1 -0
  750. package/transport/mcp-handlers/roots-list-changed-notification.handler.d.ts.map +1 -0
  751. package/transport/mcp-handlers/subscribe-request.handler.d.ts +1 -0
  752. package/transport/mcp-handlers/subscribe-request.handler.d.ts.map +1 -0
  753. package/transport/mcp-handlers/unsubscribe-request.handler.d.ts +1 -0
  754. package/transport/mcp-handlers/unsubscribe-request.handler.d.ts.map +1 -0
  755. package/transport/transport.error.d.ts +1 -0
  756. package/transport/transport.error.d.ts.map +1 -0
  757. package/transport/transport.event-store.d.ts +1 -0
  758. package/transport/transport.event-store.d.ts.map +1 -0
  759. package/transport/transport.local.d.ts +7 -0
  760. package/transport/transport.local.d.ts.map +1 -0
  761. package/transport/transport.registry.d.ts +8 -1
  762. package/transport/transport.registry.d.ts.map +1 -0
  763. package/transport/transport.remote.d.ts +2 -0
  764. package/transport/transport.remote.d.ts.map +1 -0
  765. package/transport/transport.types.d.ts +8 -1
  766. package/transport/transport.types.d.ts.map +1 -0
  767. package/types/drinen-hooks.types.d.ts +1 -0
  768. package/types/drinen-hooks.types.d.ts.map +1 -0
  769. package/types/invoke.type.d.ts +1 -0
  770. package/types/invoke.type.d.ts.map +1 -0
  771. package/types/token.types.d.ts +1 -0
  772. package/types/token.types.d.ts.map +1 -0
  773. package/{utils/types.utils.d.ts → types/zod.types.d.ts} +1 -0
  774. package/types/zod.types.d.ts.map +1 -0
  775. package/utils/content.utils.d.ts +1 -19
  776. package/utils/content.utils.d.ts.map +1 -0
  777. package/utils/index.d.ts +3 -7
  778. package/utils/index.d.ts.map +1 -0
  779. package/utils/lineage.utils.d.ts +1 -0
  780. package/utils/lineage.utils.d.ts.map +1 -0
  781. package/utils/naming.utils.d.ts +2 -34
  782. package/utils/naming.utils.d.ts.map +1 -0
  783. package/common/constants.d.ts +0 -5
  784. package/esm/mcp-apps/index.mjs +0 -723
  785. package/exceptions/mcp-exceptions/session-missing.exception.d.ts +0 -3
  786. package/exceptions/mcp-exceptions/unsupported-client-version.exception.d.ts +0 -5
  787. package/mcp-apps/csp.d.ts +0 -111
  788. package/mcp-apps/index.d.ts +0 -23
  789. package/mcp-apps/index.js +0 -799
  790. package/mcp-apps/schemas.d.ts +0 -403
  791. package/mcp-apps/template.d.ts +0 -94
  792. package/mcp-apps/types.d.ts +0 -323
  793. package/utils/metadata.utils.d.ts +0 -5
  794. package/utils/server.utils.d.ts +0 -19
  795. package/utils/string.utils.d.ts +0 -1
  796. package/utils/token.utils.d.ts +0 -11
  797. package/utils/uri-template.utils.d.ts +0 -57
  798. package/utils/uri-validation.utils.d.ts +0 -40
@@ -135,6 +135,14 @@ export interface StoredSession {
135
135
  createdAt: number;
136
136
  /** Last accessed timestamp */
137
137
  lastAccessedAt: number;
138
+ /** Whether the MCP protocol initialization handshake was completed */
139
+ initialized?: boolean;
140
+ /**
141
+ * Absolute maximum lifetime timestamp (epoch ms).
142
+ * Session is invalid after this time regardless of access patterns.
143
+ * This prevents indefinite session extension via sliding expiration.
144
+ */
145
+ maxLifetimeAt?: number;
138
146
  }
139
147
  /**
140
148
  * Encrypted blob structure (AES-256-GCM)
@@ -206,6 +214,47 @@ export interface RedisConfig {
206
214
  /** Default TTL in milliseconds for session extension on access (sliding expiration) */
207
215
  defaultTtlMs?: number;
208
216
  }
217
+ /**
218
+ * Security configuration options for session stores.
219
+ * These options enable additional security hardening features.
220
+ */
221
+ export interface SessionSecurityConfig {
222
+ /**
223
+ * Default maximum session lifetime in milliseconds.
224
+ * Sessions will be invalidated after this time regardless of access.
225
+ * Set to prevent indefinite session extension via sliding expiration.
226
+ * @example 86400000 // 24 hours
227
+ */
228
+ maxLifetimeMs?: number;
229
+ /**
230
+ * Enable HMAC signing for stored sessions.
231
+ * When enabled, sessions are signed to detect tampering.
232
+ * Requires MCP_SESSION_SECRET environment variable or signing.secret config.
233
+ * @default false
234
+ */
235
+ enableSigning?: boolean;
236
+ /**
237
+ * Secret key for HMAC signing.
238
+ * If not provided, falls back to MCP_SESSION_SECRET environment variable.
239
+ */
240
+ signingSecret?: string;
241
+ /**
242
+ * Enable rate limiting for session lookups.
243
+ * Protects against session enumeration attacks.
244
+ * @default false
245
+ */
246
+ enableRateLimiting?: boolean;
247
+ /**
248
+ * Rate limiting configuration.
249
+ * Only used if enableRateLimiting is true.
250
+ */
251
+ rateLimiting?: {
252
+ /** Time window in milliseconds. @default 60000 */
253
+ windowMs?: number;
254
+ /** Maximum requests per window. @default 100 */
255
+ maxRequests?: number;
256
+ };
257
+ }
209
258
  export declare const transportProtocolSchema: z.ZodEnum<{
210
259
  "legacy-sse": "legacy-sse";
211
260
  sse: "sse";
@@ -219,8 +268,8 @@ export declare const sseTransportStateSchema: z.ZodObject<{
219
268
  lastPing: z.ZodOptional<z.ZodNumber>;
220
269
  connectionState: z.ZodOptional<z.ZodEnum<{
221
270
  connecting: "connecting";
222
- open: "open";
223
271
  closed: "closed";
272
+ open: "open";
224
273
  }>>;
225
274
  }, z.core.$strip>;
226
275
  export declare const streamableHttpTransportStateSchema: z.ZodObject<{
@@ -246,8 +295,8 @@ export declare const legacySseTransportStateSchema: z.ZodObject<{
246
295
  lastEventId: z.ZodOptional<z.ZodString>;
247
296
  connectionState: z.ZodOptional<z.ZodEnum<{
248
297
  connecting: "connecting";
249
- open: "open";
250
298
  closed: "closed";
299
+ open: "open";
251
300
  }>>;
252
301
  }, z.core.$strip>;
253
302
  export declare const transportStateSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -256,8 +305,8 @@ export declare const transportStateSchema: z.ZodDiscriminatedUnion<[z.ZodObject<
256
305
  lastPing: z.ZodOptional<z.ZodNumber>;
257
306
  connectionState: z.ZodOptional<z.ZodEnum<{
258
307
  connecting: "connecting";
259
- open: "open";
260
308
  closed: "closed";
309
+ open: "open";
261
310
  }>>;
262
311
  }, z.core.$strip>, z.ZodObject<{
263
312
  type: z.ZodLiteral<"streamable-http">;
@@ -279,8 +328,8 @@ export declare const transportStateSchema: z.ZodDiscriminatedUnion<[z.ZodObject<
279
328
  lastEventId: z.ZodOptional<z.ZodString>;
280
329
  connectionState: z.ZodOptional<z.ZodEnum<{
281
330
  connecting: "connecting";
282
- open: "open";
283
331
  closed: "closed";
332
+ open: "open";
284
333
  }>>;
285
334
  }, z.core.$strip>], "type">;
286
335
  export declare const transportSessionSchema: z.ZodObject<{
@@ -303,8 +352,8 @@ export declare const transportSessionSchema: z.ZodObject<{
303
352
  lastPing: z.ZodOptional<z.ZodNumber>;
304
353
  connectionState: z.ZodOptional<z.ZodEnum<{
305
354
  connecting: "connecting";
306
- open: "open";
307
355
  closed: "closed";
356
+ open: "open";
308
357
  }>>;
309
358
  }, z.core.$strip>, z.ZodObject<{
310
359
  type: z.ZodLiteral<"streamable-http">;
@@ -326,8 +375,8 @@ export declare const transportSessionSchema: z.ZodObject<{
326
375
  lastEventId: z.ZodOptional<z.ZodString>;
327
376
  connectionState: z.ZodOptional<z.ZodEnum<{
328
377
  connecting: "connecting";
329
- open: "open";
330
378
  closed: "closed";
379
+ open: "open";
331
380
  }>>;
332
381
  }, z.core.$strip>], "type">>;
333
382
  }, z.core.$strip>;
@@ -345,22 +394,6 @@ export declare const sessionJwtPayloadSchema: z.ZodObject<{
345
394
  iat: z.ZodNumber;
346
395
  exp: z.ZodOptional<z.ZodNumber>;
347
396
  }, z.core.$strip>;
348
- export declare const statelessSessionJwtPayloadSchema: z.ZodObject<{
349
- sid: z.ZodString;
350
- aid: z.ZodString;
351
- proto: z.ZodEnum<{
352
- "legacy-sse": "legacy-sse";
353
- sse: "sse";
354
- "streamable-http": "streamable-http";
355
- "stateful-http": "stateful-http";
356
- "stateless-http": "stateless-http";
357
- }>;
358
- nid: z.ZodString;
359
- iat: z.ZodNumber;
360
- exp: z.ZodOptional<z.ZodNumber>;
361
- state: z.ZodOptional<z.ZodString>;
362
- tokens: z.ZodOptional<z.ZodString>;
363
- }, z.core.$strip>;
364
397
  export declare const encryptedBlobSchema: z.ZodObject<{
365
398
  alg: z.ZodLiteral<"A256GCM">;
366
399
  kid: z.ZodOptional<z.ZodString>;
@@ -391,8 +424,8 @@ export declare const storedSessionSchema: z.ZodObject<{
391
424
  lastPing: z.ZodOptional<z.ZodNumber>;
392
425
  connectionState: z.ZodOptional<z.ZodEnum<{
393
426
  connecting: "connecting";
394
- open: "open";
395
427
  closed: "closed";
428
+ open: "open";
396
429
  }>>;
397
430
  }, z.core.$strip>, z.ZodObject<{
398
431
  type: z.ZodLiteral<"streamable-http">;
@@ -414,8 +447,8 @@ export declare const storedSessionSchema: z.ZodObject<{
414
447
  lastEventId: z.ZodOptional<z.ZodString>;
415
448
  connectionState: z.ZodOptional<z.ZodEnum<{
416
449
  connecting: "connecting";
417
- open: "open";
418
450
  closed: "closed";
451
+ open: "open";
419
452
  }>>;
420
453
  }, z.core.$strip>], "type">>;
421
454
  }, z.core.$strip>;
@@ -431,6 +464,8 @@ export declare const storedSessionSchema: z.ZodObject<{
431
464
  }, z.core.$strip>>>;
432
465
  createdAt: z.ZodNumber;
433
466
  lastAccessedAt: z.ZodNumber;
467
+ initialized: z.ZodOptional<z.ZodBoolean>;
468
+ maxLifetimeAt: z.ZodOptional<z.ZodNumber>;
434
469
  }, z.core.$strip>;
435
470
  export declare const redisConfigSchema: z.ZodObject<{
436
471
  host: z.ZodString;
@@ -441,21 +476,4 @@ export declare const redisConfigSchema: z.ZodObject<{
441
476
  keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
442
477
  defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
443
478
  }, z.core.$strip>;
444
- export declare const sessionStorageConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
445
- mode: z.ZodLiteral<"stateless">;
446
- }, z.core.$strip>, z.ZodObject<{
447
- mode: z.ZodLiteral<"stateful">;
448
- store: z.ZodLiteral<"memory">;
449
- }, z.core.$strip>, z.ZodObject<{
450
- mode: z.ZodLiteral<"stateful">;
451
- store: z.ZodLiteral<"redis">;
452
- config: z.ZodObject<{
453
- host: z.ZodString;
454
- port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
455
- password: z.ZodOptional<z.ZodString>;
456
- db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
457
- tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
458
- keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
459
- defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
460
- }, z.core.$strip>;
461
- }, z.core.$strip>]>;
479
+ //# sourceMappingURL=transport-session.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport-session.types.d.ts","sourceRoot":"","sources":["../../../src/auth/session/transport-session.types.ts"],"names":[],"mappings":"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"}
@@ -9,3 +9,4 @@ export declare function getTokenSignatureFingerprint(token: string): string;
9
9
  /** Best-effort typed user derivation from claims */
10
10
  export declare function deriveTypedUser(claims: Record<string, any>): UserClaim;
11
11
  export declare function extractBearerToken(header?: string): string | undefined;
12
+ //# sourceMappingURL=auth-token.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth-token.utils.d.ts","sourceRoot":"","sources":["../../../../src/auth/session/utils/auth-token.utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,wBAAgB,KAAK,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,CAGxD;AAED;;;;GAIG;AACH,wBAAgB,4BAA4B,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAOlE;AAkBD,oDAAoD;AACpD,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,CAetE;AAED,wBAAgB,kBAAkB,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAItE"}
@@ -38,3 +38,4 @@ export declare function extractSessionFromCookie(cookie?: string): string | unde
38
38
  * @returns true if the session was found and updated, false otherwise
39
39
  */
40
40
  export declare function updateSessionPayload(sessionId: string, updates: Partial<SessionIdPayload>): boolean;
41
+ //# sourceMappingURL=session-id.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"session-id.utils.d.ts","sourceRoot":"","sources":["../../../../src/auth/session/utils/session-id.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,qBAAqB,EAAkB,MAAM,iBAAiB,CAAC;AAG1F,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;AAuB7F,wBAAgB,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,MAAM,CAShD;AAqDD;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG,gBAAgB,GAAG,IAAI,CAe/E;AAiBD;;;;GAIG;AACH,wBAAgB,kBAAkB,CAChC,aAAa,EAAE,MAAM,GAAG,SAAS,EACjC,KAAK,EAAE,MAAM,GACZ;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,gBAAgB,CAAA;CAAE,GAAG,SAAS,CAgCvD;AAED,MAAM,WAAW,oBAAoB;IACnC,8DAA8D;IAC9D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kDAAkD;IAClD,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;CACnD;AAED,wBAAgB,eAAe,CAAC,QAAQ,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,oBAAoB;;;EAwB7G;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,SAAU,GAAG,MAAM,CAGvF;AAED,wBAAgB,wBAAwB,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAI5E;AAED;;;;;;;;GAQG;AACH,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,gBAAgB,CAAC,GAAG,OAAO,CAuBnG"}
@@ -5,3 +5,4 @@ export declare class TinyTtlCache<K, V> {
5
5
  get(k: K): V | undefined;
6
6
  set(k: K, v: V): void;
7
7
  }
8
+ //# sourceMappingURL=tiny-ttl-cache.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tiny-ttl-cache.d.ts","sourceRoot":"","sources":["../../../../src/auth/session/utils/tiny-ttl-cache.ts"],"names":[],"mappings":"AACA,qBAAa,YAAY,CAAC,CAAC,EAAE,CAAC;IAEhB,OAAO,CAAC,QAAQ,CAAC,KAAK;IADlC,OAAO,CAAC,GAAG,CAAuC;gBACrB,KAAK,EAAE,MAAM;IAE1C,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,SAAS;IAUxB,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;CAGf"}
@@ -187,3 +187,4 @@ export interface VaultSensitiveData {
187
187
  /** Pending auth details (URLs, scopes, etc.) */
188
188
  pendingAuths: unknown[];
189
189
  }
190
+ //# sourceMappingURL=vault-encryption.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vault-encryption.d.ts","sourceRoot":"","sources":["../../../src/auth/session/vault-encryption.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAGH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;iBAW9B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,sDAAsD;IACtD,GAAG,EAAE,MAAM,CAAC;IACZ,sEAAsE;IACtE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gCAAgC;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,0BAA0B;IAC1B,GAAG,EAAE,MAAM,CAAC;CACb;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAMD;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;IAChC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;gBAEtB,MAAM,GAAE,qBAA0B;IAM9C;;;;;;;;;OASG;IACH,SAAS,CAAC,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAwBnD;;;;;;;;;;OAUG;IACH,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,wBAAwB,GAAG,MAAM;IAuB3E;;;;;;OAMG;IACH,OAAO,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,aAAa;IA0BtD;;;;;;;OAOG;IACH,OAAO,CAAC,SAAS,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAiCtD;;;;;;OAMG;IACH,aAAa,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,GAAG,EAAE,MAAM,GAAG,aAAa;IAIrD;;;;;;OAMG;IACH,aAAa,CAAC,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,GAAG,CAAC;IAK1D;;;;;OAKG;IACH,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,IAAI,aAAa;CAGlD;AAMD;;;;;;GAMG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;iBAuBpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,sBAAsB;IACtB,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACxC,qBAAqB;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gDAAgD;IAChD,YAAY,EAAE,OAAO,EAAE,CAAC;CACzB"}
@@ -4,9 +4,15 @@
4
4
  * Session store implementation using Vercel KV (edge-compatible REST-based key-value store).
5
5
  * Uses dynamic import to avoid bundling @vercel/kv for non-Vercel deployments.
6
6
  *
7
+ * @warning **Atomicity Limitation**: Vercel KV does not support atomic GET+EXPIRE (GETEX).
8
+ * The `get()` method uses separate GET and PEXPIRE calls, creating a small race window
9
+ * where the session could expire between these two operations. For mission-critical
10
+ * session handling requiring strict atomicity guarantees, consider using Redis directly
11
+ * via `RedisSessionStore`.
12
+ *
7
13
  * @see https://vercel.com/docs/storage/vercel-kv
8
14
  */
9
- import { SessionStore, StoredSession } from './transport-session.types';
15
+ import { SessionStore, StoredSession, SessionSecurityConfig } from './transport-session.types';
10
16
  import { FrontMcpLogger } from '../../common/interfaces/logger.interface';
11
17
  import type { VercelKvProviderOptions } from '../../common/types/options/redis.options';
12
18
  export interface VercelKvSessionConfig {
@@ -30,6 +36,10 @@ export interface VercelKvSessionConfig {
30
36
  * @default 3600000 (1 hour)
31
37
  */
32
38
  defaultTtlMs?: number;
39
+ /**
40
+ * Security hardening options
41
+ */
42
+ security?: SessionSecurityConfig;
33
43
  }
34
44
  /**
35
45
  * Vercel KV-backed session store implementation
@@ -44,6 +54,8 @@ export declare class VercelKvSessionStore implements SessionStore {
44
54
  private readonly defaultTtlMs;
45
55
  private readonly logger?;
46
56
  private readonly config;
57
+ private readonly security;
58
+ private readonly rateLimiter?;
47
59
  constructor(config: VercelKvSessionConfig | VercelKvProviderOptions, logger?: FrontMcpLogger);
48
60
  /**
49
61
  * Connect to Vercel KV
@@ -63,8 +75,16 @@ export declare class VercelKvSessionStore implements SessionStore {
63
75
  *
64
76
  * Note: Vercel KV doesn't support GETEX, so we use GET + PEXPIRE separately.
65
77
  * This is slightly less atomic than Redis GETEX but sufficient for most use cases.
78
+ *
79
+ * @param sessionId - The session ID to look up
80
+ * @param options - Optional parameters for rate limiting
81
+ * @param options.clientIdentifier - Client identifier (e.g., IP address) for rate limiting.
82
+ * When provided, rate limiting is applied per-client to prevent session enumeration.
83
+ * If not provided, falls back to sessionId which provides DoS protection per-session.
66
84
  */
67
- get(sessionId: string): Promise<StoredSession | null>;
85
+ get(sessionId: string, options?: {
86
+ clientIdentifier?: string;
87
+ }): Promise<StoredSession | null>;
68
88
  /**
69
89
  * Store a session with optional TTL
70
90
  */
@@ -94,3 +114,4 @@ export declare class VercelKvSessionStore implements SessionStore {
94
114
  */
95
115
  ping(): Promise<boolean>;
96
116
  }
117
+ //# sourceMappingURL=vercel-kv-session.store.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vercel-kv-session.store.d.ts","sourceRoot":"","sources":["../../../src/auth/session/vercel-kv-session.store.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAGH,OAAO,EAAE,YAAY,EAAE,aAAa,EAAuB,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AACpH,OAAO,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAC;AAC1E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0CAA0C,CAAC;AAcxF,MAAM,WAAW,qBAAqB;IACpC;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,QAAQ,CAAC,EAAE,qBAAqB,CAAC;CAClC;AAED;;;;;GAKG;AACH,qBAAa,oBAAqB,YAAW,YAAY;IACvD,OAAO,CAAC,EAAE,CAA+B;IACzC,OAAO,CAAC,cAAc,CAA8B;IACpD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;IACtC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAiB;IACzC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAwB;IAG/C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAwB;IACjD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAqB;gBAEtC,MAAM,EAAE,qBAAqB,GAAG,uBAAuB,EAAE,MAAM,CAAC,EAAE,cAAc;IAkB5F;;;;OAIG;IACG,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;YAkBhB,SAAS;YAgBT,eAAe;IAQ7B;;;OAGG;IACH,OAAO,CAAC,GAAG;IAOX;;;;;;;;;;;OAWG;IACG,GAAG,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC;IAkHpG;;OAEG;IACG,GAAG,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA8BnF;;OAEG;IACG,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAK9C;;OAEG;IACG,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAKjD;;OAEG;IACH,OAAO,IAAI,MAAM;IAIjB;;;OAGG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAKjC;;;;;OAKG;IACG,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;CAW/B"}
@@ -178,3 +178,4 @@ export declare function wideLayout(content: string, options: BaseLayoutOptions):
178
178
  * Extra wide layout for tool selection pages
179
179
  */
180
180
  export declare function extraWideLayout(content: string, options: BaseLayoutOptions): string;
181
+ //# sourceMappingURL=base-layout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-layout.d.ts","sourceRoot":"","sources":["../../../src/auth/ui/base-layout.ts"],"names":[],"mappings":"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"}
@@ -8,3 +8,4 @@
8
8
  */
9
9
  export { CDN, DEFAULT_THEME, type ThemeColors, type ThemeFonts, type ThemeConfig, type BaseLayoutOptions, baseLayout, createLayout, authLayout, centeredCardLayout, wideLayout, extraWideLayout, escapeHtml, } from './base-layout';
10
10
  export { type AppAuthCard, type ProviderCard, type ToolCard, buildConsentPage, buildIncrementalAuthPage, buildFederatedLoginPage, buildToolConsentPage, buildLoginPage, buildErrorPage, renderToHtml, } from './templates';
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auth/ui/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EACL,GAAG,EACH,aAAa,EACb,KAAK,WAAW,EAChB,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,iBAAiB,EACtB,UAAU,EACV,YAAY,EACZ,UAAU,EACV,kBAAkB,EAClB,UAAU,EACV,eAAe,EACf,UAAU,GACX,MAAM,eAAe,CAAC;AAGvB,OAAO,EAEL,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,QAAQ,EAEb,gBAAgB,EAChB,wBAAwB,EACxB,uBAAuB,EACvB,oBAAoB,EACpB,cAAc,EACd,cAAc,EAEd,YAAY,GACb,MAAM,aAAa,CAAC"}
@@ -132,3 +132,4 @@ export declare function buildErrorPage(params: {
132
132
  export declare function renderToHtml(html: string, _options?: {
133
133
  title?: string;
134
134
  }): string;
135
+ //# sourceMappingURL=templates.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../../src/auth/ui/templates.ts"],"names":[],"mappings":"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"}
@@ -127,3 +127,4 @@ export declare class AudienceValidator {
127
127
  */
128
128
  static fromResourceUrl(resourceUrl: string, options?: Omit<AudienceValidatorOptions, 'expectedAudiences'>): AudienceValidator;
129
129
  }
130
+ //# sourceMappingURL=audience.validator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"audience.validator.d.ts","sourceRoot":"","sources":["../../../src/auth/utils/audience.validator.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,oCAAoC;IACpC,KAAK,EAAE,OAAO,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,wCAAwC;IACxC,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC;;;OAGG;IACH,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAE5B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,wBAAgB,gBAAgB,CAC9B,aAAa,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,EAC5C,OAAO,EAAE,wBAAwB,GAChC,wBAAwB,CAyC1B;AAqCD;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,uBAAuB,CACrC,OAAO,EAAE,wBAAwB,GAChC,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,KAAK,wBAAwB,CAEvE;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,sBAAsB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,EAAE,CAsBpE;AAED;;GAEG;AACH,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,OAAO,CAA2B;gBAE9B,OAAO,GAAE,OAAO,CAAC,wBAAwB,CAAC,GAAG;QAAE,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;KAAO;IAS9F;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,GAAG,wBAAwB;IAI3E;;OAEG;IACH,YAAY,CAAC,GAAG,SAAS,EAAE,MAAM,EAAE,GAAG,IAAI;IAI1C;;OAEG;IACH,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,IAAI;IAIvC;;OAEG;IACH,MAAM,CAAC,eAAe,CACpB,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE,IAAI,CAAC,wBAAwB,EAAE,mBAAmB,CAAM,GAChE,iBAAiB;CAMrB"}
@@ -1,2 +1,3 @@
1
1
  export * from './www-authenticate.utils';
2
2
  export * from './audience.validator';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auth/utils/index.ts"],"names":[],"mappings":"AAEA,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC"}
@@ -95,3 +95,4 @@ export declare function buildInvalidRequestHeader(prmUrl: string, description?:
95
95
  * @returns Parsed header options
96
96
  */
97
97
  export declare function parseWwwAuthenticate(header: string): WwwAuthenticateOptions;
98
+ //# sourceMappingURL=www-authenticate.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"www-authenticate.utils.d.ts","sourceRoot":"","sources":["../../../src/auth/utils/www-authenticate.utils.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,iBAAiB,GAAG,eAAe,GAAG,oBAAoB,CAAC;AAEzF;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;OAGG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE,eAAe,CAAC;IAExB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,GAAE,sBAA2B,GAAG,MAAM,CAwCjF;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,CAIzF;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAI9D;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAMpF;AAED;;GAEG;AACH,wBAAgB,4BAA4B,CAAC,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAOnH;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAMtF;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,MAAM,GAAG,sBAAsB,CAwC3E"}
@@ -13,3 +13,4 @@ type CommonResponseResult = z.infer<typeof RedirectSchema> | z.infer<typeof NotF
13
13
  export declare const commonSuccessResponseHandler: (res: ServerResponse, result: CommonResponseResult) => void;
14
14
  export declare const commonFailResponseHandler: (res: ServerResponse, result: any) => void;
15
15
  export {};
16
+ //# sourceMappingURL=common.schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common.schema.d.ts","sourceRoot":"","sources":["../../src/common/common.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC3C,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc;;;iBAGzB,CAAC;AACH,eAAO,MAAM,cAAc;;;;iBAIzB,CAAC;AAEH,KAAK,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,GAAG,GAAG,CAAC;AAClG,eAAO,MAAM,4BAA4B,GAAI,KAAK,cAAc,EAAE,QAAQ,oBAAoB,SAY7F,CAAC;AAEF,eAAO,MAAM,yBAAyB,GAAI,KAAK,cAAc,EAAE,QAAQ,GAAG,SAGzE,CAAC"}
@@ -5,3 +5,4 @@ import { AdapterMetadata } from '../metadata';
5
5
  */
6
6
  declare function FrontMcpAdapter(providedMetadata: AdapterMetadata): ClassDecorator;
7
7
  export { FrontMcpAdapter, FrontMcpAdapter as Adapter, };
8
+ //# sourceMappingURL=adapter.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adapter.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/adapter.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAE1B,OAAO,EAAE,eAAe,EAAiC,MAAM,aAAa,CAAC;AAE7E;;GAEG;AACH,iBAAS,eAAe,CAAC,gBAAgB,EAAE,eAAe,GAAG,cAAc,CAU1E;AAED,OAAO,EACL,eAAe,EACf,eAAe,IAAI,OAAO,GAC3B,CAAC"}
@@ -0,0 +1,116 @@
1
+ import 'reflect-metadata';
2
+ import { ToolInputType, ToolOutputType, AgentMetadata } from '../metadata';
3
+ import z from 'zod';
4
+ type AgentContextBase = {
5
+ execute: (...args: any[]) => any;
6
+ };
7
+ /**
8
+ * Handler type for function-based agents.
9
+ */
10
+ export type FrontMcpAgentExecuteHandler<InSchema extends ToolInputType, OutSchema extends ToolOutputType, In = AgentInputOf<{
11
+ inputSchema: InSchema;
12
+ }>, Out = AgentOutputOf<{
13
+ outputSchema: OutSchema;
14
+ }>> = (input: In, ctx: AgentContextBase) => Out | Promise<Out>;
15
+ /**
16
+ * Return type for function-based agents created with agent().
17
+ * Contains the handler function and agent metadata symbols.
18
+ */
19
+ export type FrontMcpAgentFunction<InSchema extends ToolInputType = ToolInputType, OutSchema extends ToolOutputType = ToolOutputType> = (() => FrontMcpAgentExecuteHandler<InSchema, OutSchema>) & {};
20
+ /**
21
+ * Function decorator that creates an agent from a handler function.
22
+ *
23
+ * @example
24
+ * ```typescript
25
+ * const researchAgent = agent({
26
+ * name: 'research-agent',
27
+ * inputSchema: { topic: z.string() },
28
+ * llm: { adapter: 'openai', model: 'gpt-4-turbo', apiKey: { env: 'OPENAI_API_KEY' } },
29
+ * })((input, ctx) => {
30
+ * // Agent implementation
31
+ * return { result: 'done' };
32
+ * });
33
+ * ```
34
+ */
35
+ declare function frontMcpAgent<T extends AgentMetadata<InSchema, OutSchema>, InSchema extends ToolInputType = T['inputSchema'] extends ToolInputType ? T['inputSchema'] : ToolInputType, OutSchema extends ToolOutputType = T['outputSchema']>(providedMetadata: T): (handler: FrontMcpAgentExecuteHandler<InSchema, OutSchema>) => FrontMcpAgentFunction<InSchema, OutSchema>;
36
+ export { FrontMcpAgent, FrontMcpAgent as Agent, frontMcpAgent, frontMcpAgent as agent };
37
+ /**
38
+ * This is a modified version following the tool decorator pattern.
39
+ * Provides type inference for agent input/output schemas.
40
+ */
41
+ type __Shape = z.ZodRawShape;
42
+ type __AsZodObj<T> = T extends z.ZodObject<any> ? T : T extends z.ZodRawShape ? z.ZodObject<T> : never;
43
+ /**
44
+ * Infers the input type from an agent's inputSchema.
45
+ */
46
+ export type AgentInputOf<Opt> = Opt extends {
47
+ inputSchema: infer I;
48
+ } ? z.infer<__AsZodObj<I>> : never;
49
+ /**
50
+ * Helper to infer the return type from any Zod schema.
51
+ */
52
+ type __InferZod<S> = S extends z.ZodType ? z.infer<S> : S extends z.ZodRawShape ? z.infer<z.ZodObject<S>> : never;
53
+ /**
54
+ * Infers the output type from a single schema definition.
55
+ */
56
+ type __InferFromSingleSchema<S> = S extends 'string' ? string : S extends 'number' ? number : S extends 'boolean' ? boolean : S extends 'date' ? Date : S extends z.ZodType | z.ZodRawShape ? __InferZod<S> : any;
57
+ /**
58
+ * Infers a tuple/array of output types from an array of schemas.
59
+ */
60
+ type __InferFromArraySchema<A> = A extends readonly any[] ? {
61
+ [K in keyof A]: __InferFromSingleSchema<A[K]>;
62
+ } : never;
63
+ /**
64
+ * Main output type inference for agents.
65
+ * Handles single schemas, arrays of schemas, or no schema.
66
+ */
67
+ export type AgentOutputOf<Opt> = Opt extends {
68
+ outputSchema: infer O;
69
+ } ? O extends readonly any[] ? __InferFromArraySchema<O> : __InferFromSingleSchema<O> : any;
70
+ type __Ctor = (new (...a: any[]) => any) | (abstract new (...a: any[]) => any);
71
+ type __A<C extends __Ctor> = C extends new (...a: infer A) => any ? A : C extends abstract new (...a: infer A) => any ? A : never;
72
+ type __R<C extends __Ctor> = C extends new (...a: any[]) => infer R ? R : C extends abstract new (...a: any[]) => infer R ? R : never;
73
+ type __Param<C extends __Ctor> = __R<C> extends {
74
+ execute: (arg: infer P, ...r: any) => any;
75
+ } ? P : never;
76
+ type __Return<C extends __Ctor> = __R<C> extends {
77
+ execute: (...a: any) => infer R;
78
+ } ? R : never;
79
+ type __Unwrap<T> = T extends Promise<infer U> ? U : T;
80
+ type __IsAny<T> = 0 extends 1 & T ? true : false;
81
+ type __IsBaseClassDefault<P> = P extends Record<string, unknown> ? Record<string, unknown> extends P ? true : false : false;
82
+ type __MustParam<C extends __Ctor, In> = __IsAny<In> extends true ? unknown : __IsAny<__Param<C>> extends true ? {
83
+ 'execute() parameter error': "Parameter type must not be 'any'.";
84
+ expected_input_type: In;
85
+ } : __IsBaseClassDefault<__Param<C>> extends true ? unknown : __Param<C> extends In ? In extends __Param<C> ? unknown : {
86
+ 'execute() parameter error': 'Parameter type is too wide. It must exactly match the input schema.';
87
+ expected_input_type: In;
88
+ actual_parameter_type: __Param<C>;
89
+ } : {
90
+ 'execute() parameter error': 'Parameter type does not match the input schema.';
91
+ expected_input_type: In;
92
+ actual_parameter_type: __Param<C>;
93
+ };
94
+ type __MustReturn<C extends __Ctor, Out> = __IsAny<Out> extends true ? unknown : __Unwrap<__Return<C>> extends Out ? unknown : {
95
+ 'execute() return type error': "The method's return type is not assignable to the expected output schema type.";
96
+ expected_output_type: Out;
97
+ 'actual_return_type (unwrapped)': __Unwrap<__Return<C>>;
98
+ };
99
+ type __Rewrap<C extends __Ctor, In, Out> = C extends abstract new (...a: __A<C>) => __R<C> ? C & (abstract new (...a: __A<C>) => AgentContextBase & __R<C>) : C extends new (...a: __A<C>) => __R<C> ? C & (new (...a: __A<C>) => AgentContextBase & __R<C>) : never;
100
+ type __PrimitiveOutputType = 'string' | 'number' | 'date' | 'boolean' | z.ZodString | z.ZodNumber | z.ZodBoolean | z.ZodBigInt | z.ZodDate;
101
+ type __StructuredOutputType = z.ZodRawShape | z.ZodObject<any> | z.ZodArray<z.ZodType> | z.ZodUnion<[z.ZodObject<any>, ...z.ZodObject<any>[]]> | z.ZodDiscriminatedUnion<z.ZodObject<any>[]>;
102
+ type __AgentSingleOutputType = __PrimitiveOutputType | __StructuredOutputType;
103
+ type __OutputSchema = __AgentSingleOutputType | __AgentSingleOutputType[];
104
+ /**
105
+ * Agent metadata options with type constraints.
106
+ */
107
+ export type AgentMetadataOptions<I extends __Shape, O extends __OutputSchema> = AgentMetadata<I | z.ZodObject<I>, O>;
108
+ declare module '@frontmcp/sdk' {
109
+ function Agent<I extends __Shape, O extends __OutputSchema, T extends AgentMetadataOptions<I, O> & {
110
+ outputSchema: any;
111
+ }>(opts: T): <C extends __Ctor>(cls: C & __MustParam<C, AgentInputOf<T>> & __MustReturn<C, AgentOutputOf<T>>) => __Rewrap<C, AgentInputOf<T>, AgentOutputOf<T>>;
112
+ function Agent<I extends __Shape, T extends AgentMetadataOptions<I, any> & {
113
+ outputSchema?: never;
114
+ }>(opts: T): <C extends __Ctor>(cls: C & __MustParam<C, AgentInputOf<T>> & __MustReturn<C, AgentOutputOf<T>>) => __Rewrap<C, AgentInputOf<T>, AgentOutputOf<T>>;
115
+ }
116
+ //# sourceMappingURL=agent.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agent.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/agent.decorator.ts"],"names":[],"mappings":"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"}
@@ -5,3 +5,4 @@ import { LocalAppMetadata } from '../metadata';
5
5
  */
6
6
  declare function FrontMcpApp(providedMetadata: LocalAppMetadata): ClassDecorator;
7
7
  export { FrontMcpApp, FrontMcpApp as App, };
8
+ //# sourceMappingURL=app.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/app.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAE1B,OAAO,EAAE,gBAAgB,EAAkC,MAAM,aAAa,CAAC;AAE/E;;GAEG;AACH,iBAAS,WAAW,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,cAAc,CAkCvE;AAED,OAAO,EACL,WAAW,EACX,WAAW,IAAI,GAAG,GACnB,CAAC"}
@@ -5,3 +5,4 @@ import { AuthProviderMetadata } from '../metadata';
5
5
  */
6
6
  declare function FrontMcpAuthProvider(providedMetadata: AuthProviderMetadata): ClassDecorator;
7
7
  export { FrontMcpAuthProvider, FrontMcpAuthProvider as AuthProvider, };
8
+ //# sourceMappingURL=auth-provider.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth-provider.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/auth-provider.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAE1B,OAAO,EAAE,oBAAoB,EAAsC,MAAM,aAAa,CAAC;AAEvF;;GAEG;AACH,iBAAS,oBAAoB,CAAC,gBAAgB,EAAE,oBAAoB,GAAG,cAAc,CAUpF;AAED,OAAO,EACL,oBAAoB,EACpB,oBAAoB,IAAI,YAAY,GACrC,CAAC"}
@@ -129,3 +129,4 @@ export declare class PendingMetadataRegistry<T> {
129
129
  * Creates a class decorator that works with both legacy TypeScript and TC39 Stage 3 decorators.
130
130
  */
131
131
  export declare function createDualModeClassDecorator<TOptions>(handler: (ctor: Function, options: TOptions, context?: TC39ClassContext) => Function | void): (options: TOptions) => ClassDecorator;
132
+ //# sourceMappingURL=decorator-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decorator-utils.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/decorator-utils.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AAEH;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,cAAc,CAAC,WAAW,EAAE,MAAM,IAAI,GAAG,IAAI,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;IACvB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,cAAc,CAAC,WAAW,EAAE,MAAM,IAAI,GAAG,IAAI,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,0CAA0C;IAC1C,MAAM,EAAE,QAAQ,CAAC;IACjB,4BAA4B;IAC5B,UAAU,EAAE,MAAM,CAAC;IACnB,sCAAsC;IACtC,QAAQ,EAAE,OAAO,CAAC;IAClB,qBAAqB;IACrB,IAAI,EAAE,QAAQ,GAAG,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB,CAAC,QAAQ,EAAE,SAAS;IACxD;;OAEG;IACH,cAAc,EAAE,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,EAAE,QAAQ,KAAK,SAAS,CAAC;IAE5E;;;OAGG;IACH,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,KAAK,IAAI,CAAC;IAEnE;;;OAGG;IACH,oBAAoB,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,KAAK,IAAI,CAAC;CACvE;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,iBAAiB,CAE1E;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,gBAAgB,CAExE;AAED;;;;;GAKG;AACH,wBAAgB,6BAA6B,CAAC,QAAQ,EAAE,SAAS,EAC/D,MAAM,EAAE,qBAAqB,CAAC,QAAQ,EAAE,SAAS,CAAC,GACjD,CAAC,OAAO,EAAE,QAAQ,KAAK,eAAe,CAiDxC;AAED;;;GAGG;AACH,qBAAa,uBAAuB,CAAC,CAAC;IACpC,OAAO,CAAC,OAAO,CAAgC;IAE/C;;OAEG;IACH,KAAK,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,GAAG,IAAI;IAM1C;;OAEG;IACH,OAAO,CAAC,MAAM,EAAE,QAAQ,GAAG,CAAC,EAAE;IAM9B;;OAEG;IACH,eAAe,CAAC,IAAI,EAAE,QAAQ,EAAE,OAAO,UAAO,GAAG,CAAC,EAAE;CAsCrD;AAED;;GAEG;AACH,wBAAgB,4BAA4B,CAAC,QAAQ,EACnD,OAAO,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE,gBAAgB,KAAK,QAAQ,GAAG,IAAI,GAC1F,CAAC,OAAO,EAAE,QAAQ,KAAK,cAAc,CAYvC"}
@@ -4,3 +4,4 @@ import { FlowMetadata, FlowName } from '../metadata';
4
4
  */
5
5
  declare function FrontMcpFlow<Name extends FlowName>(providedMetadata: FlowMetadata<Name>): ClassDecorator;
6
6
  export { FrontMcpFlow, FrontMcpFlow as Flow, };
7
+ //# sourceMappingURL=flow.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flow.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/flow.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,QAAQ,EAA8B,MAAM,aAAa,CAAC;AAKjF;;GAEG;AACH,iBAAS,YAAY,CAAC,IAAI,SAAS,QAAQ,EAAE,gBAAgB,EAAE,YAAY,CAAC,IAAI,CAAC,GAAG,cAAc,CAWjG;AAED,OAAO,EACL,YAAY,EACZ,YAAY,IAAI,IAAI,GACrB,CAAA"}
@@ -4,3 +4,4 @@ import { FrontMcpMetadata } from '../metadata';
4
4
  * Decorator that marks a class as a FrontMcp Server and provides metadata
5
5
  */
6
6
  export declare function FrontMcp(providedMetadata: FrontMcpMetadata): ClassDecorator;
7
+ //# sourceMappingURL=front-mcp.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"front-mcp.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/front-mcp.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAE1B,OAAO,EAAE,gBAAgB,EAA0B,MAAM,aAAa,CAAC;AAqCvE;;GAEG;AACH,wBAAgB,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,cAAc,CA6D3E"}
@@ -66,3 +66,4 @@ export declare function FlowHooksOf<Name extends FlowName>(name: Name): {
66
66
  Did: (stage: ExtendFlows[Name]["stage"], opts?: HookOptions<ExtendFlows[Name]["ctx"]>) => MethodDecorator;
67
67
  Around: (stage: ExtendFlows[Name]["stage"], opts?: HookOptions<ExtendFlows[Name]["ctx"]>) => MethodDecorator;
68
68
  };
69
+ //# sourceMappingURL=hook.decorator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hook.decorator.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/hook.decorator.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAiB,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAmBjF;;;GAGG;AACH,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,QAAQ,GAAG,YAAY,EAAE,CAE9E;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,YAAY,GAAG,IAAI,CAElF;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,QAAQ,GAAG,YAAY,EAAE,CAExE;AAkED;;;;;;;;;;;GAWG;AACH,wBAAgB,WAAW,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAI1C,iCAAQ,EAAE,OAAM,WAAW,0BAAU,qBAGvD;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAIzC,iCAAQ,EAAE,OAAM,WAAW,0BAAU,qBAGvD;AAED;;GAEG;AACH,wBAAgB,SAAS,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAIxC,iCAAQ,EAAE,OAAM,WAAW,0BAAU,qBAGvD;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI,IAI3C,iCAAQ,EAAE,OAAM,WAAW,0BAAU,qBAGvD;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,WAAW,CAAC,IAAI,SAAS,QAAQ,EAAE,IAAI,EAAE,IAAI;;;;;EAO5D"}
@@ -10,3 +10,5 @@ export * from './tool.decorator';
10
10
  export * from './resource.decorator';
11
11
  export * from './prompt.decorator';
12
12
  export * from './logger.decorator';
13
+ export * from './agent.decorator';
14
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/decorators/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC"}