@onkernel/sdk 0.68.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.
- package/CHANGELOG.md +13 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +9 -1
- package/client.js.map +1 -1
- package/client.mjs +9 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/auth/connections.d.mts +4 -0
- package/resources/auth/connections.d.mts.map +1 -1
- package/resources/auth/connections.d.ts +4 -0
- package/resources/auth/connections.d.ts.map +1 -1
- package/resources/browser-pools.d.mts +4 -0
- package/resources/browser-pools.d.mts.map +1 -1
- package/resources/browser-pools.d.ts +4 -0
- package/resources/browser-pools.d.ts.map +1 -1
- package/resources/credential-providers.d.mts +4 -0
- package/resources/credential-providers.d.mts.map +1 -1
- package/resources/credential-providers.d.ts +4 -0
- package/resources/credential-providers.d.ts.map +1 -1
- package/resources/credentials.d.mts +4 -0
- package/resources/credentials.d.mts.map +1 -1
- package/resources/credentials.d.ts +4 -0
- package/resources/credentials.d.ts.map +1 -1
- package/resources/deployments.d.mts +4 -0
- package/resources/deployments.d.mts.map +1 -1
- package/resources/deployments.d.ts +4 -0
- package/resources/deployments.d.ts.map +1 -1
- package/resources/extensions.d.mts +4 -0
- package/resources/extensions.d.mts.map +1 -1
- package/resources/extensions.d.ts +4 -0
- package/resources/extensions.d.ts.map +1 -1
- package/resources/invocations.d.mts +4 -0
- package/resources/invocations.d.mts.map +1 -1
- package/resources/invocations.d.ts +4 -0
- package/resources/invocations.d.ts.map +1 -1
- package/resources/proxies.d.mts +4 -0
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +4 -0
- package/resources/proxies.d.ts.map +1 -1
- package/src/client.ts +9 -1
- package/src/resources/auth/connections.ts +5 -0
- package/src/resources/browser-pools.ts +6 -1
- package/src/resources/credential-providers.ts +6 -1
- package/src/resources/credentials.ts +5 -0
- package/src/resources/deployments.ts +5 -0
- package/src/resources/extensions.ts +6 -1
- package/src/resources/invocations.ts +5 -0
- package/src/resources/proxies.ts +6 -1
- 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
package/src/resources/proxies.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const VERSION = "0.69.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.69.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|