@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.
Files changed (44) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/client.d.mts +3 -0
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +3 -0
  5. package/client.d.ts.map +1 -1
  6. package/client.js +3 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +3 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/auth/connections.d.mts +10 -0
  12. package/resources/auth/connections.d.mts.map +1 -1
  13. package/resources/auth/connections.d.ts +10 -0
  14. package/resources/auth/connections.d.ts.map +1 -1
  15. package/resources/projects/limits.d.mts +5 -6
  16. package/resources/projects/limits.d.mts.map +1 -1
  17. package/resources/projects/limits.d.ts +5 -6
  18. package/resources/projects/limits.d.ts.map +1 -1
  19. package/resources/projects/limits.js +2 -0
  20. package/resources/projects/limits.js.map +1 -1
  21. package/resources/projects/limits.mjs +2 -0
  22. package/resources/projects/limits.mjs.map +1 -1
  23. package/resources/projects/projects.d.mts +2 -0
  24. package/resources/projects/projects.d.mts.map +1 -1
  25. package/resources/projects/projects.d.ts +2 -0
  26. package/resources/projects/projects.d.ts.map +1 -1
  27. package/resources/projects/projects.js +2 -0
  28. package/resources/projects/projects.js.map +1 -1
  29. package/resources/projects/projects.mjs +2 -0
  30. package/resources/projects/projects.mjs.map +1 -1
  31. package/resources/proxies.d.mts +26 -0
  32. package/resources/proxies.d.mts.map +1 -1
  33. package/resources/proxies.d.ts +26 -0
  34. package/resources/proxies.d.ts.map +1 -1
  35. package/src/client.ts +3 -0
  36. package/src/resources/auth/connections.ts +12 -0
  37. package/src/resources/projects/limits.ts +5 -6
  38. package/src/resources/projects/projects.ts +2 -0
  39. package/src/resources/proxies.ts +32 -0
  40. package/src/version.ts +1 -1
  41. package/version.d.mts +1 -1
  42. package/version.d.ts +1 -1
  43. package/version.js +1 -1
  44. package/version.mjs +1 -1
@@ -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.84.0'; // x-release-please-version
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.84.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.84.0";
1
+ export declare const VERSION = "0.86.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.84.0'; // x-release-please-version
4
+ exports.VERSION = '0.86.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.84.0'; // x-release-please-version
1
+ export const VERSION = '0.86.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map