@airweave/sdk 0.9.42 → 0.9.44

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 (340) hide show
  1. package/dist/cjs/Client.js +2 -2
  2. package/dist/cjs/api/resources/collections/client/Client.d.ts +53 -0
  3. package/dist/cjs/api/resources/collections/client/Client.js +261 -0
  4. package/dist/cjs/api/{types → resources/collections/client/requests}/ClassicSearchRequest.d.ts +5 -2
  5. package/dist/cjs/api/{types → resources/collections/client/requests}/InstantSearchRequest.d.ts +5 -2
  6. package/dist/cjs/api/resources/collections/client/requests/index.d.ts +2 -0
  7. package/dist/cjs/api/types/AgenticSearchDoneEvent.d.ts +25 -0
  8. package/dist/cjs/api/types/AgenticSearchErrorEvent.d.ts +8 -0
  9. package/dist/cjs/api/types/AgenticSearchEvent.d.ts +25 -0
  10. package/dist/cjs/api/types/AgenticSearchRerankingEvent.d.ts +16 -0
  11. package/dist/cjs/api/types/AgenticSearchStartedEvent.d.ts +12 -0
  12. package/dist/cjs/api/types/AgenticSearchThinkingEvent.d.ts +18 -0
  13. package/dist/cjs/api/types/AgenticSearchToolCallEvent.d.ts +38 -0
  14. package/dist/cjs/api/types/AgenticSearchToolCallEvent.js +21 -0
  15. package/dist/cjs/api/types/CollectToolStats.d.ts +15 -0
  16. package/dist/cjs/api/types/CountToolStats.d.ts +10 -0
  17. package/dist/cjs/api/types/EntitySummary.d.ts +5 -0
  18. package/dist/cjs/api/types/ErrorToolStats.d.ts +9 -0
  19. package/dist/cjs/api/types/FinishToolStats.d.ts +13 -0
  20. package/dist/cjs/api/types/NavigateToolStats.d.ts +13 -0
  21. package/dist/cjs/api/types/ReadToolStats.d.ts +15 -0
  22. package/dist/cjs/api/types/RetrievalStrategy.d.ts +4 -4
  23. package/dist/cjs/api/types/RetrievalStrategy.js +2 -2
  24. package/dist/cjs/api/types/ReviewToolStats.d.ts +12 -0
  25. package/dist/cjs/api/types/SearchToolStats.d.ts +14 -0
  26. package/dist/cjs/api/types/index.d.ts +15 -68
  27. package/dist/cjs/api/types/index.js +15 -68
  28. package/dist/cjs/core/index.d.ts +1 -0
  29. package/dist/cjs/core/index.js +1 -0
  30. package/dist/cjs/core/stream/Stream.d.ts +46 -0
  31. package/dist/cjs/core/stream/Stream.js +169 -0
  32. package/dist/cjs/core/stream/index.d.ts +1 -0
  33. package/dist/cjs/core/stream/index.js +5 -0
  34. package/dist/cjs/version.d.ts +1 -1
  35. package/dist/cjs/version.js +1 -1
  36. package/dist/esm/Client.mjs +2 -2
  37. package/dist/esm/api/resources/collections/client/Client.d.mts +53 -0
  38. package/dist/esm/api/resources/collections/client/Client.mjs +261 -0
  39. package/dist/esm/api/{types → resources/collections/client/requests}/ClassicSearchRequest.d.mts +5 -2
  40. package/dist/esm/api/{types → resources/collections/client/requests}/InstantSearchRequest.d.mts +5 -2
  41. package/dist/esm/api/resources/collections/client/requests/index.d.mts +2 -0
  42. package/dist/esm/api/types/AgenticSearchDoneEvent.d.mts +25 -0
  43. package/dist/esm/api/types/AgenticSearchErrorEvent.d.mts +8 -0
  44. package/dist/esm/api/types/AgenticSearchEvent.d.mts +25 -0
  45. package/dist/esm/api/types/AgenticSearchRerankingEvent.d.mts +16 -0
  46. package/dist/esm/api/types/AgenticSearchStartedEvent.d.mts +12 -0
  47. package/dist/esm/api/types/AgenticSearchThinkingEvent.d.mts +18 -0
  48. package/dist/esm/api/types/AgenticSearchToolCallEvent.d.mts +38 -0
  49. package/dist/esm/api/types/AgenticSearchToolCallEvent.mjs +18 -0
  50. package/dist/esm/api/types/CollectToolStats.d.mts +15 -0
  51. package/dist/esm/api/types/CountToolStats.d.mts +10 -0
  52. package/dist/esm/api/types/EntitySummary.d.mts +5 -0
  53. package/dist/esm/api/types/ErrorToolStats.d.mts +9 -0
  54. package/dist/esm/api/types/FinishToolStats.d.mts +13 -0
  55. package/dist/esm/api/types/NavigateToolStats.d.mts +13 -0
  56. package/dist/esm/api/types/ReadToolStats.d.mts +15 -0
  57. package/dist/esm/api/types/RetrievalStrategy.d.mts +4 -4
  58. package/dist/esm/api/types/RetrievalStrategy.mjs +2 -2
  59. package/dist/esm/api/types/ReviewToolStats.d.mts +12 -0
  60. package/dist/esm/api/types/SearchToolStats.d.mts +14 -0
  61. package/dist/esm/api/types/index.d.mts +15 -68
  62. package/dist/esm/api/types/index.mjs +15 -68
  63. package/dist/esm/core/index.d.mts +1 -0
  64. package/dist/esm/core/index.mjs +1 -0
  65. package/dist/esm/core/stream/Stream.d.mts +46 -0
  66. package/dist/esm/core/stream/Stream.mjs +164 -0
  67. package/dist/esm/core/stream/index.d.mts +1 -0
  68. package/dist/esm/core/stream/index.mjs +1 -0
  69. package/dist/esm/version.d.mts +1 -1
  70. package/dist/esm/version.mjs +1 -1
  71. package/package.json +1 -1
  72. package/reference.md +295 -0
  73. package/dist/cjs/api/types/ActionCheckRequest.d.ts +0 -10
  74. package/dist/cjs/api/types/ActionCheckResponse.d.ts +0 -10
  75. package/dist/cjs/api/types/AdminSearchDestination.d.ts +0 -7
  76. package/dist/cjs/api/types/AdminSyncInfo.d.ts +0 -36
  77. package/dist/cjs/api/types/ApiKey.d.ts +0 -17
  78. package/dist/cjs/api/types/ApiKeyCreate.d.ts +0 -10
  79. package/dist/cjs/api/types/AuthProviderConnection.d.ts +0 -23
  80. package/dist/cjs/api/types/AuthProviderConnectionCreate.d.ts +0 -19
  81. package/dist/cjs/api/types/AuthProviderConnectionUpdate.d.ts +0 -15
  82. package/dist/cjs/api/types/AuthProviderMetadata.d.ts +0 -17
  83. package/dist/cjs/api/types/BillingPeriod.d.ts +0 -30
  84. package/dist/cjs/api/types/BillingPeriodStatus.d.ts +0 -14
  85. package/dist/cjs/api/types/BillingPeriodStatus.js +0 -13
  86. package/dist/cjs/api/types/BillingPeriodUsage.d.ts +0 -27
  87. package/dist/cjs/api/types/BillingPlan.d.ts +0 -14
  88. package/dist/cjs/api/types/BillingPlan.js +0 -13
  89. package/dist/cjs/api/types/BillingStatus.d.ts +0 -16
  90. package/dist/cjs/api/types/BillingStatus.js +0 -15
  91. package/dist/cjs/api/types/BillingTransition.d.ts +0 -15
  92. package/dist/cjs/api/types/BillingTransition.js +0 -14
  93. package/dist/cjs/api/types/BodyChangeMemberRoleOrganizationsOrganizationIdMembersUserIdPatch.d.ts +0 -6
  94. package/dist/cjs/api/types/BodyResyncWithExecutionConfigAdminResyncSyncIdPost.d.ts +0 -10
  95. package/dist/cjs/api/types/BrowseNode.d.ts +0 -15
  96. package/dist/cjs/api/types/BrowseNode.js +0 -5
  97. package/dist/cjs/api/types/BrowseTreeResponse.d.ts +0 -12
  98. package/dist/cjs/api/types/BrowseTreeResponse.js +0 -5
  99. package/dist/cjs/api/types/CheckStatus.d.ts +0 -12
  100. package/dist/cjs/api/types/CheckStatus.js +0 -11
  101. package/dist/cjs/api/types/CheckoutSessionRequest.d.ts +0 -14
  102. package/dist/cjs/api/types/CheckoutSessionRequest.js +0 -5
  103. package/dist/cjs/api/types/CheckoutSessionResponse.d.ts +0 -10
  104. package/dist/cjs/api/types/CheckoutSessionResponse.js +0 -5
  105. package/dist/cjs/api/types/ConfigValues.d.ts +0 -9
  106. package/dist/cjs/api/types/ConfigValues.js +0 -5
  107. package/dist/cjs/api/types/ConnectSessionContext.d.ts +0 -26
  108. package/dist/cjs/api/types/ConnectSessionContext.js +0 -5
  109. package/dist/cjs/api/types/ConnectSessionCreate.d.ts +0 -20
  110. package/dist/cjs/api/types/ConnectSessionCreate.js +0 -5
  111. package/dist/cjs/api/types/ConnectSessionMode.d.ts +0 -18
  112. package/dist/cjs/api/types/ConnectSessionMode.js +0 -12
  113. package/dist/cjs/api/types/ConnectSessionResponse.d.ts +0 -16
  114. package/dist/cjs/api/types/ConnectSessionResponse.js +0 -5
  115. package/dist/cjs/api/types/CustomerPortalRequest.d.ts +0 -10
  116. package/dist/cjs/api/types/CustomerPortalRequest.js +0 -5
  117. package/dist/cjs/api/types/CustomerPortalResponse.d.ts +0 -10
  118. package/dist/cjs/api/types/CustomerPortalResponse.js +0 -5
  119. package/dist/cjs/api/types/DependencyCheck.d.ts +0 -12
  120. package/dist/cjs/api/types/DependencyCheck.js +0 -5
  121. package/dist/cjs/api/types/EntityCountWithDefinition.d.ts +0 -17
  122. package/dist/cjs/api/types/EntityCountWithDefinition.js +0 -5
  123. package/dist/cjs/api/types/EntityDefinitionMetadata.d.ts +0 -15
  124. package/dist/cjs/api/types/EntityDefinitionMetadata.js +0 -5
  125. package/dist/cjs/api/types/FeatureFlag.d.ts +0 -17
  126. package/dist/cjs/api/types/FeatureFlag.js +0 -14
  127. package/dist/cjs/api/types/InternalAgenticSearchRequest.d.ts +0 -19
  128. package/dist/cjs/api/types/InternalAgenticSearchRequest.js +0 -5
  129. package/dist/cjs/api/types/InvitationCreate.d.ts +0 -10
  130. package/dist/cjs/api/types/InvitationCreate.js +0 -5
  131. package/dist/cjs/api/types/InvitationResponse.d.ts +0 -13
  132. package/dist/cjs/api/types/InvitationResponse.js +0 -5
  133. package/dist/cjs/api/types/LivenessResponse.d.ts +0 -9
  134. package/dist/cjs/api/types/LivenessResponse.js +0 -5
  135. package/dist/cjs/api/types/MemberResponse.d.ts +0 -15
  136. package/dist/cjs/api/types/MemberResponse.js +0 -5
  137. package/dist/cjs/api/types/MessageResponse.d.ts +0 -10
  138. package/dist/cjs/api/types/MessageResponse.js +0 -5
  139. package/dist/cjs/api/types/NodeSelectionData.d.ts +0 -12
  140. package/dist/cjs/api/types/NodeSelectionData.js +0 -5
  141. package/dist/cjs/api/types/NodeSelectionRequest.d.ts +0 -10
  142. package/dist/cjs/api/types/NodeSelectionRequest.js +0 -5
  143. package/dist/cjs/api/types/NodeSelectionResponse.d.ts +0 -14
  144. package/dist/cjs/api/types/NodeSelectionResponse.js +0 -5
  145. package/dist/cjs/api/types/Organization.d.ts +0 -29
  146. package/dist/cjs/api/types/Organization.js +0 -5
  147. package/dist/cjs/api/types/OrganizationBilling.d.ts +0 -44
  148. package/dist/cjs/api/types/OrganizationBilling.js +0 -5
  149. package/dist/cjs/api/types/OrganizationCreate.d.ts +0 -16
  150. package/dist/cjs/api/types/OrganizationCreate.js +0 -5
  151. package/dist/cjs/api/types/OrganizationMetrics.d.ts +0 -47
  152. package/dist/cjs/api/types/OrganizationMetrics.js +0 -5
  153. package/dist/cjs/api/types/OrganizationWithRole.d.ts +0 -22
  154. package/dist/cjs/api/types/OrganizationWithRole.js +0 -5
  155. package/dist/cjs/api/types/ReadinessResponse.d.ts +0 -18
  156. package/dist/cjs/api/types/ReadinessResponse.js +0 -13
  157. package/dist/cjs/api/types/SearchRequest.d.ts +0 -34
  158. package/dist/cjs/api/types/SearchRequest.js +0 -5
  159. package/dist/cjs/api/types/SearchResponse.d.ts +0 -15
  160. package/dist/cjs/api/types/SearchResponse.js +0 -5
  161. package/dist/cjs/api/types/SingleActionCheckResponse.d.ts +0 -23
  162. package/dist/cjs/api/types/SingleActionCheckResponse.js +0 -13
  163. package/dist/cjs/api/types/SourceRateLimit.d.ts +0 -18
  164. package/dist/cjs/api/types/SourceRateLimit.js +0 -5
  165. package/dist/cjs/api/types/SourceRateLimitResponse.d.ts +0 -17
  166. package/dist/cjs/api/types/SourceRateLimitResponse.js +0 -5
  167. package/dist/cjs/api/types/SourceRateLimitUpdateRequest.d.ts +0 -12
  168. package/dist/cjs/api/types/SourceRateLimitUpdateRequest.js +0 -5
  169. package/dist/cjs/api/types/SubscriptionInfo.d.ts +0 -52
  170. package/dist/cjs/api/types/SubscriptionInfo.js +0 -5
  171. package/dist/cjs/api/types/SyncJob.d.ts +0 -33
  172. package/dist/cjs/api/types/SyncJob.js +0 -5
  173. package/dist/cjs/api/types/SyncStatus.d.ts +0 -12
  174. package/dist/cjs/api/types/SyncStatus.js +0 -11
  175. package/dist/cjs/api/types/UpdatePlanRequest.d.ts +0 -12
  176. package/dist/cjs/api/types/UpdatePlanRequest.js +0 -5
  177. package/dist/cjs/api/types/UsageDashboard.d.ts +0 -23
  178. package/dist/cjs/api/types/UsageDashboard.js +0 -5
  179. package/dist/cjs/api/types/UsageSnapshot.d.ts +0 -32
  180. package/dist/cjs/api/types/UsageSnapshot.js +0 -5
  181. package/dist/cjs/api/types/UsageTrend.d.ts +0 -14
  182. package/dist/cjs/api/types/UsageTrend.js +0 -5
  183. package/dist/cjs/api/types/User.d.ts +0 -18
  184. package/dist/cjs/api/types/User.js +0 -5
  185. package/dist/cjs/api/types/UserCreate.d.ts +0 -11
  186. package/dist/cjs/api/types/UserCreate.js +0 -5
  187. package/dist/cjs/api/types/UserOrganization.d.ts +0 -14
  188. package/dist/cjs/api/types/UserOrganization.js +0 -5
  189. package/dist/cjs/api/types/VerifyOAuthRequest.d.ts +0 -10
  190. package/dist/cjs/api/types/VerifyOAuthRequest.js +0 -5
  191. package/dist/esm/api/types/ActionCheckRequest.d.mts +0 -10
  192. package/dist/esm/api/types/ActionCheckResponse.d.mts +0 -10
  193. package/dist/esm/api/types/AdminSearchDestination.d.mts +0 -7
  194. package/dist/esm/api/types/AdminSyncInfo.d.mts +0 -36
  195. package/dist/esm/api/types/ApiKey.d.mts +0 -17
  196. package/dist/esm/api/types/ApiKeyCreate.d.mts +0 -10
  197. package/dist/esm/api/types/AuthProviderConnection.d.mts +0 -23
  198. package/dist/esm/api/types/AuthProviderConnectionCreate.d.mts +0 -19
  199. package/dist/esm/api/types/AuthProviderConnectionUpdate.d.mts +0 -15
  200. package/dist/esm/api/types/AuthProviderMetadata.d.mts +0 -17
  201. package/dist/esm/api/types/BillingPeriod.d.mts +0 -30
  202. package/dist/esm/api/types/BillingPeriodStatus.d.mts +0 -14
  203. package/dist/esm/api/types/BillingPeriodStatus.mjs +0 -10
  204. package/dist/esm/api/types/BillingPeriodUsage.d.mts +0 -27
  205. package/dist/esm/api/types/BillingPlan.d.mts +0 -14
  206. package/dist/esm/api/types/BillingPlan.mjs +0 -10
  207. package/dist/esm/api/types/BillingStatus.d.mts +0 -16
  208. package/dist/esm/api/types/BillingStatus.mjs +0 -12
  209. package/dist/esm/api/types/BillingTransition.d.mts +0 -15
  210. package/dist/esm/api/types/BillingTransition.mjs +0 -11
  211. package/dist/esm/api/types/BodyChangeMemberRoleOrganizationsOrganizationIdMembersUserIdPatch.d.mts +0 -6
  212. package/dist/esm/api/types/BodyResyncWithExecutionConfigAdminResyncSyncIdPost.d.mts +0 -10
  213. package/dist/esm/api/types/BrowseNode.d.mts +0 -15
  214. package/dist/esm/api/types/BrowseNode.mjs +0 -4
  215. package/dist/esm/api/types/BrowseTreeResponse.d.mts +0 -12
  216. package/dist/esm/api/types/BrowseTreeResponse.mjs +0 -4
  217. package/dist/esm/api/types/CheckStatus.d.mts +0 -12
  218. package/dist/esm/api/types/CheckStatus.mjs +0 -8
  219. package/dist/esm/api/types/CheckoutSessionRequest.d.mts +0 -14
  220. package/dist/esm/api/types/CheckoutSessionRequest.mjs +0 -4
  221. package/dist/esm/api/types/CheckoutSessionResponse.d.mts +0 -10
  222. package/dist/esm/api/types/CheckoutSessionResponse.mjs +0 -4
  223. package/dist/esm/api/types/ConfigValues.d.mts +0 -9
  224. package/dist/esm/api/types/ConfigValues.mjs +0 -4
  225. package/dist/esm/api/types/ConnectSessionContext.d.mts +0 -26
  226. package/dist/esm/api/types/ConnectSessionContext.mjs +0 -4
  227. package/dist/esm/api/types/ConnectSessionCreate.d.mts +0 -20
  228. package/dist/esm/api/types/ConnectSessionCreate.mjs +0 -4
  229. package/dist/esm/api/types/ConnectSessionMode.d.mts +0 -18
  230. package/dist/esm/api/types/ConnectSessionMode.mjs +0 -9
  231. package/dist/esm/api/types/ConnectSessionResponse.d.mts +0 -16
  232. package/dist/esm/api/types/ConnectSessionResponse.mjs +0 -4
  233. package/dist/esm/api/types/CustomerPortalRequest.d.mts +0 -10
  234. package/dist/esm/api/types/CustomerPortalRequest.mjs +0 -4
  235. package/dist/esm/api/types/CustomerPortalResponse.d.mts +0 -10
  236. package/dist/esm/api/types/CustomerPortalResponse.mjs +0 -4
  237. package/dist/esm/api/types/DependencyCheck.d.mts +0 -12
  238. package/dist/esm/api/types/DependencyCheck.mjs +0 -4
  239. package/dist/esm/api/types/EntityCountWithDefinition.d.mts +0 -17
  240. package/dist/esm/api/types/EntityCountWithDefinition.mjs +0 -4
  241. package/dist/esm/api/types/EntityDefinitionMetadata.d.mts +0 -15
  242. package/dist/esm/api/types/EntityDefinitionMetadata.mjs +0 -4
  243. package/dist/esm/api/types/FeatureFlag.d.mts +0 -17
  244. package/dist/esm/api/types/FeatureFlag.mjs +0 -11
  245. package/dist/esm/api/types/InternalAgenticSearchRequest.d.mts +0 -19
  246. package/dist/esm/api/types/InternalAgenticSearchRequest.mjs +0 -4
  247. package/dist/esm/api/types/InvitationCreate.d.mts +0 -10
  248. package/dist/esm/api/types/InvitationCreate.mjs +0 -4
  249. package/dist/esm/api/types/InvitationResponse.d.mts +0 -13
  250. package/dist/esm/api/types/InvitationResponse.mjs +0 -4
  251. package/dist/esm/api/types/LivenessResponse.d.mts +0 -9
  252. package/dist/esm/api/types/LivenessResponse.mjs +0 -4
  253. package/dist/esm/api/types/MemberResponse.d.mts +0 -15
  254. package/dist/esm/api/types/MemberResponse.mjs +0 -4
  255. package/dist/esm/api/types/MessageResponse.d.mts +0 -10
  256. package/dist/esm/api/types/MessageResponse.mjs +0 -4
  257. package/dist/esm/api/types/NodeSelectionData.d.mts +0 -12
  258. package/dist/esm/api/types/NodeSelectionData.mjs +0 -4
  259. package/dist/esm/api/types/NodeSelectionRequest.d.mts +0 -10
  260. package/dist/esm/api/types/NodeSelectionRequest.mjs +0 -4
  261. package/dist/esm/api/types/NodeSelectionResponse.d.mts +0 -14
  262. package/dist/esm/api/types/NodeSelectionResponse.mjs +0 -4
  263. package/dist/esm/api/types/Organization.d.mts +0 -29
  264. package/dist/esm/api/types/Organization.mjs +0 -4
  265. package/dist/esm/api/types/OrganizationBilling.d.mts +0 -44
  266. package/dist/esm/api/types/OrganizationBilling.mjs +0 -4
  267. package/dist/esm/api/types/OrganizationCreate.d.mts +0 -16
  268. package/dist/esm/api/types/OrganizationCreate.mjs +0 -4
  269. package/dist/esm/api/types/OrganizationMetrics.d.mts +0 -47
  270. package/dist/esm/api/types/OrganizationMetrics.mjs +0 -4
  271. package/dist/esm/api/types/OrganizationWithRole.d.mts +0 -22
  272. package/dist/esm/api/types/OrganizationWithRole.mjs +0 -4
  273. package/dist/esm/api/types/ReadinessResponse.d.mts +0 -18
  274. package/dist/esm/api/types/ReadinessResponse.mjs +0 -10
  275. package/dist/esm/api/types/SearchRequest.d.mts +0 -34
  276. package/dist/esm/api/types/SearchRequest.mjs +0 -4
  277. package/dist/esm/api/types/SearchResponse.d.mts +0 -15
  278. package/dist/esm/api/types/SearchResponse.mjs +0 -4
  279. package/dist/esm/api/types/SingleActionCheckResponse.d.mts +0 -23
  280. package/dist/esm/api/types/SingleActionCheckResponse.mjs +0 -10
  281. package/dist/esm/api/types/SourceRateLimit.d.mts +0 -18
  282. package/dist/esm/api/types/SourceRateLimit.mjs +0 -4
  283. package/dist/esm/api/types/SourceRateLimitResponse.d.mts +0 -17
  284. package/dist/esm/api/types/SourceRateLimitResponse.mjs +0 -4
  285. package/dist/esm/api/types/SourceRateLimitUpdateRequest.d.mts +0 -12
  286. package/dist/esm/api/types/SourceRateLimitUpdateRequest.mjs +0 -4
  287. package/dist/esm/api/types/SubscriptionInfo.d.mts +0 -52
  288. package/dist/esm/api/types/SubscriptionInfo.mjs +0 -4
  289. package/dist/esm/api/types/SyncJob.d.mts +0 -33
  290. package/dist/esm/api/types/SyncJob.mjs +0 -4
  291. package/dist/esm/api/types/SyncStatus.d.mts +0 -12
  292. package/dist/esm/api/types/SyncStatus.mjs +0 -8
  293. package/dist/esm/api/types/UpdatePlanRequest.d.mts +0 -12
  294. package/dist/esm/api/types/UpdatePlanRequest.mjs +0 -4
  295. package/dist/esm/api/types/UsageDashboard.d.mts +0 -23
  296. package/dist/esm/api/types/UsageDashboard.mjs +0 -4
  297. package/dist/esm/api/types/UsageSnapshot.d.mts +0 -32
  298. package/dist/esm/api/types/UsageSnapshot.mjs +0 -4
  299. package/dist/esm/api/types/UsageTrend.d.mts +0 -14
  300. package/dist/esm/api/types/UsageTrend.mjs +0 -4
  301. package/dist/esm/api/types/User.d.mts +0 -18
  302. package/dist/esm/api/types/User.mjs +0 -4
  303. package/dist/esm/api/types/UserCreate.d.mts +0 -11
  304. package/dist/esm/api/types/UserCreate.mjs +0 -4
  305. package/dist/esm/api/types/UserOrganization.d.mts +0 -14
  306. package/dist/esm/api/types/UserOrganization.mjs +0 -4
  307. package/dist/esm/api/types/VerifyOAuthRequest.d.mts +0 -10
  308. package/dist/esm/api/types/VerifyOAuthRequest.mjs +0 -4
  309. /package/dist/cjs/api/{types → resources/collections/client/requests}/ClassicSearchRequest.js +0 -0
  310. /package/dist/cjs/api/{types → resources/collections/client/requests}/InstantSearchRequest.js +0 -0
  311. /package/dist/cjs/api/types/{ActionCheckRequest.js → AgenticSearchDoneEvent.js} +0 -0
  312. /package/dist/cjs/api/types/{ActionCheckResponse.js → AgenticSearchErrorEvent.js} +0 -0
  313. /package/dist/cjs/api/types/{AdminSearchDestination.js → AgenticSearchEvent.js} +0 -0
  314. /package/dist/cjs/api/types/{AdminSyncInfo.js → AgenticSearchRerankingEvent.js} +0 -0
  315. /package/dist/cjs/api/types/{ApiKey.js → AgenticSearchStartedEvent.js} +0 -0
  316. /package/dist/cjs/api/types/{ApiKeyCreate.js → AgenticSearchThinkingEvent.js} +0 -0
  317. /package/dist/cjs/api/types/{AuthProviderConnection.js → CollectToolStats.js} +0 -0
  318. /package/dist/cjs/api/types/{AuthProviderConnectionCreate.js → CountToolStats.js} +0 -0
  319. /package/dist/cjs/api/types/{AuthProviderConnectionUpdate.js → ErrorToolStats.js} +0 -0
  320. /package/dist/cjs/api/types/{AuthProviderMetadata.js → FinishToolStats.js} +0 -0
  321. /package/dist/cjs/api/types/{BillingPeriod.js → NavigateToolStats.js} +0 -0
  322. /package/dist/cjs/api/types/{BillingPeriodUsage.js → ReadToolStats.js} +0 -0
  323. /package/dist/cjs/api/types/{BodyChangeMemberRoleOrganizationsOrganizationIdMembersUserIdPatch.js → ReviewToolStats.js} +0 -0
  324. /package/dist/cjs/api/types/{BodyResyncWithExecutionConfigAdminResyncSyncIdPost.js → SearchToolStats.js} +0 -0
  325. /package/dist/esm/api/{types → resources/collections/client/requests}/ClassicSearchRequest.mjs +0 -0
  326. /package/dist/esm/api/{types → resources/collections/client/requests}/InstantSearchRequest.mjs +0 -0
  327. /package/dist/esm/api/types/{ActionCheckRequest.mjs → AgenticSearchDoneEvent.mjs} +0 -0
  328. /package/dist/esm/api/types/{ActionCheckResponse.mjs → AgenticSearchErrorEvent.mjs} +0 -0
  329. /package/dist/esm/api/types/{AdminSearchDestination.mjs → AgenticSearchEvent.mjs} +0 -0
  330. /package/dist/esm/api/types/{AdminSyncInfo.mjs → AgenticSearchRerankingEvent.mjs} +0 -0
  331. /package/dist/esm/api/types/{ApiKey.mjs → AgenticSearchStartedEvent.mjs} +0 -0
  332. /package/dist/esm/api/types/{ApiKeyCreate.mjs → AgenticSearchThinkingEvent.mjs} +0 -0
  333. /package/dist/esm/api/types/{AuthProviderConnection.mjs → CollectToolStats.mjs} +0 -0
  334. /package/dist/esm/api/types/{AuthProviderConnectionCreate.mjs → CountToolStats.mjs} +0 -0
  335. /package/dist/esm/api/types/{AuthProviderConnectionUpdate.mjs → ErrorToolStats.mjs} +0 -0
  336. /package/dist/esm/api/types/{AuthProviderMetadata.mjs → FinishToolStats.mjs} +0 -0
  337. /package/dist/esm/api/types/{BillingPeriod.mjs → NavigateToolStats.mjs} +0 -0
  338. /package/dist/esm/api/types/{BillingPeriodUsage.mjs → ReadToolStats.mjs} +0 -0
  339. /package/dist/esm/api/types/{BodyChangeMemberRoleOrganizationsOrganizationIdMembersUserIdPatch.mjs → ReviewToolStats.mjs} +0 -0
  340. /package/dist/esm/api/types/{BodyResyncWithExecutionConfigAdminResyncSyncIdPost.mjs → SearchToolStats.mjs} +0 -0
@@ -402,6 +402,267 @@ export class Collections {
402
402
  }
403
403
  });
404
404
  }
405
+ /**
406
+ * Direct vector search.
407
+ *
408
+ * @param {string} readableId
409
+ * @param {AirweaveSDK.InstantSearchRequest} request
410
+ * @param {Collections.RequestOptions} requestOptions - Request-specific configuration.
411
+ *
412
+ * @throws {@link AirweaveSDK.UnprocessableEntityError}
413
+ *
414
+ * @example
415
+ * await client.collections.instantSearch("readable_id", {
416
+ * query: "query"
417
+ * })
418
+ */
419
+ instantSearch(readableId, request, requestOptions) {
420
+ return core.HttpResponsePromise.fromPromise(this.__instantSearch(readableId, request, requestOptions));
421
+ }
422
+ __instantSearch(readableId, request, requestOptions) {
423
+ return __awaiter(this, void 0, void 0, function* () {
424
+ var _a, _b, _c;
425
+ let _headers = mergeHeaders((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, mergeOnlyDefinedHeaders(Object.assign({}, (yield this._getCustomAuthorizationHeaders()))), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
426
+ const _response = yield core.fetcher({
427
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirweaveSDKEnvironment.Production, `collections/${encodeURIComponent(readableId)}/search/instant`),
428
+ method: "POST",
429
+ headers: _headers,
430
+ contentType: "application/json",
431
+ queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
432
+ requestType: "json",
433
+ body: request,
434
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
435
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
436
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
437
+ });
438
+ if (_response.ok) {
439
+ return { data: _response.body, rawResponse: _response.rawResponse };
440
+ }
441
+ if (_response.error.reason === "status-code") {
442
+ switch (_response.error.statusCode) {
443
+ case 422:
444
+ throw new AirweaveSDK.UnprocessableEntityError(_response.error.body, _response.rawResponse);
445
+ default:
446
+ throw new errors.AirweaveSDKError({
447
+ statusCode: _response.error.statusCode,
448
+ body: _response.error.body,
449
+ rawResponse: _response.rawResponse,
450
+ });
451
+ }
452
+ }
453
+ switch (_response.error.reason) {
454
+ case "non-json":
455
+ throw new errors.AirweaveSDKError({
456
+ statusCode: _response.error.statusCode,
457
+ body: _response.error.rawBody,
458
+ rawResponse: _response.rawResponse,
459
+ });
460
+ case "timeout":
461
+ throw new errors.AirweaveSDKTimeoutError("Timeout exceeded when calling POST /collections/{readable_id}/search/instant.");
462
+ case "unknown":
463
+ throw new errors.AirweaveSDKError({
464
+ message: _response.error.errorMessage,
465
+ rawResponse: _response.rawResponse,
466
+ });
467
+ }
468
+ });
469
+ }
470
+ /**
471
+ * AI-optimized search.
472
+ *
473
+ * @param {string} readableId
474
+ * @param {AirweaveSDK.ClassicSearchRequest} request
475
+ * @param {Collections.RequestOptions} requestOptions - Request-specific configuration.
476
+ *
477
+ * @throws {@link AirweaveSDK.UnprocessableEntityError}
478
+ *
479
+ * @example
480
+ * await client.collections.classicSearch("readable_id", {
481
+ * query: "query"
482
+ * })
483
+ */
484
+ classicSearch(readableId, request, requestOptions) {
485
+ return core.HttpResponsePromise.fromPromise(this.__classicSearch(readableId, request, requestOptions));
486
+ }
487
+ __classicSearch(readableId, request, requestOptions) {
488
+ return __awaiter(this, void 0, void 0, function* () {
489
+ var _a, _b, _c;
490
+ let _headers = mergeHeaders((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, mergeOnlyDefinedHeaders(Object.assign({}, (yield this._getCustomAuthorizationHeaders()))), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
491
+ const _response = yield core.fetcher({
492
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirweaveSDKEnvironment.Production, `collections/${encodeURIComponent(readableId)}/search/classic`),
493
+ method: "POST",
494
+ headers: _headers,
495
+ contentType: "application/json",
496
+ queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
497
+ requestType: "json",
498
+ body: request,
499
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
500
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
501
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
502
+ });
503
+ if (_response.ok) {
504
+ return { data: _response.body, rawResponse: _response.rawResponse };
505
+ }
506
+ if (_response.error.reason === "status-code") {
507
+ switch (_response.error.statusCode) {
508
+ case 422:
509
+ throw new AirweaveSDK.UnprocessableEntityError(_response.error.body, _response.rawResponse);
510
+ default:
511
+ throw new errors.AirweaveSDKError({
512
+ statusCode: _response.error.statusCode,
513
+ body: _response.error.body,
514
+ rawResponse: _response.rawResponse,
515
+ });
516
+ }
517
+ }
518
+ switch (_response.error.reason) {
519
+ case "non-json":
520
+ throw new errors.AirweaveSDKError({
521
+ statusCode: _response.error.statusCode,
522
+ body: _response.error.rawBody,
523
+ rawResponse: _response.rawResponse,
524
+ });
525
+ case "timeout":
526
+ throw new errors.AirweaveSDKTimeoutError("Timeout exceeded when calling POST /collections/{readable_id}/search/classic.");
527
+ case "unknown":
528
+ throw new errors.AirweaveSDKError({
529
+ message: _response.error.errorMessage,
530
+ rawResponse: _response.rawResponse,
531
+ });
532
+ }
533
+ });
534
+ }
535
+ /**
536
+ * Agent that iteratively searches, reads, navigates hierarchies, and collects results.
537
+ *
538
+ * @param {string} readableId
539
+ * @param {AirweaveSDK.AgenticSearchRequest} request
540
+ * @param {Collections.RequestOptions} requestOptions - Request-specific configuration.
541
+ *
542
+ * @throws {@link AirweaveSDK.UnprocessableEntityError}
543
+ *
544
+ * @example
545
+ * await client.collections.agenticSearch("readable_id", {
546
+ * query: "query"
547
+ * })
548
+ */
549
+ agenticSearch(readableId, request, requestOptions) {
550
+ return core.HttpResponsePromise.fromPromise(this.__agenticSearch(readableId, request, requestOptions));
551
+ }
552
+ __agenticSearch(readableId, request, requestOptions) {
553
+ return __awaiter(this, void 0, void 0, function* () {
554
+ var _a, _b, _c;
555
+ let _headers = mergeHeaders((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, mergeOnlyDefinedHeaders(Object.assign({}, (yield this._getCustomAuthorizationHeaders()))), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
556
+ const _response = yield core.fetcher({
557
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirweaveSDKEnvironment.Production, `collections/${encodeURIComponent(readableId)}/search/agentic`),
558
+ method: "POST",
559
+ headers: _headers,
560
+ contentType: "application/json",
561
+ queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
562
+ requestType: "json",
563
+ body: request,
564
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
565
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
566
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
567
+ });
568
+ if (_response.ok) {
569
+ return { data: _response.body, rawResponse: _response.rawResponse };
570
+ }
571
+ if (_response.error.reason === "status-code") {
572
+ switch (_response.error.statusCode) {
573
+ case 422:
574
+ throw new AirweaveSDK.UnprocessableEntityError(_response.error.body, _response.rawResponse);
575
+ default:
576
+ throw new errors.AirweaveSDKError({
577
+ statusCode: _response.error.statusCode,
578
+ body: _response.error.body,
579
+ rawResponse: _response.rawResponse,
580
+ });
581
+ }
582
+ }
583
+ switch (_response.error.reason) {
584
+ case "non-json":
585
+ throw new errors.AirweaveSDKError({
586
+ statusCode: _response.error.statusCode,
587
+ body: _response.error.rawBody,
588
+ rawResponse: _response.rawResponse,
589
+ });
590
+ case "timeout":
591
+ throw new errors.AirweaveSDKTimeoutError("Timeout exceeded when calling POST /collections/{readable_id}/search/agentic.");
592
+ case "unknown":
593
+ throw new errors.AirweaveSDKError({
594
+ message: _response.error.errorMessage,
595
+ rawResponse: _response.rawResponse,
596
+ });
597
+ }
598
+ });
599
+ }
600
+ /**
601
+ * Streaming agentic search via Server-Sent Events. Returns real-time events as the agent searches.
602
+ */
603
+ streamAgenticSearch(readableId, request, requestOptions) {
604
+ return core.HttpResponsePromise.fromPromise(this.__streamAgenticSearch(readableId, request, requestOptions));
605
+ }
606
+ __streamAgenticSearch(readableId, request, requestOptions) {
607
+ return __awaiter(this, void 0, void 0, function* () {
608
+ var _a, _b, _c;
609
+ let _headers = mergeHeaders((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, mergeOnlyDefinedHeaders(Object.assign({}, (yield this._getCustomAuthorizationHeaders()))), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
610
+ const _response = yield core.fetcher({
611
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirweaveSDKEnvironment.Production, `collections/${encodeURIComponent(readableId)}/search/agentic/stream`),
612
+ method: "POST",
613
+ headers: _headers,
614
+ contentType: "application/json",
615
+ queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
616
+ requestType: "json",
617
+ body: request,
618
+ responseType: "sse",
619
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
620
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
621
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
622
+ });
623
+ if (_response.ok) {
624
+ return {
625
+ data: new core.Stream({
626
+ stream: _response.body,
627
+ parse: (data) => data,
628
+ signal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
629
+ eventShape: {
630
+ type: "sse",
631
+ streamTerminator: "[DONE]",
632
+ },
633
+ }),
634
+ rawResponse: _response.rawResponse,
635
+ };
636
+ }
637
+ if (_response.error.reason === "status-code") {
638
+ switch (_response.error.statusCode) {
639
+ case 422:
640
+ throw new AirweaveSDK.UnprocessableEntityError(_response.error.body, _response.rawResponse);
641
+ default:
642
+ throw new errors.AirweaveSDKError({
643
+ statusCode: _response.error.statusCode,
644
+ body: _response.error.body,
645
+ rawResponse: _response.rawResponse,
646
+ });
647
+ }
648
+ }
649
+ switch (_response.error.reason) {
650
+ case "non-json":
651
+ throw new errors.AirweaveSDKError({
652
+ statusCode: _response.error.statusCode,
653
+ body: _response.error.rawBody,
654
+ rawResponse: _response.rawResponse,
655
+ });
656
+ case "timeout":
657
+ throw new errors.AirweaveSDKTimeoutError("Timeout exceeded when calling POST /collections/{readable_id}/search/agentic/stream.");
658
+ case "unknown":
659
+ throw new errors.AirweaveSDKError({
660
+ message: _response.error.errorMessage,
661
+ rawResponse: _response.rawResponse,
662
+ });
663
+ }
664
+ });
665
+ }
405
666
  _getCustomAuthorizationHeaders() {
406
667
  return __awaiter(this, void 0, void 0, function* () {
407
668
  const apiKeyValue = yield core.Supplier.get(this._options.apiKey);
@@ -1,9 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as AirweaveSDK from "../index.mjs";
4
+ import * as AirweaveSDK from "../../../../index.mjs";
5
5
  /**
6
- * Classic search request — LLM generates a search plan, execute against Vespa.
6
+ * @example
7
+ * {
8
+ * query: "query"
9
+ * }
7
10
  */
8
11
  export interface ClassicSearchRequest {
9
12
  /** Search query text. */
@@ -1,9 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as AirweaveSDK from "../index.mjs";
4
+ import * as AirweaveSDK from "../../../../index.mjs";
5
5
  /**
6
- * Instant search request — embed query, fire at Vespa, return results.
6
+ * @example
7
+ * {
8
+ * query: "query"
9
+ * }
7
10
  */
8
11
  export interface InstantSearchRequest {
9
12
  /** Search query text. */
@@ -1,3 +1,5 @@
1
1
  export { type ListCollectionsGetRequest } from "./ListCollectionsGetRequest.mjs";
2
2
  export { type CollectionCreate } from "./CollectionCreate.mjs";
3
3
  export { type CollectionUpdate } from "./CollectionUpdate.mjs";
4
+ export { type InstantSearchRequest } from "./InstantSearchRequest.mjs";
5
+ export { type ClassicSearchRequest } from "./ClassicSearchRequest.mjs";
@@ -0,0 +1,25 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ export interface AgenticSearchDoneEvent {
6
+ /** Full result set. */
7
+ results: AirweaveSDK.SearchResult[];
8
+ duration_ms: number;
9
+ diagnostics?: AgenticSearchDoneEvent.Diagnostics;
10
+ }
11
+ export declare namespace AgenticSearchDoneEvent {
12
+ interface Diagnostics {
13
+ total_iterations?: number;
14
+ all_seen_entity_ids?: string[];
15
+ all_read_entity_ids?: string[];
16
+ all_collected_entity_ids?: string[];
17
+ max_iterations_hit?: boolean;
18
+ total_llm_retries?: number;
19
+ stagnation_nudges_sent?: number;
20
+ prompt_tokens?: number;
21
+ completion_tokens?: number;
22
+ cache_creation_input_tokens?: number;
23
+ cache_read_input_tokens?: number;
24
+ }
25
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface AgenticSearchErrorEvent {
5
+ /** Error message. */
6
+ message: string;
7
+ duration_ms?: number;
8
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ export type AgenticSearchEvent = AirweaveSDK.AgenticSearchEvent.Started | AirweaveSDK.AgenticSearchEvent.Thinking | AirweaveSDK.AgenticSearchEvent.ToolCall | AirweaveSDK.AgenticSearchEvent.Reranking | AirweaveSDK.AgenticSearchEvent.Done | AirweaveSDK.AgenticSearchEvent.Error_;
6
+ export declare namespace AgenticSearchEvent {
7
+ interface Started extends AirweaveSDK.AgenticSearchStartedEvent {
8
+ type: "started";
9
+ }
10
+ interface Thinking extends AirweaveSDK.AgenticSearchThinkingEvent {
11
+ type: "thinking";
12
+ }
13
+ interface ToolCall extends AirweaveSDK.AgenticSearchToolCallEvent {
14
+ type: "tool_call";
15
+ }
16
+ interface Reranking extends AirweaveSDK.AgenticSearchRerankingEvent {
17
+ type: "reranking";
18
+ }
19
+ interface Done extends AirweaveSDK.AgenticSearchDoneEvent {
20
+ type: "done";
21
+ }
22
+ interface Error_ extends AirweaveSDK.AgenticSearchErrorEvent {
23
+ type: "error";
24
+ }
25
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface AgenticSearchRerankingEvent {
5
+ duration_ms: number;
6
+ diagnostics: AgenticSearchRerankingEvent.Diagnostics;
7
+ }
8
+ export declare namespace AgenticSearchRerankingEvent {
9
+ interface Diagnostics {
10
+ input_count?: number;
11
+ output_count?: number;
12
+ model?: string;
13
+ top_relevance_score?: number;
14
+ bottom_relevance_score?: number;
15
+ }
16
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface AgenticSearchStartedEvent {
5
+ request_id: string;
6
+ tier: string;
7
+ collection_readable_id: string;
8
+ query: string;
9
+ thinking?: boolean;
10
+ filter?: Record<string, unknown>[];
11
+ limit?: number;
12
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface AgenticSearchThinkingEvent {
5
+ /** Extended reasoning text from the LLM. */
6
+ thinking?: string;
7
+ /** Conversational text output before tool calls. */
8
+ text?: string;
9
+ duration_ms: number;
10
+ diagnostics: AgenticSearchThinkingEvent.Diagnostics;
11
+ }
12
+ export declare namespace AgenticSearchThinkingEvent {
13
+ interface Diagnostics {
14
+ iteration?: number;
15
+ prompt_tokens?: number;
16
+ completion_tokens?: number;
17
+ }
18
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ export interface AgenticSearchToolCallEvent {
6
+ tool_name: AgenticSearchToolCallEvent.ToolName;
7
+ duration_ms: number;
8
+ diagnostics: AgenticSearchToolCallEvent.Diagnostics;
9
+ }
10
+ export declare namespace AgenticSearchToolCallEvent {
11
+ type ToolName = "search" | "read" | "add_to_results" | "remove_from_results" | "count" | "get_children" | "get_siblings" | "get_parent" | "review_results" | "return_results_to_user";
12
+ const ToolName: {
13
+ readonly Search: "search";
14
+ readonly Read: "read";
15
+ readonly AddToResults: "add_to_results";
16
+ readonly RemoveFromResults: "remove_from_results";
17
+ readonly Count: "count";
18
+ readonly GetChildren: "get_children";
19
+ readonly GetSiblings: "get_siblings";
20
+ readonly GetParent: "get_parent";
21
+ readonly ReviewResults: "review_results";
22
+ readonly ReturnResultsToUser: "return_results_to_user";
23
+ };
24
+ interface Diagnostics {
25
+ iteration?: number;
26
+ tool_call_id?: string;
27
+ /** Full LLM-generated tool input. */
28
+ arguments?: Record<string, unknown>;
29
+ /** Output stats. Shape depends on tool_name. */
30
+ stats?: Diagnostics.Stats;
31
+ }
32
+ namespace Diagnostics {
33
+ /**
34
+ * Output stats. Shape depends on tool_name.
35
+ */
36
+ type Stats = AirweaveSDK.SearchToolStats | AirweaveSDK.ReadToolStats | AirweaveSDK.CollectToolStats | AirweaveSDK.CountToolStats | AirweaveSDK.NavigateToolStats | AirweaveSDK.ReviewToolStats | AirweaveSDK.FinishToolStats | AirweaveSDK.ErrorToolStats;
37
+ }
38
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export var AgenticSearchToolCallEvent;
5
+ (function (AgenticSearchToolCallEvent) {
6
+ AgenticSearchToolCallEvent.ToolName = {
7
+ Search: "search",
8
+ Read: "read",
9
+ AddToResults: "add_to_results",
10
+ RemoveFromResults: "remove_from_results",
11
+ Count: "count",
12
+ GetChildren: "get_children",
13
+ GetSiblings: "get_siblings",
14
+ GetParent: "get_parent",
15
+ ReviewResults: "review_results",
16
+ ReturnResultsToUser: "return_results_to_user",
17
+ };
18
+ })(AgenticSearchToolCallEvent || (AgenticSearchToolCallEvent = {}));
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ /**
6
+ * Stats from add_to_results or remove_from_results.
7
+ */
8
+ export interface CollectToolStats {
9
+ added?: number;
10
+ already_collected?: number;
11
+ not_found?: number;
12
+ /** Total results collected after this operation. */
13
+ total_collected?: number;
14
+ entities?: AirweaveSDK.EntitySummary[];
15
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Stats from a count tool call.
6
+ */
7
+ export interface CountToolStats {
8
+ /** Number of entities matching the filter. */
9
+ count?: number;
10
+ }
@@ -8,4 +8,9 @@ import * as AirweaveSDK from "../index.mjs";
8
8
  export interface EntitySummary {
9
9
  total_entities?: number;
10
10
  by_type?: Record<string, AirweaveSDK.EntityTypeStats>;
11
+ entity_id?: string;
12
+ name?: string;
13
+ entity_type?: string;
14
+ source_name?: string;
15
+ relevance_score?: number;
11
16
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Stats when a tool call errors.
6
+ */
7
+ export interface ErrorToolStats {
8
+ error?: string;
9
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Stats from return_results_to_user.
6
+ */
7
+ export interface FinishToolStats {
8
+ /** Whether the agent accepted the result set. */
9
+ accepted?: boolean;
10
+ total_collected?: number;
11
+ /** Warning if very few results collected relative to seen. */
12
+ warning?: string;
13
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ /**
6
+ * Stats from get_children, get_siblings, or get_parent.
7
+ */
8
+ export interface NavigateToolStats {
9
+ result_count?: number;
10
+ /** Human-readable label, e.g. 'children of chan-engineering'. */
11
+ context_label?: string;
12
+ first_results?: AirweaveSDK.EntitySummary[];
13
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ /**
6
+ * Stats from a read tool call.
7
+ */
8
+ export interface ReadToolStats {
9
+ /** Entities successfully read. */
10
+ found?: number;
11
+ /** Entity IDs that weren't found. */
12
+ not_found?: number;
13
+ entities?: AirweaveSDK.EntitySummary[];
14
+ context_label?: string;
15
+ }
@@ -2,11 +2,11 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  /**
5
- * Retrieval strategies for search.
5
+ * Supported retrieval strategies.
6
6
  */
7
- export type RetrievalStrategy = "hybrid" | "neural" | "keyword";
7
+ export type RetrievalStrategy = "semantic" | "keyword" | "hybrid";
8
8
  export declare const RetrievalStrategy: {
9
- readonly Hybrid: "hybrid";
10
- readonly Neural: "neural";
9
+ readonly Semantic: "semantic";
11
10
  readonly Keyword: "keyword";
11
+ readonly Hybrid: "hybrid";
12
12
  };
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export const RetrievalStrategy = {
5
- Hybrid: "hybrid",
6
- Neural: "neural",
5
+ Semantic: "semantic",
7
6
  Keyword: "keyword",
7
+ Hybrid: "hybrid",
8
8
  };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ /**
6
+ * Stats from review_results.
7
+ */
8
+ export interface ReviewToolStats {
9
+ total_collected?: number;
10
+ entity_count?: number;
11
+ first_results?: AirweaveSDK.EntitySummary[];
12
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as AirweaveSDK from "../index.mjs";
5
+ /**
6
+ * Stats from a search tool call.
7
+ */
8
+ export interface SearchToolStats {
9
+ /** Total results returned. */
10
+ result_count?: number;
11
+ /** Results not seen in previous searches. */
12
+ new_results?: number;
13
+ first_results?: AirweaveSDK.EntitySummary[];
14
+ }