@daytonaio/toolbox-api-client 0.184.0 → 0.185.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/toolbox-api-client",
3
- "version": "0.184.0",
3
+ "version": "0.185.0",
4
4
  "description": "OpenAPI client for @daytona/toolbox-api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -44,7 +44,7 @@ export declare const GitApiAxiosParamCreator: (configuration?: Configuration) =>
44
44
  */
45
45
  checkoutBranch: (request: GitCheckoutRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46
46
  /**
47
- * Clone a Git repository to the specified path
47
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
48
48
  * @summary Clone a Git repository
49
49
  * @param {GitCloneRequest} request Clone repository request
50
50
  * @param {*} [options] Override http request option.
@@ -137,7 +137,7 @@ export declare const GitApiFp: (configuration?: Configuration) => {
137
137
  */
138
138
  checkoutBranch(request: GitCheckoutRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
139
139
  /**
140
- * Clone a Git repository to the specified path
140
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
141
141
  * @summary Clone a Git repository
142
142
  * @param {GitCloneRequest} request Clone repository request
143
143
  * @param {*} [options] Override http request option.
@@ -230,7 +230,7 @@ export declare const GitApiFactory: (configuration?: Configuration, basePath?: s
230
230
  */
231
231
  checkoutBranch(request: GitCheckoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
232
232
  /**
233
- * Clone a Git repository to the specified path
233
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
234
234
  * @summary Clone a Git repository
235
235
  * @param {GitCloneRequest} request Clone repository request
236
236
  * @param {*} [options] Override http request option.
@@ -323,7 +323,7 @@ export declare class GitApi extends BaseAPI {
323
323
  */
324
324
  checkoutBranch(request: GitCheckoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
325
325
  /**
326
- * Clone a Git repository to the specified path
326
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
327
327
  * @summary Clone a Git repository
328
328
  * @param {GitCloneRequest} request Clone repository request
329
329
  * @param {*} [options] Override http request option.
@@ -86,7 +86,7 @@ const GitApiAxiosParamCreator = function (configuration) {
86
86
  };
87
87
  },
88
88
  /**
89
- * Clone a Git repository to the specified path
89
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
90
90
  * @summary Clone a Git repository
91
91
  * @param {GitCloneRequest} request Clone repository request
92
92
  * @param {*} [options] Override http request option.
@@ -398,7 +398,7 @@ const GitApiFp = function (configuration) {
398
398
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
399
399
  },
400
400
  /**
401
- * Clone a Git repository to the specified path
401
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
402
402
  * @summary Clone a Git repository
403
403
  * @param {GitCloneRequest} request Clone repository request
404
404
  * @param {*} [options] Override http request option.
@@ -544,7 +544,7 @@ const GitApiFactory = function (configuration, basePath, axios) {
544
544
  return localVarFp.checkoutBranch(request, options).then((request) => request(axios, basePath));
545
545
  },
546
546
  /**
547
- * Clone a Git repository to the specified path
547
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
548
548
  * @summary Clone a Git repository
549
549
  * @param {GitCloneRequest} request Clone repository request
550
550
  * @param {*} [options] Override http request option.
@@ -661,7 +661,7 @@ class GitApi extends base_1.BaseAPI {
661
661
  return (0, exports.GitApiFp)(this.configuration).checkoutBranch(request, options).then((request) => request(this.axios, this.basePath));
662
662
  }
663
663
  /**
664
- * Clone a Git repository to the specified path
664
+ * Clone a Git repository to the specified path. Defaults to strict TLS verification; set insecure_skip_tls=true to skip verification for self-signed or private-CA Git servers.
665
665
  * @summary Clone a Git repository
666
666
  * @param {GitCloneRequest} request Clone repository request
667
667
  * @param {*} [options] Override http request option.
@@ -12,6 +12,10 @@
12
12
  export interface GitCloneRequest {
13
13
  'branch'?: string;
14
14
  'commit_id'?: string;
15
+ /**
16
+ * Skip TLS certificate verification for this clone. Defaults to false (verify). Set to true ONLY for trusted internal Git servers with self-signed or private-CA certs; credentials, if supplied, will be transmitted over an unverified TLS connection and are exposed to any MITM on the route.
17
+ */
18
+ 'insecure_skip_tls'?: boolean;
15
19
  'password'?: string;
16
20
  'path': string;
17
21
  'url': string;