@ -4847,16 +4847,16 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
downloadFile : async ( assetI d: string , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' assetI d' is not null or undefined
assertParamExists ( 'downloadFile' , ' assetId', assetI d)
const localVarPath = ` /asset/download/{ assetI d}`
. replace ( ` { ${ " assetI d"} } ` , encodeURIComponent ( String ( assetI d) ) ) ;
downloadFile : async ( i d: string , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' i d' is not null or undefined
assertParamExists ( 'downloadFile' , ' id', i d)
const localVarPath = ` /asset/download/{ i d}`
. replace ( ` { ${ " i d"} } ` , encodeURIComponent ( String ( i d) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
@ -5097,16 +5097,16 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
} ,
/ * *
* Get a single asset \ ' s information
* @param { string } assetI d
* @param { string } i d
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
getAssetById : async ( assetI d: string , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' assetI d' is not null or undefined
assertParamExists ( 'getAssetById' , ' assetId', assetI d)
const localVarPath = ` /asset/assetById/{ assetI d}`
. replace ( ` { ${ " assetI d"} } ` , encodeURIComponent ( String ( assetI d) ) ) ;
getAssetById : async ( i d: string , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' i d' is not null or undefined
assertParamExists ( 'getAssetById' , ' id', i d)
const localVarPath = ` /asset/assetById/{ i d}`
. replace ( ` { ${ " i d"} } ` , encodeURIComponent ( String ( i d) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
@ -5308,17 +5308,17 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { ThumbnailFormat } [ format ]
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
getAssetThumbnail : async ( assetI d: string , format? : ThumbnailFormat , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' assetI d' is not null or undefined
assertParamExists ( 'getAssetThumbnail' , ' assetId', assetI d)
const localVarPath = ` /asset/thumbnail/{ assetI d}`
. replace ( ` { ${ " assetI d"} } ` , encodeURIComponent ( String ( assetI d) ) ) ;
getAssetThumbnail : async ( i d: string , format? : ThumbnailFormat , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' i d' is not null or undefined
assertParamExists ( 'getAssetThumbnail' , ' id', i d)
const localVarPath = ` /asset/thumbnail/{ i d}`
. replace ( ` { ${ " i d"} } ` , encodeURIComponent ( String ( i d) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
@ -5628,18 +5628,18 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { boolean } [ isThumb ]
* @param { boolean } [ isWeb ]
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
serveFile : async ( assetI d: string , isThumb? : boolean , isWeb? : boolean , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' assetI d' is not null or undefined
assertParamExists ( 'serveFile' , ' assetId', assetI d)
const localVarPath = ` /asset/file/{ assetI d}`
. replace ( ` { ${ " assetI d"} } ` , encodeURIComponent ( String ( assetI d) ) ) ;
serveFile : async ( i d: string , isThumb? : boolean , isWeb? : boolean , key? : string , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' i d' is not null or undefined
assertParamExists ( 'serveFile' , ' id', i d)
const localVarPath = ` /asset/file/{ i d}`
. replace ( ` { ${ " i d"} } ` , encodeURIComponent ( String ( i d) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
@ -5685,18 +5685,18 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
} ,
/ * *
* Update an asset
* @param { string } assetI d
* @param { string } i d
* @param { UpdateAssetDto } updateAssetDto
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
updateAsset : async ( assetI d: string , updateAssetDto : UpdateAssetDto , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' assetI d' is not null or undefined
assertParamExists ( 'updateAsset' , ' assetId', assetI d)
updateAsset : async ( i d: string , updateAssetDto : UpdateAssetDto , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' i d' is not null or undefined
assertParamExists ( 'updateAsset' , ' id', i d)
// verify required parameter 'updateAssetDto' is not null or undefined
assertParamExists ( 'updateAsset' , 'updateAssetDto' , updateAssetDto )
const localVarPath = ` /asset/{ assetI d}`
. replace ( ` { ${ " assetI d"} } ` , encodeURIComponent ( String ( assetI d) ) ) ;
const localVarPath = ` /asset/{ i d}`
. replace ( ` { ${ " i d"} } ` , encodeURIComponent ( String ( i d) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
@ -5933,13 +5933,13 @@ export const AssetApiFp = function(configuration?: Configuration) {
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async downloadFile ( assetI d: string , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < File > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . downloadFile ( assetI d, key , options ) ;
async downloadFile ( i d: string , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < File > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . downloadFile ( i d, key , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
/ * *
@ -5990,13 +5990,13 @@ export const AssetApiFp = function(configuration?: Configuration) {
} ,
/ * *
* Get a single asset \ ' s information
* @param { string } assetI d
* @param { string } i d
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async getAssetById ( assetI d: string , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AssetResponseDto > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAssetById ( assetI d, key , options ) ;
async getAssetById ( i d: string , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AssetResponseDto > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAssetById ( i d, key , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
/ * *
@ -6039,14 +6039,14 @@ export const AssetApiFp = function(configuration?: Configuration) {
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { ThumbnailFormat } [ format ]
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async getAssetThumbnail ( assetI d: string , format? : ThumbnailFormat , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < File > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAssetThumbnail ( assetI d, format , key , options ) ;
async getAssetThumbnail ( i d: string , format? : ThumbnailFormat , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < File > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAssetThumbnail ( i d, format , key , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
/ * *
@ -6112,26 +6112,26 @@ export const AssetApiFp = function(configuration?: Configuration) {
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { boolean } [ isThumb ]
* @param { boolean } [ isWeb ]
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async serveFile ( assetI d: string , isThumb? : boolean , isWeb? : boolean , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < File > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . serveFile ( assetI d, isThumb , isWeb , key , options ) ;
async serveFile ( i d: string , isThumb? : boolean , isWeb? : boolean , key? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < File > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . serveFile ( i d, isThumb , isWeb , key , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
/ * *
* Update an asset
* @param { string } assetI d
* @param { string } i d
* @param { UpdateAssetDto } updateAssetDto
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async updateAsset ( assetI d: string , updateAssetDto : UpdateAssetDto , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AssetResponseDto > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateAsset ( assetI d, updateAssetDto , options ) ;
async updateAsset ( i d: string , updateAssetDto : UpdateAssetDto , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AssetResponseDto > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateAsset ( i d, updateAssetDto , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
/ * *
@ -6225,13 +6225,13 @@ export const AssetApiFactory = function (configuration?: Configuration, basePath
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
downloadFile ( assetI d: string , key? : string , options? : any ) : AxiosPromise < File > {
return localVarFp . downloadFile ( assetI d, key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
downloadFile ( i d: string , key? : string , options? : any ) : AxiosPromise < File > {
return localVarFp . downloadFile ( i d, key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
*
@ -6277,13 +6277,13 @@ export const AssetApiFactory = function (configuration?: Configuration, basePath
} ,
/ * *
* Get a single asset \ ' s information
* @param { string } assetI d
* @param { string } i d
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
getAssetById ( assetI d: string , key? : string , options? : any ) : AxiosPromise < AssetResponseDto > {
return localVarFp . getAssetById ( assetI d, key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
getAssetById ( i d: string , key? : string , options? : any ) : AxiosPromise < AssetResponseDto > {
return localVarFp . getAssetById ( i d, key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
*
@ -6321,14 +6321,14 @@ export const AssetApiFactory = function (configuration?: Configuration, basePath
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { ThumbnailFormat } [ format ]
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
getAssetThumbnail ( assetI d: string , format? : ThumbnailFormat , key? : string , options? : any ) : AxiosPromise < File > {
return localVarFp . getAssetThumbnail ( assetI d, format , key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
getAssetThumbnail ( i d: string , format? : ThumbnailFormat , key? : string , options? : any ) : AxiosPromise < File > {
return localVarFp . getAssetThumbnail ( i d, format , key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
*
@ -6387,25 +6387,25 @@ export const AssetApiFactory = function (configuration?: Configuration, basePath
} ,
/ * *
*
* @param { string } assetI d
* @param { string } i d
* @param { boolean } [ isThumb ]
* @param { boolean } [ isWeb ]
* @param { string } [ key ]
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
serveFile ( assetI d: string , isThumb? : boolean , isWeb? : boolean , key? : string , options? : any ) : AxiosPromise < File > {
return localVarFp . serveFile ( assetI d, isThumb , isWeb , key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
serveFile ( i d: string , isThumb? : boolean , isWeb? : boolean , key? : string , options? : any ) : AxiosPromise < File > {
return localVarFp . serveFile ( i d, isThumb , isWeb , key , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
* Update an asset
* @param { string } assetI d
* @param { string } i d
* @param { UpdateAssetDto } updateAssetDto
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
updateAsset ( assetI d: string , updateAssetDto : UpdateAssetDto , options? : any ) : AxiosPromise < AssetResponseDto > {
return localVarFp . updateAsset ( assetI d, updateAssetDto , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
updateAsset ( i d: string , updateAssetDto : UpdateAssetDto , options? : any ) : AxiosPromise < AssetResponseDto > {
return localVarFp . updateAsset ( i d, updateAssetDto , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
*
@ -6541,7 +6541,7 @@ export interface AssetApiDownloadFileRequest {
* @type { string }
* @memberof AssetApiDownloadFile
* /
readonly assetI d: string
readonly i d: string
/ * *
*
@ -6653,7 +6653,7 @@ export interface AssetApiGetAssetByIdRequest {
* @type { string }
* @memberof AssetApiGetAssetById
* /
readonly assetI d: string
readonly i d: string
/ * *
*
@ -6702,7 +6702,7 @@ export interface AssetApiGetAssetThumbnailRequest {
* @type { string }
* @memberof AssetApiGetAssetThumbnail
* /
readonly assetI d: string
readonly i d: string
/ * *
*
@ -6807,7 +6807,7 @@ export interface AssetApiServeFileRequest {
* @type { string }
* @memberof AssetApiServeFile
* /
readonly assetI d: string
readonly i d: string
/ * *
*
@ -6842,7 +6842,7 @@ export interface AssetApiUpdateAssetRequest {
* @type { string }
* @memberof AssetApiUpdateAsset
* /
readonly assetI d: string
readonly i d: string
/ * *
*
@ -7038,7 +7038,7 @@ export class AssetApi extends BaseAPI {
* @memberof AssetApi
* /
public downloadFile ( requestParameters : AssetApiDownloadFileRequest , options? : AxiosRequestConfig ) {
return AssetApiFp ( this . configuration ) . downloadFile ( requestParameters . assetI d, requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
return AssetApiFp ( this . configuration ) . downloadFile ( requestParameters . i d, requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *
@ -7092,7 +7092,7 @@ export class AssetApi extends BaseAPI {
* @memberof AssetApi
* /
public getAssetById ( requestParameters : AssetApiGetAssetByIdRequest , options? : AxiosRequestConfig ) {
return AssetApiFp ( this . configuration ) . getAssetById ( requestParameters . assetI d, requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
return AssetApiFp ( this . configuration ) . getAssetById ( requestParameters . i d, requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *
@ -7145,7 +7145,7 @@ export class AssetApi extends BaseAPI {
* @memberof AssetApi
* /
public getAssetThumbnail ( requestParameters : AssetApiGetAssetThumbnailRequest , options? : AxiosRequestConfig ) {
return AssetApiFp ( this . configuration ) . getAssetThumbnail ( requestParameters . assetI d, requestParameters . format , requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
return AssetApiFp ( this . configuration ) . getAssetThumbnail ( requestParameters . i d, requestParameters . format , requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *
@ -7220,7 +7220,7 @@ export class AssetApi extends BaseAPI {
* @memberof AssetApi
* /
public serveFile ( requestParameters : AssetApiServeFileRequest , options? : AxiosRequestConfig ) {
return AssetApiFp ( this . configuration ) . serveFile ( requestParameters . assetI d, requestParameters . isThumb , requestParameters . isWeb , requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
return AssetApiFp ( this . configuration ) . serveFile ( requestParameters . i d, requestParameters . isThumb , requestParameters . isWeb , requestParameters . key , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *
@ -7231,7 +7231,7 @@ export class AssetApi extends BaseAPI {
* @memberof AssetApi
* /
public updateAsset ( requestParameters : AssetApiUpdateAssetRequest , options? : AxiosRequestConfig ) {
return AssetApiFp ( this . configuration ) . updateAsset ( requestParameters . assetI d, requestParameters . updateAssetDto , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
return AssetApiFp ( this . configuration ) . updateAsset ( requestParameters . i d, requestParameters . updateAssetDto , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *