@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
@@ -1,31 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue = core.serialization.enum_(["created_at", "updated_at"]);
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsSearchDeployedAgentsRequestSearchItemVersion: core.serialization.ObjectSchema<serializers.AgentsSearchDeployedAgentsRequestSearchItemVersion.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemVersion>;
8
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemVersion {
9
- interface Raw {
10
- value: string;
11
- }
12
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../index";
5
- import * as Letta from "../../../../../api/index";
6
- import * as core from "../../../../../core";
7
- export declare const AgentsCreateTemplateFromAgentRequest: core.serialization.Schema<serializers.AgentsCreateTemplateFromAgentRequest.Raw, Letta.AgentsCreateTemplateFromAgentRequest>;
8
- export declare namespace AgentsCreateTemplateFromAgentRequest {
9
- interface Raw {
10
- project_id?: string | null;
11
- }
12
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../index";
5
- import * as Letta from "../../../../../api/index";
6
- import * as core from "../../../../../core";
7
- export declare const AgentsCreateVersionRequest: core.serialization.Schema<serializers.AgentsCreateVersionRequest.Raw, Omit<Letta.AgentsCreateVersionRequest, "returnAgentState">>;
8
- export declare namespace AgentsCreateVersionRequest {
9
- interface Raw {
10
- migrate_deployed_agents?: boolean | null;
11
- }
12
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../index";
5
- import * as Letta from "../../../../../api/index";
6
- import * as core from "../../../../../core";
7
- export declare const AgentsMigrateRequest: core.serialization.Schema<serializers.AgentsMigrateRequest.Raw, Letta.AgentsMigrateRequest>;
8
- export declare namespace AgentsMigrateRequest {
9
- interface Raw {
10
- to_template: string;
11
- variables?: Record<string, string> | null;
12
- preserve_core_memories: boolean;
13
- }
14
- }
@@ -1,18 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../index";
5
- import * as Letta from "../../../../../api/index";
6
- import * as core from "../../../../../core";
7
- import { AgentsSearchDeployedAgentsRequestSearchItem } from "../../types/AgentsSearchDeployedAgentsRequestSearchItem";
8
- import { AgentsSearchDeployedAgentsRequestCombinator } from "../../types/AgentsSearchDeployedAgentsRequestCombinator";
9
- export declare const AgentsSearchDeployedAgentsRequest: core.serialization.Schema<serializers.AgentsSearchDeployedAgentsRequest.Raw, Letta.AgentsSearchDeployedAgentsRequest>;
10
- export declare namespace AgentsSearchDeployedAgentsRequest {
11
- interface Raw {
12
- search?: AgentsSearchDeployedAgentsRequestSearchItem.Raw[] | null;
13
- project_id?: string | null;
14
- combinator?: AgentsSearchDeployedAgentsRequestCombinator.Raw | null;
15
- limit?: number | null;
16
- offset?: number | null;
17
- }
18
- }
@@ -1 +0,0 @@
1
- export * from "./resources";
@@ -1,17 +0,0 @@
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("./resources"), exports);
@@ -1 +0,0 @@
1
- export * as messages from "./messages";
@@ -1,27 +0,0 @@
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.messages = void 0;
27
- exports.messages = __importStar(require("./messages"));
@@ -1,11 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../../../../index";
5
- import * as Letta from "../../../../../../../../api/index";
6
- import * as core from "../../../../../../../../core";
7
- import { LettaSchemasMessageMessage } from "../../../../../../../types/LettaSchemasMessageMessage";
8
- export declare const Response: core.serialization.Schema<serializers.agents.memory.messages.listInContext.Response.Raw, Letta.LettaSchemasMessageMessage[]>;
9
- export declare namespace Response {
10
- type Raw = LettaSchemasMessageMessage.Raw[];
11
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsGetAgentVariablesResponse: core.serialization.ObjectSchema<serializers.AgentsGetAgentVariablesResponse.Raw, Letta.AgentsGetAgentVariablesResponse>;
8
- export declare namespace AgentsGetAgentVariablesResponse {
9
- interface Raw {
10
- variables: Record<string, string>;
11
- }
12
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsMigrateResponse: core.serialization.ObjectSchema<serializers.AgentsMigrateResponse.Raw, Letta.AgentsMigrateResponse>;
8
- export declare namespace AgentsMigrateResponse {
9
- interface Raw {
10
- success: boolean;
11
- }
12
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsSearchDeployedAgentsRequestCombinator: core.serialization.Schema<serializers.AgentsSearchDeployedAgentsRequestCombinator.Raw, Letta.AgentsSearchDeployedAgentsRequestCombinator>;
8
- export declare namespace AgentsSearchDeployedAgentsRequestCombinator {
9
- type Raw = "AND" | "OR";
10
- }
@@ -1,31 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestCombinator = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- exports.AgentsSearchDeployedAgentsRequestCombinator = core.serialization.enum_(["AND", "OR"]);
@@ -1,22 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AgentsSearchDeployedAgentsRequestSearchItemVersion } from "./AgentsSearchDeployedAgentsRequestSearchItemVersion";
8
- import { AgentsSearchDeployedAgentsRequestSearchItemName } from "./AgentsSearchDeployedAgentsRequestSearchItemName";
9
- import { AgentsSearchDeployedAgentsRequestSearchItemOrderBy } from "./AgentsSearchDeployedAgentsRequestSearchItemOrderBy";
10
- export declare const AgentsSearchDeployedAgentsRequestSearchItem: core.serialization.Schema<serializers.AgentsSearchDeployedAgentsRequestSearchItem.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItem>;
11
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItem {
12
- type Raw = AgentsSearchDeployedAgentsRequestSearchItem.Version | AgentsSearchDeployedAgentsRequestSearchItem.Name | AgentsSearchDeployedAgentsRequestSearchItem.OrderBy;
13
- interface Version extends AgentsSearchDeployedAgentsRequestSearchItemVersion.Raw {
14
- field: "version";
15
- }
16
- interface Name extends AgentsSearchDeployedAgentsRequestSearchItemName.Raw {
17
- field: "name";
18
- }
19
- interface OrderBy extends AgentsSearchDeployedAgentsRequestSearchItemOrderBy.Raw {
20
- field: "order_by";
21
- }
22
- }
@@ -1,43 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItem = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- const AgentsSearchDeployedAgentsRequestSearchItemVersion_1 = require("./AgentsSearchDeployedAgentsRequestSearchItemVersion");
32
- const AgentsSearchDeployedAgentsRequestSearchItemName_1 = require("./AgentsSearchDeployedAgentsRequestSearchItemName");
33
- const AgentsSearchDeployedAgentsRequestSearchItemOrderBy_1 = require("./AgentsSearchDeployedAgentsRequestSearchItemOrderBy");
34
- exports.AgentsSearchDeployedAgentsRequestSearchItem = core.serialization
35
- .union("field", {
36
- version: AgentsSearchDeployedAgentsRequestSearchItemVersion_1.AgentsSearchDeployedAgentsRequestSearchItemVersion,
37
- name: AgentsSearchDeployedAgentsRequestSearchItemName_1.AgentsSearchDeployedAgentsRequestSearchItemName,
38
- order_by: AgentsSearchDeployedAgentsRequestSearchItemOrderBy_1.AgentsSearchDeployedAgentsRequestSearchItemOrderBy,
39
- })
40
- .transform({
41
- transform: (value) => value,
42
- untransform: (value) => value,
43
- });
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AgentsSearchDeployedAgentsRequestSearchItemNameOperator } from "./AgentsSearchDeployedAgentsRequestSearchItemNameOperator";
8
- export declare const AgentsSearchDeployedAgentsRequestSearchItemName: core.serialization.ObjectSchema<serializers.AgentsSearchDeployedAgentsRequestSearchItemName.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemName>;
9
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemName {
10
- interface Raw {
11
- operator: AgentsSearchDeployedAgentsRequestSearchItemNameOperator.Raw;
12
- value: string;
13
- }
14
- }
@@ -1,35 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItemName = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- const AgentsSearchDeployedAgentsRequestSearchItemNameOperator_1 = require("./AgentsSearchDeployedAgentsRequestSearchItemNameOperator");
32
- exports.AgentsSearchDeployedAgentsRequestSearchItemName = core.serialization.object({
33
- operator: AgentsSearchDeployedAgentsRequestSearchItemNameOperator_1.AgentsSearchDeployedAgentsRequestSearchItemNameOperator,
34
- value: core.serialization.string(),
35
- });
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsSearchDeployedAgentsRequestSearchItemNameOperator: core.serialization.Schema<serializers.AgentsSearchDeployedAgentsRequestSearchItemNameOperator.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemNameOperator>;
8
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemNameOperator {
9
- type Raw = "eq" | "neq" | "contains";
10
- }
@@ -1,31 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItemNameOperator = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- exports.AgentsSearchDeployedAgentsRequestSearchItemNameOperator = core.serialization.enum_(["eq", "neq", "contains"]);
@@ -1,15 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- import { AgentsSearchDeployedAgentsRequestSearchItemOrderByValue } from "./AgentsSearchDeployedAgentsRequestSearchItemOrderByValue";
8
- import { AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection } from "./AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection";
9
- export declare const AgentsSearchDeployedAgentsRequestSearchItemOrderBy: core.serialization.ObjectSchema<serializers.AgentsSearchDeployedAgentsRequestSearchItemOrderBy.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemOrderBy>;
10
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemOrderBy {
11
- interface Raw {
12
- value: AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.Raw;
13
- direction: AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.Raw;
14
- }
15
- }
@@ -1,36 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderBy = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- const AgentsSearchDeployedAgentsRequestSearchItemOrderByValue_1 = require("./AgentsSearchDeployedAgentsRequestSearchItemOrderByValue");
32
- const AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection_1 = require("./AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection");
33
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderBy = core.serialization.object({
34
- value: AgentsSearchDeployedAgentsRequestSearchItemOrderByValue_1.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue,
35
- direction: AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection_1.AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection,
36
- });
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection: core.serialization.Schema<serializers.AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection>;
8
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection {
9
- type Raw = "asc" | "desc";
10
- }
@@ -1,31 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderByDirection = core.serialization.enum_(["asc", "desc"]);
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsSearchDeployedAgentsRequestSearchItemOrderByValue: core.serialization.Schema<serializers.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue>;
8
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemOrderByValue {
9
- type Raw = "created_at" | "updated_at";
10
- }
@@ -1,31 +0,0 @@
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
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue = void 0;
30
- const core = __importStar(require("../../../../core"));
31
- exports.AgentsSearchDeployedAgentsRequestSearchItemOrderByValue = core.serialization.enum_(["created_at", "updated_at"]);
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../index";
5
- import * as Letta from "../../../../api/index";
6
- import * as core from "../../../../core";
7
- export declare const AgentsSearchDeployedAgentsRequestSearchItemVersion: core.serialization.ObjectSchema<serializers.AgentsSearchDeployedAgentsRequestSearchItemVersion.Raw, Letta.AgentsSearchDeployedAgentsRequestSearchItemVersion>;
8
- export declare namespace AgentsSearchDeployedAgentsRequestSearchItemVersion {
9
- interface Raw {
10
- value: string;
11
- }
12
- }