@airtop/sdk 0.1.34 → 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 (786) 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 +20 -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 +15 -1
  46. package/api/resources/sessions/client/Client.js +98 -88
  47. package/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
  48. package/api/resources/sessions/types/SessionsEventsResponse.d.ts +4 -4
  49. package/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
  50. package/api/resources/sessions/types/index.d.ts +1 -1
  51. package/api/resources/sessions/types/index.js +1 -1
  52. package/api/resources/windows/client/Client.d.ts +142 -0
  53. package/api/resources/windows/client/Client.js +700 -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/AsyncExecuteAutomationRequest.d.ts +27 -0
  59. package/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +5 -0
  60. package/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
  61. package/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
  62. package/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
  63. package/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
  64. package/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
  65. package/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
  66. package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
  67. package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
  68. package/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
  69. package/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
  70. package/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
  71. package/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
  72. package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
  73. package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
  74. package/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
  75. package/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
  76. package/api/resources/windows/client/requests/index.d.ts +11 -0
  77. package/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
  78. package/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
  79. package/api/types/AsyncConfig.d.ts +7 -0
  80. package/api/types/AsyncConfig.js +5 -0
  81. package/api/types/AsyncSessionAiResponseEnvelope.d.ts +9 -0
  82. package/api/types/AsyncSessionAiResponseEnvelope.js +5 -0
  83. package/api/types/AutomationOutput.d.ts +10 -0
  84. package/api/types/AutomationOutput.js +5 -0
  85. package/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
  86. package/api/types/ClickConfigClickType.d.ts +1 -1
  87. package/api/types/CreateAutomationRequestBodyConfiguration.d.ts +4 -0
  88. package/api/types/CreateAutomationRequestBodyConfiguration.js +5 -0
  89. package/api/types/CreateFileV1.d.ts +24 -0
  90. package/api/types/CreateFileV1.js +5 -0
  91. package/api/types/CreateFileV1FileType.d.ts +13 -0
  92. package/api/types/CreateFileV1FileType.js +12 -0
  93. package/api/types/DeleteAutomationOutputWrapperBody.d.ts +4 -0
  94. package/api/types/DeleteAutomationOutputWrapperBody.js +5 -0
  95. package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
  96. package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
  97. package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
  98. package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
  99. package/api/types/ExtensionConfigurationOutput.d.ts +13 -0
  100. package/api/types/ExtensionConfigurationOutput.js +5 -0
  101. package/api/types/ExternalFile.d.ts +33 -0
  102. package/api/types/ExternalFile.js +5 -0
  103. package/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
  104. package/api/types/FilesResponse.d.ts +10 -0
  105. package/api/types/FilesResponse.js +5 -0
  106. package/api/types/FilesWithPagination.d.ts +10 -0
  107. package/api/types/FilesWithPagination.js +5 -0
  108. package/api/types/GetFileV1.d.ts +24 -0
  109. package/api/types/GetFileV1.js +5 -0
  110. package/api/types/GetFileV1FileType.d.ts +13 -0
  111. package/api/types/GetFileV1FileType.js +12 -0
  112. package/api/types/ListAutomationsOutput.d.ts +7 -0
  113. package/api/types/ListAutomationsOutput.js +5 -0
  114. package/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
  115. package/api/types/Proxy.d.ts +1 -1
  116. package/api/types/SessionConfigV1Proxy.d.ts +1 -1
  117. package/api/types/StatusMessageStatus.d.ts +1 -1
  118. package/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
  119. package/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
  120. package/api/types/VisualAnalysisConfigScope.d.ts +1 -1
  121. package/api/types/index.d.ts +26 -0
  122. package/api/types/index.js +26 -0
  123. package/biome.json +3 -0
  124. package/core/auth/BearerToken.d.ts +1 -1
  125. package/core/fetcher/APIResponse.d.ts +1 -1
  126. package/core/fetcher/Fetcher.d.ts +3 -3
  127. package/core/fetcher/Fetcher.js +6 -5
  128. package/core/fetcher/Supplier.d.ts +1 -1
  129. package/core/fetcher/createRequestUrl.d.ts +1 -1
  130. package/core/fetcher/createRequestUrl.js +1 -2
  131. package/core/fetcher/getFetchFn.js +18 -9
  132. package/core/fetcher/getHeader.js +1 -2
  133. package/core/fetcher/getRequestBody.js +5 -5
  134. package/core/fetcher/getResponseBody.js +4 -2
  135. package/core/fetcher/makeRequest.d.ts +1 -1
  136. package/core/fetcher/requestWithRetries.js +17 -9
  137. package/core/fetcher/signals.d.ts +0 -1
  138. package/core/fetcher/signals.js +2 -3
  139. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
  140. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
  141. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
  142. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  143. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
  144. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
  145. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  146. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
  147. package/core/index.js +17 -7
  148. package/core/json.d.ts +15 -0
  149. package/core/json.js +24 -0
  150. package/core/runtime/runtime.d.ts +1 -1
  151. package/core/runtime/runtime.js +51 -41
  152. package/core/schemas/Schema.d.ts +8 -5
  153. package/core/schemas/Schema.js +3 -0
  154. package/core/schemas/builders/bigint/bigint.d.ts +2 -0
  155. package/core/schemas/builders/bigint/bigint.js +53 -0
  156. package/core/schemas/builders/bigint/index.d.ts +1 -0
  157. package/core/schemas/builders/bigint/index.js +5 -0
  158. package/core/schemas/builders/date/date.js +1 -2
  159. package/core/schemas/builders/enum/enum.js +1 -2
  160. package/core/schemas/builders/index.d.ts +1 -0
  161. package/core/schemas/builders/index.js +1 -0
  162. package/core/schemas/builders/lazy/lazy.d.ts +1 -1
  163. package/core/schemas/builders/lazy/lazy.js +3 -4
  164. package/core/schemas/builders/lazy/lazyObject.js +1 -2
  165. package/core/schemas/builders/list/list.js +1 -2
  166. package/core/schemas/builders/literals/booleanLiteral.js +1 -2
  167. package/core/schemas/builders/literals/stringLiteral.js +1 -2
  168. package/core/schemas/builders/object/object.d.ts +1 -1
  169. package/core/schemas/builders/object/object.js +31 -3
  170. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  171. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  172. package/core/schemas/builders/object/property.js +2 -3
  173. package/core/schemas/builders/object/types.d.ts +16 -11
  174. package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  175. package/core/schemas/builders/object-like/types.d.ts +1 -1
  176. package/core/schemas/builders/record/record.js +2 -4
  177. package/core/schemas/builders/record/types.d.ts +2 -2
  178. package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  179. package/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  180. package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  181. package/core/schemas/builders/set/set.js +1 -2
  182. package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  183. package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  184. package/core/schemas/builders/union/discriminant.js +1 -2
  185. package/core/schemas/builders/union/types.d.ts +6 -6
  186. package/core/schemas/builders/union/union.d.ts +1 -1
  187. package/core/schemas/builders/union/union.js +1 -2
  188. package/core/schemas/utils/MaybePromise.d.ts +1 -1
  189. package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  190. package/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  191. package/core/schemas/utils/entries.d.ts +1 -1
  192. package/core/schemas/utils/entries.js +1 -2
  193. package/core/schemas/utils/filterObject.d.ts +1 -1
  194. package/core/schemas/utils/filterObject.js +1 -2
  195. package/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
  196. package/core/schemas/utils/isPlainObject.js +1 -2
  197. package/core/schemas/utils/keys.d.ts +1 -1
  198. package/core/schemas/utils/keys.js +1 -2
  199. package/core/schemas/utils/maybeSkipValidation.js +1 -2
  200. package/core/schemas/utils/partition.js +1 -2
  201. package/core/streaming-fetcher/Stream.d.ts +0 -1
  202. package/core/streaming-fetcher/Stream.js +20 -21
  203. package/dist/Client.d.ts +14 -4
  204. package/dist/Client.js +16 -6
  205. package/dist/api/errors/ForbiddenError.d.ts +8 -0
  206. package/dist/api/errors/ForbiddenError.js +51 -0
  207. package/dist/api/errors/InternalServerError.js +17 -7
  208. package/dist/api/errors/NotFoundError.js +17 -7
  209. package/dist/api/errors/UnauthorizedError.d.ts +8 -0
  210. package/dist/api/errors/UnauthorizedError.js +51 -0
  211. package/dist/api/errors/UnprocessableEntityError.js +17 -7
  212. package/dist/api/errors/index.d.ts +2 -0
  213. package/dist/api/errors/index.js +2 -0
  214. package/dist/api/resources/automations/client/Client.d.ts +91 -0
  215. package/dist/api/resources/automations/client/Client.js +429 -0
  216. package/dist/api/resources/automations/client/index.d.ts +1 -0
  217. package/dist/api/resources/automations/client/index.js +17 -0
  218. package/dist/api/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +19 -0
  219. package/dist/api/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +5 -0
  220. package/dist/api/resources/automations/client/requests/index.d.ts +1 -0
  221. package/dist/api/resources/automations/client/requests/index.js +2 -0
  222. package/dist/api/resources/automations/index.d.ts +1 -0
  223. package/dist/api/resources/automations/index.js +17 -0
  224. package/dist/api/resources/files/client/Client.d.ts +69 -0
  225. package/dist/api/resources/files/client/Client.js +286 -0
  226. package/dist/api/resources/files/client/index.d.ts +1 -0
  227. package/dist/api/resources/files/client/index.js +17 -0
  228. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +20 -0
  229. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.js +5 -0
  230. package/dist/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
  231. package/dist/api/resources/files/client/requests/FilesListRequest.js +5 -0
  232. package/dist/api/resources/files/client/requests/index.d.ts +2 -0
  233. package/dist/api/resources/files/client/requests/index.js +2 -0
  234. package/dist/api/resources/files/index.d.ts +2 -0
  235. package/dist/api/resources/files/index.js +18 -0
  236. package/dist/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
  237. package/dist/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
  238. package/dist/api/resources/files/types/index.d.ts +1 -0
  239. package/dist/api/resources/files/types/index.js +17 -0
  240. package/dist/api/resources/index.d.ts +5 -0
  241. package/dist/api/resources/index.js +23 -8
  242. package/dist/api/resources/profiles/client/Client.d.ts +4 -0
  243. package/dist/api/resources/profiles/client/Client.js +23 -21
  244. package/dist/api/resources/requests/client/Client.d.ts +4 -0
  245. package/dist/api/resources/requests/client/Client.js +21 -19
  246. package/dist/api/resources/sessions/client/Client.d.ts +15 -1
  247. package/dist/api/resources/sessions/client/Client.js +98 -88
  248. package/dist/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
  249. package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +4 -4
  250. package/dist/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
  251. package/dist/api/resources/sessions/types/index.d.ts +1 -1
  252. package/dist/api/resources/sessions/types/index.js +1 -1
  253. package/dist/api/resources/windows/client/Client.d.ts +142 -0
  254. package/dist/api/resources/windows/client/Client.js +700 -199
  255. package/dist/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
  256. package/dist/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
  257. package/dist/api/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +23 -0
  258. package/dist/api/resources/windows/client/requests/AsyncCreateAutomationRequest.js +5 -0
  259. package/dist/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +27 -0
  260. package/dist/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +5 -0
  261. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
  262. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
  263. package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
  264. package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
  265. package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
  266. package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
  267. package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
  268. package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
  269. package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
  270. package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
  271. package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
  272. package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
  273. package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
  274. package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
  275. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
  276. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
  277. package/dist/api/resources/windows/client/requests/index.d.ts +11 -0
  278. package/dist/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
  279. package/dist/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
  280. package/dist/api/types/AsyncConfig.d.ts +7 -0
  281. package/dist/api/types/AsyncConfig.js +5 -0
  282. package/dist/api/types/AsyncSessionAiResponseEnvelope.d.ts +9 -0
  283. package/dist/api/types/AsyncSessionAiResponseEnvelope.js +5 -0
  284. package/dist/api/types/AutomationOutput.d.ts +10 -0
  285. package/dist/api/types/AutomationOutput.js +5 -0
  286. package/dist/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
  287. package/dist/api/types/ClickConfigClickType.d.ts +1 -1
  288. package/dist/api/types/CreateAutomationRequestBodyConfiguration.d.ts +4 -0
  289. package/dist/api/types/CreateAutomationRequestBodyConfiguration.js +5 -0
  290. package/dist/api/types/CreateFileV1.d.ts +24 -0
  291. package/dist/api/types/CreateFileV1.js +5 -0
  292. package/dist/api/types/CreateFileV1FileType.d.ts +13 -0
  293. package/dist/api/types/CreateFileV1FileType.js +12 -0
  294. package/dist/api/types/DeleteAutomationOutputWrapperBody.d.ts +4 -0
  295. package/dist/api/types/DeleteAutomationOutputWrapperBody.js +5 -0
  296. package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
  297. package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
  298. package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
  299. package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
  300. package/dist/api/types/ExtensionConfigurationOutput.d.ts +13 -0
  301. package/dist/api/types/ExtensionConfigurationOutput.js +5 -0
  302. package/dist/api/types/ExternalFile.d.ts +33 -0
  303. package/dist/api/types/ExternalFile.js +5 -0
  304. package/dist/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
  305. package/dist/api/types/FilesResponse.d.ts +10 -0
  306. package/dist/api/types/FilesResponse.js +5 -0
  307. package/dist/api/types/FilesWithPagination.d.ts +10 -0
  308. package/dist/api/types/FilesWithPagination.js +5 -0
  309. package/dist/api/types/GetFileV1.d.ts +24 -0
  310. package/dist/api/types/GetFileV1.js +5 -0
  311. package/dist/api/types/GetFileV1FileType.d.ts +13 -0
  312. package/dist/api/types/GetFileV1FileType.js +12 -0
  313. package/dist/api/types/ListAutomationsOutput.d.ts +7 -0
  314. package/dist/api/types/ListAutomationsOutput.js +5 -0
  315. package/dist/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
  316. package/dist/api/types/Proxy.d.ts +1 -1
  317. package/dist/api/types/SessionConfigV1Proxy.d.ts +1 -1
  318. package/dist/api/types/StatusMessageStatus.d.ts +1 -1
  319. package/dist/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
  320. package/dist/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
  321. package/dist/api/types/VisualAnalysisConfigScope.d.ts +1 -1
  322. package/dist/api/types/index.d.ts +26 -0
  323. package/dist/api/types/index.js +26 -0
  324. package/dist/core/auth/BearerToken.d.ts +1 -1
  325. package/dist/core/fetcher/APIResponse.d.ts +1 -1
  326. package/dist/core/fetcher/Fetcher.d.ts +3 -3
  327. package/dist/core/fetcher/Fetcher.js +6 -5
  328. package/dist/core/fetcher/Supplier.d.ts +1 -1
  329. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  330. package/dist/core/fetcher/createRequestUrl.js +1 -2
  331. package/dist/core/fetcher/getFetchFn.js +18 -9
  332. package/dist/core/fetcher/getHeader.js +1 -2
  333. package/dist/core/fetcher/getRequestBody.js +5 -5
  334. package/dist/core/fetcher/getResponseBody.js +4 -2
  335. package/dist/core/fetcher/makeRequest.d.ts +1 -1
  336. package/dist/core/fetcher/requestWithRetries.js +17 -9
  337. package/dist/core/fetcher/signals.d.ts +0 -1
  338. package/dist/core/fetcher/signals.js +2 -3
  339. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
  340. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
  341. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
  342. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  343. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
  344. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
  345. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  346. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
  347. package/dist/core/index.js +17 -7
  348. package/dist/core/json.d.ts +15 -0
  349. package/dist/core/json.js +24 -0
  350. package/dist/core/runtime/runtime.d.ts +1 -1
  351. package/dist/core/runtime/runtime.js +51 -41
  352. package/dist/core/schemas/Schema.d.ts +8 -5
  353. package/dist/core/schemas/Schema.js +3 -0
  354. package/dist/core/schemas/builders/bigint/bigint.d.ts +2 -0
  355. package/dist/core/schemas/builders/bigint/bigint.js +53 -0
  356. package/dist/core/schemas/builders/bigint/index.d.ts +1 -0
  357. package/dist/core/schemas/builders/bigint/index.js +5 -0
  358. package/dist/core/schemas/builders/date/date.js +1 -2
  359. package/dist/core/schemas/builders/enum/enum.js +1 -2
  360. package/dist/core/schemas/builders/index.d.ts +1 -0
  361. package/dist/core/schemas/builders/index.js +1 -0
  362. package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
  363. package/dist/core/schemas/builders/lazy/lazy.js +3 -4
  364. package/dist/core/schemas/builders/lazy/lazyObject.js +1 -2
  365. package/dist/core/schemas/builders/list/list.js +1 -2
  366. package/dist/core/schemas/builders/literals/booleanLiteral.js +1 -2
  367. package/dist/core/schemas/builders/literals/stringLiteral.js +1 -2
  368. package/dist/core/schemas/builders/object/object.d.ts +1 -1
  369. package/dist/core/schemas/builders/object/object.js +31 -3
  370. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  371. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  372. package/dist/core/schemas/builders/object/property.js +2 -3
  373. package/dist/core/schemas/builders/object/types.d.ts +16 -11
  374. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  375. package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
  376. package/dist/core/schemas/builders/record/record.js +2 -4
  377. package/dist/core/schemas/builders/record/types.d.ts +2 -2
  378. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  379. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  380. package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  381. package/dist/core/schemas/builders/set/set.js +1 -2
  382. package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  383. package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  384. package/dist/core/schemas/builders/union/discriminant.js +1 -2
  385. package/dist/core/schemas/builders/union/types.d.ts +6 -6
  386. package/dist/core/schemas/builders/union/union.d.ts +1 -1
  387. package/dist/core/schemas/builders/union/union.js +1 -2
  388. package/dist/core/schemas/utils/MaybePromise.d.ts +1 -1
  389. package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  390. package/dist/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  391. package/dist/core/schemas/utils/entries.d.ts +1 -1
  392. package/dist/core/schemas/utils/entries.js +1 -2
  393. package/dist/core/schemas/utils/filterObject.d.ts +1 -1
  394. package/dist/core/schemas/utils/filterObject.js +1 -2
  395. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
  396. package/dist/core/schemas/utils/isPlainObject.js +1 -2
  397. package/dist/core/schemas/utils/keys.d.ts +1 -1
  398. package/dist/core/schemas/utils/keys.js +1 -2
  399. package/dist/core/schemas/utils/maybeSkipValidation.js +1 -2
  400. package/dist/core/schemas/utils/partition.js +1 -2
  401. package/dist/core/streaming-fetcher/Stream.d.ts +0 -1
  402. package/dist/core/streaming-fetcher/Stream.js +20 -21
  403. package/dist/environments.d.ts +1 -1
  404. package/dist/errors/AirtopError.js +2 -1
  405. package/dist/errors/AirtopTimeoutError.d.ts +1 -1
  406. package/dist/errors/AirtopTimeoutError.js +2 -2
  407. package/dist/index.js +17 -7
  408. package/dist/live-view/types.d.ts +1 -1
  409. package/dist/live-view/types.js +1 -1
  410. package/dist/serialization/resources/automations/client/index.d.ts +1 -0
  411. package/dist/serialization/resources/automations/client/index.js +17 -0
  412. package/dist/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +14 -0
  413. package/dist/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +45 -0
  414. package/dist/serialization/resources/automations/client/requests/index.d.ts +1 -0
  415. package/dist/serialization/resources/automations/client/requests/index.js +5 -0
  416. package/dist/serialization/resources/automations/index.d.ts +1 -0
  417. package/dist/serialization/resources/automations/index.js +17 -0
  418. package/dist/serialization/resources/files/client/index.d.ts +1 -0
  419. package/dist/serialization/resources/files/client/index.js +17 -0
  420. package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +16 -0
  421. package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.js +47 -0
  422. package/dist/serialization/resources/files/client/requests/index.d.ts +1 -0
  423. package/dist/serialization/resources/files/client/requests/index.js +5 -0
  424. package/dist/serialization/resources/files/index.d.ts +2 -0
  425. package/dist/serialization/resources/files/index.js +18 -0
  426. package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
  427. package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
  428. package/dist/serialization/resources/files/types/index.d.ts +1 -0
  429. package/dist/serialization/resources/files/types/index.js +17 -0
  430. package/dist/serialization/resources/index.d.ts +5 -0
  431. package/dist/serialization/resources/index.js +23 -8
  432. package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
  433. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +5 -5
  434. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +19 -9
  435. package/dist/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
  436. package/dist/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
  437. package/dist/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
  438. package/dist/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
  439. package/dist/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
  440. package/dist/serialization/resources/sessions/types/index.d.ts +1 -1
  441. package/dist/serialization/resources/sessions/types/index.js +1 -1
  442. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
  443. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.js +51 -0
  444. package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +18 -0
  445. package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +49 -0
  446. package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +18 -0
  447. package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +49 -0
  448. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
  449. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.js +50 -0
  450. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +19 -0
  451. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +50 -0
  452. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
  453. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +51 -0
  454. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
  455. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +50 -0
  456. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
  457. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +51 -0
  458. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
  459. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +49 -0
  460. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
  461. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +50 -0
  462. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
  463. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.js +55 -0
  464. package/dist/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
  465. package/dist/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
  466. package/dist/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
  467. package/dist/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
  468. package/dist/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
  469. package/dist/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
  470. package/dist/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
  471. package/dist/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
  472. package/dist/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
  473. package/dist/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
  474. package/dist/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
  475. package/dist/serialization/resources/windows/client/requests/index.d.ts +11 -0
  476. package/dist/serialization/resources/windows/client/requests/index.js +23 -1
  477. package/dist/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
  478. package/dist/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
  479. package/dist/serialization/types/AiPromptResponse.js +17 -7
  480. package/dist/serialization/types/AiResponseEnvelope.js +17 -7
  481. package/dist/serialization/types/AirtopProxyConfiguration.js +17 -7
  482. package/dist/serialization/types/AsyncConfig.d.ts +12 -0
  483. package/dist/serialization/types/AsyncConfig.js +43 -0
  484. package/dist/serialization/types/AsyncSessionAiResponseEnvelope.d.ts +15 -0
  485. package/dist/serialization/types/AsyncSessionAiResponseEnvelope.js +46 -0
  486. package/dist/serialization/types/AutomationOutput.d.ts +16 -0
  487. package/dist/serialization/types/AutomationOutput.js +47 -0
  488. package/dist/serialization/types/BrowserWaitNavigationConfig.js +17 -7
  489. package/dist/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
  490. package/dist/serialization/types/ClickConfig.js +17 -7
  491. package/dist/serialization/types/ClickConfigClickType.js +17 -7
  492. package/dist/serialization/types/ClientProvidedResponseMetadata.js +17 -7
  493. package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.d.ts +10 -0
  494. package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.js +41 -0
  495. package/dist/serialization/types/CreateFileV1.d.ts +21 -0
  496. package/dist/serialization/types/CreateFileV1.js +52 -0
  497. package/dist/serialization/types/CreateFileV1FileType.d.ts +10 -0
  498. package/dist/serialization/types/CreateFileV1FileType.js +41 -0
  499. package/dist/serialization/types/DeleteAutomationOutputWrapperBody.d.ts +10 -0
  500. package/dist/serialization/types/DeleteAutomationOutputWrapperBody.js +41 -0
  501. package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
  502. package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
  503. package/dist/serialization/types/EnvelopeDefaultMeta.js +17 -7
  504. package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
  505. package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
  506. package/dist/serialization/types/ErrorBody.js +17 -7
  507. package/dist/serialization/types/ErrorDetail.js +17 -7
  508. package/dist/serialization/types/ErrorMessage.js +17 -7
  509. package/dist/serialization/types/ErrorModel.js +17 -7
  510. package/dist/serialization/types/ExternalFile.d.ts +25 -0
  511. package/dist/serialization/types/ExternalFile.js +56 -0
  512. package/dist/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
  513. package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
  514. package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
  515. package/dist/serialization/types/ExternalSessionConfig.js +17 -7
  516. package/dist/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
  517. package/dist/serialization/types/FilesResponse.d.ts +18 -0
  518. package/dist/serialization/types/FilesResponse.js +49 -0
  519. package/dist/serialization/types/FilesWithPagination.d.ts +15 -0
  520. package/dist/serialization/types/FilesWithPagination.js +46 -0
  521. package/dist/serialization/types/GetFileV1.d.ts +21 -0
  522. package/dist/serialization/types/GetFileV1.js +52 -0
  523. package/dist/serialization/types/GetFileV1FileType.d.ts +10 -0
  524. package/dist/serialization/types/GetFileV1FileType.js +41 -0
  525. package/dist/serialization/types/IntervalMonitorConfig.js +17 -7
  526. package/dist/serialization/types/Issue.js +17 -7
  527. package/dist/serialization/types/ListAutomationsOutput.d.ts +13 -0
  528. package/dist/serialization/types/ListAutomationsOutput.js +44 -0
  529. package/dist/serialization/types/MicroInteractionConfig.js +17 -7
  530. package/dist/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
  531. package/dist/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
  532. package/dist/serialization/types/MonitorConfig.js +17 -7
  533. package/dist/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
  534. package/dist/serialization/types/OperationOutcome.js +17 -7
  535. package/dist/serialization/types/OperationOutcomeResponse.js +17 -7
  536. package/dist/serialization/types/PageQueryConfig.js +17 -7
  537. package/dist/serialization/types/PageQueryExperimentalConfig.js +17 -7
  538. package/dist/serialization/types/PaginatedExtractionConfig.js +17 -7
  539. package/dist/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
  540. package/dist/serialization/types/Pagination.js +17 -7
  541. package/dist/serialization/types/Proxy.js +17 -7
  542. package/dist/serialization/types/ProxyConfigurationKind.js +17 -7
  543. package/dist/serialization/types/ProxyCredentials.js +17 -7
  544. package/dist/serialization/types/RequestStatusResponse.js +17 -7
  545. package/dist/serialization/types/ScrapeConfig.js +17 -7
  546. package/dist/serialization/types/ScrapeResponse.js +17 -7
  547. package/dist/serialization/types/ScrapeResponseContent.js +17 -7
  548. package/dist/serialization/types/ScrapeResponseEnvelope.js +17 -7
  549. package/dist/serialization/types/ScrapeResponseOutput.js +17 -7
  550. package/dist/serialization/types/ScreenshotConfig.js +17 -7
  551. package/dist/serialization/types/ScreenshotMetadata.js +17 -7
  552. package/dist/serialization/types/ScreenshotRequestConfig.js +17 -7
  553. package/dist/serialization/types/ScrollByConfig.js +17 -7
  554. package/dist/serialization/types/ScrollToEdgeConfig.js +17 -7
  555. package/dist/serialization/types/SessionConfigV1.js +17 -7
  556. package/dist/serialization/types/SessionConfigV1Proxy.js +17 -7
  557. package/dist/serialization/types/SessionEventMessage.js +17 -7
  558. package/dist/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
  559. package/dist/serialization/types/SessionResponse.js +17 -7
  560. package/dist/serialization/types/SessionsResponse.js +17 -7
  561. package/dist/serialization/types/SessionsWithPagination.js +17 -7
  562. package/dist/serialization/types/StatusMessage.js +17 -7
  563. package/dist/serialization/types/StatusMessageStatus.js +17 -7
  564. package/dist/serialization/types/SummaryConfig.js +17 -7
  565. package/dist/serialization/types/SummaryExperimentalConfig.js +17 -7
  566. package/dist/serialization/types/VisualAnalysisConfig.js +17 -7
  567. package/dist/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
  568. package/dist/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
  569. package/dist/serialization/types/VisualAnalysisConfigScope.js +17 -7
  570. package/dist/serialization/types/Window.js +17 -7
  571. package/dist/serialization/types/WindowEventMessage.js +17 -7
  572. package/dist/serialization/types/WindowId.js +17 -7
  573. package/dist/serialization/types/WindowIdResponse.js +17 -7
  574. package/dist/serialization/types/WindowResponse.js +17 -7
  575. package/dist/serialization/types/index.d.ts +26 -0
  576. package/dist/serialization/types/index.js +26 -0
  577. package/dist/utils/batch-operate/SessionQueue.js +2 -2
  578. package/dist/utils/batch-operate/WindowQueue.js +2 -2
  579. package/dist/utils/batch-operate/batch-util.d.ts +1 -1
  580. package/dist/utils/batch-operate/types.d.ts +5 -5
  581. package/dist/utils/process-screenshots.d.ts +1 -2
  582. package/dist/utils/process-screenshots.js +1 -2
  583. package/dist/version.d.ts +1 -0
  584. package/dist/version.js +4 -0
  585. package/dist/wrapper/AirtopClient.d.ts +5 -2
  586. package/dist/wrapper/AirtopClient.js +24 -8
  587. package/dist/wrapper/AirtopFiles.d.ts +38 -0
  588. package/dist/wrapper/AirtopFiles.js +151 -0
  589. package/dist/wrapper/AirtopRequests.js +2 -2
  590. package/dist/wrapper/AirtopSessions.js +7 -5
  591. package/dist/wrapper/AirtopWindows.d.ts +1 -1
  592. package/dist/wrapper/AirtopWindows.js +22 -12
  593. package/environments.d.ts +1 -1
  594. package/errors/AirtopError.js +2 -1
  595. package/errors/AirtopTimeoutError.d.ts +1 -1
  596. package/errors/AirtopTimeoutError.js +2 -2
  597. package/index.js +17 -7
  598. package/{jest.config.js → jest.config.mjs} +4 -1
  599. package/live-view/types.d.ts +1 -1
  600. package/live-view/types.js +1 -1
  601. package/package.json +18 -14
  602. package/reference.md +2009 -175
  603. package/scripts/rename-to-esm-files.js +115 -0
  604. package/serialization/resources/automations/client/index.d.ts +1 -0
  605. package/serialization/resources/automations/client/index.js +17 -0
  606. package/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.d.ts +14 -0
  607. package/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +45 -0
  608. package/serialization/resources/automations/client/requests/index.d.ts +1 -0
  609. package/serialization/resources/automations/client/requests/index.js +5 -0
  610. package/serialization/resources/automations/index.d.ts +1 -0
  611. package/serialization/resources/automations/index.js +17 -0
  612. package/serialization/resources/files/client/index.d.ts +1 -0
  613. package/serialization/resources/files/client/index.js +17 -0
  614. package/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +16 -0
  615. package/serialization/resources/files/client/requests/CreateFileRestInputV1.js +47 -0
  616. package/serialization/resources/files/client/requests/index.d.ts +1 -0
  617. package/serialization/resources/files/client/requests/index.js +5 -0
  618. package/serialization/resources/files/index.d.ts +2 -0
  619. package/serialization/resources/files/index.js +18 -0
  620. package/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
  621. package/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
  622. package/serialization/resources/files/types/index.d.ts +1 -0
  623. package/serialization/resources/files/types/index.js +17 -0
  624. package/serialization/resources/index.d.ts +5 -0
  625. package/serialization/resources/index.js +23 -8
  626. package/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
  627. package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +5 -5
  628. package/serialization/resources/sessions/types/SessionsEventsResponse.js +19 -9
  629. package/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
  630. package/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
  631. package/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
  632. package/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
  633. package/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
  634. package/serialization/resources/sessions/types/index.d.ts +1 -1
  635. package/serialization/resources/sessions/types/index.js +1 -1
  636. package/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
  637. package/serialization/resources/windows/client/requests/AsyncClickRequest.js +51 -0
  638. package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +18 -0
  639. package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +49 -0
  640. package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +18 -0
  641. package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +49 -0
  642. package/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
  643. package/serialization/resources/windows/client/requests/AsyncHoverRequest.js +50 -0
  644. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +19 -0
  645. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +50 -0
  646. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
  647. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +51 -0
  648. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
  649. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +50 -0
  650. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
  651. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +51 -0
  652. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
  653. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +49 -0
  654. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
  655. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +50 -0
  656. package/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
  657. package/serialization/resources/windows/client/requests/AsyncTypeRequest.js +55 -0
  658. package/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
  659. package/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
  660. package/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
  661. package/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
  662. package/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
  663. package/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
  664. package/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
  665. package/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
  666. package/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
  667. package/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
  668. package/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
  669. package/serialization/resources/windows/client/requests/index.d.ts +11 -0
  670. package/serialization/resources/windows/client/requests/index.js +23 -1
  671. package/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
  672. package/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
  673. package/serialization/types/AiPromptResponse.js +17 -7
  674. package/serialization/types/AiResponseEnvelope.js +17 -7
  675. package/serialization/types/AirtopProxyConfiguration.js +17 -7
  676. package/serialization/types/AsyncConfig.d.ts +12 -0
  677. package/serialization/types/AsyncConfig.js +43 -0
  678. package/serialization/types/AsyncSessionAiResponseEnvelope.d.ts +15 -0
  679. package/serialization/types/AsyncSessionAiResponseEnvelope.js +46 -0
  680. package/serialization/types/AutomationOutput.d.ts +16 -0
  681. package/serialization/types/AutomationOutput.js +47 -0
  682. package/serialization/types/BrowserWaitNavigationConfig.js +17 -7
  683. package/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
  684. package/serialization/types/ClickConfig.js +17 -7
  685. package/serialization/types/ClickConfigClickType.js +17 -7
  686. package/serialization/types/ClientProvidedResponseMetadata.js +17 -7
  687. package/serialization/types/CreateAutomationRequestBodyConfiguration.d.ts +10 -0
  688. package/serialization/types/CreateAutomationRequestBodyConfiguration.js +41 -0
  689. package/serialization/types/CreateFileV1.d.ts +21 -0
  690. package/serialization/types/CreateFileV1.js +52 -0
  691. package/serialization/types/CreateFileV1FileType.d.ts +10 -0
  692. package/serialization/types/CreateFileV1FileType.js +41 -0
  693. package/serialization/types/DeleteAutomationOutputWrapperBody.d.ts +10 -0
  694. package/serialization/types/DeleteAutomationOutputWrapperBody.js +41 -0
  695. package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
  696. package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
  697. package/serialization/types/EnvelopeDefaultMeta.js +17 -7
  698. package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
  699. package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
  700. package/serialization/types/ErrorBody.js +17 -7
  701. package/serialization/types/ErrorDetail.js +17 -7
  702. package/serialization/types/ErrorMessage.js +17 -7
  703. package/serialization/types/ErrorModel.js +17 -7
  704. package/serialization/types/ExternalFile.d.ts +25 -0
  705. package/serialization/types/ExternalFile.js +56 -0
  706. package/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
  707. package/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
  708. package/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
  709. package/serialization/types/ExternalSessionConfig.js +17 -7
  710. package/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
  711. package/serialization/types/FilesResponse.d.ts +18 -0
  712. package/serialization/types/FilesResponse.js +49 -0
  713. package/serialization/types/FilesWithPagination.d.ts +15 -0
  714. package/serialization/types/FilesWithPagination.js +46 -0
  715. package/serialization/types/GetFileV1.d.ts +21 -0
  716. package/serialization/types/GetFileV1.js +52 -0
  717. package/serialization/types/GetFileV1FileType.d.ts +10 -0
  718. package/serialization/types/GetFileV1FileType.js +41 -0
  719. package/serialization/types/IntervalMonitorConfig.js +17 -7
  720. package/serialization/types/Issue.js +17 -7
  721. package/serialization/types/ListAutomationsOutput.d.ts +13 -0
  722. package/serialization/types/ListAutomationsOutput.js +44 -0
  723. package/serialization/types/MicroInteractionConfig.js +17 -7
  724. package/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
  725. package/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
  726. package/serialization/types/MonitorConfig.js +17 -7
  727. package/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
  728. package/serialization/types/OperationOutcome.js +17 -7
  729. package/serialization/types/OperationOutcomeResponse.js +17 -7
  730. package/serialization/types/PageQueryConfig.js +17 -7
  731. package/serialization/types/PageQueryExperimentalConfig.js +17 -7
  732. package/serialization/types/PaginatedExtractionConfig.js +17 -7
  733. package/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
  734. package/serialization/types/Pagination.js +17 -7
  735. package/serialization/types/Proxy.js +17 -7
  736. package/serialization/types/ProxyConfigurationKind.js +17 -7
  737. package/serialization/types/ProxyCredentials.js +17 -7
  738. package/serialization/types/RequestStatusResponse.js +17 -7
  739. package/serialization/types/ScrapeConfig.js +17 -7
  740. package/serialization/types/ScrapeResponse.js +17 -7
  741. package/serialization/types/ScrapeResponseContent.js +17 -7
  742. package/serialization/types/ScrapeResponseEnvelope.js +17 -7
  743. package/serialization/types/ScrapeResponseOutput.js +17 -7
  744. package/serialization/types/ScreenshotConfig.js +17 -7
  745. package/serialization/types/ScreenshotMetadata.js +17 -7
  746. package/serialization/types/ScreenshotRequestConfig.js +17 -7
  747. package/serialization/types/ScrollByConfig.js +17 -7
  748. package/serialization/types/ScrollToEdgeConfig.js +17 -7
  749. package/serialization/types/SessionConfigV1.js +17 -7
  750. package/serialization/types/SessionConfigV1Proxy.js +17 -7
  751. package/serialization/types/SessionEventMessage.js +17 -7
  752. package/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
  753. package/serialization/types/SessionResponse.js +17 -7
  754. package/serialization/types/SessionsResponse.js +17 -7
  755. package/serialization/types/SessionsWithPagination.js +17 -7
  756. package/serialization/types/StatusMessage.js +17 -7
  757. package/serialization/types/StatusMessageStatus.js +17 -7
  758. package/serialization/types/SummaryConfig.js +17 -7
  759. package/serialization/types/SummaryExperimentalConfig.js +17 -7
  760. package/serialization/types/VisualAnalysisConfig.js +17 -7
  761. package/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
  762. package/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
  763. package/serialization/types/VisualAnalysisConfigScope.js +17 -7
  764. package/serialization/types/Window.js +17 -7
  765. package/serialization/types/WindowEventMessage.js +17 -7
  766. package/serialization/types/WindowId.js +17 -7
  767. package/serialization/types/WindowIdResponse.js +17 -7
  768. package/serialization/types/WindowResponse.js +17 -7
  769. package/serialization/types/index.d.ts +26 -0
  770. package/serialization/types/index.js +26 -0
  771. package/utils/batch-operate/SessionQueue.js +2 -2
  772. package/utils/batch-operate/WindowQueue.js +2 -2
  773. package/utils/batch-operate/batch-util.d.ts +1 -1
  774. package/utils/batch-operate/types.d.ts +5 -5
  775. package/utils/process-screenshots.d.ts +1 -2
  776. package/utils/process-screenshots.js +1 -2
  777. package/version.d.ts +1 -0
  778. package/version.js +4 -0
  779. package/wrapper/AirtopClient.d.ts +5 -2
  780. package/wrapper/AirtopClient.js +24 -8
  781. package/wrapper/AirtopFiles.d.ts +38 -0
  782. package/wrapper/AirtopFiles.js +151 -0
  783. package/wrapper/AirtopRequests.js +2 -2
  784. package/wrapper/AirtopSessions.js +7 -5
  785. package/wrapper/AirtopWindows.d.ts +1 -1
  786. package/wrapper/AirtopWindows.js +22 -12
@@ -0,0 +1,115 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require("fs").promises;
4
+ const path = require("path");
5
+
6
+ const extensionMap = {
7
+ ".js": ".mjs",
8
+ ".d.ts": ".d.mts",
9
+ };
10
+ const oldExtensions = Object.keys(extensionMap);
11
+
12
+ async function findFiles(rootPath) {
13
+ const files = [];
14
+
15
+ async function scan(directory) {
16
+ const entries = await fs.readdir(directory, { withFileTypes: true });
17
+
18
+ for (const entry of entries) {
19
+ const fullPath = path.join(directory, entry.name);
20
+
21
+ if (entry.isDirectory()) {
22
+ if (entry.name !== "node_modules" && !entry.name.startsWith(".")) {
23
+ await scan(fullPath);
24
+ }
25
+ } else if (entry.isFile()) {
26
+ if (oldExtensions.some((ext) => entry.name.endsWith(ext))) {
27
+ files.push(fullPath);
28
+ }
29
+ }
30
+ }
31
+ }
32
+
33
+ await scan(rootPath);
34
+ return files;
35
+ }
36
+
37
+ async function updateFiles(files) {
38
+ const updatedFiles = [];
39
+ for (const file of files) {
40
+ const updated = await updateFileContents(file);
41
+ updatedFiles.push(updated);
42
+ }
43
+
44
+ console.log(`Updated imports in ${updatedFiles.length} files.`);
45
+ }
46
+
47
+ async function updateFileContents(file) {
48
+ const content = await fs.readFile(file, "utf8");
49
+
50
+ let newContent = content;
51
+ // Update each extension type defined in the map
52
+ for (const [oldExt, newExt] of Object.entries(extensionMap)) {
53
+ const regex = new RegExp(`(import|export)(.+from\\s+['"])(\\.\\.?\\/[^'"]+)(\\${oldExt})(['"])`, "g");
54
+ newContent = newContent.replace(regex, `$1$2$3${newExt}$5`);
55
+ }
56
+
57
+ if (content !== newContent) {
58
+ await fs.writeFile(file, newContent, "utf8");
59
+ return true;
60
+ }
61
+ return false;
62
+ }
63
+
64
+ async function renameFiles(files) {
65
+ let counter = 0;
66
+ for (const file of files) {
67
+ const ext = oldExtensions.find((ext) => file.endsWith(ext));
68
+ const newExt = extensionMap[ext];
69
+
70
+ if (newExt) {
71
+ const newPath = file.slice(0, -ext.length) + newExt;
72
+ await fs.rename(file, newPath);
73
+ counter++;
74
+ }
75
+ }
76
+
77
+ console.log(`Renamed ${counter} files.`);
78
+ }
79
+
80
+ async function main() {
81
+ try {
82
+ const targetDir = process.argv[2];
83
+ if (!targetDir) {
84
+ console.error("Please provide a target directory");
85
+ process.exit(1);
86
+ }
87
+
88
+ const targetPath = path.resolve(targetDir);
89
+ const targetStats = await fs.stat(targetPath);
90
+
91
+ if (!targetStats.isDirectory()) {
92
+ console.error("The provided path is not a directory");
93
+ process.exit(1);
94
+ }
95
+
96
+ console.log(`Scanning directory: ${targetDir}`);
97
+
98
+ const files = await findFiles(targetDir);
99
+
100
+ if (files.length === 0) {
101
+ console.log("No matching files found.");
102
+ process.exit(0);
103
+ }
104
+
105
+ console.log(`Found ${files.length} files.`);
106
+ await updateFiles(files);
107
+ await renameFiles(files);
108
+ console.log("\nDone!");
109
+ } catch (error) {
110
+ console.error("An error occurred:", error.message);
111
+ process.exit(1);
112
+ }
113
+ }
114
+
115
+ main();
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../index";
5
+ import * as Airtop from "../../../../../api/index";
6
+ import * as core from "../../../../../core";
7
+ export declare const UpdateAutomationDescriptionInputBody: core.serialization.Schema<serializers.UpdateAutomationDescriptionInputBody.Raw, Airtop.UpdateAutomationDescriptionInputBody>;
8
+ export declare namespace UpdateAutomationDescriptionInputBody {
9
+ interface Raw {
10
+ description: string;
11
+ id: string;
12
+ orgId: string;
13
+ }
14
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
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
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.UpdateAutomationDescriptionInputBody = void 0;
40
+ const core = __importStar(require("../../../../../core"));
41
+ exports.UpdateAutomationDescriptionInputBody = core.serialization.object({
42
+ description: core.serialization.string(),
43
+ id: core.serialization.string(),
44
+ orgId: core.serialization.string(),
45
+ });
@@ -0,0 +1 @@
1
+ export { UpdateAutomationDescriptionInputBody } from "./UpdateAutomationDescriptionInputBody";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateAutomationDescriptionInputBody = void 0;
4
+ var UpdateAutomationDescriptionInputBody_1 = require("./UpdateAutomationDescriptionInputBody");
5
+ Object.defineProperty(exports, "UpdateAutomationDescriptionInputBody", { enumerable: true, get: function () { return UpdateAutomationDescriptionInputBody_1.UpdateAutomationDescriptionInputBody; } });
@@ -0,0 +1 @@
1
+ export * from "./client";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./client"), exports);
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../index";
5
+ import * as Airtop from "../../../../../api/index";
6
+ import * as core from "../../../../../core";
7
+ import { CreateFileRestInputV1FileType } from "../../types/CreateFileRestInputV1FileType";
8
+ export declare const CreateFileRestInputV1: core.serialization.Schema<serializers.CreateFileRestInputV1.Raw, Airtop.CreateFileRestInputV1>;
9
+ export declare namespace CreateFileRestInputV1 {
10
+ interface Raw {
11
+ fileName: string;
12
+ fileType?: CreateFileRestInputV1FileType.Raw | null;
13
+ sessionId?: string | null;
14
+ sessionIds?: string[] | null;
15
+ }
16
+ }
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
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
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.CreateFileRestInputV1 = void 0;
40
+ const core = __importStar(require("../../../../../core"));
41
+ const CreateFileRestInputV1FileType_1 = require("../../types/CreateFileRestInputV1FileType");
42
+ exports.CreateFileRestInputV1 = core.serialization.object({
43
+ fileName: core.serialization.string(),
44
+ fileType: CreateFileRestInputV1FileType_1.CreateFileRestInputV1FileType.optional(),
45
+ sessionId: core.serialization.string().optional(),
46
+ sessionIds: core.serialization.list(core.serialization.string()).optional(),
47
+ });
@@ -0,0 +1 @@
1
+ export { CreateFileRestInputV1 } from "./CreateFileRestInputV1";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateFileRestInputV1 = void 0;
4
+ var CreateFileRestInputV1_1 = require("./CreateFileRestInputV1");
5
+ Object.defineProperty(exports, "CreateFileRestInputV1", { enumerable: true, get: function () { return CreateFileRestInputV1_1.CreateFileRestInputV1; } });
@@ -0,0 +1,2 @@
1
+ export * from "./types";
2
+ export * from "./client";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
18
+ __exportStar(require("./client"), exports);
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../index";
5
+ import * as Airtop from "../../../../api/index";
6
+ import * as core from "../../../../core";
7
+ export declare const CreateFileRestInputV1FileType: core.serialization.Schema<serializers.CreateFileRestInputV1FileType.Raw, Airtop.CreateFileRestInputV1FileType>;
8
+ export declare namespace CreateFileRestInputV1FileType {
9
+ type Raw = "browser_download" | "screenshot" | "video" | "customer_upload";
10
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
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
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.CreateFileRestInputV1FileType = void 0;
40
+ const core = __importStar(require("../../../../core"));
41
+ exports.CreateFileRestInputV1FileType = core.serialization.enum_(["browser_download", "screenshot", "video", "customer_upload"]);
@@ -0,0 +1 @@
1
+ export * from "./CreateFileRestInputV1FileType";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./CreateFileRestInputV1FileType"), exports);
@@ -1,6 +1,11 @@
1
1
  export * as windows from "./windows";
2
2
  export * from "./windows/types";
3
+ export * as files from "./files";
4
+ export * from "./files/types";
3
5
  export * as sessions from "./sessions";
4
6
  export * from "./sessions/types";
5
7
  export * from "./windows/client/requests";
8
+ export * as automations from "./automations";
9
+ export * from "./automations/client/requests";
10
+ export * from "./files/client/requests";
6
11
  export * from "./sessions/client/requests";
@@ -15,21 +15,36 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
37
  };
28
38
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.sessions = exports.windows = void 0;
39
+ exports.automations = exports.sessions = exports.files = exports.windows = void 0;
30
40
  exports.windows = __importStar(require("./windows"));
31
41
  __exportStar(require("./windows/types"), exports);
42
+ exports.files = __importStar(require("./files"));
43
+ __exportStar(require("./files/types"), exports);
32
44
  exports.sessions = __importStar(require("./sessions"));
33
45
  __exportStar(require("./sessions/types"), exports);
34
46
  __exportStar(require("./windows/client/requests"), exports);
47
+ exports.automations = __importStar(require("./automations"));
48
+ __exportStar(require("./automations/client/requests"), exports);
49
+ __exportStar(require("./files/client/requests"), exports);
35
50
  __exportStar(require("./sessions/client/requests"), exports);
@@ -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.SessionRestInputV1 = void 0;
30
40
  const core = __importStar(require("../../../../../core"));
@@ -4,16 +4,13 @@
4
4
  import * as serializers from "../../../index";
5
5
  import * as Airtop from "../../../../api/index";
6
6
  import * as core from "../../../../core";
7
- import { SessionsEventsResponseWindowEvent } from "./SessionsEventsResponseWindowEvent";
8
7
  import { SessionsEventsResponseSessionEvent } from "./SessionsEventsResponseSessionEvent";
9
8
  import { SessionsEventsResponseStatus } from "./SessionsEventsResponseStatus";
10
9
  import { SessionsEventsResponseError } from "./SessionsEventsResponseError";
10
+ import { SessionsEventsResponseWindowEvent } from "./SessionsEventsResponseWindowEvent";
11
11
  export declare const SessionsEventsResponse: core.serialization.Schema<serializers.SessionsEventsResponse.Raw, Airtop.SessionsEventsResponse>;
12
12
  export declare namespace SessionsEventsResponse {
13
- type Raw = SessionsEventsResponse.WindowEvent | SessionsEventsResponse.SessionEvent | SessionsEventsResponse.Status | SessionsEventsResponse.Error;
14
- interface WindowEvent extends SessionsEventsResponseWindowEvent.Raw {
15
- event: "windowEvent";
16
- }
13
+ type Raw = SessionsEventsResponse.SessionEvent | SessionsEventsResponse.Status | SessionsEventsResponse.Error | SessionsEventsResponse.WindowEvent;
17
14
  interface SessionEvent extends SessionsEventsResponseSessionEvent.Raw {
18
15
  event: "sessionEvent";
19
16
  }
@@ -23,4 +20,7 @@ export declare namespace SessionsEventsResponse {
23
20
  interface Error extends SessionsEventsResponseError.Raw {
24
21
  event: "error";
25
22
  }
23
+ interface WindowEvent extends SessionsEventsResponseWindowEvent.Raw {
24
+ event: "windowEvent";
25
+ }
26
26
  }
@@ -18,26 +18,36 @@ 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.SessionsEventsResponse = void 0;
30
40
  const core = __importStar(require("../../../../core"));
31
- const SessionsEventsResponseWindowEvent_1 = require("./SessionsEventsResponseWindowEvent");
32
41
  const SessionsEventsResponseSessionEvent_1 = require("./SessionsEventsResponseSessionEvent");
33
42
  const SessionsEventsResponseStatus_1 = require("./SessionsEventsResponseStatus");
34
43
  const SessionsEventsResponseError_1 = require("./SessionsEventsResponseError");
44
+ const SessionsEventsResponseWindowEvent_1 = require("./SessionsEventsResponseWindowEvent");
35
45
  exports.SessionsEventsResponse = core.serialization
36
46
  .union("event", {
37
- windowEvent: SessionsEventsResponseWindowEvent_1.SessionsEventsResponseWindowEvent,
38
47
  sessionEvent: SessionsEventsResponseSessionEvent_1.SessionsEventsResponseSessionEvent,
39
48
  status: SessionsEventsResponseStatus_1.SessionsEventsResponseStatus,
40
49
  error: SessionsEventsResponseError_1.SessionsEventsResponseError,
50
+ windowEvent: SessionsEventsResponseWindowEvent_1.SessionsEventsResponseWindowEvent,
41
51
  })
42
52
  .transform({
43
53
  transform: (value) => value,
@@ -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.SessionsEventsResponseError = void 0;
30
40
  const core = __importStar(require("../../../../core"));