@frontmcp/sdk 0.6.3 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +1 -0
  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 +1 -0
  142. package/auth/session/redis-session.store.d.ts.map +1 -0
  143. package/auth/session/session-crypto.d.ts +1 -0
  144. package/auth/session/session-crypto.d.ts.map +1 -0
  145. package/auth/session/session-rate-limiter.d.ts +1 -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 +9 -8
  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 +1 -0
  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 +2 -1
  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 +5 -4
  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 +4 -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 +4 -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 +13968 -7053
  510. package/esm/package.json +12 -12
  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 +14208 -7223
  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 +12 -12
  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 +1 -0
  704. package/transport/adapters/sse-transport.d.ts.map +1 -0
  705. package/transport/adapters/streamable-http-transport.d.ts +27 -0
  706. package/transport/adapters/streamable-http-transport.d.ts.map +1 -0
  707. package/transport/adapters/transport.local.adapter.d.ts +12 -0
  708. package/transport/adapters/transport.local.adapter.d.ts.map +1 -0
  709. package/transport/adapters/transport.sse.adapter.d.ts +1 -0
  710. package/transport/adapters/transport.sse.adapter.d.ts.map +1 -0
  711. package/transport/adapters/transport.streamable-http.adapter.d.ts +1 -0
  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 +1 -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 +1 -0
  760. package/transport/transport.local.d.ts.map +1 -0
  761. package/transport/transport.registry.d.ts +1 -0
  762. package/transport/transport.registry.d.ts.map +1 -0
  763. package/transport/transport.remote.d.ts +1 -0
  764. package/transport/transport.remote.d.ts.map +1 -0
  765. package/transport/transport.types.d.ts +2 -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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.sse.adapter.d.ts","sourceRoot":"","sources":["../../../src/transport/adapters/transport.sse.adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,EAAE,8BAA8B,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAC/D,OAAO,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AAG9B,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,qBAAa,mBAAoB,SAAQ,qBAAqB,CAAC,8BAA8B,CAAC;IAC5F,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,OAAO,CAAC,0BAA0B;IAQzB,eAAe,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,cAAc,GAAG,8BAA8B;IAUhG;;;;;;;OAOG;IACH,0BAA0B,CACxB,SAAS,EAAE,MAAM,EACjB,GAAG,EAAE,cAAc,EACnB,WAAW,CAAC,EAAE,MAAM,GACnB,8BAA8B;IAWjC,UAAU,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAMzE,aAAa,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAgBlF,iBAAiB,CAAC,CAAC,SAAS,OAAO,EACvC,gBAAgB,EAAE,SAAS,EAC3B,OAAO,EAAE,MAAM,EACf,eAAe,EAAE,CAAC,GACjB,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;CAsBjC"}
@@ -27,3 +27,4 @@ export declare class TransportStreamableHttpAdapter extends LocalTransportAdapte
27
27
  */
28
28
  markAsInitialized(): void;
29
29
  }
30
+ //# sourceMappingURL=transport.streamable-http.adapter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.streamable-http.adapter.d.ts","sourceRoot":"","sources":["../../../src/transport/adapters/transport.streamable-http.adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACtE,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAC/D,OAAO,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AAG9B,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,yCAAyC,EAAE,MAAM,6BAA6B,CAAC;AAExF;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,GACpC,eAAe,aAAa,EAC5B,WAAW,MAAM,KAChB,CAAC,MAAM,MAAM,CAAC,GAAG,SAEnB,CAAC;AAEF,qBAAa,8BAA+B,SAAQ,qBAAqB,CAAC,yCAAyC,CAAC;IACzG,eAAe,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,cAAc,GAAG,yCAAyC;IAuBhH,UAAU,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAwCzE,aAAa,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAmBlF,iBAAiB,CAAC,CAAC,SAAS,OAAO,EACvC,gBAAgB,EAAE,SAAS,EAC3B,OAAO,EAAE,MAAM,EACf,eAAe,EAAE,CAAC,GACjB,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;IAuBhC;;;;;;;OAOG;IACM,iBAAiB,IAAI,IAAI;CAOnC"}
@@ -56,3 +56,4 @@ export default class HandleSseFlow extends FlowBase<typeof name> {
56
56
  onMessage(): Promise<void>;
57
57
  }
58
58
  export {};
59
+ //# sourceMappingURL=handle.sse.flow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"handle.sse.flow.d.ts","sourceRoot":"","sources":["../../../src/transport/flows/handle.sse.flow.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EACf,cAAc,EACd,gBAAgB,EAEhB,QAAQ,EAST,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,IAAI;;;;;CAKoB,CAAC;AAoBtC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAItB,CAAC;AAEH,QAAA,MAAM,IAAI,EAAG,mBAA4B,CAAC;AAG1C,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,WAAW;QACnB,mBAAmB,EAAE,cAAc,CACjC,aAAa,EACb,OAAO,IAAI,EACX,OAAO,eAAe,EACtB,OAAO,gBAAgB,EACvB,OAAO,WAAW,CACnB,CAAC;KACH;CACF;AAoBD,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,QAAQ,CAAC,OAAO,IAAI,CAAC;IAExD,UAAU;IAiEV,MAAM;IAkBN,YAAY;IAaZ,cAAc;IAad,SAAS;CAqChB"}
@@ -27,3 +27,4 @@ export default class HandleStatelessHttpFlow extends FlowBase<typeof name> {
27
27
  handleRequest(): Promise<void>;
28
28
  }
29
29
  export {};
30
+ //# sourceMappingURL=handle.stateless-http.flow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"handle.stateless-http.flow.d.ts","sourceRoot":"","sources":["../../../src/transport/flows/handle.stateless-http.flow.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EACf,cAAc,EACd,gBAAgB,EAEhB,QAAQ,EAKT,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,IAAI;;;;;CAKoB,CAAC;AAEtC,eAAO,MAAM,WAAW;;;;;;;iBAItB,CAAC;AAEH,QAAA,MAAM,IAAI,EAAG,uBAAgC,CAAC;AAG9C,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,WAAW;QACnB,uBAAuB,EAAE,cAAc,CACrC,uBAAuB,EACvB,OAAO,IAAI,EACX,OAAO,eAAe,EACtB,OAAO,gBAAgB,EACvB,OAAO,WAAW,CACnB,CAAC;KACH;CACF;AASD,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,QAAQ,CAAC,OAAO,IAAI,CAAC;IACxE,IAAI,0BAAQ;IAGN,UAAU;IAiBV,MAAM;IAiBN,aAAa;CA2BpB"}
@@ -59,3 +59,4 @@ export default class HandleStreamableHttpFlow extends FlowBase<typeof name> {
59
59
  onSseListener(): Promise<void>;
60
60
  }
61
61
  export {};
62
+ //# sourceMappingURL=handle.streamable-http.flow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"handle.streamable-http.flow.d.ts","sourceRoot":"","sources":["../../../src/transport/flows/handle.streamable-http.flow.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EACf,cAAc,EACd,gBAAgB,EAEhB,QAAQ,EAQT,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,IAAI;;;;;CAKoB,CAAC;AAoBtC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAItB,CAAC;AAEH,QAAA,MAAM,IAAI,EAAG,wBAAiC,CAAC;AAG/C,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,WAAW;QACnB,wBAAwB,EAAE,cAAc,CACtC,wBAAwB,EACxB,OAAO,IAAI,EACX,OAAO,eAAe,EACtB,OAAO,gBAAgB,EACvB,OAAO,WAAW,CACnB,CAAC;KACH;CACF;AASD,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,QAAQ,CAAC,OAAO,IAAI,CAAC;IACzE,IAAI,2BAAQ;IAGN,UAAU;IA4DV,MAAM;IA8BN,YAAY;IAmCZ,cAAc;IAOd,SAAS;IAsGT,aAAa;CA6CpB"}
@@ -19,3 +19,4 @@ export { RecreateableStreamableHTTPServerTransport, StreamableHTTPServerTranspor
19
19
  export { RecreateableSSEServerTransport, RecreateableSSEServerTransportOptions } from './adapters/sse-transport';
20
20
  export { SSEServerTransport, SSEServerTransportOptions } from './legacy/legacy.sse.tranporter';
21
21
  export { SupportedTransport } from './adapters/transport.local.adapter';
22
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/transport/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAGH,OAAO,EACL,yCAAyC,EACzC,oCAAoC,GACrC,MAAM,sCAAsC,CAAC;AAE9C,OAAO,EAAE,8BAA8B,EAAE,qCAAqC,EAAE,MAAM,0BAA0B,CAAC;AAGjH,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAG/F,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC"}
@@ -82,3 +82,4 @@ export declare class SSEServerTransport implements Transport {
82
82
  */
83
83
  get lastEventId(): number;
84
84
  }
85
+ //# sourceMappingURL=legacy.sse.tranporter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legacy.sse.tranporter.d.ts","sourceRoot":"","sources":["../../../src/transport/legacy/legacy.sse.tranporter.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAC;AAC1E,OAAO,EAAE,cAAc,EAAwB,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAC5G,OAAO,EAAE,QAAQ,EAAE,MAAM,gDAAgD,CAAC;AAI1E;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IAExB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAE1B;;;OAGG;IACH,4BAA4B,CAAC,EAAE,OAAO,CAAC;IAEvC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,qBAAa,kBAAmB,YAAW,SAAS;IAatC,OAAO,CAAC,SAAS;IAAU,OAAO,CAAC,GAAG;IAZlD,OAAO,CAAC,YAAY,CAAC,CAAiB;IACtC,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,QAAQ,CAA4B;IAC5C,oFAAoF;IACpF,OAAO,CAAC,eAAe,CAAK;IAC5B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IACjC,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,EAAE,KAAK,CAAC,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAExE;;OAEG;gBACiB,SAAS,EAAE,MAAM,EAAU,GAAG,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,yBAAyB;IAKvG;;;OAGG;IACH,OAAO,CAAC,sBAAsB;IAyB9B;;;;OAIG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAkC5B;;;;OAIG;IACG,iBAAiB,CACrB,GAAG,EAAE,eAAe,GAAG;QAAE,IAAI,CAAC,EAAE,QAAQ,CAAA;KAAE,EAC1C,GAAG,EAAE,cAAc,EACnB,UAAU,CAAC,EAAE,OAAO,GACnB,OAAO,CAAC,IAAI,CAAC;IA+ChB;;OAEG;IACG,aAAa,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAYxE,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAMtB,IAAI,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAUlD;;;;OAIG;IACH,IAAI,SAAS,IAAI,MAAM,CAEtB;IAED;;;;;OAKG;IACH,IAAI,WAAW,IAAI,MAAM,CAExB;CACF"}
@@ -1,3 +1,4 @@
1
1
  import { InitializedNotification, Result } from '@modelcontextprotocol/sdk/types.js';
2
2
  import { McpHandler, McpHandlerOptions } from './mcp-handlers.types';
3
3
  export default function initializedNotificationHandler(options: McpHandlerOptions): McpHandler<InitializedNotification, Result>;
4
+ //# sourceMappingURL=Initialized-notification.hanlder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Initialized-notification.hanlder.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/Initialized-notification.hanlder.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,uBAAuB,EACvB,MAAM,EACP,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,8BAA8B,CACpD,OAAO,EAAE,iBAAiB,GACzB,UAAU,CAAC,uBAAuB,EAAE,MAAM,CAAC,CAQ7C"}
@@ -1,3 +1,4 @@
1
1
  import { CallToolRequest, CallToolResult } from '@modelcontextprotocol/sdk/types.js';
2
2
  import { McpHandler, McpHandlerOptions } from './mcp-handlers.types';
3
3
  export default function callToolRequestHandler({ scope, }: McpHandlerOptions): McpHandler<CallToolRequest, CallToolResult>;
4
+ //# sourceMappingURL=call-tool-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"call-tool-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/call-tool-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EAEf,cAAc,EAEf,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAIrE,MAAM,CAAC,OAAO,UAAU,sBAAsB,CAAC,EAC7C,KAAK,GACN,EAAE,iBAAiB,GAAG,UAAU,CAAC,eAAe,EAAE,cAAc,CAAC,CA0CjE"}
@@ -82,3 +82,4 @@ export default function CompleteRequestHandler({ scope }: McpHandlerOptions): {
82
82
  } | undefined;
83
83
  }>;
84
84
  };
85
+ //# sourceMappingURL=complete-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"complete-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/complete-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,eAAe,EAAkB,MAAM,oCAAoC,CAAC;AAC5G,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,sBAAsB,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;uBAGpD,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAErC"}
@@ -126,3 +126,4 @@ export default function GetPromptRequestHandler({ scope }: McpHandlerOptions): {
126
126
  description?: string | undefined;
127
127
  }>;
128
128
  };
129
+ //# sourceMappingURL=get-prompt-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-prompt-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/get-prompt-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,gBAAgB,EAAmB,MAAM,oCAAoC,CAAC;AAC/G,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,uBAAuB,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;;uBAGrD,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEtC"}
@@ -934,7 +934,7 @@ export declare function createMcpHandlers(options: McpHandlerOptions): (import("
934
934
  handler: (request: import("@modelcontextprotocol/sdk/types.js").SetLevelRequest, ctx: import("./mcp-handlers.types").McpRequestHandler<{
935
935
  method: "logging/setLevel";
936
936
  params: {
937
- level: "error" | "debug" | "info" | "warning" | "notice" | "critical" | "alert" | "emergency";
937
+ level: "error" | "debug" | "info" | "notice" | "warning" | "critical" | "alert" | "emergency";
938
938
  _meta?: {
939
939
  [x: string]: unknown;
940
940
  progressToken?: string | number | undefined;
@@ -989,3 +989,4 @@ export declare function createMcpHandlers(options: McpHandlerOptions): (import("
989
989
  } | undefined;
990
990
  } | undefined;
991
991
  }>)[];
992
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAgBzD,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAuC3D"}
@@ -1,3 +1,4 @@
1
1
  import { InitializeRequest, InitializeResult } from '@modelcontextprotocol/sdk/types.js';
2
2
  import { McpHandler, McpHandlerOptions } from './mcp-handlers.types';
3
3
  export default function initializeRequestHandler({ serverOptions, scope, }: McpHandlerOptions): McpHandler<InitializeRequest, InitializeResult>;
4
+ //# sourceMappingURL=initialize-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"initialize-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/initialize-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAElH,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAkBrE,MAAM,CAAC,OAAO,UAAU,wBAAwB,CAAC,EAC/C,aAAa,EACb,KAAK,GACN,EAAE,iBAAiB,GAAG,UAAU,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,CAyGrE"}
@@ -68,3 +68,4 @@ export default function ListPromptsRequestHandler({ scope }: McpHandlerOptions):
68
68
  nextCursor?: string | undefined;
69
69
  }>;
70
70
  };
71
+ //# sourceMappingURL=list-prompts-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-prompts-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/list-prompts-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,kBAAkB,EAAqB,MAAM,oCAAoC,CAAC;AACrH,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,yBAAyB,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAGvD,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExC"}
@@ -70,3 +70,4 @@ export default function listResourceTemplatesRequestHandler({ scope }: McpHandle
70
70
  nextCursor?: string | undefined;
71
71
  }>;
72
72
  };
73
+ //# sourceMappingURL=list-resource-templates-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-resource-templates-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/list-resource-templates-request.handler.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,4BAA4B,EAE7B,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,mCAAmC,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAGjE,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGlD"}
@@ -70,3 +70,4 @@ export default function listResourcesRequestHandler({ scope }: McpHandlerOptions
70
70
  nextCursor?: string | undefined;
71
71
  }>;
72
72
  };
73
+ //# sourceMappingURL=list-resources-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-resources-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/list-resources-request.handler.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,oBAAoB,EAErB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,2BAA2B,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAGzD,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1C"}
@@ -83,3 +83,4 @@ export default function ListToolsRequestHandler({ scope, }: McpHandlerOptions):
83
83
  nextCursor?: string | undefined;
84
84
  }>;
85
85
  };
86
+ //# sourceMappingURL=list-tools-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-tools-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/list-tools-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,gBAAgB,EAAmB,MAAM,oCAAoC,CAAC;AAC9G,OAAO,EAAa,iBAAiB,EAAC,MAAM,sBAAsB,CAAC;AAEnE,MAAM,CAAC,OAAO,UAAU,uBAAuB,CAAC,EAAC,KAAK,GAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAGpD,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEtC"}
@@ -30,7 +30,7 @@ export default function LoggingSetLevelRequestHandler({ scope }: McpHandlerOptio
30
30
  handler: (request: SetLevelRequest, ctx: import("./mcp-handlers.types").McpRequestHandler<{
31
31
  method: "logging/setLevel";
32
32
  params: {
33
- level: "error" | "debug" | "info" | "warning" | "notice" | "critical" | "alert" | "emergency";
33
+ level: "error" | "debug" | "info" | "notice" | "warning" | "critical" | "alert" | "emergency";
34
34
  _meta?: {
35
35
  [x: string]: unknown;
36
36
  progressToken?: string | number | undefined;
@@ -53,3 +53,4 @@ export default function LoggingSetLevelRequestHandler({ scope }: McpHandlerOptio
53
53
  } | undefined;
54
54
  }>) => Promise<EmptyResult>;
55
55
  };
56
+ //# sourceMappingURL=logging-set-level-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logging-set-level-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/logging-set-level-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,eAAe,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AACzG,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE;;;;GAIG;AACH,MAAM,CAAC,OAAO,UAAU,6BAA6B,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;uBAGrD,eAAe;;;;;;;;;;;;;;;;;;;;;;;;WAAQ,OAAO,CAAC,WAAW,CAAC;EAuBvE"}
@@ -31,3 +31,4 @@ export type McpRequestHandler<SendRequestT extends Request, SendNotificationT ex
31
31
  };
32
32
  };
33
33
  export {};
34
+ //# sourceMappingURL=mcp-handlers.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mcp-handlers.types.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/mcp-handlers.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,OAAO,EAAc,MAAM,KAAK,CAAC;AAC7C,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,oCAAoC,CAAC;AACnF,OAAO,EAAE,mBAAmB,EAAE,MAAM,8CAA8C,CAAC;AACnF,OAAO,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAC1E,OAAO,EAAE,QAAQ,EAAE,MAAM,gDAAgD,CAAC;AAC1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,KAAK,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;AACvE,KAAK,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GACjC,CAAC,GACD,CAAC,SAAS,KAAK,CAAC,MAAM,CAAC,CAAC,GACxB,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACjB,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,CAAC,GACtB,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACf,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,GAC/B,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,GAC3B,CAAC,SAAS,MAAM,GAChB;KACG,CAAC,IAAI,MAAM,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAC9B,GACD,CAAC,CAAC;AACN,KAAK,KAAK,CAAC,MAAM,SAAS,OAAO,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;AAE9D,MAAM,WAAW,UAAU,CACzB,cAAc,SAAS,OAAO,GAAG,OAAO,EACxC,aAAa,SAAS,MAAM,GAAG,MAAM,EACrC,EAAE,SAAS,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,EAC9C,GAAG,SAAS,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,EAC/C,mBAAmB,SAAS,YAAY,GAAG,YAAY;IAEvD,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,OAAO,CAAC;IACvC,aAAa,EAAE,EAAE,CAAC;IAClB,cAAc,CAAC,EAAE,GAAG,CAAC;IAErB,OAAO,EAAE,CACP,OAAO,EAAE,cAAc,EACvB,GAAG,EAAE,iBAAiB,CAAC,cAAc,EAAE,mBAAmB,CAAC,KACxD,OAAO,CAAC,aAAa,CAAC,GAAG,aAAa,CAAC;CAC7C;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,KAAK,CAAC;IACb,aAAa,EAAE,aAAa,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,iBAAiB,CAC3B,YAAY,SAAS,OAAO,EAC5B,iBAAiB,SAAS,YAAY,IACpC,mBAAmB,CAAC,YAAY,EAAE,iBAAiB,CAAC,GAAG;IACzD,QAAQ,CAAC,EAAE,QAAQ,GAAG;QACpB,KAAK,CAAC,EAAE;YACN,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;YACvB,SAAS,EAAE,gBAAgB,CAAC;YAC5B,WAAW,EAAE,aAAa,CAAC;SAC5B,CAAC;KACH,CAAC;CACH,CAAC"}
@@ -59,3 +59,4 @@ export default function readResourceRequestHandler({ scope }: McpHandlerOptions)
59
59
  } | undefined;
60
60
  }>;
61
61
  };
62
+ //# sourceMappingURL=read-resource-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"read-resource-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/read-resource-request.handler.ts"],"names":[],"mappings":"AAEA,OAAO,EAA6B,mBAAmB,EAAsB,MAAM,oCAAoC,CAAC;AACxH,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,0BAA0B,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAGxD,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEzC"}
@@ -9,3 +9,4 @@ import type { RootsListChangedNotification } from '@modelcontextprotocol/sdk/typ
9
9
  * server should invalidate any cached roots and optionally re-fetch them.
10
10
  */
11
11
  export default function rootsListChangedNotificationHandler({ scope, }: McpHandlerOptions): McpHandler<RootsListChangedNotification, Result>;
12
+ //# sourceMappingURL=roots-list-changed-notification.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roots-list-changed-notification.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/roots-list-changed-notification.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,MAAM,EAAE,MAAM,oCAAoC,CAAC;AAChG,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAEvF;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,mCAAmC,CAAC,EAC1D,KAAK,GACN,EAAE,iBAAiB,GAAG,UAAU,CAAC,4BAA4B,EAAE,MAAM,CAAC,CAatE"}
@@ -44,3 +44,4 @@ export default function SubscribeRequestHandler({ scope }: McpHandlerOptions): {
44
44
  } | undefined;
45
45
  }>) => Promise<EmptyResult>;
46
46
  };
47
+ //# sourceMappingURL=subscribe-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"subscribe-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/subscribe-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,gBAAgB,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAC3G,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE;;;;GAIG;AACH,MAAM,CAAC,OAAO,UAAU,uBAAuB,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAG/C,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;WAAQ,OAAO,CAAC,WAAW,CAAC;EAuBxE"}
@@ -44,3 +44,4 @@ export default function UnsubscribeRequestHandler({ scope }: McpHandlerOptions):
44
44
  } | undefined;
45
45
  }>) => Promise<EmptyResult>;
46
46
  };
47
+ //# sourceMappingURL=unsubscribe-request.handler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unsubscribe-request.handler.d.ts","sourceRoot":"","sources":["../../../src/transport/mcp-handlers/unsubscribe-request.handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,kBAAkB,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAC/G,OAAO,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAErE;;;;GAIG;AACH,MAAM,CAAC,OAAO,UAAU,yBAAyB,CAAC,EAAE,KAAK,EAAE,EAAE,iBAAiB;;;;;;;;;;;;;uBAGjD,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;WAAQ,OAAO,CAAC,WAAW,CAAC;EAyB1E"}
@@ -2,3 +2,4 @@ import { JSONRPCError, JSONRPCMessage, RequestId } from '@modelcontextprotocol/s
2
2
  export declare const noValidSessionError: () => JSONRPCError;
3
3
  export declare const rpcError: (message: string, requestId?: RequestId | null) => JSONRPCError;
4
4
  export declare const rpcRequest: (requestId: RequestId, method: string, params: any) => JSONRPCMessage;
5
+ //# sourceMappingURL=transport.error.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.error.d.ts","sourceRoot":"","sources":["../../src/transport/transport.error.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAK7F,eAAO,MAAM,mBAAmB,QAAO,YAIrC,CAAC;AAEH,eAAO,MAAM,QAAQ,GAAI,SAAS,MAAM,EAAE,YAAY,SAAS,GAAG,IAAI,KAAG,YAIvE,CAAC;AAEH,eAAO,MAAM,UAAU,GAAI,WAAW,SAAS,EAAE,QAAQ,MAAM,EAAE,QAAQ,GAAG,KAAG,cAK7E,CAAC"}
@@ -8,3 +8,4 @@ export declare class InMemoryEventStore implements EventStore {
8
8
  send: (eventId: EventId, message: JSONRPCMessage) => Promise<void>;
9
9
  }): Promise<StreamId>;
10
10
  }
11
+ //# sourceMappingURL=transport.event-store.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.event-store.d.ts","sourceRoot":"","sources":["../../src/transport/transport.event-store.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,oDAAoD,CAAC;AAIxG,qBAAa,kBAAmB,YAAW,UAAU;IACnD,OAAO,CAAC,OAAO,CAAiC;IAChD,OAAO,CAAC,KAAK,CAAyD;IAEhE,UAAU,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,OAAO,CAAC;IAUzE,iBAAiB,CACrB,WAAW,EAAE,OAAO,EACpB,EAAE,IAAI,EAAE,EAAE;QAAE,IAAI,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,cAAc,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;KAAE,GAC/E,OAAO,CAAC,QAAQ,CAAC;CAiBrB"}
@@ -21,3 +21,4 @@ export declare class LocalTransporter implements Transporter {
21
21
  markAsInitialized(): void;
22
22
  destroy(reason: string): Promise<void>;
23
23
  }
24
+ //# sourceMappingURL=transport.local.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.local.d.ts","sourceRoot":"","sources":["../../src/transport/transport.local.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AAKpE,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEjC,qBAAa,gBAAiB,YAAW,WAAW;IAOgB,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC;IAN7F,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IAC7B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAE3B,OAAO,CAAC,OAAO,CAA4C;gBAE/C,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,cAAc,EAAmB,SAAS,CAAC,GAAE,MAAM,IAAI,aAAA;IAuBzG,IAAI,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAIpC,aAAa,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAUlF,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAItB,UAAU,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAWrF;;;;OAIG;IACH,iBAAiB,IAAI,IAAI;IAInB,OAAO,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAO7C"}
@@ -125,3 +125,4 @@ export declare class TransportService {
125
125
  private insertLocal;
126
126
  private evictLocal;
127
127
  }
128
+ //# sourceMappingURL=transport.registry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.registry.d.ts","sourceRoot":"","sources":["../../src/transport/transport.registry.ts"],"names":[],"mappings":"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"}
@@ -14,3 +14,4 @@ export declare class RemoteTransporter implements Transporter {
14
14
  destroy(_reason?: string): Promise<void>;
15
15
  markAsInitialized(): void;
16
16
  }
17
+ //# sourceMappingURL=transport.remote.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.remote.d.ts","sourceRoot":"","sources":["../../src/transport/transport.remote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAC3F,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAE3C,qBAAa,iBAAkB,YAAW,WAAW;IAKvC,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAgB,OAAO,CAAC,QAAQ,CAAC,GAAG;IAJpE,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IAC7B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAEE,GAAG,EAAE,YAAY,EAAmB,GAAG,EAAE,YAAY;IAKlF,IAAI,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAI1C,UAAU,CAAC,GAAG,EAAE,0BAA0B,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAIzE,aAAa,CAAC,IAAI,EAAE,0BAA0B,EAAE,IAAI,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAIpF,OAAO,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAI9C,iBAAiB,IAAI,IAAI;CAG1B"}
@@ -1,7 +1,7 @@
1
1
  import { AuthenticatedServerRequest } from '../server/server.types';
2
2
  import { ElicitResult } from '@modelcontextprotocol/sdk/types.js';
3
3
  import { ZodType } from 'zod';
4
- import { Infer } from '../utils/types.utils';
4
+ import { Infer } from '../types/zod.types';
5
5
  import { ServerResponse } from '../common';
6
6
  export type TransportType = 'sse' | 'streamable-http' | 'http' | 'stateless-http';
7
7
  export interface TransportKey {
@@ -58,3 +58,4 @@ export type TypedElicitResult<T extends ZodType> = {
58
58
  action: ElicitResult['action'];
59
59
  content: Infer<T>;
60
60
  };
61
+ //# sourceMappingURL=transport.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transport.types.d.ts","sourceRoot":"","sources":["../../src/transport/transport.types.ts"],"names":[],"mappings":"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"}
@@ -18,3 +18,4 @@ export interface CollectHooksFn<Ctx> {
18
18
  };
19
19
  }): Promise<GenericHook<Ctx>[]>;
20
20
  }
21
+ //# sourceMappingURL=drinen-hooks.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"drinen-hooks.types.d.ts","sourceRoot":"","sources":["../../src/types/drinen-hooks.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,EAAE,CAAC;AAGnC,MAAM,WAAW,WAAW,CAAC,GAAG,GAAG,OAAO;IACxC,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,IAAI,MAAM,CAAC;IACpB,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAC9C,aAAa,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;IAC7E,CAAC,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,MAAM,WAAW,cAAc,CAAC,GAAG;IACjC,CACE,KAAK,EAAE,QAAQ,EACf,OAAO,EAAE;QACP,OAAO,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,KAAK,CAAC,CAAC;QAC5B,kBAAkB,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;QACvD,iBAAiB,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;QACtD,GAAG,EAAE,GAAG,CAAC;QACT,KAAK,CAAC,EAAE;YAAE,IAAI,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;KAC3B,GACA,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;CAChC"}
@@ -13,3 +13,4 @@ export declare class ControlRetryAfter extends Error {
13
13
  reason?: string | undefined;
14
14
  constructor(ms: number, reason?: string | undefined);
15
15
  }
16
+ //# sourceMappingURL=invoke.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoke.type.d.ts","sourceRoot":"","sources":["../../src/types/invoke.type.ts"],"names":[],"mappings":"AAAA,qBAAa,cAAe,SAAQ,KAAK;IACpB,KAAK,EAAE,OAAO;gBAAd,KAAK,EAAE,OAAO;CAGlC;AACD,qBAAa,YAAa,SAAQ,KAAK;IAE5B,MAAM,EAAE,MAAM;IACd,IAAI,CAAC,EAAE,MAAM;IACb,UAAU,CAAC,EAAE,MAAM;gBAFnB,MAAM,EAAE,MAAM,EACd,IAAI,CAAC,EAAE,MAAM,YAAA,EACb,UAAU,CAAC,EAAE,MAAM,YAAA;CAI7B;AACD,qBAAa,iBAAkB,SAAQ,KAAK;IACvB,EAAE,EAAE,MAAM;IAAS,MAAM,CAAC,EAAE,MAAM;gBAAlC,EAAE,EAAE,MAAM,EAAS,MAAM,CAAC,EAAE,MAAM,YAAA;CAGtD"}
@@ -1 +1,2 @@
1
1
  export type Ctor<T> = new (...args: any[]) => T;
2
+ //# sourceMappingURL=token.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"token.types.d.ts","sourceRoot":"","sources":["../../src/types/token.types.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,IAAI,CAAC,CAAC,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC"}
@@ -5,3 +5,4 @@ type Flatten<T> = T extends Primitive ? T : T extends Array<infer U> ? Array<Fla
5
5
  } : T;
6
6
  export type Infer<Schema extends ZodType> = Flatten<z.infer<Schema>>;
7
7
  export {};
8
+ //# sourceMappingURL=zod.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zod.types.d.ts","sourceRoot":"","sources":["../../src/types/zod.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AAEjC,KAAK,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;AACvE,KAAK,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GACjC,CAAC,GACD,CAAC,SAAS,KAAK,CAAC,MAAM,CAAC,CAAC,GACxB,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACjB,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,CAAC,GACtB,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACf,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,GAC/B,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,GAC3B,CAAC,SAAS,MAAM,GAChB;KACG,CAAC,IAAI,MAAM,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAC9B,GACD,CAAC,CAAC;AACN,MAAM,MAAM,KAAK,CAAC,MAAM,SAAS,OAAO,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC"}
@@ -1,18 +1,3 @@
1
- /**
2
- * Sanitize arbitrary JS values into JSON-safe objects suitable for:
3
- * - MCP `structuredContent`
4
- * - JSON.stringify without circular reference errors
5
- *
6
- * Rules:
7
- * - Drop functions and symbols.
8
- * - BigInt → string.
9
- * - Date → ISO string.
10
- * - Error → { name, message, stack }.
11
- * - Map → plain object.
12
- * - Set → array.
13
- * - Protect against circular references via WeakSet.
14
- */
15
- export declare function sanitizeToJson(value: unknown): unknown;
16
1
  /**
17
2
  * Convert a value to MCP structuredContent format.
18
3
  * Returns Record<string, unknown> or undefined (matching MCP's structuredContent type).
@@ -42,7 +27,4 @@ export type ResourceContent = TextContent | BlobContent;
42
27
  * @param mimeType - Optional MIME type override
43
28
  */
44
29
  export declare function buildResourceContent(uri: string, content: unknown, mimeType?: string): ResourceContent;
45
- /**
46
- * Infer MIME type from file extension or content.
47
- */
48
- export declare function inferMimeType(uri: string, content?: unknown): string;
30
+ //# sourceMappingURL=content.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"content.utils.d.ts","sourceRoot":"","sources":["../../src/utils/content.utils.ts"],"names":[],"mappings":"AAKA;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAQvF;AAED,2CAA2C;AAC3C,MAAM,MAAM,WAAW,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,2CAA2C;AAC3C,MAAM,MAAM,WAAW,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,qDAAqD;AACrD,MAAM,MAAM,eAAe,GAAG,WAAW,GAAG,WAAW,CAAC;AAExD;;;;;;;GAOG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,eAAe,CAqDtG"}
package/utils/index.d.ts CHANGED
@@ -1,8 +1,4 @@
1
- export { NameCase, splitWords, toCase, sepFor, normalizeSegment, normalizeProviderId, normalizeOwnerPath, shortHash, ensureMaxLen, } from './naming.utils';
1
+ export { normalizeSegment, normalizeProviderId, normalizeOwnerPath } from './naming.utils';
2
2
  export { ownerKeyOf, qualifiedNameOf, parseQualifiedName, lineageDepth, lineagesEqual, isAncestorLineage, } from './lineage.utils';
3
- export { isValidMcpUri, extractUriScheme, isValidMcpUriTemplate } from './uri-validation.utils';
4
- export { parseUriTemplate, matchUriTemplate, expandUriTemplate } from './uri-template.utils';
5
- export { tokenName, isClass, isPromise, depsOfClass, depsOfFunc } from './token.utils';
6
- export { sanitizeToJson, toStructuredContent, TextContent, BlobContent, ResourceContent, buildResourceContent, inferMimeType, } from './content.utils';
7
- export { idFromString } from './string.utils';
8
- export { getMetadata, setMetadata, hasAsyncWith } from './metadata.utils';
3
+ export { toStructuredContent, TextContent, BlobContent, ResourceContent, buildResourceContent } from './content.utils';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAG3F,OAAO,EACL,UAAU,EACV,eAAe,EACf,kBAAkB,EAClB,YAAY,EACZ,aAAa,EACb,iBAAiB,GAClB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAAE,mBAAmB,EAAE,WAAW,EAAE,WAAW,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC"}
@@ -38,3 +38,4 @@ export declare function lineagesEqual(a: EntryLineage, b: EntryLineage): boolean
38
38
  * Check if lineage `a` is an ancestor of lineage `b`.
39
39
  */
40
40
  export declare function isAncestorLineage(ancestor: EntryLineage, descendant: EntryLineage): boolean;
41
+ //# sourceMappingURL=lineage.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lineage.utils.d.ts","sourceRoot":"","sources":["../../src/utils/lineage.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAEzC;;;;;;GAMG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,YAAY,GAAG,MAAM,CAExD;AAED;;;;;;GAMG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAE3E;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,aAAa,EAAE,MAAM,GAAG;IAAE,OAAO,EAAE,YAAY,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CAsBxG;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,YAAY,GAAG,MAAM,CAE1D;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC,EAAE,YAAY,GAAG,OAAO,CAGvE;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,GAAG,OAAO,CAG3F"}
@@ -1,27 +1,4 @@
1
- /**
2
- * Supported naming conventions for MCP identifiers
3
- */
4
- export type NameCase = 'snake' | 'kebab' | 'dot' | 'camel';
5
- /**
6
- * Split a string into words, handling camelCase, PascalCase, and delimiters.
7
- *
8
- * @example
9
- * splitWords("myFunctionName") => ["my", "Function", "Name"]
10
- * splitWords("my_function_name") => ["my", "function", "name"]
11
- */
12
- export declare function splitWords(input: string): string[];
13
- /**
14
- * Convert words to a specific naming case.
15
- *
16
- * @example
17
- * toCase(["my", "function"], "snake") => "my_function"
18
- * toCase(["my", "function"], "camel") => "myFunction"
19
- */
20
- export declare function toCase(words: string[], kind: NameCase): string;
21
- /**
22
- * Get the separator character for a naming case.
23
- */
24
- export declare function sepFor(kind: NameCase): string;
1
+ import { NameCase } from '@frontmcp/utils';
25
2
  /**
26
3
  * Normalize a single segment (name part) to MCP-safe characters.
27
4
  */
@@ -34,13 +11,4 @@ export declare function normalizeProviderId(raw: string | undefined, kind: NameC
34
11
  * Normalize an owner path (app:id/plugin:id) to the specified naming case.
35
12
  */
36
13
  export declare function normalizeOwnerPath(ownerKey: string, kind: NameCase): string;
37
- /**
38
- * Generate a short hash (6 hex chars) from a string.
39
- * Uses djb2 algorithm for fast, reasonable distribution.
40
- */
41
- export declare function shortHash(s: string): string;
42
- /**
43
- * Ensure a name fits within a maximum length, using hash truncation if needed.
44
- * Preserves meaningful suffix while adding a hash for uniqueness.
45
- */
46
- export declare function ensureMaxLen(name: string, max: number): string;
14
+ //# sourceMappingURL=naming.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"naming.utils.d.ts","sourceRoot":"","sources":["../../src/utils/naming.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAA8B,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAKvE;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,GAAG,MAAM,CAKpE;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,EAAE,IAAI,EAAE,QAAQ,GAAG,MAAM,GAAG,SAAS,CAM/F;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,GAAG,MAAM,CAQ3E"}
@@ -1,5 +0,0 @@
1
- export declare const MCP_SESSION_HOOKS = "mcp.plugin.sessionHooks";
2
- export declare const MCP_AUTH_HOOKS = "mcp.plugin.sessionHooks";
3
- export declare const META_ASYNC_WITH: unique symbol;
4
- export declare const META_ASYNC_WITH_TOKENS: unique symbol;
5
- export declare const DESIGN_PARAMTYPES = "design:paramtypes";