@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.
Files changed (46) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/client.d.mts +4 -1
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +4 -1
  5. package/client.d.ts.map +1 -1
  6. package/client.js +6 -1
  7. package/client.js.map +1 -1
  8. package/client.mjs +6 -1
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/auth/connections.d.mts +20 -20
  12. package/resources/auth/connections.d.ts +20 -20
  13. package/resources/browser-pools.d.mts +7 -7
  14. package/resources/browser-pools.d.ts +7 -7
  15. package/resources/browser-pools.js +1 -1
  16. package/resources/browser-pools.mjs +1 -1
  17. package/resources/browsers/browsers.d.mts +2 -2
  18. package/resources/browsers/browsers.d.ts +2 -2
  19. package/resources/credentials.d.mts +1 -2
  20. package/resources/credentials.d.mts.map +1 -1
  21. package/resources/credentials.d.ts +1 -2
  22. package/resources/credentials.d.ts.map +1 -1
  23. package/resources/credentials.js +1 -2
  24. package/resources/credentials.js.map +1 -1
  25. package/resources/credentials.mjs +1 -2
  26. package/resources/credentials.mjs.map +1 -1
  27. package/resources/extensions.d.mts +1 -1
  28. package/resources/extensions.d.ts +1 -1
  29. package/resources/extensions.js +1 -1
  30. package/resources/extensions.mjs +1 -1
  31. package/resources/proxies.d.mts +3 -3
  32. package/resources/proxies.d.ts +3 -3
  33. package/resources/proxies.js +3 -3
  34. package/resources/proxies.mjs +3 -3
  35. package/src/client.ts +9 -0
  36. package/src/resources/auth/connections.ts +20 -20
  37. package/src/resources/browser-pools.ts +7 -7
  38. package/src/resources/browsers/browsers.ts +2 -2
  39. package/src/resources/credentials.ts +1 -2
  40. package/src/resources/extensions.ts +1 -1
  41. package/src/resources/proxies.ts +3 -3
  42. package/src/version.ts +1 -1
  43. package/version.d.mts +1 -1
  44. package/version.d.ts +1 -1
  45. package/version.js +1 -1
  46. package/version.mjs +1 -1
@@ -57,7 +57,7 @@ export class BrowserPools extends APIResource {
57
57
  }
58
58
 
59
59
  /**
60
- * List browser pools owned by the caller's organization.
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
- * belonging to the caller's org.
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
- * belonging to the caller's org.
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
- * belonging to the caller's org.
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
- * belonging to the caller's org.
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 owned by the caller's organization. Credential values are not
64
- * returned.
63
+ * List credentials in the resolved project. Credential values are not returned.
65
64
  *
66
65
  * @example
67
66
  * ```ts
@@ -14,7 +14,7 @@ import { path } from '../internal/utils/path';
14
14
  */
15
15
  export class Extensions extends APIResource {
16
16
  /**
17
- * List extensions owned by the caller's organization.
17
+ * List extensions in the resolved project.
18
18
  *
19
19
  * @example
20
20
  * ```ts
@@ -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 for the caller's organization.
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 belonging to the caller's organization by ID.
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 owned by the caller's organization.
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.66.0'; // x-release-please-version
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.66.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.66.0";
1
+ export declare const VERSION = "0.67.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.66.0'; // x-release-please-version
4
+ exports.VERSION = '0.67.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.66.0'; // x-release-please-version
1
+ export const VERSION = '0.67.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map