2022-07-08 21:26:50 -05:00
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
/**
|
|
|
|
* Immich
|
|
|
|
* Immich API
|
|
|
|
*
|
2023-05-09 15:29:06 +00:00
|
|
|
* The version of the OpenAPI document: 1.55.1
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
*
|
|
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
|
|
* https://openapi-generator.tech
|
|
|
|
* Do not edit the class manually.
|
|
|
|
*/
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
import type { Configuration } from './configuration';
|
|
|
|
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
|
|
import globalAxios from 'axios';
|
2022-07-08 21:26:50 -05:00
|
|
|
// Some imports not used depending on template conditions
|
|
|
|
// @ts-ignore
|
2023-01-21 23:13:36 -05:00
|
|
|
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
2023-04-09 04:26:09 +02:00
|
|
|
import type { RequestArgs } from './base';
|
2022-07-08 21:26:50 -05:00
|
|
|
// @ts-ignore
|
2023-04-09 04:26:09 +02:00
|
|
|
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base';
|
2022-07-08 21:26:50 -05:00
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface APIKeyCreateDto
|
|
|
|
*/
|
|
|
|
export interface APIKeyCreateDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof APIKeyCreateDto
|
|
|
|
*/
|
|
|
|
'name'?: string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface APIKeyCreateResponseDto
|
|
|
|
*/
|
|
|
|
export interface APIKeyCreateResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof APIKeyCreateResponseDto
|
|
|
|
*/
|
|
|
|
'secret': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {APIKeyResponseDto}
|
|
|
|
* @memberof APIKeyCreateResponseDto
|
|
|
|
*/
|
|
|
|
'apiKey': APIKeyResponseDto;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface APIKeyResponseDto
|
|
|
|
*/
|
|
|
|
export interface APIKeyResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @type {string}
|
2023-01-02 15:22:33 -05:00
|
|
|
* @memberof APIKeyResponseDto
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
'id': string;
|
2023-01-02 15:22:33 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof APIKeyResponseDto
|
|
|
|
*/
|
|
|
|
'name': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof APIKeyResponseDto
|
|
|
|
*/
|
|
|
|
'createdAt': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof APIKeyResponseDto
|
|
|
|
*/
|
|
|
|
'updatedAt': string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface APIKeyUpdateDto
|
|
|
|
*/
|
|
|
|
export interface APIKeyUpdateDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof APIKeyUpdateDto
|
|
|
|
*/
|
|
|
|
'name': string;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface AddAssetsDto
|
|
|
|
*/
|
|
|
|
export interface AddAssetsDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof AddAssetsDto
|
|
|
|
*/
|
|
|
|
'assetIds': Array<string>;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-10-28 21:54:09 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface AddAssetsResponseDto
|
|
|
|
*/
|
|
|
|
export interface AddAssetsResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AddAssetsResponseDto
|
|
|
|
*/
|
|
|
|
'successfullyAdded': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof AddAssetsResponseDto
|
|
|
|
*/
|
|
|
|
'alreadyInAlbum': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {AlbumResponseDto}
|
|
|
|
* @memberof AddAssetsResponseDto
|
|
|
|
*/
|
|
|
|
'album'?: AlbumResponseDto;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface AddUsersDto
|
|
|
|
*/
|
|
|
|
export interface AddUsersDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof AddUsersDto
|
|
|
|
*/
|
|
|
|
'sharedUserIds': Array<string>;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface AdminSignupResponseDto
|
|
|
|
*/
|
|
|
|
export interface AdminSignupResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AdminSignupResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AdminSignupResponseDto
|
|
|
|
*/
|
|
|
|
'email': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AdminSignupResponseDto
|
|
|
|
*/
|
|
|
|
'firstName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AdminSignupResponseDto
|
|
|
|
*/
|
|
|
|
'lastName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AdminSignupResponseDto
|
|
|
|
*/
|
|
|
|
'createdAt': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface AlbumCountResponseDto
|
|
|
|
*/
|
|
|
|
export interface AlbumCountResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AlbumCountResponseDto
|
|
|
|
*/
|
|
|
|
'owned': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AlbumCountResponseDto
|
|
|
|
*/
|
|
|
|
'shared': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AlbumCountResponseDto
|
|
|
|
*/
|
|
|
|
'sharing': number;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface AlbumResponseDto
|
|
|
|
*/
|
|
|
|
export interface AlbumResponseDto {
|
2022-08-10 22:48:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'assetCount': number;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'ownerId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'albumName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'createdAt': string;
|
2023-02-06 10:24:58 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'updatedAt': string;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'albumThumbnailAssetId': string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'shared': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<UserResponseDto>}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'sharedUsers': Array<UserResponseDto>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<AssetResponseDto>}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
|
|
|
'assets': Array<AssetResponseDto>;
|
2023-02-06 20:47:06 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {UserResponseDto}
|
|
|
|
* @memberof AlbumResponseDto
|
|
|
|
*/
|
2023-02-07 15:11:14 -06:00
|
|
|
'owner': UserResponseDto;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface AllJobStatusResponseDto
|
|
|
|
*/
|
|
|
|
export interface AllJobStatusResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2022-10-06 11:25:54 -05:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'thumbnail-generation-queue': JobStatusDto;
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2022-10-06 11:25:54 -05:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'metadata-extraction-queue': JobStatusDto;
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2022-10-06 11:25:54 -05:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'video-conversion-queue': JobStatusDto;
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2022-10-06 11:25:54 -05:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'object-tagging-queue': JobStatusDto;
|
2022-12-19 12:13:10 -06:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2022-12-19 12:13:10 -06:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'clip-encoding-queue': JobStatusDto;
|
2023-03-20 11:55:28 -04:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'storage-template-migration-queue': JobStatusDto;
|
2023-03-20 11:55:28 -04:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'background-task-queue': JobStatusDto;
|
2023-03-20 11:55:28 -04:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 22:46:07 +02:00
|
|
|
* @type {JobStatusDto}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof AllJobStatusResponseDto
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
'search-queue': JobStatusDto;
|
2022-10-06 11:25:54 -05:00
|
|
|
}
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2022-09-04 08:34:39 -05:00
|
|
|
* @interface AssetCountByTimeBucket
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
export interface AssetCountByTimeBucket {
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
2022-09-04 08:34:39 -05:00
|
|
|
* @memberof AssetCountByTimeBucket
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
'timeBucket': string;
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2022-09-04 08:34:39 -05:00
|
|
|
* @memberof AssetCountByTimeBucket
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
|
|
|
'count': number;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2022-09-04 08:34:39 -05:00
|
|
|
* @interface AssetCountByTimeBucketResponseDto
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
export interface AssetCountByTimeBucketResponseDto {
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2022-09-04 08:34:39 -05:00
|
|
|
* @memberof AssetCountByTimeBucketResponseDto
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
'totalCount': number;
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
2022-09-04 08:34:39 -05:00
|
|
|
* @type {Array<AssetCountByTimeBucket>}
|
|
|
|
* @memberof AssetCountByTimeBucketResponseDto
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
'buckets': Array<AssetCountByTimeBucket>;
|
2022-08-26 22:53:37 -07:00
|
|
|
}
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface AssetCountByUserIdResponseDto
|
|
|
|
*/
|
|
|
|
export interface AssetCountByUserIdResponseDto {
|
2022-11-15 10:51:56 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AssetCountByUserIdResponseDto
|
|
|
|
*/
|
|
|
|
'audio': number;
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AssetCountByUserIdResponseDto
|
|
|
|
*/
|
|
|
|
'photos': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AssetCountByUserIdResponseDto
|
|
|
|
*/
|
|
|
|
'videos': number;
|
2022-11-15 10:51:56 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AssetCountByUserIdResponseDto
|
|
|
|
*/
|
|
|
|
'other': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof AssetCountByUserIdResponseDto
|
|
|
|
*/
|
|
|
|
'total': number;
|
2022-09-07 15:16:18 -05:00
|
|
|
}
|
2022-07-10 21:41:45 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-10 21:41:45 -05:00
|
|
|
* @export
|
|
|
|
* @interface AssetFileUploadResponseDto
|
|
|
|
*/
|
|
|
|
export interface AssetFileUploadResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetFileUploadResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
2023-01-30 11:14:13 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof AssetFileUploadResponseDto
|
|
|
|
*/
|
|
|
|
'duplicate': boolean;
|
2022-07-10 21:41:45 -05:00
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface AssetResponseDto
|
|
|
|
*/
|
|
|
|
export interface AssetResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {AssetTypeEnum}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'type': AssetTypeEnum;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'deviceAssetId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'ownerId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'deviceId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'originalPath': string;
|
2023-04-11 05:23:39 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'originalFileName': string;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'resizePath': string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
'fileCreatedAt': string;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
'fileModifiedAt': string;
|
2023-02-06 10:24:58 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'updatedAt': string;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'isFavorite': boolean;
|
2023-04-12 18:37:52 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'isArchived': boolean;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'mimeType': string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'duration': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'webpPath': string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
2022-11-26 17:16:02 +01:00
|
|
|
'encodedVideoPath'?: string | null;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {ExifResponseDto}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'exifInfo'?: ExifResponseDto;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SmartInfoResponseDto}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
|
|
|
'smartInfo'?: SmartInfoResponseDto;
|
2022-11-18 23:12:54 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
2022-11-26 17:16:02 +01:00
|
|
|
'livePhotoVideoId'?: string | null;
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<TagResponseDto>}
|
|
|
|
* @memberof AssetResponseDto
|
|
|
|
*/
|
2023-02-06 20:47:06 -06:00
|
|
|
'tags'?: Array<TagResponseDto>;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2022-07-13 07:23:48 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-13 07:23:48 -05:00
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
2022-07-08 21:26:50 -05:00
|
|
|
|
2022-07-13 07:23:48 -05:00
|
|
|
export const AssetTypeEnum = {
|
2022-07-26 20:53:25 -05:00
|
|
|
Image: 'IMAGE',
|
|
|
|
Video: 'VIDEO',
|
|
|
|
Audio: 'AUDIO',
|
|
|
|
Other: 'OTHER'
|
2022-07-08 21:26:50 -05:00
|
|
|
} as const;
|
|
|
|
|
2022-07-13 07:23:48 -05:00
|
|
|
export type AssetTypeEnum = typeof AssetTypeEnum[keyof typeof AssetTypeEnum];
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
export interface AuthDeviceResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
'createdAt': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
'updatedAt': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
'current': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
'deviceType': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof AuthDeviceResponseDto
|
|
|
|
*/
|
|
|
|
'deviceOS': string;
|
|
|
|
}
|
2022-12-21 09:43:35 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface ChangePasswordDto
|
|
|
|
*/
|
|
|
|
export interface ChangePasswordDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ChangePasswordDto
|
|
|
|
*/
|
|
|
|
'password': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ChangePasswordDto
|
|
|
|
*/
|
|
|
|
'newPassword': string;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface CheckDuplicateAssetDto
|
|
|
|
*/
|
|
|
|
export interface CheckDuplicateAssetDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CheckDuplicateAssetDto
|
|
|
|
*/
|
|
|
|
'deviceAssetId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CheckDuplicateAssetDto
|
|
|
|
*/
|
|
|
|
'deviceId': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-07-10 21:41:45 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-10 21:41:45 -05:00
|
|
|
* @export
|
|
|
|
* @interface CheckDuplicateAssetResponseDto
|
|
|
|
*/
|
|
|
|
export interface CheckDuplicateAssetResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CheckDuplicateAssetResponseDto
|
|
|
|
*/
|
|
|
|
'isExist': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CheckDuplicateAssetResponseDto
|
|
|
|
*/
|
|
|
|
'id'?: string;
|
2022-07-10 21:41:45 -05:00
|
|
|
}
|
2022-10-25 09:51:03 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface CheckExistingAssetsDto
|
|
|
|
*/
|
|
|
|
export interface CheckExistingAssetsDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof CheckExistingAssetsDto
|
|
|
|
*/
|
|
|
|
'deviceAssetIds': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CheckExistingAssetsDto
|
|
|
|
*/
|
|
|
|
'deviceId': string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface CheckExistingAssetsResponseDto
|
|
|
|
*/
|
|
|
|
export interface CheckExistingAssetsResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof CheckExistingAssetsResponseDto
|
|
|
|
*/
|
|
|
|
'existingIds': Array<string>;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface CreateAlbumDto
|
|
|
|
*/
|
|
|
|
export interface CreateAlbumDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateAlbumDto
|
|
|
|
*/
|
|
|
|
'albumName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof CreateAlbumDto
|
|
|
|
*/
|
|
|
|
'sharedWithUserIds'?: Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof CreateAlbumDto
|
|
|
|
*/
|
|
|
|
'assetIds'?: Array<string>;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface CreateAlbumShareLinkDto
|
|
|
|
*/
|
|
|
|
export interface CreateAlbumShareLinkDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateAlbumShareLinkDto
|
|
|
|
*/
|
|
|
|
'albumId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateAlbumShareLinkDto
|
|
|
|
*/
|
2023-01-25 11:35:28 -05:00
|
|
|
'expiresAt'?: string;
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CreateAlbumShareLinkDto
|
|
|
|
*/
|
|
|
|
'allowUpload'?: boolean;
|
2023-01-21 22:15:16 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CreateAlbumShareLinkDto
|
|
|
|
*/
|
|
|
|
'allowDownload'?: boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CreateAlbumShareLinkDto
|
|
|
|
*/
|
|
|
|
'showExif'?: boolean;
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateAlbumShareLinkDto
|
|
|
|
*/
|
|
|
|
'description'?: string;
|
|
|
|
}
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface CreateAssetsShareLinkDto
|
|
|
|
*/
|
|
|
|
export interface CreateAssetsShareLinkDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof CreateAssetsShareLinkDto
|
|
|
|
*/
|
|
|
|
'assetIds': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateAssetsShareLinkDto
|
|
|
|
*/
|
2023-01-25 11:35:28 -05:00
|
|
|
'expiresAt'?: string;
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CreateAssetsShareLinkDto
|
|
|
|
*/
|
|
|
|
'allowUpload'?: boolean;
|
2023-01-21 22:15:16 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CreateAssetsShareLinkDto
|
|
|
|
*/
|
|
|
|
'allowDownload'?: boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof CreateAssetsShareLinkDto
|
|
|
|
*/
|
|
|
|
'showExif'?: boolean;
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateAssetsShareLinkDto
|
|
|
|
*/
|
|
|
|
'description'?: string;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface CreateProfileImageResponseDto
|
|
|
|
*/
|
|
|
|
export interface CreateProfileImageResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateProfileImageResponseDto
|
|
|
|
*/
|
|
|
|
'userId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateProfileImageResponseDto
|
|
|
|
*/
|
|
|
|
'profileImagePath': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface CreateTagDto
|
|
|
|
*/
|
|
|
|
export interface CreateTagDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {TagTypeEnum}
|
|
|
|
* @memberof CreateTagDto
|
|
|
|
*/
|
|
|
|
'type': TagTypeEnum;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateTagDto
|
|
|
|
*/
|
|
|
|
'name': string;
|
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface CreateUserDto
|
|
|
|
*/
|
|
|
|
export interface CreateUserDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateUserDto
|
|
|
|
*/
|
|
|
|
'email': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateUserDto
|
|
|
|
*/
|
|
|
|
'password': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateUserDto
|
|
|
|
*/
|
|
|
|
'firstName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CreateUserDto
|
|
|
|
*/
|
|
|
|
'lastName': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface CuratedLocationsResponseDto
|
|
|
|
*/
|
|
|
|
export interface CuratedLocationsResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedLocationsResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedLocationsResponseDto
|
|
|
|
*/
|
|
|
|
'city': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedLocationsResponseDto
|
|
|
|
*/
|
|
|
|
'resizePath': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedLocationsResponseDto
|
|
|
|
*/
|
|
|
|
'deviceAssetId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedLocationsResponseDto
|
|
|
|
*/
|
|
|
|
'deviceId': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface CuratedObjectsResponseDto
|
|
|
|
*/
|
|
|
|
export interface CuratedObjectsResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedObjectsResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedObjectsResponseDto
|
|
|
|
*/
|
|
|
|
'object': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedObjectsResponseDto
|
|
|
|
*/
|
|
|
|
'resizePath': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedObjectsResponseDto
|
|
|
|
*/
|
|
|
|
'deviceAssetId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof CuratedObjectsResponseDto
|
|
|
|
*/
|
|
|
|
'deviceId': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface DeleteAssetDto
|
|
|
|
*/
|
|
|
|
export interface DeleteAssetDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof DeleteAssetDto
|
|
|
|
*/
|
|
|
|
'ids': Array<string>;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
2022-07-13 07:23:48 -05:00
|
|
|
* @interface DeleteAssetResponseDto
|
2022-07-08 21:26:50 -05:00
|
|
|
*/
|
2022-07-13 07:23:48 -05:00
|
|
|
export interface DeleteAssetResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {DeleteAssetStatus}
|
|
|
|
* @memberof DeleteAssetResponseDto
|
|
|
|
*/
|
|
|
|
'status': DeleteAssetStatus;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof DeleteAssetResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
2022-07-13 07:23:48 -05:00
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2022-07-13 07:23:48 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-13 07:23:48 -05:00
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const DeleteAssetStatus = {
|
2022-07-26 20:53:25 -05:00
|
|
|
Success: 'SUCCESS',
|
|
|
|
Failed: 'FAILED'
|
2022-07-13 07:23:48 -05:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type DeleteAssetStatus = typeof DeleteAssetStatus[keyof typeof DeleteAssetStatus];
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface DownloadFilesDto
|
|
|
|
*/
|
|
|
|
export interface DownloadFilesDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof DownloadFilesDto
|
|
|
|
*/
|
|
|
|
'assetIds': Array<string>;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface EditSharedLinkDto
|
|
|
|
*/
|
|
|
|
export interface EditSharedLinkDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof EditSharedLinkDto
|
|
|
|
*/
|
|
|
|
'description'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof EditSharedLinkDto
|
|
|
|
*/
|
2023-01-25 11:35:28 -05:00
|
|
|
'expiresAt'?: string | null;
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof EditSharedLinkDto
|
|
|
|
*/
|
|
|
|
'allowUpload'?: boolean;
|
2023-01-21 22:15:16 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof EditSharedLinkDto
|
|
|
|
*/
|
|
|
|
'allowDownload'?: boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof EditSharedLinkDto
|
|
|
|
*/
|
|
|
|
'showExif'?: boolean;
|
2023-01-09 14:16:08 -06:00
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface ExifResponseDto
|
|
|
|
*/
|
|
|
|
export interface ExifResponseDto {
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2022-07-26 20:53:25 -05:00
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
2022-10-06 11:25:54 -05:00
|
|
|
'fileSizeInByte'?: number | null;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'make'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'model'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'exifImageWidth'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'exifImageHeight'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'orientation'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'dateTimeOriginal'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'modifyDate'?: string | null;
|
2023-04-02 21:11:24 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'timeZone'?: string | null;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'lensModel'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'fNumber'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'focalLength'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'iso'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
2023-01-26 13:14:05 -06:00
|
|
|
* @type {string}
|
2022-07-26 20:53:25 -05:00
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
2023-01-26 13:14:05 -06:00
|
|
|
'exposureTime'?: string | null;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'latitude'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'longitude'?: number | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'city'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'state'?: string | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'country'?: string | null;
|
2023-04-13 10:22:06 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ExifResponseDto
|
|
|
|
*/
|
|
|
|
'description'?: string | null;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2022-09-04 08:34:39 -05:00
|
|
|
* @interface GetAssetByTimeBucketDto
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
export interface GetAssetByTimeBucketDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof GetAssetByTimeBucketDto
|
|
|
|
*/
|
|
|
|
'timeBucket': Array<string>;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface GetAssetCountByTimeBucketDto
|
|
|
|
*/
|
|
|
|
export interface GetAssetCountByTimeBucketDto {
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {TimeGroupEnum}
|
2022-09-04 08:34:39 -05:00
|
|
|
* @memberof GetAssetCountByTimeBucketDto
|
2022-08-26 22:53:37 -07:00
|
|
|
*/
|
|
|
|
'timeGroup': TimeGroupEnum;
|
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const JobCommand = {
|
|
|
|
Start: 'start',
|
2023-03-20 11:55:28 -04:00
|
|
|
Pause: 'pause',
|
2023-03-28 14:25:22 -04:00
|
|
|
Resume: 'resume',
|
2023-03-20 11:55:28 -04:00
|
|
|
Empty: 'empty'
|
2022-10-06 11:25:54 -05:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type JobCommand = typeof JobCommand[keyof typeof JobCommand];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface JobCommandDto
|
|
|
|
*/
|
|
|
|
export interface JobCommandDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {JobCommand}
|
|
|
|
* @memberof JobCommandDto
|
|
|
|
*/
|
|
|
|
'command': JobCommand;
|
2023-01-26 22:50:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof JobCommandDto
|
|
|
|
*/
|
2023-03-20 11:55:28 -04:00
|
|
|
'force': boolean;
|
2022-10-06 11:25:54 -05:00
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2023-03-20 11:55:28 -04:00
|
|
|
* @interface JobCountsDto
|
2022-10-06 11:25:54 -05:00
|
|
|
*/
|
2023-03-20 11:55:28 -04:00
|
|
|
export interface JobCountsDto {
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof JobCountsDto
|
2022-10-06 11:25:54 -05:00
|
|
|
*/
|
|
|
|
'active': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof JobCountsDto
|
2022-10-06 11:25:54 -05:00
|
|
|
*/
|
|
|
|
'completed': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof JobCountsDto
|
2022-10-06 11:25:54 -05:00
|
|
|
*/
|
|
|
|
'failed': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof JobCountsDto
|
2022-10-06 11:25:54 -05:00
|
|
|
*/
|
|
|
|
'delayed': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
2023-03-20 11:55:28 -04:00
|
|
|
* @memberof JobCountsDto
|
2022-10-06 11:25:54 -05:00
|
|
|
*/
|
|
|
|
'waiting': number;
|
2023-03-29 17:33:03 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof JobCountsDto
|
|
|
|
*/
|
|
|
|
'paused': number;
|
2022-10-06 11:25:54 -05:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
2023-03-20 11:55:28 -04:00
|
|
|
export const JobName = {
|
|
|
|
ThumbnailGenerationQueue: 'thumbnail-generation-queue',
|
|
|
|
MetadataExtractionQueue: 'metadata-extraction-queue',
|
|
|
|
VideoConversionQueue: 'video-conversion-queue',
|
|
|
|
ObjectTaggingQueue: 'object-tagging-queue',
|
|
|
|
ClipEncodingQueue: 'clip-encoding-queue',
|
|
|
|
BackgroundTaskQueue: 'background-task-queue',
|
|
|
|
StorageTemplateMigrationQueue: 'storage-template-migration-queue',
|
|
|
|
SearchQueue: 'search-queue'
|
2022-10-06 11:25:54 -05:00
|
|
|
} as const;
|
|
|
|
|
2023-03-20 11:55:28 -04:00
|
|
|
export type JobName = typeof JobName[keyof typeof JobName];
|
2022-10-06 11:25:54 -05:00
|
|
|
|
|
|
|
|
2023-04-01 22:46:07 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface JobStatusDto
|
|
|
|
*/
|
|
|
|
export interface JobStatusDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {JobCountsDto}
|
|
|
|
* @memberof JobStatusDto
|
|
|
|
*/
|
|
|
|
'jobCounts': JobCountsDto;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {QueueStatusDto}
|
|
|
|
* @memberof JobStatusDto
|
|
|
|
*/
|
|
|
|
'queueStatus': QueueStatusDto;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface LoginCredentialDto
|
|
|
|
*/
|
|
|
|
export interface LoginCredentialDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginCredentialDto
|
|
|
|
*/
|
|
|
|
'email': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginCredentialDto
|
|
|
|
*/
|
|
|
|
'password': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface LoginResponseDto
|
|
|
|
*/
|
|
|
|
export interface LoginResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'accessToken': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'userId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'userEmail': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'firstName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'lastName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'profileImagePath': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'isAdmin': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof LoginResponseDto
|
|
|
|
*/
|
|
|
|
'shouldChangePassword': boolean;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-07-19 20:49:58 +02:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-19 20:49:58 +02:00
|
|
|
* @export
|
|
|
|
* @interface LogoutResponseDto
|
|
|
|
*/
|
|
|
|
export interface LogoutResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof LogoutResponseDto
|
|
|
|
*/
|
|
|
|
'successful': boolean;
|
2022-11-14 21:24:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof LogoutResponseDto
|
|
|
|
*/
|
|
|
|
'redirectUri': string;
|
|
|
|
}
|
2023-05-06 03:33:30 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface MapMarkerResponseDto
|
|
|
|
*/
|
|
|
|
export interface MapMarkerResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {AssetTypeEnum}
|
|
|
|
* @memberof MapMarkerResponseDto
|
|
|
|
*/
|
|
|
|
'type': AssetTypeEnum;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof MapMarkerResponseDto
|
|
|
|
*/
|
|
|
|
'lat': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof MapMarkerResponseDto
|
|
|
|
*/
|
|
|
|
'lon': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof MapMarkerResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-14 21:24:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface OAuthCallbackDto
|
|
|
|
*/
|
|
|
|
export interface OAuthCallbackDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof OAuthCallbackDto
|
|
|
|
*/
|
|
|
|
'url': string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface OAuthConfigDto
|
|
|
|
*/
|
|
|
|
export interface OAuthConfigDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof OAuthConfigDto
|
|
|
|
*/
|
|
|
|
'redirectUri': string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface OAuthConfigResponseDto
|
|
|
|
*/
|
|
|
|
export interface OAuthConfigResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof OAuthConfigResponseDto
|
|
|
|
*/
|
|
|
|
'enabled': boolean;
|
2023-01-09 16:32:58 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof OAuthConfigResponseDto
|
|
|
|
*/
|
|
|
|
'passwordLoginEnabled': boolean;
|
2022-11-14 21:24:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof OAuthConfigResponseDto
|
|
|
|
*/
|
|
|
|
'url'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof OAuthConfigResponseDto
|
|
|
|
*/
|
|
|
|
'buttonText'?: string;
|
2023-01-09 16:32:58 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof OAuthConfigResponseDto
|
|
|
|
*/
|
|
|
|
'autoLaunch'?: boolean;
|
2022-07-19 20:49:58 +02:00
|
|
|
}
|
2023-04-01 22:46:07 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface QueueStatusDto
|
|
|
|
*/
|
|
|
|
export interface QueueStatusDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof QueueStatusDto
|
|
|
|
*/
|
|
|
|
'isActive': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof QueueStatusDto
|
|
|
|
*/
|
|
|
|
'isPaused': boolean;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface RemoveAssetsDto
|
|
|
|
*/
|
|
|
|
export interface RemoveAssetsDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof RemoveAssetsDto
|
|
|
|
*/
|
|
|
|
'assetIds': Array<string>;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchAlbumResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchAlbumResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof SearchAlbumResponseDto
|
|
|
|
*/
|
|
|
|
'total': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof SearchAlbumResponseDto
|
|
|
|
*/
|
|
|
|
'count': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<AlbumResponseDto>}
|
|
|
|
* @memberof SearchAlbumResponseDto
|
|
|
|
*/
|
|
|
|
'items': Array<AlbumResponseDto>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<SearchFacetResponseDto>}
|
|
|
|
* @memberof SearchAlbumResponseDto
|
|
|
|
*/
|
|
|
|
'facets': Array<SearchFacetResponseDto>;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface SearchAssetDto
|
|
|
|
*/
|
|
|
|
export interface SearchAssetDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SearchAssetDto
|
|
|
|
*/
|
|
|
|
'searchTerm': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchAssetResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchAssetResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof SearchAssetResponseDto
|
|
|
|
*/
|
|
|
|
'total': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof SearchAssetResponseDto
|
|
|
|
*/
|
|
|
|
'count': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<AssetResponseDto>}
|
|
|
|
* @memberof SearchAssetResponseDto
|
|
|
|
*/
|
|
|
|
'items': Array<AssetResponseDto>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<SearchFacetResponseDto>}
|
|
|
|
* @memberof SearchAssetResponseDto
|
|
|
|
*/
|
|
|
|
'facets': Array<SearchFacetResponseDto>;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchConfigResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchConfigResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SearchConfigResponseDto
|
|
|
|
*/
|
|
|
|
'enabled': boolean;
|
|
|
|
}
|
2023-03-05 15:44:31 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchExploreItem
|
|
|
|
*/
|
|
|
|
export interface SearchExploreItem {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SearchExploreItem
|
|
|
|
*/
|
|
|
|
'value': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {AssetResponseDto}
|
|
|
|
* @memberof SearchExploreItem
|
|
|
|
*/
|
|
|
|
'data': AssetResponseDto;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchExploreResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchExploreResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SearchExploreResponseDto
|
|
|
|
*/
|
|
|
|
'fieldName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<SearchExploreItem>}
|
|
|
|
* @memberof SearchExploreResponseDto
|
|
|
|
*/
|
|
|
|
'items': Array<SearchExploreItem>;
|
|
|
|
}
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchFacetCountResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchFacetCountResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof SearchFacetCountResponseDto
|
|
|
|
*/
|
|
|
|
'count': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SearchFacetCountResponseDto
|
|
|
|
*/
|
|
|
|
'value': string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchFacetResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchFacetResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SearchFacetResponseDto
|
|
|
|
*/
|
|
|
|
'fieldName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<SearchFacetCountResponseDto>}
|
|
|
|
* @memberof SearchFacetResponseDto
|
|
|
|
*/
|
|
|
|
'counts': Array<SearchFacetCountResponseDto>;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SearchResponseDto
|
|
|
|
*/
|
|
|
|
export interface SearchResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SearchAlbumResponseDto}
|
|
|
|
* @memberof SearchResponseDto
|
|
|
|
*/
|
|
|
|
'albums': SearchAlbumResponseDto;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SearchAssetResponseDto}
|
|
|
|
* @memberof SearchResponseDto
|
|
|
|
*/
|
|
|
|
'assets': SearchAssetResponseDto;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
export interface ServerInfoResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskSizeRaw': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskUseRaw': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskAvailableRaw': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskUsagePercentage': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskSize': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskUse': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ServerInfoResponseDto
|
|
|
|
*/
|
|
|
|
'diskAvailable': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface ServerPingResponse
|
|
|
|
*/
|
|
|
|
export interface ServerPingResponse {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof ServerPingResponse
|
|
|
|
*/
|
|
|
|
'res': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface ServerStatsResponseDto
|
|
|
|
*/
|
|
|
|
export interface ServerStatsResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerStatsResponseDto
|
|
|
|
*/
|
|
|
|
'photos': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerStatsResponseDto
|
|
|
|
*/
|
|
|
|
'videos': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerStatsResponseDto
|
|
|
|
*/
|
2023-02-26 20:57:34 +01:00
|
|
|
'usage': number;
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<UsageByUserDto>}
|
|
|
|
* @memberof ServerStatsResponseDto
|
|
|
|
*/
|
|
|
|
'usageByUser': Array<UsageByUserDto>;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface ServerVersionReponseDto
|
|
|
|
*/
|
|
|
|
export interface ServerVersionReponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerVersionReponseDto
|
|
|
|
*/
|
|
|
|
'major': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerVersionReponseDto
|
|
|
|
*/
|
|
|
|
'minor': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof ServerVersionReponseDto
|
|
|
|
*/
|
|
|
|
'patch': number;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
export interface SharedLinkResponseDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SharedLinkType}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'type': SharedLinkType;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'description'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'userId': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'key': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'createdAt': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'expiresAt': string | null;
|
|
|
|
/**
|
|
|
|
*
|
2023-01-09 16:32:58 -05:00
|
|
|
* @type {Array<AssetResponseDto>}
|
2023-01-09 14:16:08 -06:00
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
2023-01-09 16:32:58 -05:00
|
|
|
'assets': Array<AssetResponseDto>;
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {AlbumResponseDto}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'album'?: AlbumResponseDto;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'allowUpload': boolean;
|
2023-01-21 22:15:16 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'allowDownload': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SharedLinkResponseDto
|
|
|
|
*/
|
|
|
|
'showExif': boolean;
|
2023-01-09 14:16:08 -06:00
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const SharedLinkType = {
|
|
|
|
Album: 'ALBUM',
|
|
|
|
Individual: 'INDIVIDUAL'
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type SharedLinkType = typeof SharedLinkType[keyof typeof SharedLinkType];
|
|
|
|
|
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface SignUpDto
|
|
|
|
*/
|
|
|
|
export interface SignUpDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SignUpDto
|
|
|
|
*/
|
|
|
|
'email': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SignUpDto
|
|
|
|
*/
|
|
|
|
'password': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SignUpDto
|
|
|
|
*/
|
|
|
|
'firstName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SignUpDto
|
|
|
|
*/
|
|
|
|
'lastName': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface SmartInfoResponseDto
|
|
|
|
*/
|
|
|
|
export interface SmartInfoResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SmartInfoResponseDto
|
|
|
|
*/
|
|
|
|
'tags'?: Array<string> | null;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SmartInfoResponseDto
|
|
|
|
*/
|
|
|
|
'objects'?: Array<string> | null;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-07-15 23:18:17 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-15 23:18:17 -05:00
|
|
|
* @export
|
2022-12-09 15:51:42 -05:00
|
|
|
* @interface SystemConfigDto
|
2022-07-15 23:18:17 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
export interface SystemConfigDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SystemConfigFFmpegDto}
|
|
|
|
* @memberof SystemConfigDto
|
|
|
|
*/
|
|
|
|
'ffmpeg': SystemConfigFFmpegDto;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SystemConfigOAuthDto}
|
|
|
|
* @memberof SystemConfigDto
|
|
|
|
*/
|
|
|
|
'oauth': SystemConfigOAuthDto;
|
2023-01-09 16:32:58 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SystemConfigPasswordLoginDto}
|
|
|
|
* @memberof SystemConfigDto
|
|
|
|
*/
|
|
|
|
'passwordLogin': SystemConfigPasswordLoginDto;
|
2022-12-16 14:26:12 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {SystemConfigStorageTemplateDto}
|
|
|
|
* @memberof SystemConfigDto
|
|
|
|
*/
|
|
|
|
'storageTemplate': SystemConfigStorageTemplateDto;
|
2022-12-09 15:51:42 -05:00
|
|
|
}
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2022-12-09 15:51:42 -05:00
|
|
|
* @interface SystemConfigFFmpegDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
export interface SystemConfigFFmpegDto {
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
2022-12-09 15:51:42 -05:00
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigFFmpegDto
|
|
|
|
*/
|
|
|
|
'crf': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigFFmpegDto
|
|
|
|
*/
|
|
|
|
'preset': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigFFmpegDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
'targetVideoCodec': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigFFmpegDto
|
|
|
|
*/
|
|
|
|
'targetAudioCodec': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigFFmpegDto
|
|
|
|
*/
|
2023-04-04 02:42:53 +01:00
|
|
|
'targetResolution': string;
|
2023-01-22 02:09:02 +00:00
|
|
|
/**
|
|
|
|
*
|
2023-03-28 22:03:43 +03:00
|
|
|
* @type {string}
|
2023-01-22 02:09:02 +00:00
|
|
|
* @memberof SystemConfigFFmpegDto
|
|
|
|
*/
|
2023-03-28 22:03:43 +03:00
|
|
|
'transcode': SystemConfigFFmpegDtoTranscodeEnum;
|
2022-11-14 23:39:32 -05:00
|
|
|
}
|
2023-03-28 22:03:43 +03:00
|
|
|
|
|
|
|
export const SystemConfigFFmpegDtoTranscodeEnum = {
|
|
|
|
All: 'all',
|
|
|
|
Optimal: 'optimal',
|
2023-04-06 04:32:59 +01:00
|
|
|
Required: 'required',
|
|
|
|
Disabled: 'disabled'
|
2023-03-28 22:03:43 +03:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type SystemConfigFFmpegDtoTranscodeEnum = typeof SystemConfigFFmpegDtoTranscodeEnum[keyof typeof SystemConfigFFmpegDtoTranscodeEnum];
|
|
|
|
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2022-12-09 15:51:42 -05:00
|
|
|
* @interface SystemConfigOAuthDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
export interface SystemConfigOAuthDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
|
|
|
*/
|
|
|
|
'enabled': boolean;
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
2022-12-09 15:51:42 -05:00
|
|
|
* @memberof SystemConfigOAuthDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
'issuerUrl': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
|
|
|
*/
|
|
|
|
'clientId': string;
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
2022-12-09 15:51:42 -05:00
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
'clientSecret': string;
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
2022-12-09 15:51:42 -05:00
|
|
|
* @memberof SystemConfigOAuthDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
'scope': string;
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
2022-12-09 15:51:42 -05:00
|
|
|
* @memberof SystemConfigOAuthDto
|
|
|
|
*/
|
|
|
|
'buttonText': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
'autoRegister': boolean;
|
2023-01-09 16:32:58 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
|
|
|
*/
|
|
|
|
'autoLaunch': boolean;
|
2022-12-29 15:47:30 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
|
|
|
*/
|
|
|
|
'mobileOverrideEnabled': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigOAuthDto
|
|
|
|
*/
|
|
|
|
'mobileRedirectUri': string;
|
2022-11-14 23:39:32 -05:00
|
|
|
}
|
2023-01-09 16:32:58 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SystemConfigPasswordLoginDto
|
|
|
|
*/
|
|
|
|
export interface SystemConfigPasswordLoginDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof SystemConfigPasswordLoginDto
|
|
|
|
*/
|
|
|
|
'enabled': boolean;
|
|
|
|
}
|
2022-12-16 14:26:12 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SystemConfigStorageTemplateDto
|
|
|
|
*/
|
|
|
|
export interface SystemConfigStorageTemplateDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof SystemConfigStorageTemplateDto
|
|
|
|
*/
|
|
|
|
'template': string;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
export interface SystemConfigTemplateStorageOptionDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'yearOptions': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'monthOptions': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'dayOptions': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'hourOptions': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'minuteOptions': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'secondOptions': Array<string>;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof SystemConfigTemplateStorageOptionDto
|
|
|
|
*/
|
|
|
|
'presetOptions': Array<string>;
|
|
|
|
}
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
2022-12-06 15:46:13 -06:00
|
|
|
* @interface TagResponseDto
|
2022-11-14 23:39:32 -05:00
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
export interface TagResponseDto {
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
2022-12-06 15:46:13 -06:00
|
|
|
* @memberof TagResponseDto
|
2022-12-05 11:56:44 -06:00
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
2022-12-06 15:46:13 -06:00
|
|
|
* @type {TagTypeEnum}
|
|
|
|
* @memberof TagResponseDto
|
2022-12-05 11:56:44 -06:00
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
'type': TagTypeEnum;
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
2022-12-06 15:46:13 -06:00
|
|
|
* @memberof TagResponseDto
|
2022-12-05 11:56:44 -06:00
|
|
|
*/
|
|
|
|
'name': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof TagResponseDto
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
'userId': string;
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof TagResponseDto
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
'renameTagId'?: string | null;
|
2022-12-05 11:56:44 -06:00
|
|
|
}
|
2023-04-09 04:26:09 +02:00
|
|
|
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const TagTypeEnum = {
|
|
|
|
Object: 'OBJECT',
|
|
|
|
Face: 'FACE',
|
|
|
|
Custom: 'CUSTOM'
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type TagTypeEnum = typeof TagTypeEnum[keyof typeof TagTypeEnum];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const ThumbnailFormat = {
|
|
|
|
Jpeg: 'JPEG',
|
|
|
|
Webp: 'WEBP'
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type ThumbnailFormat = typeof ThumbnailFormat[keyof typeof ThumbnailFormat];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-08-26 22:53:37 -07:00
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const TimeGroupEnum = {
|
|
|
|
Day: 'day',
|
|
|
|
Month: 'month'
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export type TimeGroupEnum = typeof TimeGroupEnum[keyof typeof TimeGroupEnum];
|
|
|
|
|
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface UpdateAlbumDto
|
|
|
|
*/
|
|
|
|
export interface UpdateAlbumDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateAlbumDto
|
|
|
|
*/
|
2022-07-27 11:16:02 -05:00
|
|
|
'albumName'?: string;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateAlbumDto
|
|
|
|
*/
|
2022-07-27 11:16:02 -05:00
|
|
|
'albumThumbnailAssetId'?: string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-11-08 11:20:36 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface UpdateAssetDto
|
|
|
|
*/
|
|
|
|
export interface UpdateAssetDto {
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Array<string>}
|
|
|
|
* @memberof UpdateAssetDto
|
|
|
|
*/
|
|
|
|
'tagIds'?: Array<string>;
|
2022-11-08 11:20:36 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof UpdateAssetDto
|
|
|
|
*/
|
2022-12-05 11:56:44 -06:00
|
|
|
'isFavorite'?: boolean;
|
2023-04-12 18:37:52 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof UpdateAssetDto
|
|
|
|
*/
|
|
|
|
'isArchived'?: boolean;
|
2023-04-13 10:22:06 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateAssetDto
|
|
|
|
*/
|
|
|
|
'description'?: string;
|
2022-11-08 11:20:36 -05:00
|
|
|
}
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface UpdateTagDto
|
|
|
|
*/
|
|
|
|
export interface UpdateTagDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateTagDto
|
|
|
|
*/
|
|
|
|
'name'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateTagDto
|
|
|
|
*/
|
|
|
|
'renameTagId'?: string;
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface UpdateUserDto
|
|
|
|
*/
|
|
|
|
export interface UpdateUserDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateUserDto
|
2022-12-27 11:36:31 -05:00
|
|
|
*/
|
|
|
|
'email'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateUserDto
|
2022-07-26 20:53:25 -05:00
|
|
|
*/
|
|
|
|
'password'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateUserDto
|
|
|
|
*/
|
|
|
|
'firstName'?: string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UpdateUserDto
|
|
|
|
*/
|
|
|
|
'lastName'?: string;
|
|
|
|
/**
|
|
|
|
*
|
2023-04-01 11:43:45 -05:00
|
|
|
* @type {string}
|
2022-07-26 20:53:25 -05:00
|
|
|
* @memberof UpdateUserDto
|
|
|
|
*/
|
2023-04-01 11:43:45 -05:00
|
|
|
'id': string;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof UpdateUserDto
|
|
|
|
*/
|
2023-04-01 11:43:45 -05:00
|
|
|
'isAdmin'?: boolean;
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-04-01 11:43:45 -05:00
|
|
|
* @type {boolean}
|
2022-07-26 20:53:25 -05:00
|
|
|
* @memberof UpdateUserDto
|
|
|
|
*/
|
2023-04-01 11:43:45 -05:00
|
|
|
'shouldChangePassword'?: boolean;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @interface UsageByUserDto
|
|
|
|
*/
|
|
|
|
export interface UsageByUserDto {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UsageByUserDto
|
|
|
|
*/
|
|
|
|
'userId': string;
|
|
|
|
/**
|
|
|
|
*
|
2023-02-26 20:57:34 +01:00
|
|
|
* @type {string}
|
2022-10-23 16:54:54 -05:00
|
|
|
* @memberof UsageByUserDto
|
|
|
|
*/
|
2023-02-26 20:57:34 +01:00
|
|
|
'userFirstName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UsageByUserDto
|
|
|
|
*/
|
|
|
|
'userLastName': string;
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof UsageByUserDto
|
|
|
|
*/
|
|
|
|
'photos': number;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof UsageByUserDto
|
|
|
|
*/
|
2023-02-26 20:57:34 +01:00
|
|
|
'videos': number;
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-02-26 20:57:34 +01:00
|
|
|
* @type {number}
|
2022-10-23 16:54:54 -05:00
|
|
|
* @memberof UsageByUserDto
|
|
|
|
*/
|
2023-02-26 20:57:34 +01:00
|
|
|
'usage': number;
|
2022-10-23 16:54:54 -05:00
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface UserCountResponseDto
|
|
|
|
*/
|
|
|
|
export interface UserCountResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
* @memberof UserCountResponseDto
|
|
|
|
*/
|
|
|
|
'userCount': number;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-08 21:26:50 -05:00
|
|
|
* @export
|
|
|
|
* @interface UserResponseDto
|
|
|
|
*/
|
|
|
|
export interface UserResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'id': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'email': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'firstName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'lastName': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'createdAt': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'profileImagePath': string;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'shouldChangePassword': boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'isAdmin': boolean;
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
2022-11-26 17:16:02 +01:00
|
|
|
'deletedAt'?: string;
|
2023-03-03 23:38:30 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'updatedAt'?: string;
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
* @memberof UserResponseDto
|
|
|
|
*/
|
|
|
|
'oauthId': string;
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-07-13 07:23:48 -05:00
|
|
|
/**
|
2022-07-26 20:53:25 -05:00
|
|
|
*
|
2022-07-13 07:23:48 -05:00
|
|
|
* @export
|
|
|
|
* @interface ValidateAccessTokenResponseDto
|
|
|
|
*/
|
|
|
|
export interface ValidateAccessTokenResponseDto {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
* @memberof ValidateAccessTokenResponseDto
|
|
|
|
*/
|
|
|
|
'authStatus': boolean;
|
2022-07-13 07:23:48 -05:00
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
/**
|
|
|
|
* APIKeyApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const APIKeyApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {APIKeyCreateDto} aPIKeyCreateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createKey: async (aPIKeyCreateDto: APIKeyCreateDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'aPIKeyCreateDto' is not null or undefined
|
|
|
|
assertParamExists('createKey', 'aPIKeyCreateDto', aPIKeyCreateDto)
|
|
|
|
const localVarPath = `/api-key`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(aPIKeyCreateDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
deleteKey: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-01-02 15:22:33 -05:00
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('deleteKey', 'id', id)
|
|
|
|
const localVarPath = `/api-key/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
getKey: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-01-02 15:22:33 -05:00
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('getKey', 'id', id)
|
|
|
|
const localVarPath = `/api-key/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getKeys: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/api-key`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {APIKeyUpdateDto} aPIKeyUpdateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
updateKey: async (id: string, aPIKeyUpdateDto: APIKeyUpdateDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-01-02 15:22:33 -05:00
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('updateKey', 'id', id)
|
|
|
|
// verify required parameter 'aPIKeyUpdateDto' is not null or undefined
|
|
|
|
assertParamExists('updateKey', 'aPIKeyUpdateDto', aPIKeyUpdateDto)
|
|
|
|
const localVarPath = `/api-key/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-02 15:22:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(aPIKeyUpdateDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* APIKeyApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const APIKeyApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = APIKeyApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {APIKeyCreateDto} aPIKeyCreateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async createKey(aPIKeyCreateDto: APIKeyCreateDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIKeyCreateResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createKey(aPIKeyCreateDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
async deleteKey(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
2023-01-02 15:22:33 -05:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteKey(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
async getKey(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIKeyResponseDto>> {
|
2023-01-02 15:22:33 -05:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getKey(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getKeys(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<APIKeyResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getKeys(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {APIKeyUpdateDto} aPIKeyUpdateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
async updateKey(id: string, aPIKeyUpdateDto: APIKeyUpdateDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIKeyResponseDto>> {
|
2023-01-02 15:22:33 -05:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateKey(id, aPIKeyUpdateDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* APIKeyApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const APIKeyApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = APIKeyApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {APIKeyCreateDto} aPIKeyCreateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createKey(aPIKeyCreateDto: APIKeyCreateDto, options?: any): AxiosPromise<APIKeyCreateResponseDto> {
|
|
|
|
return localVarFp.createKey(aPIKeyCreateDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
deleteKey(id: string, options?: any): AxiosPromise<void> {
|
2023-01-02 15:22:33 -05:00
|
|
|
return localVarFp.deleteKey(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
getKey(id: string, options?: any): AxiosPromise<APIKeyResponseDto> {
|
2023-01-02 15:22:33 -05:00
|
|
|
return localVarFp.getKey(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getKeys(options?: any): AxiosPromise<Array<APIKeyResponseDto>> {
|
|
|
|
return localVarFp.getKeys(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {APIKeyUpdateDto} aPIKeyUpdateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
updateKey(id: string, aPIKeyUpdateDto: APIKeyUpdateDto, options?: any): AxiosPromise<APIKeyResponseDto> {
|
2023-01-02 15:22:33 -05:00
|
|
|
return localVarFp.updateKey(id, aPIKeyUpdateDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* APIKeyApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class APIKeyApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class APIKeyApi extends BaseAPI {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {APIKeyCreateDto} aPIKeyCreateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof APIKeyApi
|
|
|
|
*/
|
|
|
|
public createKey(aPIKeyCreateDto: APIKeyCreateDto, options?: AxiosRequestConfig) {
|
|
|
|
return APIKeyApiFp(this.configuration).createKey(aPIKeyCreateDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof APIKeyApi
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
public deleteKey(id: string, options?: AxiosRequestConfig) {
|
2023-01-02 15:22:33 -05:00
|
|
|
return APIKeyApiFp(this.configuration).deleteKey(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof APIKeyApi
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
public getKey(id: string, options?: AxiosRequestConfig) {
|
2023-01-02 15:22:33 -05:00
|
|
|
return APIKeyApiFp(this.configuration).getKey(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof APIKeyApi
|
|
|
|
*/
|
|
|
|
public getKeys(options?: AxiosRequestConfig) {
|
|
|
|
return APIKeyApiFp(this.configuration).getKeys(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} id
|
2023-01-02 15:22:33 -05:00
|
|
|
* @param {APIKeyUpdateDto} aPIKeyUpdateDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof APIKeyApi
|
|
|
|
*/
|
2023-02-19 16:44:53 +00:00
|
|
|
public updateKey(id: string, aPIKeyUpdateDto: APIKeyUpdateDto, options?: AxiosRequestConfig) {
|
2023-01-02 15:22:33 -05:00
|
|
|
return APIKeyApiFp(this.configuration).updateKey(id, aPIKeyUpdateDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
|
|
|
* AlbumApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const AlbumApiAxiosParamCreator = function (configuration?: Configuration) {
|
2022-07-26 20:53:25 -05:00
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
addAssetsToAlbum: async (albumId: string, addAssetsDto: AddAssetsDto, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('addAssetsToAlbum', 'albumId', albumId)
|
|
|
|
// verify required parameter 'addAssetsDto' is not null or undefined
|
|
|
|
assertParamExists('addAssetsToAlbum', 'addAssetsDto', addAssetsDto)
|
|
|
|
const localVarPath = `/album/{albumId}/assets`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(addAssetsDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddUsersDto} addUsersDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
addUsersToAlbum: async (albumId: string, addUsersDto: AddUsersDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('addUsersToAlbum', 'albumId', albumId)
|
|
|
|
// verify required parameter 'addUsersDto' is not null or undefined
|
|
|
|
assertParamExists('addUsersToAlbum', 'addUsersDto', addUsersDto)
|
|
|
|
const localVarPath = `/album/{albumId}/users`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(addUsersDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumDto} createAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createAlbum: async (createAlbumDto: CreateAlbumDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'createAlbumDto' is not null or undefined
|
|
|
|
assertParamExists('createAlbum', 'createAlbumDto', createAlbumDto)
|
|
|
|
const localVarPath = `/album`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(createAlbumDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumShareLinkDto} createAlbumShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createAlbumSharedLink: async (createAlbumShareLinkDto: CreateAlbumShareLinkDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'createAlbumShareLinkDto' is not null or undefined
|
|
|
|
assertParamExists('createAlbumSharedLink', 'createAlbumShareLinkDto', createAlbumShareLinkDto)
|
|
|
|
const localVarPath = `/album/create-shared-link`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(createAlbumShareLinkDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
deleteAlbum: async (albumId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('deleteAlbum', 'albumId', albumId)
|
|
|
|
const localVarPath = `/album/{albumId}`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-30 18:38:04 +01:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-10-30 18:38:04 +01:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-06 19:50:55 +02:00
|
|
|
downloadArchive: async (albumId: string, name?: string, skip?: number, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-10-30 18:38:04 +01:00
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('downloadArchive', 'albumId', albumId)
|
|
|
|
const localVarPath = `/album/{albumId}/download`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-10-30 18:38:04 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-04-06 19:50:55 +02:00
|
|
|
if (name !== undefined) {
|
|
|
|
localVarQueryParameter['name'] = name;
|
|
|
|
}
|
|
|
|
|
2022-11-15 10:51:56 -05:00
|
|
|
if (skip !== undefined) {
|
|
|
|
localVarQueryParameter['skip'] = skip;
|
|
|
|
}
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-10-30 18:38:04 +01:00
|
|
|
|
|
|
|
|
2022-09-07 15:16:18 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAlbumCountByUserId: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/album/count-by-user-id`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-09-07 15:16:18 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getAlbumInfo: async (albumId: string, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('getAlbumInfo', 'albumId', albumId)
|
|
|
|
const localVarPath = `/album/{albumId}`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} [shared]
|
2022-09-05 15:50:20 +02:00
|
|
|
* @param {string} [assetId] Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-09-05 15:50:20 +02:00
|
|
|
getAllAlbums: async (shared?: boolean, assetId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
const localVarPath = `/album`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
if (shared !== undefined) {
|
|
|
|
localVarQueryParameter['shared'] = shared;
|
|
|
|
}
|
|
|
|
|
2022-09-05 15:50:20 +02:00
|
|
|
if (assetId !== undefined) {
|
|
|
|
localVarQueryParameter['assetId'] = assetId;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
removeAssetFromAlbum: async (albumId: string, removeAssetsDto: RemoveAssetsDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('removeAssetFromAlbum', 'albumId', albumId)
|
|
|
|
// verify required parameter 'removeAssetsDto' is not null or undefined
|
|
|
|
assertParamExists('removeAssetFromAlbum', 'removeAssetsDto', removeAssetsDto)
|
|
|
|
const localVarPath = `/album/{albumId}/assets`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(removeAssetsDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
removeUserFromAlbum: async (albumId: string, userId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('removeUserFromAlbum', 'albumId', albumId)
|
|
|
|
// verify required parameter 'userId' is not null or undefined
|
|
|
|
assertParamExists('removeUserFromAlbum', 'userId', userId)
|
|
|
|
const localVarPath = `/album/{albumId}/user/{userId}`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)))
|
|
|
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {UpdateAlbumDto} updateAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
updateAlbumInfo: async (albumId: string, updateAlbumDto: UpdateAlbumDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'albumId' is not null or undefined
|
|
|
|
assertParamExists('updateAlbumInfo', 'albumId', albumId)
|
|
|
|
// verify required parameter 'updateAlbumDto' is not null or undefined
|
|
|
|
assertParamExists('updateAlbumInfo', 'updateAlbumDto', updateAlbumDto)
|
|
|
|
const localVarPath = `/album/{albumId}`
|
|
|
|
.replace(`{${"albumId"}}`, encodeURIComponent(String(albumId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(updateAlbumDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AlbumApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const AlbumApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = AlbumApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async addAssetsToAlbum(albumId: string, addAssetsDto: AddAssetsDto, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddAssetsResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addAssetsToAlbum(albumId, addAssetsDto, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddUsersDto} addUsersDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async addUsersToAlbum(albumId: string, addUsersDto: AddUsersDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AlbumResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addUsersToAlbum(albumId, addUsersDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumDto} createAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async createAlbum(createAlbumDto: CreateAlbumDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AlbumResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createAlbum(createAlbumDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumShareLinkDto} createAlbumShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async createAlbumSharedLink(createAlbumShareLinkDto: CreateAlbumShareLinkDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createAlbumSharedLink(createAlbumShareLinkDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async deleteAlbum(albumId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAlbum(albumId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-10-30 18:38:04 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-10-30 18:38:04 +01:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async downloadArchive(albumId: string, name?: string, skip?: number, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
|
2023-04-06 19:50:55 +02:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadArchive(albumId, name, skip, key, options);
|
2022-10-30 18:38:04 +01:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAlbumCountByUserId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AlbumCountResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAlbumCountByUserId(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async getAlbumInfo(albumId: string, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AlbumResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAlbumInfo(albumId, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} [shared]
|
2022-09-05 15:50:20 +02:00
|
|
|
* @param {string} [assetId] Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-09-05 15:50:20 +02:00
|
|
|
async getAllAlbums(shared?: boolean, assetId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AlbumResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAlbums(shared, assetId, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async removeAssetFromAlbum(albumId: string, removeAssetsDto: RemoveAssetsDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AlbumResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.removeAssetFromAlbum(albumId, removeAssetsDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async removeUserFromAlbum(albumId: string, userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.removeUserFromAlbum(albumId, userId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {UpdateAlbumDto} updateAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async updateAlbumInfo(albumId: string, updateAlbumDto: UpdateAlbumDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AlbumResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAlbumInfo(albumId, updateAlbumDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AlbumApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const AlbumApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = AlbumApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
addAssetsToAlbum(albumId: string, addAssetsDto: AddAssetsDto, key?: string, options?: any): AxiosPromise<AddAssetsResponseDto> {
|
|
|
|
return localVarFp.addAssetsToAlbum(albumId, addAssetsDto, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddUsersDto} addUsersDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
addUsersToAlbum(albumId: string, addUsersDto: AddUsersDto, options?: any): AxiosPromise<AlbumResponseDto> {
|
|
|
|
return localVarFp.addUsersToAlbum(albumId, addUsersDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumDto} createAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createAlbum(createAlbumDto: CreateAlbumDto, options?: any): AxiosPromise<AlbumResponseDto> {
|
|
|
|
return localVarFp.createAlbum(createAlbumDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumShareLinkDto} createAlbumShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createAlbumSharedLink(createAlbumShareLinkDto: CreateAlbumShareLinkDto, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.createAlbumSharedLink(createAlbumShareLinkDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
deleteAlbum(albumId: string, options?: any): AxiosPromise<void> {
|
|
|
|
return localVarFp.deleteAlbum(albumId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-10-30 18:38:04 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-10-30 18:38:04 +01:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
downloadArchive(albumId: string, name?: string, skip?: number, key?: string, options?: any): AxiosPromise<File> {
|
2023-04-06 19:50:55 +02:00
|
|
|
return localVarFp.downloadArchive(albumId, name, skip, key, options).then((request) => request(axios, basePath));
|
2022-10-30 18:38:04 +01:00
|
|
|
},
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAlbumCountByUserId(options?: any): AxiosPromise<AlbumCountResponseDto> {
|
|
|
|
return localVarFp.getAlbumCountByUserId(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getAlbumInfo(albumId: string, key?: string, options?: any): AxiosPromise<AlbumResponseDto> {
|
|
|
|
return localVarFp.getAlbumInfo(albumId, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} [shared]
|
2022-09-05 15:50:20 +02:00
|
|
|
* @param {string} [assetId] Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-09-05 15:50:20 +02:00
|
|
|
getAllAlbums(shared?: boolean, assetId?: string, options?: any): AxiosPromise<Array<AlbumResponseDto>> {
|
|
|
|
return localVarFp.getAllAlbums(shared, assetId, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
removeAssetFromAlbum(albumId: string, removeAssetsDto: RemoveAssetsDto, options?: any): AxiosPromise<AlbumResponseDto> {
|
|
|
|
return localVarFp.removeAssetFromAlbum(albumId, removeAssetsDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
removeUserFromAlbum(albumId: string, userId: string, options?: any): AxiosPromise<void> {
|
|
|
|
return localVarFp.removeUserFromAlbum(albumId, userId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {UpdateAlbumDto} updateAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
updateAlbumInfo(albumId: string, updateAlbumDto: UpdateAlbumDto, options?: any): AxiosPromise<AlbumResponseDto> {
|
|
|
|
return localVarFp.updateAlbumInfo(albumId, updateAlbumDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AlbumApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class AlbumApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class AlbumApi extends BaseAPI {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public addAssetsToAlbum(albumId: string, addAssetsDto: AddAssetsDto, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).addAssetsToAlbum(albumId, addAssetsDto, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {AddUsersDto} addUsersDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public addUsersToAlbum(albumId: string, addUsersDto: AddUsersDto, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).addUsersToAlbum(albumId, addUsersDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumDto} createAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public createAlbum(createAlbumDto: CreateAlbumDto, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).createAlbum(createAlbumDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAlbumShareLinkDto} createAlbumShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public createAlbumSharedLink(createAlbumShareLinkDto: CreateAlbumShareLinkDto, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).createAlbumSharedLink(createAlbumShareLinkDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public deleteAlbum(albumId: string, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).deleteAlbum(albumId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-10-30 18:38:04 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-10-30 18:38:04 +01:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
2023-04-06 19:50:55 +02:00
|
|
|
public downloadArchive(albumId: string, name?: string, skip?: number, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).downloadArchive(albumId, name, skip, key, options).then((request) => request(this.axios, this.basePath));
|
2022-10-30 18:38:04 +01:00
|
|
|
}
|
|
|
|
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public getAlbumCountByUserId(options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).getAlbumCountByUserId(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public getAlbumInfo(albumId: string, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).getAlbumInfo(albumId, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} [shared]
|
2022-09-05 15:50:20 +02:00
|
|
|
* @param {string} [assetId] Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
2022-09-05 15:50:20 +02:00
|
|
|
public getAllAlbums(shared?: boolean, assetId?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).getAllAlbums(shared, assetId, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public removeAssetFromAlbum(albumId: string, removeAssetsDto: RemoveAssetsDto, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).removeAssetFromAlbum(albumId, removeAssetsDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public removeUserFromAlbum(albumId: string, userId: string, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).removeUserFromAlbum(albumId, userId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} albumId
|
|
|
|
* @param {UpdateAlbumDto} updateAlbumDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AlbumApi
|
|
|
|
*/
|
|
|
|
public updateAlbumInfo(albumId: string, updateAlbumDto: UpdateAlbumDto, options?: AxiosRequestConfig) {
|
|
|
|
return AlbumApiFp(this.configuration).updateAlbumInfo(albumId, updateAlbumDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
|
|
|
* AssetApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const AssetApiAxiosParamCreator = function (configuration?: Configuration) {
|
2022-07-26 20:53:25 -05:00
|
|
|
return {
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
addAssetsToSharedLink: async (addAssetsDto: AddAssetsDto, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-02-15 15:21:22 -06:00
|
|
|
// verify required parameter 'addAssetsDto' is not null or undefined
|
|
|
|
assertParamExists('addAssetsToSharedLink', 'addAssetsDto', addAssetsDto)
|
|
|
|
const localVarPath = `/asset/shared-link/add`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-15 15:21:22 -06:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2023-02-15 15:21:22 -06:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(addAssetsDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Check duplicated asset before uploading - for Web upload used
|
|
|
|
* @param {CheckDuplicateAssetDto} checkDuplicateAssetDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
checkDuplicateAsset: async (checkDuplicateAssetDto: CheckDuplicateAssetDto, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'checkDuplicateAssetDto' is not null or undefined
|
|
|
|
assertParamExists('checkDuplicateAsset', 'checkDuplicateAssetDto', checkDuplicateAssetDto)
|
|
|
|
const localVarPath = `/asset/check`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(checkDuplicateAssetDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-10-25 09:51:03 -05:00
|
|
|
/**
|
|
|
|
* Checks if multiple assets exist on the server and returns all existing - used by background backup
|
|
|
|
* @param {CheckExistingAssetsDto} checkExistingAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
checkExistingAssets: async (checkExistingAssetsDto: CheckExistingAssetsDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'checkExistingAssetsDto' is not null or undefined
|
|
|
|
assertParamExists('checkExistingAssets', 'checkExistingAssetsDto', checkExistingAssetsDto)
|
|
|
|
const localVarPath = `/asset/exist`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-10-25 09:51:03 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(checkExistingAssetsDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAssetsShareLinkDto} createAssetsShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createAssetsSharedLink: async (createAssetsShareLinkDto: CreateAssetsShareLinkDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'createAssetsShareLinkDto' is not null or undefined
|
|
|
|
assertParamExists('createAssetsSharedLink', 'createAssetsShareLinkDto', createAssetsShareLinkDto)
|
|
|
|
const localVarPath = `/asset/shared-link`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-01-14 23:49:47 -06:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(createAssetsShareLinkDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DeleteAssetDto} deleteAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
deleteAsset: async (deleteAssetDto: DeleteAssetDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'deleteAssetDto' is not null or undefined
|
|
|
|
assertParamExists('deleteAsset', 'deleteAssetDto', deleteAssetDto)
|
|
|
|
const localVarPath = `/asset`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(deleteAssetDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
downloadFile: async (assetId: string, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-11-16 00:11:16 -06:00
|
|
|
// verify required parameter 'assetId' is not null or undefined
|
|
|
|
assertParamExists('downloadFile', 'assetId', assetId)
|
|
|
|
const localVarPath = `/asset/download/{assetId}`
|
|
|
|
.replace(`{${"assetId"}}`, encodeURIComponent(String(assetId)));
|
2022-07-26 20:53:25 -05:00
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
2022-11-15 10:51:56 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DownloadFilesDto} downloadFilesDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
downloadFiles: async (downloadFilesDto: DownloadFilesDto, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-01-09 14:16:08 -06:00
|
|
|
// verify required parameter 'downloadFilesDto' is not null or undefined
|
|
|
|
assertParamExists('downloadFiles', 'downloadFilesDto', downloadFilesDto)
|
|
|
|
const localVarPath = `/asset/download-files`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(downloadFilesDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-11-15 10:51:56 -05:00
|
|
|
/**
|
2023-01-23 22:46:37 -05:00
|
|
|
* Current this is not used in any UI element
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-06 19:50:55 +02:00
|
|
|
downloadLibrary: async (name?: string, skip?: number, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-11-15 10:51:56 -05:00
|
|
|
const localVarPath = `/asset/download-library`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-11-15 10:51:56 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-04-06 19:50:55 +02:00
|
|
|
if (name !== undefined) {
|
|
|
|
localVarQueryParameter['name'] = name;
|
|
|
|
}
|
|
|
|
|
2022-11-15 10:51:56 -05:00
|
|
|
if (skip !== undefined) {
|
|
|
|
localVarQueryParameter['skip'] = skip;
|
|
|
|
}
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-11-15 10:51:56 -05:00
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Get all AssetEntity belong to the user
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {number} [skip]
|
2022-11-26 17:16:02 +01:00
|
|
|
* @param {string} [ifNoneMatch] ETag of data already cached on the client
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
getAllAssets: async (isFavorite?: boolean, isArchived?: boolean, skip?: number, ifNoneMatch?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
const localVarPath = `/asset`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-23 23:16:20 -05:00
|
|
|
if (isFavorite !== undefined) {
|
|
|
|
localVarQueryParameter['isFavorite'] = isFavorite;
|
|
|
|
}
|
|
|
|
|
2023-04-12 18:37:52 +03:00
|
|
|
if (isArchived !== undefined) {
|
|
|
|
localVarQueryParameter['isArchived'] = isArchived;
|
|
|
|
}
|
|
|
|
|
2023-01-23 23:16:20 -05:00
|
|
|
if (skip !== undefined) {
|
|
|
|
localVarQueryParameter['skip'] = skip;
|
|
|
|
}
|
|
|
|
|
2022-11-26 17:16:02 +01:00
|
|
|
if (ifNoneMatch !== undefined && ifNoneMatch !== null) {
|
|
|
|
localVarHeaderParameter['if-none-match'] = String(ifNoneMatch);
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
2023-04-12 18:37:52 +03:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getArchivedAssetCountByUserId: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/asset/stat/archive`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-04-12 18:37:52 +03:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Get a single asset\'s information
|
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getAssetById: async (assetId: string, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'assetId' is not null or undefined
|
|
|
|
assertParamExists('getAssetById', 'assetId', assetId)
|
|
|
|
const localVarPath = `/asset/assetById/{assetId}`
|
|
|
|
.replace(`{${"assetId"}}`, encodeURIComponent(String(assetId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
2022-09-04 08:34:39 -05:00
|
|
|
* @param {GetAssetByTimeBucketDto} getAssetByTimeBucketDto
|
2022-08-26 22:53:37 -07:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
getAssetByTimeBucket: async (getAssetByTimeBucketDto: GetAssetByTimeBucketDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'getAssetByTimeBucketDto' is not null or undefined
|
|
|
|
assertParamExists('getAssetByTimeBucket', 'getAssetByTimeBucketDto', getAssetByTimeBucketDto)
|
|
|
|
const localVarPath = `/asset/time-bucket`;
|
2022-08-26 22:53:37 -07:00
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
2022-09-04 08:34:39 -05:00
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
2022-08-26 22:53:37 -07:00
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-08-26 22:53:37 -07:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
2022-09-04 08:34:39 -05:00
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(getAssetByTimeBucketDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {GetAssetCountByTimeBucketDto} getAssetCountByTimeBucketDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAssetCountByTimeBucket: async (getAssetCountByTimeBucketDto: GetAssetCountByTimeBucketDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'getAssetCountByTimeBucketDto' is not null or undefined
|
|
|
|
assertParamExists('getAssetCountByTimeBucket', 'getAssetCountByTimeBucketDto', getAssetCountByTimeBucketDto)
|
|
|
|
const localVarPath = `/asset/count-by-time-bucket`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-09-04 08:34:39 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(getAssetCountByTimeBucketDto, localVarRequestOptions, configuration)
|
2022-08-26 22:53:37 -07:00
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAssetCountByUserId: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/asset/count-by-user-id`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-09-07 15:16:18 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAssetSearchTerms: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-08-26 22:53:37 -07:00
|
|
|
const localVarPath = `/asset/search-terms`;
|
2022-07-26 20:53:25 -05:00
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {ThumbnailFormat} [format]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getAssetThumbnail: async (assetId: string, format?: ThumbnailFormat, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'assetId' is not null or undefined
|
|
|
|
assertParamExists('getAssetThumbnail', 'assetId', assetId)
|
|
|
|
const localVarPath = `/asset/thumbnail/{assetId}`
|
|
|
|
.replace(`{${"assetId"}}`, encodeURIComponent(String(assetId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
if (format !== undefined) {
|
|
|
|
localVarQueryParameter['format'] = format;
|
|
|
|
}
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getCuratedLocations: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-08-26 22:53:37 -07:00
|
|
|
const localVarPath = `/asset/curated-locations`;
|
2022-07-26 20:53:25 -05:00
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getCuratedObjects: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-08-26 22:53:37 -07:00
|
|
|
const localVarPath = `/asset/curated-objects`;
|
2022-07-26 20:53:25 -05:00
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-05-06 03:33:30 +02:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Get all assets that have GPS information embedded
|
|
|
|
* @param {boolean} [isFavorite]
|
|
|
|
* @param {boolean} [isArchived]
|
|
|
|
* @param {number} [skip]
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getMapMarkers: async (isFavorite?: boolean, isArchived?: boolean, skip?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/asset/map-marker`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-08 14:59:33 -05:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-05-06 03:33:30 +02:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
if (isFavorite !== undefined) {
|
|
|
|
localVarQueryParameter['isFavorite'] = isFavorite;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isArchived !== undefined) {
|
|
|
|
localVarQueryParameter['isArchived'] = isArchived;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skip !== undefined) {
|
|
|
|
localVarQueryParameter['skip'] = skip;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Get all asset of a device that are in the database, ID only.
|
|
|
|
* @param {string} deviceId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getUserAssetsByDeviceId: async (deviceId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'deviceId' is not null or undefined
|
|
|
|
assertParamExists('getUserAssetsByDeviceId', 'deviceId', deviceId)
|
|
|
|
const localVarPath = `/asset/{deviceId}`
|
|
|
|
.replace(`{${"deviceId"}}`, encodeURIComponent(String(deviceId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
removeAssetsFromSharedLink: async (removeAssetsDto: RemoveAssetsDto, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-02-15 15:21:22 -06:00
|
|
|
// verify required parameter 'removeAssetsDto' is not null or undefined
|
|
|
|
assertParamExists('removeAssetsFromSharedLink', 'removeAssetsDto', removeAssetsDto)
|
|
|
|
const localVarPath = `/asset/shared-link/remove`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-15 15:21:22 -06:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2023-02-15 15:21:22 -06:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(removeAssetsDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SearchAssetDto} searchAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
searchAsset: async (searchAssetDto: SearchAssetDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'searchAssetDto' is not null or undefined
|
|
|
|
assertParamExists('searchAsset', 'searchAssetDto', searchAssetDto)
|
|
|
|
const localVarPath = `/asset/search`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(searchAssetDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {boolean} [isThumb]
|
|
|
|
* @param {boolean} [isWeb]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
serveFile: async (assetId: string, isThumb?: boolean, isWeb?: boolean, key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-11-16 00:11:16 -06:00
|
|
|
// verify required parameter 'assetId' is not null or undefined
|
|
|
|
assertParamExists('serveFile', 'assetId', assetId)
|
|
|
|
const localVarPath = `/asset/file/{assetId}`
|
|
|
|
.replace(`{${"assetId"}}`, encodeURIComponent(String(assetId)));
|
2022-07-26 20:53:25 -05:00
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
if (isThumb !== undefined) {
|
|
|
|
localVarQueryParameter['isThumb'] = isThumb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isWeb !== undefined) {
|
|
|
|
localVarQueryParameter['isWeb'] = isWeb;
|
|
|
|
}
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-11-08 11:20:36 -05:00
|
|
|
/**
|
|
|
|
* Update an asset
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {UpdateAssetDto} updateAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-05 11:56:44 -06:00
|
|
|
updateAsset: async (assetId: string, updateAssetDto: UpdateAssetDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-11-08 11:20:36 -05:00
|
|
|
// verify required parameter 'assetId' is not null or undefined
|
2022-12-05 11:56:44 -06:00
|
|
|
assertParamExists('updateAsset', 'assetId', assetId)
|
2022-11-08 11:20:36 -05:00
|
|
|
// verify required parameter 'updateAssetDto' is not null or undefined
|
2022-12-05 11:56:44 -06:00
|
|
|
assertParamExists('updateAsset', 'updateAssetDto', updateAssetDto)
|
|
|
|
const localVarPath = `/asset/{assetId}`
|
2022-11-08 11:20:36 -05:00
|
|
|
.replace(`{${"assetId"}}`, encodeURIComponent(String(assetId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-11-08 11:20:36 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(updateAssetDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {AssetTypeEnum} assetType
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} assetData
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {string} deviceAssetId
|
|
|
|
* @param {string} deviceId
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} fileCreatedAt
|
|
|
|
* @param {string} fileModifiedAt
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} isFavorite
|
|
|
|
* @param {string} fileExtension
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} [livePhotoData]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} [isVisible]
|
|
|
|
* @param {string} [duration]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
uploadFile: async (assetType: AssetTypeEnum, assetData: File, deviceAssetId: string, deviceId: string, fileCreatedAt: string, fileModifiedAt: string, isFavorite: boolean, fileExtension: string, key?: string, livePhotoData?: File, isArchived?: boolean, isVisible?: boolean, duration?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-02-12 06:54:07 +01:00
|
|
|
// verify required parameter 'assetType' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'assetType', assetType)
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'assetData' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'assetData', assetData)
|
2023-02-12 06:54:07 +01:00
|
|
|
// verify required parameter 'deviceAssetId' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'deviceAssetId', deviceAssetId)
|
|
|
|
// verify required parameter 'deviceId' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'deviceId', deviceId)
|
2023-02-19 16:44:53 +00:00
|
|
|
// verify required parameter 'fileCreatedAt' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'fileCreatedAt', fileCreatedAt)
|
|
|
|
// verify required parameter 'fileModifiedAt' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'fileModifiedAt', fileModifiedAt)
|
2023-02-12 06:54:07 +01:00
|
|
|
// verify required parameter 'isFavorite' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'isFavorite', isFavorite)
|
|
|
|
// verify required parameter 'fileExtension' is not null or undefined
|
|
|
|
assertParamExists('uploadFile', 'fileExtension', fileExtension)
|
2022-07-26 20:53:25 -05:00
|
|
|
const localVarPath = `/asset/upload`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2023-02-12 06:54:07 +01:00
|
|
|
if (assetType !== undefined) {
|
|
|
|
localVarFormParams.append('assetType', new Blob([JSON.stringify(assetType)], { type: "application/json", }));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
if (assetData !== undefined) {
|
|
|
|
localVarFormParams.append('assetData', assetData as any);
|
|
|
|
}
|
|
|
|
|
2023-02-12 06:54:07 +01:00
|
|
|
if (livePhotoData !== undefined) {
|
|
|
|
localVarFormParams.append('livePhotoData', livePhotoData as any);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deviceAssetId !== undefined) {
|
|
|
|
localVarFormParams.append('deviceAssetId', deviceAssetId as any);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deviceId !== undefined) {
|
|
|
|
localVarFormParams.append('deviceId', deviceId as any);
|
|
|
|
}
|
|
|
|
|
2023-02-19 16:44:53 +00:00
|
|
|
if (fileCreatedAt !== undefined) {
|
|
|
|
localVarFormParams.append('fileCreatedAt', fileCreatedAt as any);
|
2023-02-12 06:54:07 +01:00
|
|
|
}
|
|
|
|
|
2023-02-19 16:44:53 +00:00
|
|
|
if (fileModifiedAt !== undefined) {
|
|
|
|
localVarFormParams.append('fileModifiedAt', fileModifiedAt as any);
|
2023-02-12 06:54:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isFavorite !== undefined) {
|
|
|
|
localVarFormParams.append('isFavorite', isFavorite as any);
|
|
|
|
}
|
|
|
|
|
2023-04-12 18:37:52 +03:00
|
|
|
if (isArchived !== undefined) {
|
|
|
|
localVarFormParams.append('isArchived', isArchived as any);
|
|
|
|
}
|
|
|
|
|
2023-02-12 06:54:07 +01:00
|
|
|
if (isVisible !== undefined) {
|
|
|
|
localVarFormParams.append('isVisible', isVisible as any);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fileExtension !== undefined) {
|
|
|
|
localVarFormParams.append('fileExtension', fileExtension as any);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (duration !== undefined) {
|
|
|
|
localVarFormParams.append('duration', duration as any);
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = localVarFormParams;
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AssetApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const AssetApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = AssetApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async addAssetsToSharedLink(addAssetsDto: AddAssetsDto, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addAssetsToSharedLink(addAssetsDto, key, options);
|
2023-02-15 15:21:22 -06:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Check duplicated asset before uploading - for Web upload used
|
|
|
|
* @param {CheckDuplicateAssetDto} checkDuplicateAssetDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async checkDuplicateAsset(checkDuplicateAssetDto: CheckDuplicateAssetDto, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckDuplicateAssetResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkDuplicateAsset(checkDuplicateAssetDto, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-10-25 09:51:03 -05:00
|
|
|
/**
|
|
|
|
* Checks if multiple assets exist on the server and returns all existing - used by background backup
|
|
|
|
* @param {CheckExistingAssetsDto} checkExistingAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async checkExistingAssets(checkExistingAssetsDto: CheckExistingAssetsDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckExistingAssetsResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkExistingAssets(checkExistingAssetsDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAssetsShareLinkDto} createAssetsShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async createAssetsSharedLink(createAssetsShareLinkDto: CreateAssetsShareLinkDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createAssetsSharedLink(createAssetsShareLinkDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DeleteAssetDto} deleteAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async deleteAsset(deleteAssetDto: DeleteAssetDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DeleteAssetResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAsset(deleteAssetDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async downloadFile(assetId: string, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
|
2023-02-24 17:01:10 +01:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadFile(assetId, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DownloadFilesDto} downloadFilesDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async downloadFiles(downloadFilesDto: DownloadFilesDto, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
|
2023-02-24 17:01:10 +01:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadFiles(downloadFilesDto, key, options);
|
2023-01-09 14:16:08 -06:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-11-15 10:51:56 -05:00
|
|
|
/**
|
2023-01-23 22:46:37 -05:00
|
|
|
* Current this is not used in any UI element
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async downloadLibrary(name?: string, skip?: number, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
|
2023-04-06 19:50:55 +02:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadLibrary(name, skip, key, options);
|
2022-11-15 10:51:56 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Get all AssetEntity belong to the user
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {number} [skip]
|
2022-11-26 17:16:02 +01:00
|
|
|
* @param {string} [ifNoneMatch] ETag of data already cached on the client
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
async getAllAssets(isFavorite?: boolean, isArchived?: boolean, skip?: number, ifNoneMatch?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AssetResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAssets(isFavorite, isArchived, skip, ifNoneMatch, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getArchivedAssetCountByUserId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetCountByUserIdResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArchivedAssetCountByUserId(options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Get a single asset\'s information
|
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async getAssetById(assetId: string, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetById(assetId, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
2022-09-04 08:34:39 -05:00
|
|
|
* @param {GetAssetByTimeBucketDto} getAssetByTimeBucketDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAssetByTimeBucket(getAssetByTimeBucketDto: GetAssetByTimeBucketDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AssetResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetByTimeBucket(getAssetByTimeBucketDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {GetAssetCountByTimeBucketDto} getAssetCountByTimeBucketDto
|
2022-08-26 22:53:37 -07:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
async getAssetCountByTimeBucket(getAssetCountByTimeBucketDto: GetAssetCountByTimeBucketDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetCountByTimeBucketResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetCountByTimeBucket(getAssetCountByTimeBucketDto, options);
|
2022-08-26 22:53:37 -07:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAssetCountByUserId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetCountByUserIdResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetCountByUserId(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAssetSearchTerms(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetSearchTerms(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {ThumbnailFormat} [format]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async getAssetThumbnail(assetId: string, format?: ThumbnailFormat, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
|
2023-02-24 17:01:10 +01:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetThumbnail(assetId, format, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getCuratedLocations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CuratedLocationsResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCuratedLocations(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getCuratedObjects(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CuratedObjectsResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCuratedObjects(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-05-06 03:33:30 +02:00
|
|
|
/**
|
|
|
|
* Get all assets that have GPS information embedded
|
|
|
|
* @param {boolean} [isFavorite]
|
|
|
|
* @param {boolean} [isArchived]
|
|
|
|
* @param {number} [skip]
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getMapMarkers(isFavorite?: boolean, isArchived?: boolean, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MapMarkerResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMapMarkers(isFavorite, isArchived, skip, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Get all asset of a device that are in the database, ID only.
|
|
|
|
* @param {string} deviceId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getUserAssetsByDeviceId(deviceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getUserAssetsByDeviceId(deviceId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async removeAssetsFromSharedLink(removeAssetsDto: RemoveAssetsDto, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.removeAssetsFromSharedLink(removeAssetsDto, key, options);
|
2023-02-15 15:21:22 -06:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SearchAssetDto} searchAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async searchAsset(searchAssetDto: SearchAssetDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AssetResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAsset(searchAssetDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {boolean} [isThumb]
|
|
|
|
* @param {boolean} [isWeb]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async serveFile(assetId: string, isThumb?: boolean, isWeb?: boolean, key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
|
2023-02-24 17:01:10 +01:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.serveFile(assetId, isThumb, isWeb, key, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-11-08 11:20:36 -05:00
|
|
|
/**
|
|
|
|
* Update an asset
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {UpdateAssetDto} updateAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-05 11:56:44 -06:00
|
|
|
async updateAsset(assetId: string, updateAssetDto: UpdateAssetDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAsset(assetId, updateAssetDto, options);
|
2022-11-08 11:20:36 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {AssetTypeEnum} assetType
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} assetData
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {string} deviceAssetId
|
|
|
|
* @param {string} deviceId
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} fileCreatedAt
|
|
|
|
* @param {string} fileModifiedAt
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} isFavorite
|
|
|
|
* @param {string} fileExtension
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} [livePhotoData]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} [isVisible]
|
|
|
|
* @param {string} [duration]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
async uploadFile(assetType: AssetTypeEnum, assetData: File, deviceAssetId: string, deviceId: string, fileCreatedAt: string, fileModifiedAt: string, isFavorite: boolean, fileExtension: string, key?: string, livePhotoData?: File, isArchived?: boolean, isVisible?: boolean, duration?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetFileUploadResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadFile(assetType, assetData, deviceAssetId, deviceId, fileCreatedAt, fileModifiedAt, isFavorite, fileExtension, key, livePhotoData, isArchived, isVisible, duration, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AssetApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const AssetApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = AssetApiFp(configuration)
|
|
|
|
return {
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
addAssetsToSharedLink(addAssetsDto: AddAssetsDto, key?: string, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.addAssetsToSharedLink(addAssetsDto, key, options).then((request) => request(axios, basePath));
|
2023-02-15 15:21:22 -06:00
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Check duplicated asset before uploading - for Web upload used
|
|
|
|
* @param {CheckDuplicateAssetDto} checkDuplicateAssetDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
checkDuplicateAsset(checkDuplicateAssetDto: CheckDuplicateAssetDto, key?: string, options?: any): AxiosPromise<CheckDuplicateAssetResponseDto> {
|
|
|
|
return localVarFp.checkDuplicateAsset(checkDuplicateAssetDto, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
2022-10-25 09:51:03 -05:00
|
|
|
/**
|
|
|
|
* Checks if multiple assets exist on the server and returns all existing - used by background backup
|
|
|
|
* @param {CheckExistingAssetsDto} checkExistingAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
checkExistingAssets(checkExistingAssetsDto: CheckExistingAssetsDto, options?: any): AxiosPromise<CheckExistingAssetsResponseDto> {
|
|
|
|
return localVarFp.checkExistingAssets(checkExistingAssetsDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAssetsShareLinkDto} createAssetsShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createAssetsSharedLink(createAssetsShareLinkDto: CreateAssetsShareLinkDto, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.createAssetsSharedLink(createAssetsShareLinkDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DeleteAssetDto} deleteAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
deleteAsset(deleteAssetDto: DeleteAssetDto, options?: any): AxiosPromise<Array<DeleteAssetResponseDto>> {
|
|
|
|
return localVarFp.deleteAsset(deleteAssetDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
downloadFile(assetId: string, key?: string, options?: any): AxiosPromise<File> {
|
2023-02-24 17:01:10 +01:00
|
|
|
return localVarFp.downloadFile(assetId, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DownloadFilesDto} downloadFilesDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
downloadFiles(downloadFilesDto: DownloadFilesDto, key?: string, options?: any): AxiosPromise<File> {
|
2023-02-24 17:01:10 +01:00
|
|
|
return localVarFp.downloadFiles(downloadFilesDto, key, options).then((request) => request(axios, basePath));
|
2023-01-09 14:16:08 -06:00
|
|
|
},
|
2022-11-15 10:51:56 -05:00
|
|
|
/**
|
2023-01-23 22:46:37 -05:00
|
|
|
* Current this is not used in any UI element
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
downloadLibrary(name?: string, skip?: number, key?: string, options?: any): AxiosPromise<File> {
|
2023-04-06 19:50:55 +02:00
|
|
|
return localVarFp.downloadLibrary(name, skip, key, options).then((request) => request(axios, basePath));
|
2022-11-15 10:51:56 -05:00
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Get all AssetEntity belong to the user
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {number} [skip]
|
2022-11-26 17:16:02 +01:00
|
|
|
* @param {string} [ifNoneMatch] ETag of data already cached on the client
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
getAllAssets(isFavorite?: boolean, isArchived?: boolean, skip?: number, ifNoneMatch?: string, options?: any): AxiosPromise<Array<AssetResponseDto>> {
|
|
|
|
return localVarFp.getAllAssets(isFavorite, isArchived, skip, ifNoneMatch, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getArchivedAssetCountByUserId(options?: any): AxiosPromise<AssetCountByUserIdResponseDto> {
|
|
|
|
return localVarFp.getArchivedAssetCountByUserId(options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Get a single asset\'s information
|
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getAssetById(assetId: string, key?: string, options?: any): AxiosPromise<AssetResponseDto> {
|
|
|
|
return localVarFp.getAssetById(assetId, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
2022-09-04 08:34:39 -05:00
|
|
|
* @param {GetAssetByTimeBucketDto} getAssetByTimeBucketDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAssetByTimeBucket(getAssetByTimeBucketDto: GetAssetByTimeBucketDto, options?: any): AxiosPromise<Array<AssetResponseDto>> {
|
|
|
|
return localVarFp.getAssetByTimeBucket(getAssetByTimeBucketDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {GetAssetCountByTimeBucketDto} getAssetCountByTimeBucketDto
|
2022-08-26 22:53:37 -07:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
getAssetCountByTimeBucket(getAssetCountByTimeBucketDto: GetAssetCountByTimeBucketDto, options?: any): AxiosPromise<AssetCountByTimeBucketResponseDto> {
|
|
|
|
return localVarFp.getAssetCountByTimeBucket(getAssetCountByTimeBucketDto, options).then((request) => request(axios, basePath));
|
2022-08-26 22:53:37 -07:00
|
|
|
},
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAssetCountByUserId(options?: any): AxiosPromise<AssetCountByUserIdResponseDto> {
|
|
|
|
return localVarFp.getAssetCountByUserId(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAssetSearchTerms(options?: any): AxiosPromise<Array<string>> {
|
|
|
|
return localVarFp.getAssetSearchTerms(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {ThumbnailFormat} [format]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
getAssetThumbnail(assetId: string, format?: ThumbnailFormat, key?: string, options?: any): AxiosPromise<File> {
|
2023-02-24 17:01:10 +01:00
|
|
|
return localVarFp.getAssetThumbnail(assetId, format, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getCuratedLocations(options?: any): AxiosPromise<Array<CuratedLocationsResponseDto>> {
|
|
|
|
return localVarFp.getCuratedLocations(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getCuratedObjects(options?: any): AxiosPromise<Array<CuratedObjectsResponseDto>> {
|
|
|
|
return localVarFp.getCuratedObjects(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-05-06 03:33:30 +02:00
|
|
|
/**
|
|
|
|
* Get all assets that have GPS information embedded
|
|
|
|
* @param {boolean} [isFavorite]
|
|
|
|
* @param {boolean} [isArchived]
|
|
|
|
* @param {number} [skip]
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getMapMarkers(isFavorite?: boolean, isArchived?: boolean, skip?: number, options?: any): AxiosPromise<Array<MapMarkerResponseDto>> {
|
|
|
|
return localVarFp.getMapMarkers(isFavorite, isArchived, skip, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Get all asset of a device that are in the database, ID only.
|
|
|
|
* @param {string} deviceId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getUserAssetsByDeviceId(deviceId: string, options?: any): AxiosPromise<Array<string>> {
|
|
|
|
return localVarFp.getUserAssetsByDeviceId(deviceId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
removeAssetsFromSharedLink(removeAssetsDto: RemoveAssetsDto, key?: string, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.removeAssetsFromSharedLink(removeAssetsDto, key, options).then((request) => request(axios, basePath));
|
2023-02-15 15:21:22 -06:00
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SearchAssetDto} searchAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
searchAsset(searchAssetDto: SearchAssetDto, options?: any): AxiosPromise<Array<AssetResponseDto>> {
|
|
|
|
return localVarFp.searchAsset(searchAssetDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {boolean} [isThumb]
|
|
|
|
* @param {boolean} [isWeb]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
serveFile(assetId: string, isThumb?: boolean, isWeb?: boolean, key?: string, options?: any): AxiosPromise<File> {
|
2023-02-24 17:01:10 +01:00
|
|
|
return localVarFp.serveFile(assetId, isThumb, isWeb, key, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
2022-11-08 11:20:36 -05:00
|
|
|
/**
|
|
|
|
* Update an asset
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {UpdateAssetDto} updateAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-05 11:56:44 -06:00
|
|
|
updateAsset(assetId: string, updateAssetDto: UpdateAssetDto, options?: any): AxiosPromise<AssetResponseDto> {
|
|
|
|
return localVarFp.updateAsset(assetId, updateAssetDto, options).then((request) => request(axios, basePath));
|
2022-11-08 11:20:36 -05:00
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {AssetTypeEnum} assetType
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} assetData
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {string} deviceAssetId
|
|
|
|
* @param {string} deviceId
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} fileCreatedAt
|
|
|
|
* @param {string} fileModifiedAt
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} isFavorite
|
|
|
|
* @param {string} fileExtension
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} [livePhotoData]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} [isVisible]
|
|
|
|
* @param {string} [duration]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
uploadFile(assetType: AssetTypeEnum, assetData: File, deviceAssetId: string, deviceId: string, fileCreatedAt: string, fileModifiedAt: string, isFavorite: boolean, fileExtension: string, key?: string, livePhotoData?: File, isArchived?: boolean, isVisible?: boolean, duration?: string, options?: any): AxiosPromise<AssetFileUploadResponseDto> {
|
|
|
|
return localVarFp.uploadFile(assetType, assetData, deviceAssetId, deviceId, fileCreatedAt, fileModifiedAt, isFavorite, fileExtension, key, livePhotoData, isArchived, isVisible, duration, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
|
|
|
};
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AssetApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class AssetApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class AssetApi extends BaseAPI {
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {AddAssetsDto} addAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public addAssetsToSharedLink(addAssetsDto: AddAssetsDto, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).addAssetsToSharedLink(addAssetsDto, key, options).then((request) => request(this.axios, this.basePath));
|
2023-02-15 15:21:22 -06:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Check duplicated asset before uploading - for Web upload used
|
|
|
|
* @param {CheckDuplicateAssetDto} checkDuplicateAssetDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public checkDuplicateAsset(checkDuplicateAssetDto: CheckDuplicateAssetDto, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).checkDuplicateAsset(checkDuplicateAssetDto, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
2022-10-25 09:51:03 -05:00
|
|
|
/**
|
|
|
|
* Checks if multiple assets exist on the server and returns all existing - used by background backup
|
|
|
|
* @param {CheckExistingAssetsDto} checkExistingAssetsDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public checkExistingAssets(checkExistingAssetsDto: CheckExistingAssetsDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).checkExistingAssets(checkExistingAssetsDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:49:47 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateAssetsShareLinkDto} createAssetsShareLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public createAssetsSharedLink(createAssetsShareLinkDto: CreateAssetsShareLinkDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).createAssetsSharedLink(createAssetsShareLinkDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DeleteAssetDto} deleteAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public deleteAsset(deleteAssetDto: DeleteAssetDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).deleteAsset(deleteAssetDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public downloadFile(assetId: string, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).downloadFile(assetId, key, options).then((request) => request(this.axios, this.basePath));
|
2022-11-15 10:51:56 -05:00
|
|
|
}
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {DownloadFilesDto} downloadFilesDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public downloadFiles(downloadFilesDto: DownloadFilesDto, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).downloadFiles(downloadFilesDto, key, options).then((request) => request(this.axios, this.basePath));
|
2023-01-09 14:16:08 -06:00
|
|
|
}
|
|
|
|
|
2022-11-15 10:51:56 -05:00
|
|
|
/**
|
2023-01-23 22:46:37 -05:00
|
|
|
* Current this is not used in any UI element
|
2023-04-06 19:50:55 +02:00
|
|
|
* @param {string} [name]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {number} [skip]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-11-15 10:51:56 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-04-06 19:50:55 +02:00
|
|
|
public downloadLibrary(name?: string, skip?: number, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).downloadLibrary(name, skip, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all AssetEntity belong to the user
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-01-23 23:16:20 -05:00
|
|
|
* @param {number} [skip]
|
2022-11-26 17:16:02 +01:00
|
|
|
* @param {string} [ifNoneMatch] ETag of data already cached on the client
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
public getAllAssets(isFavorite?: boolean, isArchived?: boolean, skip?: number, ifNoneMatch?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAllAssets(isFavorite, isArchived, skip, ifNoneMatch, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getArchivedAssetCountByUserId(options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getArchivedAssetCountByUserId(options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a single asset\'s information
|
|
|
|
* @param {string} assetId
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public getAssetById(assetId: string, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAssetById(assetId, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
2022-08-26 22:53:37 -07:00
|
|
|
/**
|
|
|
|
*
|
2022-09-04 08:34:39 -05:00
|
|
|
* @param {GetAssetByTimeBucketDto} getAssetByTimeBucketDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getAssetByTimeBucket(getAssetByTimeBucketDto: GetAssetByTimeBucketDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAssetByTimeBucket(getAssetByTimeBucketDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {GetAssetCountByTimeBucketDto} getAssetCountByTimeBucketDto
|
2022-08-26 22:53:37 -07:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2022-09-04 08:34:39 -05:00
|
|
|
public getAssetCountByTimeBucket(getAssetCountByTimeBucketDto: GetAssetCountByTimeBucketDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAssetCountByTimeBucket(getAssetCountByTimeBucketDto, options).then((request) => request(this.axios, this.basePath));
|
2022-08-26 22:53:37 -07:00
|
|
|
}
|
|
|
|
|
2022-09-07 15:16:18 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getAssetCountByUserId(options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAssetCountByUserId(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getAssetSearchTerms(options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAssetSearchTerms(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {ThumbnailFormat} [format]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public getAssetThumbnail(assetId: string, format?: ThumbnailFormat, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getAssetThumbnail(assetId, format, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getCuratedLocations(options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getCuratedLocations(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getCuratedObjects(options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getCuratedObjects(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-05-06 03:33:30 +02:00
|
|
|
/**
|
|
|
|
* Get all assets that have GPS information embedded
|
|
|
|
* @param {boolean} [isFavorite]
|
|
|
|
* @param {boolean} [isArchived]
|
|
|
|
* @param {number} [skip]
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getMapMarkers(isFavorite?: boolean, isArchived?: boolean, skip?: number, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getMapMarkers(isFavorite, isArchived, skip, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
* Get all asset of a device that are in the database, ID only.
|
|
|
|
* @param {string} deviceId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public getUserAssetsByDeviceId(deviceId: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).getUserAssetsByDeviceId(deviceId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-02-15 15:21:22 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {RemoveAssetsDto} removeAssetsDto
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-02-15 15:21:22 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public removeAssetsFromSharedLink(removeAssetsDto: RemoveAssetsDto, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).removeAssetsFromSharedLink(removeAssetsDto, key, options).then((request) => request(this.axios, this.basePath));
|
2023-02-15 15:21:22 -06:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SearchAssetDto} searchAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
|
|
|
public searchAsset(searchAssetDto: SearchAssetDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).searchAsset(searchAssetDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2022-11-16 00:11:16 -06:00
|
|
|
* @param {string} assetId
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {boolean} [isThumb]
|
|
|
|
* @param {boolean} [isWeb]
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public serveFile(assetId: string, isThumb?: boolean, isWeb?: boolean, key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).serveFile(assetId, isThumb, isWeb, key, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
2022-11-08 11:20:36 -05:00
|
|
|
/**
|
|
|
|
* Update an asset
|
|
|
|
* @param {string} assetId
|
|
|
|
* @param {UpdateAssetDto} updateAssetDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2022-12-05 11:56:44 -06:00
|
|
|
public updateAsset(assetId: string, updateAssetDto: UpdateAssetDto, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).updateAsset(assetId, updateAssetDto, options).then((request) => request(this.axios, this.basePath));
|
2022-11-08 11:20:36 -05:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {AssetTypeEnum} assetType
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} assetData
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {string} deviceAssetId
|
|
|
|
* @param {string} deviceId
|
2023-02-19 16:44:53 +00:00
|
|
|
* @param {string} fileCreatedAt
|
|
|
|
* @param {string} fileModifiedAt
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} isFavorite
|
|
|
|
* @param {string} fileExtension
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} [livePhotoData]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-02-12 06:54:07 +01:00
|
|
|
* @param {boolean} [isVisible]
|
|
|
|
* @param {string} [duration]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AssetApi
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
public uploadFile(assetType: AssetTypeEnum, assetData: File, deviceAssetId: string, deviceId: string, fileCreatedAt: string, fileModifiedAt: string, isFavorite: boolean, fileExtension: string, key?: string, livePhotoData?: File, isArchived?: boolean, isVisible?: boolean, duration?: string, options?: AxiosRequestConfig) {
|
|
|
|
return AssetApiFp(this.configuration).uploadFile(assetType, assetData, deviceAssetId, deviceId, fileCreatedAt, fileModifiedAt, isFavorite, fileExtension, key, livePhotoData, isArchived, isVisible, duration, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
|
|
|
* AuthenticationApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const AuthenticationApiAxiosParamCreator = function (configuration?: Configuration) {
|
2022-07-26 20:53:25 -05:00
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SignUpDto} signUpDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
adminSignUp: async (signUpDto: SignUpDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'signUpDto' is not null or undefined
|
|
|
|
assertParamExists('adminSignUp', 'signUpDto', signUpDto)
|
|
|
|
const localVarPath = `/auth/admin-sign-up`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(signUpDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-12-21 09:43:35 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {ChangePasswordDto} changePasswordDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
changePassword: async (changePasswordDto: ChangePasswordDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'changePasswordDto' is not null or undefined
|
|
|
|
assertParamExists('changePassword', 'changePasswordDto', changePasswordDto)
|
|
|
|
const localVarPath = `/auth/change-password`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-12-21 09:43:35 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(changePasswordDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAuthDevices: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/auth/devices`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-04-25 22:19:23 -04:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {LoginCredentialDto} loginCredentialDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
login: async (loginCredentialDto: LoginCredentialDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'loginCredentialDto' is not null or undefined
|
|
|
|
assertParamExists('login', 'loginCredentialDto', loginCredentialDto)
|
|
|
|
const localVarPath = `/auth/login`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(loginCredentialDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
logout: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/auth/logout`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
2023-04-25 22:19:23 -04:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
logoutAuthDevice: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('logoutAuthDevice', 'id', id)
|
|
|
|
const localVarPath = `/auth/devices/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-04-25 22:19:23 -04:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-05-09 15:34:17 -04:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
logoutAuthDevices: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/auth/devices`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
// authentication cookie required
|
|
|
|
|
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
validateAccessToken: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/auth/validateToken`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AuthenticationApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const AuthenticationApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = AuthenticationApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SignUpDto} signUpDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async adminSignUp(signUpDto: SignUpDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminSignupResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.adminSignUp(signUpDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-12-21 09:43:35 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {ChangePasswordDto} changePasswordDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async changePassword(changePasswordDto: ChangePasswordDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(changePasswordDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAuthDevices(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AuthDeviceResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAuthDevices(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {LoginCredentialDto} loginCredentialDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async login(loginCredentialDto: LoginCredentialDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoginResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.login(loginCredentialDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async logout(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LogoutResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.logout(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async logoutAuthDevice(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.logoutAuthDevice(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-05-09 15:34:17 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async logoutAuthDevices(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.logoutAuthDevices(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async validateAccessToken(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateAccessTokenResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.validateAccessToken(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AuthenticationApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const AuthenticationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = AuthenticationApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SignUpDto} signUpDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
adminSignUp(signUpDto: SignUpDto, options?: any): AxiosPromise<AdminSignupResponseDto> {
|
|
|
|
return localVarFp.adminSignUp(signUpDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-12-21 09:43:35 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {ChangePasswordDto} changePasswordDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
changePassword(changePasswordDto: ChangePasswordDto, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.changePassword(changePasswordDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAuthDevices(options?: any): AxiosPromise<Array<AuthDeviceResponseDto>> {
|
|
|
|
return localVarFp.getAuthDevices(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {LoginCredentialDto} loginCredentialDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
login(loginCredentialDto: LoginCredentialDto, options?: any): AxiosPromise<LoginResponseDto> {
|
|
|
|
return localVarFp.login(loginCredentialDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
logout(options?: any): AxiosPromise<LogoutResponseDto> {
|
|
|
|
return localVarFp.logout(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
logoutAuthDevice(id: string, options?: any): AxiosPromise<void> {
|
|
|
|
return localVarFp.logoutAuthDevice(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-05-09 15:34:17 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
logoutAuthDevices(options?: any): AxiosPromise<void> {
|
|
|
|
return localVarFp.logoutAuthDevices(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
validateAccessToken(options?: any): AxiosPromise<ValidateAccessTokenResponseDto> {
|
|
|
|
return localVarFp.validateAccessToken(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AuthenticationApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class AuthenticationApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class AuthenticationApi extends BaseAPI {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SignUpDto} signUpDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public adminSignUp(signUpDto: SignUpDto, options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).adminSignUp(signUpDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-12-21 09:43:35 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {ChangePasswordDto} changePasswordDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public changePassword(changePasswordDto: ChangePasswordDto, options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).changePassword(changePasswordDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public getAuthDevices(options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).getAuthDevices(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {LoginCredentialDto} loginCredentialDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public login(loginCredentialDto: LoginCredentialDto, options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).login(loginCredentialDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public logout(options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).logout(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-04-25 22:19:23 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public logoutAuthDevice(id: string, options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).logoutAuthDevice(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-05-09 15:34:17 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public logoutAuthDevices(options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).logoutAuthDevices(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof AuthenticationApi
|
|
|
|
*/
|
|
|
|
public validateAccessToken(options?: AxiosRequestConfig) {
|
|
|
|
return AuthenticationApiFp(this.configuration).validateAccessToken(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2022-10-06 11:25:54 -05:00
|
|
|
/**
|
|
|
|
* JobApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const JobApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAllJobsStatus: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/jobs`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-10-06 11:25:54 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 11:55:28 -04:00
|
|
|
* @param {JobName} jobId
|
2022-10-06 11:25:54 -05:00
|
|
|
* @param {JobCommandDto} jobCommandDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-03-20 11:55:28 -04:00
|
|
|
sendJobCommand: async (jobId: JobName, jobCommandDto: JobCommandDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-10-06 11:25:54 -05:00
|
|
|
// verify required parameter 'jobId' is not null or undefined
|
|
|
|
assertParamExists('sendJobCommand', 'jobId', jobId)
|
|
|
|
// verify required parameter 'jobCommandDto' is not null or undefined
|
|
|
|
assertParamExists('sendJobCommand', 'jobCommandDto', jobCommandDto)
|
|
|
|
const localVarPath = `/jobs/{jobId}`
|
|
|
|
.replace(`{${"jobId"}}`, encodeURIComponent(String(jobId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-10-06 11:25:54 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(jobCommandDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JobApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const JobApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = JobApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAllJobsStatus(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllJobStatusResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllJobsStatus(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 11:55:28 -04:00
|
|
|
* @param {JobName} jobId
|
2022-10-06 11:25:54 -05:00
|
|
|
* @param {JobCommandDto} jobCommandDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
async sendJobCommand(jobId: JobName, jobCommandDto: JobCommandDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobStatusDto>> {
|
2022-10-06 11:25:54 -05:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.sendJobCommand(jobId, jobCommandDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JobApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const JobApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = JobApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAllJobsStatus(options?: any): AxiosPromise<AllJobStatusResponseDto> {
|
|
|
|
return localVarFp.getAllJobsStatus(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 11:55:28 -04:00
|
|
|
* @param {JobName} jobId
|
2022-10-06 11:25:54 -05:00
|
|
|
* @param {JobCommandDto} jobCommandDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-01 22:46:07 +02:00
|
|
|
sendJobCommand(jobId: JobName, jobCommandDto: JobCommandDto, options?: any): AxiosPromise<JobStatusDto> {
|
2022-10-06 11:25:54 -05:00
|
|
|
return localVarFp.sendJobCommand(jobId, jobCommandDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JobApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class JobApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class JobApi extends BaseAPI {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof JobApi
|
|
|
|
*/
|
|
|
|
public getAllJobsStatus(options?: AxiosRequestConfig) {
|
|
|
|
return JobApiFp(this.configuration).getAllJobsStatus(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 11:55:28 -04:00
|
|
|
* @param {JobName} jobId
|
2022-10-06 11:25:54 -05:00
|
|
|
* @param {JobCommandDto} jobCommandDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof JobApi
|
|
|
|
*/
|
2023-03-20 11:55:28 -04:00
|
|
|
public sendJobCommand(jobId: JobName, jobCommandDto: JobCommandDto, options?: AxiosRequestConfig) {
|
2022-10-06 11:25:54 -05:00
|
|
|
return JobApiFp(this.configuration).sendJobCommand(jobId, jobCommandDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-14 21:24:25 -05:00
|
|
|
/**
|
|
|
|
* OAuthApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const OAuthApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
callback: async (oAuthCallbackDto: OAuthCallbackDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'oAuthCallbackDto' is not null or undefined
|
|
|
|
assertParamExists('callback', 'oAuthCallbackDto', oAuthCallbackDto)
|
|
|
|
const localVarPath = `/oauth/callback`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(oAuthCallbackDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthConfigDto} oAuthConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
generateConfig: async (oAuthConfigDto: OAuthConfigDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'oAuthConfigDto' is not null or undefined
|
|
|
|
assertParamExists('generateConfig', 'oAuthConfigDto', oAuthConfigDto)
|
|
|
|
const localVarPath = `/oauth/config`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(oAuthConfigDto, localVarRequestOptions, configuration)
|
|
|
|
|
2022-12-26 10:35:52 -05:00
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
link: async (oAuthCallbackDto: OAuthCallbackDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'oAuthCallbackDto' is not null or undefined
|
|
|
|
assertParamExists('link', 'oAuthCallbackDto', oAuthCallbackDto)
|
|
|
|
const localVarPath = `/oauth/link`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-26 10:35:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(oAuthCallbackDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-12-29 15:47:30 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
mobileRedirect: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/oauth/mobile-redirect`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
unlink: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/oauth/unlink`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-26 10:35:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
2022-11-14 21:24:25 -05:00
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OAuthApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const OAuthApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = OAuthApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async callback(oAuthCallbackDto: OAuthCallbackDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoginResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.callback(oAuthCallbackDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthConfigDto} oAuthConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async generateConfig(oAuthConfigDto: OAuthConfigDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OAuthConfigResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.generateConfig(oAuthConfigDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async link(oAuthCallbackDto: OAuthCallbackDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.link(oAuthCallbackDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-12-29 15:47:30 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async mobileRedirect(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mobileRedirect(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async unlink(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.unlink(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-11-14 21:24:25 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OAuthApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const OAuthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = OAuthApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
callback(oAuthCallbackDto: OAuthCallbackDto, options?: any): AxiosPromise<LoginResponseDto> {
|
|
|
|
return localVarFp.callback(oAuthCallbackDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthConfigDto} oAuthConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
generateConfig(oAuthConfigDto: OAuthConfigDto, options?: any): AxiosPromise<OAuthConfigResponseDto> {
|
|
|
|
return localVarFp.generateConfig(oAuthConfigDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
link(oAuthCallbackDto: OAuthCallbackDto, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.link(oAuthCallbackDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-12-29 15:47:30 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
mobileRedirect(options?: any): AxiosPromise<void> {
|
|
|
|
return localVarFp.mobileRedirect(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
unlink(options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.unlink(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-11-14 21:24:25 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OAuthApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class OAuthApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class OAuthApi extends BaseAPI {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof OAuthApi
|
|
|
|
*/
|
|
|
|
public callback(oAuthCallbackDto: OAuthCallbackDto, options?: AxiosRequestConfig) {
|
|
|
|
return OAuthApiFp(this.configuration).callback(oAuthCallbackDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthConfigDto} oAuthConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof OAuthApi
|
|
|
|
*/
|
|
|
|
public generateConfig(oAuthConfigDto: OAuthConfigDto, options?: AxiosRequestConfig) {
|
|
|
|
return OAuthApiFp(this.configuration).generateConfig(oAuthConfigDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
2022-12-26 10:35:52 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {OAuthCallbackDto} oAuthCallbackDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof OAuthApi
|
|
|
|
*/
|
|
|
|
public link(oAuthCallbackDto: OAuthCallbackDto, options?: AxiosRequestConfig) {
|
|
|
|
return OAuthApiFp(this.configuration).link(oAuthCallbackDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-12-29 15:47:30 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof OAuthApi
|
|
|
|
*/
|
|
|
|
public mobileRedirect(options?: AxiosRequestConfig) {
|
|
|
|
return OAuthApiFp(this.configuration).mobileRedirect(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-12-26 10:35:52 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof OAuthApi
|
|
|
|
*/
|
|
|
|
public unlink(options?: AxiosRequestConfig) {
|
|
|
|
return OAuthApiFp(this.configuration).unlink(options).then((request) => request(this.axios, this.basePath));
|
2023-03-02 21:47:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const SearchApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
2023-03-05 15:44:31 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getExploreData: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/search/explore`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-03-05 15:44:31 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getSearchConfig: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/search/config`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-03-02 21:47:08 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [q]
|
|
|
|
* @param {string} [query]
|
|
|
|
* @param {boolean} [clip]
|
|
|
|
* @param {'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER'} [type]
|
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [exifInfoCity]
|
|
|
|
* @param {string} [exifInfoState]
|
|
|
|
* @param {string} [exifInfoCountry]
|
|
|
|
* @param {string} [exifInfoMake]
|
|
|
|
* @param {string} [exifInfoModel]
|
|
|
|
* @param {Array<string>} [smartInfoObjects]
|
|
|
|
* @param {Array<string>} [smartInfoTags]
|
|
|
|
* @param {boolean} [recent]
|
|
|
|
* @param {boolean} [motion]
|
2023-03-02 21:47:08 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
search: async (q?: string, query?: string, clip?: boolean, type?: 'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER', isFavorite?: boolean, isArchived?: boolean, exifInfoCity?: string, exifInfoState?: string, exifInfoCountry?: string, exifInfoMake?: string, exifInfoModel?: string, smartInfoObjects?: Array<string>, smartInfoTags?: Array<string>, recent?: boolean, motion?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-03-02 21:47:08 -05:00
|
|
|
const localVarPath = `/search`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-03-02 21:47:08 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-03-20 16:16:32 -04:00
|
|
|
if (q !== undefined) {
|
|
|
|
localVarQueryParameter['q'] = q;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (query !== undefined) {
|
|
|
|
localVarQueryParameter['query'] = query;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clip !== undefined) {
|
|
|
|
localVarQueryParameter['clip'] = clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type !== undefined) {
|
|
|
|
localVarQueryParameter['type'] = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isFavorite !== undefined) {
|
|
|
|
localVarQueryParameter['isFavorite'] = isFavorite;
|
|
|
|
}
|
|
|
|
|
2023-04-12 18:37:52 +03:00
|
|
|
if (isArchived !== undefined) {
|
|
|
|
localVarQueryParameter['isArchived'] = isArchived;
|
|
|
|
}
|
|
|
|
|
2023-03-20 16:16:32 -04:00
|
|
|
if (exifInfoCity !== undefined) {
|
|
|
|
localVarQueryParameter['exifInfo.city'] = exifInfoCity;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exifInfoState !== undefined) {
|
|
|
|
localVarQueryParameter['exifInfo.state'] = exifInfoState;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exifInfoCountry !== undefined) {
|
|
|
|
localVarQueryParameter['exifInfo.country'] = exifInfoCountry;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exifInfoMake !== undefined) {
|
|
|
|
localVarQueryParameter['exifInfo.make'] = exifInfoMake;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exifInfoModel !== undefined) {
|
|
|
|
localVarQueryParameter['exifInfo.model'] = exifInfoModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (smartInfoObjects) {
|
|
|
|
localVarQueryParameter['smartInfo.objects'] = smartInfoObjects;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (smartInfoTags) {
|
|
|
|
localVarQueryParameter['smartInfo.tags'] = smartInfoTags;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (recent !== undefined) {
|
|
|
|
localVarQueryParameter['recent'] = recent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (motion !== undefined) {
|
|
|
|
localVarQueryParameter['motion'] = motion;
|
|
|
|
}
|
|
|
|
|
2023-03-02 21:47:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = SearchApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
2023-03-05 15:44:31 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getExploreData(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchExploreResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getExploreData(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getSearchConfig(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchConfigResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchConfig(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [q]
|
|
|
|
* @param {string} [query]
|
|
|
|
* @param {boolean} [clip]
|
|
|
|
* @param {'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER'} [type]
|
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [exifInfoCity]
|
|
|
|
* @param {string} [exifInfoState]
|
|
|
|
* @param {string} [exifInfoCountry]
|
|
|
|
* @param {string} [exifInfoMake]
|
|
|
|
* @param {string} [exifInfoModel]
|
|
|
|
* @param {Array<string>} [smartInfoObjects]
|
|
|
|
* @param {Array<string>} [smartInfoTags]
|
|
|
|
* @param {boolean} [recent]
|
|
|
|
* @param {boolean} [motion]
|
2023-03-02 21:47:08 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
async search(q?: string, query?: string, clip?: boolean, type?: 'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER', isFavorite?: boolean, isArchived?: boolean, exifInfoCity?: string, exifInfoState?: string, exifInfoCountry?: string, exifInfoMake?: string, exifInfoModel?: string, smartInfoObjects?: Array<string>, smartInfoTags?: Array<string>, recent?: boolean, motion?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.search(q, query, clip, type, isFavorite, isArchived, exifInfoCity, exifInfoState, exifInfoCountry, exifInfoMake, exifInfoModel, smartInfoObjects, smartInfoTags, recent, motion, options);
|
2023-03-02 21:47:08 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const SearchApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = SearchApiFp(configuration)
|
|
|
|
return {
|
2023-03-05 15:44:31 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getExploreData(options?: any): AxiosPromise<Array<SearchExploreResponseDto>> {
|
|
|
|
return localVarFp.getExploreData(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getSearchConfig(options?: any): AxiosPromise<SearchConfigResponseDto> {
|
|
|
|
return localVarFp.getSearchConfig(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [q]
|
|
|
|
* @param {string} [query]
|
|
|
|
* @param {boolean} [clip]
|
|
|
|
* @param {'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER'} [type]
|
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [exifInfoCity]
|
|
|
|
* @param {string} [exifInfoState]
|
|
|
|
* @param {string} [exifInfoCountry]
|
|
|
|
* @param {string} [exifInfoMake]
|
|
|
|
* @param {string} [exifInfoModel]
|
|
|
|
* @param {Array<string>} [smartInfoObjects]
|
|
|
|
* @param {Array<string>} [smartInfoTags]
|
|
|
|
* @param {boolean} [recent]
|
|
|
|
* @param {boolean} [motion]
|
2023-03-02 21:47:08 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
search(q?: string, query?: string, clip?: boolean, type?: 'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER', isFavorite?: boolean, isArchived?: boolean, exifInfoCity?: string, exifInfoState?: string, exifInfoCountry?: string, exifInfoMake?: string, exifInfoModel?: string, smartInfoObjects?: Array<string>, smartInfoTags?: Array<string>, recent?: boolean, motion?: boolean, options?: any): AxiosPromise<SearchResponseDto> {
|
|
|
|
return localVarFp.search(q, query, clip, type, isFavorite, isArchived, exifInfoCity, exifInfoState, exifInfoCountry, exifInfoMake, exifInfoModel, smartInfoObjects, smartInfoTags, recent, motion, options).then((request) => request(axios, basePath));
|
2023-03-02 21:47:08 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class SearchApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class SearchApi extends BaseAPI {
|
2023-03-05 15:44:31 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SearchApi
|
|
|
|
*/
|
|
|
|
public getExploreData(options?: AxiosRequestConfig) {
|
|
|
|
return SearchApiFp(this.configuration).getExploreData(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2023-03-02 21:47:08 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SearchApi
|
|
|
|
*/
|
|
|
|
public getSearchConfig(options?: AxiosRequestConfig) {
|
|
|
|
return SearchApiFp(this.configuration).getSearchConfig(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [q]
|
|
|
|
* @param {string} [query]
|
|
|
|
* @param {boolean} [clip]
|
|
|
|
* @param {'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER'} [type]
|
|
|
|
* @param {boolean} [isFavorite]
|
2023-04-12 18:37:52 +03:00
|
|
|
* @param {boolean} [isArchived]
|
2023-03-20 16:16:32 -04:00
|
|
|
* @param {string} [exifInfoCity]
|
|
|
|
* @param {string} [exifInfoState]
|
|
|
|
* @param {string} [exifInfoCountry]
|
|
|
|
* @param {string} [exifInfoMake]
|
|
|
|
* @param {string} [exifInfoModel]
|
|
|
|
* @param {Array<string>} [smartInfoObjects]
|
|
|
|
* @param {Array<string>} [smartInfoTags]
|
|
|
|
* @param {boolean} [recent]
|
|
|
|
* @param {boolean} [motion]
|
2023-03-02 21:47:08 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SearchApi
|
|
|
|
*/
|
2023-04-12 18:37:52 +03:00
|
|
|
public search(q?: string, query?: string, clip?: boolean, type?: 'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER', isFavorite?: boolean, isArchived?: boolean, exifInfoCity?: string, exifInfoState?: string, exifInfoCountry?: string, exifInfoMake?: string, exifInfoModel?: string, smartInfoObjects?: Array<string>, smartInfoTags?: Array<string>, recent?: boolean, motion?: boolean, options?: AxiosRequestConfig) {
|
|
|
|
return SearchApiFp(this.configuration).search(q, query, clip, type, isFavorite, isArchived, exifInfoCity, exifInfoState, exifInfoCountry, exifInfoMake, exifInfoModel, smartInfoObjects, smartInfoTags, recent, motion, options).then((request) => request(this.axios, this.basePath));
|
2022-12-26 10:35:52 -05:00
|
|
|
}
|
2022-11-14 21:24:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
|
|
|
* ServerInfoApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const ServerInfoApiAxiosParamCreator = function (configuration?: Configuration) {
|
2022-07-26 20:53:25 -05:00
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getServerInfo: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/server-info`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-03-27 16:38:54 +02:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getServerVersion: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/server-info/version`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-23 16:54:54 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getStats: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/server-info/stats`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-10-23 16:54:54 -05:00
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
pingServer: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/server-info/ping`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ServerInfoApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const ServerInfoApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = ServerInfoApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getServerInfo(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServerInfoResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getServerInfo(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getServerVersion(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServerVersionReponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getServerVersion(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getStats(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServerStatsResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStats(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async pingServer(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServerPingResponse>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.pingServer(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ServerInfoApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const ServerInfoApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = ServerInfoApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getServerInfo(options?: any): AxiosPromise<ServerInfoResponseDto> {
|
|
|
|
return localVarFp.getServerInfo(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getServerVersion(options?: any): AxiosPromise<ServerVersionReponseDto> {
|
|
|
|
return localVarFp.getServerVersion(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getStats(options?: any): AxiosPromise<ServerStatsResponseDto> {
|
|
|
|
return localVarFp.getStats(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
pingServer(options?: any): AxiosPromise<ServerPingResponse> {
|
|
|
|
return localVarFp.pingServer(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ServerInfoApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class ServerInfoApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class ServerInfoApi extends BaseAPI {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ServerInfoApi
|
|
|
|
*/
|
|
|
|
public getServerInfo(options?: AxiosRequestConfig) {
|
|
|
|
return ServerInfoApiFp(this.configuration).getServerInfo(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ServerInfoApi
|
|
|
|
*/
|
|
|
|
public getServerVersion(options?: AxiosRequestConfig) {
|
|
|
|
return ServerInfoApiFp(this.configuration).getServerVersion(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-10-23 16:54:54 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ServerInfoApi
|
|
|
|
*/
|
|
|
|
public getStats(options?: AxiosRequestConfig) {
|
|
|
|
return ServerInfoApiFp(this.configuration).getStats(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ServerInfoApi
|
|
|
|
*/
|
|
|
|
public pingServer(options?: AxiosRequestConfig) {
|
|
|
|
return ServerInfoApiFp(this.configuration).pingServer(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
/**
|
|
|
|
* ShareApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const ShareApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {EditSharedLinkDto} editSharedLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
editSharedLink: async (id: string, editSharedLinkDto: EditSharedLinkDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('editSharedLink', 'id', id)
|
|
|
|
// verify required parameter 'editSharedLinkDto' is not null or undefined
|
|
|
|
assertParamExists('editSharedLink', 'editSharedLinkDto', editSharedLinkDto)
|
|
|
|
const localVarPath = `/share/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(editSharedLinkDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAllSharedLinks: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/share`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getMySharedLink: async (key?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2023-01-09 14:16:08 -06:00
|
|
|
const localVarPath = `/share/me`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
if (key !== undefined) {
|
|
|
|
localVarQueryParameter['key'] = key;
|
|
|
|
}
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getSharedLinkById: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('getSharedLinkById', 'id', id)
|
|
|
|
const localVarPath = `/share/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
removeSharedLink: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('removeSharedLink', 'id', id)
|
|
|
|
const localVarPath = `/share/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2023-01-09 14:16:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ShareApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const ShareApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = ShareApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {EditSharedLinkDto} editSharedLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async editSharedLink(id: string, editSharedLinkDto: EditSharedLinkDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.editSharedLink(id, editSharedLinkDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAllSharedLinks(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SharedLinkResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllSharedLinks(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
async getMySharedLink(key?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMySharedLink(key, options);
|
2023-01-09 14:16:08 -06:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getSharedLinkById(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SharedLinkResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSharedLinkById(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-01-25 11:35:28 -05:00
|
|
|
async removeSharedLink(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
2023-01-09 14:16:08 -06:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.removeSharedLink(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ShareApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const ShareApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = ShareApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {EditSharedLinkDto} editSharedLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
editSharedLink(id: string, editSharedLinkDto: EditSharedLinkDto, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.editSharedLink(id, editSharedLinkDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAllSharedLinks(options?: any): AxiosPromise<Array<SharedLinkResponseDto>> {
|
|
|
|
return localVarFp.getAllSharedLinks(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
getMySharedLink(key?: string, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.getMySharedLink(key, options).then((request) => request(axios, basePath));
|
2023-01-09 14:16:08 -06:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getSharedLinkById(id: string, options?: any): AxiosPromise<SharedLinkResponseDto> {
|
|
|
|
return localVarFp.getSharedLinkById(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-01-25 11:35:28 -05:00
|
|
|
removeSharedLink(id: string, options?: any): AxiosPromise<void> {
|
2023-01-09 14:16:08 -06:00
|
|
|
return localVarFp.removeSharedLink(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ShareApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class ShareApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class ShareApi extends BaseAPI {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {EditSharedLinkDto} editSharedLinkDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ShareApi
|
|
|
|
*/
|
|
|
|
public editSharedLink(id: string, editSharedLinkDto: EditSharedLinkDto, options?: AxiosRequestConfig) {
|
|
|
|
return ShareApiFp(this.configuration).editSharedLink(id, editSharedLinkDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ShareApi
|
|
|
|
*/
|
|
|
|
public getAllSharedLinks(options?: AxiosRequestConfig) {
|
|
|
|
return ShareApiFp(this.configuration).getAllSharedLinks(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-02-24 17:01:10 +01:00
|
|
|
* @param {string} [key]
|
2023-01-09 14:16:08 -06:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ShareApi
|
|
|
|
*/
|
2023-02-24 17:01:10 +01:00
|
|
|
public getMySharedLink(key?: string, options?: AxiosRequestConfig) {
|
|
|
|
return ShareApiFp(this.configuration).getMySharedLink(key, options).then((request) => request(this.axios, this.basePath));
|
2023-01-09 14:16:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ShareApi
|
|
|
|
*/
|
|
|
|
public getSharedLinkById(id: string, options?: AxiosRequestConfig) {
|
|
|
|
return ShareApiFp(this.configuration).getSharedLinkById(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof ShareApi
|
|
|
|
*/
|
|
|
|
public removeSharedLink(id: string, options?: AxiosRequestConfig) {
|
|
|
|
return ShareApiFp(this.configuration).removeSharedLink(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-14 23:39:32 -05:00
|
|
|
/**
|
|
|
|
* SystemConfigApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const SystemConfigApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getConfig: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/system-config`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-11-14 23:39:32 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
getDefaults: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/system-config/defaults`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-12-09 15:51:42 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-16 14:26:12 -06:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getStorageTemplateOptions: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/system-config/storage-template-options`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-12-16 14:26:12 -06:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-09 15:51:42 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SystemConfigDto} systemConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
updateConfig: async (systemConfigDto: SystemConfigDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'systemConfigDto' is not null or undefined
|
|
|
|
assertParamExists('updateConfig', 'systemConfigDto', systemConfigDto)
|
2022-11-14 23:39:32 -05:00
|
|
|
const localVarPath = `/system-config`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-11-14 23:39:32 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
2022-12-09 15:51:42 -05:00
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(systemConfigDto, localVarRequestOptions, configuration)
|
2022-11-14 23:39:32 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SystemConfigApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const SystemConfigApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = SystemConfigApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
async getConfig(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SystemConfigDto>> {
|
2022-11-14 23:39:32 -05:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfig(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
async getDefaults(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SystemConfigDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDefaults(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-12-16 14:26:12 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getStorageTemplateOptions(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SystemConfigTemplateStorageOptionDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStorageTemplateOptions(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-12-09 15:51:42 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SystemConfigDto} systemConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async updateConfig(systemConfigDto: SystemConfigDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SystemConfigDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateConfig(systemConfigDto, options);
|
2022-11-14 23:39:32 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SystemConfigApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const SystemConfigApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = SystemConfigApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
getConfig(options?: any): AxiosPromise<SystemConfigDto> {
|
2022-11-14 23:39:32 -05:00
|
|
|
return localVarFp.getConfig(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
getDefaults(options?: any): AxiosPromise<SystemConfigDto> {
|
|
|
|
return localVarFp.getDefaults(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-12-16 14:26:12 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getStorageTemplateOptions(options?: any): AxiosPromise<SystemConfigTemplateStorageOptionDto> {
|
|
|
|
return localVarFp.getStorageTemplateOptions(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-12-09 15:51:42 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SystemConfigDto} systemConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
updateConfig(systemConfigDto: SystemConfigDto, options?: any): AxiosPromise<SystemConfigDto> {
|
|
|
|
return localVarFp.updateConfig(systemConfigDto, options).then((request) => request(axios, basePath));
|
2022-11-14 23:39:32 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SystemConfigApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class SystemConfigApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class SystemConfigApi extends BaseAPI {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SystemConfigApi
|
|
|
|
*/
|
|
|
|
public getConfig(options?: AxiosRequestConfig) {
|
|
|
|
return SystemConfigApiFp(this.configuration).getConfig(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SystemConfigApi
|
|
|
|
*/
|
2022-12-09 15:51:42 -05:00
|
|
|
public getDefaults(options?: AxiosRequestConfig) {
|
|
|
|
return SystemConfigApiFp(this.configuration).getDefaults(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-12-16 14:26:12 -06:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SystemConfigApi
|
|
|
|
*/
|
|
|
|
public getStorageTemplateOptions(options?: AxiosRequestConfig) {
|
|
|
|
return SystemConfigApiFp(this.configuration).getStorageTemplateOptions(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-12-09 15:51:42 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {SystemConfigDto} systemConfigDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof SystemConfigApi
|
|
|
|
*/
|
|
|
|
public updateConfig(systemConfigDto: SystemConfigDto, options?: AxiosRequestConfig) {
|
|
|
|
return SystemConfigApiFp(this.configuration).updateConfig(systemConfigDto, options).then((request) => request(this.axios, this.basePath));
|
2022-11-14 23:39:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
/**
|
|
|
|
* TagApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const TagApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
_delete: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('_delete', 'id', id)
|
|
|
|
const localVarPath = `/tag/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateTagDto} createTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
create: async (createTagDto: CreateTagDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'createTagDto' is not null or undefined
|
|
|
|
assertParamExists('create', 'createTagDto', createTagDto)
|
|
|
|
const localVarPath = `/tag`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(createTagDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
findAll: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/tag`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
findOne: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('findOne', 'id', id)
|
|
|
|
const localVarPath = `/tag/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {UpdateTagDto} updateTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
update: async (id: string, updateTagDto: UpdateTagDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'id' is not null or undefined
|
|
|
|
assertParamExists('update', 'id', id)
|
|
|
|
// verify required parameter 'updateTagDto' is not null or undefined
|
|
|
|
assertParamExists('update', 'updateTagDto', updateTagDto)
|
|
|
|
const localVarPath = `/tag/{id}`
|
|
|
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-02-24 17:01:10 +01:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-12-05 11:56:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(updateTagDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TagApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const TagApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = TagApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
async _delete(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
2022-12-05 11:56:44 -06:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator._delete(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateTagDto} createTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
async create(createTagDto: CreateTagDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagResponseDto>> {
|
2022-12-05 11:56:44 -06:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.create(createTagDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
async findAll(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TagResponseDto>>> {
|
2022-12-05 11:56:44 -06:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.findAll(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
async findOne(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagResponseDto>> {
|
2022-12-05 11:56:44 -06:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.findOne(id, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {UpdateTagDto} updateTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
async update(id: string, updateTagDto: UpdateTagDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagResponseDto>> {
|
2022-12-05 11:56:44 -06:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.update(id, updateTagDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TagApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const TagApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = TagApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
_delete(id: string, options?: any): AxiosPromise<void> {
|
2022-12-05 11:56:44 -06:00
|
|
|
return localVarFp._delete(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateTagDto} createTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
create(createTagDto: CreateTagDto, options?: any): AxiosPromise<TagResponseDto> {
|
2022-12-05 11:56:44 -06:00
|
|
|
return localVarFp.create(createTagDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
findAll(options?: any): AxiosPromise<Array<TagResponseDto>> {
|
2022-12-05 11:56:44 -06:00
|
|
|
return localVarFp.findAll(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
findOne(id: string, options?: any): AxiosPromise<TagResponseDto> {
|
2022-12-05 11:56:44 -06:00
|
|
|
return localVarFp.findOne(id, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {UpdateTagDto} updateTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-06 15:46:13 -06:00
|
|
|
update(id: string, updateTagDto: UpdateTagDto, options?: any): AxiosPromise<TagResponseDto> {
|
2022-12-05 11:56:44 -06:00
|
|
|
return localVarFp.update(id, updateTagDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TagApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class TagApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class TagApi extends BaseAPI {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof TagApi
|
|
|
|
*/
|
|
|
|
public _delete(id: string, options?: AxiosRequestConfig) {
|
|
|
|
return TagApiFp(this.configuration)._delete(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateTagDto} createTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof TagApi
|
|
|
|
*/
|
|
|
|
public create(createTagDto: CreateTagDto, options?: AxiosRequestConfig) {
|
|
|
|
return TagApiFp(this.configuration).create(createTagDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof TagApi
|
|
|
|
*/
|
|
|
|
public findAll(options?: AxiosRequestConfig) {
|
|
|
|
return TagApiFp(this.configuration).findAll(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof TagApi
|
|
|
|
*/
|
|
|
|
public findOne(id: string, options?: AxiosRequestConfig) {
|
|
|
|
return TagApiFp(this.configuration).findOne(id, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} id
|
|
|
|
* @param {UpdateTagDto} updateTagDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof TagApi
|
|
|
|
*/
|
|
|
|
public update(id: string, updateTagDto: UpdateTagDto, options?: AxiosRequestConfig) {
|
|
|
|
return TagApiFp(this.configuration).update(id, updateTagDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-08 21:26:50 -05:00
|
|
|
/**
|
|
|
|
* UserApi - axios parameter creator
|
|
|
|
* @export
|
|
|
|
*/
|
|
|
|
export const UserApiAxiosParamCreator = function (configuration?: Configuration) {
|
2022-07-26 20:53:25 -05:00
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} file
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
createProfileImage: async (file: File, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
// verify required parameter 'file' is not null or undefined
|
|
|
|
assertParamExists('createProfileImage', 'file', file)
|
|
|
|
const localVarPath = `/user/profile-image`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
if (file !== undefined) {
|
|
|
|
localVarFormParams.append('file', file as any);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = localVarFormParams;
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateUserDto} createUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createUser: async (createUserDto: CreateUserDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'createUserDto' is not null or undefined
|
|
|
|
assertParamExists('createUser', 'createUserDto', createUserDto)
|
|
|
|
const localVarPath = `/user`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(createUserDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
deleteUser: async (userId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'userId' is not null or undefined
|
|
|
|
assertParamExists('deleteUser', 'userId', userId)
|
|
|
|
const localVarPath = `/user/{userId}`
|
|
|
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-11-07 16:53:47 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} isAll
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAllUsers: async (isAll: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'isAll' is not null or undefined
|
|
|
|
assertParamExists('getAllUsers', 'isAll', isAll)
|
|
|
|
const localVarPath = `/user`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
if (isAll !== undefined) {
|
|
|
|
localVarQueryParameter['isAll'] = isAll;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getMyUserInfo: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
const localVarPath = `/user/me`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getProfileImage: async (userId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'userId' is not null or undefined
|
|
|
|
assertParamExists('getProfileImage', 'userId', userId)
|
|
|
|
const localVarPath = `/user/profile-image/{userId}`
|
|
|
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-03-27 16:38:54 +02:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getUserById: async (userId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'userId' is not null or undefined
|
|
|
|
assertParamExists('getUserById', 'userId', userId)
|
|
|
|
const localVarPath = `/user/info/{userId}`
|
|
|
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2023-03-27 16:38:54 +02:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-12-09 15:53:11 -05:00
|
|
|
* @param {boolean} [admin]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:53:11 -05:00
|
|
|
getUserCount: async (admin?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
2022-07-26 20:53:25 -05:00
|
|
|
const localVarPath = `/user/count`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2022-12-09 15:53:11 -05:00
|
|
|
if (admin !== undefined) {
|
|
|
|
localVarQueryParameter['admin'] = admin;
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|
2022-11-07 16:53:47 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
restoreUser: async (userId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'userId' is not null or undefined
|
|
|
|
assertParamExists('restoreUser', 'userId', userId)
|
|
|
|
const localVarPath = `/user/{userId}/restore`
|
|
|
|
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-11-07 16:53:47 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {UpdateUserDto} updateUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
updateUser: async (updateUserDto: UpdateUserDto, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
|
// verify required parameter 'updateUserDto' is not null or undefined
|
|
|
|
assertParamExists('updateUser', 'updateUserDto', updateUserDto)
|
|
|
|
const localVarPath = `/user`;
|
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
|
let baseOptions;
|
|
|
|
if (configuration) {
|
|
|
|
baseOptions = configuration.baseOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
|
|
const localVarHeaderParameter = {} as any;
|
|
|
|
const localVarQueryParameter = {} as any;
|
|
|
|
|
2023-04-09 04:26:09 +02:00
|
|
|
// authentication cookie required
|
|
|
|
|
2023-05-04 18:41:29 +02:00
|
|
|
// authentication api_key required
|
|
|
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
// authentication bearer required
|
|
|
|
// http bearer authentication required
|
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
|
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
|
localVarRequestOptions.data = serializeDataIfNeeded(updateUserDto, localVarRequestOptions, configuration)
|
|
|
|
|
|
|
|
return {
|
|
|
|
url: toPathString(localVarUrlObj),
|
|
|
|
options: localVarRequestOptions,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserApi - functional programming interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const UserApiFp = function(configuration?: Configuration) {
|
|
|
|
const localVarAxiosParamCreator = UserApiAxiosParamCreator(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} file
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
async createProfileImage(file: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateProfileImageResponseDto>> {
|
2022-07-26 20:53:25 -05:00
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createProfileImage(file, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateUserDto} createUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async createUser(createUserDto: CreateUserDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createUser(createUserDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async deleteUser(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteUser(userId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} isAll
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getAllUsers(isAll: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserResponseDto>>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllUsers(isAll, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getMyUserInfo(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMyUserInfo(options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getProfileImage(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfileImage(userId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async getUserById(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getUserById(userId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-12-09 15:53:11 -05:00
|
|
|
* @param {boolean} [admin]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:53:11 -05:00
|
|
|
async getUserCount(admin?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getUserCount(admin, options);
|
2022-07-26 20:53:25 -05:00
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async restoreUser(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreUser(userId, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {UpdateUserDto} updateUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
async updateUser(updateUserDto: UpdateUserDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponseDto>> {
|
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateUser(updateUserDto, options);
|
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
|
},
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserApi - factory interface
|
|
|
|
* @export
|
|
|
|
*/
|
2022-07-26 20:53:25 -05:00
|
|
|
export const UserApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
|
const localVarFp = UserApiFp(configuration)
|
|
|
|
return {
|
|
|
|
/**
|
|
|
|
*
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} file
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
createProfileImage(file: File, options?: any): AxiosPromise<CreateProfileImageResponseDto> {
|
2022-07-26 20:53:25 -05:00
|
|
|
return localVarFp.createProfileImage(file, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateUserDto} createUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
createUser(createUserDto: CreateUserDto, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.createUser(createUserDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
deleteUser(userId: string, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.deleteUser(userId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} isAll
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getAllUsers(isAll: boolean, options?: any): AxiosPromise<Array<UserResponseDto>> {
|
|
|
|
return localVarFp.getAllUsers(isAll, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getMyUserInfo(options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.getMyUserInfo(options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getProfileImage(userId: string, options?: any): AxiosPromise<object> {
|
|
|
|
return localVarFp.getProfileImage(userId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
getUserById(userId: string, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.getUserById(userId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
*
|
2022-12-09 15:53:11 -05:00
|
|
|
* @param {boolean} [admin]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
2022-12-09 15:53:11 -05:00
|
|
|
getUserCount(admin?: boolean, options?: any): AxiosPromise<UserCountResponseDto> {
|
|
|
|
return localVarFp.getUserCount(admin, options).then((request) => request(axios, basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
},
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
restoreUser(userId: string, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.restoreUser(userId, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {UpdateUserDto} updateUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
*/
|
|
|
|
updateUser(updateUserDto: UpdateUserDto, options?: any): AxiosPromise<UserResponseDto> {
|
|
|
|
return localVarFp.updateUser(updateUserDto, options).then((request) => request(axios, basePath));
|
|
|
|
},
|
|
|
|
};
|
2022-07-08 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserApi - object-oriented interface
|
|
|
|
* @export
|
|
|
|
* @class UserApi
|
|
|
|
* @extends {BaseAPI}
|
|
|
|
*/
|
|
|
|
export class UserApi extends BaseAPI {
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
2023-04-09 04:26:09 +02:00
|
|
|
* @param {File} file
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
2023-04-09 04:26:09 +02:00
|
|
|
public createProfileImage(file: File, options?: AxiosRequestConfig) {
|
2022-07-26 20:53:25 -05:00
|
|
|
return UserApiFp(this.configuration).createProfileImage(file, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {CreateUserDto} createUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public createUser(createUserDto: CreateUserDto, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).createUser(createUserDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public deleteUser(userId: string, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).deleteUser(userId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} isAll
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public getAllUsers(isAll: boolean, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).getAllUsers(isAll, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public getMyUserInfo(options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).getMyUserInfo(options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public getProfileImage(userId: string, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).getProfileImage(userId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public getUserById(userId: string, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).getUserById(userId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2022-12-09 15:53:11 -05:00
|
|
|
* @param {boolean} [admin]
|
2022-07-26 20:53:25 -05:00
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
2022-12-09 15:53:11 -05:00
|
|
|
public getUserCount(admin?: boolean, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).getUserCount(admin, options).then((request) => request(this.axios, this.basePath));
|
2022-07-26 20:53:25 -05:00
|
|
|
}
|
|
|
|
|
2022-11-07 16:53:47 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {string} userId
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public restoreUser(userId: string, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).restoreUser(userId, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
|
|
|
|
2022-07-26 20:53:25 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {UpdateUserDto} updateUserDto
|
|
|
|
* @param {*} [options] Override http request option.
|
|
|
|
* @throws {RequiredError}
|
|
|
|
* @memberof UserApi
|
|
|
|
*/
|
|
|
|
public updateUser(updateUserDto: UpdateUserDto, options?: AxiosRequestConfig) {
|
|
|
|
return UserApiFp(this.configuration).updateUser(updateUserDto, options).then((request) => request(this.axios, this.basePath));
|
|
|
|
}
|
2022-07-08 21:26:50 -05:00
|
|
|
}
|
2022-07-26 20:53:25 -05:00
|
|
|
|
|
|
|
|