airbrowser-client 1.13.1 → 1.14.0
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/.openapi-generator/FILES +6 -0
- package/README.md +11 -5
- package/api.ts +867 -464
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +383 -35
- package/dist/api.js +150 -24
- package/dist/esm/api.d.ts +383 -35
- package/dist/esm/api.js +149 -23
- package/docs/BrowserApi.md +72 -12
- package/docs/DetectCoordinatesData.md +48 -0
- package/docs/DetectCoordinatesRequest.md +15 -3
- package/docs/DetectCoordinatesResult.md +24 -0
- package/docs/GuiClickData.md +44 -0
- package/docs/GuiClickRequest.md +22 -6
- package/docs/GuiClickResult.md +24 -0
- package/docs/GuiClickXYRequest.md +40 -0
- package/docs/HealthApi.md +0 -1
- package/docs/PoolApi.md +0 -1
- package/docs/ProfilesApi.md +0 -1
- package/docs/WhatIsVisibleRequest.md +22 -0
- package/index.ts +1 -2
- package/package.json +1 -1
package/docs/GuiClickRequest.md
CHANGED
|
@@ -5,12 +5,20 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**selector** | **string** | selector | [optional] [default to undefined]
|
|
9
|
-
**x** | **number** |
|
|
10
|
-
**y** | **number** |
|
|
11
|
-
**timeframe** | **number** |
|
|
12
|
-
**fx** | **number** |
|
|
13
|
-
**fy** | **number** |
|
|
8
|
+
**selector** | **string** | Element selector (CSS or XPath) | [optional] [default to undefined]
|
|
9
|
+
**x** | **number** | Screen X coordinate (coordinate mode) | [optional] [default to undefined]
|
|
10
|
+
**y** | **number** | Screen Y coordinate (coordinate mode) | [optional] [default to undefined]
|
|
11
|
+
**timeframe** | **number** | Mouse move duration (seconds) | [optional] [default to undefined]
|
|
12
|
+
**fx** | **number** | Relative X (0..1) within element to click | [optional] [default to undefined]
|
|
13
|
+
**fy** | **number** | Relative Y (0..1) within element to click | [optional] [default to undefined]
|
|
14
|
+
**pre_click_validate** | **string** | Pre-click validation mode | [optional] [default to PreClickValidateEnum_Off]
|
|
15
|
+
**auto_snap** | **string** | Auto-snap mode for nearby targets | [optional] [default to AutoSnapEnum_Off]
|
|
16
|
+
**snap_radius** | **number** | Maximum snap radius in CSS pixels | [optional] [default to undefined]
|
|
17
|
+
**post_click_feedback** | **string** | Post-click feedback mode | [optional] [default to PostClickFeedbackEnum_None]
|
|
18
|
+
**post_click_timeout_ms** | **number** | Post-click observation timeout in milliseconds | [optional] [default to undefined]
|
|
19
|
+
**return_content** | **boolean** | Include truncated content in post-click feedback | [optional] [default to false]
|
|
20
|
+
**content_limit_chars** | **number** | Maximum returned content length | [optional] [default to undefined]
|
|
21
|
+
**include_debug** | **boolean** | Include smart-click debug diagnostics | [optional] [default to false]
|
|
14
22
|
|
|
15
23
|
## Example
|
|
16
24
|
|
|
@@ -24,6 +32,14 @@ const instance: GuiClickRequest = {
|
|
|
24
32
|
timeframe,
|
|
25
33
|
fx,
|
|
26
34
|
fy,
|
|
35
|
+
pre_click_validate,
|
|
36
|
+
auto_snap,
|
|
37
|
+
snap_radius,
|
|
38
|
+
post_click_feedback,
|
|
39
|
+
post_click_timeout_ms,
|
|
40
|
+
return_content,
|
|
41
|
+
content_limit_chars,
|
|
42
|
+
include_debug,
|
|
27
43
|
};
|
|
28
44
|
```
|
|
29
45
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# GuiClickResult
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**success** | **boolean** | Operation success | [optional] [default to undefined]
|
|
9
|
+
**message** | **string** | Success message | [optional] [default to undefined]
|
|
10
|
+
**data** | [**GuiClickData**](GuiClickData.md) | GUI click response payload | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { GuiClickResult } from 'airbrowser-client';
|
|
16
|
+
|
|
17
|
+
const instance: GuiClickResult = {
|
|
18
|
+
success,
|
|
19
|
+
message,
|
|
20
|
+
data,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# GuiClickXYRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**x** | **number** | Screen X coordinate | [default to undefined]
|
|
9
|
+
**y** | **number** | Screen Y coordinate | [default to undefined]
|
|
10
|
+
**timeframe** | **number** | Mouse move duration (seconds) | [optional] [default to undefined]
|
|
11
|
+
**pre_click_validate** | **string** | Pre-click validation mode | [optional] [default to PreClickValidateEnum_Off]
|
|
12
|
+
**auto_snap** | **string** | Auto-snap mode for nearby targets | [optional] [default to AutoSnapEnum_Off]
|
|
13
|
+
**snap_radius** | **number** | Maximum snap radius in CSS pixels | [optional] [default to undefined]
|
|
14
|
+
**post_click_feedback** | **string** | Post-click feedback mode | [optional] [default to PostClickFeedbackEnum_None]
|
|
15
|
+
**post_click_timeout_ms** | **number** | Post-click observation timeout in milliseconds | [optional] [default to undefined]
|
|
16
|
+
**return_content** | **boolean** | Include truncated content in post-click feedback | [optional] [default to false]
|
|
17
|
+
**content_limit_chars** | **number** | Maximum returned content length | [optional] [default to undefined]
|
|
18
|
+
**include_debug** | **boolean** | Include smart-click debug diagnostics | [optional] [default to false]
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { GuiClickXYRequest } from 'airbrowser-client';
|
|
24
|
+
|
|
25
|
+
const instance: GuiClickXYRequest = {
|
|
26
|
+
x,
|
|
27
|
+
y,
|
|
28
|
+
timeframe,
|
|
29
|
+
pre_click_validate,
|
|
30
|
+
auto_snap,
|
|
31
|
+
snap_radius,
|
|
32
|
+
post_click_feedback,
|
|
33
|
+
post_click_timeout_ms,
|
|
34
|
+
return_content,
|
|
35
|
+
content_limit_chars,
|
|
36
|
+
include_debug,
|
|
37
|
+
};
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/HealthApi.md
CHANGED
package/docs/PoolApi.md
CHANGED
package/docs/ProfilesApi.md
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# WhatIsVisibleRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**model** | **string** | model | [optional] [default to undefined]
|
|
9
|
+
**stream** | **boolean** | stream | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { WhatIsVisibleRequest } from 'airbrowser-client';
|
|
15
|
+
|
|
16
|
+
const instance: WhatIsVisibleRequest = {
|
|
17
|
+
model,
|
|
18
|
+
stream,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/index.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Undetectable Chrome-in-Docker for developers and agents (REST + MCP)
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -15,4 +15,3 @@
|
|
|
15
15
|
|
|
16
16
|
export * from "./api";
|
|
17
17
|
export * from "./configuration";
|
|
18
|
-
|