@onkernel/sdk 0.84.0 → 0.86.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 +23 -0
- package/client.d.mts +3 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +3 -0
- package/client.d.ts.map +1 -1
- package/client.js +3 -0
- package/client.js.map +1 -1
- package/client.mjs +3 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/auth/connections.d.mts +10 -0
- package/resources/auth/connections.d.mts.map +1 -1
- package/resources/auth/connections.d.ts +10 -0
- package/resources/auth/connections.d.ts.map +1 -1
- package/resources/projects/limits.d.mts +5 -6
- package/resources/projects/limits.d.mts.map +1 -1
- package/resources/projects/limits.d.ts +5 -6
- package/resources/projects/limits.d.ts.map +1 -1
- package/resources/projects/limits.js +2 -0
- package/resources/projects/limits.js.map +1 -1
- package/resources/projects/limits.mjs +2 -0
- package/resources/projects/limits.mjs.map +1 -1
- package/resources/projects/projects.d.mts +2 -0
- package/resources/projects/projects.d.mts.map +1 -1
- package/resources/projects/projects.d.ts +2 -0
- package/resources/projects/projects.d.ts.map +1 -1
- package/resources/projects/projects.js +2 -0
- package/resources/projects/projects.js.map +1 -1
- package/resources/projects/projects.mjs +2 -0
- package/resources/projects/projects.mjs.map +1 -1
- package/resources/proxies.d.mts +26 -0
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +26 -0
- package/resources/proxies.d.ts.map +1 -1
- package/src/client.ts +3 -0
- package/src/resources/auth/connections.ts +12 -0
- package/src/resources/projects/limits.ts +5 -6
- package/src/resources/projects/projects.ts +2 -0
- package/src/resources/proxies.ts +32 -0
- 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
|
@@ -255,6 +255,11 @@ export namespace ProxyCreateResponse {
|
|
|
255
255
|
*/
|
|
256
256
|
port: number;
|
|
257
257
|
|
|
258
|
+
/**
|
|
259
|
+
* Whether the proxy has a custom CA bundle configured.
|
|
260
|
+
*/
|
|
261
|
+
has_ca_bundle?: boolean;
|
|
262
|
+
|
|
258
263
|
/**
|
|
259
264
|
* Whether the proxy has a password.
|
|
260
265
|
*/
|
|
@@ -411,6 +416,11 @@ export namespace ProxyRetrieveResponse {
|
|
|
411
416
|
*/
|
|
412
417
|
port: number;
|
|
413
418
|
|
|
419
|
+
/**
|
|
420
|
+
* Whether the proxy has a custom CA bundle configured.
|
|
421
|
+
*/
|
|
422
|
+
has_ca_bundle?: boolean;
|
|
423
|
+
|
|
414
424
|
/**
|
|
415
425
|
* Whether the proxy has a password.
|
|
416
426
|
*/
|
|
@@ -567,6 +577,11 @@ export namespace ProxyUpdateResponse {
|
|
|
567
577
|
*/
|
|
568
578
|
port: number;
|
|
569
579
|
|
|
580
|
+
/**
|
|
581
|
+
* Whether the proxy has a custom CA bundle configured.
|
|
582
|
+
*/
|
|
583
|
+
has_ca_bundle?: boolean;
|
|
584
|
+
|
|
570
585
|
/**
|
|
571
586
|
* Whether the proxy has a password.
|
|
572
587
|
*/
|
|
@@ -723,6 +738,11 @@ export namespace ProxyListResponse {
|
|
|
723
738
|
*/
|
|
724
739
|
port: number;
|
|
725
740
|
|
|
741
|
+
/**
|
|
742
|
+
* Whether the proxy has a custom CA bundle configured.
|
|
743
|
+
*/
|
|
744
|
+
has_ca_bundle?: boolean;
|
|
745
|
+
|
|
726
746
|
/**
|
|
727
747
|
* Whether the proxy has a password.
|
|
728
748
|
*/
|
|
@@ -879,6 +899,11 @@ export namespace ProxyCheckResponse {
|
|
|
879
899
|
*/
|
|
880
900
|
port: number;
|
|
881
901
|
|
|
902
|
+
/**
|
|
903
|
+
* Whether the proxy has a custom CA bundle configured.
|
|
904
|
+
*/
|
|
905
|
+
has_ca_bundle?: boolean;
|
|
906
|
+
|
|
882
907
|
/**
|
|
883
908
|
* Whether the proxy has a password.
|
|
884
909
|
*/
|
|
@@ -1015,6 +1040,13 @@ export namespace ProxyCreateParams {
|
|
|
1015
1040
|
*/
|
|
1016
1041
|
port: number;
|
|
1017
1042
|
|
|
1043
|
+
/**
|
|
1044
|
+
* PEM-encoded CA certificate bundle the proxy re-signs upstream TLS with. Provide
|
|
1045
|
+
* when the proxy terminates TLS (MITM) so the browser trusts its certificates. May
|
|
1046
|
+
* contain multiple concatenated certificates.
|
|
1047
|
+
*/
|
|
1048
|
+
ca_bundle?: string;
|
|
1049
|
+
|
|
1018
1050
|
/**
|
|
1019
1051
|
* Password for proxy authentication.
|
|
1020
1052
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.86.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.86.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.86.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.86.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|