@letta-ai/letta-client 0.1.5 → 0.1.7

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 (461) hide show
  1. package/Client.d.ts +3 -0
  2. package/Client.js +5 -0
  3. package/api/resources/agents/client/Client.d.ts +14 -106
  4. package/api/resources/agents/client/Client.js +31 -495
  5. package/{dist/api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts → api/resources/agents/client/requests/AgentsSearchRequest.d.ts} +3 -3
  6. package/api/resources/agents/client/requests/index.d.ts +1 -4
  7. package/api/resources/agents/resources/archivalMemory/client/Client.js +4 -4
  8. package/api/resources/agents/resources/context/client/Client.js +1 -1
  9. package/api/resources/agents/resources/coreMemory/client/Client.d.ts +123 -0
  10. package/api/resources/agents/resources/coreMemory/client/Client.js +525 -0
  11. package/api/resources/agents/resources/index.d.ts +6 -2
  12. package/api/resources/agents/resources/index.js +7 -3
  13. package/api/resources/agents/resources/{memory → memoryVariables}/client/Client.d.ts +11 -13
  14. package/api/resources/agents/resources/{memory → memoryVariables}/client/Client.js +15 -25
  15. package/api/resources/agents/resources/memoryVariables/index.d.ts +2 -0
  16. package/api/resources/agents/resources/memoryVariables/index.js +18 -0
  17. package/api/resources/agents/{types/AgentsGetAgentVariablesResponse.d.ts → resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts} +1 -1
  18. package/api/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  19. package/api/resources/agents/resources/memoryVariables/types/index.js +17 -0
  20. package/api/resources/agents/resources/messages/client/Client.js +5 -5
  21. package/api/resources/agents/resources/recallMemory/client/Client.js +1 -1
  22. package/api/resources/agents/resources/sources/client/Client.js +1 -1
  23. package/api/resources/agents/resources/templates/client/Client.d.ts +82 -0
  24. package/{dist/api/resources/agents/resources/memoryBlocks → api/resources/agents/resources/templates}/client/Client.js +126 -45
  25. package/api/resources/agents/resources/templates/client/index.d.ts +1 -0
  26. package/api/resources/agents/resources/templates/client/index.js +17 -0
  27. package/api/resources/agents/{client/requests/AgentsCreateTemplateFromAgentRequest.d.ts → resources/templates/client/requests/TemplatesCreateRequest.d.ts} +1 -1
  28. package/api/resources/agents/{client/requests/AgentsCreateVersionRequest.d.ts → resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts} +1 -1
  29. package/api/resources/agents/{client/requests/AgentsMigrateRequest.d.ts → resources/templates/client/requests/TemplatesMigrateRequest.d.ts} +1 -1
  30. package/api/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  31. package/api/resources/agents/resources/templates/index.d.ts +2 -0
  32. package/api/resources/agents/resources/templates/index.js +18 -0
  33. package/api/resources/agents/{types/AgentsMigrateResponse.d.ts → resources/templates/types/TemplatesMigrateResponse.d.ts} +1 -1
  34. package/api/resources/agents/resources/templates/types/index.d.ts +1 -0
  35. package/api/resources/agents/resources/templates/types/index.js +17 -0
  36. package/api/resources/agents/resources/tools/client/Client.js +3 -3
  37. package/api/resources/agents/types/AgentsSearchRequestCombinator.d.ts +8 -0
  38. package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestCombinator.js → AgentsSearchRequestCombinator.js} +2 -2
  39. package/api/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +16 -0
  40. package/api/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +8 -0
  41. package/api/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +9 -0
  42. package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js → AgentsSearchRequestSearchItemNameOperator.js} +2 -2
  43. package/api/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +8 -0
  44. package/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +8 -0
  45. package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js → api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.js} +2 -2
  46. package/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +8 -0
  47. package/{dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js → api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js} +2 -2
  48. package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts → AgentsSearchRequestSearchItemVersion.d.ts} +1 -1
  49. package/api/resources/agents/types/index.d.ts +8 -10
  50. package/api/resources/agents/types/index.js +8 -10
  51. package/api/resources/blocks/client/Client.js +7 -7
  52. package/api/resources/health/client/Client.js +1 -1
  53. package/api/resources/index.d.ts +2 -0
  54. package/api/resources/index.js +3 -1
  55. package/api/resources/jobs/client/Client.js +4 -4
  56. package/api/resources/models/client/Client.js +2 -2
  57. package/api/resources/providers/client/Client.d.ts +86 -0
  58. package/api/resources/providers/client/Client.js +336 -0
  59. package/api/resources/providers/client/index.d.ts +1 -0
  60. package/api/resources/providers/client/index.js +17 -0
  61. package/api/resources/providers/client/requests/DeleteProviderRequest.d.ts +15 -0
  62. package/api/resources/providers/client/requests/ListProvidersRequest.d.ts +11 -0
  63. package/api/resources/providers/client/requests/ProviderCreate.d.ts +16 -0
  64. package/api/resources/providers/client/requests/ProviderUpdate.d.ts +16 -0
  65. package/api/resources/providers/client/requests/index.d.ts +4 -0
  66. package/api/resources/sources/client/Client.js +8 -8
  67. package/api/resources/sources/resources/files/client/Client.js +3 -3
  68. package/api/resources/sources/resources/passages/client/Client.js +1 -1
  69. package/api/resources/tools/client/Client.d.ts +3 -1
  70. package/api/resources/tools/client/Client.js +15 -13
  71. package/api/resources/tools/client/requests/ToolRunFromSource.d.ts +7 -3
  72. package/api/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
  73. package/api/types/AgentType.d.ts +1 -2
  74. package/api/types/AgentType.js +0 -1
  75. package/api/types/LettaSchemasToolTool.d.ts +4 -1
  76. package/api/types/Provider.d.ts +13 -0
  77. package/api/types/ToolType.d.ts +9 -0
  78. package/api/types/ToolType.js +11 -0
  79. package/api/types/index.d.ts +2 -0
  80. package/api/types/index.js +2 -0
  81. package/dist/Client.d.ts +3 -0
  82. package/dist/Client.js +5 -0
  83. package/dist/api/resources/agents/client/Client.d.ts +14 -106
  84. package/dist/api/resources/agents/client/Client.js +31 -495
  85. package/{api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts → dist/api/resources/agents/client/requests/AgentsSearchRequest.d.ts} +3 -3
  86. package/dist/api/resources/agents/client/requests/index.d.ts +1 -4
  87. package/dist/api/resources/agents/resources/archivalMemory/client/Client.js +4 -4
  88. package/dist/api/resources/agents/resources/context/client/Client.js +1 -1
  89. package/dist/api/resources/agents/resources/coreMemory/client/Client.d.ts +123 -0
  90. package/dist/api/resources/agents/resources/coreMemory/client/Client.js +525 -0
  91. package/dist/api/resources/agents/resources/index.d.ts +6 -2
  92. package/dist/api/resources/agents/resources/index.js +7 -3
  93. package/dist/api/resources/agents/resources/{memory → memoryVariables}/client/Client.d.ts +11 -13
  94. package/dist/api/resources/agents/resources/{memory → memoryVariables}/client/Client.js +15 -25
  95. package/dist/api/resources/agents/resources/memoryVariables/index.d.ts +2 -0
  96. package/dist/api/resources/agents/resources/memoryVariables/index.js +18 -0
  97. package/dist/api/resources/agents/{types/AgentsGetAgentVariablesResponse.d.ts → resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts} +1 -1
  98. package/dist/api/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  99. package/dist/api/resources/agents/resources/memoryVariables/types/index.js +17 -0
  100. package/dist/api/resources/agents/resources/messages/client/Client.js +5 -5
  101. package/dist/api/resources/agents/resources/recallMemory/client/Client.js +1 -1
  102. package/dist/api/resources/agents/resources/sources/client/Client.js +1 -1
  103. package/dist/api/resources/agents/resources/templates/client/Client.d.ts +82 -0
  104. package/{api/resources/agents/resources/memoryBlocks → dist/api/resources/agents/resources/templates}/client/Client.js +126 -45
  105. package/dist/api/resources/agents/resources/templates/client/index.d.ts +1 -0
  106. package/dist/api/resources/agents/resources/templates/client/index.js +17 -0
  107. package/dist/api/resources/agents/{client/requests/AgentsCreateTemplateFromAgentRequest.d.ts → resources/templates/client/requests/TemplatesCreateRequest.d.ts} +1 -1
  108. package/dist/api/resources/agents/{client/requests/AgentsCreateVersionRequest.d.ts → resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts} +1 -1
  109. package/dist/api/resources/agents/{client/requests/AgentsMigrateRequest.d.ts → resources/templates/client/requests/TemplatesMigrateRequest.d.ts} +1 -1
  110. package/dist/api/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  111. package/dist/api/resources/agents/resources/templates/client/requests/index.js +2 -0
  112. package/dist/api/resources/agents/resources/templates/index.d.ts +2 -0
  113. package/dist/api/resources/agents/resources/templates/index.js +18 -0
  114. package/dist/api/resources/agents/{types/AgentsMigrateResponse.d.ts → resources/templates/types/TemplatesMigrateResponse.d.ts} +1 -1
  115. package/dist/api/resources/agents/resources/templates/types/TemplatesMigrateResponse.js +5 -0
  116. package/dist/api/resources/agents/resources/templates/types/index.d.ts +1 -0
  117. package/dist/api/resources/agents/resources/templates/types/index.js +17 -0
  118. package/dist/api/resources/agents/resources/tools/client/Client.js +3 -3
  119. package/dist/api/resources/agents/types/AgentsSearchRequestCombinator.d.ts +8 -0
  120. package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestCombinator.js → AgentsSearchRequestCombinator.js} +2 -2
  121. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +16 -0
  122. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItem.js +5 -0
  123. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +8 -0
  124. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemName.js +5 -0
  125. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +9 -0
  126. package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js → AgentsSearchRequestSearchItemNameOperator.js} +2 -2
  127. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +8 -0
  128. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.js +5 -0
  129. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +8 -0
  130. package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js → dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.js} +2 -2
  131. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +8 -0
  132. package/{api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js → dist/api/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js} +2 -2
  133. package/dist/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts → AgentsSearchRequestSearchItemVersion.d.ts} +1 -1
  134. package/dist/api/resources/agents/types/AgentsSearchRequestSearchItemVersion.js +5 -0
  135. package/dist/api/resources/agents/types/index.d.ts +8 -10
  136. package/dist/api/resources/agents/types/index.js +8 -10
  137. package/dist/api/resources/blocks/client/Client.js +7 -7
  138. package/dist/api/resources/health/client/Client.js +1 -1
  139. package/dist/api/resources/index.d.ts +2 -0
  140. package/dist/api/resources/index.js +3 -1
  141. package/dist/api/resources/jobs/client/Client.js +4 -4
  142. package/dist/api/resources/models/client/Client.js +2 -2
  143. package/dist/api/resources/providers/client/Client.d.ts +86 -0
  144. package/dist/api/resources/providers/client/Client.js +336 -0
  145. package/dist/api/resources/providers/client/index.d.ts +1 -0
  146. package/dist/api/resources/providers/client/index.js +17 -0
  147. package/dist/api/resources/providers/client/requests/DeleteProviderRequest.d.ts +15 -0
  148. package/dist/api/resources/providers/client/requests/DeleteProviderRequest.js +5 -0
  149. package/dist/api/resources/providers/client/requests/ListProvidersRequest.d.ts +11 -0
  150. package/dist/api/resources/providers/client/requests/ListProvidersRequest.js +5 -0
  151. package/dist/api/resources/providers/client/requests/ProviderCreate.d.ts +16 -0
  152. package/dist/api/resources/providers/client/requests/ProviderCreate.js +5 -0
  153. package/dist/api/resources/providers/client/requests/ProviderUpdate.d.ts +16 -0
  154. package/dist/api/resources/providers/client/requests/ProviderUpdate.js +5 -0
  155. package/dist/api/resources/providers/client/requests/index.d.ts +4 -0
  156. package/dist/api/resources/providers/client/requests/index.js +2 -0
  157. package/dist/api/resources/sources/client/Client.js +8 -8
  158. package/dist/api/resources/sources/resources/files/client/Client.js +3 -3
  159. package/dist/api/resources/sources/resources/passages/client/Client.js +1 -1
  160. package/dist/api/resources/tools/client/Client.d.ts +3 -1
  161. package/dist/api/resources/tools/client/Client.js +15 -13
  162. package/dist/api/resources/tools/client/requests/ToolRunFromSource.d.ts +7 -3
  163. package/dist/api/resources/tools/client/requests/ToolUpdate.d.ts +2 -0
  164. package/dist/api/types/AgentType.d.ts +1 -2
  165. package/dist/api/types/AgentType.js +0 -1
  166. package/dist/api/types/LettaSchemasToolTool.d.ts +4 -1
  167. package/dist/api/types/Provider.d.ts +13 -0
  168. package/dist/api/types/Provider.js +5 -0
  169. package/dist/api/types/ToolType.d.ts +9 -0
  170. package/dist/api/types/ToolType.js +11 -0
  171. package/dist/api/types/index.d.ts +2 -0
  172. package/dist/api/types/index.js +2 -0
  173. package/dist/serialization/resources/agents/client/index.d.ts +0 -1
  174. package/dist/serialization/resources/agents/client/index.js +1 -2
  175. package/dist/serialization/resources/agents/client/requests/AgentsSearchRequest.d.ts +18 -0
  176. package/{serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js → dist/serialization/resources/agents/client/requests/AgentsSearchRequest.js} +6 -6
  177. package/dist/serialization/resources/agents/client/requests/index.d.ts +1 -4
  178. package/dist/serialization/resources/agents/client/requests/index.js +3 -9
  179. package/dist/serialization/resources/agents/resources/coreMemory/client/getBlocks.d.ts +11 -0
  180. package/{serialization/resources/agents/client/getAgentMemoryBlocks.js → dist/serialization/resources/agents/resources/coreMemory/client/getBlocks.js} +2 -2
  181. package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/index.d.ts +1 -0
  182. package/{serialization/resources/agents/resources/memory/resources/messages → dist/serialization/resources/agents/resources/coreMemory}/client/index.js +2 -1
  183. package/dist/serialization/resources/agents/resources/coreMemory/client/listInContext.d.ts +11 -0
  184. package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/listInContext.js +2 -2
  185. package/dist/serialization/resources/agents/resources/index.d.ts +6 -1
  186. package/dist/serialization/resources/agents/resources/index.js +7 -2
  187. package/dist/serialization/resources/agents/resources/memoryVariables/index.d.ts +1 -0
  188. package/dist/serialization/resources/agents/resources/memoryVariables/index.js +17 -0
  189. package/dist/serialization/resources/agents/resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts +12 -0
  190. package/dist/serialization/resources/agents/{types/AgentsGetAgentVariablesResponse.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +3 -3
  191. package/dist/serialization/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  192. package/dist/serialization/resources/agents/resources/memoryVariables/types/index.js +17 -0
  193. package/dist/serialization/resources/agents/resources/templates/client/index.d.ts +1 -0
  194. package/dist/serialization/resources/agents/resources/templates/client/index.js +17 -0
  195. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.d.ts +12 -0
  196. package/{serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js → dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.js} +3 -3
  197. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +12 -0
  198. package/dist/serialization/resources/agents/{client/requests/AgentsCreateVersionRequest.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +3 -3
  199. package/dist/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +14 -0
  200. package/{serialization/resources/agents/client/requests/AgentsMigrateRequest.js → dist/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.js} +3 -3
  201. package/dist/serialization/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  202. package/dist/serialization/resources/agents/resources/templates/client/requests/index.js +9 -0
  203. package/dist/serialization/resources/agents/resources/templates/index.d.ts +2 -0
  204. package/dist/serialization/resources/agents/resources/templates/index.js +18 -0
  205. package/dist/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.d.ts +12 -0
  206. package/dist/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.js +33 -0
  207. package/dist/serialization/resources/agents/resources/templates/types/index.d.ts +1 -0
  208. package/dist/serialization/resources/agents/resources/templates/types/index.js +17 -0
  209. package/dist/serialization/resources/agents/types/AgentsSearchRequestCombinator.d.ts +10 -0
  210. package/dist/serialization/resources/agents/types/{AgentsMigrateResponse.js → AgentsSearchRequestCombinator.js} +2 -4
  211. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +22 -0
  212. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js → AgentsSearchRequestSearchItem.js} +13 -6
  213. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +14 -0
  214. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.js +35 -0
  215. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +10 -0
  216. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.js +31 -0
  217. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +15 -0
  218. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemName.js → AgentsSearchRequestSearchItemOrderBy.js} +6 -5
  219. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +10 -0
  220. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestCombinator.js → AgentsSearchRequestSearchItemOrderByDirection.js} +2 -2
  221. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +10 -0
  222. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js +31 -0
  223. package/dist/serialization/resources/agents/types/AgentsSearchRequestSearchItemVersion.d.ts +12 -0
  224. package/dist/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.js → AgentsSearchRequestSearchItemVersion.js} +2 -2
  225. package/dist/serialization/resources/agents/types/index.d.ts +8 -10
  226. package/dist/serialization/resources/agents/types/index.js +8 -10
  227. package/dist/serialization/resources/index.d.ts +2 -0
  228. package/dist/serialization/resources/index.js +3 -1
  229. package/dist/serialization/resources/providers/client/index.d.ts +2 -0
  230. package/dist/serialization/resources/{agents/resources/memory/resources → providers/client}/index.js +6 -2
  231. package/dist/serialization/resources/{agents/client/getAgentMemoryBlocks.d.ts → providers/client/listProviders.d.ts} +3 -3
  232. package/{serialization/resources/agents/types/AgentsMigrateResponse.js → dist/serialization/resources/providers/client/listProviders.js} +3 -4
  233. package/dist/serialization/resources/providers/client/requests/ProviderCreate.d.ts +13 -0
  234. package/dist/serialization/resources/providers/client/requests/ProviderCreate.js +34 -0
  235. package/dist/serialization/resources/providers/client/requests/ProviderUpdate.d.ts +13 -0
  236. package/dist/serialization/resources/providers/client/requests/ProviderUpdate.js +34 -0
  237. package/dist/serialization/resources/providers/client/requests/index.d.ts +2 -0
  238. package/dist/serialization/resources/providers/client/requests/index.js +7 -0
  239. package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +2 -1
  240. package/dist/serialization/resources/tools/client/requests/ToolRunFromSource.js +2 -1
  241. package/dist/serialization/resources/tools/client/requests/ToolUpdate.d.ts +1 -0
  242. package/dist/serialization/resources/tools/client/requests/ToolUpdate.js +1 -0
  243. package/dist/serialization/types/AgentType.d.ts +1 -1
  244. package/dist/serialization/types/AgentType.js +1 -7
  245. package/dist/serialization/types/LettaSchemasToolTool.d.ts +3 -1
  246. package/dist/serialization/types/LettaSchemasToolTool.js +3 -1
  247. package/dist/serialization/types/Provider.d.ts +15 -0
  248. package/dist/serialization/types/Provider.js +36 -0
  249. package/dist/serialization/types/ToolType.d.ts +10 -0
  250. package/dist/serialization/types/ToolType.js +35 -0
  251. package/dist/serialization/types/index.d.ts +2 -0
  252. package/dist/serialization/types/index.js +2 -0
  253. package/dist/version.d.ts +1 -1
  254. package/dist/version.js +1 -1
  255. package/package.json +1 -1
  256. package/reference.md +591 -317
  257. package/serialization/resources/agents/client/index.d.ts +0 -1
  258. package/serialization/resources/agents/client/index.js +1 -2
  259. package/serialization/resources/agents/client/requests/AgentsSearchRequest.d.ts +18 -0
  260. package/{dist/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js → serialization/resources/agents/client/requests/AgentsSearchRequest.js} +6 -6
  261. package/serialization/resources/agents/client/requests/index.d.ts +1 -4
  262. package/serialization/resources/agents/client/requests/index.js +3 -9
  263. package/serialization/resources/agents/resources/coreMemory/client/getBlocks.d.ts +11 -0
  264. package/{dist/serialization/resources/agents/client/getAgentMemoryBlocks.js → serialization/resources/agents/resources/coreMemory/client/getBlocks.js} +2 -2
  265. package/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/index.d.ts +1 -0
  266. package/{dist/serialization/resources/agents/resources/memory/resources/messages → serialization/resources/agents/resources/coreMemory}/client/index.js +2 -1
  267. package/serialization/resources/agents/resources/coreMemory/client/listInContext.d.ts +11 -0
  268. package/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/client/listInContext.js +2 -2
  269. package/serialization/resources/agents/resources/coreMemory/index.d.ts +1 -0
  270. package/serialization/resources/agents/resources/coreMemory/index.js +17 -0
  271. package/serialization/resources/agents/resources/index.d.ts +6 -1
  272. package/serialization/resources/agents/resources/index.js +7 -2
  273. package/serialization/resources/agents/resources/memoryVariables/index.d.ts +1 -0
  274. package/serialization/resources/agents/resources/memoryVariables/index.js +17 -0
  275. package/serialization/resources/agents/resources/memoryVariables/types/MemoryVariablesGetResponse.d.ts +12 -0
  276. package/serialization/resources/agents/{types/AgentsGetAgentVariablesResponse.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +3 -3
  277. package/serialization/resources/agents/resources/memoryVariables/types/index.d.ts +1 -0
  278. package/serialization/resources/agents/resources/memoryVariables/types/index.js +17 -0
  279. package/serialization/resources/agents/resources/templates/client/index.d.ts +1 -0
  280. package/serialization/resources/agents/resources/templates/client/index.js +17 -0
  281. package/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.d.ts +12 -0
  282. package/{dist/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js → serialization/resources/agents/resources/templates/client/requests/TemplatesCreateRequest.js} +3 -3
  283. package/serialization/resources/agents/resources/templates/client/requests/TemplatesCreateVersionRequest.d.ts +12 -0
  284. package/serialization/resources/agents/{client/requests/AgentsCreateVersionRequest.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +3 -3
  285. package/serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.d.ts +14 -0
  286. package/{dist/serialization/resources/agents/client/requests/AgentsMigrateRequest.js → serialization/resources/agents/resources/templates/client/requests/TemplatesMigrateRequest.js} +3 -3
  287. package/serialization/resources/agents/resources/templates/client/requests/index.d.ts +3 -0
  288. package/serialization/resources/agents/resources/templates/client/requests/index.js +9 -0
  289. package/serialization/resources/agents/resources/templates/index.d.ts +2 -0
  290. package/serialization/resources/agents/resources/templates/index.js +18 -0
  291. package/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.d.ts +12 -0
  292. package/serialization/resources/agents/resources/templates/types/TemplatesMigrateResponse.js +33 -0
  293. package/serialization/resources/agents/resources/templates/types/index.d.ts +1 -0
  294. package/serialization/resources/agents/resources/templates/types/index.js +17 -0
  295. package/serialization/resources/agents/types/AgentsSearchRequestCombinator.d.ts +10 -0
  296. package/serialization/resources/agents/types/AgentsSearchRequestCombinator.js +31 -0
  297. package/serialization/resources/agents/types/AgentsSearchRequestSearchItem.d.ts +22 -0
  298. package/serialization/resources/agents/types/AgentsSearchRequestSearchItem.js +43 -0
  299. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.d.ts +14 -0
  300. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemName.js +35 -0
  301. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.d.ts +10 -0
  302. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemNameOperator.js +31 -0
  303. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.d.ts +15 -0
  304. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderBy.js +36 -0
  305. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.d.ts +10 -0
  306. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByDirection.js +31 -0
  307. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.d.ts +10 -0
  308. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemOrderByValue.js +31 -0
  309. package/serialization/resources/agents/types/AgentsSearchRequestSearchItemVersion.d.ts +12 -0
  310. package/serialization/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.js → AgentsSearchRequestSearchItemVersion.js} +2 -2
  311. package/serialization/resources/agents/types/index.d.ts +8 -10
  312. package/serialization/resources/agents/types/index.js +8 -10
  313. package/serialization/resources/index.d.ts +2 -0
  314. package/serialization/resources/index.js +3 -1
  315. package/serialization/resources/providers/client/index.d.ts +2 -0
  316. package/{api/resources/agents/resources/memory/resources → serialization/resources/providers/client}/index.js +6 -2
  317. package/serialization/resources/{agents/client/getAgentMemoryBlocks.d.ts → providers/client/listProviders.d.ts} +3 -3
  318. package/serialization/resources/providers/client/listProviders.js +32 -0
  319. package/serialization/resources/providers/client/requests/ProviderCreate.d.ts +13 -0
  320. package/serialization/resources/providers/client/requests/ProviderCreate.js +34 -0
  321. package/serialization/resources/providers/client/requests/ProviderUpdate.d.ts +13 -0
  322. package/serialization/resources/providers/client/requests/ProviderUpdate.js +34 -0
  323. package/serialization/resources/providers/client/requests/index.d.ts +2 -0
  324. package/serialization/resources/providers/client/requests/index.js +7 -0
  325. package/serialization/resources/providers/index.d.ts +1 -0
  326. package/serialization/resources/providers/index.js +17 -0
  327. package/serialization/resources/tools/client/requests/ToolRunFromSource.d.ts +2 -1
  328. package/serialization/resources/tools/client/requests/ToolRunFromSource.js +2 -1
  329. package/serialization/resources/tools/client/requests/ToolUpdate.d.ts +1 -0
  330. package/serialization/resources/tools/client/requests/ToolUpdate.js +1 -0
  331. package/serialization/types/AgentType.d.ts +1 -1
  332. package/serialization/types/AgentType.js +1 -7
  333. package/serialization/types/LettaSchemasToolTool.d.ts +3 -1
  334. package/serialization/types/LettaSchemasToolTool.js +3 -1
  335. package/serialization/types/Provider.d.ts +15 -0
  336. package/serialization/types/Provider.js +36 -0
  337. package/serialization/types/ToolType.d.ts +10 -0
  338. package/serialization/types/ToolType.js +35 -0
  339. package/serialization/types/index.d.ts +2 -0
  340. package/serialization/types/index.js +2 -0
  341. package/version.d.ts +1 -1
  342. package/version.js +1 -1
  343. package/api/resources/agents/resources/memory/index.d.ts +0 -2
  344. package/api/resources/agents/resources/memory/index.js +0 -18
  345. package/api/resources/agents/resources/memory/resources/index.d.ts +0 -1
  346. package/api/resources/agents/resources/memory/resources/messages/client/Client.d.ts +0 -42
  347. package/api/resources/agents/resources/memory/resources/messages/client/Client.js +0 -124
  348. package/api/resources/agents/resources/memoryBlocks/client/Client.d.ts +0 -59
  349. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -8
  350. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -16
  351. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -8
  352. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -9
  353. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -8
  354. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -8
  355. package/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -8
  356. package/dist/api/resources/agents/resources/memory/index.d.ts +0 -2
  357. package/dist/api/resources/agents/resources/memory/index.js +0 -18
  358. package/dist/api/resources/agents/resources/memory/resources/index.d.ts +0 -1
  359. package/dist/api/resources/agents/resources/memory/resources/index.js +0 -27
  360. package/dist/api/resources/agents/resources/memory/resources/messages/client/Client.d.ts +0 -42
  361. package/dist/api/resources/agents/resources/memory/resources/messages/client/Client.js +0 -124
  362. package/dist/api/resources/agents/resources/memory/resources/messages/client/index.d.ts +0 -1
  363. package/dist/api/resources/agents/resources/memoryBlocks/client/Client.d.ts +0 -59
  364. package/dist/api/resources/agents/resources/memoryBlocks/client/index.d.ts +0 -1
  365. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -8
  366. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -16
  367. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -8
  368. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -9
  369. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -8
  370. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -8
  371. package/dist/api/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -8
  372. package/dist/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +0 -12
  373. package/dist/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +0 -12
  374. package/dist/serialization/resources/agents/client/requests/AgentsMigrateRequest.d.ts +0 -14
  375. package/dist/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +0 -18
  376. package/dist/serialization/resources/agents/resources/memory/index.d.ts +0 -1
  377. package/dist/serialization/resources/agents/resources/memory/index.js +0 -17
  378. package/dist/serialization/resources/agents/resources/memory/resources/index.d.ts +0 -1
  379. package/dist/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.d.ts +0 -11
  380. package/dist/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +0 -12
  381. package/dist/serialization/resources/agents/types/AgentsMigrateResponse.d.ts +0 -12
  382. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -10
  383. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -22
  384. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.js +0 -43
  385. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -14
  386. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -10
  387. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js +0 -31
  388. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -15
  389. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -10
  390. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js +0 -31
  391. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -10
  392. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js +0 -31
  393. package/dist/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts +0 -12
  394. package/serialization/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.d.ts +0 -12
  395. package/serialization/resources/agents/client/requests/AgentsCreateVersionRequest.d.ts +0 -12
  396. package/serialization/resources/agents/client/requests/AgentsMigrateRequest.d.ts +0 -14
  397. package/serialization/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.d.ts +0 -18
  398. package/serialization/resources/agents/resources/memory/index.d.ts +0 -1
  399. package/serialization/resources/agents/resources/memory/index.js +0 -17
  400. package/serialization/resources/agents/resources/memory/resources/index.d.ts +0 -1
  401. package/serialization/resources/agents/resources/memory/resources/index.js +0 -27
  402. package/serialization/resources/agents/resources/memory/resources/messages/client/listInContext.d.ts +0 -11
  403. package/serialization/resources/agents/types/AgentsGetAgentVariablesResponse.d.ts +0 -12
  404. package/serialization/resources/agents/types/AgentsMigrateResponse.d.ts +0 -12
  405. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.d.ts +0 -10
  406. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestCombinator.js +0 -31
  407. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.d.ts +0 -22
  408. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItem.js +0 -43
  409. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.d.ts +0 -14
  410. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemName.js +0 -35
  411. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.d.ts +0 -10
  412. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemNameOperator.js +0 -31
  413. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.d.ts +0 -15
  414. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js +0 -36
  415. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.d.ts +0 -10
  416. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.js +0 -31
  417. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.d.ts +0 -10
  418. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.js +0 -31
  419. package/serialization/resources/agents/types/AgentsSearchDeployedAgentsRequestSearchItemVersion.d.ts +0 -12
  420. /package/api/resources/agents/client/requests/{AgentsCreateTemplateFromAgentRequest.js → AgentsSearchRequest.js} +0 -0
  421. /package/api/resources/agents/resources/{memory → coreMemory}/client/index.d.ts +0 -0
  422. /package/api/resources/agents/resources/{memory → coreMemory}/client/index.js +0 -0
  423. /package/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.d.ts +0 -0
  424. /package/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.js +0 -0
  425. /package/api/resources/agents/resources/{memory/resources/messages → memoryVariables}/client/index.d.ts +0 -0
  426. /package/api/resources/agents/resources/{memory/resources/messages → memoryVariables}/client/index.js +0 -0
  427. /package/api/resources/agents/{client/requests/AgentsCreateVersionRequest.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +0 -0
  428. /package/api/resources/agents/{client/requests/AgentsMigrateRequest.js → resources/templates/client/requests/TemplatesCreateRequest.js} +0 -0
  429. /package/api/resources/agents/{client/requests/AgentsSearchDeployedAgentsRequest.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +0 -0
  430. /package/api/resources/agents/{types/AgentsGetAgentVariablesResponse.js → resources/templates/client/requests/TemplatesMigrateRequest.js} +0 -0
  431. /package/api/resources/agents/resources/{memoryBlocks/client → templates/client/requests}/index.js +0 -0
  432. /package/api/resources/agents/{types/AgentsMigrateResponse.js → resources/templates/types/TemplatesMigrateResponse.js} +0 -0
  433. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItem.js → AgentsSearchRequestSearchItem.js} +0 -0
  434. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemName.js → AgentsSearchRequestSearchItemName.js} +0 -0
  435. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js → AgentsSearchRequestSearchItemOrderBy.js} +0 -0
  436. /package/api/resources/agents/types/{AgentsSearchDeployedAgentsRequestSearchItemVersion.js → AgentsSearchRequestSearchItemVersion.js} +0 -0
  437. /package/{dist/api/resources/agents/client/requests/AgentsCreateTemplateFromAgentRequest.js → api/resources/providers/client/requests/DeleteProviderRequest.js} +0 -0
  438. /package/{dist/api/resources/agents/client/requests/AgentsCreateVersionRequest.js → api/resources/providers/client/requests/ListProvidersRequest.js} +0 -0
  439. /package/{dist/api/resources/agents/client/requests/AgentsMigrateRequest.js → api/resources/providers/client/requests/ProviderCreate.js} +0 -0
  440. /package/{dist/api/resources/agents/client/requests/AgentsSearchDeployedAgentsRequest.js → api/resources/providers/client/requests/ProviderUpdate.js} +0 -0
  441. /package/{dist/api/resources/agents/resources/memory/client → api/resources/providers/client/requests}/index.js +0 -0
  442. /package/api/resources/{agents/resources/memoryBlocks → providers}/index.d.ts +0 -0
  443. /package/api/resources/{agents/resources/memoryBlocks → providers}/index.js +0 -0
  444. /package/{dist/api/resources/agents/types/AgentsGetAgentVariablesResponse.js → api/types/Provider.js} +0 -0
  445. /package/dist/api/resources/agents/{types/AgentsMigrateResponse.js → client/requests/AgentsSearchRequest.js} +0 -0
  446. /package/{api/resources/agents/resources/memoryBlocks → dist/api/resources/agents/resources/coreMemory}/client/index.d.ts +0 -0
  447. /package/dist/api/resources/agents/resources/{memory/resources/messages → coreMemory}/client/index.js +0 -0
  448. /package/dist/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.d.ts +0 -0
  449. /package/dist/api/resources/agents/resources/{memory/resources/messages → coreMemory}/index.js +0 -0
  450. /package/dist/api/resources/agents/resources/{memory → memoryVariables}/client/index.d.ts +0 -0
  451. /package/dist/api/resources/agents/resources/{memoryBlocks → memoryVariables}/client/index.js +0 -0
  452. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItem.js → resources/memoryVariables/types/MemoryVariablesGetResponse.js} +0 -0
  453. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItemName.js → resources/templates/client/requests/TemplatesCreateRequest.js} +0 -0
  454. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItemOrderBy.js → resources/templates/client/requests/TemplatesCreateVersionRequest.js} +0 -0
  455. /package/dist/api/resources/agents/{types/AgentsSearchDeployedAgentsRequestSearchItemVersion.js → resources/templates/client/requests/TemplatesMigrateRequest.js} +0 -0
  456. /package/dist/api/resources/{agents/resources/memoryBlocks → providers}/index.d.ts +0 -0
  457. /package/dist/api/resources/{agents/resources/memoryBlocks → providers}/index.js +0 -0
  458. /package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/index.d.ts +0 -0
  459. /package/dist/serialization/resources/agents/resources/{memory/resources/messages → coreMemory}/index.js +0 -0
  460. /package/{serialization/resources/agents/resources/memory/resources/messages → dist/serialization/resources/providers}/index.d.ts +0 -0
  461. /package/{serialization/resources/agents/resources/memory/resources/messages → dist/serialization/resources/providers}/index.js +0 -0
@@ -0,0 +1,336 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
+ return new (P || (P = Promise))(function (resolve, reject) {
31
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
32
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
33
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
34
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
35
+ });
36
+ };
37
+ var __importDefault = (this && this.__importDefault) || function (mod) {
38
+ return (mod && mod.__esModule) ? mod : { "default": mod };
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.Providers = void 0;
42
+ const environments = __importStar(require("../../../../environments"));
43
+ const core = __importStar(require("../../../../core"));
44
+ const Letta = __importStar(require("../../../index"));
45
+ const url_join_1 = __importDefault(require("url-join"));
46
+ const serializers = __importStar(require("../../../../serialization/index"));
47
+ const errors = __importStar(require("../../../../errors/index"));
48
+ class Providers {
49
+ constructor(_options = {}) {
50
+ this._options = _options;
51
+ }
52
+ /**
53
+ * Get a list of all custom providers in the database
54
+ *
55
+ * @param {Letta.ListProvidersRequest} request
56
+ * @param {Providers.RequestOptions} requestOptions - Request-specific configuration.
57
+ *
58
+ * @throws {@link Letta.UnprocessableEntityError}
59
+ *
60
+ * @example
61
+ * await client.providers.listProviders()
62
+ */
63
+ listProviders(request = {}, requestOptions) {
64
+ var _a, _b;
65
+ return __awaiter(this, void 0, void 0, function* () {
66
+ const { cursor, limit } = request;
67
+ const _queryParams = {};
68
+ if (cursor != null) {
69
+ _queryParams["cursor"] = cursor;
70
+ }
71
+ if (limit != null) {
72
+ _queryParams["limit"] = limit.toString();
73
+ }
74
+ const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
75
+ url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, "v1/providers/"),
76
+ method: "GET",
77
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
78
+ contentType: "application/json",
79
+ queryParameters: _queryParams,
80
+ requestType: "json",
81
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
82
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
83
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
84
+ });
85
+ if (_response.ok) {
86
+ return serializers.providers.listProviders.Response.parseOrThrow(_response.body, {
87
+ unrecognizedObjectKeys: "passthrough",
88
+ allowUnrecognizedUnionMembers: true,
89
+ allowUnrecognizedEnumValues: true,
90
+ skipValidation: true,
91
+ breadcrumbsPrefix: ["response"],
92
+ });
93
+ }
94
+ if (_response.error.reason === "status-code") {
95
+ switch (_response.error.statusCode) {
96
+ case 422:
97
+ throw new Letta.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
98
+ unrecognizedObjectKeys: "passthrough",
99
+ allowUnrecognizedUnionMembers: true,
100
+ allowUnrecognizedEnumValues: true,
101
+ skipValidation: true,
102
+ breadcrumbsPrefix: ["response"],
103
+ }));
104
+ default:
105
+ throw new errors.LettaError({
106
+ statusCode: _response.error.statusCode,
107
+ body: _response.error.body,
108
+ });
109
+ }
110
+ }
111
+ switch (_response.error.reason) {
112
+ case "non-json":
113
+ throw new errors.LettaError({
114
+ statusCode: _response.error.statusCode,
115
+ body: _response.error.rawBody,
116
+ });
117
+ case "timeout":
118
+ throw new errors.LettaTimeoutError("Timeout exceeded when calling GET /v1/providers/.");
119
+ case "unknown":
120
+ throw new errors.LettaError({
121
+ message: _response.error.errorMessage,
122
+ });
123
+ }
124
+ });
125
+ }
126
+ /**
127
+ * Create a new custom provider
128
+ *
129
+ * @param {Letta.ProviderCreate} request
130
+ * @param {Providers.RequestOptions} requestOptions - Request-specific configuration.
131
+ *
132
+ * @throws {@link Letta.UnprocessableEntityError}
133
+ *
134
+ * @example
135
+ * await client.providers.createProvider({
136
+ * name: "name",
137
+ * apiKey: "api_key"
138
+ * })
139
+ */
140
+ createProvider(request, requestOptions) {
141
+ var _a, _b;
142
+ return __awaiter(this, void 0, void 0, function* () {
143
+ const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
144
+ url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, "v1/providers/"),
145
+ method: "POST",
146
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
147
+ contentType: "application/json",
148
+ requestType: "json",
149
+ body: serializers.ProviderCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
150
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
151
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
152
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
153
+ });
154
+ if (_response.ok) {
155
+ return serializers.Provider.parseOrThrow(_response.body, {
156
+ unrecognizedObjectKeys: "passthrough",
157
+ allowUnrecognizedUnionMembers: true,
158
+ allowUnrecognizedEnumValues: true,
159
+ skipValidation: true,
160
+ breadcrumbsPrefix: ["response"],
161
+ });
162
+ }
163
+ if (_response.error.reason === "status-code") {
164
+ switch (_response.error.statusCode) {
165
+ case 422:
166
+ throw new Letta.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
167
+ unrecognizedObjectKeys: "passthrough",
168
+ allowUnrecognizedUnionMembers: true,
169
+ allowUnrecognizedEnumValues: true,
170
+ skipValidation: true,
171
+ breadcrumbsPrefix: ["response"],
172
+ }));
173
+ default:
174
+ throw new errors.LettaError({
175
+ statusCode: _response.error.statusCode,
176
+ body: _response.error.body,
177
+ });
178
+ }
179
+ }
180
+ switch (_response.error.reason) {
181
+ case "non-json":
182
+ throw new errors.LettaError({
183
+ statusCode: _response.error.statusCode,
184
+ body: _response.error.rawBody,
185
+ });
186
+ case "timeout":
187
+ throw new errors.LettaTimeoutError("Timeout exceeded when calling POST /v1/providers/.");
188
+ case "unknown":
189
+ throw new errors.LettaError({
190
+ message: _response.error.errorMessage,
191
+ });
192
+ }
193
+ });
194
+ }
195
+ /**
196
+ * Update an existing custom provider
197
+ *
198
+ * @param {Letta.ProviderUpdate} request
199
+ * @param {Providers.RequestOptions} requestOptions - Request-specific configuration.
200
+ *
201
+ * @throws {@link Letta.UnprocessableEntityError}
202
+ *
203
+ * @example
204
+ * await client.providers.updateProvider({
205
+ * id: "id",
206
+ * apiKey: "api_key"
207
+ * })
208
+ */
209
+ updateProvider(request, requestOptions) {
210
+ var _a, _b;
211
+ return __awaiter(this, void 0, void 0, function* () {
212
+ const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
213
+ url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, "v1/providers/"),
214
+ method: "PUT",
215
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
216
+ contentType: "application/json",
217
+ requestType: "json",
218
+ body: serializers.ProviderUpdate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
219
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
220
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
221
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
222
+ });
223
+ if (_response.ok) {
224
+ return serializers.Provider.parseOrThrow(_response.body, {
225
+ unrecognizedObjectKeys: "passthrough",
226
+ allowUnrecognizedUnionMembers: true,
227
+ allowUnrecognizedEnumValues: true,
228
+ skipValidation: true,
229
+ breadcrumbsPrefix: ["response"],
230
+ });
231
+ }
232
+ if (_response.error.reason === "status-code") {
233
+ switch (_response.error.statusCode) {
234
+ case 422:
235
+ throw new Letta.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
236
+ unrecognizedObjectKeys: "passthrough",
237
+ allowUnrecognizedUnionMembers: true,
238
+ allowUnrecognizedEnumValues: true,
239
+ skipValidation: true,
240
+ breadcrumbsPrefix: ["response"],
241
+ }));
242
+ default:
243
+ throw new errors.LettaError({
244
+ statusCode: _response.error.statusCode,
245
+ body: _response.error.body,
246
+ });
247
+ }
248
+ }
249
+ switch (_response.error.reason) {
250
+ case "non-json":
251
+ throw new errors.LettaError({
252
+ statusCode: _response.error.statusCode,
253
+ body: _response.error.rawBody,
254
+ });
255
+ case "timeout":
256
+ throw new errors.LettaTimeoutError("Timeout exceeded when calling PUT /v1/providers/.");
257
+ case "unknown":
258
+ throw new errors.LettaError({
259
+ message: _response.error.errorMessage,
260
+ });
261
+ }
262
+ });
263
+ }
264
+ /**
265
+ * Delete an existing custom provider
266
+ *
267
+ * @param {Letta.DeleteProviderRequest} request
268
+ * @param {Providers.RequestOptions} requestOptions - Request-specific configuration.
269
+ *
270
+ * @throws {@link Letta.UnprocessableEntityError}
271
+ *
272
+ * @example
273
+ * await client.providers.deleteProvider({
274
+ * providerId: "provider_id"
275
+ * })
276
+ */
277
+ deleteProvider(request, requestOptions) {
278
+ var _a, _b;
279
+ return __awaiter(this, void 0, void 0, function* () {
280
+ const { providerId } = request;
281
+ const _queryParams = {};
282
+ _queryParams["provider_id"] = providerId;
283
+ const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
284
+ url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, "v1/providers/"),
285
+ method: "DELETE",
286
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
287
+ contentType: "application/json",
288
+ queryParameters: _queryParams,
289
+ requestType: "json",
290
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
291
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
292
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
293
+ });
294
+ if (_response.ok) {
295
+ return _response.body;
296
+ }
297
+ if (_response.error.reason === "status-code") {
298
+ switch (_response.error.statusCode) {
299
+ case 422:
300
+ throw new Letta.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
301
+ unrecognizedObjectKeys: "passthrough",
302
+ allowUnrecognizedUnionMembers: true,
303
+ allowUnrecognizedEnumValues: true,
304
+ skipValidation: true,
305
+ breadcrumbsPrefix: ["response"],
306
+ }));
307
+ default:
308
+ throw new errors.LettaError({
309
+ statusCode: _response.error.statusCode,
310
+ body: _response.error.body,
311
+ });
312
+ }
313
+ }
314
+ switch (_response.error.reason) {
315
+ case "non-json":
316
+ throw new errors.LettaError({
317
+ statusCode: _response.error.statusCode,
318
+ body: _response.error.rawBody,
319
+ });
320
+ case "timeout":
321
+ throw new errors.LettaTimeoutError("Timeout exceeded when calling DELETE /v1/providers/.");
322
+ case "unknown":
323
+ throw new errors.LettaError({
324
+ message: _response.error.errorMessage,
325
+ });
326
+ }
327
+ });
328
+ }
329
+ _getCustomAuthorizationHeaders() {
330
+ return __awaiter(this, void 0, void 0, function* () {
331
+ const tokenValue = yield core.Supplier.get(this._options.token);
332
+ return { Authorization: `Bearer ${tokenValue}` };
333
+ });
334
+ }
335
+ }
336
+ exports.Providers = Providers;
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {
7
+ * providerId: "provider_id"
8
+ * }
9
+ */
10
+ export interface DeleteProviderRequest {
11
+ /**
12
+ * The provider_id key to be deleted.
13
+ */
14
+ providerId: string;
15
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {}
7
+ */
8
+ export interface ListProvidersRequest {
9
+ cursor?: string;
10
+ limit?: number;
11
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {
7
+ * name: "name",
8
+ * apiKey: "api_key"
9
+ * }
10
+ */
11
+ export interface ProviderCreate {
12
+ /** The name of the provider. */
13
+ name: string;
14
+ /** API key used for requests to the provider. */
15
+ apiKey: string;
16
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {
7
+ * id: "id",
8
+ * apiKey: "api_key"
9
+ * }
10
+ */
11
+ export interface ProviderUpdate {
12
+ /** The id of the provider to update. */
13
+ id: string;
14
+ /** API key used for requests to the provider. */
15
+ apiKey: string;
16
+ }
@@ -0,0 +1,4 @@
1
+ export { type ListProvidersRequest } from "./ListProvidersRequest";
2
+ export { type ProviderCreate } from "./ProviderCreate";
3
+ export { type ProviderUpdate } from "./ProviderUpdate";
4
+ export { type DeleteProviderRequest } from "./DeleteProviderRequest";
@@ -76,7 +76,7 @@ class Sources {
76
76
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
77
77
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}`),
78
78
  method: "GET",
79
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
79
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
80
80
  contentType: "application/json",
81
81
  requestType: "json",
82
82
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -141,7 +141,7 @@ class Sources {
141
141
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
142
142
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}`),
143
143
  method: "DELETE",
144
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
144
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
145
145
  contentType: "application/json",
146
146
  requestType: "json",
147
147
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -201,7 +201,7 @@ class Sources {
201
201
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
202
202
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}`),
203
203
  method: "PATCH",
204
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
204
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
205
205
  contentType: "application/json",
206
206
  requestType: "json",
207
207
  body: serializers.SourceUpdate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -267,7 +267,7 @@ class Sources {
267
267
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
268
268
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/name/${encodeURIComponent(sourceName)}`),
269
269
  method: "GET",
270
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
270
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
271
271
  contentType: "application/json",
272
272
  requestType: "json",
273
273
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -331,7 +331,7 @@ class Sources {
331
331
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
332
332
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, "v1/sources/"),
333
333
  method: "GET",
334
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
334
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
335
335
  contentType: "application/json",
336
336
  requestType: "json",
337
337
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -398,7 +398,7 @@ class Sources {
398
398
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
399
399
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, "v1/sources/"),
400
400
  method: "POST",
401
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
401
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
402
402
  contentType: "application/json",
403
403
  requestType: "json",
404
404
  body: serializers.SourceCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -470,7 +470,7 @@ class Sources {
470
470
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
471
471
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}/attach`),
472
472
  method: "POST",
473
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
473
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
474
474
  contentType: "application/json",
475
475
  queryParameters: _queryParams,
476
476
  requestType: "json",
@@ -542,7 +542,7 @@ class Sources {
542
542
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
543
543
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}/detach`),
544
544
  method: "POST",
545
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
545
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
546
546
  contentType: "application/json",
547
547
  queryParameters: _queryParams,
548
548
  requestType: "json",
@@ -70,7 +70,7 @@ class Files {
70
70
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
71
71
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}/upload`),
72
72
  method: "POST",
73
- headers: Object.assign(Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
73
+ headers: Object.assign(Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
74
74
  requestType: "file",
75
75
  duplex: _maybeEncodedRequest.duplex,
76
76
  body: _maybeEncodedRequest.body,
@@ -145,7 +145,7 @@ class Files {
145
145
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
146
146
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}/files`),
147
147
  method: "GET",
148
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
148
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
149
149
  contentType: "application/json",
150
150
  queryParameters: _queryParams,
151
151
  requestType: "json",
@@ -212,7 +212,7 @@ class Files {
212
212
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
213
213
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}/${encodeURIComponent(fileId)}`),
214
214
  method: "DELETE",
215
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
215
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
216
216
  contentType: "application/json",
217
217
  requestType: "json",
218
218
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -66,7 +66,7 @@ class Passages {
66
66
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
67
67
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.LettaEnvironment.LettaCloud, `v1/sources/${encodeURIComponent(sourceId)}/passages`),
68
68
  method: "GET",
69
- headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.5", "User-Agent": "@letta-ai/letta-client/0.1.5", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
69
+ headers: Object.assign(Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@letta-ai/letta-client", "X-Fern-SDK-Version": "0.1.7", "User-Agent": "@letta-ai/letta-client/0.1.7", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
70
70
  contentType: "application/json",
71
71
  requestType: "json",
72
72
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -135,7 +135,9 @@ export declare class Tools {
135
135
  * @example
136
136
  * await client.tools.runToolFromSource({
137
137
  * sourceCode: "source_code",
138
- * args: "args"
138
+ * args: {
139
+ * "key": "value"
140
+ * }
139
141
  * })
140
142
  */
141
143
  runToolFromSource(request: Letta.ToolRunFromSource, requestOptions?: Tools.RequestOptions): Promise<Letta.ToolReturnMessage>;