@airtop/sdk 0.1.41 → 0.1.42-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 (235) hide show
  1. package/README.md +9 -10
  2. package/api/resources/automations/client/Client.js +4 -4
  3. package/api/resources/files/client/Client.js +5 -5
  4. package/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +1 -1
  5. package/api/resources/profiles/client/Client.js +1 -1
  6. package/api/resources/requests/client/Client.js +1 -1
  7. package/api/resources/sessions/client/Client.js +6 -6
  8. package/api/resources/sessions/types/SessionsEventsResponse.d.ts +4 -4
  9. package/api/resources/sessions/types/index.d.ts +1 -1
  10. package/api/resources/sessions/types/index.js +1 -1
  11. package/api/resources/windows/client/Client.d.ts +233 -5
  12. package/api/resources/windows/client/Client.js +1173 -214
  13. package/api/resources/windows/client/requests/ActRequest.d.ts +30 -0
  14. package/api/resources/windows/client/requests/ActRequest.js +5 -0
  15. package/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
  16. package/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
  17. package/api/resources/windows/client/requests/AsyncFileInputRequest.d.ts +33 -0
  18. package/api/resources/windows/client/requests/AsyncFileInputRequest.js +5 -0
  19. package/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
  20. package/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
  21. package/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
  22. package/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
  23. package/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
  24. package/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
  25. package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
  26. package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
  27. package/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
  28. package/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
  29. package/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
  30. package/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
  31. package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
  32. package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
  33. package/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
  34. package/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
  35. package/api/resources/windows/client/requests/ExtractRequest.d.ts +30 -0
  36. package/api/resources/windows/client/requests/ExtractRequest.js +5 -0
  37. package/api/resources/windows/client/requests/FindManyRequest.d.ts +30 -0
  38. package/api/resources/windows/client/requests/FindManyRequest.js +5 -0
  39. package/api/resources/windows/client/requests/FindOneRequest.d.ts +30 -0
  40. package/api/resources/windows/client/requests/FindOneRequest.js +5 -0
  41. package/api/resources/windows/client/requests/LlmRequest.d.ts +25 -0
  42. package/api/resources/windows/client/requests/LlmRequest.js +5 -0
  43. package/api/resources/windows/client/requests/OperatorPromptV1Body.d.ts +25 -0
  44. package/api/resources/windows/client/requests/OperatorPromptV1Body.js +5 -0
  45. package/api/resources/windows/client/requests/SessionFileInputHandlerRequestBody.d.ts +4 -4
  46. package/api/resources/windows/client/requests/WaitForPageRequest.d.ts +23 -0
  47. package/api/resources/windows/client/requests/WaitForPageRequest.js +5 -0
  48. package/api/resources/windows/client/requests/index.d.ts +17 -0
  49. package/api/resources/windows/types/WaitForPageRequestTargetStatus.d.ts +11 -0
  50. package/api/resources/windows/types/WaitForPageRequestTargetStatus.js +10 -0
  51. package/api/resources/windows/types/index.d.ts +1 -0
  52. package/api/resources/windows/types/index.js +1 -0
  53. package/api/types/AsyncOperatorPromptResponseEnvelope.d.ts +9 -0
  54. package/api/types/AsyncOperatorPromptResponseEnvelope.js +5 -0
  55. package/api/types/FileEventData.d.ts +7 -0
  56. package/api/types/FileEventData.js +5 -0
  57. package/api/types/FileEventMessage.d.ts +2 -1
  58. package/api/types/index.d.ts +2 -0
  59. package/api/types/index.js +2 -0
  60. package/dist/api/resources/automations/client/Client.js +4 -4
  61. package/dist/api/resources/files/client/Client.js +5 -5
  62. package/dist/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +1 -1
  63. package/dist/api/resources/profiles/client/Client.js +1 -1
  64. package/dist/api/resources/requests/client/Client.js +1 -1
  65. package/dist/api/resources/sessions/client/Client.js +6 -6
  66. package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +4 -4
  67. package/dist/api/resources/sessions/types/index.d.ts +1 -1
  68. package/dist/api/resources/sessions/types/index.js +1 -1
  69. package/dist/api/resources/windows/client/Client.d.ts +233 -5
  70. package/dist/api/resources/windows/client/Client.js +1173 -214
  71. package/dist/api/resources/windows/client/requests/ActRequest.d.ts +30 -0
  72. package/dist/api/resources/windows/client/requests/ActRequest.js +5 -0
  73. package/dist/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
  74. package/dist/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
  75. package/dist/api/resources/windows/client/requests/AsyncFileInputRequest.d.ts +33 -0
  76. package/dist/api/resources/windows/client/requests/AsyncFileInputRequest.js +5 -0
  77. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
  78. package/dist/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
  79. package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
  80. package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
  81. package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
  82. package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
  83. package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
  84. package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
  85. package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
  86. package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
  87. package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
  88. package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
  89. package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
  90. package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
  91. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
  92. package/dist/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
  93. package/dist/api/resources/windows/client/requests/ExtractRequest.d.ts +30 -0
  94. package/dist/api/resources/windows/client/requests/ExtractRequest.js +5 -0
  95. package/dist/api/resources/windows/client/requests/FindManyRequest.d.ts +30 -0
  96. package/dist/api/resources/windows/client/requests/FindManyRequest.js +5 -0
  97. package/dist/api/resources/windows/client/requests/FindOneRequest.d.ts +30 -0
  98. package/dist/api/resources/windows/client/requests/FindOneRequest.js +5 -0
  99. package/dist/api/resources/windows/client/requests/LlmRequest.d.ts +25 -0
  100. package/dist/api/resources/windows/client/requests/LlmRequest.js +5 -0
  101. package/dist/api/resources/windows/client/requests/OperatorPromptV1Body.d.ts +25 -0
  102. package/dist/api/resources/windows/client/requests/OperatorPromptV1Body.js +5 -0
  103. package/dist/api/resources/windows/client/requests/SessionFileInputHandlerRequestBody.d.ts +4 -4
  104. package/dist/api/resources/windows/client/requests/WaitForPageRequest.d.ts +23 -0
  105. package/dist/api/resources/windows/client/requests/WaitForPageRequest.js +5 -0
  106. package/dist/api/resources/windows/client/requests/index.d.ts +17 -0
  107. package/dist/api/resources/windows/types/WaitForPageRequestTargetStatus.d.ts +11 -0
  108. package/dist/api/resources/windows/types/WaitForPageRequestTargetStatus.js +10 -0
  109. package/dist/api/resources/windows/types/index.d.ts +1 -0
  110. package/dist/api/resources/windows/types/index.js +1 -0
  111. package/dist/api/types/AsyncOperatorPromptResponseEnvelope.d.ts +9 -0
  112. package/dist/api/types/AsyncOperatorPromptResponseEnvelope.js +5 -0
  113. package/dist/api/types/FileEventData.d.ts +7 -0
  114. package/dist/api/types/FileEventData.js +5 -0
  115. package/dist/api/types/FileEventMessage.d.ts +2 -1
  116. package/dist/api/types/index.d.ts +2 -0
  117. package/dist/api/types/index.js +2 -0
  118. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +5 -5
  119. package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +2 -2
  120. package/dist/serialization/resources/sessions/types/index.d.ts +1 -1
  121. package/dist/serialization/resources/sessions/types/index.js +1 -1
  122. package/dist/serialization/resources/windows/client/requests/ActRequest.d.ts +19 -0
  123. package/dist/serialization/resources/windows/client/requests/ActRequest.js +50 -0
  124. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
  125. package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.js +51 -0
  126. package/dist/serialization/resources/windows/client/requests/AsyncFileInputRequest.d.ts +23 -0
  127. package/dist/serialization/resources/windows/client/requests/AsyncFileInputRequest.js +54 -0
  128. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
  129. package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.js +50 -0
  130. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +19 -0
  131. package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +50 -0
  132. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
  133. package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +51 -0
  134. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
  135. package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +50 -0
  136. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
  137. package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +51 -0
  138. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
  139. package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +49 -0
  140. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
  141. package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +50 -0
  142. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
  143. package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.js +55 -0
  144. package/dist/serialization/resources/windows/client/requests/ExtractRequest.d.ts +19 -0
  145. package/dist/serialization/resources/windows/client/requests/ExtractRequest.js +50 -0
  146. package/dist/serialization/resources/windows/client/requests/FindManyRequest.d.ts +19 -0
  147. package/dist/serialization/resources/windows/client/requests/FindManyRequest.js +50 -0
  148. package/dist/serialization/resources/windows/client/requests/FindOneRequest.d.ts +19 -0
  149. package/dist/serialization/resources/windows/client/requests/FindOneRequest.js +50 -0
  150. package/dist/serialization/resources/windows/client/requests/LlmRequest.d.ts +17 -0
  151. package/dist/serialization/resources/windows/client/requests/LlmRequest.js +48 -0
  152. package/dist/serialization/resources/windows/client/requests/OperatorPromptV1Body.d.ts +17 -0
  153. package/dist/serialization/resources/windows/client/requests/OperatorPromptV1Body.js +48 -0
  154. package/dist/serialization/resources/windows/client/requests/SessionFileInputHandlerRequestBody.d.ts +2 -1
  155. package/dist/serialization/resources/windows/client/requests/SessionFileInputHandlerRequestBody.js +2 -1
  156. package/dist/serialization/resources/windows/client/requests/WaitForPageRequest.d.ts +18 -0
  157. package/dist/serialization/resources/windows/client/requests/WaitForPageRequest.js +49 -0
  158. package/dist/serialization/resources/windows/client/requests/index.d.ts +17 -0
  159. package/dist/serialization/resources/windows/client/requests/index.js +35 -1
  160. package/dist/serialization/resources/windows/types/WaitForPageRequestTargetStatus.d.ts +10 -0
  161. package/dist/serialization/resources/windows/types/WaitForPageRequestTargetStatus.js +41 -0
  162. package/dist/serialization/resources/windows/types/index.d.ts +1 -0
  163. package/dist/serialization/resources/windows/types/index.js +1 -0
  164. package/dist/serialization/types/AsyncOperatorPromptResponseEnvelope.d.ts +15 -0
  165. package/dist/serialization/types/AsyncOperatorPromptResponseEnvelope.js +46 -0
  166. package/dist/serialization/types/FileEventData.d.ts +13 -0
  167. package/dist/serialization/types/FileEventData.js +44 -0
  168. package/dist/serialization/types/FileEventMessage.d.ts +2 -1
  169. package/dist/serialization/types/FileEventMessage.js +2 -1
  170. package/dist/serialization/types/index.d.ts +2 -0
  171. package/dist/serialization/types/index.js +2 -0
  172. package/dist/utils/upload.js +12 -7
  173. package/dist/version.d.ts +1 -1
  174. package/dist/version.js +1 -1
  175. package/dist/wrapper/AirtopSessions.js +12 -5
  176. package/package.json +1 -1
  177. package/reference.md +1457 -144
  178. package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +5 -5
  179. package/serialization/resources/sessions/types/SessionsEventsResponse.js +2 -2
  180. package/serialization/resources/sessions/types/index.d.ts +1 -1
  181. package/serialization/resources/sessions/types/index.js +1 -1
  182. package/serialization/resources/windows/client/requests/ActRequest.d.ts +19 -0
  183. package/serialization/resources/windows/client/requests/ActRequest.js +50 -0
  184. package/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
  185. package/serialization/resources/windows/client/requests/AsyncClickRequest.js +51 -0
  186. package/serialization/resources/windows/client/requests/AsyncFileInputRequest.d.ts +23 -0
  187. package/serialization/resources/windows/client/requests/AsyncFileInputRequest.js +54 -0
  188. package/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
  189. package/serialization/resources/windows/client/requests/AsyncHoverRequest.js +50 -0
  190. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +19 -0
  191. package/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +50 -0
  192. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
  193. package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +51 -0
  194. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
  195. package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +50 -0
  196. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
  197. package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +51 -0
  198. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
  199. package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +49 -0
  200. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
  201. package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +50 -0
  202. package/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
  203. package/serialization/resources/windows/client/requests/AsyncTypeRequest.js +55 -0
  204. package/serialization/resources/windows/client/requests/ExtractRequest.d.ts +19 -0
  205. package/serialization/resources/windows/client/requests/ExtractRequest.js +50 -0
  206. package/serialization/resources/windows/client/requests/FindManyRequest.d.ts +19 -0
  207. package/serialization/resources/windows/client/requests/FindManyRequest.js +50 -0
  208. package/serialization/resources/windows/client/requests/FindOneRequest.d.ts +19 -0
  209. package/serialization/resources/windows/client/requests/FindOneRequest.js +50 -0
  210. package/serialization/resources/windows/client/requests/LlmRequest.d.ts +17 -0
  211. package/serialization/resources/windows/client/requests/LlmRequest.js +48 -0
  212. package/serialization/resources/windows/client/requests/OperatorPromptV1Body.d.ts +17 -0
  213. package/serialization/resources/windows/client/requests/OperatorPromptV1Body.js +48 -0
  214. package/serialization/resources/windows/client/requests/SessionFileInputHandlerRequestBody.d.ts +2 -1
  215. package/serialization/resources/windows/client/requests/SessionFileInputHandlerRequestBody.js +2 -1
  216. package/serialization/resources/windows/client/requests/WaitForPageRequest.d.ts +18 -0
  217. package/serialization/resources/windows/client/requests/WaitForPageRequest.js +49 -0
  218. package/serialization/resources/windows/client/requests/index.d.ts +17 -0
  219. package/serialization/resources/windows/client/requests/index.js +35 -1
  220. package/serialization/resources/windows/types/WaitForPageRequestTargetStatus.d.ts +10 -0
  221. package/serialization/resources/windows/types/WaitForPageRequestTargetStatus.js +41 -0
  222. package/serialization/resources/windows/types/index.d.ts +1 -0
  223. package/serialization/resources/windows/types/index.js +1 -0
  224. package/serialization/types/AsyncOperatorPromptResponseEnvelope.d.ts +15 -0
  225. package/serialization/types/AsyncOperatorPromptResponseEnvelope.js +46 -0
  226. package/serialization/types/FileEventData.d.ts +13 -0
  227. package/serialization/types/FileEventData.js +44 -0
  228. package/serialization/types/FileEventMessage.d.ts +2 -1
  229. package/serialization/types/FileEventMessage.js +2 -1
  230. package/serialization/types/index.d.ts +2 -0
  231. package/serialization/types/index.js +2 -0
  232. package/utils/upload.js +12 -7
  233. package/version.d.ts +1 -1
  234. package/version.js +1 -1
  235. package/wrapper/AirtopSessions.js +12 -5
@@ -0,0 +1,18 @@
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 { AsyncConfig } from "../../../../types/AsyncConfig";
8
+ import { WaitForPageRequestTargetStatus } from "../../types/WaitForPageRequestTargetStatus";
9
+ export declare const WaitForPageRequest: core.serialization.Schema<serializers.WaitForPageRequest.Raw, Airtop.WaitForPageRequest>;
10
+ export declare namespace WaitForPageRequest {
11
+ interface Raw {
12
+ async?: AsyncConfig.Raw | null;
13
+ clientRequestId?: string | null;
14
+ costThresholdCredits?: number | null;
15
+ targetStatus?: WaitForPageRequestTargetStatus.Raw | null;
16
+ timeThresholdSeconds?: number | null;
17
+ }
18
+ }
@@ -0,0 +1,49 @@
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.WaitForPageRequest = void 0;
40
+ const core = __importStar(require("../../../../../core"));
41
+ const AsyncConfig_1 = require("../../../../types/AsyncConfig");
42
+ const WaitForPageRequestTargetStatus_1 = require("../../types/WaitForPageRequestTargetStatus");
43
+ exports.WaitForPageRequest = core.serialization.object({
44
+ async: AsyncConfig_1.AsyncConfig.optional(),
45
+ clientRequestId: core.serialization.string().optional(),
46
+ costThresholdCredits: core.serialization.number().optional(),
47
+ targetStatus: WaitForPageRequestTargetStatus_1.WaitForPageRequestTargetStatus.optional(),
48
+ timeThresholdSeconds: core.serialization.number().optional(),
49
+ });
@@ -1,7 +1,17 @@
1
+ export { AsyncClickRequest } from "./AsyncClickRequest";
1
2
  export { AsyncCreateAutomationRequest } from "./AsyncCreateAutomationRequest";
2
3
  export { AsyncCreateFormFillerRequest } from "./AsyncCreateFormFillerRequest";
3
4
  export { AsyncExecuteAutomationRequest } from "./AsyncExecuteAutomationRequest";
5
+ export { AsyncFileInputRequest } from "./AsyncFileInputRequest";
4
6
  export { AsyncFillFormRequest } from "./AsyncFillFormRequest";
7
+ export { AsyncHoverRequest } from "./AsyncHoverRequest";
8
+ export { AsyncMonitorRequest } from "./AsyncMonitorRequest";
9
+ export { AsyncPageQueryRequest } from "./AsyncPageQueryRequest";
10
+ export { AsyncPaginatedExtractionRequest } from "./AsyncPaginatedExtractionRequest";
11
+ export { AsyncPromptContentRequest } from "./AsyncPromptContentRequest";
12
+ export { AsyncScreenshotRequest } from "./AsyncScreenshotRequest";
13
+ export { AsyncSummarizeContentRequest } from "./AsyncSummarizeContentRequest";
14
+ export { AsyncTypeRequest } from "./AsyncTypeRequest";
5
15
  export { CreateWindowInputV1Body } from "./CreateWindowInputV1Body";
6
16
  export { WindowLoadUrlV1Body } from "./WindowLoadUrlV1Body";
7
17
  export { SessionClickHandlerRequestBody } from "./SessionClickHandlerRequestBody";
@@ -10,9 +20,16 @@ export { SessionFileInputHandlerRequestBody } from "./SessionFileInputHandlerReq
10
20
  export { FillFormRequest } from "./FillFormRequest";
11
21
  export { SessionHoverHandlerRequestBody } from "./SessionHoverHandlerRequestBody";
12
22
  export { SessionMonitorHandlerRequestBody } from "./SessionMonitorHandlerRequestBody";
23
+ export { OperatorPromptV1Body } from "./OperatorPromptV1Body";
13
24
  export { SessionPaginatedExtractionHandlerRequestBody } from "./SessionPaginatedExtractionHandlerRequestBody";
14
25
  export { ScrapeContentRequest } from "./ScrapeContentRequest";
15
26
  export { SessionScreenshotHandlerRequestBody } from "./SessionScreenshotHandlerRequestBody";
16
27
  export { SessionScrollHandlerRequestBody } from "./SessionScrollHandlerRequestBody";
17
28
  export { SessionSummaryHandlerRequestBody } from "./SessionSummaryHandlerRequestBody";
18
29
  export { SessionTypeHandlerRequestBody } from "./SessionTypeHandlerRequestBody";
30
+ export { ActRequest } from "./ActRequest";
31
+ export { ExtractRequest } from "./ExtractRequest";
32
+ export { FindManyRequest } from "./FindManyRequest";
33
+ export { FindOneRequest } from "./FindOneRequest";
34
+ export { LlmRequest } from "./LlmRequest";
35
+ export { WaitForPageRequest } from "./WaitForPageRequest";
@@ -1,14 +1,34 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SessionTypeHandlerRequestBody = exports.SessionSummaryHandlerRequestBody = exports.SessionScrollHandlerRequestBody = exports.SessionScreenshotHandlerRequestBody = exports.ScrapeContentRequest = exports.SessionPaginatedExtractionHandlerRequestBody = exports.SessionMonitorHandlerRequestBody = exports.SessionHoverHandlerRequestBody = exports.FillFormRequest = exports.SessionFileInputHandlerRequestBody = exports.CreateFormFillerRequest = exports.SessionClickHandlerRequestBody = exports.WindowLoadUrlV1Body = exports.CreateWindowInputV1Body = exports.AsyncFillFormRequest = exports.AsyncExecuteAutomationRequest = exports.AsyncCreateFormFillerRequest = exports.AsyncCreateAutomationRequest = void 0;
3
+ exports.WaitForPageRequest = exports.LlmRequest = exports.FindOneRequest = exports.FindManyRequest = exports.ExtractRequest = exports.ActRequest = exports.SessionTypeHandlerRequestBody = exports.SessionSummaryHandlerRequestBody = exports.SessionScrollHandlerRequestBody = exports.SessionScreenshotHandlerRequestBody = exports.ScrapeContentRequest = exports.SessionPaginatedExtractionHandlerRequestBody = exports.OperatorPromptV1Body = exports.SessionMonitorHandlerRequestBody = exports.SessionHoverHandlerRequestBody = exports.FillFormRequest = exports.SessionFileInputHandlerRequestBody = exports.CreateFormFillerRequest = exports.SessionClickHandlerRequestBody = exports.WindowLoadUrlV1Body = exports.CreateWindowInputV1Body = exports.AsyncTypeRequest = exports.AsyncSummarizeContentRequest = exports.AsyncScreenshotRequest = exports.AsyncPromptContentRequest = exports.AsyncPaginatedExtractionRequest = exports.AsyncPageQueryRequest = exports.AsyncMonitorRequest = exports.AsyncHoverRequest = exports.AsyncFillFormRequest = exports.AsyncFileInputRequest = exports.AsyncExecuteAutomationRequest = exports.AsyncCreateFormFillerRequest = exports.AsyncCreateAutomationRequest = exports.AsyncClickRequest = void 0;
4
+ var AsyncClickRequest_1 = require("./AsyncClickRequest");
5
+ Object.defineProperty(exports, "AsyncClickRequest", { enumerable: true, get: function () { return AsyncClickRequest_1.AsyncClickRequest; } });
4
6
  var AsyncCreateAutomationRequest_1 = require("./AsyncCreateAutomationRequest");
5
7
  Object.defineProperty(exports, "AsyncCreateAutomationRequest", { enumerable: true, get: function () { return AsyncCreateAutomationRequest_1.AsyncCreateAutomationRequest; } });
6
8
  var AsyncCreateFormFillerRequest_1 = require("./AsyncCreateFormFillerRequest");
7
9
  Object.defineProperty(exports, "AsyncCreateFormFillerRequest", { enumerable: true, get: function () { return AsyncCreateFormFillerRequest_1.AsyncCreateFormFillerRequest; } });
8
10
  var AsyncExecuteAutomationRequest_1 = require("./AsyncExecuteAutomationRequest");
9
11
  Object.defineProperty(exports, "AsyncExecuteAutomationRequest", { enumerable: true, get: function () { return AsyncExecuteAutomationRequest_1.AsyncExecuteAutomationRequest; } });
12
+ var AsyncFileInputRequest_1 = require("./AsyncFileInputRequest");
13
+ Object.defineProperty(exports, "AsyncFileInputRequest", { enumerable: true, get: function () { return AsyncFileInputRequest_1.AsyncFileInputRequest; } });
10
14
  var AsyncFillFormRequest_1 = require("./AsyncFillFormRequest");
11
15
  Object.defineProperty(exports, "AsyncFillFormRequest", { enumerable: true, get: function () { return AsyncFillFormRequest_1.AsyncFillFormRequest; } });
16
+ var AsyncHoverRequest_1 = require("./AsyncHoverRequest");
17
+ Object.defineProperty(exports, "AsyncHoverRequest", { enumerable: true, get: function () { return AsyncHoverRequest_1.AsyncHoverRequest; } });
18
+ var AsyncMonitorRequest_1 = require("./AsyncMonitorRequest");
19
+ Object.defineProperty(exports, "AsyncMonitorRequest", { enumerable: true, get: function () { return AsyncMonitorRequest_1.AsyncMonitorRequest; } });
20
+ var AsyncPageQueryRequest_1 = require("./AsyncPageQueryRequest");
21
+ Object.defineProperty(exports, "AsyncPageQueryRequest", { enumerable: true, get: function () { return AsyncPageQueryRequest_1.AsyncPageQueryRequest; } });
22
+ var AsyncPaginatedExtractionRequest_1 = require("./AsyncPaginatedExtractionRequest");
23
+ Object.defineProperty(exports, "AsyncPaginatedExtractionRequest", { enumerable: true, get: function () { return AsyncPaginatedExtractionRequest_1.AsyncPaginatedExtractionRequest; } });
24
+ var AsyncPromptContentRequest_1 = require("./AsyncPromptContentRequest");
25
+ Object.defineProperty(exports, "AsyncPromptContentRequest", { enumerable: true, get: function () { return AsyncPromptContentRequest_1.AsyncPromptContentRequest; } });
26
+ var AsyncScreenshotRequest_1 = require("./AsyncScreenshotRequest");
27
+ Object.defineProperty(exports, "AsyncScreenshotRequest", { enumerable: true, get: function () { return AsyncScreenshotRequest_1.AsyncScreenshotRequest; } });
28
+ var AsyncSummarizeContentRequest_1 = require("./AsyncSummarizeContentRequest");
29
+ Object.defineProperty(exports, "AsyncSummarizeContentRequest", { enumerable: true, get: function () { return AsyncSummarizeContentRequest_1.AsyncSummarizeContentRequest; } });
30
+ var AsyncTypeRequest_1 = require("./AsyncTypeRequest");
31
+ Object.defineProperty(exports, "AsyncTypeRequest", { enumerable: true, get: function () { return AsyncTypeRequest_1.AsyncTypeRequest; } });
12
32
  var CreateWindowInputV1Body_1 = require("./CreateWindowInputV1Body");
13
33
  Object.defineProperty(exports, "CreateWindowInputV1Body", { enumerable: true, get: function () { return CreateWindowInputV1Body_1.CreateWindowInputV1Body; } });
14
34
  var WindowLoadUrlV1Body_1 = require("./WindowLoadUrlV1Body");
@@ -25,6 +45,8 @@ var SessionHoverHandlerRequestBody_1 = require("./SessionHoverHandlerRequestBody
25
45
  Object.defineProperty(exports, "SessionHoverHandlerRequestBody", { enumerable: true, get: function () { return SessionHoverHandlerRequestBody_1.SessionHoverHandlerRequestBody; } });
26
46
  var SessionMonitorHandlerRequestBody_1 = require("./SessionMonitorHandlerRequestBody");
27
47
  Object.defineProperty(exports, "SessionMonitorHandlerRequestBody", { enumerable: true, get: function () { return SessionMonitorHandlerRequestBody_1.SessionMonitorHandlerRequestBody; } });
48
+ var OperatorPromptV1Body_1 = require("./OperatorPromptV1Body");
49
+ Object.defineProperty(exports, "OperatorPromptV1Body", { enumerable: true, get: function () { return OperatorPromptV1Body_1.OperatorPromptV1Body; } });
28
50
  var SessionPaginatedExtractionHandlerRequestBody_1 = require("./SessionPaginatedExtractionHandlerRequestBody");
29
51
  Object.defineProperty(exports, "SessionPaginatedExtractionHandlerRequestBody", { enumerable: true, get: function () { return SessionPaginatedExtractionHandlerRequestBody_1.SessionPaginatedExtractionHandlerRequestBody; } });
30
52
  var ScrapeContentRequest_1 = require("./ScrapeContentRequest");
@@ -37,3 +59,15 @@ var SessionSummaryHandlerRequestBody_1 = require("./SessionSummaryHandlerRequest
37
59
  Object.defineProperty(exports, "SessionSummaryHandlerRequestBody", { enumerable: true, get: function () { return SessionSummaryHandlerRequestBody_1.SessionSummaryHandlerRequestBody; } });
38
60
  var SessionTypeHandlerRequestBody_1 = require("./SessionTypeHandlerRequestBody");
39
61
  Object.defineProperty(exports, "SessionTypeHandlerRequestBody", { enumerable: true, get: function () { return SessionTypeHandlerRequestBody_1.SessionTypeHandlerRequestBody; } });
62
+ var ActRequest_1 = require("./ActRequest");
63
+ Object.defineProperty(exports, "ActRequest", { enumerable: true, get: function () { return ActRequest_1.ActRequest; } });
64
+ var ExtractRequest_1 = require("./ExtractRequest");
65
+ Object.defineProperty(exports, "ExtractRequest", { enumerable: true, get: function () { return ExtractRequest_1.ExtractRequest; } });
66
+ var FindManyRequest_1 = require("./FindManyRequest");
67
+ Object.defineProperty(exports, "FindManyRequest", { enumerable: true, get: function () { return FindManyRequest_1.FindManyRequest; } });
68
+ var FindOneRequest_1 = require("./FindOneRequest");
69
+ Object.defineProperty(exports, "FindOneRequest", { enumerable: true, get: function () { return FindOneRequest_1.FindOneRequest; } });
70
+ var LlmRequest_1 = require("./LlmRequest");
71
+ Object.defineProperty(exports, "LlmRequest", { enumerable: true, get: function () { return LlmRequest_1.LlmRequest; } });
72
+ var WaitForPageRequest_1 = require("./WaitForPageRequest");
73
+ Object.defineProperty(exports, "WaitForPageRequest", { enumerable: true, get: function () { return WaitForPageRequest_1.WaitForPageRequest; } });
@@ -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 WaitForPageRequestTargetStatus: core.serialization.Schema<serializers.WaitForPageRequestTargetStatus.Raw, Airtop.WaitForPageRequestTargetStatus>;
8
+ export declare namespace WaitForPageRequestTargetStatus {
9
+ type Raw = "domcontentloaded" | "load";
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.WaitForPageRequestTargetStatus = void 0;
40
+ const core = __importStar(require("../../../../core"));
41
+ exports.WaitForPageRequestTargetStatus = core.serialization.enum_(["domcontentloaded", "load"]);
@@ -1,2 +1,3 @@
1
1
  export * from "./CreateWindowInputV1BodyWaitUntil";
2
2
  export * from "./WindowLoadUrlV1BodyWaitUntil";
3
+ export * from "./WaitForPageRequestTargetStatus";
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./CreateWindowInputV1BodyWaitUntil"), exports);
18
18
  __exportStar(require("./WindowLoadUrlV1BodyWaitUntil"), exports);
19
+ __exportStar(require("./WaitForPageRequestTargetStatus"), exports);
@@ -0,0 +1,15 @@
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 { Issue } from "./Issue";
8
+ export declare const AsyncOperatorPromptResponseEnvelope: core.serialization.ObjectSchema<serializers.AsyncOperatorPromptResponseEnvelope.Raw, Airtop.AsyncOperatorPromptResponseEnvelope>;
9
+ export declare namespace AsyncOperatorPromptResponseEnvelope {
10
+ interface Raw {
11
+ errors?: Issue.Raw[] | null;
12
+ requestId: string;
13
+ warnings?: Issue.Raw[] | null;
14
+ }
15
+ }
@@ -0,0 +1,46 @@
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.AsyncOperatorPromptResponseEnvelope = void 0;
40
+ const core = __importStar(require("../../core"));
41
+ const Issue_1 = require("./Issue");
42
+ exports.AsyncOperatorPromptResponseEnvelope = core.serialization.object({
43
+ errors: core.serialization.list(Issue_1.Issue).optional(),
44
+ requestId: core.serialization.string(),
45
+ warnings: core.serialization.list(Issue_1.Issue).optional(),
46
+ });
@@ -0,0 +1,13 @@
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 FileEventData: core.serialization.ObjectSchema<serializers.FileEventData.Raw, Airtop.FileEventData>;
8
+ export declare namespace FileEventData {
9
+ interface Raw {
10
+ error: string;
11
+ filePath: string;
12
+ }
13
+ }
@@ -0,0 +1,44 @@
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.FileEventData = void 0;
40
+ const core = __importStar(require("../../core"));
41
+ exports.FileEventData = core.serialization.object({
42
+ error: core.serialization.string(),
43
+ filePath: core.serialization.string(),
44
+ });
@@ -4,13 +4,14 @@
4
4
  import * as serializers from "../index";
5
5
  import * as Airtop from "../../api/index";
6
6
  import * as core from "../../core";
7
+ import { FileEventData } from "./FileEventData";
7
8
  import { FileEventMessageStatus } from "./FileEventMessageStatus";
8
9
  export declare const FileEventMessage: core.serialization.ObjectSchema<serializers.FileEventMessage.Raw, Airtop.FileEventMessage>;
9
10
  export declare namespace FileEventMessage {
10
11
  interface Raw {
11
12
  downloadUrl: string;
12
13
  event: string;
13
- eventData?: unknown | null;
14
+ eventData?: FileEventData.Raw | null;
14
15
  eventTime: string;
15
16
  fileId: string;
16
17
  status: FileEventMessageStatus.Raw;
@@ -38,11 +38,12 @@ var __importStar = (this && this.__importStar) || (function () {
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.FileEventMessage = void 0;
40
40
  const core = __importStar(require("../../core"));
41
+ const FileEventData_1 = require("./FileEventData");
41
42
  const FileEventMessageStatus_1 = require("./FileEventMessageStatus");
42
43
  exports.FileEventMessage = core.serialization.object({
43
44
  downloadUrl: core.serialization.string(),
44
45
  event: core.serialization.string(),
45
- eventData: core.serialization.unknown().optional(),
46
+ eventData: FileEventData_1.FileEventData.optional(),
46
47
  eventTime: core.serialization.date(),
47
48
  fileId: core.serialization.string(),
48
49
  status: FileEventMessageStatus_1.FileEventMessageStatus,
@@ -1,6 +1,7 @@
1
1
  export * from "./AiPromptResponse";
2
2
  export * from "./AiResponseEnvelope";
3
3
  export * from "./AsyncConfig";
4
+ export * from "./AsyncOperatorPromptResponseEnvelope";
4
5
  export * from "./AsyncSessionAiResponseEnvelope";
5
6
  export * from "./AutomationOutput";
6
7
  export * from "./BrowserWaitNavigationConfigWaitUntil";
@@ -28,6 +29,7 @@ export * from "./ExternalSessionAiResponseMetadata";
28
29
  export * from "./ExternalSessionAiResponseMetadataUsage";
29
30
  export * from "./ExternalSessionConfig";
30
31
  export * from "./ExternalSessionWithConnectionInfo";
32
+ export * from "./FileEventData";
31
33
  export * from "./FileEventMessageStatus";
32
34
  export * from "./FileEventMessage";
33
35
  export * from "./FilesResponse";
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./AiPromptResponse"), exports);
18
18
  __exportStar(require("./AiResponseEnvelope"), exports);
19
19
  __exportStar(require("./AsyncConfig"), exports);
20
+ __exportStar(require("./AsyncOperatorPromptResponseEnvelope"), exports);
20
21
  __exportStar(require("./AsyncSessionAiResponseEnvelope"), exports);
21
22
  __exportStar(require("./AutomationOutput"), exports);
22
23
  __exportStar(require("./BrowserWaitNavigationConfigWaitUntil"), exports);
@@ -44,6 +45,7 @@ __exportStar(require("./ExternalSessionAiResponseMetadata"), exports);
44
45
  __exportStar(require("./ExternalSessionAiResponseMetadataUsage"), exports);
45
46
  __exportStar(require("./ExternalSessionConfig"), exports);
46
47
  __exportStar(require("./ExternalSessionWithConnectionInfo"), exports);
48
+ __exportStar(require("./FileEventData"), exports);
47
49
  __exportStar(require("./FileEventMessageStatus"), exports);
48
50
  __exportStar(require("./FileEventMessage"), exports);
49
51
  __exportStar(require("./FilesResponse"), exports);
package/utils/upload.js CHANGED
@@ -8,16 +8,23 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
9
9
  });
10
10
  };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
11
14
  Object.defineProperty(exports, "__esModule", { value: true });
12
15
  exports.uploadFileAndSelectInput = uploadFileAndSelectInput;
16
+ const path_1 = __importDefault(require("path"));
13
17
  function uploadFileAndSelectInput(_a) {
14
18
  return __awaiter(this, arguments, void 0, function* ({ client, sessionId, windowId, configuration, }) {
19
+ var _b;
15
20
  const windowInfo = yield client.windows.getWindowInfo(sessionId, windowId);
16
21
  if (!windowInfo) {
17
22
  throw new Error('window not found');
18
23
  }
19
24
  client.log(`starting file upload: sessionId: ${sessionId}, windowId: ${windowId}, uploadFilePath: ${configuration.uploadFilePath}`);
20
- const fileUploadResponse = yield client.files.upload(configuration.uploadFilePath);
25
+ const fileUploadResponse = yield client.files.upload(configuration.uploadFilePath, {
26
+ fileName: (_b = configuration.fileName) !== null && _b !== void 0 ? _b : path_1.default.basename(configuration.uploadFilePath),
27
+ });
21
28
  if (fileUploadResponse.errors && fileUploadResponse.errors.length > 0) {
22
29
  client.log(`file upload failed: ${JSON.stringify(fileUploadResponse.errors)}`);
23
30
  throw new Error('file upload failed');
@@ -28,7 +35,7 @@ function uploadFileAndSelectInput(_a) {
28
35
  sessionIds: [sessionId],
29
36
  });
30
37
  client.log('file pushed to session');
31
- client.log('waiting for file upload to become available');
38
+ client.log(`waiting for file upload to become available ${fileId}`);
32
39
  const waitResult = yield client.sessions.waitForUploadAvailable(sessionId, fileId);
33
40
  if (waitResult) {
34
41
  client.log('file upload available');
@@ -37,12 +44,10 @@ function uploadFileAndSelectInput(_a) {
37
44
  client.log('file upload not available within timeout');
38
45
  throw new Error('file upload not available within timeout');
39
46
  }
40
- client.log('executing file input interaction');
41
- const fileInputResponse = yield client.windows.fileInput(sessionId, windowId, {
42
- fileId: fileId,
43
- elementDescription: configuration.elementDescription,
44
- });
47
+ client.log(`executing file input interaction ${JSON.stringify(configuration)}`);
48
+ const fileInputResponse = yield client.windows.fileInput(sessionId, windowId, Object.assign({ fileId: fileId }, configuration));
45
49
  if (fileInputResponse.errors && fileInputResponse.errors.length > 0) {
50
+ client.log(`file input failed: ${JSON.stringify(fileInputResponse.errors)}`);
46
51
  throw new Error('file input failed');
47
52
  }
48
53
  client.log('file upload and file input interaction complete');
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.1.41";
1
+ export declare const SDK_VERSION = "0.1.42-beta0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.1.41";
4
+ exports.SDK_VERSION = "0.1.42-beta0";
@@ -336,6 +336,7 @@ class AirtopSessions extends Client_1.Sessions {
336
336
  */
337
337
  waitForUploadAvailable(sessionId_1, fileId_1) {
338
338
  return __awaiter(this, arguments, void 0, function* (sessionId, fileId, timeoutSeconds = 300) {
339
+ this.log(`waiting for uploaded file to be available on session: ${sessionId} ${fileId}`);
339
340
  // Create a promise that resolves to null after the timeout
340
341
  const timeoutPromise = new Promise((resolve) => {
341
342
  setTimeout(() => resolve(null), timeoutSeconds * 1000);
@@ -351,9 +352,15 @@ class AirtopSessions extends Client_1.Sessions {
351
352
  const event = _c;
352
353
  const e = event;
353
354
  if (e.event === 'file_upload_status') {
354
- this.log(`file_upload_status message received:\n${JSON.stringify(event, null, 2)}`);
355
- if (e.status === 'available' && e.fileId === fileId) {
356
- return event;
355
+ if (e.fileId === fileId) {
356
+ if (e.status === 'available') {
357
+ this.log(`uploaded file is now available on session: ${sessionId} ${fileId}`);
358
+ return event;
359
+ }
360
+ if (e.status === 'upload_failed') {
361
+ this.log(`upload failed: ${sessionId} ${fileId}`);
362
+ throw new Error(`upload failed: ${e.eventData.error}`);
363
+ }
357
364
  }
358
365
  }
359
366
  }
@@ -409,7 +416,7 @@ class AirtopSessions extends Client_1.Sessions {
409
416
  }
410
417
  lastCallbackPromise = lastCallbackPromise
411
418
  .then(() => callback(msg))
412
- .catch(error => this.log(`Error in captcha callback: ${error}`));
419
+ .catch((error) => this.log(`Error in captcha callback: ${error}`));
413
420
  }
414
421
  }
415
422
  }
@@ -420,7 +427,7 @@ class AirtopSessions extends Client_1.Sessions {
420
427
  }
421
428
  finally { if (e_5) throw e_5.error; }
422
429
  }
423
- }))().catch(error => {
430
+ }))().catch((error) => {
424
431
  if (error.name !== 'AbortError') {
425
432
  this.log(`Error in event processing: ${error}`);
426
433
  }