@onkernel/sdk 0.67.0 → 0.69.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 (79) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/client.d.mts +2 -2
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +2 -2
  5. package/client.d.ts.map +1 -1
  6. package/client.js +9 -1
  7. package/client.js.map +1 -1
  8. package/client.mjs +9 -1
  9. package/client.mjs.map +1 -1
  10. package/core/pagination.d.mts.map +1 -1
  11. package/core/pagination.d.ts.map +1 -1
  12. package/core/pagination.js +16 -4
  13. package/core/pagination.js.map +1 -1
  14. package/core/pagination.mjs +16 -4
  15. package/core/pagination.mjs.map +1 -1
  16. package/package.json +1 -1
  17. package/resources/api-keys.d.mts +48 -2
  18. package/resources/api-keys.d.mts.map +1 -1
  19. package/resources/api-keys.d.ts +48 -2
  20. package/resources/api-keys.d.ts.map +1 -1
  21. package/resources/api-keys.js +15 -2
  22. package/resources/api-keys.js.map +1 -1
  23. package/resources/api-keys.mjs +15 -2
  24. package/resources/api-keys.mjs.map +1 -1
  25. package/resources/auth/connections.d.mts +4 -0
  26. package/resources/auth/connections.d.mts.map +1 -1
  27. package/resources/auth/connections.d.ts +4 -0
  28. package/resources/auth/connections.d.ts.map +1 -1
  29. package/resources/browser-pools.d.mts +4 -0
  30. package/resources/browser-pools.d.mts.map +1 -1
  31. package/resources/browser-pools.d.ts +4 -0
  32. package/resources/browser-pools.d.ts.map +1 -1
  33. package/resources/credential-providers.d.mts +4 -0
  34. package/resources/credential-providers.d.mts.map +1 -1
  35. package/resources/credential-providers.d.ts +4 -0
  36. package/resources/credential-providers.d.ts.map +1 -1
  37. package/resources/credentials.d.mts +4 -0
  38. package/resources/credentials.d.mts.map +1 -1
  39. package/resources/credentials.d.ts +4 -0
  40. package/resources/credentials.d.ts.map +1 -1
  41. package/resources/deployments.d.mts +4 -0
  42. package/resources/deployments.d.mts.map +1 -1
  43. package/resources/deployments.d.ts +4 -0
  44. package/resources/deployments.d.ts.map +1 -1
  45. package/resources/extensions.d.mts +4 -0
  46. package/resources/extensions.d.mts.map +1 -1
  47. package/resources/extensions.d.ts +4 -0
  48. package/resources/extensions.d.ts.map +1 -1
  49. package/resources/index.d.mts +1 -1
  50. package/resources/index.d.mts.map +1 -1
  51. package/resources/index.d.ts +1 -1
  52. package/resources/index.d.ts.map +1 -1
  53. package/resources/index.js.map +1 -1
  54. package/resources/index.mjs.map +1 -1
  55. package/resources/invocations.d.mts +4 -0
  56. package/resources/invocations.d.mts.map +1 -1
  57. package/resources/invocations.d.ts +4 -0
  58. package/resources/invocations.d.ts.map +1 -1
  59. package/resources/proxies.d.mts +4 -0
  60. package/resources/proxies.d.mts.map +1 -1
  61. package/resources/proxies.d.ts +4 -0
  62. package/resources/proxies.d.ts.map +1 -1
  63. package/src/client.ts +13 -1
  64. package/src/core/pagination.ts +18 -4
  65. package/src/resources/api-keys.ts +67 -2
  66. package/src/resources/auth/connections.ts +5 -0
  67. package/src/resources/browser-pools.ts +6 -1
  68. package/src/resources/credential-providers.ts +6 -1
  69. package/src/resources/credentials.ts +5 -0
  70. package/src/resources/deployments.ts +5 -0
  71. package/src/resources/extensions.ts +6 -1
  72. package/src/resources/index.ts +2 -0
  73. package/src/resources/invocations.ts +5 -0
  74. package/src/resources/proxies.ts +6 -1
  75. package/src/version.ts +1 -1
  76. package/version.d.mts +1 -1
  77. package/version.d.ts +1 -1
  78. package/version.js +1 -1
  79. package/version.mjs +1 -1
@@ -609,7 +609,12 @@ export interface BrowserPoolUpdateParams {
609
609
  viewport?: Shared.BrowserViewport;
610
610
  }
611
611
 
612
- export interface BrowserPoolListParams extends OffsetPaginationParams {}
612
+ export interface BrowserPoolListParams extends OffsetPaginationParams {
613
+ /**
614
+ * Search browser pools by name or ID.
615
+ */
616
+ query?: string;
617
+ }
613
618
 
614
619
  export interface BrowserPoolDeleteParams {
615
620
  /**
@@ -344,7 +344,12 @@ export interface CredentialProviderUpdateParams {
344
344
  priority?: number;
345
345
  }
346
346
 
347
- export interface CredentialProviderListParams extends OffsetPaginationParams {}
347
+ export interface CredentialProviderListParams extends OffsetPaginationParams {
348
+ /**
349
+ * Search credential providers by name or ID.
350
+ */
351
+ query?: string;
352
+ }
348
353
 
349
354
  export declare namespace CredentialProviders {
350
355
  export {
@@ -305,6 +305,11 @@ export interface CredentialListParams extends OffsetPaginationParams {
305
305
  * Filter by domain
306
306
  */
307
307
  domain?: string;
308
+
309
+ /**
310
+ * Search credentials by name, domain, or ID.
311
+ */
312
+ query?: string;
308
313
  }
309
314
 
310
315
  export declare namespace Credentials {
@@ -469,6 +469,11 @@ export interface DeploymentListParams extends OffsetPaginationParams {
469
469
  * Filter results by application version. Requires app_name to be set.
470
470
  */
471
471
  app_version?: string;
472
+
473
+ /**
474
+ * Search deployments by ID or app name.
475
+ */
476
+ query?: string;
472
477
  }
473
478
 
474
479
  export interface DeploymentFollowParams {
@@ -177,7 +177,12 @@ export interface ExtensionUploadResponse {
177
177
  name?: string | null;
178
178
  }
179
179
 
180
- export interface ExtensionListParams extends OffsetPaginationParams {}
180
+ export interface ExtensionListParams extends OffsetPaginationParams {
181
+ /**
182
+ * Search extensions by name or ID.
183
+ */
184
+ query?: string;
185
+ }
181
186
 
182
187
  export interface ExtensionDownloadFromChromeStoreParams {
183
188
  /**
@@ -6,8 +6,10 @@ export {
6
6
  type APIKey,
7
7
  type CreatedAPIKey,
8
8
  type APIKeyCreateParams,
9
+ type APIKeyRetrieveParams,
9
10
  type APIKeyUpdateParams,
10
11
  type APIKeyListParams,
12
+ type APIKeyRotateParams,
11
13
  type APIKeysOffsetPagination,
12
14
  } from './api-keys';
13
15
  export {
@@ -613,6 +613,11 @@ export interface InvocationListParams extends OffsetPaginationParams {
613
613
  */
614
614
  deployment_id?: string;
615
615
 
616
+ /**
617
+ * Search invocations by ID, app name, or action name.
618
+ */
619
+ query?: string;
620
+
616
621
  /**
617
622
  * Show invocations that have started since the given time (RFC timestamps or
618
623
  * durations like 5m).
@@ -824,7 +824,12 @@ export namespace ProxyCreateParams {
824
824
  }
825
825
  }
826
826
 
827
- export interface ProxyListParams extends OffsetPaginationParams {}
827
+ export interface ProxyListParams extends OffsetPaginationParams {
828
+ /**
829
+ * Search proxies by name, host, IP address, or ID.
830
+ */
831
+ query?: string;
832
+ }
828
833
 
829
834
  export interface ProxyCheckParams {
830
835
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.67.0'; // x-release-please-version
1
+ export const VERSION = '0.69.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.67.0";
1
+ export declare const VERSION = "0.69.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.67.0";
1
+ export declare const VERSION = "0.69.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.67.0'; // x-release-please-version
4
+ exports.VERSION = '0.69.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.67.0'; // x-release-please-version
1
+ export const VERSION = '0.69.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map