Skip to content
Snippets Groups Projects
Commit 73a7a2d0 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Merge branch 'develop' into 'Sprint/2021-24'

Develop

See merge request !9
parents b5931d62 9ec01eb2
No related branches found
No related tags found
2 merge requests!9Develop,!6Sprint/2021 24
.gitignore
.npmignore
.openapi-generator-ignore
api.ts
base.ts
common.ts
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Blob
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.3
* The version of the OpenAPI document: 2.5.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......@@ -32,18 +32,15 @@ export const BlobApiAxiosParamCreator = function (configuration?: Configuration)
*
* @summary This method deletes a given file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
blobDeleteFile: async (resourceId: string, path: string, options: any = {}): Promise<RequestArgs> => {
blobDeleteFileWithParameter: async (resourceId: string, path?: string, options: any = {}): Promise<RequestArgs> => {
// verify required parameter 'resourceId' is not null or undefined
assertParamExists('blobDeleteFile', 'resourceId', resourceId)
// verify required parameter 'path' is not null or undefined
assertParamExists('blobDeleteFile', 'path', path)
const localVarPath = `/Blob/{resourceId}/{path}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
assertParamExists('blobDeleteFileWithParameter', 'resourceId', resourceId)
const localVarPath = `/Blob/{resourceId}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
......@@ -58,6 +55,10 @@ export const BlobApiAxiosParamCreator = function (configuration?: Configuration)
// authentication JWT token required
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
if (path !== undefined) {
localVarQueryParameter['path'] = path;
}
setSearchParams(localVarUrlObj, localVarQueryParameter, options.query);
......@@ -73,18 +74,15 @@ export const BlobApiAxiosParamCreator = function (configuration?: Configuration)
*
* @summary This method checks if the given file exists and returns it
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
blobGetFile: async (resourceId: string, path: string, options: any = {}): Promise<RequestArgs> => {
blobGetFileWithParameter: async (resourceId: string, path?: string, options: any = {}): Promise<RequestArgs> => {
// verify required parameter 'resourceId' is not null or undefined
assertParamExists('blobGetFile', 'resourceId', resourceId)
// verify required parameter 'path' is not null or undefined
assertParamExists('blobGetFile', 'path', path)
const localVarPath = `/Blob/{resourceId}/{path}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
assertParamExists('blobGetFileWithParameter', 'resourceId', resourceId)
const localVarPath = `/Blob/{resourceId}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
......@@ -99,6 +97,10 @@ export const BlobApiAxiosParamCreator = function (configuration?: Configuration)
// authentication JWT token required
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
if (path !== undefined) {
localVarQueryParameter['path'] = path;
}
setSearchParams(localVarUrlObj, localVarQueryParameter, options.query);
......@@ -190,19 +192,16 @@ export const BlobApiAxiosParamCreator = function (configuration?: Configuration)
*
* @summary This method uploads a given File
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {Array<any>} [files]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
blobUploadFile: async (resourceId: string, path: string, files?: Array<any>, options: any = {}): Promise<RequestArgs> => {
blobUploadFileWithParameter: async (resourceId: string, path?: string, files?: Array<any>, options: any = {}): Promise<RequestArgs> => {
// verify required parameter 'resourceId' is not null or undefined
assertParamExists('blobUploadFile', 'resourceId', resourceId)
// verify required parameter 'path' is not null or undefined
assertParamExists('blobUploadFile', 'path', path)
const localVarPath = `/Blob/{resourceId}/{path}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
assertParamExists('blobUploadFileWithParameter', 'resourceId', resourceId)
const localVarPath = `/Blob/{resourceId}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
......@@ -218,6 +217,10 @@ export const BlobApiAxiosParamCreator = function (configuration?: Configuration)
// authentication JWT token required
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
if (path !== undefined) {
localVarQueryParameter['path'] = path;
}
if (files) {
files.forEach((element) => {
localVarFormParams.append('files', element as any);
......@@ -252,24 +255,24 @@ export const BlobApiFp = function(configuration?: Configuration) {
*
* @summary This method deletes a given file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async blobDeleteFile(resourceId: string, path: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.blobDeleteFile(resourceId, path, options);
async blobDeleteFileWithParameter(resourceId: string, path?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.blobDeleteFileWithParameter(resourceId, path, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
*
* @summary This method checks if the given file exists and returns it
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async blobGetFile(resourceId: string, path: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.blobGetFile(resourceId, path, options);
async blobGetFileWithParameter(resourceId: string, path?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.blobGetFileWithParameter(resourceId, path, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
......@@ -298,13 +301,13 @@ export const BlobApiFp = function(configuration?: Configuration) {
*
* @summary This method uploads a given File
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {Array<any>} [files]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async blobUploadFile(resourceId: string, path: string, files?: Array<any>, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.blobUploadFile(resourceId, path, files, options);
async blobUploadFileWithParameter(resourceId: string, path?: string, files?: Array<any>, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.blobUploadFileWithParameter(resourceId, path, files, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
}
......@@ -321,23 +324,23 @@ export const BlobApiFactory = function (configuration?: Configuration, basePath?
*
* @summary This method deletes a given file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
blobDeleteFile(resourceId: string, path: string, options?: any): AxiosPromise<any> {
return localVarFp.blobDeleteFile(resourceId, path, options).then((request) => request(axios, basePath));
blobDeleteFileWithParameter(resourceId: string, path?: string, options?: any): AxiosPromise<any> {
return localVarFp.blobDeleteFileWithParameter(resourceId, path, options).then((request) => request(axios, basePath));
},
/**
*
* @summary This method checks if the given file exists and returns it
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
blobGetFile(resourceId: string, path: string, options?: any): AxiosPromise<any> {
return localVarFp.blobGetFile(resourceId, path, options).then((request) => request(axios, basePath));
blobGetFileWithParameter(resourceId: string, path?: string, options?: any): AxiosPromise<any> {
return localVarFp.blobGetFileWithParameter(resourceId, path, options).then((request) => request(axios, basePath));
},
/**
*
......@@ -363,13 +366,13 @@ export const BlobApiFactory = function (configuration?: Configuration, basePath?
*
* @summary This method uploads a given File
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {Array<any>} [files]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
blobUploadFile(resourceId: string, path: string, files?: Array<any>, options?: any): AxiosPromise<any> {
return localVarFp.blobUploadFile(resourceId, path, files, options).then((request) => request(axios, basePath));
blobUploadFileWithParameter(resourceId: string, path?: string, files?: Array<any>, options?: any): AxiosPromise<any> {
return localVarFp.blobUploadFileWithParameter(resourceId, path, files, options).then((request) => request(axios, basePath));
},
};
};
......@@ -385,26 +388,26 @@ export class BlobApi extends BaseAPI {
*
* @summary This method deletes a given file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BlobApi
*/
public blobDeleteFile(resourceId: string, path: string, options?: any) {
return BlobApiFp(this.configuration).blobDeleteFile(resourceId, path, options).then((request) => request(this.axios, this.basePath));
public blobDeleteFileWithParameter(resourceId: string, path?: string, options?: any) {
return BlobApiFp(this.configuration).blobDeleteFileWithParameter(resourceId, path, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary This method checks if the given file exists and returns it
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BlobApi
*/
public blobGetFile(resourceId: string, path: string, options?: any) {
return BlobApiFp(this.configuration).blobGetFile(resourceId, path, options).then((request) => request(this.axios, this.basePath));
public blobGetFileWithParameter(resourceId: string, path?: string, options?: any) {
return BlobApiFp(this.configuration).blobGetFileWithParameter(resourceId, path, options).then((request) => request(this.axios, this.basePath));
}
/**
......@@ -435,14 +438,14 @@ export class BlobApi extends BaseAPI {
*
* @summary This method uploads a given File
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {Array<any>} [files]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BlobApi
*/
public blobUploadFile(resourceId: string, path: string, files?: Array<any>, options?: any) {
return BlobApiFp(this.configuration).blobUploadFile(resourceId, path, files, options).then((request) => request(this.axios, this.basePath));
public blobUploadFileWithParameter(resourceId: string, path?: string, files?: Array<any>, options?: any) {
return BlobApiFp(this.configuration).blobUploadFileWithParameter(resourceId, path, files, options).then((request) => request(this.axios, this.basePath));
}
}
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Blob
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.3
* The version of the OpenAPI document: 2.5.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Blob
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.3
* The version of the OpenAPI document: 2.5.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Blob
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.3
* The version of the OpenAPI document: 2.5.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Blob
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.3
* The version of the OpenAPI document: 2.5.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
.gitignore
.npmignore
.openapi-generator-ignore
api.ts
base.ts
common.ts
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Tree
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.1
* The version of the OpenAPI document: 2.4.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......@@ -32,18 +32,15 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration)
*
* @summary This method retrieves the metadata
* @param {string} resourceId Id of a resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
treeGetMetadata: async (resourceId: string, path: string, options: any = {}): Promise<RequestArgs> => {
treeGetMetadataWithParameter: async (resourceId: string, path?: string, options: any = {}): Promise<RequestArgs> => {
// verify required parameter 'resourceId' is not null or undefined
assertParamExists('treeGetMetadata', 'resourceId', resourceId)
// verify required parameter 'path' is not null or undefined
assertParamExists('treeGetMetadata', 'path', path)
const localVarPath = `/Tree/{resourceId}/{path}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
assertParamExists('treeGetMetadataWithParameter', 'resourceId', resourceId)
const localVarPath = `/Tree/{resourceId}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
......@@ -58,6 +55,10 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration)
// authentication JWT token required
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
if (path !== undefined) {
localVarQueryParameter['path'] = path;
}
setSearchParams(localVarUrlObj, localVarQueryParameter, options.query);
......@@ -73,18 +74,15 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration)
*
* @summary This method stores the metadata of the file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
treeStoreMetadataForFile: async (resourceId: string, path: string, options: any = {}): Promise<RequestArgs> => {
treeStoreMetadataForFileWithParameter: async (resourceId: string, path?: string, options: any = {}): Promise<RequestArgs> => {
// verify required parameter 'resourceId' is not null or undefined
assertParamExists('treeStoreMetadataForFile', 'resourceId', resourceId)
// verify required parameter 'path' is not null or undefined
assertParamExists('treeStoreMetadataForFile', 'path', path)
const localVarPath = `/Tree/{resourceId}/{path}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)))
.replace(`{${"path"}}`, encodeURIComponent(String(path)));
assertParamExists('treeStoreMetadataForFileWithParameter', 'resourceId', resourceId)
const localVarPath = `/Tree/{resourceId}`
.replace(`{${"resourceId"}}`, encodeURIComponent(String(resourceId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
......@@ -99,6 +97,10 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration)
// authentication JWT token required
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
if (path !== undefined) {
localVarQueryParameter['path'] = path;
}
setSearchParams(localVarUrlObj, localVarQueryParameter, options.query);
......@@ -124,24 +126,24 @@ export const TreeApiFp = function(configuration?: Configuration) {
*
* @summary This method retrieves the metadata
* @param {string} resourceId Id of a resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async treeGetMetadata(resourceId: string, path: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.treeGetMetadata(resourceId, path, options);
async treeGetMetadataWithParameter(resourceId: string, path?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.treeGetMetadataWithParameter(resourceId, path, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
*
* @summary This method stores the metadata of the file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async treeStoreMetadataForFile(resourceId: string, path: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.treeStoreMetadataForFile(resourceId, path, options);
async treeStoreMetadataForFileWithParameter(resourceId: string, path?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.treeStoreMetadataForFileWithParameter(resourceId, path, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
}
......@@ -158,23 +160,23 @@ export const TreeApiFactory = function (configuration?: Configuration, basePath?
*
* @summary This method retrieves the metadata
* @param {string} resourceId Id of a resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
treeGetMetadata(resourceId: string, path: string, options?: any): AxiosPromise<any> {
return localVarFp.treeGetMetadata(resourceId, path, options).then((request) => request(axios, basePath));
treeGetMetadataWithParameter(resourceId: string, path?: string, options?: any): AxiosPromise<any> {
return localVarFp.treeGetMetadataWithParameter(resourceId, path, options).then((request) => request(axios, basePath));
},
/**
*
* @summary This method stores the metadata of the file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
treeStoreMetadataForFile(resourceId: string, path: string, options?: any): AxiosPromise<any> {
return localVarFp.treeStoreMetadataForFile(resourceId, path, options).then((request) => request(axios, basePath));
treeStoreMetadataForFileWithParameter(resourceId: string, path?: string, options?: any): AxiosPromise<any> {
return localVarFp.treeStoreMetadataForFileWithParameter(resourceId, path, options).then((request) => request(axios, basePath));
},
};
};
......@@ -190,26 +192,26 @@ export class TreeApi extends BaseAPI {
*
* @summary This method retrieves the metadata
* @param {string} resourceId Id of a resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TreeApi
*/
public treeGetMetadata(resourceId: string, path: string, options?: any) {
return TreeApiFp(this.configuration).treeGetMetadata(resourceId, path, options).then((request) => request(this.axios, this.basePath));
public treeGetMetadataWithParameter(resourceId: string, path?: string, options?: any) {
return TreeApiFp(this.configuration).treeGetMetadataWithParameter(resourceId, path, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary This method stores the metadata of the file
* @param {string} resourceId Id of the resource
* @param {string} path Path to the file
* @param {string} [path] Path to the file
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TreeApi
*/
public treeStoreMetadataForFile(resourceId: string, path: string, options?: any) {
return TreeApiFp(this.configuration).treeStoreMetadataForFile(resourceId, path, options).then((request) => request(this.axios, this.basePath));
public treeStoreMetadataForFileWithParameter(resourceId: string, path?: string, options?: any) {
return TreeApiFp(this.configuration).treeStoreMetadataForFileWithParameter(resourceId, path, options).then((request) => request(this.axios, this.basePath));
}
}
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Tree
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.1
* The version of the OpenAPI document: 2.4.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Tree
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.1
* The version of the OpenAPI document: 2.4.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Tree
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.1
* The version of the OpenAPI document: 2.4.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
......@@ -4,7 +4,7 @@
* Coscine.Api.Tree
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.4.1
* The version of the OpenAPI document: 2.4.3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment