@onkernel/sdk 0.66.0 → 0.67.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/CHANGELOG.md +13 -0
- package/client.d.mts +4 -1
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -1
- package/client.d.ts.map +1 -1
- package/client.js +6 -1
- package/client.js.map +1 -1
- package/client.mjs +6 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/auth/connections.d.mts +20 -20
- package/resources/auth/connections.d.ts +20 -20
- package/resources/browser-pools.d.mts +7 -7
- package/resources/browser-pools.d.ts +7 -7
- package/resources/browser-pools.js +1 -1
- package/resources/browser-pools.mjs +1 -1
- package/resources/browsers/browsers.d.mts +2 -2
- package/resources/browsers/browsers.d.ts +2 -2
- package/resources/credentials.d.mts +1 -2
- package/resources/credentials.d.mts.map +1 -1
- package/resources/credentials.d.ts +1 -2
- package/resources/credentials.d.ts.map +1 -1
- package/resources/credentials.js +1 -2
- package/resources/credentials.js.map +1 -1
- package/resources/credentials.mjs +1 -2
- package/resources/credentials.mjs.map +1 -1
- package/resources/extensions.d.mts +1 -1
- package/resources/extensions.d.ts +1 -1
- package/resources/extensions.js +1 -1
- package/resources/extensions.mjs +1 -1
- package/resources/proxies.d.mts +3 -3
- package/resources/proxies.d.ts +3 -3
- package/resources/proxies.js +3 -3
- package/resources/proxies.mjs +3 -3
- package/src/client.ts +9 -0
- package/src/resources/auth/connections.ts +20 -20
- package/src/resources/browser-pools.ts +7 -7
- package/src/resources/browsers/browsers.ts +2 -2
- package/src/resources/credentials.ts +1 -2
- package/src/resources/extensions.ts +1 -1
- package/src/resources/proxies.ts +3 -3
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -57,7 +57,7 @@ export class BrowserPools extends APIResource {
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
* List browser pools
|
|
60
|
+
* List browser pools in the resolved project.
|
|
61
61
|
*
|
|
62
62
|
* @example
|
|
63
63
|
* ```ts
|
|
@@ -241,8 +241,8 @@ export namespace BrowserPool {
|
|
|
241
241
|
profile?: Shared.BrowserProfile;
|
|
242
242
|
|
|
243
243
|
/**
|
|
244
|
-
* Optional proxy to associate to the browser session. Must reference a proxy
|
|
245
|
-
*
|
|
244
|
+
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
245
|
+
* the same project as the browser session.
|
|
246
246
|
*/
|
|
247
247
|
proxy_id?: string;
|
|
248
248
|
|
|
@@ -467,8 +467,8 @@ export interface BrowserPoolCreateParams {
|
|
|
467
467
|
profile?: Shared.BrowserProfile;
|
|
468
468
|
|
|
469
469
|
/**
|
|
470
|
-
* Optional proxy to associate to the browser session. Must reference a proxy
|
|
471
|
-
*
|
|
470
|
+
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
471
|
+
* the same project as the browser session.
|
|
472
472
|
*/
|
|
473
473
|
proxy_id?: string;
|
|
474
474
|
|
|
@@ -559,8 +559,8 @@ export interface BrowserPoolUpdateParams {
|
|
|
559
559
|
profile?: Shared.BrowserProfile;
|
|
560
560
|
|
|
561
561
|
/**
|
|
562
|
-
* Optional proxy to associate to the browser session. Must reference a proxy
|
|
563
|
-
*
|
|
562
|
+
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
563
|
+
* the same project as the browser session.
|
|
564
564
|
*/
|
|
565
565
|
proxy_id?: string;
|
|
566
566
|
|
|
@@ -941,8 +941,8 @@ export interface BrowserCreateParams {
|
|
|
941
941
|
profile?: Shared.BrowserProfile;
|
|
942
942
|
|
|
943
943
|
/**
|
|
944
|
-
* Optional proxy to associate to the browser session. Must reference a proxy
|
|
945
|
-
*
|
|
944
|
+
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
945
|
+
* the same project as the browser session.
|
|
946
946
|
*/
|
|
947
947
|
proxy_id?: string;
|
|
948
948
|
|
|
@@ -60,8 +60,7 @@ export class Credentials extends APIResource {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
/**
|
|
63
|
-
* List credentials
|
|
64
|
-
* returned.
|
|
63
|
+
* List credentials in the resolved project. Credential values are not returned.
|
|
65
64
|
*
|
|
66
65
|
* @example
|
|
67
66
|
* ```ts
|
package/src/resources/proxies.ts
CHANGED
|
@@ -12,21 +12,21 @@ import { path } from '../internal/utils/path';
|
|
|
12
12
|
*/
|
|
13
13
|
export class Proxies extends APIResource {
|
|
14
14
|
/**
|
|
15
|
-
* Create a new proxy configuration
|
|
15
|
+
* Create a new proxy configuration in the resolved project.
|
|
16
16
|
*/
|
|
17
17
|
create(body: ProxyCreateParams, options?: RequestOptions): APIPromise<ProxyCreateResponse> {
|
|
18
18
|
return this._client.post('/proxies', { body, ...options });
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* Retrieve a proxy
|
|
22
|
+
* Retrieve a proxy in the resolved project by ID.
|
|
23
23
|
*/
|
|
24
24
|
retrieve(id: string, options?: RequestOptions): APIPromise<ProxyRetrieveResponse> {
|
|
25
25
|
return this._client.get(path`/proxies/${id}`, options);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* List proxies
|
|
29
|
+
* List proxies in the resolved project.
|
|
30
30
|
*/
|
|
31
31
|
list(
|
|
32
32
|
query: ProxyListParams | null | undefined = {},
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.67.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.67.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.67.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.67.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|