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.
@@ -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** | x | [optional] [default to undefined]
10
- **y** | **number** | y | [optional] [default to undefined]
11
- **timeframe** | **number** | timeframe | [optional] [default to undefined]
12
- **fx** | **number** | fx | [optional] [default to undefined]
13
- **fy** | **number** | fy | [optional] [default to undefined]
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
@@ -92,4 +92,3 @@ No authorization required
92
92
  |**200** | Success | - |
93
93
 
94
94
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
95
-
package/docs/PoolApi.md CHANGED
@@ -101,4 +101,3 @@ No authorization required
101
101
  |**200** | Success | - |
102
102
 
103
103
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
104
-
@@ -206,4 +206,3 @@ No authorization required
206
206
  |**200** | Success | - |
207
207
 
208
208
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
209
-
@@ -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
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airbrowser-client",
3
- "version": "1.13.1",
3
+ "version": "1.14.0",
4
4
  "description": "OpenAPI client for airbrowser-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {