@airtop/sdk 0.1.26 → 0.1.27-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.
- package/Client.d.ts +6 -0
- package/Client.js +14 -4
- package/README.md +8 -6
- package/api/resources/extensionConfigurations/client/Client.d.ts +50 -0
- package/api/resources/extensionConfigurations/client/Client.js +214 -0
- package/api/resources/extensionConfigurations/client/index.d.ts +1 -0
- package/api/resources/extensionConfigurations/client/index.js +17 -0
- package/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.d.ts +13 -0
- package/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.js +5 -0
- package/api/resources/extensionConfigurations/client/requests/index.d.ts +1 -0
- package/api/resources/extensionConfigurations/client/requests/index.js +2 -0
- package/api/resources/extensionConfigurations/index.d.ts +1 -0
- package/api/resources/extensionConfigurations/index.js +17 -0
- package/api/resources/index.d.ts +3 -0
- package/api/resources/index.js +4 -1
- package/api/resources/profiles/client/Client.js +2 -2
- package/api/resources/requests/client/Client.d.ts +34 -0
- package/api/resources/requests/client/Client.js +115 -0
- package/api/resources/requests/client/index.d.ts +1 -0
- package/api/resources/requests/client/index.js +2 -0
- package/api/resources/requests/index.d.ts +1 -0
- package/api/resources/requests/index.js +17 -0
- package/api/resources/sessions/client/Client.js +14 -14
- package/api/resources/sessions/types/SessionsEventsResponse.d.ts +4 -4
- package/api/resources/sessions/types/index.d.ts +1 -1
- package/api/resources/sessions/types/index.js +1 -1
- package/api/resources/windows/client/Client.d.ts +166 -4
- package/api/resources/windows/client/Client.js +857 -30
- package/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
- package/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +23 -0
- package/api/resources/windows/client/requests/AsyncCreateAutomationRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +27 -0
- package/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
- package/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
- package/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
- package/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
- package/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
- package/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
- package/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
- package/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
- package/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
- package/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
- package/api/resources/windows/client/requests/SessionHoverHandlerRequestBody.d.ts +4 -2
- package/api/resources/windows/client/requests/SessionMonitorHandlerRequestBody.d.ts +25 -0
- package/api/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +5 -0
- package/api/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.d.ts +4 -2
- package/api/resources/windows/client/requests/SessionScrollHandlerRequestBody.d.ts +27 -0
- package/api/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +5 -0
- package/api/resources/windows/client/requests/index.d.ts +13 -0
- package/api/types/AsyncConfig.d.ts +7 -0
- package/api/types/AsyncConfig.js +5 -0
- package/api/types/AsyncSessionAiResponseEnvelope.d.ts +9 -0
- package/api/types/AsyncSessionAiResponseEnvelope.js +5 -0
- package/api/types/BrowserWaitSelectorConfig.d.ts +11 -0
- package/api/types/BrowserWaitSelectorConfig.js +5 -0
- package/api/types/CreateAutomationRequestBodyConfiguration.d.ts +4 -0
- package/api/types/CreateAutomationRequestBodyConfiguration.js +5 -0
- package/api/types/ExtensionConfigurationOutput.d.ts +13 -0
- package/api/types/ExtensionConfigurationOutput.js +5 -0
- package/api/types/IntervalMonitorConfig.d.ts +9 -0
- package/api/types/IntervalMonitorConfig.js +5 -0
- package/api/types/MonitorConfig.d.ts +14 -0
- package/api/types/MonitorConfig.js +5 -0
- package/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +12 -0
- package/api/types/MonitorConfigIncludeVisualAnalysis.js +11 -0
- package/api/types/MonitorConfigMonitorType.d.ts +11 -0
- package/api/types/MonitorConfigMonitorType.js +10 -0
- package/api/types/RequestStatusResponse.d.ts +8 -0
- package/api/types/RequestStatusResponse.js +5 -0
- package/api/types/ScrollByConfig.d.ts +9 -0
- package/api/types/ScrollByConfig.js +5 -0
- package/api/types/ScrollToEdgeConfig.d.ts +9 -0
- package/api/types/ScrollToEdgeConfig.js +5 -0
- package/api/types/SessionConfigV1.d.ts +4 -0
- package/api/types/index.d.ts +12 -0
- package/api/types/index.js +12 -0
- package/dist/Client.d.ts +6 -0
- package/dist/Client.js +14 -4
- package/dist/api/resources/extensionConfigurations/client/Client.d.ts +50 -0
- package/dist/api/resources/extensionConfigurations/client/Client.js +214 -0
- package/dist/api/resources/extensionConfigurations/client/index.d.ts +1 -0
- package/dist/api/resources/extensionConfigurations/client/index.js +17 -0
- package/dist/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.d.ts +13 -0
- package/dist/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.js +5 -0
- package/dist/api/resources/extensionConfigurations/client/requests/index.d.ts +1 -0
- package/dist/api/resources/extensionConfigurations/client/requests/index.js +2 -0
- package/dist/api/resources/extensionConfigurations/index.d.ts +1 -0
- package/dist/api/resources/extensionConfigurations/index.js +17 -0
- package/dist/api/resources/index.d.ts +3 -0
- package/dist/api/resources/index.js +4 -1
- package/dist/api/resources/profiles/client/Client.js +2 -2
- package/dist/api/resources/requests/client/Client.d.ts +34 -0
- package/dist/api/resources/requests/client/Client.js +115 -0
- package/dist/api/resources/requests/client/index.d.ts +1 -0
- package/dist/api/resources/requests/client/index.js +2 -0
- package/dist/api/resources/requests/index.d.ts +1 -0
- package/dist/api/resources/requests/index.js +17 -0
- package/dist/api/resources/sessions/client/Client.js +14 -14
- package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +4 -4
- package/dist/api/resources/sessions/types/index.d.ts +1 -1
- package/dist/api/resources/sessions/types/index.js +1 -1
- package/dist/api/resources/windows/client/Client.d.ts +166 -4
- package/dist/api/resources/windows/client/Client.js +857 -30
- package/dist/api/resources/windows/client/requests/AsyncClickRequest.d.ts +29 -0
- package/dist/api/resources/windows/client/requests/AsyncClickRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +23 -0
- package/dist/api/resources/windows/client/requests/AsyncCreateAutomationRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +27 -0
- package/dist/api/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +27 -0
- package/dist/api/resources/windows/client/requests/AsyncHoverRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.d.ts +27 -0
- package/dist/api/resources/windows/client/requests/AsyncMonitorRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +29 -0
- package/dist/api/resources/windows/client/requests/AsyncPageQueryRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +27 -0
- package/dist/api/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +29 -0
- package/dist/api/resources/windows/client/requests/AsyncPromptContentRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +23 -0
- package/dist/api/resources/windows/client/requests/AsyncScreenshotRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +25 -0
- package/dist/api/resources/windows/client/requests/AsyncSummarizeContentRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +37 -0
- package/dist/api/resources/windows/client/requests/AsyncTypeRequest.js +5 -0
- package/dist/api/resources/windows/client/requests/SessionHoverHandlerRequestBody.d.ts +4 -2
- package/dist/api/resources/windows/client/requests/SessionMonitorHandlerRequestBody.d.ts +25 -0
- package/dist/api/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +5 -0
- package/dist/api/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.d.ts +4 -2
- package/dist/api/resources/windows/client/requests/SessionScrollHandlerRequestBody.d.ts +27 -0
- package/dist/api/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +5 -0
- package/dist/api/resources/windows/client/requests/index.d.ts +13 -0
- package/dist/api/types/AsyncConfig.d.ts +7 -0
- package/dist/api/types/AsyncConfig.js +5 -0
- package/dist/api/types/AsyncSessionAiResponseEnvelope.d.ts +9 -0
- package/dist/api/types/AsyncSessionAiResponseEnvelope.js +5 -0
- package/dist/api/types/BrowserWaitSelectorConfig.d.ts +11 -0
- package/dist/api/types/BrowserWaitSelectorConfig.js +5 -0
- package/dist/api/types/CreateAutomationRequestBodyConfiguration.d.ts +4 -0
- package/dist/api/types/CreateAutomationRequestBodyConfiguration.js +5 -0
- package/dist/api/types/ExtensionConfigurationOutput.d.ts +13 -0
- package/dist/api/types/ExtensionConfigurationOutput.js +5 -0
- package/dist/api/types/IntervalMonitorConfig.d.ts +9 -0
- package/dist/api/types/IntervalMonitorConfig.js +5 -0
- package/dist/api/types/MonitorConfig.d.ts +14 -0
- package/dist/api/types/MonitorConfig.js +5 -0
- package/dist/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +12 -0
- package/dist/api/types/MonitorConfigIncludeVisualAnalysis.js +11 -0
- package/dist/api/types/MonitorConfigMonitorType.d.ts +11 -0
- package/dist/api/types/MonitorConfigMonitorType.js +10 -0
- package/dist/api/types/RequestStatusResponse.d.ts +8 -0
- package/dist/api/types/RequestStatusResponse.js +5 -0
- package/dist/api/types/ScrollByConfig.d.ts +9 -0
- package/dist/api/types/ScrollByConfig.js +5 -0
- package/dist/api/types/ScrollToEdgeConfig.d.ts +9 -0
- package/dist/api/types/ScrollToEdgeConfig.js +5 -0
- package/dist/api/types/SessionConfigV1.d.ts +4 -0
- package/dist/api/types/index.d.ts +12 -0
- package/dist/api/types/index.js +12 -0
- package/dist/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +5 -5
- package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +2 -2
- package/dist/serialization/resources/sessions/types/index.d.ts +1 -1
- package/dist/serialization/resources/sessions/types/index.js +1 -1
- package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
- package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.js +41 -0
- package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +18 -0
- package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +39 -0
- package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +18 -0
- package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +39 -0
- package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
- package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.js +40 -0
- package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +20 -0
- package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +41 -0
- package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
- package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +41 -0
- package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
- package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +40 -0
- package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
- package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +41 -0
- package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
- package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +39 -0
- package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
- package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +40 -0
- package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
- package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.js +45 -0
- package/dist/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.d.ts +1 -1
- package/dist/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +1 -1
- package/dist/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.d.ts +18 -0
- package/dist/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +39 -0
- package/dist/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.d.ts +1 -1
- package/dist/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +1 -1
- package/dist/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.d.ts +21 -0
- package/dist/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +42 -0
- package/dist/serialization/resources/windows/client/requests/index.d.ts +13 -0
- package/dist/serialization/resources/windows/client/requests/index.js +27 -1
- package/dist/serialization/types/AsyncConfig.d.ts +12 -0
- package/dist/serialization/types/AsyncConfig.js +33 -0
- package/dist/serialization/types/AsyncSessionAiResponseEnvelope.d.ts +15 -0
- package/dist/serialization/types/AsyncSessionAiResponseEnvelope.js +36 -0
- package/dist/serialization/types/BrowserWaitSelectorConfig.d.ts +14 -0
- package/dist/serialization/types/BrowserWaitSelectorConfig.js +35 -0
- package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.d.ts +10 -0
- package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.js +31 -0
- package/dist/serialization/types/ExtensionConfigurationOutput.d.ts +15 -0
- package/dist/serialization/types/ExtensionConfigurationOutput.js +36 -0
- package/dist/serialization/types/IntervalMonitorConfig.d.ts +13 -0
- package/dist/serialization/types/IntervalMonitorConfig.js +34 -0
- package/dist/serialization/types/MonitorConfig.d.ts +19 -0
- package/dist/serialization/types/MonitorConfig.js +40 -0
- package/dist/serialization/types/MonitorConfigIncludeVisualAnalysis.d.ts +10 -0
- package/dist/serialization/types/MonitorConfigIncludeVisualAnalysis.js +31 -0
- package/dist/serialization/types/MonitorConfigMonitorType.d.ts +10 -0
- package/dist/serialization/types/MonitorConfigMonitorType.js +31 -0
- package/dist/serialization/types/RequestStatusResponse.d.ts +13 -0
- package/dist/serialization/types/RequestStatusResponse.js +34 -0
- package/dist/serialization/types/ScrollByConfig.d.ts +13 -0
- package/dist/serialization/types/ScrollByConfig.js +34 -0
- package/dist/serialization/types/ScrollToEdgeConfig.d.ts +13 -0
- package/dist/serialization/types/ScrollToEdgeConfig.js +34 -0
- package/dist/serialization/types/SessionConfigV1.d.ts +2 -0
- package/dist/serialization/types/SessionConfigV1.js +2 -0
- package/dist/serialization/types/index.d.ts +12 -0
- package/dist/serialization/types/index.js +12 -0
- package/dist/wrapper/AirtopClient.d.ts +1 -0
- package/dist/wrapper/AirtopClient.js +3 -0
- package/dist/wrapper/AirtopWindows.d.ts +25 -3
- package/dist/wrapper/AirtopWindows.js +38 -2
- package/package.json +1 -1
- package/reference.md +1235 -83
- package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +5 -5
- package/serialization/resources/sessions/types/SessionsEventsResponse.js +2 -2
- package/serialization/resources/sessions/types/index.d.ts +1 -1
- package/serialization/resources/sessions/types/index.js +1 -1
- package/serialization/resources/windows/client/requests/AsyncClickRequest.d.ts +20 -0
- package/serialization/resources/windows/client/requests/AsyncClickRequest.js +41 -0
- package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.d.ts +18 -0
- package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +39 -0
- package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.d.ts +18 -0
- package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +39 -0
- package/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +19 -0
- package/serialization/resources/windows/client/requests/AsyncHoverRequest.js +40 -0
- package/serialization/resources/windows/client/requests/AsyncMonitorRequest.d.ts +20 -0
- package/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +41 -0
- package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.d.ts +20 -0
- package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +41 -0
- package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.d.ts +19 -0
- package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +40 -0
- package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.d.ts +20 -0
- package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +41 -0
- package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.d.ts +18 -0
- package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +39 -0
- package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.d.ts +19 -0
- package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +40 -0
- package/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +24 -0
- package/serialization/resources/windows/client/requests/AsyncTypeRequest.js +45 -0
- package/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.d.ts +1 -1
- package/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +1 -1
- package/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.d.ts +18 -0
- package/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +39 -0
- package/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.d.ts +1 -1
- package/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +1 -1
- package/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.d.ts +21 -0
- package/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +42 -0
- package/serialization/resources/windows/client/requests/index.d.ts +13 -0
- package/serialization/resources/windows/client/requests/index.js +27 -1
- package/serialization/types/AsyncConfig.d.ts +12 -0
- package/serialization/types/AsyncConfig.js +33 -0
- package/serialization/types/AsyncSessionAiResponseEnvelope.d.ts +15 -0
- package/serialization/types/AsyncSessionAiResponseEnvelope.js +36 -0
- package/serialization/types/BrowserWaitSelectorConfig.d.ts +14 -0
- package/serialization/types/BrowserWaitSelectorConfig.js +35 -0
- package/serialization/types/CreateAutomationRequestBodyConfiguration.d.ts +10 -0
- package/serialization/types/CreateAutomationRequestBodyConfiguration.js +31 -0
- package/serialization/types/ExtensionConfigurationOutput.d.ts +15 -0
- package/serialization/types/ExtensionConfigurationOutput.js +36 -0
- package/serialization/types/IntervalMonitorConfig.d.ts +13 -0
- package/serialization/types/IntervalMonitorConfig.js +34 -0
- package/serialization/types/MonitorConfig.d.ts +19 -0
- package/serialization/types/MonitorConfig.js +40 -0
- package/serialization/types/MonitorConfigIncludeVisualAnalysis.d.ts +10 -0
- package/serialization/types/MonitorConfigIncludeVisualAnalysis.js +31 -0
- package/serialization/types/MonitorConfigMonitorType.d.ts +10 -0
- package/serialization/types/MonitorConfigMonitorType.js +31 -0
- package/serialization/types/RequestStatusResponse.d.ts +13 -0
- package/serialization/types/RequestStatusResponse.js +34 -0
- package/serialization/types/ScrollByConfig.d.ts +13 -0
- package/serialization/types/ScrollByConfig.js +34 -0
- package/serialization/types/ScrollToEdgeConfig.d.ts +13 -0
- package/serialization/types/ScrollToEdgeConfig.js +34 -0
- package/serialization/types/SessionConfigV1.d.ts +2 -0
- package/serialization/types/SessionConfigV1.js +2 -0
- package/serialization/types/index.d.ts +12 -0
- package/serialization/types/index.js +12 -0
- package/wrapper/AirtopClient.d.ts +1 -0
- package/wrapper/AirtopClient.js +3 -0
- package/wrapper/AirtopWindows.d.ts +25 -3
- package/wrapper/AirtopWindows.js +38 -2
package/reference.md
CHANGED
@@ -2,6 +2,832 @@
|
|
2
2
|
|
3
3
|
## Windows
|
4
4
|
|
5
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncClick</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
6
|
+
<dl>
|
7
|
+
<dd>
|
8
|
+
|
9
|
+
#### 📝 Description
|
10
|
+
|
11
|
+
<dl>
|
12
|
+
<dd>
|
13
|
+
|
14
|
+
<dl>
|
15
|
+
<dd>
|
16
|
+
|
17
|
+
Execute a click interaction in a specific browser window asynchronously
|
18
|
+
|
19
|
+
</dd>
|
20
|
+
</dl>
|
21
|
+
</dd>
|
22
|
+
</dl>
|
23
|
+
|
24
|
+
#### 🔌 Usage
|
25
|
+
|
26
|
+
<dl>
|
27
|
+
<dd>
|
28
|
+
|
29
|
+
<dl>
|
30
|
+
<dd>
|
31
|
+
|
32
|
+
```typescript
|
33
|
+
await client.windows.asyncClick("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
34
|
+
elementDescription: "The login button",
|
35
|
+
});
|
36
|
+
```
|
37
|
+
|
38
|
+
</dd>
|
39
|
+
</dl>
|
40
|
+
</dd>
|
41
|
+
</dl>
|
42
|
+
|
43
|
+
#### ⚙️ Parameters
|
44
|
+
|
45
|
+
<dl>
|
46
|
+
<dd>
|
47
|
+
|
48
|
+
<dl>
|
49
|
+
<dd>
|
50
|
+
|
51
|
+
**sessionId:** `string` — The session id for the window.
|
52
|
+
|
53
|
+
</dd>
|
54
|
+
</dl>
|
55
|
+
|
56
|
+
<dl>
|
57
|
+
<dd>
|
58
|
+
|
59
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
60
|
+
|
61
|
+
</dd>
|
62
|
+
</dl>
|
63
|
+
|
64
|
+
<dl>
|
65
|
+
<dd>
|
66
|
+
|
67
|
+
**request:** `Airtop.AsyncClickRequest`
|
68
|
+
|
69
|
+
</dd>
|
70
|
+
</dl>
|
71
|
+
|
72
|
+
<dl>
|
73
|
+
<dd>
|
74
|
+
|
75
|
+
**requestOptions:** `Windows.RequestOptions`
|
76
|
+
|
77
|
+
</dd>
|
78
|
+
</dl>
|
79
|
+
</dd>
|
80
|
+
</dl>
|
81
|
+
|
82
|
+
</dd>
|
83
|
+
</dl>
|
84
|
+
</details>
|
85
|
+
|
86
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncCreateAutomation</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
87
|
+
<dl>
|
88
|
+
<dd>
|
89
|
+
|
90
|
+
#### 📝 Description
|
91
|
+
|
92
|
+
<dl>
|
93
|
+
<dd>
|
94
|
+
|
95
|
+
<dl>
|
96
|
+
<dd>
|
97
|
+
|
98
|
+
Create an automation of a browser window asynchronously
|
99
|
+
|
100
|
+
</dd>
|
101
|
+
</dl>
|
102
|
+
</dd>
|
103
|
+
</dl>
|
104
|
+
|
105
|
+
#### 🔌 Usage
|
106
|
+
|
107
|
+
<dl>
|
108
|
+
<dd>
|
109
|
+
|
110
|
+
<dl>
|
111
|
+
<dd>
|
112
|
+
|
113
|
+
```typescript
|
114
|
+
await client.windows.asyncCreateAutomation(
|
115
|
+
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
116
|
+
"0334da2a-91b0-42c5-6156-76a5eba87430"
|
117
|
+
);
|
118
|
+
```
|
119
|
+
|
120
|
+
</dd>
|
121
|
+
</dl>
|
122
|
+
</dd>
|
123
|
+
</dl>
|
124
|
+
|
125
|
+
#### ⚙️ Parameters
|
126
|
+
|
127
|
+
<dl>
|
128
|
+
<dd>
|
129
|
+
|
130
|
+
<dl>
|
131
|
+
<dd>
|
132
|
+
|
133
|
+
**sessionId:** `string` — The session id for the window.
|
134
|
+
|
135
|
+
</dd>
|
136
|
+
</dl>
|
137
|
+
|
138
|
+
<dl>
|
139
|
+
<dd>
|
140
|
+
|
141
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
142
|
+
|
143
|
+
</dd>
|
144
|
+
</dl>
|
145
|
+
|
146
|
+
<dl>
|
147
|
+
<dd>
|
148
|
+
|
149
|
+
**request:** `Airtop.AsyncCreateAutomationRequest`
|
150
|
+
|
151
|
+
</dd>
|
152
|
+
</dl>
|
153
|
+
|
154
|
+
<dl>
|
155
|
+
<dd>
|
156
|
+
|
157
|
+
**requestOptions:** `Windows.RequestOptions`
|
158
|
+
|
159
|
+
</dd>
|
160
|
+
</dl>
|
161
|
+
</dd>
|
162
|
+
</dl>
|
163
|
+
|
164
|
+
</dd>
|
165
|
+
</dl>
|
166
|
+
</details>
|
167
|
+
|
168
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncExecuteAutomation</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
169
|
+
<dl>
|
170
|
+
<dd>
|
171
|
+
|
172
|
+
#### 📝 Description
|
173
|
+
|
174
|
+
<dl>
|
175
|
+
<dd>
|
176
|
+
|
177
|
+
<dl>
|
178
|
+
<dd>
|
179
|
+
|
180
|
+
Execute an automation of a browser window asynchronously
|
181
|
+
|
182
|
+
</dd>
|
183
|
+
</dl>
|
184
|
+
</dd>
|
185
|
+
</dl>
|
186
|
+
|
187
|
+
#### 🔌 Usage
|
188
|
+
|
189
|
+
<dl>
|
190
|
+
<dd>
|
191
|
+
|
192
|
+
<dl>
|
193
|
+
<dd>
|
194
|
+
|
195
|
+
```typescript
|
196
|
+
await client.windows.asyncExecuteAutomation(
|
197
|
+
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
198
|
+
"0334da2a-91b0-42c5-6156-76a5eba87430",
|
199
|
+
{
|
200
|
+
automationId: "automationId",
|
201
|
+
}
|
202
|
+
);
|
203
|
+
```
|
204
|
+
|
205
|
+
</dd>
|
206
|
+
</dl>
|
207
|
+
</dd>
|
208
|
+
</dl>
|
209
|
+
|
210
|
+
#### ⚙️ Parameters
|
211
|
+
|
212
|
+
<dl>
|
213
|
+
<dd>
|
214
|
+
|
215
|
+
<dl>
|
216
|
+
<dd>
|
217
|
+
|
218
|
+
**sessionId:** `string` — The session id for the window.
|
219
|
+
|
220
|
+
</dd>
|
221
|
+
</dl>
|
222
|
+
|
223
|
+
<dl>
|
224
|
+
<dd>
|
225
|
+
|
226
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
227
|
+
|
228
|
+
</dd>
|
229
|
+
</dl>
|
230
|
+
|
231
|
+
<dl>
|
232
|
+
<dd>
|
233
|
+
|
234
|
+
**request:** `Airtop.AsyncExecuteAutomationRequest`
|
235
|
+
|
236
|
+
</dd>
|
237
|
+
</dl>
|
238
|
+
|
239
|
+
<dl>
|
240
|
+
<dd>
|
241
|
+
|
242
|
+
**requestOptions:** `Windows.RequestOptions`
|
243
|
+
|
244
|
+
</dd>
|
245
|
+
</dl>
|
246
|
+
</dd>
|
247
|
+
</dl>
|
248
|
+
|
249
|
+
</dd>
|
250
|
+
</dl>
|
251
|
+
</details>
|
252
|
+
|
253
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncHover</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
254
|
+
<dl>
|
255
|
+
<dd>
|
256
|
+
|
257
|
+
#### 🔌 Usage
|
258
|
+
|
259
|
+
<dl>
|
260
|
+
<dd>
|
261
|
+
|
262
|
+
<dl>
|
263
|
+
<dd>
|
264
|
+
|
265
|
+
```typescript
|
266
|
+
await client.windows.asyncHover("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
267
|
+
elementDescription: "The search box input in the top right corner",
|
268
|
+
});
|
269
|
+
```
|
270
|
+
|
271
|
+
</dd>
|
272
|
+
</dl>
|
273
|
+
</dd>
|
274
|
+
</dl>
|
275
|
+
|
276
|
+
#### ⚙️ Parameters
|
277
|
+
|
278
|
+
<dl>
|
279
|
+
<dd>
|
280
|
+
|
281
|
+
<dl>
|
282
|
+
<dd>
|
283
|
+
|
284
|
+
**sessionId:** `string` — The session id for the window.
|
285
|
+
|
286
|
+
</dd>
|
287
|
+
</dl>
|
288
|
+
|
289
|
+
<dl>
|
290
|
+
<dd>
|
291
|
+
|
292
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
293
|
+
|
294
|
+
</dd>
|
295
|
+
</dl>
|
296
|
+
|
297
|
+
<dl>
|
298
|
+
<dd>
|
299
|
+
|
300
|
+
**request:** `Airtop.AsyncHoverRequest`
|
301
|
+
|
302
|
+
</dd>
|
303
|
+
</dl>
|
304
|
+
|
305
|
+
<dl>
|
306
|
+
<dd>
|
307
|
+
|
308
|
+
**requestOptions:** `Windows.RequestOptions`
|
309
|
+
|
310
|
+
</dd>
|
311
|
+
</dl>
|
312
|
+
</dd>
|
313
|
+
</dl>
|
314
|
+
|
315
|
+
</dd>
|
316
|
+
</dl>
|
317
|
+
</details>
|
318
|
+
|
319
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncMonitor</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
320
|
+
<dl>
|
321
|
+
<dd>
|
322
|
+
|
323
|
+
#### 🔌 Usage
|
324
|
+
|
325
|
+
<dl>
|
326
|
+
<dd>
|
327
|
+
|
328
|
+
<dl>
|
329
|
+
<dd>
|
330
|
+
|
331
|
+
```typescript
|
332
|
+
await client.windows.asyncMonitor("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
333
|
+
```
|
334
|
+
|
335
|
+
</dd>
|
336
|
+
</dl>
|
337
|
+
</dd>
|
338
|
+
</dl>
|
339
|
+
|
340
|
+
#### ⚙️ Parameters
|
341
|
+
|
342
|
+
<dl>
|
343
|
+
<dd>
|
344
|
+
|
345
|
+
<dl>
|
346
|
+
<dd>
|
347
|
+
|
348
|
+
**sessionId:** `string` — The session id for the window.
|
349
|
+
|
350
|
+
</dd>
|
351
|
+
</dl>
|
352
|
+
|
353
|
+
<dl>
|
354
|
+
<dd>
|
355
|
+
|
356
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
357
|
+
|
358
|
+
</dd>
|
359
|
+
</dl>
|
360
|
+
|
361
|
+
<dl>
|
362
|
+
<dd>
|
363
|
+
|
364
|
+
**request:** `Airtop.AsyncMonitorRequest`
|
365
|
+
|
366
|
+
</dd>
|
367
|
+
</dl>
|
368
|
+
|
369
|
+
<dl>
|
370
|
+
<dd>
|
371
|
+
|
372
|
+
**requestOptions:** `Windows.RequestOptions`
|
373
|
+
|
374
|
+
</dd>
|
375
|
+
</dl>
|
376
|
+
</dd>
|
377
|
+
</dl>
|
378
|
+
|
379
|
+
</dd>
|
380
|
+
</dl>
|
381
|
+
</details>
|
382
|
+
|
383
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncPageQuery</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
384
|
+
<dl>
|
385
|
+
<dd>
|
386
|
+
|
387
|
+
#### 🔌 Usage
|
388
|
+
|
389
|
+
<dl>
|
390
|
+
<dd>
|
391
|
+
|
392
|
+
<dl>
|
393
|
+
<dd>
|
394
|
+
|
395
|
+
```typescript
|
396
|
+
await client.windows.asyncPageQuery("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
397
|
+
prompt: "What is the main idea of this page?",
|
398
|
+
});
|
399
|
+
```
|
400
|
+
|
401
|
+
</dd>
|
402
|
+
</dl>
|
403
|
+
</dd>
|
404
|
+
</dl>
|
405
|
+
|
406
|
+
#### ⚙️ Parameters
|
407
|
+
|
408
|
+
<dl>
|
409
|
+
<dd>
|
410
|
+
|
411
|
+
<dl>
|
412
|
+
<dd>
|
413
|
+
|
414
|
+
**sessionId:** `string` — The session id for the window.
|
415
|
+
|
416
|
+
</dd>
|
417
|
+
</dl>
|
418
|
+
|
419
|
+
<dl>
|
420
|
+
<dd>
|
421
|
+
|
422
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
423
|
+
|
424
|
+
</dd>
|
425
|
+
</dl>
|
426
|
+
|
427
|
+
<dl>
|
428
|
+
<dd>
|
429
|
+
|
430
|
+
**request:** `Airtop.AsyncPageQueryRequest`
|
431
|
+
|
432
|
+
</dd>
|
433
|
+
</dl>
|
434
|
+
|
435
|
+
<dl>
|
436
|
+
<dd>
|
437
|
+
|
438
|
+
**requestOptions:** `Windows.RequestOptions`
|
439
|
+
|
440
|
+
</dd>
|
441
|
+
</dl>
|
442
|
+
</dd>
|
443
|
+
</dl>
|
444
|
+
|
445
|
+
</dd>
|
446
|
+
</dl>
|
447
|
+
</details>
|
448
|
+
|
449
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncPaginatedExtraction</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
450
|
+
<dl>
|
451
|
+
<dd>
|
452
|
+
|
453
|
+
#### 🔌 Usage
|
454
|
+
|
455
|
+
<dl>
|
456
|
+
<dd>
|
457
|
+
|
458
|
+
<dl>
|
459
|
+
<dd>
|
460
|
+
|
461
|
+
```typescript
|
462
|
+
await client.windows.asyncPaginatedExtraction(
|
463
|
+
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
464
|
+
"0334da2a-91b0-42c5-6156-76a5eba87430",
|
465
|
+
{
|
466
|
+
prompt: "This site contains a list of results about <provide details about the list>. Navigate through 3 pages of results and return the title and <provide details about the data you want to extract> about each result in this list.",
|
467
|
+
}
|
468
|
+
);
|
469
|
+
```
|
470
|
+
|
471
|
+
</dd>
|
472
|
+
</dl>
|
473
|
+
</dd>
|
474
|
+
</dl>
|
475
|
+
|
476
|
+
#### ⚙️ Parameters
|
477
|
+
|
478
|
+
<dl>
|
479
|
+
<dd>
|
480
|
+
|
481
|
+
<dl>
|
482
|
+
<dd>
|
483
|
+
|
484
|
+
**sessionId:** `string` — The session id for the window.
|
485
|
+
|
486
|
+
</dd>
|
487
|
+
</dl>
|
488
|
+
|
489
|
+
<dl>
|
490
|
+
<dd>
|
491
|
+
|
492
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
493
|
+
|
494
|
+
</dd>
|
495
|
+
</dl>
|
496
|
+
|
497
|
+
<dl>
|
498
|
+
<dd>
|
499
|
+
|
500
|
+
**request:** `Airtop.AsyncPaginatedExtractionRequest`
|
501
|
+
|
502
|
+
</dd>
|
503
|
+
</dl>
|
504
|
+
|
505
|
+
<dl>
|
506
|
+
<dd>
|
507
|
+
|
508
|
+
**requestOptions:** `Windows.RequestOptions`
|
509
|
+
|
510
|
+
</dd>
|
511
|
+
</dl>
|
512
|
+
</dd>
|
513
|
+
</dl>
|
514
|
+
|
515
|
+
</dd>
|
516
|
+
</dl>
|
517
|
+
</details>
|
518
|
+
|
519
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncPromptContent</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
520
|
+
<dl>
|
521
|
+
<dd>
|
522
|
+
|
523
|
+
#### 📝 Description
|
524
|
+
|
525
|
+
<dl>
|
526
|
+
<dd>
|
527
|
+
|
528
|
+
<dl>
|
529
|
+
<dd>
|
530
|
+
|
531
|
+
This endpoint is deprecated. Please use the `pageQuery` endpoint instead.
|
532
|
+
|
533
|
+
</dd>
|
534
|
+
</dl>
|
535
|
+
</dd>
|
536
|
+
</dl>
|
537
|
+
|
538
|
+
#### 🔌 Usage
|
539
|
+
|
540
|
+
<dl>
|
541
|
+
<dd>
|
542
|
+
|
543
|
+
<dl>
|
544
|
+
<dd>
|
545
|
+
|
546
|
+
```typescript
|
547
|
+
await client.windows.asyncPromptContent(
|
548
|
+
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
549
|
+
"0334da2a-91b0-42c5-6156-76a5eba87430",
|
550
|
+
{
|
551
|
+
prompt: "What is the main idea of this page?",
|
552
|
+
}
|
553
|
+
);
|
554
|
+
```
|
555
|
+
|
556
|
+
</dd>
|
557
|
+
</dl>
|
558
|
+
</dd>
|
559
|
+
</dl>
|
560
|
+
|
561
|
+
#### ⚙️ Parameters
|
562
|
+
|
563
|
+
<dl>
|
564
|
+
<dd>
|
565
|
+
|
566
|
+
<dl>
|
567
|
+
<dd>
|
568
|
+
|
569
|
+
**sessionId:** `string` — The session id for the window.
|
570
|
+
|
571
|
+
</dd>
|
572
|
+
</dl>
|
573
|
+
|
574
|
+
<dl>
|
575
|
+
<dd>
|
576
|
+
|
577
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
578
|
+
|
579
|
+
</dd>
|
580
|
+
</dl>
|
581
|
+
|
582
|
+
<dl>
|
583
|
+
<dd>
|
584
|
+
|
585
|
+
**request:** `Airtop.AsyncPromptContentRequest`
|
586
|
+
|
587
|
+
</dd>
|
588
|
+
</dl>
|
589
|
+
|
590
|
+
<dl>
|
591
|
+
<dd>
|
592
|
+
|
593
|
+
**requestOptions:** `Windows.RequestOptions`
|
594
|
+
|
595
|
+
</dd>
|
596
|
+
</dl>
|
597
|
+
</dd>
|
598
|
+
</dl>
|
599
|
+
|
600
|
+
</dd>
|
601
|
+
</dl>
|
602
|
+
</details>
|
603
|
+
|
604
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncScreenshot</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
605
|
+
<dl>
|
606
|
+
<dd>
|
607
|
+
|
608
|
+
#### 📝 Description
|
609
|
+
|
610
|
+
<dl>
|
611
|
+
<dd>
|
612
|
+
|
613
|
+
<dl>
|
614
|
+
<dd>
|
615
|
+
|
616
|
+
Take a screenshot of the current viewport of a browser window asynchronously
|
617
|
+
|
618
|
+
</dd>
|
619
|
+
</dl>
|
620
|
+
</dd>
|
621
|
+
</dl>
|
622
|
+
|
623
|
+
#### 🔌 Usage
|
624
|
+
|
625
|
+
<dl>
|
626
|
+
<dd>
|
627
|
+
|
628
|
+
<dl>
|
629
|
+
<dd>
|
630
|
+
|
631
|
+
```typescript
|
632
|
+
await client.windows.asyncScreenshot("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
633
|
+
```
|
634
|
+
|
635
|
+
</dd>
|
636
|
+
</dl>
|
637
|
+
</dd>
|
638
|
+
</dl>
|
639
|
+
|
640
|
+
#### ⚙️ Parameters
|
641
|
+
|
642
|
+
<dl>
|
643
|
+
<dd>
|
644
|
+
|
645
|
+
<dl>
|
646
|
+
<dd>
|
647
|
+
|
648
|
+
**sessionId:** `string` — The session id for the window.
|
649
|
+
|
650
|
+
</dd>
|
651
|
+
</dl>
|
652
|
+
|
653
|
+
<dl>
|
654
|
+
<dd>
|
655
|
+
|
656
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
657
|
+
|
658
|
+
</dd>
|
659
|
+
</dl>
|
660
|
+
|
661
|
+
<dl>
|
662
|
+
<dd>
|
663
|
+
|
664
|
+
**request:** `Airtop.AsyncScreenshotRequest`
|
665
|
+
|
666
|
+
</dd>
|
667
|
+
</dl>
|
668
|
+
|
669
|
+
<dl>
|
670
|
+
<dd>
|
671
|
+
|
672
|
+
**requestOptions:** `Windows.RequestOptions`
|
673
|
+
|
674
|
+
</dd>
|
675
|
+
</dl>
|
676
|
+
</dd>
|
677
|
+
</dl>
|
678
|
+
|
679
|
+
</dd>
|
680
|
+
</dl>
|
681
|
+
</details>
|
682
|
+
|
683
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncSummarizeContent</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
684
|
+
<dl>
|
685
|
+
<dd>
|
686
|
+
|
687
|
+
#### 📝 Description
|
688
|
+
|
689
|
+
<dl>
|
690
|
+
<dd>
|
691
|
+
|
692
|
+
<dl>
|
693
|
+
<dd>
|
694
|
+
|
695
|
+
This endpoint is deprecated. Please use the `pageQuery` endpoint and ask for a summary in the prompt instead.
|
696
|
+
|
697
|
+
</dd>
|
698
|
+
</dl>
|
699
|
+
</dd>
|
700
|
+
</dl>
|
701
|
+
|
702
|
+
#### 🔌 Usage
|
703
|
+
|
704
|
+
<dl>
|
705
|
+
<dd>
|
706
|
+
|
707
|
+
<dl>
|
708
|
+
<dd>
|
709
|
+
|
710
|
+
```typescript
|
711
|
+
await client.windows.asyncSummarizeContent(
|
712
|
+
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
713
|
+
"0334da2a-91b0-42c5-6156-76a5eba87430"
|
714
|
+
);
|
715
|
+
```
|
716
|
+
|
717
|
+
</dd>
|
718
|
+
</dl>
|
719
|
+
</dd>
|
720
|
+
</dl>
|
721
|
+
|
722
|
+
#### ⚙️ Parameters
|
723
|
+
|
724
|
+
<dl>
|
725
|
+
<dd>
|
726
|
+
|
727
|
+
<dl>
|
728
|
+
<dd>
|
729
|
+
|
730
|
+
**sessionId:** `string` — The session id for the window.
|
731
|
+
|
732
|
+
</dd>
|
733
|
+
</dl>
|
734
|
+
|
735
|
+
<dl>
|
736
|
+
<dd>
|
737
|
+
|
738
|
+
**windowId:** `string` — The Airtop window id of the browser window to summarize.
|
739
|
+
|
740
|
+
</dd>
|
741
|
+
</dl>
|
742
|
+
|
743
|
+
<dl>
|
744
|
+
<dd>
|
745
|
+
|
746
|
+
**request:** `Airtop.AsyncSummarizeContentRequest`
|
747
|
+
|
748
|
+
</dd>
|
749
|
+
</dl>
|
750
|
+
|
751
|
+
<dl>
|
752
|
+
<dd>
|
753
|
+
|
754
|
+
**requestOptions:** `Windows.RequestOptions`
|
755
|
+
|
756
|
+
</dd>
|
757
|
+
</dl>
|
758
|
+
</dd>
|
759
|
+
</dl>
|
760
|
+
|
761
|
+
</dd>
|
762
|
+
</dl>
|
763
|
+
</details>
|
764
|
+
|
765
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">asyncType</a>(sessionId, windowId, { ...params }) -> Airtop.AsyncSessionAiResponseEnvelope</code></summary>
|
766
|
+
<dl>
|
767
|
+
<dd>
|
768
|
+
|
769
|
+
#### 🔌 Usage
|
770
|
+
|
771
|
+
<dl>
|
772
|
+
<dd>
|
773
|
+
|
774
|
+
<dl>
|
775
|
+
<dd>
|
776
|
+
|
777
|
+
```typescript
|
778
|
+
await client.windows.asyncType("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
779
|
+
text: "Example text",
|
780
|
+
});
|
781
|
+
```
|
782
|
+
|
783
|
+
</dd>
|
784
|
+
</dl>
|
785
|
+
</dd>
|
786
|
+
</dl>
|
787
|
+
|
788
|
+
#### ⚙️ Parameters
|
789
|
+
|
790
|
+
<dl>
|
791
|
+
<dd>
|
792
|
+
|
793
|
+
<dl>
|
794
|
+
<dd>
|
795
|
+
|
796
|
+
**sessionId:** `string` — The session id for the window.
|
797
|
+
|
798
|
+
</dd>
|
799
|
+
</dl>
|
800
|
+
|
801
|
+
<dl>
|
802
|
+
<dd>
|
803
|
+
|
804
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
805
|
+
|
806
|
+
</dd>
|
807
|
+
</dl>
|
808
|
+
|
809
|
+
<dl>
|
810
|
+
<dd>
|
811
|
+
|
812
|
+
**request:** `Airtop.AsyncTypeRequest`
|
813
|
+
|
814
|
+
</dd>
|
815
|
+
</dl>
|
816
|
+
|
817
|
+
<dl>
|
818
|
+
<dd>
|
819
|
+
|
820
|
+
**requestOptions:** `Windows.RequestOptions`
|
821
|
+
|
822
|
+
</dd>
|
823
|
+
</dl>
|
824
|
+
</dd>
|
825
|
+
</dl>
|
826
|
+
|
827
|
+
</dd>
|
828
|
+
</dl>
|
829
|
+
</details>
|
830
|
+
|
5
831
|
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">create</a>(sessionId, { ...params }) -> Airtop.WindowIdResponse</code></summary>
|
6
832
|
<dl>
|
7
833
|
<dd>
|
@@ -14,7 +840,240 @@
|
|
14
840
|
<dl>
|
15
841
|
<dd>
|
16
842
|
|
17
|
-
Creates a new browser window in a session. Optionally, you can specify a url to load on the window upon creation.
|
843
|
+
Creates a new browser window in a session. Optionally, you can specify a url to load on the window upon creation.
|
844
|
+
|
845
|
+
</dd>
|
846
|
+
</dl>
|
847
|
+
</dd>
|
848
|
+
</dl>
|
849
|
+
|
850
|
+
#### 🔌 Usage
|
851
|
+
|
852
|
+
<dl>
|
853
|
+
<dd>
|
854
|
+
|
855
|
+
<dl>
|
856
|
+
<dd>
|
857
|
+
|
858
|
+
```typescript
|
859
|
+
await client.windows.create("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b");
|
860
|
+
```
|
861
|
+
|
862
|
+
</dd>
|
863
|
+
</dl>
|
864
|
+
</dd>
|
865
|
+
</dl>
|
866
|
+
|
867
|
+
#### ⚙️ Parameters
|
868
|
+
|
869
|
+
<dl>
|
870
|
+
<dd>
|
871
|
+
|
872
|
+
<dl>
|
873
|
+
<dd>
|
874
|
+
|
875
|
+
**sessionId:** `string` — ID of the session that owns the window.
|
876
|
+
|
877
|
+
</dd>
|
878
|
+
</dl>
|
879
|
+
|
880
|
+
<dl>
|
881
|
+
<dd>
|
882
|
+
|
883
|
+
**request:** `Airtop.CreateWindowInputV1Body`
|
884
|
+
|
885
|
+
</dd>
|
886
|
+
</dl>
|
887
|
+
|
888
|
+
<dl>
|
889
|
+
<dd>
|
890
|
+
|
891
|
+
**requestOptions:** `Windows.RequestOptions`
|
892
|
+
|
893
|
+
</dd>
|
894
|
+
</dl>
|
895
|
+
</dd>
|
896
|
+
</dl>
|
897
|
+
|
898
|
+
</dd>
|
899
|
+
</dl>
|
900
|
+
</details>
|
901
|
+
|
902
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">getWindowInfo</a>(sessionId, windowId, { ...params }) -> Airtop.WindowResponse</code></summary>
|
903
|
+
<dl>
|
904
|
+
<dd>
|
905
|
+
|
906
|
+
#### 📝 Description
|
907
|
+
|
908
|
+
<dl>
|
909
|
+
<dd>
|
910
|
+
|
911
|
+
<dl>
|
912
|
+
<dd>
|
913
|
+
|
914
|
+
Get information about a browser window in a session, including the live view url.
|
915
|
+
|
916
|
+
</dd>
|
917
|
+
</dl>
|
918
|
+
</dd>
|
919
|
+
</dl>
|
920
|
+
|
921
|
+
#### 🔌 Usage
|
922
|
+
|
923
|
+
<dl>
|
924
|
+
<dd>
|
925
|
+
|
926
|
+
<dl>
|
927
|
+
<dd>
|
928
|
+
|
929
|
+
```typescript
|
930
|
+
await client.windows.getWindowInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b0-42c5-6156-76a5eba87430", {
|
931
|
+
screenResolution: "1280x720",
|
932
|
+
});
|
933
|
+
```
|
934
|
+
|
935
|
+
</dd>
|
936
|
+
</dl>
|
937
|
+
</dd>
|
938
|
+
</dl>
|
939
|
+
|
940
|
+
#### ⚙️ Parameters
|
941
|
+
|
942
|
+
<dl>
|
943
|
+
<dd>
|
944
|
+
|
945
|
+
<dl>
|
946
|
+
<dd>
|
947
|
+
|
948
|
+
**sessionId:** `string` — ID of the session that owns the window.
|
949
|
+
|
950
|
+
</dd>
|
951
|
+
</dl>
|
952
|
+
|
953
|
+
<dl>
|
954
|
+
<dd>
|
955
|
+
|
956
|
+
**windowId:** `string` — ID of the browser window, which can either be a normal AirTop windowId or a [CDP TargetId](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetID) from a browser automation library like Puppeteer (typically associated with the page or main frame). Our SDKs will handle retrieving a TargetId for you from various popular browser automation libraries, but we also have details in our guides on how to do it manually.
|
957
|
+
|
958
|
+
</dd>
|
959
|
+
</dl>
|
960
|
+
|
961
|
+
<dl>
|
962
|
+
<dd>
|
963
|
+
|
964
|
+
**request:** `Airtop.GetWindowInfoRequest`
|
965
|
+
|
966
|
+
</dd>
|
967
|
+
</dl>
|
968
|
+
|
969
|
+
<dl>
|
970
|
+
<dd>
|
971
|
+
|
972
|
+
**requestOptions:** `Windows.RequestOptions`
|
973
|
+
|
974
|
+
</dd>
|
975
|
+
</dl>
|
976
|
+
</dd>
|
977
|
+
</dl>
|
978
|
+
|
979
|
+
</dd>
|
980
|
+
</dl>
|
981
|
+
</details>
|
982
|
+
|
983
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">loadUrl</a>(sessionId, windowId, { ...params }) -> Airtop.OperationOutcomeResponse</code></summary>
|
984
|
+
<dl>
|
985
|
+
<dd>
|
986
|
+
|
987
|
+
#### 📝 Description
|
988
|
+
|
989
|
+
<dl>
|
990
|
+
<dd>
|
991
|
+
|
992
|
+
<dl>
|
993
|
+
<dd>
|
994
|
+
|
995
|
+
Loads a specified url on a given window
|
996
|
+
|
997
|
+
</dd>
|
998
|
+
</dl>
|
999
|
+
</dd>
|
1000
|
+
</dl>
|
1001
|
+
|
1002
|
+
#### 🔌 Usage
|
1003
|
+
|
1004
|
+
<dl>
|
1005
|
+
<dd>
|
1006
|
+
|
1007
|
+
<dl>
|
1008
|
+
<dd>
|
1009
|
+
|
1010
|
+
```typescript
|
1011
|
+
await client.windows.loadUrl("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b0-42c5-6156-76a5eba87430", {
|
1012
|
+
url: "https://www.airtop.ai",
|
1013
|
+
});
|
1014
|
+
```
|
1015
|
+
|
1016
|
+
</dd>
|
1017
|
+
</dl>
|
1018
|
+
</dd>
|
1019
|
+
</dl>
|
1020
|
+
|
1021
|
+
#### ⚙️ Parameters
|
1022
|
+
|
1023
|
+
<dl>
|
1024
|
+
<dd>
|
1025
|
+
|
1026
|
+
<dl>
|
1027
|
+
<dd>
|
1028
|
+
|
1029
|
+
**sessionId:** `string` — ID of the session that owns the window.
|
1030
|
+
|
1031
|
+
</dd>
|
1032
|
+
</dl>
|
1033
|
+
|
1034
|
+
<dl>
|
1035
|
+
<dd>
|
1036
|
+
|
1037
|
+
**windowId:** `string` — Airtop window ID of the browser window.
|
1038
|
+
|
1039
|
+
</dd>
|
1040
|
+
</dl>
|
1041
|
+
|
1042
|
+
<dl>
|
1043
|
+
<dd>
|
1044
|
+
|
1045
|
+
**request:** `Airtop.WindowLoadUrlV1Body`
|
1046
|
+
|
1047
|
+
</dd>
|
1048
|
+
</dl>
|
1049
|
+
|
1050
|
+
<dl>
|
1051
|
+
<dd>
|
1052
|
+
|
1053
|
+
**requestOptions:** `Windows.RequestOptions`
|
1054
|
+
|
1055
|
+
</dd>
|
1056
|
+
</dl>
|
1057
|
+
</dd>
|
1058
|
+
</dl>
|
1059
|
+
|
1060
|
+
</dd>
|
1061
|
+
</dl>
|
1062
|
+
</details>
|
1063
|
+
|
1064
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">close</a>(sessionId, windowId) -> Airtop.WindowIdResponse</code></summary>
|
1065
|
+
<dl>
|
1066
|
+
<dd>
|
1067
|
+
|
1068
|
+
#### 📝 Description
|
1069
|
+
|
1070
|
+
<dl>
|
1071
|
+
<dd>
|
1072
|
+
|
1073
|
+
<dl>
|
1074
|
+
<dd>
|
1075
|
+
|
1076
|
+
Closes a browser window in a session
|
18
1077
|
|
19
1078
|
</dd>
|
20
1079
|
</dl>
|
@@ -30,7 +1089,7 @@ Creates a new browser window in a session. Optionally, you can specify a url to
|
|
30
1089
|
<dd>
|
31
1090
|
|
32
1091
|
```typescript
|
33
|
-
await client.windows.
|
1092
|
+
await client.windows.close("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b0-42c5-6156-76a5eba87430");
|
34
1093
|
```
|
35
1094
|
|
36
1095
|
</dd>
|
@@ -54,7 +1113,7 @@ await client.windows.create("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b");
|
|
54
1113
|
<dl>
|
55
1114
|
<dd>
|
56
1115
|
|
57
|
-
**
|
1116
|
+
**windowId:** `string` — Airtop window ID of the browser window.
|
58
1117
|
|
59
1118
|
</dd>
|
60
1119
|
</dl>
|
@@ -73,7 +1132,7 @@ await client.windows.create("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b");
|
|
73
1132
|
</dl>
|
74
1133
|
</details>
|
75
1134
|
|
76
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1135
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">click</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
77
1136
|
<dl>
|
78
1137
|
<dd>
|
79
1138
|
|
@@ -85,7 +1144,7 @@ await client.windows.create("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b");
|
|
85
1144
|
<dl>
|
86
1145
|
<dd>
|
87
1146
|
|
88
|
-
|
1147
|
+
Execute a click interaction in a specific browser window
|
89
1148
|
|
90
1149
|
</dd>
|
91
1150
|
</dl>
|
@@ -101,8 +1160,8 @@ Get information about a browser window in a session, including the live view url
|
|
101
1160
|
<dd>
|
102
1161
|
|
103
1162
|
```typescript
|
104
|
-
await client.windows.
|
105
|
-
|
1163
|
+
await client.windows.click("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
1164
|
+
elementDescription: "The login button",
|
106
1165
|
});
|
107
1166
|
```
|
108
1167
|
|
@@ -119,7 +1178,7 @@ await client.windows.getWindowInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334
|
|
119
1178
|
<dl>
|
120
1179
|
<dd>
|
121
1180
|
|
122
|
-
**sessionId:** `string` —
|
1181
|
+
**sessionId:** `string` — The session id for the window.
|
123
1182
|
|
124
1183
|
</dd>
|
125
1184
|
</dl>
|
@@ -127,7 +1186,7 @@ await client.windows.getWindowInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334
|
|
127
1186
|
<dl>
|
128
1187
|
<dd>
|
129
1188
|
|
130
|
-
**windowId:** `string` —
|
1189
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
131
1190
|
|
132
1191
|
</dd>
|
133
1192
|
</dl>
|
@@ -135,7 +1194,7 @@ await client.windows.getWindowInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334
|
|
135
1194
|
<dl>
|
136
1195
|
<dd>
|
137
1196
|
|
138
|
-
**request:** `Airtop.
|
1197
|
+
**request:** `Airtop.SessionClickHandlerRequestBody`
|
139
1198
|
|
140
1199
|
</dd>
|
141
1200
|
</dl>
|
@@ -154,7 +1213,7 @@ await client.windows.getWindowInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334
|
|
154
1213
|
</dl>
|
155
1214
|
</details>
|
156
1215
|
|
157
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1216
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">hover</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
158
1217
|
<dl>
|
159
1218
|
<dd>
|
160
1219
|
|
@@ -166,7 +1225,7 @@ await client.windows.getWindowInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334
|
|
166
1225
|
<dl>
|
167
1226
|
<dd>
|
168
1227
|
|
169
|
-
|
1228
|
+
Execute a hover interaction in a specific browser window
|
170
1229
|
|
171
1230
|
</dd>
|
172
1231
|
</dl>
|
@@ -182,8 +1241,8 @@ Loads a specified url on a given window
|
|
182
1241
|
<dd>
|
183
1242
|
|
184
1243
|
```typescript
|
185
|
-
await client.windows.
|
186
|
-
|
1244
|
+
await client.windows.hover("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
1245
|
+
elementDescription: "The search box input in the top right corner",
|
187
1246
|
});
|
188
1247
|
```
|
189
1248
|
|
@@ -200,7 +1259,7 @@ await client.windows.loadUrl("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-9
|
|
200
1259
|
<dl>
|
201
1260
|
<dd>
|
202
1261
|
|
203
|
-
**sessionId:** `string` —
|
1262
|
+
**sessionId:** `string` — The session id for the window.
|
204
1263
|
|
205
1264
|
</dd>
|
206
1265
|
</dl>
|
@@ -208,7 +1267,7 @@ await client.windows.loadUrl("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-9
|
|
208
1267
|
<dl>
|
209
1268
|
<dd>
|
210
1269
|
|
211
|
-
**windowId:** `string` — Airtop window
|
1270
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
212
1271
|
|
213
1272
|
</dd>
|
214
1273
|
</dl>
|
@@ -216,7 +1275,7 @@ await client.windows.loadUrl("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-9
|
|
216
1275
|
<dl>
|
217
1276
|
<dd>
|
218
1277
|
|
219
|
-
**request:** `Airtop.
|
1278
|
+
**request:** `Airtop.SessionHoverHandlerRequestBody`
|
220
1279
|
|
221
1280
|
</dd>
|
222
1281
|
</dl>
|
@@ -235,11 +1294,11 @@ await client.windows.loadUrl("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-9
|
|
235
1294
|
</dl>
|
236
1295
|
</details>
|
237
1296
|
|
238
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1297
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">monitor</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
239
1298
|
<dl>
|
240
1299
|
<dd>
|
241
1300
|
|
242
|
-
####
|
1301
|
+
#### 🔌 Usage
|
243
1302
|
|
244
1303
|
<dl>
|
245
1304
|
<dd>
|
@@ -247,14 +1306,16 @@ await client.windows.loadUrl("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-9
|
|
247
1306
|
<dl>
|
248
1307
|
<dd>
|
249
1308
|
|
250
|
-
|
1309
|
+
```typescript
|
1310
|
+
await client.windows.monitor("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
1311
|
+
```
|
251
1312
|
|
252
1313
|
</dd>
|
253
1314
|
</dl>
|
254
1315
|
</dd>
|
255
1316
|
</dl>
|
256
1317
|
|
257
|
-
####
|
1318
|
+
#### ⚙️ Parameters
|
258
1319
|
|
259
1320
|
<dl>
|
260
1321
|
<dd>
|
@@ -262,24 +1323,15 @@ Closes a browser window in a session
|
|
262
1323
|
<dl>
|
263
1324
|
<dd>
|
264
1325
|
|
265
|
-
|
266
|
-
await client.windows.close("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b0-42c5-6156-76a5eba87430");
|
267
|
-
```
|
1326
|
+
**sessionId:** `string` — The session id for the window.
|
268
1327
|
|
269
1328
|
</dd>
|
270
1329
|
</dl>
|
271
|
-
</dd>
|
272
|
-
</dl>
|
273
|
-
|
274
|
-
#### ⚙️ Parameters
|
275
|
-
|
276
|
-
<dl>
|
277
|
-
<dd>
|
278
1330
|
|
279
1331
|
<dl>
|
280
1332
|
<dd>
|
281
1333
|
|
282
|
-
**
|
1334
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
283
1335
|
|
284
1336
|
</dd>
|
285
1337
|
</dl>
|
@@ -287,7 +1339,7 @@ await client.windows.close("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b
|
|
287
1339
|
<dl>
|
288
1340
|
<dd>
|
289
1341
|
|
290
|
-
**
|
1342
|
+
**request:** `Airtop.SessionMonitorHandlerRequestBody`
|
291
1343
|
|
292
1344
|
</dd>
|
293
1345
|
</dl>
|
@@ -306,7 +1358,7 @@ await client.windows.close("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b
|
|
306
1358
|
</dl>
|
307
1359
|
</details>
|
308
1360
|
|
309
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1361
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">pageQuery</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
310
1362
|
<dl>
|
311
1363
|
<dd>
|
312
1364
|
|
@@ -318,7 +1370,7 @@ await client.windows.close("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "7334da2a-91b
|
|
318
1370
|
<dl>
|
319
1371
|
<dd>
|
320
1372
|
|
321
|
-
|
1373
|
+
Submit a prompt that queries the content of a specific browser window. You may extract content from the page, or ask a question about the page and allow the AI to answer it (ex. Is the user logged in?).
|
322
1374
|
|
323
1375
|
</dd>
|
324
1376
|
</dl>
|
@@ -334,8 +1386,8 @@ Execute a click interaction in a specific browser window
|
|
334
1386
|
<dd>
|
335
1387
|
|
336
1388
|
```typescript
|
337
|
-
await client.windows.
|
338
|
-
|
1389
|
+
await client.windows.pageQuery("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
1390
|
+
prompt: "What is the main idea of this page?",
|
339
1391
|
});
|
340
1392
|
```
|
341
1393
|
|
@@ -368,7 +1420,7 @@ await client.windows.click("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b
|
|
368
1420
|
<dl>
|
369
1421
|
<dd>
|
370
1422
|
|
371
|
-
**request:** `Airtop.
|
1423
|
+
**request:** `Airtop.SessionPageQueryHandlerRequestBody`
|
372
1424
|
|
373
1425
|
</dd>
|
374
1426
|
</dl>
|
@@ -387,7 +1439,7 @@ await client.windows.click("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b
|
|
387
1439
|
</dl>
|
388
1440
|
</details>
|
389
1441
|
|
390
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1442
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">paginatedExtraction</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
391
1443
|
<dl>
|
392
1444
|
<dd>
|
393
1445
|
|
@@ -399,7 +1451,7 @@ await client.windows.click("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b
|
|
399
1451
|
<dl>
|
400
1452
|
<dd>
|
401
1453
|
|
402
|
-
|
1454
|
+
Submit a prompt that queries the content of a specific browser window and paginates through pages to return a list of results.
|
403
1455
|
|
404
1456
|
</dd>
|
405
1457
|
</dl>
|
@@ -415,7 +1467,13 @@ Execute a hover interaction in a specific browser window
|
|
415
1467
|
<dd>
|
416
1468
|
|
417
1469
|
```typescript
|
418
|
-
await client.windows.
|
1470
|
+
await client.windows.paginatedExtraction(
|
1471
|
+
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
1472
|
+
"0334da2a-91b0-42c5-6156-76a5eba87430",
|
1473
|
+
{
|
1474
|
+
prompt: "This site contains a list of results about <provide details about the list>. Navigate through 3 pages of results and return the title and <provide details about the data you want to extract> about each result in this list.",
|
1475
|
+
}
|
1476
|
+
);
|
419
1477
|
```
|
420
1478
|
|
421
1479
|
</dd>
|
@@ -447,7 +1505,7 @@ await client.windows.hover("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b
|
|
447
1505
|
<dl>
|
448
1506
|
<dd>
|
449
1507
|
|
450
|
-
**request:** `Airtop.
|
1508
|
+
**request:** `Airtop.SessionPaginatedExtractionHandlerRequestBody`
|
451
1509
|
|
452
1510
|
</dd>
|
453
1511
|
</dl>
|
@@ -466,7 +1524,7 @@ await client.windows.hover("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b
|
|
466
1524
|
</dl>
|
467
1525
|
</details>
|
468
1526
|
|
469
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1527
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">promptContent</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
470
1528
|
<dl>
|
471
1529
|
<dd>
|
472
1530
|
|
@@ -478,7 +1536,7 @@ await client.windows.hover("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b
|
|
478
1536
|
<dl>
|
479
1537
|
<dd>
|
480
1538
|
|
481
|
-
|
1539
|
+
This endpoint is deprecated. Please use the `pageQuery` endpoint instead.
|
482
1540
|
|
483
1541
|
</dd>
|
484
1542
|
</dl>
|
@@ -494,7 +1552,7 @@ Submit a prompt that queries the content of a specific browser window. You may e
|
|
494
1552
|
<dd>
|
495
1553
|
|
496
1554
|
```typescript
|
497
|
-
await client.windows.
|
1555
|
+
await client.windows.promptContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
498
1556
|
prompt: "What is the main idea of this page?",
|
499
1557
|
});
|
500
1558
|
```
|
@@ -547,7 +1605,7 @@ await client.windows.pageQuery("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a
|
|
547
1605
|
</dl>
|
548
1606
|
</details>
|
549
1607
|
|
550
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1608
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">scrapeContent</a>(sessionId, windowId, { ...params }) -> Airtop.ScrapeResponse</code></summary>
|
551
1609
|
<dl>
|
552
1610
|
<dd>
|
553
1611
|
|
@@ -559,7 +1617,7 @@ await client.windows.pageQuery("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a
|
|
559
1617
|
<dl>
|
560
1618
|
<dd>
|
561
1619
|
|
562
|
-
|
1620
|
+
Scrape a window and return the content as markdown
|
563
1621
|
|
564
1622
|
</dd>
|
565
1623
|
</dl>
|
@@ -575,10 +1633,7 @@ Submit a prompt that queries the content of a specific browser window and pagina
|
|
575
1633
|
<dd>
|
576
1634
|
|
577
1635
|
```typescript
|
578
|
-
await client.windows.
|
579
|
-
"6aac6f73-bd89-4a76-ab32-5a6c422e8b0b",
|
580
|
-
"0334da2a-91b0-42c5-6156-76a5eba87430"
|
581
|
-
);
|
1636
|
+
await client.windows.scrapeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
582
1637
|
```
|
583
1638
|
|
584
1639
|
</dd>
|
@@ -602,7 +1657,7 @@ await client.windows.paginatedExtraction(
|
|
602
1657
|
<dl>
|
603
1658
|
<dd>
|
604
1659
|
|
605
|
-
**windowId:** `string` — The Airtop window id of the browser window.
|
1660
|
+
**windowId:** `string` — The Airtop window id of the browser window to scrape.
|
606
1661
|
|
607
1662
|
</dd>
|
608
1663
|
</dl>
|
@@ -610,7 +1665,7 @@ await client.windows.paginatedExtraction(
|
|
610
1665
|
<dl>
|
611
1666
|
<dd>
|
612
1667
|
|
613
|
-
**request:** `Airtop.
|
1668
|
+
**request:** `Airtop.ScrapeContentRequest`
|
614
1669
|
|
615
1670
|
</dd>
|
616
1671
|
</dl>
|
@@ -629,7 +1684,7 @@ await client.windows.paginatedExtraction(
|
|
629
1684
|
</dl>
|
630
1685
|
</details>
|
631
1686
|
|
632
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1687
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">screenshot</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
633
1688
|
<dl>
|
634
1689
|
<dd>
|
635
1690
|
|
@@ -641,7 +1696,7 @@ await client.windows.paginatedExtraction(
|
|
641
1696
|
<dl>
|
642
1697
|
<dd>
|
643
1698
|
|
644
|
-
|
1699
|
+
Take a screenshot of a browser window
|
645
1700
|
|
646
1701
|
</dd>
|
647
1702
|
</dl>
|
@@ -657,9 +1712,7 @@ This endpoint is deprecated. Please use the `pageQuery` endpoint instead.
|
|
657
1712
|
<dd>
|
658
1713
|
|
659
1714
|
```typescript
|
660
|
-
await client.windows.
|
661
|
-
prompt: "What is the main idea of this page?",
|
662
|
-
});
|
1715
|
+
await client.windows.screenshot("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
663
1716
|
```
|
664
1717
|
|
665
1718
|
</dd>
|
@@ -691,7 +1744,7 @@ await client.windows.promptContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
691
1744
|
<dl>
|
692
1745
|
<dd>
|
693
1746
|
|
694
|
-
**request:** `Airtop.
|
1747
|
+
**request:** `Airtop.SessionScreenshotHandlerRequestBody`
|
695
1748
|
|
696
1749
|
</dd>
|
697
1750
|
</dl>
|
@@ -710,7 +1763,7 @@ await client.windows.promptContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
710
1763
|
</dl>
|
711
1764
|
</details>
|
712
1765
|
|
713
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1766
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">scroll</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
714
1767
|
<dl>
|
715
1768
|
<dd>
|
716
1769
|
|
@@ -722,7 +1775,7 @@ await client.windows.promptContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
722
1775
|
<dl>
|
723
1776
|
<dd>
|
724
1777
|
|
725
|
-
|
1778
|
+
Execute a scroll interaction in a specific browser window
|
726
1779
|
|
727
1780
|
</dd>
|
728
1781
|
</dl>
|
@@ -738,7 +1791,7 @@ Scrape a window and return the content as markdown
|
|
738
1791
|
<dd>
|
739
1792
|
|
740
1793
|
```typescript
|
741
|
-
await client.windows.
|
1794
|
+
await client.windows.scroll("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
742
1795
|
```
|
743
1796
|
|
744
1797
|
</dd>
|
@@ -762,7 +1815,7 @@ await client.windows.scrapeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
762
1815
|
<dl>
|
763
1816
|
<dd>
|
764
1817
|
|
765
|
-
**windowId:** `string` — The Airtop window id of the browser window
|
1818
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
766
1819
|
|
767
1820
|
</dd>
|
768
1821
|
</dl>
|
@@ -770,7 +1823,7 @@ await client.windows.scrapeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
770
1823
|
<dl>
|
771
1824
|
<dd>
|
772
1825
|
|
773
|
-
**request:** `Airtop.
|
1826
|
+
**request:** `Airtop.SessionScrollHandlerRequestBody`
|
774
1827
|
|
775
1828
|
</dd>
|
776
1829
|
</dl>
|
@@ -789,7 +1842,7 @@ await client.windows.scrapeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
789
1842
|
</dl>
|
790
1843
|
</details>
|
791
1844
|
|
792
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1845
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">summarizeContent</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
793
1846
|
<dl>
|
794
1847
|
<dd>
|
795
1848
|
|
@@ -801,7 +1854,7 @@ await client.windows.scrapeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334
|
|
801
1854
|
<dl>
|
802
1855
|
<dd>
|
803
1856
|
|
804
|
-
|
1857
|
+
This endpoint is deprecated. Please use the `pageQuery` endpoint and ask for a summary in the prompt instead.
|
805
1858
|
|
806
1859
|
</dd>
|
807
1860
|
</dl>
|
@@ -817,7 +1870,7 @@ Take a screenshot of a browser window
|
|
817
1870
|
<dd>
|
818
1871
|
|
819
1872
|
```typescript
|
820
|
-
await client.windows.
|
1873
|
+
await client.windows.summarizeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430");
|
821
1874
|
```
|
822
1875
|
|
823
1876
|
</dd>
|
@@ -841,7 +1894,7 @@ await client.windows.screenshot("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2
|
|
841
1894
|
<dl>
|
842
1895
|
<dd>
|
843
1896
|
|
844
|
-
**windowId:** `string` — The Airtop window id of the browser window.
|
1897
|
+
**windowId:** `string` — The Airtop window id of the browser window to summarize.
|
845
1898
|
|
846
1899
|
</dd>
|
847
1900
|
</dl>
|
@@ -849,7 +1902,7 @@ await client.windows.screenshot("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2
|
|
849
1902
|
<dl>
|
850
1903
|
<dd>
|
851
1904
|
|
852
|
-
**request:** `Airtop.
|
1905
|
+
**request:** `Airtop.SessionSummaryHandlerRequestBody`
|
853
1906
|
|
854
1907
|
</dd>
|
855
1908
|
</dl>
|
@@ -868,7 +1921,7 @@ await client.windows.screenshot("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2
|
|
868
1921
|
</dl>
|
869
1922
|
</details>
|
870
1923
|
|
871
|
-
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">
|
1924
|
+
<details><summary><code>client.windows.<a href="/src/api/resources/windows/client/Client.ts">type</a>(sessionId, windowId, { ...params }) -> Airtop.AiPromptResponse</code></summary>
|
872
1925
|
<dl>
|
873
1926
|
<dd>
|
874
1927
|
|
@@ -880,7 +1933,7 @@ await client.windows.screenshot("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2
|
|
880
1933
|
<dl>
|
881
1934
|
<dd>
|
882
1935
|
|
883
|
-
|
1936
|
+
Execute a type interaction in a specific browser window
|
884
1937
|
|
885
1938
|
</dd>
|
886
1939
|
</dl>
|
@@ -896,7 +1949,9 @@ This endpoint is deprecated. Please use the `pageQuery` endpoint and ask for a s
|
|
896
1949
|
<dd>
|
897
1950
|
|
898
1951
|
```typescript
|
899
|
-
await client.windows.
|
1952
|
+
await client.windows.type("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430", {
|
1953
|
+
text: "Example text",
|
1954
|
+
});
|
900
1955
|
```
|
901
1956
|
|
902
1957
|
</dd>
|
@@ -920,7 +1975,7 @@ await client.windows.summarizeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0
|
|
920
1975
|
<dl>
|
921
1976
|
<dd>
|
922
1977
|
|
923
|
-
**windowId:** `string` — The Airtop window id of the browser window
|
1978
|
+
**windowId:** `string` — The Airtop window id of the browser window.
|
924
1979
|
|
925
1980
|
</dd>
|
926
1981
|
</dl>
|
@@ -928,7 +1983,7 @@ await client.windows.summarizeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0
|
|
928
1983
|
<dl>
|
929
1984
|
<dd>
|
930
1985
|
|
931
|
-
**request:** `Airtop.
|
1986
|
+
**request:** `Airtop.SessionTypeHandlerRequestBody`
|
932
1987
|
|
933
1988
|
</dd>
|
934
1989
|
</dl>
|
@@ -947,7 +2002,9 @@ await client.windows.summarizeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0
|
|
947
2002
|
</dl>
|
948
2003
|
</details>
|
949
2004
|
|
950
|
-
|
2005
|
+
## ExtensionConfigurations
|
2006
|
+
|
2007
|
+
<details><summary><code>client.extensionConfigurations.<a href="/src/api/resources/extensionConfigurations/client/Client.ts">extensionConfigurationDelete</a>({ ...params }) -> void</code></summary>
|
951
2008
|
<dl>
|
952
2009
|
<dd>
|
953
2010
|
|
@@ -959,7 +2016,7 @@ await client.windows.summarizeContent("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0
|
|
959
2016
|
<dl>
|
960
2017
|
<dd>
|
961
2018
|
|
962
|
-
|
2019
|
+
Delete extension configurations matching by name
|
963
2020
|
|
964
2021
|
</dd>
|
965
2022
|
</dl>
|
@@ -975,9 +2032,7 @@ Execute a type interaction in a specific browser window
|
|
975
2032
|
<dd>
|
976
2033
|
|
977
2034
|
```typescript
|
978
|
-
await client.
|
979
|
-
text: "Example text",
|
980
|
-
});
|
2035
|
+
await client.extensionConfigurations.extensionConfigurationDelete();
|
981
2036
|
```
|
982
2037
|
|
983
2038
|
</dd>
|
@@ -993,7 +2048,7 @@ await client.windows.type("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0
|
|
993
2048
|
<dl>
|
994
2049
|
<dd>
|
995
2050
|
|
996
|
-
**
|
2051
|
+
**request:** `Airtop.ExtensionConfigurationDeleteRequest`
|
997
2052
|
|
998
2053
|
</dd>
|
999
2054
|
</dl>
|
@@ -1001,23 +2056,70 @@ await client.windows.type("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0
|
|
1001
2056
|
<dl>
|
1002
2057
|
<dd>
|
1003
2058
|
|
1004
|
-
**
|
2059
|
+
**requestOptions:** `ExtensionConfigurations.RequestOptions`
|
2060
|
+
|
2061
|
+
</dd>
|
2062
|
+
</dl>
|
2063
|
+
</dd>
|
2064
|
+
</dl>
|
1005
2065
|
|
1006
2066
|
</dd>
|
1007
2067
|
</dl>
|
2068
|
+
</details>
|
1008
2069
|
|
2070
|
+
<details><summary><code>client.extensionConfigurations.<a href="/src/api/resources/extensionConfigurations/client/Client.ts">extensionConfigurationGetInfo</a>(name) -> Airtop.ExtensionConfigurationOutput</code></summary>
|
1009
2071
|
<dl>
|
1010
2072
|
<dd>
|
1011
2073
|
|
1012
|
-
|
2074
|
+
#### 📝 Description
|
2075
|
+
|
2076
|
+
<dl>
|
2077
|
+
<dd>
|
2078
|
+
|
2079
|
+
<dl>
|
2080
|
+
<dd>
|
2081
|
+
|
2082
|
+
Get an extension configuration by name
|
1013
2083
|
|
1014
2084
|
</dd>
|
1015
2085
|
</dl>
|
2086
|
+
</dd>
|
2087
|
+
</dl>
|
2088
|
+
|
2089
|
+
#### 🔌 Usage
|
1016
2090
|
|
1017
2091
|
<dl>
|
1018
2092
|
<dd>
|
1019
2093
|
|
1020
|
-
|
2094
|
+
<dl>
|
2095
|
+
<dd>
|
2096
|
+
|
2097
|
+
```typescript
|
2098
|
+
await client.extensionConfigurations.extensionConfigurationGetInfo("my-configuration");
|
2099
|
+
```
|
2100
|
+
|
2101
|
+
</dd>
|
2102
|
+
</dl>
|
2103
|
+
</dd>
|
2104
|
+
</dl>
|
2105
|
+
|
2106
|
+
#### ⚙️ Parameters
|
2107
|
+
|
2108
|
+
<dl>
|
2109
|
+
<dd>
|
2110
|
+
|
2111
|
+
<dl>
|
2112
|
+
<dd>
|
2113
|
+
|
2114
|
+
**name:** `string` — Name of the extension configuration to get
|
2115
|
+
|
2116
|
+
</dd>
|
2117
|
+
</dl>
|
2118
|
+
|
2119
|
+
<dl>
|
2120
|
+
<dd>
|
2121
|
+
|
2122
|
+
**requestOptions:** `ExtensionConfigurations.RequestOptions`
|
1021
2123
|
|
1022
2124
|
</dd>
|
1023
2125
|
</dl>
|
@@ -1093,6 +2195,56 @@ await client.profiles.delete();
|
|
1093
2195
|
</dl>
|
1094
2196
|
</details>
|
1095
2197
|
|
2198
|
+
## Requests
|
2199
|
+
|
2200
|
+
<details><summary><code>client.requests.<a href="/src/api/resources/requests/client/Client.ts">getRequestStatus</a>(requestId) -> Airtop.RequestStatusResponse</code></summary>
|
2201
|
+
<dl>
|
2202
|
+
<dd>
|
2203
|
+
|
2204
|
+
#### 🔌 Usage
|
2205
|
+
|
2206
|
+
<dl>
|
2207
|
+
<dd>
|
2208
|
+
|
2209
|
+
<dl>
|
2210
|
+
<dd>
|
2211
|
+
|
2212
|
+
```typescript
|
2213
|
+
await client.requests.getRequestStatus("123e4567-e89b-12d3-a456-426614174000");
|
2214
|
+
```
|
2215
|
+
|
2216
|
+
</dd>
|
2217
|
+
</dl>
|
2218
|
+
</dd>
|
2219
|
+
</dl>
|
2220
|
+
|
2221
|
+
#### ⚙️ Parameters
|
2222
|
+
|
2223
|
+
<dl>
|
2224
|
+
<dd>
|
2225
|
+
|
2226
|
+
<dl>
|
2227
|
+
<dd>
|
2228
|
+
|
2229
|
+
**requestId:** `string` — The ID of the request to check.
|
2230
|
+
|
2231
|
+
</dd>
|
2232
|
+
</dl>
|
2233
|
+
|
2234
|
+
<dl>
|
2235
|
+
<dd>
|
2236
|
+
|
2237
|
+
**requestOptions:** `Requests.RequestOptions`
|
2238
|
+
|
2239
|
+
</dd>
|
2240
|
+
</dl>
|
2241
|
+
</dd>
|
2242
|
+
</dl>
|
2243
|
+
|
2244
|
+
</dd>
|
2245
|
+
</dl>
|
2246
|
+
</details>
|
2247
|
+
|
1096
2248
|
## Sessions
|
1097
2249
|
|
1098
2250
|
<details><summary><code>client.sessions.<a href="/src/api/resources/sessions/client/Client.ts">list</a>({ ...params }) -> Airtop.SessionsResponse</code></summary>
|