@airtop/sdk 0.1.34-beta0 → 0.1.35-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 (658) hide show
  1. package/Client.d.ts +12 -8
  2. package/Client.js +3 -3
  3. package/README.md +27 -11
  4. package/api/errors/ForbiddenError.js +17 -7
  5. package/api/errors/InternalServerError.js +17 -7
  6. package/api/errors/NotFoundError.js +17 -7
  7. package/api/errors/UnauthorizedError.js +17 -7
  8. package/api/errors/UnprocessableEntityError.js +17 -7
  9. package/api/resources/automations/client/Client.d.ts +4 -0
  10. package/api/resources/automations/client/Client.js +33 -55
  11. package/api/resources/files/client/Client.d.ts +69 -0
  12. package/api/resources/files/client/Client.js +286 -0
  13. package/api/resources/files/client/index.d.ts +1 -0
  14. package/api/resources/files/client/index.js +17 -0
  15. package/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +20 -0
  16. package/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
  17. package/api/resources/files/client/requests/index.d.ts +2 -0
  18. package/{dist/api/resources/extensionConfigurations → api/resources/files}/index.d.ts +1 -0
  19. package/{dist/api/resources/extensionConfigurations → api/resources/files}/index.js +1 -0
  20. package/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
  21. package/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
  22. package/api/resources/files/types/index.d.ts +1 -0
  23. package/api/resources/files/types/index.js +17 -0
  24. package/api/resources/index.d.ts +3 -1
  25. package/api/resources/index.js +21 -9
  26. package/api/resources/profiles/client/Client.d.ts +4 -0
  27. package/api/resources/profiles/client/Client.js +23 -21
  28. package/api/resources/requests/client/Client.d.ts +4 -0
  29. package/api/resources/requests/client/Client.js +21 -19
  30. package/api/resources/sessions/client/Client.d.ts +7 -2
  31. package/api/resources/sessions/client/Client.js +58 -101
  32. package/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
  33. package/api/resources/sessions/types/SessionsEventsResponse.d.ts +7 -7
  34. package/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
  35. package/api/resources/sessions/types/index.d.ts +2 -2
  36. package/api/resources/sessions/types/index.js +2 -2
  37. package/api/resources/windows/client/Client.d.ts +4 -0
  38. package/api/resources/windows/client/Client.js +139 -337
  39. package/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +1 -1
  40. package/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +1 -1
  41. package/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
  42. package/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
  43. package/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
  44. package/api/types/ClickConfigClickType.d.ts +1 -1
  45. package/api/types/CreateAutomationRequestBodyConfiguration.d.ts +1 -1
  46. package/api/types/CreateFileV1.d.ts +24 -0
  47. package/api/types/CreateFileV1.js +5 -0
  48. package/api/types/CreateFileV1FileType.d.ts +13 -0
  49. package/api/types/CreateFileV1FileType.js +12 -0
  50. package/api/types/DeleteAutomationOutputWrapperBody.d.ts +1 -1
  51. package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
  52. package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
  53. package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
  54. package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
  55. package/api/types/ExternalFile.d.ts +33 -0
  56. package/api/types/ExternalFile.js +5 -0
  57. package/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
  58. package/api/types/FilesResponse.d.ts +10 -0
  59. package/api/types/FilesResponse.js +5 -0
  60. package/api/types/FilesWithPagination.d.ts +10 -0
  61. package/api/types/FilesWithPagination.js +5 -0
  62. package/api/types/GetFileV1.d.ts +24 -0
  63. package/api/types/GetFileV1.js +5 -0
  64. package/api/types/GetFileV1FileType.d.ts +13 -0
  65. package/api/types/GetFileV1FileType.js +12 -0
  66. package/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
  67. package/api/types/Proxy.d.ts +1 -1
  68. package/api/types/SessionConfigV1Proxy.d.ts +1 -1
  69. package/api/types/StatusMessageStatus.d.ts +1 -1
  70. package/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
  71. package/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
  72. package/api/types/VisualAnalysisConfigScope.d.ts +1 -1
  73. package/api/types/index.d.ts +20 -1
  74. package/api/types/index.js +20 -1
  75. package/biome.json +3 -0
  76. package/core/auth/BearerToken.d.ts +1 -1
  77. package/core/fetcher/APIResponse.d.ts +1 -1
  78. package/core/fetcher/Fetcher.d.ts +3 -3
  79. package/core/fetcher/Fetcher.js +6 -5
  80. package/core/fetcher/Supplier.d.ts +1 -1
  81. package/core/fetcher/createRequestUrl.d.ts +1 -1
  82. package/core/fetcher/createRequestUrl.js +1 -2
  83. package/core/fetcher/getFetchFn.js +18 -9
  84. package/core/fetcher/getHeader.js +1 -2
  85. package/core/fetcher/getRequestBody.js +5 -5
  86. package/core/fetcher/getResponseBody.js +4 -2
  87. package/core/fetcher/makeRequest.d.ts +1 -1
  88. package/core/fetcher/requestWithRetries.js +17 -9
  89. package/core/fetcher/signals.d.ts +0 -1
  90. package/core/fetcher/signals.js +2 -3
  91. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
  92. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
  93. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
  94. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  95. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
  96. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
  97. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  98. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
  99. package/core/index.js +17 -7
  100. package/core/json.d.ts +15 -0
  101. package/core/json.js +24 -0
  102. package/core/runtime/runtime.d.ts +1 -1
  103. package/core/runtime/runtime.js +51 -41
  104. package/core/schemas/Schema.d.ts +8 -5
  105. package/core/schemas/Schema.js +3 -0
  106. package/core/schemas/builders/bigint/bigint.d.ts +2 -0
  107. package/core/schemas/builders/bigint/bigint.js +53 -0
  108. package/core/schemas/builders/bigint/index.d.ts +1 -0
  109. package/core/schemas/builders/bigint/index.js +5 -0
  110. package/core/schemas/builders/date/date.js +1 -2
  111. package/core/schemas/builders/enum/enum.js +1 -2
  112. package/core/schemas/builders/index.d.ts +1 -0
  113. package/core/schemas/builders/index.js +1 -0
  114. package/core/schemas/builders/lazy/lazy.d.ts +1 -1
  115. package/core/schemas/builders/lazy/lazy.js +3 -4
  116. package/core/schemas/builders/lazy/lazyObject.js +1 -2
  117. package/core/schemas/builders/list/list.js +1 -2
  118. package/core/schemas/builders/literals/booleanLiteral.js +1 -2
  119. package/core/schemas/builders/literals/stringLiteral.js +1 -2
  120. package/core/schemas/builders/object/object.d.ts +1 -1
  121. package/core/schemas/builders/object/object.js +31 -3
  122. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  123. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  124. package/core/schemas/builders/object/property.js +2 -3
  125. package/core/schemas/builders/object/types.d.ts +16 -11
  126. package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  127. package/core/schemas/builders/object-like/types.d.ts +1 -1
  128. package/core/schemas/builders/record/record.js +2 -4
  129. package/core/schemas/builders/record/types.d.ts +2 -2
  130. package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  131. package/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  132. package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  133. package/core/schemas/builders/set/set.js +1 -2
  134. package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  135. package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  136. package/core/schemas/builders/union/discriminant.js +1 -2
  137. package/core/schemas/builders/union/types.d.ts +6 -6
  138. package/core/schemas/builders/union/union.d.ts +1 -1
  139. package/core/schemas/builders/union/union.js +1 -2
  140. package/core/schemas/utils/MaybePromise.d.ts +1 -1
  141. package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  142. package/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  143. package/core/schemas/utils/entries.d.ts +1 -1
  144. package/core/schemas/utils/entries.js +1 -2
  145. package/core/schemas/utils/filterObject.d.ts +1 -1
  146. package/core/schemas/utils/filterObject.js +1 -2
  147. package/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
  148. package/core/schemas/utils/isPlainObject.js +1 -2
  149. package/core/schemas/utils/keys.d.ts +1 -1
  150. package/core/schemas/utils/keys.js +1 -2
  151. package/core/schemas/utils/maybeSkipValidation.js +1 -2
  152. package/core/schemas/utils/partition.js +1 -2
  153. package/core/streaming-fetcher/Stream.d.ts +0 -1
  154. package/core/streaming-fetcher/Stream.js +20 -21
  155. package/dist/Client.d.ts +12 -8
  156. package/dist/Client.js +3 -3
  157. package/dist/api/errors/ForbiddenError.js +17 -7
  158. package/dist/api/errors/InternalServerError.js +17 -7
  159. package/dist/api/errors/NotFoundError.js +17 -7
  160. package/dist/api/errors/UnauthorizedError.js +17 -7
  161. package/dist/api/errors/UnprocessableEntityError.js +17 -7
  162. package/dist/api/resources/automations/client/Client.d.ts +4 -0
  163. package/dist/api/resources/automations/client/Client.js +33 -55
  164. package/dist/api/resources/files/client/Client.d.ts +69 -0
  165. package/dist/api/resources/files/client/Client.js +286 -0
  166. package/dist/api/resources/files/client/index.d.ts +1 -0
  167. package/dist/api/resources/files/client/index.js +17 -0
  168. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +20 -0
  169. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.js +5 -0
  170. package/dist/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
  171. package/dist/api/resources/files/client/requests/FilesListRequest.js +5 -0
  172. package/dist/api/resources/files/client/requests/index.d.ts +2 -0
  173. package/{api/resources/extensionConfigurations → dist/api/resources/files}/index.d.ts +1 -0
  174. package/{api/resources/extensionConfigurations → dist/api/resources/files}/index.js +1 -0
  175. package/dist/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
  176. package/dist/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
  177. package/dist/api/resources/files/types/index.d.ts +1 -0
  178. package/dist/api/resources/files/types/index.js +17 -0
  179. package/dist/api/resources/index.d.ts +3 -1
  180. package/dist/api/resources/index.js +21 -9
  181. package/dist/api/resources/profiles/client/Client.d.ts +4 -0
  182. package/dist/api/resources/profiles/client/Client.js +23 -21
  183. package/dist/api/resources/requests/client/Client.d.ts +4 -0
  184. package/dist/api/resources/requests/client/Client.js +21 -19
  185. package/dist/api/resources/sessions/client/Client.d.ts +7 -2
  186. package/dist/api/resources/sessions/client/Client.js +58 -101
  187. package/dist/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
  188. package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +7 -7
  189. package/dist/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
  190. package/dist/api/resources/sessions/types/index.d.ts +2 -2
  191. package/dist/api/resources/sessions/types/index.js +2 -2
  192. package/dist/api/resources/windows/client/Client.d.ts +4 -0
  193. package/dist/api/resources/windows/client/Client.js +139 -337
  194. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +1 -1
  195. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +1 -1
  196. package/dist/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
  197. package/dist/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
  198. package/dist/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
  199. package/dist/api/types/ClickConfigClickType.d.ts +1 -1
  200. package/dist/api/types/CreateAutomationRequestBodyConfiguration.d.ts +1 -1
  201. package/dist/api/types/CreateFileV1.d.ts +24 -0
  202. package/dist/api/types/CreateFileV1.js +5 -0
  203. package/dist/api/types/CreateFileV1FileType.d.ts +13 -0
  204. package/dist/api/types/CreateFileV1FileType.js +12 -0
  205. package/dist/api/types/DeleteAutomationOutputWrapperBody.d.ts +1 -1
  206. package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
  207. package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
  208. package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
  209. package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
  210. package/dist/api/types/ExternalFile.d.ts +33 -0
  211. package/dist/api/types/ExternalFile.js +5 -0
  212. package/dist/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
  213. package/dist/api/types/FilesResponse.d.ts +10 -0
  214. package/dist/api/types/FilesResponse.js +5 -0
  215. package/dist/api/types/FilesWithPagination.d.ts +10 -0
  216. package/dist/api/types/FilesWithPagination.js +5 -0
  217. package/dist/api/types/GetFileV1.d.ts +24 -0
  218. package/dist/api/types/GetFileV1.js +5 -0
  219. package/dist/api/types/GetFileV1FileType.d.ts +13 -0
  220. package/dist/api/types/GetFileV1FileType.js +12 -0
  221. package/dist/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
  222. package/dist/api/types/Proxy.d.ts +1 -1
  223. package/dist/api/types/SessionConfigV1Proxy.d.ts +1 -1
  224. package/dist/api/types/StatusMessageStatus.d.ts +1 -1
  225. package/dist/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
  226. package/dist/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
  227. package/dist/api/types/VisualAnalysisConfigScope.d.ts +1 -1
  228. package/dist/api/types/index.d.ts +20 -1
  229. package/dist/api/types/index.js +20 -1
  230. package/dist/core/auth/BearerToken.d.ts +1 -1
  231. package/dist/core/fetcher/APIResponse.d.ts +1 -1
  232. package/dist/core/fetcher/Fetcher.d.ts +3 -3
  233. package/dist/core/fetcher/Fetcher.js +6 -5
  234. package/dist/core/fetcher/Supplier.d.ts +1 -1
  235. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  236. package/dist/core/fetcher/createRequestUrl.js +1 -2
  237. package/dist/core/fetcher/getFetchFn.js +18 -9
  238. package/dist/core/fetcher/getHeader.js +1 -2
  239. package/dist/core/fetcher/getRequestBody.js +5 -5
  240. package/dist/core/fetcher/getResponseBody.js +4 -2
  241. package/dist/core/fetcher/makeRequest.d.ts +1 -1
  242. package/dist/core/fetcher/requestWithRetries.js +17 -9
  243. package/dist/core/fetcher/signals.d.ts +0 -1
  244. package/dist/core/fetcher/signals.js +2 -3
  245. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
  246. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
  247. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
  248. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  249. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
  250. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
  251. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  252. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
  253. package/dist/core/index.js +17 -7
  254. package/dist/core/json.d.ts +15 -0
  255. package/dist/core/json.js +24 -0
  256. package/dist/core/runtime/runtime.d.ts +1 -1
  257. package/dist/core/runtime/runtime.js +51 -41
  258. package/dist/core/schemas/Schema.d.ts +8 -5
  259. package/dist/core/schemas/Schema.js +3 -0
  260. package/dist/core/schemas/builders/bigint/bigint.d.ts +2 -0
  261. package/dist/core/schemas/builders/bigint/bigint.js +53 -0
  262. package/dist/core/schemas/builders/bigint/index.d.ts +1 -0
  263. package/dist/core/schemas/builders/bigint/index.js +5 -0
  264. package/dist/core/schemas/builders/date/date.js +1 -2
  265. package/dist/core/schemas/builders/enum/enum.js +1 -2
  266. package/dist/core/schemas/builders/index.d.ts +1 -0
  267. package/dist/core/schemas/builders/index.js +1 -0
  268. package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
  269. package/dist/core/schemas/builders/lazy/lazy.js +3 -4
  270. package/dist/core/schemas/builders/lazy/lazyObject.js +1 -2
  271. package/dist/core/schemas/builders/list/list.js +1 -2
  272. package/dist/core/schemas/builders/literals/booleanLiteral.js +1 -2
  273. package/dist/core/schemas/builders/literals/stringLiteral.js +1 -2
  274. package/dist/core/schemas/builders/object/object.d.ts +1 -1
  275. package/dist/core/schemas/builders/object/object.js +31 -3
  276. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  277. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  278. package/dist/core/schemas/builders/object/property.js +2 -3
  279. package/dist/core/schemas/builders/object/types.d.ts +16 -11
  280. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  281. package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
  282. package/dist/core/schemas/builders/record/record.js +2 -4
  283. package/dist/core/schemas/builders/record/types.d.ts +2 -2
  284. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  285. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  286. package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  287. package/dist/core/schemas/builders/set/set.js +1 -2
  288. package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  289. package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  290. package/dist/core/schemas/builders/union/discriminant.js +1 -2
  291. package/dist/core/schemas/builders/union/types.d.ts +6 -6
  292. package/dist/core/schemas/builders/union/union.d.ts +1 -1
  293. package/dist/core/schemas/builders/union/union.js +1 -2
  294. package/dist/core/schemas/utils/MaybePromise.d.ts +1 -1
  295. package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  296. package/dist/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  297. package/dist/core/schemas/utils/entries.d.ts +1 -1
  298. package/dist/core/schemas/utils/entries.js +1 -2
  299. package/dist/core/schemas/utils/filterObject.d.ts +1 -1
  300. package/dist/core/schemas/utils/filterObject.js +1 -2
  301. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
  302. package/dist/core/schemas/utils/isPlainObject.js +1 -2
  303. package/dist/core/schemas/utils/keys.d.ts +1 -1
  304. package/dist/core/schemas/utils/keys.js +1 -2
  305. package/dist/core/schemas/utils/maybeSkipValidation.js +1 -2
  306. package/dist/core/schemas/utils/partition.js +1 -2
  307. package/dist/core/streaming-fetcher/Stream.d.ts +0 -1
  308. package/dist/core/streaming-fetcher/Stream.js +20 -21
  309. package/dist/environments.d.ts +1 -1
  310. package/dist/errors/AirtopError.js +2 -1
  311. package/dist/errors/AirtopTimeoutError.d.ts +1 -1
  312. package/dist/errors/AirtopTimeoutError.js +2 -2
  313. package/dist/index.js +17 -7
  314. package/dist/live-view/types.d.ts +1 -1
  315. package/dist/live-view/types.js +1 -1
  316. package/dist/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +17 -7
  317. package/dist/serialization/resources/files/client/index.d.ts +1 -0
  318. package/dist/serialization/resources/files/client/index.js +17 -0
  319. package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +16 -0
  320. package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.js +47 -0
  321. package/dist/serialization/resources/files/client/requests/index.d.ts +1 -0
  322. package/dist/serialization/resources/files/client/requests/index.js +5 -0
  323. package/dist/serialization/resources/files/index.d.ts +2 -0
  324. package/dist/serialization/resources/files/index.js +18 -0
  325. package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
  326. package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
  327. package/dist/serialization/resources/files/types/index.d.ts +1 -0
  328. package/dist/serialization/resources/files/types/index.js +17 -0
  329. package/dist/serialization/resources/index.d.ts +3 -0
  330. package/dist/serialization/resources/index.js +21 -8
  331. package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
  332. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +9 -9
  333. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +21 -11
  334. package/dist/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
  335. package/dist/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
  336. package/dist/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
  337. package/dist/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
  338. package/dist/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
  339. package/dist/serialization/resources/sessions/types/index.d.ts +2 -2
  340. package/dist/serialization/resources/sessions/types/index.js +2 -2
  341. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.js +17 -7
  342. package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +17 -7
  343. package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +17 -7
  344. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +2 -2
  345. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.js +19 -9
  346. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +17 -7
  347. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +17 -7
  348. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +17 -7
  349. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +17 -7
  350. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +17 -7
  351. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +17 -7
  352. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +2 -2
  353. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.js +19 -9
  354. package/dist/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
  355. package/dist/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
  356. package/dist/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
  357. package/dist/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
  358. package/dist/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
  359. package/dist/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
  360. package/dist/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
  361. package/dist/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
  362. package/dist/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
  363. package/dist/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
  364. package/dist/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
  365. package/dist/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
  366. package/dist/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
  367. package/dist/serialization/types/AiPromptResponse.js +17 -7
  368. package/dist/serialization/types/AiResponseEnvelope.js +17 -7
  369. package/dist/serialization/types/AirtopProxyConfiguration.js +17 -7
  370. package/dist/serialization/types/AsyncConfig.js +17 -7
  371. package/dist/serialization/types/AsyncSessionAiResponseEnvelope.js +17 -7
  372. package/dist/serialization/types/AutomationOutput.js +17 -7
  373. package/dist/serialization/types/BrowserWaitNavigationConfig.js +17 -7
  374. package/dist/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
  375. package/dist/serialization/types/ClickConfig.js +17 -7
  376. package/dist/serialization/types/ClickConfigClickType.js +17 -7
  377. package/dist/serialization/types/ClientProvidedResponseMetadata.js +17 -7
  378. package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.js +17 -7
  379. package/dist/serialization/types/CreateFileV1.d.ts +21 -0
  380. package/dist/serialization/types/CreateFileV1.js +52 -0
  381. package/dist/serialization/types/CreateFileV1FileType.d.ts +10 -0
  382. package/dist/serialization/types/CreateFileV1FileType.js +41 -0
  383. package/dist/serialization/types/DeleteAutomationOutputWrapperBody.js +17 -7
  384. package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
  385. package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
  386. package/dist/serialization/types/EnvelopeDefaultMeta.js +17 -7
  387. package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
  388. package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
  389. package/dist/serialization/types/ErrorBody.js +17 -7
  390. package/dist/serialization/types/ErrorDetail.js +17 -7
  391. package/dist/serialization/types/ErrorMessage.js +17 -7
  392. package/dist/serialization/types/ErrorModel.js +17 -7
  393. package/dist/serialization/types/ExternalFile.d.ts +25 -0
  394. package/dist/serialization/types/ExternalFile.js +56 -0
  395. package/dist/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
  396. package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
  397. package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
  398. package/dist/serialization/types/ExternalSessionConfig.js +17 -7
  399. package/dist/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
  400. package/dist/serialization/types/FilesResponse.d.ts +18 -0
  401. package/dist/serialization/types/FilesResponse.js +49 -0
  402. package/dist/serialization/types/FilesWithPagination.d.ts +15 -0
  403. package/dist/serialization/types/FilesWithPagination.js +46 -0
  404. package/dist/serialization/types/GetFileV1.d.ts +21 -0
  405. package/dist/serialization/types/GetFileV1.js +52 -0
  406. package/dist/serialization/types/GetFileV1FileType.d.ts +10 -0
  407. package/dist/serialization/types/{ExtensionConfigurationOutput.js → GetFileV1FileType.js} +19 -14
  408. package/dist/serialization/types/IntervalMonitorConfig.js +17 -7
  409. package/dist/serialization/types/Issue.js +17 -7
  410. package/dist/serialization/types/ListAutomationsOutput.js +17 -7
  411. package/dist/serialization/types/MicroInteractionConfig.js +17 -7
  412. package/dist/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
  413. package/dist/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
  414. package/dist/serialization/types/MonitorConfig.js +17 -7
  415. package/dist/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
  416. package/dist/serialization/types/OperationOutcome.js +17 -7
  417. package/dist/serialization/types/OperationOutcomeResponse.js +17 -7
  418. package/dist/serialization/types/PageQueryConfig.js +17 -7
  419. package/dist/serialization/types/PageQueryExperimentalConfig.js +17 -7
  420. package/dist/serialization/types/PaginatedExtractionConfig.js +17 -7
  421. package/dist/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
  422. package/dist/serialization/types/Pagination.js +17 -7
  423. package/dist/serialization/types/Proxy.js +17 -7
  424. package/dist/serialization/types/ProxyConfigurationKind.js +17 -7
  425. package/dist/serialization/types/ProxyCredentials.js +17 -7
  426. package/dist/serialization/types/RequestStatusResponse.js +17 -7
  427. package/dist/serialization/types/ScrapeConfig.js +17 -7
  428. package/dist/serialization/types/ScrapeResponse.js +17 -7
  429. package/dist/serialization/types/ScrapeResponseContent.js +17 -7
  430. package/dist/serialization/types/ScrapeResponseEnvelope.js +17 -7
  431. package/dist/serialization/types/ScrapeResponseOutput.js +17 -7
  432. package/dist/serialization/types/ScreenshotConfig.js +17 -7
  433. package/dist/serialization/types/ScreenshotMetadata.js +17 -7
  434. package/dist/serialization/types/ScreenshotRequestConfig.js +17 -7
  435. package/dist/serialization/types/ScrollByConfig.js +17 -7
  436. package/dist/serialization/types/ScrollToEdgeConfig.js +17 -7
  437. package/dist/serialization/types/SessionConfigV1.js +17 -7
  438. package/dist/serialization/types/SessionConfigV1Proxy.js +17 -7
  439. package/dist/serialization/types/SessionEventMessage.js +17 -7
  440. package/dist/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
  441. package/dist/serialization/types/SessionResponse.js +17 -7
  442. package/dist/serialization/types/SessionsResponse.js +17 -7
  443. package/dist/serialization/types/SessionsWithPagination.js +17 -7
  444. package/dist/serialization/types/StatusMessage.js +17 -7
  445. package/dist/serialization/types/StatusMessageStatus.js +17 -7
  446. package/dist/serialization/types/SummaryConfig.js +17 -7
  447. package/dist/serialization/types/SummaryExperimentalConfig.js +17 -7
  448. package/dist/serialization/types/VisualAnalysisConfig.js +17 -7
  449. package/dist/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
  450. package/dist/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
  451. package/dist/serialization/types/VisualAnalysisConfigScope.js +17 -7
  452. package/dist/serialization/types/Window.js +17 -7
  453. package/dist/serialization/types/WindowEventMessage.js +17 -7
  454. package/dist/serialization/types/WindowId.js +17 -7
  455. package/dist/serialization/types/WindowIdResponse.js +17 -7
  456. package/dist/serialization/types/WindowResponse.js +17 -7
  457. package/dist/serialization/types/index.d.ts +20 -1
  458. package/dist/serialization/types/index.js +20 -1
  459. package/dist/utils/batch-operate/SessionQueue.js +2 -2
  460. package/dist/utils/batch-operate/WindowQueue.js +2 -2
  461. package/dist/utils/batch-operate/batch-util.d.ts +1 -1
  462. package/dist/utils/batch-operate/types.d.ts +5 -5
  463. package/dist/utils/process-screenshots.d.ts +1 -2
  464. package/dist/utils/process-screenshots.js +1 -2
  465. package/dist/version.d.ts +1 -0
  466. package/dist/{api/resources/extensionConfigurations/client/requests/index.js → version.js} +2 -0
  467. package/dist/wrapper/AirtopClient.d.ts +5 -2
  468. package/dist/wrapper/AirtopClient.js +24 -8
  469. package/dist/wrapper/AirtopFiles.d.ts +38 -0
  470. package/dist/wrapper/AirtopFiles.js +151 -0
  471. package/dist/wrapper/AirtopRequests.js +2 -2
  472. package/dist/wrapper/AirtopSessions.js +7 -5
  473. package/dist/wrapper/AirtopWindows.js +22 -12
  474. package/environments.d.ts +1 -1
  475. package/errors/AirtopError.js +2 -1
  476. package/errors/AirtopTimeoutError.d.ts +1 -1
  477. package/errors/AirtopTimeoutError.js +2 -2
  478. package/index.js +17 -7
  479. package/{jest.config.js → jest.config.mjs} +4 -1
  480. package/live-view/types.d.ts +1 -1
  481. package/live-view/types.js +1 -1
  482. package/package.json +16 -13
  483. package/reference.md +737 -46
  484. package/scripts/rename-to-esm-files.js +115 -0
  485. package/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +17 -7
  486. package/serialization/resources/files/client/index.d.ts +1 -0
  487. package/serialization/resources/files/client/index.js +17 -0
  488. package/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +16 -0
  489. package/serialization/resources/files/client/requests/CreateFileRestInputV1.js +47 -0
  490. package/serialization/resources/files/client/requests/index.d.ts +1 -0
  491. package/serialization/resources/files/client/requests/index.js +5 -0
  492. package/serialization/resources/files/index.d.ts +2 -0
  493. package/serialization/resources/files/index.js +18 -0
  494. package/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
  495. package/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
  496. package/serialization/resources/files/types/index.d.ts +1 -0
  497. package/serialization/resources/files/types/index.js +17 -0
  498. package/serialization/resources/index.d.ts +3 -0
  499. package/serialization/resources/index.js +21 -8
  500. package/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
  501. package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +9 -9
  502. package/serialization/resources/sessions/types/SessionsEventsResponse.js +21 -11
  503. package/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
  504. package/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
  505. package/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
  506. package/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
  507. package/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
  508. package/serialization/resources/sessions/types/index.d.ts +2 -2
  509. package/serialization/resources/sessions/types/index.js +2 -2
  510. package/serialization/resources/windows/client/requests/AsyncClickRequest.js +17 -7
  511. package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +17 -7
  512. package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +17 -7
  513. package/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +2 -2
  514. package/serialization/resources/windows/client/requests/AsyncHoverRequest.js +19 -9
  515. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +17 -7
  516. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +17 -7
  517. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +17 -7
  518. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +17 -7
  519. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +17 -7
  520. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +17 -7
  521. package/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +2 -2
  522. package/serialization/resources/windows/client/requests/AsyncTypeRequest.js +19 -9
  523. package/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
  524. package/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
  525. package/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
  526. package/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
  527. package/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
  528. package/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
  529. package/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
  530. package/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
  531. package/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
  532. package/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
  533. package/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
  534. package/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
  535. package/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
  536. package/serialization/types/AiPromptResponse.js +17 -7
  537. package/serialization/types/AiResponseEnvelope.js +17 -7
  538. package/serialization/types/AirtopProxyConfiguration.js +17 -7
  539. package/serialization/types/AsyncConfig.js +17 -7
  540. package/serialization/types/AsyncSessionAiResponseEnvelope.js +17 -7
  541. package/serialization/types/AutomationOutput.js +17 -7
  542. package/serialization/types/BrowserWaitNavigationConfig.js +17 -7
  543. package/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
  544. package/serialization/types/ClickConfig.js +17 -7
  545. package/serialization/types/ClickConfigClickType.js +17 -7
  546. package/serialization/types/ClientProvidedResponseMetadata.js +17 -7
  547. package/serialization/types/CreateAutomationRequestBodyConfiguration.js +17 -7
  548. package/serialization/types/CreateFileV1.d.ts +21 -0
  549. package/serialization/types/CreateFileV1.js +52 -0
  550. package/serialization/types/CreateFileV1FileType.d.ts +10 -0
  551. package/serialization/types/CreateFileV1FileType.js +41 -0
  552. package/serialization/types/DeleteAutomationOutputWrapperBody.js +17 -7
  553. package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
  554. package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
  555. package/serialization/types/EnvelopeDefaultMeta.js +17 -7
  556. package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
  557. package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
  558. package/serialization/types/ErrorBody.js +17 -7
  559. package/serialization/types/ErrorDetail.js +17 -7
  560. package/serialization/types/ErrorMessage.js +17 -7
  561. package/serialization/types/ErrorModel.js +17 -7
  562. package/serialization/types/ExternalFile.d.ts +25 -0
  563. package/serialization/types/ExternalFile.js +56 -0
  564. package/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
  565. package/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
  566. package/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
  567. package/serialization/types/ExternalSessionConfig.js +17 -7
  568. package/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
  569. package/serialization/types/FilesResponse.d.ts +18 -0
  570. package/serialization/types/FilesResponse.js +49 -0
  571. package/serialization/types/FilesWithPagination.d.ts +15 -0
  572. package/serialization/types/FilesWithPagination.js +46 -0
  573. package/serialization/types/GetFileV1.d.ts +21 -0
  574. package/serialization/types/GetFileV1.js +52 -0
  575. package/serialization/types/GetFileV1FileType.d.ts +10 -0
  576. package/serialization/types/{ExtensionConfigurationOutput.js → GetFileV1FileType.js} +19 -14
  577. package/serialization/types/IntervalMonitorConfig.js +17 -7
  578. package/serialization/types/Issue.js +17 -7
  579. package/serialization/types/ListAutomationsOutput.js +17 -7
  580. package/serialization/types/MicroInteractionConfig.js +17 -7
  581. package/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
  582. package/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
  583. package/serialization/types/MonitorConfig.js +17 -7
  584. package/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
  585. package/serialization/types/OperationOutcome.js +17 -7
  586. package/serialization/types/OperationOutcomeResponse.js +17 -7
  587. package/serialization/types/PageQueryConfig.js +17 -7
  588. package/serialization/types/PageQueryExperimentalConfig.js +17 -7
  589. package/serialization/types/PaginatedExtractionConfig.js +17 -7
  590. package/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
  591. package/serialization/types/Pagination.js +17 -7
  592. package/serialization/types/Proxy.js +17 -7
  593. package/serialization/types/ProxyConfigurationKind.js +17 -7
  594. package/serialization/types/ProxyCredentials.js +17 -7
  595. package/serialization/types/RequestStatusResponse.js +17 -7
  596. package/serialization/types/ScrapeConfig.js +17 -7
  597. package/serialization/types/ScrapeResponse.js +17 -7
  598. package/serialization/types/ScrapeResponseContent.js +17 -7
  599. package/serialization/types/ScrapeResponseEnvelope.js +17 -7
  600. package/serialization/types/ScrapeResponseOutput.js +17 -7
  601. package/serialization/types/ScreenshotConfig.js +17 -7
  602. package/serialization/types/ScreenshotMetadata.js +17 -7
  603. package/serialization/types/ScreenshotRequestConfig.js +17 -7
  604. package/serialization/types/ScrollByConfig.js +17 -7
  605. package/serialization/types/ScrollToEdgeConfig.js +17 -7
  606. package/serialization/types/SessionConfigV1.js +17 -7
  607. package/serialization/types/SessionConfigV1Proxy.js +17 -7
  608. package/serialization/types/SessionEventMessage.js +17 -7
  609. package/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
  610. package/serialization/types/SessionResponse.js +17 -7
  611. package/serialization/types/SessionsResponse.js +17 -7
  612. package/serialization/types/SessionsWithPagination.js +17 -7
  613. package/serialization/types/StatusMessage.js +17 -7
  614. package/serialization/types/StatusMessageStatus.js +17 -7
  615. package/serialization/types/SummaryConfig.js +17 -7
  616. package/serialization/types/SummaryExperimentalConfig.js +17 -7
  617. package/serialization/types/VisualAnalysisConfig.js +17 -7
  618. package/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
  619. package/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
  620. package/serialization/types/VisualAnalysisConfigScope.js +17 -7
  621. package/serialization/types/Window.js +17 -7
  622. package/serialization/types/WindowEventMessage.js +17 -7
  623. package/serialization/types/WindowId.js +17 -7
  624. package/serialization/types/WindowIdResponse.js +17 -7
  625. package/serialization/types/WindowResponse.js +17 -7
  626. package/serialization/types/index.d.ts +20 -1
  627. package/serialization/types/index.js +20 -1
  628. package/utils/batch-operate/SessionQueue.js +2 -2
  629. package/utils/batch-operate/WindowQueue.js +2 -2
  630. package/utils/batch-operate/batch-util.d.ts +1 -1
  631. package/utils/batch-operate/types.d.ts +5 -5
  632. package/utils/process-screenshots.d.ts +1 -2
  633. package/utils/process-screenshots.js +1 -2
  634. package/version.d.ts +1 -0
  635. package/{dist/api/resources/extensionConfigurations/client/index.js → version.js} +2 -0
  636. package/wrapper/AirtopClient.d.ts +5 -2
  637. package/wrapper/AirtopClient.js +24 -8
  638. package/wrapper/AirtopFiles.d.ts +38 -0
  639. package/wrapper/AirtopFiles.js +151 -0
  640. package/wrapper/AirtopRequests.js +2 -2
  641. package/wrapper/AirtopSessions.js +7 -5
  642. package/wrapper/AirtopWindows.js +22 -12
  643. package/api/resources/extensionConfigurations/client/Client.d.ts +0 -40
  644. package/api/resources/extensionConfigurations/client/Client.js +0 -149
  645. package/api/resources/extensionConfigurations/client/index.d.ts +0 -1
  646. package/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.d.ts +0 -13
  647. package/api/resources/extensionConfigurations/client/requests/index.d.ts +0 -1
  648. package/dist/api/resources/extensionConfigurations/client/Client.d.ts +0 -40
  649. package/dist/api/resources/extensionConfigurations/client/Client.js +0 -149
  650. package/dist/api/resources/extensionConfigurations/client/index.d.ts +0 -1
  651. package/dist/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.d.ts +0 -13
  652. package/dist/api/resources/extensionConfigurations/client/requests/index.d.ts +0 -1
  653. package/dist/serialization/types/ExtensionConfigurationOutput.d.ts +0 -15
  654. package/serialization/types/ExtensionConfigurationOutput.d.ts +0 -15
  655. /package/api/resources/{extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.js → files/client/requests/CreateFileRestInputV1.js} +0 -0
  656. /package/{dist/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.js → api/resources/files/client/requests/FilesListRequest.js} +0 -0
  657. /package/api/resources/{extensionConfigurations/client → files/client/requests}/index.js +0 -0
  658. /package/{api/resources/extensionConfigurations → dist/api/resources/files}/client/requests/index.js +0 -0
package/Client.d.ts CHANGED
@@ -5,13 +5,15 @@ import * as environments from "./environments";
5
5
  import * as core from "./core";
6
6
  import { Windows } from "./api/resources/windows/client/Client";
7
7
  import { Automations } from "./api/resources/automations/client/Client";
8
- import { ExtensionConfigurations } from "./api/resources/extensionConfigurations/client/Client";
8
+ import { Files } from "./api/resources/files/client/Client";
9
9
  import { Profiles } from "./api/resources/profiles/client/Client";
10
10
  import { Requests } from "./api/resources/requests/client/Client";
11
11
  import { Sessions } from "./api/resources/sessions/client/Client";
12
12
  export declare namespace AirtopClient {
13
13
  interface Options {
14
14
  environment?: core.Supplier<environments.AirtopEnvironment | string>;
15
+ /** Specify a custom URL to connect the client to. */
16
+ baseUrl?: core.Supplier<string>;
15
17
  apiKey: core.Supplier<core.BearerToken>;
16
18
  fetcher?: core.FetchFunction;
17
19
  }
@@ -22,21 +24,23 @@ export declare namespace AirtopClient {
22
24
  maxRetries?: number;
23
25
  /** A hook to abort the request. */
24
26
  abortSignal?: AbortSignal;
27
+ /** Additional headers to include in the request. */
28
+ headers?: Record<string, string>;
25
29
  }
26
30
  }
27
31
  export declare class AirtopClient {
28
32
  protected readonly _options: AirtopClient.Options;
29
- constructor(_options: AirtopClient.Options);
30
33
  protected _windows: Windows | undefined;
31
- get windows(): Windows;
32
34
  protected _automations: Automations | undefined;
33
- get automations(): Automations;
34
- protected _extensionConfigurations: ExtensionConfigurations | undefined;
35
- get extensionConfigurations(): ExtensionConfigurations;
35
+ protected _files: Files | undefined;
36
36
  protected _profiles: Profiles | undefined;
37
- get profiles(): Profiles;
38
37
  protected _requests: Requests | undefined;
39
- get requests(): Requests;
40
38
  protected _sessions: Sessions | undefined;
39
+ constructor(_options: AirtopClient.Options);
40
+ get windows(): Windows;
41
+ get automations(): Automations;
42
+ get files(): Files;
43
+ get profiles(): Profiles;
44
+ get requests(): Requests;
41
45
  get sessions(): Sessions;
42
46
  }
package/Client.js CHANGED
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.AirtopClient = void 0;
7
7
  const Client_1 = require("./api/resources/windows/client/Client");
8
8
  const Client_2 = require("./api/resources/automations/client/Client");
9
- const Client_3 = require("./api/resources/extensionConfigurations/client/Client");
9
+ const Client_3 = require("./api/resources/files/client/Client");
10
10
  const Client_4 = require("./api/resources/profiles/client/Client");
11
11
  const Client_5 = require("./api/resources/requests/client/Client");
12
12
  const Client_6 = require("./api/resources/sessions/client/Client");
@@ -22,9 +22,9 @@ class AirtopClient {
22
22
  var _a;
23
23
  return ((_a = this._automations) !== null && _a !== void 0 ? _a : (this._automations = new Client_2.Automations(this._options)));
24
24
  }
25
- get extensionConfigurations() {
25
+ get files() {
26
26
  var _a;
27
- return ((_a = this._extensionConfigurations) !== null && _a !== void 0 ? _a : (this._extensionConfigurations = new Client_3.ExtensionConfigurations(this._options)));
27
+ return ((_a = this._files) !== null && _a !== void 0 ? _a : (this._files = new Client_3.Files(this._options)));
28
28
  }
29
29
  get profiles() {
30
30
  var _a;
package/README.md CHANGED
@@ -11,6 +11,10 @@ The Airtop TypeScript library provides convenient access to the Airtop API from
11
11
  npm i -s @airtop/sdk
12
12
  ```
13
13
 
14
+ ## Reference
15
+
16
+ A full reference for this library is available [here](./reference.md).
17
+
14
18
  ## Usage
15
19
 
16
20
  Instantiate and use the client with the following:
@@ -58,17 +62,29 @@ try {
58
62
 
59
63
  ## Advanced
60
64
 
65
+ ### Additional Headers
66
+
67
+ If you would like to send additional headers as part of the request, use the `headers` request option.
68
+
69
+ ```typescript
70
+ const response = await client.windows.asyncClick(..., {
71
+ headers: {
72
+ 'X-Custom-Header': 'custom value'
73
+ }
74
+ });
75
+ ```
76
+
61
77
  ### Retries
62
78
 
63
79
  The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
64
- as the request is deemed retriable and the number of retry attempts has not grown larger than the configured
80
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
65
81
  retry limit (default: 2).
66
82
 
67
- A request is deemed retriable when any of the following HTTP status codes is returned:
83
+ A request is deemed retryable when any of the following HTTP status codes is returned:
68
84
 
69
- - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
70
- - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
71
- - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
85
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
86
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
87
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
72
88
 
73
89
  Use the `maxRetries` request option to configure this behavior.
74
90
 
@@ -105,12 +121,12 @@ controller.abort(); // aborts the request
105
121
  The SDK defaults to `node-fetch` but will use the global fetch client if present. The SDK works in the following
106
122
  runtimes:
107
123
 
108
- - Node.js 18+
109
- - Vercel
110
- - Cloudflare Workers
111
- - Deno v1.25+
112
- - Bun 1.0+
113
- - React Native
124
+ - Node.js 18+
125
+ - Vercel
126
+ - Cloudflare Workers
127
+ - Deno v1.25+
128
+ - Bun 1.0+
129
+ - React Native
114
130
 
115
131
  ### Customizing Fetch Client
116
132
 
@@ -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
  Object.defineProperty(exports, "__esModule", { value: true });
29
39
  exports.ForbiddenError = void 0;
30
40
  const errors = __importStar(require("../../errors/index"));
@@ -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
  Object.defineProperty(exports, "__esModule", { value: true });
29
39
  exports.InternalServerError = void 0;
30
40
  const errors = __importStar(require("../../errors/index"));
@@ -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
  Object.defineProperty(exports, "__esModule", { value: true });
29
39
  exports.NotFoundError = void 0;
30
40
  const errors = __importStar(require("../../errors/index"));
@@ -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
  Object.defineProperty(exports, "__esModule", { value: true });
29
39
  exports.UnauthorizedError = void 0;
30
40
  const errors = __importStar(require("../../errors/index"));
@@ -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
  Object.defineProperty(exports, "__esModule", { value: true });
29
39
  exports.UnprocessableEntityError = void 0;
30
40
  const errors = __importStar(require("../../errors/index"));
@@ -7,6 +7,8 @@ import * as Airtop from "../../../index";
7
7
  export declare namespace Automations {
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,6 +19,8 @@ export declare namespace Automations {
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 Automations {
@@ -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) {
@@ -58,20 +68,12 @@ class Automations {
58
68
  * await client.automations.listAutomations()
59
69
  */
60
70
  listAutomations(requestOptions) {
61
- var _a, _b;
62
71
  return __awaiter(this, void 0, void 0, function* () {
72
+ var _a, _b, _c;
63
73
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
64
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, "automations"),
74
+ 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, "automations"),
65
75
  method: "GET",
66
- headers: {
67
- Authorization: yield this._getAuthorizationHeader(),
68
- "X-Fern-Language": "JavaScript",
69
- "X-Fern-SDK-Name": "@airtop/sdk",
70
- "X-Fern-SDK-Version": "0.1.34-beta0",
71
- "User-Agent": "@airtop/sdk/0.1.34-beta0",
72
- "X-Fern-Runtime": core.RUNTIME.type,
73
- "X-Fern-Runtime-Version": core.RUNTIME.version,
74
- },
76
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
75
77
  contentType: "application/json",
76
78
  requestType: "json",
77
79
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -100,7 +102,7 @@ class Automations {
100
102
  body: _response.error.rawBody,
101
103
  });
102
104
  case "timeout":
103
- throw new errors.AirtopTimeoutError();
105
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /automations.");
104
106
  case "unknown":
105
107
  throw new errors.AirtopError({
106
108
  message: _response.error.errorMessage,
@@ -128,20 +130,12 @@ class Automations {
128
130
  * })
129
131
  */
130
132
  updateAutomationDescription(request, requestOptions) {
131
- var _a, _b;
132
133
  return __awaiter(this, void 0, void 0, function* () {
134
+ var _a, _b, _c;
133
135
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
134
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, "automations/description"),
136
+ 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, "automations/description"),
135
137
  method: "PUT",
136
- headers: {
137
- Authorization: yield this._getAuthorizationHeader(),
138
- "X-Fern-Language": "JavaScript",
139
- "X-Fern-SDK-Name": "@airtop/sdk",
140
- "X-Fern-SDK-Version": "0.1.34-beta0",
141
- "User-Agent": "@airtop/sdk/0.1.34-beta0",
142
- "X-Fern-Runtime": core.RUNTIME.type,
143
- "X-Fern-Runtime-Version": core.RUNTIME.version,
144
- },
138
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
145
139
  contentType: "application/json",
146
140
  requestType: "json",
147
141
  body: serializers.UpdateAutomationDescriptionInputBody.jsonOrThrow(request, {
@@ -216,7 +210,7 @@ class Automations {
216
210
  body: _response.error.rawBody,
217
211
  });
218
212
  case "timeout":
219
- throw new errors.AirtopTimeoutError();
213
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling PUT /automations/description.");
220
214
  case "unknown":
221
215
  throw new errors.AirtopError({
222
216
  message: _response.error.errorMessage,
@@ -240,20 +234,12 @@ class Automations {
240
234
  * await client.automations.getAutomation("automationId")
241
235
  */
242
236
  getAutomation(automationId, requestOptions) {
243
- var _a, _b;
244
237
  return __awaiter(this, void 0, void 0, function* () {
238
+ var _a, _b, _c;
245
239
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
246
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `automations/${encodeURIComponent(automationId)}`),
240
+ 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, `automations/${encodeURIComponent(automationId)}`),
247
241
  method: "GET",
248
- headers: {
249
- Authorization: yield this._getAuthorizationHeader(),
250
- "X-Fern-Language": "JavaScript",
251
- "X-Fern-SDK-Name": "@airtop/sdk",
252
- "X-Fern-SDK-Version": "0.1.34-beta0",
253
- "User-Agent": "@airtop/sdk/0.1.34-beta0",
254
- "X-Fern-Runtime": core.RUNTIME.type,
255
- "X-Fern-Runtime-Version": core.RUNTIME.version,
256
- },
242
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
257
243
  contentType: "application/json",
258
244
  requestType: "json",
259
245
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -325,7 +311,7 @@ class Automations {
325
311
  body: _response.error.rawBody,
326
312
  });
327
313
  case "timeout":
328
- throw new errors.AirtopTimeoutError();
314
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /automations/{automationId}.");
329
315
  case "unknown":
330
316
  throw new errors.AirtopError({
331
317
  message: _response.error.errorMessage,
@@ -349,20 +335,12 @@ class Automations {
349
335
  * await client.automations.deleteAutomation("automationId")
350
336
  */
351
337
  deleteAutomation(automationId, requestOptions) {
352
- var _a, _b;
353
338
  return __awaiter(this, void 0, void 0, function* () {
339
+ var _a, _b, _c;
354
340
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
355
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.AirtopEnvironment.Default, `automations/${encodeURIComponent(automationId)}`),
341
+ 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, `automations/${encodeURIComponent(automationId)}`),
356
342
  method: "DELETE",
357
- headers: {
358
- Authorization: yield this._getAuthorizationHeader(),
359
- "X-Fern-Language": "JavaScript",
360
- "X-Fern-SDK-Name": "@airtop/sdk",
361
- "X-Fern-SDK-Version": "0.1.34-beta0",
362
- "User-Agent": "@airtop/sdk/0.1.34-beta0",
363
- "X-Fern-Runtime": core.RUNTIME.type,
364
- "X-Fern-Runtime-Version": core.RUNTIME.version,
365
- },
343
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
366
344
  contentType: "application/json",
367
345
  requestType: "json",
368
346
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -434,7 +412,7 @@ class Automations {
434
412
  body: _response.error.rawBody,
435
413
  });
436
414
  case "timeout":
437
- throw new errors.AirtopTimeoutError();
415
+ throw new errors.AirtopTimeoutError("Timeout exceeded when calling DELETE /automations/{automationId}.");
438
416
  case "unknown":
439
417
  throw new errors.AirtopError({
440
418
  message: _response.error.errorMessage,
@@ -0,0 +1,69 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../environments";
5
+ import * as core from "../../../../core";
6
+ import * as Airtop from "../../../index";
7
+ export declare namespace Files {
8
+ interface Options {
9
+ environment?: core.Supplier<environments.AirtopEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
12
+ apiKey: core.Supplier<core.BearerToken>;
13
+ fetcher?: core.FetchFunction;
14
+ }
15
+ interface RequestOptions {
16
+ /** The maximum time to wait for a response in seconds. */
17
+ timeoutInSeconds?: number;
18
+ /** The number of times to retry the request. Defaults to 2. */
19
+ maxRetries?: number;
20
+ /** A hook to abort the request. */
21
+ abortSignal?: AbortSignal;
22
+ /** Additional headers to include in the request. */
23
+ headers?: Record<string, string>;
24
+ }
25
+ }
26
+ export declare class Files {
27
+ protected readonly _options: Files.Options;
28
+ constructor(_options: Files.Options);
29
+ /**
30
+ * Get a list of files filtered by session ID
31
+ *
32
+ * @param {Airtop.FilesListRequest} request
33
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
34
+ *
35
+ * @example
36
+ * await client.files.list({
37
+ * offset: 1,
38
+ * limit: 10
39
+ * })
40
+ */
41
+ list(request?: Airtop.FilesListRequest, requestOptions?: Files.RequestOptions): Promise<Airtop.FilesResponse>;
42
+ /**
43
+ * @param {Airtop.CreateFileRestInputV1} request
44
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
45
+ *
46
+ * @example
47
+ * await client.files.create({
48
+ * fileName: "fileName"
49
+ * })
50
+ */
51
+ create(request: Airtop.CreateFileRestInputV1, requestOptions?: Files.RequestOptions): Promise<Airtop.EnvelopeCreateFileV1EnvelopeDefaultMeta>;
52
+ /**
53
+ * @param {string} id - ID of the file
54
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
55
+ *
56
+ * @example
57
+ * await client.files.get("id")
58
+ */
59
+ get(id: string, requestOptions?: Files.RequestOptions): Promise<Airtop.EnvelopeGetFileV1EnvelopeDefaultMeta>;
60
+ /**
61
+ * @param {string} id - ID of the file
62
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
63
+ *
64
+ * @example
65
+ * await client.files.delete("id")
66
+ */
67
+ delete(id: string, requestOptions?: Files.RequestOptions): Promise<void>;
68
+ protected _getAuthorizationHeader(): Promise<string>;
69
+ }