@airtop/sdk 0.1.34 → 0.1.36-beta0

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 (812) hide show
  1. package/Client.d.ts +14 -4
  2. package/Client.js +16 -6
  3. package/README.md +35 -17
  4. package/api/errors/ForbiddenError.d.ts +8 -0
  5. package/api/errors/ForbiddenError.js +51 -0
  6. package/api/errors/InternalServerError.js +17 -7
  7. package/api/errors/NotFoundError.js +17 -7
  8. package/api/errors/UnauthorizedError.d.ts +8 -0
  9. package/api/errors/UnauthorizedError.js +51 -0
  10. package/api/errors/UnprocessableEntityError.js +17 -7
  11. package/api/errors/index.d.ts +2 -0
  12. package/api/errors/index.js +2 -0
  13. package/api/resources/automations/client/Client.d.ts +91 -0
  14. package/api/resources/automations/client/Client.js +429 -0
  15. package/api/resources/automations/client/index.d.ts +1 -0
  16. package/api/resources/automations/client/index.js +17 -0
  17. package/api/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +19 -0
  18. package/api/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +5 -0
  19. package/api/resources/automations/client/requests/index.d.ts +1 -0
  20. package/api/resources/automations/client/requests/index.js +2 -0
  21. package/api/resources/automations/index.d.ts +1 -0
  22. package/api/resources/automations/index.js +17 -0
  23. package/api/resources/files/client/Client.d.ts +69 -0
  24. package/api/resources/files/client/Client.js +286 -0
  25. package/api/resources/files/client/index.d.ts +1 -0
  26. package/api/resources/files/client/index.js +17 -0
  27. package/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +22 -0
  28. package/api/resources/files/client/requests/CreateFileRestInputV1.js +5 -0
  29. package/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
  30. package/api/resources/files/client/requests/FilesListRequest.js +5 -0
  31. package/api/resources/files/client/requests/index.d.ts +2 -0
  32. package/api/resources/files/client/requests/index.js +2 -0
  33. package/api/resources/files/index.d.ts +2 -0
  34. package/api/resources/files/index.js +18 -0
  35. package/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
  36. package/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
  37. package/api/resources/files/types/index.d.ts +1 -0
  38. package/api/resources/files/types/index.js +17 -0
  39. package/api/resources/index.d.ts +5 -0
  40. package/api/resources/index.js +23 -8
  41. package/api/resources/profiles/client/Client.d.ts +4 -0
  42. package/api/resources/profiles/client/Client.js +23 -21
  43. package/api/resources/requests/client/Client.d.ts +4 -0
  44. package/api/resources/requests/client/Client.js +21 -19
  45. package/api/resources/sessions/client/Client.d.ts +5 -1
  46. package/api/resources/sessions/client/Client.js +52 -88
  47. package/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
  48. package/api/resources/sessions/types/SessionsEventsResponse.d.ts +7 -7
  49. package/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
  50. package/api/resources/sessions/types/index.d.ts +2 -2
  51. package/api/resources/sessions/types/index.js +2 -2
  52. package/api/resources/windows/client/Client.d.ts +194 -0
  53. package/api/resources/windows/client/Client.js +924 -199
  54. package/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
  55. package/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
  56. package/api/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +23 -0
  57. package/api/resources/windows/client/requests/AsyncCreateAutomationRequest.js +5 -0
  58. package/api/resources/windows/client/requests/AsyncCreateFormFillerRequest.d.ts +23 -0
  59. package/api/resources/windows/client/requests/AsyncCreateFormFillerRequest.js +5 -0
  60. package/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +27 -0
  61. package/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +5 -0
  62. package/api/resources/windows/client/requests/AsyncFillFormRequest.d.ts +27 -0
  63. package/api/resources/windows/client/requests/AsyncFillFormRequest.js +5 -0
  64. package/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
  65. package/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
  66. package/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
  67. package/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
  68. package/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
  69. package/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
  70. package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
  71. package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
  72. package/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
  73. package/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
  74. package/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
  75. package/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
  76. package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
  77. package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
  78. package/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
  79. package/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
  80. package/api/resources/windows/client/requests/CreateFormFillerRequest.d.ts +23 -0
  81. package/api/resources/windows/client/requests/CreateFormFillerRequest.js +5 -0
  82. package/api/resources/windows/client/requests/FillFormRequest.d.ts +27 -0
  83. package/api/resources/windows/client/requests/FillFormRequest.js +5 -0
  84. package/api/resources/windows/client/requests/index.d.ts +15 -0
  85. package/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
  86. package/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
  87. package/api/types/AsyncConfig.d.ts +7 -0
  88. package/api/types/AsyncConfig.js +5 -0
  89. package/api/types/AsyncSessionAiResponseEnvelope.d.ts +9 -0
  90. package/api/types/AsyncSessionAiResponseEnvelope.js +5 -0
  91. package/api/types/AutomationOutput.d.ts +10 -0
  92. package/api/types/AutomationOutput.js +5 -0
  93. package/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
  94. package/api/types/ClickConfigClickType.d.ts +1 -1
  95. package/api/types/CreateAutomationRequestBodyConfiguration.d.ts +4 -0
  96. package/api/types/CreateAutomationRequestBodyConfiguration.js +5 -0
  97. package/api/types/CreateFileV1.d.ts +24 -0
  98. package/api/types/CreateFileV1.js +5 -0
  99. package/api/types/CreateFileV1FileType.d.ts +13 -0
  100. package/api/types/CreateFileV1FileType.js +12 -0
  101. package/api/types/DeleteAutomationOutputWrapperBody.d.ts +4 -0
  102. package/api/types/DeleteAutomationOutputWrapperBody.js +5 -0
  103. package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
  104. package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
  105. package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
  106. package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
  107. package/api/types/ExternalFile.d.ts +33 -0
  108. package/api/types/ExternalFile.js +5 -0
  109. package/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
  110. package/api/types/FilesResponse.d.ts +10 -0
  111. package/api/types/FilesResponse.js +5 -0
  112. package/api/types/FilesWithPagination.d.ts +10 -0
  113. package/api/types/FilesWithPagination.js +5 -0
  114. package/api/types/GetFileV1.d.ts +24 -0
  115. package/api/types/GetFileV1.js +5 -0
  116. package/api/types/GetFileV1FileType.d.ts +13 -0
  117. package/api/types/GetFileV1FileType.js +12 -0
  118. package/api/types/ListAutomationsOutput.d.ts +7 -0
  119. package/api/types/ListAutomationsOutput.js +5 -0
  120. package/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
  121. package/api/types/Proxy.d.ts +1 -1
  122. package/api/types/SessionConfigV1Proxy.d.ts +1 -1
  123. package/api/types/StatusMessageStatus.d.ts +1 -1
  124. package/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
  125. package/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
  126. package/api/types/VisualAnalysisConfigScope.d.ts +1 -1
  127. package/api/types/index.d.ts +15 -0
  128. package/api/types/index.js +15 -0
  129. package/biome.json +3 -0
  130. package/core/auth/BearerToken.d.ts +1 -1
  131. package/core/fetcher/APIResponse.d.ts +1 -1
  132. package/core/fetcher/Fetcher.d.ts +3 -3
  133. package/core/fetcher/Fetcher.js +6 -5
  134. package/core/fetcher/Supplier.d.ts +1 -1
  135. package/core/fetcher/createRequestUrl.d.ts +1 -1
  136. package/core/fetcher/createRequestUrl.js +1 -2
  137. package/core/fetcher/getFetchFn.js +18 -9
  138. package/core/fetcher/getHeader.js +1 -2
  139. package/core/fetcher/getRequestBody.js +5 -5
  140. package/core/fetcher/getResponseBody.js +4 -2
  141. package/core/fetcher/makeRequest.d.ts +1 -1
  142. package/core/fetcher/requestWithRetries.js +17 -9
  143. package/core/fetcher/signals.d.ts +0 -1
  144. package/core/fetcher/signals.js +2 -3
  145. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
  146. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
  147. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
  148. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  149. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
  150. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
  151. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  152. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
  153. package/core/index.js +17 -7
  154. package/core/json.d.ts +15 -0
  155. package/core/json.js +24 -0
  156. package/core/runtime/runtime.d.ts +1 -1
  157. package/core/runtime/runtime.js +51 -41
  158. package/core/schemas/Schema.d.ts +8 -5
  159. package/core/schemas/Schema.js +3 -0
  160. package/core/schemas/builders/bigint/bigint.d.ts +2 -0
  161. package/core/schemas/builders/bigint/bigint.js +53 -0
  162. package/core/schemas/builders/bigint/index.d.ts +1 -0
  163. package/core/schemas/builders/bigint/index.js +5 -0
  164. package/core/schemas/builders/date/date.js +1 -2
  165. package/core/schemas/builders/enum/enum.js +1 -2
  166. package/core/schemas/builders/index.d.ts +1 -0
  167. package/core/schemas/builders/index.js +1 -0
  168. package/core/schemas/builders/lazy/lazy.d.ts +1 -1
  169. package/core/schemas/builders/lazy/lazy.js +3 -4
  170. package/core/schemas/builders/lazy/lazyObject.js +1 -2
  171. package/core/schemas/builders/list/list.js +1 -2
  172. package/core/schemas/builders/literals/booleanLiteral.js +1 -2
  173. package/core/schemas/builders/literals/stringLiteral.js +1 -2
  174. package/core/schemas/builders/object/object.d.ts +1 -1
  175. package/core/schemas/builders/object/object.js +31 -3
  176. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  177. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  178. package/core/schemas/builders/object/property.js +2 -3
  179. package/core/schemas/builders/object/types.d.ts +16 -11
  180. package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  181. package/core/schemas/builders/object-like/types.d.ts +1 -1
  182. package/core/schemas/builders/record/record.js +2 -4
  183. package/core/schemas/builders/record/types.d.ts +2 -2
  184. package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  185. package/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  186. package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  187. package/core/schemas/builders/set/set.js +1 -2
  188. package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  189. package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  190. package/core/schemas/builders/union/discriminant.js +1 -2
  191. package/core/schemas/builders/union/types.d.ts +6 -6
  192. package/core/schemas/builders/union/union.d.ts +1 -1
  193. package/core/schemas/builders/union/union.js +1 -2
  194. package/core/schemas/utils/MaybePromise.d.ts +1 -1
  195. package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  196. package/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  197. package/core/schemas/utils/entries.d.ts +1 -1
  198. package/core/schemas/utils/entries.js +1 -2
  199. package/core/schemas/utils/filterObject.d.ts +1 -1
  200. package/core/schemas/utils/filterObject.js +1 -2
  201. package/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
  202. package/core/schemas/utils/isPlainObject.js +1 -2
  203. package/core/schemas/utils/keys.d.ts +1 -1
  204. package/core/schemas/utils/keys.js +1 -2
  205. package/core/schemas/utils/maybeSkipValidation.js +1 -2
  206. package/core/schemas/utils/partition.js +1 -2
  207. package/core/streaming-fetcher/Stream.d.ts +0 -1
  208. package/core/streaming-fetcher/Stream.js +20 -21
  209. package/dist/Client.d.ts +14 -4
  210. package/dist/Client.js +16 -6
  211. package/dist/api/errors/ForbiddenError.d.ts +8 -0
  212. package/dist/api/errors/ForbiddenError.js +51 -0
  213. package/dist/api/errors/InternalServerError.js +17 -7
  214. package/dist/api/errors/NotFoundError.js +17 -7
  215. package/dist/api/errors/UnauthorizedError.d.ts +8 -0
  216. package/dist/api/errors/UnauthorizedError.js +51 -0
  217. package/dist/api/errors/UnprocessableEntityError.js +17 -7
  218. package/dist/api/errors/index.d.ts +2 -0
  219. package/dist/api/errors/index.js +2 -0
  220. package/dist/api/resources/automations/client/Client.d.ts +91 -0
  221. package/dist/api/resources/automations/client/Client.js +429 -0
  222. package/dist/api/resources/automations/client/index.d.ts +1 -0
  223. package/dist/api/resources/automations/client/index.js +17 -0
  224. package/dist/api/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +19 -0
  225. package/dist/api/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +5 -0
  226. package/dist/api/resources/automations/client/requests/index.d.ts +1 -0
  227. package/dist/api/resources/automations/client/requests/index.js +2 -0
  228. package/dist/api/resources/automations/index.d.ts +1 -0
  229. package/dist/api/resources/automations/index.js +17 -0
  230. package/dist/api/resources/files/client/Client.d.ts +69 -0
  231. package/dist/api/resources/files/client/Client.js +286 -0
  232. package/dist/api/resources/files/client/index.d.ts +1 -0
  233. package/dist/api/resources/files/client/index.js +17 -0
  234. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +22 -0
  235. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.js +5 -0
  236. package/dist/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
  237. package/dist/api/resources/files/client/requests/FilesListRequest.js +5 -0
  238. package/dist/api/resources/files/client/requests/index.d.ts +2 -0
  239. package/dist/api/resources/files/client/requests/index.js +2 -0
  240. package/dist/api/resources/files/index.d.ts +2 -0
  241. package/dist/api/resources/files/index.js +18 -0
  242. package/dist/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
  243. package/dist/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
  244. package/dist/api/resources/files/types/index.d.ts +1 -0
  245. package/dist/api/resources/files/types/index.js +17 -0
  246. package/dist/api/resources/index.d.ts +5 -0
  247. package/dist/api/resources/index.js +23 -8
  248. package/dist/api/resources/profiles/client/Client.d.ts +4 -0
  249. package/dist/api/resources/profiles/client/Client.js +23 -21
  250. package/dist/api/resources/requests/client/Client.d.ts +4 -0
  251. package/dist/api/resources/requests/client/Client.js +21 -19
  252. package/dist/api/resources/sessions/client/Client.d.ts +5 -1
  253. package/dist/api/resources/sessions/client/Client.js +52 -88
  254. package/dist/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
  255. package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +7 -7
  256. package/dist/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
  257. package/dist/api/resources/sessions/types/index.d.ts +2 -2
  258. package/dist/api/resources/sessions/types/index.js +2 -2
  259. package/dist/api/resources/windows/client/Client.d.ts +194 -0
  260. package/dist/api/resources/windows/client/Client.js +924 -199
  261. package/dist/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
  262. package/dist/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
  263. package/dist/api/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +23 -0
  264. package/dist/api/resources/windows/client/requests/AsyncCreateAutomationRequest.js +5 -0
  265. package/dist/api/resources/windows/client/requests/AsyncCreateFormFillerRequest.d.ts +23 -0
  266. package/dist/api/resources/windows/client/requests/AsyncCreateFormFillerRequest.js +5 -0
  267. package/dist/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +27 -0
  268. package/dist/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +5 -0
  269. package/dist/api/resources/windows/client/requests/AsyncFillFormRequest.d.ts +27 -0
  270. package/dist/api/resources/windows/client/requests/AsyncFillFormRequest.js +5 -0
  271. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
  272. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
  273. package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
  274. package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
  275. package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
  276. package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
  277. package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
  278. package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
  279. package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
  280. package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
  281. package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
  282. package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
  283. package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
  284. package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
  285. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
  286. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
  287. package/dist/api/resources/windows/client/requests/CreateFormFillerRequest.d.ts +23 -0
  288. package/dist/api/resources/windows/client/requests/CreateFormFillerRequest.js +5 -0
  289. package/dist/api/resources/windows/client/requests/FillFormRequest.d.ts +27 -0
  290. package/dist/api/resources/windows/client/requests/FillFormRequest.js +5 -0
  291. package/dist/api/resources/windows/client/requests/index.d.ts +15 -0
  292. package/dist/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
  293. package/dist/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
  294. package/dist/api/types/AsyncConfig.d.ts +7 -0
  295. package/dist/api/types/AsyncConfig.js +5 -0
  296. package/dist/api/types/AsyncSessionAiResponseEnvelope.d.ts +9 -0
  297. package/dist/api/types/AsyncSessionAiResponseEnvelope.js +5 -0
  298. package/dist/api/types/AutomationOutput.d.ts +10 -0
  299. package/dist/api/types/AutomationOutput.js +5 -0
  300. package/dist/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
  301. package/dist/api/types/ClickConfigClickType.d.ts +1 -1
  302. package/dist/api/types/CreateAutomationRequestBodyConfiguration.d.ts +4 -0
  303. package/dist/api/types/CreateAutomationRequestBodyConfiguration.js +5 -0
  304. package/dist/api/types/CreateFileV1.d.ts +24 -0
  305. package/dist/api/types/CreateFileV1.js +5 -0
  306. package/dist/api/types/CreateFileV1FileType.d.ts +13 -0
  307. package/dist/api/types/CreateFileV1FileType.js +12 -0
  308. package/dist/api/types/DeleteAutomationOutputWrapperBody.d.ts +4 -0
  309. package/dist/api/types/DeleteAutomationOutputWrapperBody.js +5 -0
  310. package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
  311. package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
  312. package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
  313. package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
  314. package/dist/api/types/ExternalFile.d.ts +33 -0
  315. package/dist/api/types/ExternalFile.js +5 -0
  316. package/dist/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
  317. package/dist/api/types/FilesResponse.d.ts +10 -0
  318. package/dist/api/types/FilesResponse.js +5 -0
  319. package/dist/api/types/FilesWithPagination.d.ts +10 -0
  320. package/dist/api/types/FilesWithPagination.js +5 -0
  321. package/dist/api/types/GetFileV1.d.ts +24 -0
  322. package/dist/api/types/GetFileV1.js +5 -0
  323. package/dist/api/types/GetFileV1FileType.d.ts +13 -0
  324. package/dist/api/types/GetFileV1FileType.js +12 -0
  325. package/dist/api/types/ListAutomationsOutput.d.ts +7 -0
  326. package/dist/api/types/ListAutomationsOutput.js +5 -0
  327. package/dist/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
  328. package/dist/api/types/Proxy.d.ts +1 -1
  329. package/dist/api/types/SessionConfigV1Proxy.d.ts +1 -1
  330. package/dist/api/types/StatusMessageStatus.d.ts +1 -1
  331. package/dist/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
  332. package/dist/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
  333. package/dist/api/types/VisualAnalysisConfigScope.d.ts +1 -1
  334. package/dist/api/types/index.d.ts +15 -0
  335. package/dist/api/types/index.js +15 -0
  336. package/dist/core/auth/BearerToken.d.ts +1 -1
  337. package/dist/core/fetcher/APIResponse.d.ts +1 -1
  338. package/dist/core/fetcher/Fetcher.d.ts +3 -3
  339. package/dist/core/fetcher/Fetcher.js +6 -5
  340. package/dist/core/fetcher/Supplier.d.ts +1 -1
  341. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  342. package/dist/core/fetcher/createRequestUrl.js +1 -2
  343. package/dist/core/fetcher/getFetchFn.js +18 -9
  344. package/dist/core/fetcher/getHeader.js +1 -2
  345. package/dist/core/fetcher/getRequestBody.js +5 -5
  346. package/dist/core/fetcher/getResponseBody.js +4 -2
  347. package/dist/core/fetcher/makeRequest.d.ts +1 -1
  348. package/dist/core/fetcher/requestWithRetries.js +17 -9
  349. package/dist/core/fetcher/signals.d.ts +0 -1
  350. package/dist/core/fetcher/signals.js +2 -3
  351. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
  352. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
  353. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
  354. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  355. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
  356. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
  357. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  358. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
  359. package/dist/core/index.js +17 -7
  360. package/dist/core/json.d.ts +15 -0
  361. package/dist/core/json.js +24 -0
  362. package/dist/core/runtime/runtime.d.ts +1 -1
  363. package/dist/core/runtime/runtime.js +51 -41
  364. package/dist/core/schemas/Schema.d.ts +8 -5
  365. package/dist/core/schemas/Schema.js +3 -0
  366. package/dist/core/schemas/builders/bigint/bigint.d.ts +2 -0
  367. package/dist/core/schemas/builders/bigint/bigint.js +53 -0
  368. package/dist/core/schemas/builders/bigint/index.d.ts +1 -0
  369. package/dist/core/schemas/builders/bigint/index.js +5 -0
  370. package/dist/core/schemas/builders/date/date.js +1 -2
  371. package/dist/core/schemas/builders/enum/enum.js +1 -2
  372. package/dist/core/schemas/builders/index.d.ts +1 -0
  373. package/dist/core/schemas/builders/index.js +1 -0
  374. package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
  375. package/dist/core/schemas/builders/lazy/lazy.js +3 -4
  376. package/dist/core/schemas/builders/lazy/lazyObject.js +1 -2
  377. package/dist/core/schemas/builders/list/list.js +1 -2
  378. package/dist/core/schemas/builders/literals/booleanLiteral.js +1 -2
  379. package/dist/core/schemas/builders/literals/stringLiteral.js +1 -2
  380. package/dist/core/schemas/builders/object/object.d.ts +1 -1
  381. package/dist/core/schemas/builders/object/object.js +31 -3
  382. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  383. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  384. package/dist/core/schemas/builders/object/property.js +2 -3
  385. package/dist/core/schemas/builders/object/types.d.ts +16 -11
  386. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  387. package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
  388. package/dist/core/schemas/builders/record/record.js +2 -4
  389. package/dist/core/schemas/builders/record/types.d.ts +2 -2
  390. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  391. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  392. package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  393. package/dist/core/schemas/builders/set/set.js +1 -2
  394. package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  395. package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  396. package/dist/core/schemas/builders/union/discriminant.js +1 -2
  397. package/dist/core/schemas/builders/union/types.d.ts +6 -6
  398. package/dist/core/schemas/builders/union/union.d.ts +1 -1
  399. package/dist/core/schemas/builders/union/union.js +1 -2
  400. package/dist/core/schemas/utils/MaybePromise.d.ts +1 -1
  401. package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  402. package/dist/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  403. package/dist/core/schemas/utils/entries.d.ts +1 -1
  404. package/dist/core/schemas/utils/entries.js +1 -2
  405. package/dist/core/schemas/utils/filterObject.d.ts +1 -1
  406. package/dist/core/schemas/utils/filterObject.js +1 -2
  407. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
  408. package/dist/core/schemas/utils/isPlainObject.js +1 -2
  409. package/dist/core/schemas/utils/keys.d.ts +1 -1
  410. package/dist/core/schemas/utils/keys.js +1 -2
  411. package/dist/core/schemas/utils/maybeSkipValidation.js +1 -2
  412. package/dist/core/schemas/utils/partition.js +1 -2
  413. package/dist/core/streaming-fetcher/Stream.d.ts +0 -1
  414. package/dist/core/streaming-fetcher/Stream.js +20 -21
  415. package/dist/environments.d.ts +1 -1
  416. package/dist/errors/AirtopError.js +2 -1
  417. package/dist/errors/AirtopTimeoutError.d.ts +1 -1
  418. package/dist/errors/AirtopTimeoutError.js +2 -2
  419. package/dist/index.js +17 -7
  420. package/dist/live-view/types.d.ts +1 -1
  421. package/dist/live-view/types.js +1 -1
  422. package/dist/serialization/resources/automations/client/index.d.ts +1 -0
  423. package/dist/serialization/resources/automations/client/index.js +17 -0
  424. package/dist/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +14 -0
  425. package/dist/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +45 -0
  426. package/dist/serialization/resources/automations/client/requests/index.d.ts +1 -0
  427. package/dist/serialization/resources/automations/client/requests/index.js +5 -0
  428. package/dist/serialization/resources/automations/index.d.ts +1 -0
  429. package/dist/serialization/resources/automations/index.js +17 -0
  430. package/dist/serialization/resources/files/client/index.d.ts +1 -0
  431. package/dist/serialization/resources/files/client/index.js +17 -0
  432. package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +17 -0
  433. package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.js +48 -0
  434. package/dist/serialization/resources/files/client/requests/index.d.ts +1 -0
  435. package/dist/serialization/resources/files/client/requests/index.js +5 -0
  436. package/dist/serialization/resources/files/index.d.ts +2 -0
  437. package/dist/serialization/resources/files/index.js +18 -0
  438. package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
  439. package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
  440. package/dist/serialization/resources/files/types/index.d.ts +1 -0
  441. package/dist/serialization/resources/files/types/index.js +17 -0
  442. package/dist/serialization/resources/index.d.ts +5 -0
  443. package/dist/serialization/resources/index.js +23 -8
  444. package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
  445. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +9 -9
  446. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +21 -11
  447. package/dist/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
  448. package/dist/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
  449. package/dist/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
  450. package/dist/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
  451. package/dist/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
  452. package/dist/serialization/resources/sessions/types/index.d.ts +2 -2
  453. package/dist/serialization/resources/sessions/types/index.js +2 -2
  454. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
  455. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.js +51 -0
  456. package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +18 -0
  457. package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +49 -0
  458. package/dist/serialization/resources/windows/client/requests/AsyncCreateFormFillerRequest.d.ts +18 -0
  459. package/dist/serialization/resources/windows/client/requests/AsyncCreateFormFillerRequest.js +49 -0
  460. package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +18 -0
  461. package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +49 -0
  462. package/dist/serialization/resources/windows/client/requests/AsyncFillFormRequest.d.ts +18 -0
  463. package/dist/serialization/resources/windows/client/requests/AsyncFillFormRequest.js +49 -0
  464. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
  465. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.js +50 -0
  466. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +19 -0
  467. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +50 -0
  468. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
  469. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +51 -0
  470. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
  471. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +50 -0
  472. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
  473. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +51 -0
  474. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
  475. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +49 -0
  476. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
  477. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +50 -0
  478. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
  479. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.js +55 -0
  480. package/dist/serialization/resources/windows/client/requests/CreateFormFillerRequest.d.ts +18 -0
  481. package/dist/serialization/resources/windows/client/requests/CreateFormFillerRequest.js +49 -0
  482. package/dist/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
  483. package/dist/serialization/resources/windows/client/requests/FillFormRequest.d.ts +18 -0
  484. package/dist/serialization/resources/windows/client/requests/FillFormRequest.js +49 -0
  485. package/dist/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
  486. package/dist/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
  487. package/dist/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
  488. package/dist/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
  489. package/dist/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
  490. package/dist/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
  491. package/dist/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
  492. package/dist/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
  493. package/dist/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
  494. package/dist/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
  495. package/dist/serialization/resources/windows/client/requests/index.d.ts +15 -0
  496. package/dist/serialization/resources/windows/client/requests/index.js +31 -1
  497. package/dist/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
  498. package/dist/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
  499. package/dist/serialization/types/AiPromptResponse.js +17 -7
  500. package/dist/serialization/types/AiResponseEnvelope.js +17 -7
  501. package/dist/serialization/types/AirtopProxyConfiguration.js +17 -7
  502. package/dist/serialization/types/AsyncConfig.d.ts +12 -0
  503. package/dist/serialization/types/AsyncConfig.js +43 -0
  504. package/dist/serialization/types/AsyncSessionAiResponseEnvelope.d.ts +15 -0
  505. package/dist/serialization/types/AsyncSessionAiResponseEnvelope.js +46 -0
  506. package/dist/serialization/types/AutomationOutput.d.ts +16 -0
  507. package/dist/serialization/types/AutomationOutput.js +47 -0
  508. package/dist/serialization/types/BrowserWaitNavigationConfig.js +17 -7
  509. package/dist/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
  510. package/dist/serialization/types/ClickConfig.js +17 -7
  511. package/dist/serialization/types/ClickConfigClickType.js +17 -7
  512. package/dist/serialization/types/ClientProvidedResponseMetadata.js +17 -7
  513. package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.d.ts +10 -0
  514. package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.js +41 -0
  515. package/dist/serialization/types/CreateFileV1.d.ts +21 -0
  516. package/dist/serialization/types/CreateFileV1.js +52 -0
  517. package/dist/serialization/types/CreateFileV1FileType.d.ts +10 -0
  518. package/dist/serialization/types/CreateFileV1FileType.js +41 -0
  519. package/dist/serialization/types/DeleteAutomationOutputWrapperBody.d.ts +10 -0
  520. package/dist/serialization/types/DeleteAutomationOutputWrapperBody.js +41 -0
  521. package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
  522. package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
  523. package/dist/serialization/types/EnvelopeDefaultMeta.js +17 -7
  524. package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
  525. package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
  526. package/dist/serialization/types/ErrorBody.js +17 -7
  527. package/dist/serialization/types/ErrorDetail.js +17 -7
  528. package/dist/serialization/types/ErrorMessage.js +17 -7
  529. package/dist/serialization/types/ErrorModel.js +17 -7
  530. package/dist/serialization/types/ExternalFile.d.ts +25 -0
  531. package/dist/serialization/types/ExternalFile.js +56 -0
  532. package/dist/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
  533. package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
  534. package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
  535. package/dist/serialization/types/ExternalSessionConfig.js +17 -7
  536. package/dist/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
  537. package/dist/serialization/types/FilesResponse.d.ts +18 -0
  538. package/dist/serialization/types/FilesResponse.js +49 -0
  539. package/dist/serialization/types/FilesWithPagination.d.ts +15 -0
  540. package/dist/serialization/types/FilesWithPagination.js +46 -0
  541. package/dist/serialization/types/GetFileV1.d.ts +21 -0
  542. package/dist/serialization/types/GetFileV1.js +52 -0
  543. package/dist/serialization/types/GetFileV1FileType.d.ts +10 -0
  544. package/dist/serialization/types/GetFileV1FileType.js +41 -0
  545. package/dist/serialization/types/IntervalMonitorConfig.js +17 -7
  546. package/dist/serialization/types/Issue.js +17 -7
  547. package/dist/serialization/types/ListAutomationsOutput.d.ts +13 -0
  548. package/dist/serialization/types/ListAutomationsOutput.js +44 -0
  549. package/dist/serialization/types/MicroInteractionConfig.js +17 -7
  550. package/dist/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
  551. package/dist/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
  552. package/dist/serialization/types/MonitorConfig.js +17 -7
  553. package/dist/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
  554. package/dist/serialization/types/OperationOutcome.js +17 -7
  555. package/dist/serialization/types/OperationOutcomeResponse.js +17 -7
  556. package/dist/serialization/types/PageQueryConfig.js +17 -7
  557. package/dist/serialization/types/PageQueryExperimentalConfig.js +17 -7
  558. package/dist/serialization/types/PaginatedExtractionConfig.js +17 -7
  559. package/dist/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
  560. package/dist/serialization/types/Pagination.js +17 -7
  561. package/dist/serialization/types/Proxy.js +17 -7
  562. package/dist/serialization/types/ProxyConfigurationKind.js +17 -7
  563. package/dist/serialization/types/ProxyCredentials.js +17 -7
  564. package/dist/serialization/types/RequestStatusResponse.js +17 -7
  565. package/dist/serialization/types/ScrapeConfig.js +17 -7
  566. package/dist/serialization/types/ScrapeResponse.js +17 -7
  567. package/dist/serialization/types/ScrapeResponseContent.js +17 -7
  568. package/dist/serialization/types/ScrapeResponseEnvelope.js +17 -7
  569. package/dist/serialization/types/ScrapeResponseOutput.js +17 -7
  570. package/dist/serialization/types/ScreenshotConfig.js +17 -7
  571. package/dist/serialization/types/ScreenshotMetadata.js +17 -7
  572. package/dist/serialization/types/ScreenshotRequestConfig.js +17 -7
  573. package/dist/serialization/types/ScrollByConfig.js +17 -7
  574. package/dist/serialization/types/ScrollToEdgeConfig.js +17 -7
  575. package/dist/serialization/types/SessionConfigV1.js +17 -7
  576. package/dist/serialization/types/SessionConfigV1Proxy.js +17 -7
  577. package/dist/serialization/types/SessionEventMessage.js +17 -7
  578. package/dist/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
  579. package/dist/serialization/types/SessionResponse.js +17 -7
  580. package/dist/serialization/types/SessionsResponse.js +17 -7
  581. package/dist/serialization/types/SessionsWithPagination.js +17 -7
  582. package/dist/serialization/types/StatusMessage.js +17 -7
  583. package/dist/serialization/types/StatusMessageStatus.js +17 -7
  584. package/dist/serialization/types/SummaryConfig.js +17 -7
  585. package/dist/serialization/types/SummaryExperimentalConfig.js +17 -7
  586. package/dist/serialization/types/VisualAnalysisConfig.js +17 -7
  587. package/dist/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
  588. package/dist/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
  589. package/dist/serialization/types/VisualAnalysisConfigScope.js +17 -7
  590. package/dist/serialization/types/Window.js +17 -7
  591. package/dist/serialization/types/WindowEventMessage.js +17 -7
  592. package/dist/serialization/types/WindowId.js +17 -7
  593. package/dist/serialization/types/WindowIdResponse.js +17 -7
  594. package/dist/serialization/types/WindowResponse.js +17 -7
  595. package/dist/serialization/types/index.d.ts +15 -0
  596. package/dist/serialization/types/index.js +15 -0
  597. package/dist/utils/batch-operate/SessionQueue.js +2 -2
  598. package/dist/utils/batch-operate/WindowQueue.js +2 -2
  599. package/dist/utils/batch-operate/batch-util.d.ts +1 -1
  600. package/dist/utils/batch-operate/types.d.ts +5 -5
  601. package/dist/utils/process-screenshots.d.ts +1 -2
  602. package/dist/utils/process-screenshots.js +1 -2
  603. package/dist/version.d.ts +1 -0
  604. package/dist/version.js +4 -0
  605. package/dist/wrapper/AirtopClient.d.ts +6 -2
  606. package/dist/wrapper/AirtopClient.js +27 -8
  607. package/dist/wrapper/AirtopFiles.d.ts +38 -0
  608. package/dist/wrapper/AirtopFiles.js +151 -0
  609. package/dist/wrapper/AirtopRequests.js +2 -2
  610. package/dist/wrapper/AirtopSessions.js +7 -5
  611. package/dist/wrapper/AirtopWindows.js +22 -12
  612. package/environments.d.ts +1 -1
  613. package/errors/AirtopError.js +2 -1
  614. package/errors/AirtopTimeoutError.d.ts +1 -1
  615. package/errors/AirtopTimeoutError.js +2 -2
  616. package/index.js +17 -7
  617. package/{jest.config.js → jest.config.mjs} +4 -1
  618. package/live-view/types.d.ts +1 -1
  619. package/live-view/types.js +1 -1
  620. package/package.json +16 -13
  621. package/reference.md +1881 -189
  622. package/scripts/rename-to-esm-files.js +115 -0
  623. package/serialization/resources/automations/client/index.d.ts +1 -0
  624. package/serialization/resources/automations/client/index.js +17 -0
  625. package/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +14 -0
  626. package/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +45 -0
  627. package/serialization/resources/automations/client/requests/index.d.ts +1 -0
  628. package/serialization/resources/automations/client/requests/index.js +5 -0
  629. package/serialization/resources/automations/index.d.ts +1 -0
  630. package/serialization/resources/automations/index.js +17 -0
  631. package/serialization/resources/files/client/index.d.ts +1 -0
  632. package/serialization/resources/files/client/index.js +17 -0
  633. package/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +17 -0
  634. package/serialization/resources/files/client/requests/CreateFileRestInputV1.js +48 -0
  635. package/serialization/resources/files/client/requests/index.d.ts +1 -0
  636. package/serialization/resources/files/client/requests/index.js +5 -0
  637. package/serialization/resources/files/index.d.ts +2 -0
  638. package/serialization/resources/files/index.js +18 -0
  639. package/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
  640. package/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
  641. package/serialization/resources/files/types/index.d.ts +1 -0
  642. package/serialization/resources/files/types/index.js +17 -0
  643. package/serialization/resources/index.d.ts +5 -0
  644. package/serialization/resources/index.js +23 -8
  645. package/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
  646. package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +9 -9
  647. package/serialization/resources/sessions/types/SessionsEventsResponse.js +21 -11
  648. package/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
  649. package/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
  650. package/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
  651. package/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
  652. package/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
  653. package/serialization/resources/sessions/types/index.d.ts +2 -2
  654. package/serialization/resources/sessions/types/index.js +2 -2
  655. package/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
  656. package/serialization/resources/windows/client/requests/AsyncClickRequest.js +51 -0
  657. package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +18 -0
  658. package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +49 -0
  659. package/serialization/resources/windows/client/requests/AsyncCreateFormFillerRequest.d.ts +18 -0
  660. package/serialization/resources/windows/client/requests/AsyncCreateFormFillerRequest.js +49 -0
  661. package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +18 -0
  662. package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +49 -0
  663. package/serialization/resources/windows/client/requests/AsyncFillFormRequest.d.ts +18 -0
  664. package/serialization/resources/windows/client/requests/AsyncFillFormRequest.js +49 -0
  665. package/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
  666. package/serialization/resources/windows/client/requests/AsyncHoverRequest.js +50 -0
  667. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +19 -0
  668. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +50 -0
  669. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
  670. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +51 -0
  671. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
  672. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +50 -0
  673. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
  674. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +51 -0
  675. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
  676. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +49 -0
  677. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
  678. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +50 -0
  679. package/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
  680. package/serialization/resources/windows/client/requests/AsyncTypeRequest.js +55 -0
  681. package/serialization/resources/windows/client/requests/CreateFormFillerRequest.d.ts +18 -0
  682. package/serialization/resources/windows/client/requests/CreateFormFillerRequest.js +49 -0
  683. package/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
  684. package/serialization/resources/windows/client/requests/FillFormRequest.d.ts +18 -0
  685. package/serialization/resources/windows/client/requests/FillFormRequest.js +49 -0
  686. package/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
  687. package/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
  688. package/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
  689. package/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
  690. package/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
  691. package/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
  692. package/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
  693. package/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
  694. package/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
  695. package/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
  696. package/serialization/resources/windows/client/requests/index.d.ts +15 -0
  697. package/serialization/resources/windows/client/requests/index.js +31 -1
  698. package/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
  699. package/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
  700. package/serialization/types/AiPromptResponse.js +17 -7
  701. package/serialization/types/AiResponseEnvelope.js +17 -7
  702. package/serialization/types/AirtopProxyConfiguration.js +17 -7
  703. package/serialization/types/AsyncConfig.d.ts +12 -0
  704. package/serialization/types/AsyncConfig.js +43 -0
  705. package/serialization/types/AsyncSessionAiResponseEnvelope.d.ts +15 -0
  706. package/serialization/types/AsyncSessionAiResponseEnvelope.js +46 -0
  707. package/serialization/types/AutomationOutput.d.ts +16 -0
  708. package/serialization/types/AutomationOutput.js +47 -0
  709. package/serialization/types/BrowserWaitNavigationConfig.js +17 -7
  710. package/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
  711. package/serialization/types/ClickConfig.js +17 -7
  712. package/serialization/types/ClickConfigClickType.js +17 -7
  713. package/serialization/types/ClientProvidedResponseMetadata.js +17 -7
  714. package/serialization/types/CreateAutomationRequestBodyConfiguration.d.ts +10 -0
  715. package/serialization/types/CreateAutomationRequestBodyConfiguration.js +41 -0
  716. package/serialization/types/CreateFileV1.d.ts +21 -0
  717. package/serialization/types/CreateFileV1.js +52 -0
  718. package/serialization/types/CreateFileV1FileType.d.ts +10 -0
  719. package/serialization/types/CreateFileV1FileType.js +41 -0
  720. package/serialization/types/DeleteAutomationOutputWrapperBody.d.ts +10 -0
  721. package/serialization/types/DeleteAutomationOutputWrapperBody.js +41 -0
  722. package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
  723. package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
  724. package/serialization/types/EnvelopeDefaultMeta.js +17 -7
  725. package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
  726. package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
  727. package/serialization/types/ErrorBody.js +17 -7
  728. package/serialization/types/ErrorDetail.js +17 -7
  729. package/serialization/types/ErrorMessage.js +17 -7
  730. package/serialization/types/ErrorModel.js +17 -7
  731. package/serialization/types/ExternalFile.d.ts +25 -0
  732. package/serialization/types/ExternalFile.js +56 -0
  733. package/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
  734. package/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
  735. package/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
  736. package/serialization/types/ExternalSessionConfig.js +17 -7
  737. package/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
  738. package/serialization/types/FilesResponse.d.ts +18 -0
  739. package/serialization/types/FilesResponse.js +49 -0
  740. package/serialization/types/FilesWithPagination.d.ts +15 -0
  741. package/serialization/types/FilesWithPagination.js +46 -0
  742. package/serialization/types/GetFileV1.d.ts +21 -0
  743. package/serialization/types/GetFileV1.js +52 -0
  744. package/serialization/types/GetFileV1FileType.d.ts +10 -0
  745. package/serialization/types/GetFileV1FileType.js +41 -0
  746. package/serialization/types/IntervalMonitorConfig.js +17 -7
  747. package/serialization/types/Issue.js +17 -7
  748. package/serialization/types/ListAutomationsOutput.d.ts +13 -0
  749. package/serialization/types/ListAutomationsOutput.js +44 -0
  750. package/serialization/types/MicroInteractionConfig.js +17 -7
  751. package/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
  752. package/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
  753. package/serialization/types/MonitorConfig.js +17 -7
  754. package/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
  755. package/serialization/types/OperationOutcome.js +17 -7
  756. package/serialization/types/OperationOutcomeResponse.js +17 -7
  757. package/serialization/types/PageQueryConfig.js +17 -7
  758. package/serialization/types/PageQueryExperimentalConfig.js +17 -7
  759. package/serialization/types/PaginatedExtractionConfig.js +17 -7
  760. package/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
  761. package/serialization/types/Pagination.js +17 -7
  762. package/serialization/types/Proxy.js +17 -7
  763. package/serialization/types/ProxyConfigurationKind.js +17 -7
  764. package/serialization/types/ProxyCredentials.js +17 -7
  765. package/serialization/types/RequestStatusResponse.js +17 -7
  766. package/serialization/types/ScrapeConfig.js +17 -7
  767. package/serialization/types/ScrapeResponse.js +17 -7
  768. package/serialization/types/ScrapeResponseContent.js +17 -7
  769. package/serialization/types/ScrapeResponseEnvelope.js +17 -7
  770. package/serialization/types/ScrapeResponseOutput.js +17 -7
  771. package/serialization/types/ScreenshotConfig.js +17 -7
  772. package/serialization/types/ScreenshotMetadata.js +17 -7
  773. package/serialization/types/ScreenshotRequestConfig.js +17 -7
  774. package/serialization/types/ScrollByConfig.js +17 -7
  775. package/serialization/types/ScrollToEdgeConfig.js +17 -7
  776. package/serialization/types/SessionConfigV1.js +17 -7
  777. package/serialization/types/SessionConfigV1Proxy.js +17 -7
  778. package/serialization/types/SessionEventMessage.js +17 -7
  779. package/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
  780. package/serialization/types/SessionResponse.js +17 -7
  781. package/serialization/types/SessionsResponse.js +17 -7
  782. package/serialization/types/SessionsWithPagination.js +17 -7
  783. package/serialization/types/StatusMessage.js +17 -7
  784. package/serialization/types/StatusMessageStatus.js +17 -7
  785. package/serialization/types/SummaryConfig.js +17 -7
  786. package/serialization/types/SummaryExperimentalConfig.js +17 -7
  787. package/serialization/types/VisualAnalysisConfig.js +17 -7
  788. package/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
  789. package/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
  790. package/serialization/types/VisualAnalysisConfigScope.js +17 -7
  791. package/serialization/types/Window.js +17 -7
  792. package/serialization/types/WindowEventMessage.js +17 -7
  793. package/serialization/types/WindowId.js +17 -7
  794. package/serialization/types/WindowIdResponse.js +17 -7
  795. package/serialization/types/WindowResponse.js +17 -7
  796. package/serialization/types/index.d.ts +15 -0
  797. package/serialization/types/index.js +15 -0
  798. package/utils/batch-operate/SessionQueue.js +2 -2
  799. package/utils/batch-operate/WindowQueue.js +2 -2
  800. package/utils/batch-operate/batch-util.d.ts +1 -1
  801. package/utils/batch-operate/types.d.ts +5 -5
  802. package/utils/process-screenshots.d.ts +1 -2
  803. package/utils/process-screenshots.js +1 -2
  804. package/version.d.ts +1 -0
  805. package/version.js +4 -0
  806. package/wrapper/AirtopClient.d.ts +6 -2
  807. package/wrapper/AirtopClient.js +27 -8
  808. package/wrapper/AirtopFiles.d.ts +38 -0
  809. package/wrapper/AirtopFiles.js +151 -0
  810. package/wrapper/AirtopRequests.js +2 -2
  811. package/wrapper/AirtopSessions.js +7 -5
  812. package/wrapper/AirtopWindows.js +22 -12
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
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
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -56,20 +66,12 @@ class Requests {
56
66
  * await client.requests.getRequestStatus("123e4567-e89b-12d3-a456-426614174000")
57
67
  */
58
68
  getRequestStatus(requestId, requestOptions) {
59
- var _a, _b;
60
69
  return __awaiter(this, void 0, void 0, function* () {
70
+ var _a, _b, _c;
61
71
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
62
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `requests/${encodeURIComponent(requestId)}/status`),
72
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, `requests/${encodeURIComponent(requestId)}/status`),
63
73
  method: "GET",
64
- headers: {
65
- Authorization: yield this._getAuthorizationHeader(),
66
- "X-Fern-Language": "JavaScript",
67
- "X-Fern-SDK-Name": "@airtop/sdk",
68
- "X-Fern-SDK-Version": "0.1.34",
69
- "User-Agent": "@airtop/sdk/0.1.34",
70
- "X-Fern-Runtime": core.RUNTIME.type,
71
- "X-Fern-Runtime-Version": core.RUNTIME.version,
72
- },
74
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
73
75
  contentType: "application/json",
74
76
  requestType: "json",
75
77
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -98,7 +100,7 @@ class Requests {
98
100
  body: _response.error.rawBody,
99
101
  });
100
102
  case "timeout":
101
- throw new errors.AirtopTimeoutError();
103
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /requests/{requestId}/status.");
102
104
  case "unknown":
103
105
  throw new errors.AirtopError({
104
106
  message: _response.error.errorMessage,
@@ -7,6 +7,8 @@ import * as Airtop from "../../../index";
7
7
  export declare namespace Sessions {
8
8
  interface Options {
9
9
  environment?: core.Supplier<environments.AirtopEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
10
12
  apiKey: core.Supplier<core.BearerToken>;
11
13
  fetcher?: core.FetchFunction;
12
14
  }
@@ -17,13 +19,15 @@ export declare namespace Sessions {
17
19
  maxRetries?: number;
18
20
  /** A hook to abort the request. */
19
21
  abortSignal?: AbortSignal;
22
+ /** Additional headers to include in the request. */
23
+ headers?: Record<string, string>;
20
24
  }
21
25
  }
22
26
  export declare class Sessions {
23
27
  protected readonly _options: Sessions.Options;
24
28
  constructor(_options: Sessions.Options);
25
29
  /**
26
- * Get a list of sessions by ID
30
+ * Get a paginated list of sessions filtered by ID or status
27
31
  *
28
32
  * @param {Airtop.SessionsListRequest} request
29
33
  * @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
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
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -42,15 +52,15 @@ exports.Sessions = void 0;
42
52
  const environments = __importStar(require("../../../../environments"));
43
53
  const core = __importStar(require("../../../../core"));
44
54
  const Airtop = __importStar(require("../../../index"));
45
- const url_join_1 = __importDefault(require("url-join"));
46
55
  const serializers = __importStar(require("../../../../serialization/index"));
56
+ const url_join_1 = __importDefault(require("url-join"));
47
57
  const errors = __importStar(require("../../../../errors/index"));
48
58
  class Sessions {
49
59
  constructor(_options) {
50
60
  this._options = _options;
51
61
  }
52
62
  /**
53
- * Get a list of sessions by ID
63
+ * Get a paginated list of sessions filtered by ID or status
54
64
  *
55
65
  * @param {Airtop.SessionsListRequest} request
56
66
  * @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
@@ -65,9 +75,9 @@ class Sessions {
65
75
  * limit: 10
66
76
  * })
67
77
  */
68
- list(request = {}, requestOptions) {
69
- var _a, _b;
70
- return __awaiter(this, void 0, void 0, function* () {
78
+ list() {
79
+ return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
80
+ var _a, _b, _c;
71
81
  const { sessionIds, status, offset, limit } = request;
72
82
  const _queryParams = {};
73
83
  if (sessionIds != null) {
@@ -79,7 +89,9 @@ class Sessions {
79
89
  }
80
90
  }
81
91
  if (status != null) {
82
- _queryParams["status"] = status;
92
+ _queryParams["status"] = serializers.SessionsListRequestStatus.jsonOrThrow(status, {
93
+ unrecognizedObjectKeys: "strip",
94
+ });
83
95
  }
84
96
  if (offset != null) {
85
97
  _queryParams["offset"] = offset.toString();
@@ -88,17 +100,9 @@ class Sessions {
88
100
  _queryParams["limit"] = limit.toString();
89
101
  }
90
102
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
91
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, "sessions"),
103
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, "sessions"),
92
104
  method: "GET",
93
- headers: {
94
- Authorization: yield this._getAuthorizationHeader(),
95
- "X-Fern-Language": "JavaScript",
96
- "X-Fern-SDK-Name": "@airtop/sdk",
97
- "X-Fern-SDK-Version": "0.1.34",
98
- "User-Agent": "@airtop/sdk/0.1.34",
99
- "X-Fern-Runtime": core.RUNTIME.type,
100
- "X-Fern-Runtime-Version": core.RUNTIME.version,
101
- },
105
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
102
106
  contentType: "application/json",
103
107
  queryParameters: _queryParams,
104
108
  requestType: "json",
@@ -155,7 +159,7 @@ class Sessions {
155
159
  body: _response.error.rawBody,
156
160
  });
157
161
  case "timeout":
158
- throw new errors.AirtopTimeoutError();
162
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /sessions.");
159
163
  case "unknown":
160
164
  throw new errors.AirtopError({
161
165
  message: _response.error.errorMessage,
@@ -170,21 +174,13 @@ class Sessions {
170
174
  * @example
171
175
  * await client.sessions.create()
172
176
  */
173
- create(request = {}, requestOptions) {
174
- var _a, _b;
175
- return __awaiter(this, void 0, void 0, function* () {
177
+ create() {
178
+ return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
179
+ var _a, _b, _c;
176
180
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
177
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, "sessions"),
181
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, "sessions"),
178
182
  method: "POST",
179
- headers: {
180
- Authorization: yield this._getAuthorizationHeader(),
181
- "X-Fern-Language": "JavaScript",
182
- "X-Fern-SDK-Name": "@airtop/sdk",
183
- "X-Fern-SDK-Version": "0.1.34",
184
- "User-Agent": "@airtop/sdk/0.1.34",
185
- "X-Fern-Runtime": core.RUNTIME.type,
186
- "X-Fern-Runtime-Version": core.RUNTIME.version,
187
- },
183
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
188
184
  contentType: "application/json",
189
185
  requestType: "json",
190
186
  body: serializers.SessionRestInputV1.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -214,7 +210,7 @@ class Sessions {
214
210
  body: _response.error.rawBody,
215
211
  });
216
212
  case "timeout":
217
- throw new errors.AirtopTimeoutError();
213
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling POST /sessions.");
218
214
  case "unknown":
219
215
  throw new errors.AirtopError({
220
216
  message: _response.error.errorMessage,
@@ -236,20 +232,12 @@ class Sessions {
236
232
  * await client.sessions.getInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b")
237
233
  */
238
234
  getInfo(id, requestOptions) {
239
- var _a, _b;
240
235
  return __awaiter(this, void 0, void 0, function* () {
236
+ var _a, _b, _c;
241
237
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
242
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}`),
238
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}`),
243
239
  method: "GET",
244
- headers: {
245
- Authorization: yield this._getAuthorizationHeader(),
246
- "X-Fern-Language": "JavaScript",
247
- "X-Fern-SDK-Name": "@airtop/sdk",
248
- "X-Fern-SDK-Version": "0.1.34",
249
- "User-Agent": "@airtop/sdk/0.1.34",
250
- "X-Fern-Runtime": core.RUNTIME.type,
251
- "X-Fern-Runtime-Version": core.RUNTIME.version,
252
- },
240
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
253
241
  contentType: "application/json",
254
242
  requestType: "json",
255
243
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -305,7 +293,7 @@ class Sessions {
305
293
  body: _response.error.rawBody,
306
294
  });
307
295
  case "timeout":
308
- throw new errors.AirtopTimeoutError();
296
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /sessions/{id}.");
309
297
  case "unknown":
310
298
  throw new errors.AirtopError({
311
299
  message: _response.error.errorMessage,
@@ -323,20 +311,12 @@ class Sessions {
323
311
  * await client.sessions.terminate("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b")
324
312
  */
325
313
  terminate(id, requestOptions) {
326
- var _a, _b;
327
314
  return __awaiter(this, void 0, void 0, function* () {
315
+ var _a, _b, _c;
328
316
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
329
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}`),
317
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}`),
330
318
  method: "DELETE",
331
- headers: {
332
- Authorization: yield this._getAuthorizationHeader(),
333
- "X-Fern-Language": "JavaScript",
334
- "X-Fern-SDK-Name": "@airtop/sdk",
335
- "X-Fern-SDK-Version": "0.1.34",
336
- "User-Agent": "@airtop/sdk/0.1.34",
337
- "X-Fern-Runtime": core.RUNTIME.type,
338
- "X-Fern-Runtime-Version": core.RUNTIME.version,
339
- },
319
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
340
320
  contentType: "application/json",
341
321
  requestType: "json",
342
322
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -359,7 +339,7 @@ class Sessions {
359
339
  body: _response.error.rawBody,
360
340
  });
361
341
  case "timeout":
362
- throw new errors.AirtopTimeoutError();
342
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling DELETE /sessions/{id}.");
363
343
  case "unknown":
364
344
  throw new errors.AirtopError({
365
345
  message: _response.error.errorMessage,
@@ -370,9 +350,9 @@ class Sessions {
370
350
  /**
371
351
  * Get a session event stream for a given session ID
372
352
  */
373
- events(id, request = {}, requestOptions) {
374
- var _a, _b;
375
- return __awaiter(this, void 0, void 0, function* () {
353
+ events(id_1) {
354
+ return __awaiter(this, arguments, void 0, function* (id, request = {}, requestOptions) {
355
+ var _a, _b, _c;
376
356
  const { lastEventId, all } = request;
377
357
  const _queryParams = {};
378
358
  if (lastEventId != null) {
@@ -382,17 +362,9 @@ class Sessions {
382
362
  _queryParams["all"] = all.toString();
383
363
  }
384
364
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
385
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}/events`),
365
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}/events`),
386
366
  method: "GET",
387
- headers: {
388
- Authorization: yield this._getAuthorizationHeader(),
389
- "X-Fern-Language": "JavaScript",
390
- "X-Fern-SDK-Name": "@airtop/sdk",
391
- "X-Fern-SDK-Version": "0.1.34",
392
- "User-Agent": "@airtop/sdk/0.1.34",
393
- "X-Fern-Runtime": core.RUNTIME.type,
394
- "X-Fern-Runtime-Version": core.RUNTIME.version,
395
- },
367
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
396
368
  contentType: "application/json",
397
369
  queryParameters: _queryParams,
398
370
  requestType: "json",
@@ -460,7 +432,7 @@ class Sessions {
460
432
  body: _response.error.rawBody,
461
433
  });
462
434
  case "timeout":
463
- throw new errors.AirtopTimeoutError();
435
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /sessions/{id}/events.");
464
436
  case "unknown":
465
437
  throw new errors.AirtopError({
466
438
  message: _response.error.errorMessage,
@@ -477,20 +449,12 @@ class Sessions {
477
449
  * await client.sessions.saveProfileOnTermination("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "myProfile")
478
450
  */
479
451
  saveProfileOnTermination(sessionId, profileName, requestOptions) {
480
- var _a, _b;
481
452
  return __awaiter(this, void 0, void 0, function* () {
453
+ var _a, _b, _c;
482
454
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
483
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(sessionId)}/save-profile-on-termination/${encodeURIComponent(profileName)}`),
455
+ url: (0, url_join_1.default)((_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.AirtopEnvironment.Default, `sessions/${encodeURIComponent(sessionId)}/save-profile-on-termination/${encodeURIComponent(profileName)}`),
484
456
  method: "PUT",
485
- headers: {
486
- Authorization: yield this._getAuthorizationHeader(),
487
- "X-Fern-Language": "JavaScript",
488
- "X-Fern-SDK-Name": "@airtop/sdk",
489
- "X-Fern-SDK-Version": "0.1.34",
490
- "User-Agent": "@airtop/sdk/0.1.34",
491
- "X-Fern-Runtime": core.RUNTIME.type,
492
- "X-Fern-Runtime-Version": core.RUNTIME.version,
493
- },
457
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.36-beta0", "User-Agent": "@airtop/sdk/0.1.36-beta0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
494
458
  contentType: "application/json",
495
459
  requestType: "json",
496
460
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -513,7 +477,7 @@ class Sessions {
513
477
  body: _response.error.rawBody,
514
478
  });
515
479
  case "timeout":
516
- throw new errors.AirtopTimeoutError();
480
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling PUT /sessions/{sessionId}/save-profile-on-termination/{profileName}.");
517
481
  case "unknown":
518
482
  throw new errors.AirtopError({
519
483
  message: _response.error.errorMessage,
@@ -1,6 +1,13 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ /**
5
+ * @example
6
+ * {
7
+ * lastEventId: 0,
8
+ * all: true
9
+ * }
10
+ */
4
11
  export interface SessionsEventsRequest {
5
12
  /**
6
13
  * last known event id
@@ -5,18 +5,18 @@ import * as Airtop from "../../../index";
5
5
  /**
6
6
  * Each oneOf object in the array represents one possible Server Sent Events (SSE) message, serialized as UTF-8 text according to the SSE specification.
7
7
  */
8
- export declare type SessionsEventsResponse = Airtop.SessionsEventsResponse.WindowEvent | Airtop.SessionsEventsResponse.SessionEvent | Airtop.SessionsEventsResponse.Status | Airtop.SessionsEventsResponse.Error_;
8
+ export type SessionsEventsResponse = Airtop.SessionsEventsResponse.Status | Airtop.SessionsEventsResponse.Error_ | Airtop.SessionsEventsResponse.WindowEvent | Airtop.SessionsEventsResponse.SessionEvent;
9
9
  export declare namespace SessionsEventsResponse {
10
- interface WindowEvent extends Airtop.SessionsEventsResponseWindowEvent {
11
- event: "windowEvent";
12
- }
13
- interface SessionEvent extends Airtop.SessionsEventsResponseSessionEvent {
14
- event: "sessionEvent";
15
- }
16
10
  interface Status extends Airtop.SessionsEventsResponseStatus {
17
11
  event: "status";
18
12
  }
19
13
  interface Error_ extends Airtop.SessionsEventsResponseError {
20
14
  event: "error";
21
15
  }
16
+ interface WindowEvent extends Airtop.SessionsEventsResponseWindowEvent {
17
+ event: "windowEvent";
18
+ }
19
+ interface SessionEvent extends Airtop.SessionsEventsResponseSessionEvent {
20
+ event: "sessionEvent";
21
+ }
22
22
  }
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * Status of the session to get.
6
6
  */
7
- export declare type SessionsListRequestStatus = "awaitingCapacity" | "initializing" | "running" | "ended" | "completed" | "cancelled" | "all";
7
+ export type SessionsListRequestStatus = "awaitingCapacity" | "initializing" | "running" | "ended" | "completed" | "cancelled" | "all";
8
8
  export declare const SessionsListRequestStatus: {
9
9
  readonly AwaitingCapacity: "awaitingCapacity";
10
10
  readonly Initializing: "initializing";
@@ -1,6 +1,6 @@
1
1
  export * from "./SessionsListRequestStatus";
2
- export * from "./SessionsEventsResponseWindowEvent";
3
- export * from "./SessionsEventsResponseSessionEvent";
4
2
  export * from "./SessionsEventsResponseStatus";
5
3
  export * from "./SessionsEventsResponseError";
4
+ export * from "./SessionsEventsResponseWindowEvent";
5
+ export * from "./SessionsEventsResponseSessionEvent";
6
6
  export * from "./SessionsEventsResponse";
@@ -15,8 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./SessionsListRequestStatus"), exports);
18
- __exportStar(require("./SessionsEventsResponseWindowEvent"), exports);
19
- __exportStar(require("./SessionsEventsResponseSessionEvent"), exports);
20
18
  __exportStar(require("./SessionsEventsResponseStatus"), exports);
21
19
  __exportStar(require("./SessionsEventsResponseError"), exports);
20
+ __exportStar(require("./SessionsEventsResponseWindowEvent"), exports);
21
+ __exportStar(require("./SessionsEventsResponseSessionEvent"), exports);
22
22
  __exportStar(require("./SessionsEventsResponse"), exports);