From 09a729152793565366ac8b3ba9a356ca032869a8 Mon Sep 17 00:00:00 2001 From: Jason Rasmussen Date: Thu, 29 Feb 2024 11:22:39 -0500 Subject: [PATCH] refactor(web): drop axios (#7490) * refactor: downloadApi * refactor: assetApi * chore: drop axios * chore: tidy up * chore: fix exports * fix: show notification when download starts --- .gitattributes | 2 - cli/package-lock.json | 8 - e2e/package-lock.json | 8 - e2e/src/web/specs/shared-link.e2e-spec.ts | 7 +- open-api/bin/generate-open-api.sh | 4 +- .../typescript-sdk/axios-client/.gitignore | 4 - .../typescript-sdk/axios-client/.npmignore | 1 - .../axios-client/.openapi-generator-ignore | 23 - .../axios-client/.openapi-generator/FILES | 8 - .../axios-client/.openapi-generator/VERSION | 1 - open-api/typescript-sdk/axios-client/api.ts | 19783 ---------------- open-api/typescript-sdk/axios-client/base.ts | 86 - .../typescript-sdk/axios-client/common.ts | 150 - .../axios-client/configuration.ts | 110 - .../typescript-sdk/axios-client/git_push.sh | 57 - open-api/typescript-sdk/axios-client/index.ts | 18 - open-api/typescript-sdk/axios.ts | 4 - open-api/typescript-sdk/package-lock.json | 116 - open-api/typescript-sdk/package.json | 22 +- .../typescript-sdk/{ => src}/fetch-client.ts | Bin .../typescript-sdk/{ => src}/fetch-errors.ts | 0 .../typescript-sdk/{fetch.ts => src/index.ts} | 0 open-api/typescript-sdk/tsconfig.axios.json | 13 - .../{tsconfig.fetch.json => tsconfig.json} | 6 +- web/package-lock.json | 108 +- web/package.json | 3 - web/src/lib/api/index.ts | 14 - .../album-page/__tests__/album-card.spec.ts | 39 +- .../components/album-page/album-card.svelte | 22 +- .../asset-viewer/panorama-viewer.svelte | 15 +- .../asset-viewer/photo-viewer.svelte | 19 +- .../forms/library-import-paths-form.svelte | 2 +- .../lib/components/forms/login-form.svelte | 4 +- web/src/lib/utils.ts | 95 + web/src/lib/utils/asset-utils.ts | 43 +- web/src/lib/utils/file-uploader.ts | 51 +- web/src/lib/utils/handle-error.ts | 42 +- 37 files changed, 217 insertions(+), 20671 deletions(-) delete mode 100644 open-api/typescript-sdk/axios-client/.gitignore delete mode 100644 open-api/typescript-sdk/axios-client/.npmignore delete mode 100644 open-api/typescript-sdk/axios-client/.openapi-generator-ignore delete mode 100644 open-api/typescript-sdk/axios-client/.openapi-generator/FILES delete mode 100644 open-api/typescript-sdk/axios-client/.openapi-generator/VERSION delete mode 100644 open-api/typescript-sdk/axios-client/api.ts delete mode 100644 open-api/typescript-sdk/axios-client/base.ts delete mode 100644 open-api/typescript-sdk/axios-client/common.ts delete mode 100644 open-api/typescript-sdk/axios-client/configuration.ts delete mode 100644 open-api/typescript-sdk/axios-client/git_push.sh delete mode 100644 open-api/typescript-sdk/axios-client/index.ts delete mode 100644 open-api/typescript-sdk/axios.ts rename open-api/typescript-sdk/{ => src}/fetch-client.ts (100%) rename open-api/typescript-sdk/{ => src}/fetch-errors.ts (100%) rename open-api/typescript-sdk/{fetch.ts => src/index.ts} (100%) delete mode 100644 open-api/typescript-sdk/tsconfig.axios.json rename open-api/typescript-sdk/{tsconfig.fetch.json => tsconfig.json} (72%) delete mode 100644 web/src/lib/api/index.ts diff --git a/.gitattributes b/.gitattributes index b0a7f5ccc4..f89b54de52 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,8 +8,6 @@ mobile/openapi/.openapi-generator/FILES linguist-generated=true mobile/lib/**/*.g.dart -diff -merge mobile/lib/**/*.g.dart linguist-generated=true -open-api/typescript-sdk/axios-client/**/* -diff -merge -open-api/typescript-sdk/axios-client/**/* linguist-generated=true open-api/typescript-sdk/fetch-client.ts -diff -merge open-api/typescript-sdk/fetch-client.ts linguist-generated=true diff --git a/cli/package-lock.json b/cli/package-lock.json index f48f74d51c..760d9863ea 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -54,14 +54,6 @@ "@oazapfts/runtime": "^1.0.0", "@types/node": "^20.11.0", "typescript": "^5.3.3" - }, - "peerDependencies": { - "axios": "^1.6.7" - }, - "peerDependenciesMeta": { - "axios": { - "optional": true - } } }, "../server": { diff --git a/e2e/package-lock.json b/e2e/package-lock.json index 2c2183d80f..8b28f8725e 100644 --- a/e2e/package-lock.json +++ b/e2e/package-lock.json @@ -77,14 +77,6 @@ "@oazapfts/runtime": "^1.0.0", "@types/node": "^20.11.0", "typescript": "^5.3.3" - }, - "peerDependencies": { - "axios": "^1.6.7" - }, - "peerDependenciesMeta": { - "axios": { - "optional": true - } } }, "node_modules/@ampproject/remapping": { diff --git a/e2e/src/web/specs/shared-link.e2e-spec.ts b/e2e/src/web/specs/shared-link.e2e-spec.ts index ce79ed5454..fdad948b68 100644 --- a/e2e/src/web/specs/shared-link.e2e-spec.ts +++ b/e2e/src/web/specs/shared-link.e2e-spec.ts @@ -1,18 +1,17 @@ import { AlbumResponseDto, - AssetResponseDto, + AssetFileUploadResponseDto, LoginResponseDto, SharedLinkResponseDto, SharedLinkType, createAlbum, - createSharedLink, } from '@immich/sdk'; import { test } from '@playwright/test'; import { apiUtils, asBearerAuth, dbUtils } from 'src/utils'; test.describe('Shared Links', () => { let admin: LoginResponseDto; - let asset: AssetResponseDto; + let asset: AssetFileUploadResponseDto; let album: AlbumResponseDto; let sharedLink: SharedLinkResponseDto; let sharedLinkPassword: SharedLinkResponseDto; @@ -53,7 +52,7 @@ test.describe('Shared Links', () => { await page.waitForSelector('#asset-group-by-date svg'); await page.getByRole('checkbox').click(); await page.getByRole('button', { name: 'Download' }).click(); - await page.getByText('DOWNLOADING').waitFor(); + await page.getByText('DOWNLOADING', { exact: true }).waitFor(); }); test('enter password for a shared link', async ({ page }) => { diff --git a/open-api/bin/generate-open-api.sh b/open-api/bin/generate-open-api.sh index f0a211abe4..ba62bfd9ee 100755 --- a/open-api/bin/generate-open-api.sh +++ b/open-api/bin/generate-open-api.sh @@ -17,9 +17,7 @@ function dart { } function typescript { - rm -rf ./typescript-sdk/client - npx --yes @openapitools/openapi-generator-cli generate -g typescript-axios -i ./immich-openapi-specs.json -o ./typescript-sdk/axios-client --additional-properties=useSingleRequestParameter=true,supportsES6=true - npx --yes oazapfts --optimistic --argumentStyle=object --useEnumType immich-openapi-specs.json typescript-sdk/fetch-client.ts + npx --yes oazapfts --optimistic --argumentStyle=object --useEnumType immich-openapi-specs.json typescript-sdk/src/fetch-client.ts npm --prefix typescript-sdk ci && npm --prefix typescript-sdk run build } diff --git a/open-api/typescript-sdk/axios-client/.gitignore b/open-api/typescript-sdk/axios-client/.gitignore deleted file mode 100644 index 149b576547..0000000000 --- a/open-api/typescript-sdk/axios-client/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -wwwroot/*.js -node_modules -typings -dist diff --git a/open-api/typescript-sdk/axios-client/.npmignore b/open-api/typescript-sdk/axios-client/.npmignore deleted file mode 100644 index 999d88df69..0000000000 --- a/open-api/typescript-sdk/axios-client/.npmignore +++ /dev/null @@ -1 +0,0 @@ -# empty npmignore to ensure all required files (e.g., in the dist folder) are published by npm \ No newline at end of file diff --git a/open-api/typescript-sdk/axios-client/.openapi-generator-ignore b/open-api/typescript-sdk/axios-client/.openapi-generator-ignore deleted file mode 100644 index 7484ee590a..0000000000 --- a/open-api/typescript-sdk/axios-client/.openapi-generator-ignore +++ /dev/null @@ -1,23 +0,0 @@ -# OpenAPI Generator Ignore -# Generated by openapi-generator https://github.com/openapitools/openapi-generator - -# Use this file to prevent files from being overwritten by the generator. -# The patterns follow closely to .gitignore or .dockerignore. - -# As an example, the C# client generator defines ApiClient.cs. -# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: -#ApiClient.cs - -# You can match any string of characters against a directory, file or extension with a single asterisk (*): -#foo/*/qux -# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux - -# You can recursively match patterns against a directory, file or extension with a double asterisk (**): -#foo/**/qux -# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux - -# You can also negate patterns with an exclamation (!). -# For example, you can ignore all files in a docs folder with the file extension .md: -#docs/*.md -# Then explicitly reverse the ignore rule for a single file: -#!docs/README.md diff --git a/open-api/typescript-sdk/axios-client/.openapi-generator/FILES b/open-api/typescript-sdk/axios-client/.openapi-generator/FILES deleted file mode 100644 index a80cd4f07b..0000000000 --- a/open-api/typescript-sdk/axios-client/.openapi-generator/FILES +++ /dev/null @@ -1,8 +0,0 @@ -.gitignore -.npmignore -api.ts -base.ts -common.ts -configuration.ts -git_push.sh -index.ts diff --git a/open-api/typescript-sdk/axios-client/.openapi-generator/VERSION b/open-api/typescript-sdk/axios-client/.openapi-generator/VERSION deleted file mode 100644 index 4b49d9bb63..0000000000 --- a/open-api/typescript-sdk/axios-client/.openapi-generator/VERSION +++ /dev/null @@ -1 +0,0 @@ -7.2.0 \ No newline at end of file diff --git a/open-api/typescript-sdk/axios-client/api.ts b/open-api/typescript-sdk/axios-client/api.ts deleted file mode 100644 index 63588faeea..0000000000 --- a/open-api/typescript-sdk/axios-client/api.ts +++ /dev/null @@ -1,19783 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * Immich - * Immich API - * - * The version of the OpenAPI document: 1.97.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -import type { Configuration } from './configuration'; -import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; -import globalAxios from 'axios'; -// Some imports not used depending on template conditions -// @ts-ignore -import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common'; -import type { RequestArgs } from './base'; -// @ts-ignore -import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base'; - -/** - * - * @export - * @interface APIKeyCreateDto - */ -export interface APIKeyCreateDto { - /** - * - * @type {string} - * @memberof APIKeyCreateDto - */ - 'name'?: string; -} -/** - * - * @export - * @interface APIKeyCreateResponseDto - */ -export interface APIKeyCreateResponseDto { - /** - * - * @type {APIKeyResponseDto} - * @memberof APIKeyCreateResponseDto - */ - 'apiKey': APIKeyResponseDto; - /** - * - * @type {string} - * @memberof APIKeyCreateResponseDto - */ - 'secret': string; -} -/** - * - * @export - * @interface APIKeyResponseDto - */ -export interface APIKeyResponseDto { - /** - * - * @type {string} - * @memberof APIKeyResponseDto - */ - 'createdAt': string; - /** - * - * @type {string} - * @memberof APIKeyResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof APIKeyResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof APIKeyResponseDto - */ - 'updatedAt': string; -} -/** - * - * @export - * @interface APIKeyUpdateDto - */ -export interface APIKeyUpdateDto { - /** - * - * @type {string} - * @memberof APIKeyUpdateDto - */ - 'name': string; -} -/** - * - * @export - * @interface ActivityCreateDto - */ -export interface ActivityCreateDto { - /** - * - * @type {string} - * @memberof ActivityCreateDto - */ - 'albumId': string; - /** - * - * @type {string} - * @memberof ActivityCreateDto - */ - 'assetId'?: string; - /** - * - * @type {string} - * @memberof ActivityCreateDto - */ - 'comment'?: string; - /** - * - * @type {ReactionType} - * @memberof ActivityCreateDto - */ - 'type': ReactionType; -} - - -/** - * - * @export - * @interface ActivityResponseDto - */ -export interface ActivityResponseDto { - /** - * - * @type {string} - * @memberof ActivityResponseDto - */ - 'assetId': string | null; - /** - * - * @type {string} - * @memberof ActivityResponseDto - */ - 'comment'?: string | null; - /** - * - * @type {string} - * @memberof ActivityResponseDto - */ - 'createdAt': string; - /** - * - * @type {string} - * @memberof ActivityResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof ActivityResponseDto - */ - 'type': ActivityResponseDtoTypeEnum; - /** - * - * @type {UserDto} - * @memberof ActivityResponseDto - */ - 'user': UserDto; -} - -export const ActivityResponseDtoTypeEnum = { - Comment: 'comment', - Like: 'like' -} as const; - -export type ActivityResponseDtoTypeEnum = typeof ActivityResponseDtoTypeEnum[keyof typeof ActivityResponseDtoTypeEnum]; - -/** - * - * @export - * @interface ActivityStatisticsResponseDto - */ -export interface ActivityStatisticsResponseDto { - /** - * - * @type {number} - * @memberof ActivityStatisticsResponseDto - */ - 'comments': number; -} -/** - * - * @export - * @interface AddUsersDto - */ -export interface AddUsersDto { - /** - * - * @type {Array} - * @memberof AddUsersDto - */ - 'sharedUserIds': Array; -} -/** - * - * @export - * @interface AlbumCountResponseDto - */ -export interface AlbumCountResponseDto { - /** - * - * @type {number} - * @memberof AlbumCountResponseDto - */ - 'notShared': number; - /** - * - * @type {number} - * @memberof AlbumCountResponseDto - */ - 'owned': number; - /** - * - * @type {number} - * @memberof AlbumCountResponseDto - */ - 'shared': number; -} -/** - * - * @export - * @interface AlbumResponseDto - */ -export interface AlbumResponseDto { - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'albumName': string; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'albumThumbnailAssetId': string | null; - /** - * - * @type {number} - * @memberof AlbumResponseDto - */ - 'assetCount': number; - /** - * - * @type {Array} - * @memberof AlbumResponseDto - */ - 'assets': Array; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'createdAt': string; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'description': string; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'endDate'?: string; - /** - * - * @type {boolean} - * @memberof AlbumResponseDto - */ - 'hasSharedLink': boolean; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof AlbumResponseDto - */ - 'isActivityEnabled': boolean; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'lastModifiedAssetTimestamp'?: string; - /** - * - * @type {UserResponseDto} - * @memberof AlbumResponseDto - */ - 'owner': UserResponseDto; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'ownerId': string; - /** - * - * @type {boolean} - * @memberof AlbumResponseDto - */ - 'shared': boolean; - /** - * - * @type {Array} - * @memberof AlbumResponseDto - */ - 'sharedUsers': Array; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'startDate'?: string; - /** - * - * @type {string} - * @memberof AlbumResponseDto - */ - 'updatedAt': string; -} -/** - * - * @export - * @interface AllJobStatusResponseDto - */ -export interface AllJobStatusResponseDto { - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'backgroundTask': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'faceDetection': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'facialRecognition': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'library': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'metadataExtraction': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'migration': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'search': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'sidecar': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'smartSearch': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'storageTemplateMigration': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'thumbnailGeneration': JobStatusDto; - /** - * - * @type {JobStatusDto} - * @memberof AllJobStatusResponseDto - */ - 'videoConversion': JobStatusDto; -} -/** - * - * @export - * @interface AssetBulkDeleteDto - */ -export interface AssetBulkDeleteDto { - /** - * - * @type {boolean} - * @memberof AssetBulkDeleteDto - */ - 'force'?: boolean; - /** - * - * @type {Array} - * @memberof AssetBulkDeleteDto - */ - 'ids': Array; -} -/** - * - * @export - * @interface AssetBulkUpdateDto - */ -export interface AssetBulkUpdateDto { - /** - * - * @type {string} - * @memberof AssetBulkUpdateDto - */ - 'dateTimeOriginal'?: string; - /** - * - * @type {Array} - * @memberof AssetBulkUpdateDto - */ - 'ids': Array; - /** - * - * @type {boolean} - * @memberof AssetBulkUpdateDto - */ - 'isArchived'?: boolean; - /** - * - * @type {boolean} - * @memberof AssetBulkUpdateDto - */ - 'isFavorite'?: boolean; - /** - * - * @type {number} - * @memberof AssetBulkUpdateDto - */ - 'latitude'?: number; - /** - * - * @type {number} - * @memberof AssetBulkUpdateDto - */ - 'longitude'?: number; - /** - * - * @type {boolean} - * @memberof AssetBulkUpdateDto - */ - 'removeParent'?: boolean; - /** - * - * @type {string} - * @memberof AssetBulkUpdateDto - */ - 'stackParentId'?: string; -} -/** - * - * @export - * @interface AssetBulkUploadCheckDto - */ -export interface AssetBulkUploadCheckDto { - /** - * - * @type {Array} - * @memberof AssetBulkUploadCheckDto - */ - 'assets': Array; -} -/** - * - * @export - * @interface AssetBulkUploadCheckItem - */ -export interface AssetBulkUploadCheckItem { - /** - * base64 or hex encoded sha1 hash - * @type {string} - * @memberof AssetBulkUploadCheckItem - */ - 'checksum': string; - /** - * - * @type {string} - * @memberof AssetBulkUploadCheckItem - */ - 'id': string; -} -/** - * - * @export - * @interface AssetBulkUploadCheckResponseDto - */ -export interface AssetBulkUploadCheckResponseDto { - /** - * - * @type {Array} - * @memberof AssetBulkUploadCheckResponseDto - */ - 'results': Array; -} -/** - * - * @export - * @interface AssetBulkUploadCheckResult - */ -export interface AssetBulkUploadCheckResult { - /** - * - * @type {string} - * @memberof AssetBulkUploadCheckResult - */ - 'action': AssetBulkUploadCheckResultActionEnum; - /** - * - * @type {string} - * @memberof AssetBulkUploadCheckResult - */ - 'assetId'?: string; - /** - * - * @type {string} - * @memberof AssetBulkUploadCheckResult - */ - 'id': string; - /** - * - * @type {string} - * @memberof AssetBulkUploadCheckResult - */ - 'reason'?: AssetBulkUploadCheckResultReasonEnum; -} - -export const AssetBulkUploadCheckResultActionEnum = { - Accept: 'accept', - Reject: 'reject' -} as const; - -export type AssetBulkUploadCheckResultActionEnum = typeof AssetBulkUploadCheckResultActionEnum[keyof typeof AssetBulkUploadCheckResultActionEnum]; -export const AssetBulkUploadCheckResultReasonEnum = { - Duplicate: 'duplicate', - UnsupportedFormat: 'unsupported-format' -} as const; - -export type AssetBulkUploadCheckResultReasonEnum = typeof AssetBulkUploadCheckResultReasonEnum[keyof typeof AssetBulkUploadCheckResultReasonEnum]; - -/** - * - * @export - * @interface AssetFaceResponseDto - */ -export interface AssetFaceResponseDto { - /** - * - * @type {number} - * @memberof AssetFaceResponseDto - */ - 'boundingBoxX1': number; - /** - * - * @type {number} - * @memberof AssetFaceResponseDto - */ - 'boundingBoxX2': number; - /** - * - * @type {number} - * @memberof AssetFaceResponseDto - */ - 'boundingBoxY1': number; - /** - * - * @type {number} - * @memberof AssetFaceResponseDto - */ - 'boundingBoxY2': number; - /** - * - * @type {string} - * @memberof AssetFaceResponseDto - */ - 'id': string; - /** - * - * @type {number} - * @memberof AssetFaceResponseDto - */ - 'imageHeight': number; - /** - * - * @type {number} - * @memberof AssetFaceResponseDto - */ - 'imageWidth': number; - /** - * - * @type {PersonResponseDto} - * @memberof AssetFaceResponseDto - */ - 'person': PersonResponseDto | null; -} -/** - * - * @export - * @interface AssetFaceUpdateDto - */ -export interface AssetFaceUpdateDto { - /** - * - * @type {Array} - * @memberof AssetFaceUpdateDto - */ - 'data': Array; -} -/** - * - * @export - * @interface AssetFaceUpdateItem - */ -export interface AssetFaceUpdateItem { - /** - * - * @type {string} - * @memberof AssetFaceUpdateItem - */ - 'assetId': string; - /** - * - * @type {string} - * @memberof AssetFaceUpdateItem - */ - 'personId': string; -} -/** - * - * @export - * @interface AssetFaceWithoutPersonResponseDto - */ -export interface AssetFaceWithoutPersonResponseDto { - /** - * - * @type {number} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'boundingBoxX1': number; - /** - * - * @type {number} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'boundingBoxX2': number; - /** - * - * @type {number} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'boundingBoxY1': number; - /** - * - * @type {number} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'boundingBoxY2': number; - /** - * - * @type {string} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'id': string; - /** - * - * @type {number} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'imageHeight': number; - /** - * - * @type {number} - * @memberof AssetFaceWithoutPersonResponseDto - */ - 'imageWidth': number; -} -/** - * - * @export - * @interface AssetFileUploadResponseDto - */ -export interface AssetFileUploadResponseDto { - /** - * - * @type {boolean} - * @memberof AssetFileUploadResponseDto - */ - 'duplicate': boolean; - /** - * - * @type {string} - * @memberof AssetFileUploadResponseDto - */ - 'id': string; -} -/** - * - * @export - * @interface AssetIdsDto - */ -export interface AssetIdsDto { - /** - * - * @type {Array} - * @memberof AssetIdsDto - */ - 'assetIds': Array; -} -/** - * - * @export - * @interface AssetIdsResponseDto - */ -export interface AssetIdsResponseDto { - /** - * - * @type {string} - * @memberof AssetIdsResponseDto - */ - 'assetId': string; - /** - * - * @type {string} - * @memberof AssetIdsResponseDto - */ - 'error'?: AssetIdsResponseDtoErrorEnum; - /** - * - * @type {boolean} - * @memberof AssetIdsResponseDto - */ - 'success': boolean; -} - -export const AssetIdsResponseDtoErrorEnum = { - Duplicate: 'duplicate', - NoPermission: 'no_permission', - NotFound: 'not_found' -} as const; - -export type AssetIdsResponseDtoErrorEnum = typeof AssetIdsResponseDtoErrorEnum[keyof typeof AssetIdsResponseDtoErrorEnum]; - -/** - * - * @export - * @enum {string} - */ - -export const AssetJobName = { - RegenerateThumbnail: 'regenerate-thumbnail', - RefreshMetadata: 'refresh-metadata', - TranscodeVideo: 'transcode-video' -} as const; - -export type AssetJobName = typeof AssetJobName[keyof typeof AssetJobName]; - - -/** - * - * @export - * @interface AssetJobsDto - */ -export interface AssetJobsDto { - /** - * - * @type {Array} - * @memberof AssetJobsDto - */ - 'assetIds': Array; - /** - * - * @type {AssetJobName} - * @memberof AssetJobsDto - */ - 'name': AssetJobName; -} - - -/** - * - * @export - * @enum {string} - */ - -export const AssetOrder = { - Asc: 'asc', - Desc: 'desc' -} as const; - -export type AssetOrder = typeof AssetOrder[keyof typeof AssetOrder]; - - -/** - * - * @export - * @interface AssetResponseDto - */ -export interface AssetResponseDto { - /** - * base64 encoded sha1 hash - * @type {string} - * @memberof AssetResponseDto - */ - 'checksum': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'deviceAssetId': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'deviceId': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'duration': string; - /** - * - * @type {ExifResponseDto} - * @memberof AssetResponseDto - */ - 'exifInfo'?: ExifResponseDto; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'fileCreatedAt': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'fileModifiedAt': string; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'hasMetadata': boolean; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'isArchived': boolean; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'isExternal': boolean; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'isFavorite': boolean; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'isOffline': boolean; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'isReadOnly': boolean; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'isTrashed': boolean; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'libraryId': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'livePhotoVideoId'?: string | null; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'localDateTime': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'originalFileName': string; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'originalPath': string; - /** - * - * @type {UserResponseDto} - * @memberof AssetResponseDto - */ - 'owner'?: UserResponseDto; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'ownerId': string; - /** - * - * @type {Array} - * @memberof AssetResponseDto - */ - 'people'?: Array; - /** - * - * @type {boolean} - * @memberof AssetResponseDto - */ - 'resized': boolean; - /** - * - * @type {SmartInfoResponseDto} - * @memberof AssetResponseDto - */ - 'smartInfo'?: SmartInfoResponseDto; - /** - * - * @type {Array} - * @memberof AssetResponseDto - */ - 'stack'?: Array; - /** - * - * @type {number} - * @memberof AssetResponseDto - */ - 'stackCount': number | null; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'stackParentId'?: string | null; - /** - * - * @type {Array} - * @memberof AssetResponseDto - */ - 'tags'?: Array; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'thumbhash': string | null; - /** - * - * @type {AssetTypeEnum} - * @memberof AssetResponseDto - */ - 'type': AssetTypeEnum; - /** - * - * @type {string} - * @memberof AssetResponseDto - */ - 'updatedAt': string; -} - - -/** - * - * @export - * @interface AssetStatsResponseDto - */ -export interface AssetStatsResponseDto { - /** - * - * @type {number} - * @memberof AssetStatsResponseDto - */ - 'images': number; - /** - * - * @type {number} - * @memberof AssetStatsResponseDto - */ - 'total': number; - /** - * - * @type {number} - * @memberof AssetStatsResponseDto - */ - 'videos': number; -} -/** - * - * @export - * @enum {string} - */ - -export const AssetTypeEnum = { - Image: 'IMAGE', - Video: 'VIDEO', - Audio: 'AUDIO', - Other: 'OTHER' -} as const; - -export type AssetTypeEnum = typeof AssetTypeEnum[keyof typeof AssetTypeEnum]; - - -/** - * - * @export - * @enum {string} - */ - -export const AudioCodec = { - Mp3: 'mp3', - Aac: 'aac', - Libopus: 'libopus' -} as const; - -export type AudioCodec = typeof AudioCodec[keyof typeof AudioCodec]; - - -/** - * - * @export - * @interface AuditDeletesResponseDto - */ -export interface AuditDeletesResponseDto { - /** - * - * @type {Array} - * @memberof AuditDeletesResponseDto - */ - 'ids': Array; - /** - * - * @type {boolean} - * @memberof AuditDeletesResponseDto - */ - 'needsFullSync': boolean; -} -/** - * - * @export - * @interface AuthDeviceResponseDto - */ -export interface AuthDeviceResponseDto { - /** - * - * @type {string} - * @memberof AuthDeviceResponseDto - */ - 'createdAt': string; - /** - * - * @type {boolean} - * @memberof AuthDeviceResponseDto - */ - 'current': boolean; - /** - * - * @type {string} - * @memberof AuthDeviceResponseDto - */ - 'deviceOS': string; - /** - * - * @type {string} - * @memberof AuthDeviceResponseDto - */ - 'deviceType': string; - /** - * - * @type {string} - * @memberof AuthDeviceResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof AuthDeviceResponseDto - */ - 'updatedAt': string; -} -/** - * - * @export - * @interface BulkIdResponseDto - */ -export interface BulkIdResponseDto { - /** - * - * @type {string} - * @memberof BulkIdResponseDto - */ - 'error'?: BulkIdResponseDtoErrorEnum; - /** - * - * @type {string} - * @memberof BulkIdResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof BulkIdResponseDto - */ - 'success': boolean; -} - -export const BulkIdResponseDtoErrorEnum = { - Duplicate: 'duplicate', - NoPermission: 'no_permission', - NotFound: 'not_found', - Unknown: 'unknown' -} as const; - -export type BulkIdResponseDtoErrorEnum = typeof BulkIdResponseDtoErrorEnum[keyof typeof BulkIdResponseDtoErrorEnum]; - -/** - * - * @export - * @interface BulkIdsDto - */ -export interface BulkIdsDto { - /** - * - * @type {Array} - * @memberof BulkIdsDto - */ - 'ids': Array; -} -/** - * - * @export - * @interface CLIPConfig - */ -export interface CLIPConfig { - /** - * - * @type {boolean} - * @memberof CLIPConfig - */ - 'enabled': boolean; - /** - * - * @type {CLIPMode} - * @memberof CLIPConfig - */ - 'mode'?: CLIPMode; - /** - * - * @type {string} - * @memberof CLIPConfig - */ - 'modelName': string; - /** - * - * @type {ModelType} - * @memberof CLIPConfig - */ - 'modelType'?: ModelType; -} - - -/** - * - * @export - * @enum {string} - */ - -export const CLIPMode = { - Vision: 'vision', - Text: 'text' -} as const; - -export type CLIPMode = typeof CLIPMode[keyof typeof CLIPMode]; - - -/** - * - * @export - * @enum {string} - */ - -export const CQMode = { - Auto: 'auto', - Cqp: 'cqp', - Icq: 'icq' -} as const; - -export type CQMode = typeof CQMode[keyof typeof CQMode]; - - -/** - * - * @export - * @interface ChangePasswordDto - */ -export interface ChangePasswordDto { - /** - * - * @type {string} - * @memberof ChangePasswordDto - */ - 'newPassword': string; - /** - * - * @type {string} - * @memberof ChangePasswordDto - */ - 'password': string; -} -/** - * - * @export - * @interface CheckExistingAssetsDto - */ -export interface CheckExistingAssetsDto { - /** - * - * @type {Array} - * @memberof CheckExistingAssetsDto - */ - 'deviceAssetIds': Array; - /** - * - * @type {string} - * @memberof CheckExistingAssetsDto - */ - 'deviceId': string; -} -/** - * - * @export - * @interface CheckExistingAssetsResponseDto - */ -export interface CheckExistingAssetsResponseDto { - /** - * - * @type {Array} - * @memberof CheckExistingAssetsResponseDto - */ - 'existingIds': Array; -} -/** - * - * @export - * @enum {string} - */ - -export const Colorspace = { - Srgb: 'srgb', - P3: 'p3' -} as const; - -export type Colorspace = typeof Colorspace[keyof typeof Colorspace]; - - -/** - * - * @export - * @interface CreateAlbumDto - */ -export interface CreateAlbumDto { - /** - * - * @type {string} - * @memberof CreateAlbumDto - */ - 'albumName': string; - /** - * - * @type {Array} - * @memberof CreateAlbumDto - */ - 'assetIds'?: Array; - /** - * - * @type {string} - * @memberof CreateAlbumDto - */ - 'description'?: string; - /** - * - * @type {Array} - * @memberof CreateAlbumDto - */ - 'sharedWithUserIds'?: Array; -} -/** - * - * @export - * @interface CreateLibraryDto - */ -export interface CreateLibraryDto { - /** - * - * @type {Array} - * @memberof CreateLibraryDto - */ - 'exclusionPatterns'?: Array; - /** - * - * @type {Array} - * @memberof CreateLibraryDto - */ - 'importPaths'?: Array; - /** - * - * @type {boolean} - * @memberof CreateLibraryDto - */ - 'isVisible'?: boolean; - /** - * - * @type {boolean} - * @memberof CreateLibraryDto - */ - 'isWatched'?: boolean; - /** - * - * @type {string} - * @memberof CreateLibraryDto - */ - 'name'?: string; - /** - * - * @type {LibraryType} - * @memberof CreateLibraryDto - */ - 'type': LibraryType; -} - - -/** - * - * @export - * @interface CreateProfileImageResponseDto - */ -export interface CreateProfileImageResponseDto { - /** - * - * @type {string} - * @memberof CreateProfileImageResponseDto - */ - 'profileImagePath': string; - /** - * - * @type {string} - * @memberof CreateProfileImageResponseDto - */ - 'userId': string; -} -/** - * - * @export - * @interface CreateTagDto - */ -export interface CreateTagDto { - /** - * - * @type {string} - * @memberof CreateTagDto - */ - 'name': string; - /** - * - * @type {TagTypeEnum} - * @memberof CreateTagDto - */ - 'type': TagTypeEnum; -} - - -/** - * - * @export - * @interface CreateUserDto - */ -export interface CreateUserDto { - /** - * - * @type {string} - * @memberof CreateUserDto - */ - 'email': string; - /** - * - * @type {string} - * @memberof CreateUserDto - */ - 'externalPath'?: string | null; - /** - * - * @type {boolean} - * @memberof CreateUserDto - */ - 'memoriesEnabled'?: boolean; - /** - * - * @type {string} - * @memberof CreateUserDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof CreateUserDto - */ - 'password': string; - /** - * - * @type {number} - * @memberof CreateUserDto - */ - 'quotaSizeInBytes'?: number | null; - /** - * - * @type {string} - * @memberof CreateUserDto - */ - 'storageLabel'?: string | null; -} -/** - * - * @export - * @interface CuratedLocationsResponseDto - */ -export interface CuratedLocationsResponseDto { - /** - * - * @type {string} - * @memberof CuratedLocationsResponseDto - */ - 'city': string; - /** - * - * @type {string} - * @memberof CuratedLocationsResponseDto - */ - 'deviceAssetId': string; - /** - * - * @type {string} - * @memberof CuratedLocationsResponseDto - */ - 'deviceId': string; - /** - * - * @type {string} - * @memberof CuratedLocationsResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof CuratedLocationsResponseDto - */ - 'resizePath': string; -} -/** - * - * @export - * @interface CuratedObjectsResponseDto - */ -export interface CuratedObjectsResponseDto { - /** - * - * @type {string} - * @memberof CuratedObjectsResponseDto - */ - 'deviceAssetId': string; - /** - * - * @type {string} - * @memberof CuratedObjectsResponseDto - */ - 'deviceId': string; - /** - * - * @type {string} - * @memberof CuratedObjectsResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof CuratedObjectsResponseDto - */ - 'object': string; - /** - * - * @type {string} - * @memberof CuratedObjectsResponseDto - */ - 'resizePath': string; -} -/** - * - * @export - * @interface DownloadArchiveInfo - */ -export interface DownloadArchiveInfo { - /** - * - * @type {Array} - * @memberof DownloadArchiveInfo - */ - 'assetIds': Array; - /** - * - * @type {number} - * @memberof DownloadArchiveInfo - */ - 'size': number; -} -/** - * - * @export - * @interface DownloadInfoDto - */ -export interface DownloadInfoDto { - /** - * - * @type {string} - * @memberof DownloadInfoDto - */ - 'albumId'?: string; - /** - * - * @type {number} - * @memberof DownloadInfoDto - */ - 'archiveSize'?: number; - /** - * - * @type {Array} - * @memberof DownloadInfoDto - */ - 'assetIds'?: Array; - /** - * - * @type {string} - * @memberof DownloadInfoDto - */ - 'userId'?: string; -} -/** - * - * @export - * @interface DownloadResponseDto - */ -export interface DownloadResponseDto { - /** - * - * @type {Array} - * @memberof DownloadResponseDto - */ - 'archives': Array; - /** - * - * @type {number} - * @memberof DownloadResponseDto - */ - 'totalSize': number; -} -/** - * - * @export - * @enum {string} - */ - -export const EntityType = { - Asset: 'ASSET', - Album: 'ALBUM' -} as const; - -export type EntityType = typeof EntityType[keyof typeof EntityType]; - - -/** - * - * @export - * @interface ExifResponseDto - */ -export interface ExifResponseDto { - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'city'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'country'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'dateTimeOriginal'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'description'?: string | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'exifImageHeight'?: number | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'exifImageWidth'?: number | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'exposureTime'?: string | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'fNumber'?: number | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'fileSizeInByte'?: number | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'focalLength'?: number | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'iso'?: number | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'latitude'?: number | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'lensModel'?: string | null; - /** - * - * @type {number} - * @memberof ExifResponseDto - */ - 'longitude'?: number | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'make'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'model'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'modifyDate'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'orientation'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'projectionType'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'state'?: string | null; - /** - * - * @type {string} - * @memberof ExifResponseDto - */ - 'timeZone'?: string | null; -} -/** - * - * @export - * @interface FaceDto - */ -export interface FaceDto { - /** - * - * @type {string} - * @memberof FaceDto - */ - 'id': string; -} -/** - * - * @export - * @interface FileChecksumDto - */ -export interface FileChecksumDto { - /** - * - * @type {Array} - * @memberof FileChecksumDto - */ - 'filenames': Array; -} -/** - * - * @export - * @interface FileChecksumResponseDto - */ -export interface FileChecksumResponseDto { - /** - * - * @type {string} - * @memberof FileChecksumResponseDto - */ - 'checksum': string; - /** - * - * @type {string} - * @memberof FileChecksumResponseDto - */ - 'filename': string; -} -/** - * - * @export - * @interface FileReportDto - */ -export interface FileReportDto { - /** - * - * @type {Array} - * @memberof FileReportDto - */ - 'extras': Array; - /** - * - * @type {Array} - * @memberof FileReportDto - */ - 'orphans': Array; -} -/** - * - * @export - * @interface FileReportFixDto - */ -export interface FileReportFixDto { - /** - * - * @type {Array} - * @memberof FileReportFixDto - */ - 'items': Array; -} -/** - * - * @export - * @interface FileReportItemDto - */ -export interface FileReportItemDto { - /** - * - * @type {string} - * @memberof FileReportItemDto - */ - 'checksum'?: string; - /** - * - * @type {string} - * @memberof FileReportItemDto - */ - 'entityId': string; - /** - * - * @type {PathEntityType} - * @memberof FileReportItemDto - */ - 'entityType': PathEntityType; - /** - * - * @type {PathType} - * @memberof FileReportItemDto - */ - 'pathType': PathType; - /** - * - * @type {string} - * @memberof FileReportItemDto - */ - 'pathValue': string; -} - - -/** - * - * @export - * @enum {string} - */ - -export const JobCommand = { - Start: 'start', - Pause: 'pause', - Resume: 'resume', - Empty: 'empty', - ClearFailed: 'clear-failed' -} as const; - -export type JobCommand = typeof JobCommand[keyof typeof JobCommand]; - - -/** - * - * @export - * @interface JobCommandDto - */ -export interface JobCommandDto { - /** - * - * @type {JobCommand} - * @memberof JobCommandDto - */ - 'command': JobCommand; - /** - * - * @type {boolean} - * @memberof JobCommandDto - */ - 'force': boolean; -} - - -/** - * - * @export - * @interface JobCountsDto - */ -export interface JobCountsDto { - /** - * - * @type {number} - * @memberof JobCountsDto - */ - 'active': number; - /** - * - * @type {number} - * @memberof JobCountsDto - */ - 'completed': number; - /** - * - * @type {number} - * @memberof JobCountsDto - */ - 'delayed': number; - /** - * - * @type {number} - * @memberof JobCountsDto - */ - 'failed': number; - /** - * - * @type {number} - * @memberof JobCountsDto - */ - 'paused': number; - /** - * - * @type {number} - * @memberof JobCountsDto - */ - 'waiting': number; -} -/** - * - * @export - * @enum {string} - */ - -export const JobName = { - ThumbnailGeneration: 'thumbnailGeneration', - MetadataExtraction: 'metadataExtraction', - VideoConversion: 'videoConversion', - FaceDetection: 'faceDetection', - FacialRecognition: 'facialRecognition', - SmartSearch: 'smartSearch', - BackgroundTask: 'backgroundTask', - StorageTemplateMigration: 'storageTemplateMigration', - Migration: 'migration', - Search: 'search', - Sidecar: 'sidecar', - Library: 'library' -} as const; - -export type JobName = typeof JobName[keyof typeof JobName]; - - -/** - * - * @export - * @interface JobSettingsDto - */ -export interface JobSettingsDto { - /** - * - * @type {number} - * @memberof JobSettingsDto - */ - 'concurrency': number; -} -/** - * - * @export - * @interface JobStatusDto - */ -export interface JobStatusDto { - /** - * - * @type {JobCountsDto} - * @memberof JobStatusDto - */ - 'jobCounts': JobCountsDto; - /** - * - * @type {QueueStatusDto} - * @memberof JobStatusDto - */ - 'queueStatus': QueueStatusDto; -} -/** - * - * @export - * @interface LibraryResponseDto - */ -export interface LibraryResponseDto { - /** - * - * @type {number} - * @memberof LibraryResponseDto - */ - 'assetCount': number; - /** - * - * @type {string} - * @memberof LibraryResponseDto - */ - 'createdAt': string; - /** - * - * @type {Array} - * @memberof LibraryResponseDto - */ - 'exclusionPatterns': Array; - /** - * - * @type {string} - * @memberof LibraryResponseDto - */ - 'id': string; - /** - * - * @type {Array} - * @memberof LibraryResponseDto - */ - 'importPaths': Array; - /** - * - * @type {string} - * @memberof LibraryResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof LibraryResponseDto - */ - 'ownerId': string; - /** - * - * @type {string} - * @memberof LibraryResponseDto - */ - 'refreshedAt': string | null; - /** - * - * @type {LibraryType} - * @memberof LibraryResponseDto - */ - 'type': LibraryType; - /** - * - * @type {string} - * @memberof LibraryResponseDto - */ - 'updatedAt': string; -} - - -/** - * - * @export - * @interface LibraryStatsResponseDto - */ -export interface LibraryStatsResponseDto { - /** - * - * @type {number} - * @memberof LibraryStatsResponseDto - */ - 'photos': number; - /** - * - * @type {number} - * @memberof LibraryStatsResponseDto - */ - 'total': number; - /** - * - * @type {number} - * @memberof LibraryStatsResponseDto - */ - 'usage': number; - /** - * - * @type {number} - * @memberof LibraryStatsResponseDto - */ - 'videos': number; -} -/** - * - * @export - * @enum {string} - */ - -export const LibraryType = { - Upload: 'UPLOAD', - External: 'EXTERNAL' -} as const; - -export type LibraryType = typeof LibraryType[keyof typeof LibraryType]; - - -/** - * - * @export - * @enum {string} - */ - -export const LogLevel = { - Verbose: 'verbose', - Debug: 'debug', - Log: 'log', - Warn: 'warn', - Error: 'error', - Fatal: 'fatal' -} as const; - -export type LogLevel = typeof LogLevel[keyof typeof LogLevel]; - - -/** - * - * @export - * @interface LoginCredentialDto - */ -export interface LoginCredentialDto { - /** - * - * @type {string} - * @memberof LoginCredentialDto - */ - 'email': string; - /** - * - * @type {string} - * @memberof LoginCredentialDto - */ - 'password': string; -} -/** - * - * @export - * @interface LoginResponseDto - */ -export interface LoginResponseDto { - /** - * - * @type {string} - * @memberof LoginResponseDto - */ - 'accessToken': string; - /** - * - * @type {boolean} - * @memberof LoginResponseDto - */ - 'isAdmin': boolean; - /** - * - * @type {string} - * @memberof LoginResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof LoginResponseDto - */ - 'profileImagePath': string; - /** - * - * @type {boolean} - * @memberof LoginResponseDto - */ - 'shouldChangePassword': boolean; - /** - * - * @type {string} - * @memberof LoginResponseDto - */ - 'userEmail': string; - /** - * - * @type {string} - * @memberof LoginResponseDto - */ - 'userId': string; -} -/** - * - * @export - * @interface LogoutResponseDto - */ -export interface LogoutResponseDto { - /** - * - * @type {string} - * @memberof LogoutResponseDto - */ - 'redirectUri': string; - /** - * - * @type {boolean} - * @memberof LogoutResponseDto - */ - 'successful': boolean; -} -/** - * - * @export - * @interface MapMarkerResponseDto - */ -export interface MapMarkerResponseDto { - /** - * - * @type {string} - * @memberof MapMarkerResponseDto - */ - 'id': string; - /** - * - * @type {number} - * @memberof MapMarkerResponseDto - */ - 'lat': number; - /** - * - * @type {number} - * @memberof MapMarkerResponseDto - */ - 'lon': number; -} -/** - * - * @export - * @enum {string} - */ - -export const MapTheme = { - Light: 'light', - Dark: 'dark' -} as const; - -export type MapTheme = typeof MapTheme[keyof typeof MapTheme]; - - -/** - * - * @export - * @interface MemoryLaneResponseDto - */ -export interface MemoryLaneResponseDto { - /** - * - * @type {Array} - * @memberof MemoryLaneResponseDto - */ - 'assets': Array; - /** - * - * @type {string} - * @memberof MemoryLaneResponseDto - */ - 'title': string; -} -/** - * - * @export - * @interface MergePersonDto - */ -export interface MergePersonDto { - /** - * - * @type {Array} - * @memberof MergePersonDto - */ - 'ids': Array; -} -/** - * - * @export - * @interface MetadataSearchDto - */ -export interface MetadataSearchDto { - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'checksum'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'city'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'country'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'createdAfter'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'createdBefore'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'deviceAssetId'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'deviceId'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'encodedVideoPath'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'id'?: string; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isArchived'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isEncoded'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isExternal'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isFavorite'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isMotion'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isNotInAlbum'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isOffline'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isReadOnly'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'isVisible'?: boolean; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'lensModel'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'libraryId'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'make'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'model'?: string; - /** - * - * @type {AssetOrder} - * @memberof MetadataSearchDto - */ - 'order'?: AssetOrder; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'originalFileName'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'originalPath'?: string; - /** - * - * @type {number} - * @memberof MetadataSearchDto - */ - 'page'?: number; - /** - * - * @type {Array} - * @memberof MetadataSearchDto - */ - 'personIds'?: Array; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'resizePath'?: string; - /** - * - * @type {number} - * @memberof MetadataSearchDto - */ - 'size'?: number; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'state'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'takenAfter'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'takenBefore'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'trashedAfter'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'trashedBefore'?: string; - /** - * - * @type {AssetTypeEnum} - * @memberof MetadataSearchDto - */ - 'type'?: AssetTypeEnum; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'updatedAfter'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'updatedBefore'?: string; - /** - * - * @type {string} - * @memberof MetadataSearchDto - */ - 'webpPath'?: string; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'withArchived'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'withDeleted'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'withExif'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'withPeople'?: boolean; - /** - * - * @type {boolean} - * @memberof MetadataSearchDto - */ - 'withStacked'?: boolean; -} - - -/** - * - * @export - * @enum {string} - */ - -export const ModelType = { - FacialRecognition: 'facial-recognition', - Clip: 'clip' -} as const; - -export type ModelType = typeof ModelType[keyof typeof ModelType]; - - -/** - * - * @export - * @interface OAuthAuthorizeResponseDto - */ -export interface OAuthAuthorizeResponseDto { - /** - * - * @type {string} - * @memberof OAuthAuthorizeResponseDto - */ - 'url': string; -} -/** - * - * @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 PartnerResponseDto - */ -export interface PartnerResponseDto { - /** - * - * @type {UserAvatarColor} - * @memberof PartnerResponseDto - */ - 'avatarColor': UserAvatarColor; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'createdAt': string; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'deletedAt': string | null; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'email': string; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'externalPath': string | null; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof PartnerResponseDto - */ - 'inTimeline'?: boolean; - /** - * - * @type {boolean} - * @memberof PartnerResponseDto - */ - 'isAdmin': boolean; - /** - * - * @type {boolean} - * @memberof PartnerResponseDto - */ - 'memoriesEnabled'?: boolean; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'oauthId': string; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'profileImagePath': string; - /** - * - * @type {number} - * @memberof PartnerResponseDto - */ - 'quotaSizeInBytes': number | null; - /** - * - * @type {number} - * @memberof PartnerResponseDto - */ - 'quotaUsageInBytes': number | null; - /** - * - * @type {boolean} - * @memberof PartnerResponseDto - */ - 'shouldChangePassword': boolean; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'storageLabel': string | null; - /** - * - * @type {string} - * @memberof PartnerResponseDto - */ - 'updatedAt': string; -} - - -/** - * - * @export - * @enum {string} - */ - -export const PathEntityType = { - Asset: 'asset', - Person: 'person', - User: 'user' -} as const; - -export type PathEntityType = typeof PathEntityType[keyof typeof PathEntityType]; - - -/** - * - * @export - * @enum {string} - */ - -export const PathType = { - Original: 'original', - JpegThumbnail: 'jpeg_thumbnail', - WebpThumbnail: 'webp_thumbnail', - EncodedVideo: 'encoded_video', - Sidecar: 'sidecar', - Face: 'face', - Profile: 'profile' -} as const; - -export type PathType = typeof PathType[keyof typeof PathType]; - - -/** - * - * @export - * @interface PeopleResponseDto - */ -export interface PeopleResponseDto { - /** - * - * @type {number} - * @memberof PeopleResponseDto - */ - 'hidden': number; - /** - * - * @type {Array} - * @memberof PeopleResponseDto - */ - 'people': Array; - /** - * - * @type {number} - * @memberof PeopleResponseDto - */ - 'total': number; -} -/** - * - * @export - * @interface PeopleUpdateDto - */ -export interface PeopleUpdateDto { - /** - * - * @type {Array} - * @memberof PeopleUpdateDto - */ - 'people': Array; -} -/** - * - * @export - * @interface PeopleUpdateItem - */ -export interface PeopleUpdateItem { - /** - * Person date of birth. Note: the mobile app cannot currently set the birth date to null. - * @type {string} - * @memberof PeopleUpdateItem - */ - 'birthDate'?: string | null; - /** - * Asset is used to get the feature face thumbnail. - * @type {string} - * @memberof PeopleUpdateItem - */ - 'featureFaceAssetId'?: string; - /** - * Person id. - * @type {string} - * @memberof PeopleUpdateItem - */ - 'id': string; - /** - * Person visibility - * @type {boolean} - * @memberof PeopleUpdateItem - */ - 'isHidden'?: boolean; - /** - * Person name. - * @type {string} - * @memberof PeopleUpdateItem - */ - 'name'?: string; -} -/** - * - * @export - * @interface PersonResponseDto - */ -export interface PersonResponseDto { - /** - * - * @type {string} - * @memberof PersonResponseDto - */ - 'birthDate': string | null; - /** - * - * @type {string} - * @memberof PersonResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof PersonResponseDto - */ - 'isHidden': boolean; - /** - * - * @type {string} - * @memberof PersonResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof PersonResponseDto - */ - 'thumbnailPath': string; -} -/** - * - * @export - * @interface PersonStatisticsResponseDto - */ -export interface PersonStatisticsResponseDto { - /** - * - * @type {number} - * @memberof PersonStatisticsResponseDto - */ - 'assets': number; -} -/** - * - * @export - * @interface PersonUpdateDto - */ -export interface PersonUpdateDto { - /** - * Person date of birth. Note: the mobile app cannot currently set the birth date to null. - * @type {string} - * @memberof PersonUpdateDto - */ - 'birthDate'?: string | null; - /** - * Asset is used to get the feature face thumbnail. - * @type {string} - * @memberof PersonUpdateDto - */ - 'featureFaceAssetId'?: string; - /** - * Person visibility - * @type {boolean} - * @memberof PersonUpdateDto - */ - 'isHidden'?: boolean; - /** - * Person name. - * @type {string} - * @memberof PersonUpdateDto - */ - 'name'?: string; -} -/** - * - * @export - * @interface PersonWithFacesResponseDto - */ -export interface PersonWithFacesResponseDto { - /** - * - * @type {string} - * @memberof PersonWithFacesResponseDto - */ - 'birthDate': string | null; - /** - * - * @type {Array} - * @memberof PersonWithFacesResponseDto - */ - 'faces': Array; - /** - * - * @type {string} - * @memberof PersonWithFacesResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof PersonWithFacesResponseDto - */ - 'isHidden': boolean; - /** - * - * @type {string} - * @memberof PersonWithFacesResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof PersonWithFacesResponseDto - */ - 'thumbnailPath': string; -} -/** - * - * @export - * @interface PlacesResponseDto - */ -export interface PlacesResponseDto { - /** - * - * @type {string} - * @memberof PlacesResponseDto - */ - 'admin1name'?: string; - /** - * - * @type {string} - * @memberof PlacesResponseDto - */ - 'admin2name'?: string; - /** - * - * @type {number} - * @memberof PlacesResponseDto - */ - 'latitude': number; - /** - * - * @type {number} - * @memberof PlacesResponseDto - */ - 'longitude': number; - /** - * - * @type {string} - * @memberof PlacesResponseDto - */ - 'name': string; -} -/** - * - * @export - * @interface QueueStatusDto - */ -export interface QueueStatusDto { - /** - * - * @type {boolean} - * @memberof QueueStatusDto - */ - 'isActive': boolean; - /** - * - * @type {boolean} - * @memberof QueueStatusDto - */ - 'isPaused': boolean; -} -/** - * - * @export - * @enum {string} - */ - -export const ReactionLevel = { - Album: 'album', - Asset: 'asset' -} as const; - -export type ReactionLevel = typeof ReactionLevel[keyof typeof ReactionLevel]; - - -/** - * - * @export - * @enum {string} - */ - -export const ReactionType = { - Comment: 'comment', - Like: 'like' -} as const; - -export type ReactionType = typeof ReactionType[keyof typeof ReactionType]; - - -/** - * - * @export - * @interface RecognitionConfig - */ -export interface RecognitionConfig { - /** - * - * @type {boolean} - * @memberof RecognitionConfig - */ - 'enabled': boolean; - /** - * - * @type {number} - * @memberof RecognitionConfig - */ - 'maxDistance': number; - /** - * - * @type {number} - * @memberof RecognitionConfig - */ - 'minFaces': number; - /** - * - * @type {number} - * @memberof RecognitionConfig - */ - 'minScore': number; - /** - * - * @type {string} - * @memberof RecognitionConfig - */ - 'modelName': string; - /** - * - * @type {ModelType} - * @memberof RecognitionConfig - */ - 'modelType'?: ModelType; -} - - -/** - * - * @export - * @interface ScanLibraryDto - */ -export interface ScanLibraryDto { - /** - * - * @type {boolean} - * @memberof ScanLibraryDto - */ - 'refreshAllFiles'?: boolean; - /** - * - * @type {boolean} - * @memberof ScanLibraryDto - */ - 'refreshModifiedFiles'?: boolean; -} -/** - * - * @export - * @interface SearchAlbumResponseDto - */ -export interface SearchAlbumResponseDto { - /** - * - * @type {number} - * @memberof SearchAlbumResponseDto - */ - 'count': number; - /** - * - * @type {Array} - * @memberof SearchAlbumResponseDto - */ - 'facets': Array; - /** - * - * @type {Array} - * @memberof SearchAlbumResponseDto - */ - 'items': Array; - /** - * - * @type {number} - * @memberof SearchAlbumResponseDto - */ - 'total': number; -} -/** - * - * @export - * @interface SearchAssetResponseDto - */ -export interface SearchAssetResponseDto { - /** - * - * @type {number} - * @memberof SearchAssetResponseDto - */ - 'count': number; - /** - * - * @type {Array} - * @memberof SearchAssetResponseDto - */ - 'facets': Array; - /** - * - * @type {Array} - * @memberof SearchAssetResponseDto - */ - 'items': Array; - /** - * - * @type {string} - * @memberof SearchAssetResponseDto - */ - 'nextPage': string | null; - /** - * - * @type {number} - * @memberof SearchAssetResponseDto - */ - 'total': number; -} -/** - * - * @export - * @interface SearchExploreItem - */ -export interface SearchExploreItem { - /** - * - * @type {AssetResponseDto} - * @memberof SearchExploreItem - */ - 'data': AssetResponseDto; - /** - * - * @type {string} - * @memberof SearchExploreItem - */ - 'value': string; -} -/** - * - * @export - * @interface SearchExploreResponseDto - */ -export interface SearchExploreResponseDto { - /** - * - * @type {string} - * @memberof SearchExploreResponseDto - */ - 'fieldName': string; - /** - * - * @type {Array} - * @memberof SearchExploreResponseDto - */ - 'items': Array; -} -/** - * - * @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 {Array} - * @memberof SearchFacetResponseDto - */ - 'counts': Array; - /** - * - * @type {string} - * @memberof SearchFacetResponseDto - */ - 'fieldName': string; -} -/** - * - * @export - * @interface SearchResponseDto - */ -export interface SearchResponseDto { - /** - * - * @type {SearchAlbumResponseDto} - * @memberof SearchResponseDto - */ - 'albums': SearchAlbumResponseDto; - /** - * - * @type {SearchAssetResponseDto} - * @memberof SearchResponseDto - */ - 'assets': SearchAssetResponseDto; -} -/** - * - * @export - * @enum {string} - */ - -export const SearchSuggestionType = { - Country: 'country', - State: 'state', - City: 'city', - CameraMake: 'camera-make', - CameraModel: 'camera-model' -} as const; - -export type SearchSuggestionType = typeof SearchSuggestionType[keyof typeof SearchSuggestionType]; - - -/** - * - * @export - * @interface ServerConfigDto - */ -export interface ServerConfigDto { - /** - * - * @type {string} - * @memberof ServerConfigDto - */ - 'externalDomain': string; - /** - * - * @type {boolean} - * @memberof ServerConfigDto - */ - 'isInitialized': boolean; - /** - * - * @type {boolean} - * @memberof ServerConfigDto - */ - 'isOnboarded': boolean; - /** - * - * @type {string} - * @memberof ServerConfigDto - */ - 'loginPageMessage': string; - /** - * - * @type {string} - * @memberof ServerConfigDto - */ - 'oauthButtonText': string; - /** - * - * @type {number} - * @memberof ServerConfigDto - */ - 'trashDays': number; -} -/** - * - * @export - * @interface ServerFeaturesDto - */ -export interface ServerFeaturesDto { - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'configFile': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'facialRecognition': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'map': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'oauth': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'oauthAutoLaunch': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'passwordLogin': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'reverseGeocoding': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'search': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'sidecar': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'smartSearch': boolean; - /** - * - * @type {boolean} - * @memberof ServerFeaturesDto - */ - 'trash': boolean; -} -/** - * - * @export - * @interface ServerInfoResponseDto - */ -export interface ServerInfoResponseDto { - /** - * - * @type {string} - * @memberof ServerInfoResponseDto - */ - 'diskAvailable': string; - /** - * - * @type {number} - * @memberof ServerInfoResponseDto - */ - 'diskAvailableRaw': number; - /** - * - * @type {string} - * @memberof ServerInfoResponseDto - */ - 'diskSize': string; - /** - * - * @type {number} - * @memberof ServerInfoResponseDto - */ - 'diskSizeRaw': number; - /** - * - * @type {number} - * @memberof ServerInfoResponseDto - */ - 'diskUsagePercentage': number; - /** - * - * @type {string} - * @memberof ServerInfoResponseDto - */ - 'diskUse': string; - /** - * - * @type {number} - * @memberof ServerInfoResponseDto - */ - 'diskUseRaw': number; -} -/** - * - * @export - * @interface ServerMediaTypesResponseDto - */ -export interface ServerMediaTypesResponseDto { - /** - * - * @type {Array} - * @memberof ServerMediaTypesResponseDto - */ - 'image': Array; - /** - * - * @type {Array} - * @memberof ServerMediaTypesResponseDto - */ - 'sidecar': Array; - /** - * - * @type {Array} - * @memberof ServerMediaTypesResponseDto - */ - 'video': Array; -} -/** - * - * @export - * @interface ServerPingResponse - */ -export interface ServerPingResponse { - /** - * - * @type {string} - * @memberof ServerPingResponse - */ - 'res': string; -} -/** - * - * @export - * @interface ServerStatsResponseDto - */ -export interface ServerStatsResponseDto { - /** - * - * @type {number} - * @memberof ServerStatsResponseDto - */ - 'photos': number; - /** - * - * @type {number} - * @memberof ServerStatsResponseDto - */ - 'usage': number; - /** - * - * @type {Array} - * @memberof ServerStatsResponseDto - */ - 'usageByUser': Array; - /** - * - * @type {number} - * @memberof ServerStatsResponseDto - */ - 'videos': number; -} -/** - * - * @export - * @interface ServerThemeDto - */ -export interface ServerThemeDto { - /** - * - * @type {string} - * @memberof ServerThemeDto - */ - 'customCss': string; -} -/** - * - * @export - * @interface ServerVersionResponseDto - */ -export interface ServerVersionResponseDto { - /** - * - * @type {number} - * @memberof ServerVersionResponseDto - */ - 'major': number; - /** - * - * @type {number} - * @memberof ServerVersionResponseDto - */ - 'minor': number; - /** - * - * @type {number} - * @memberof ServerVersionResponseDto - */ - 'patch': number; -} -/** - * - * @export - * @interface SharedLinkCreateDto - */ -export interface SharedLinkCreateDto { - /** - * - * @type {string} - * @memberof SharedLinkCreateDto - */ - 'albumId'?: string; - /** - * - * @type {boolean} - * @memberof SharedLinkCreateDto - */ - 'allowDownload'?: boolean; - /** - * - * @type {boolean} - * @memberof SharedLinkCreateDto - */ - 'allowUpload'?: boolean; - /** - * - * @type {Array} - * @memberof SharedLinkCreateDto - */ - 'assetIds'?: Array; - /** - * - * @type {string} - * @memberof SharedLinkCreateDto - */ - 'description'?: string; - /** - * - * @type {string} - * @memberof SharedLinkCreateDto - */ - 'expiresAt'?: string | null; - /** - * - * @type {string} - * @memberof SharedLinkCreateDto - */ - 'password'?: string; - /** - * - * @type {boolean} - * @memberof SharedLinkCreateDto - */ - 'showMetadata'?: boolean; - /** - * - * @type {SharedLinkType} - * @memberof SharedLinkCreateDto - */ - 'type': SharedLinkType; -} - - -/** - * - * @export - * @interface SharedLinkEditDto - */ -export interface SharedLinkEditDto { - /** - * - * @type {boolean} - * @memberof SharedLinkEditDto - */ - 'allowDownload'?: boolean; - /** - * - * @type {boolean} - * @memberof SharedLinkEditDto - */ - 'allowUpload'?: boolean; - /** - * Few clients cannot send null to set the expiryTime to never. Setting this flag and not sending expiryAt is considered as null instead. Clients that can send null values can ignore this. - * @type {boolean} - * @memberof SharedLinkEditDto - */ - 'changeExpiryTime'?: boolean; - /** - * - * @type {string} - * @memberof SharedLinkEditDto - */ - 'description'?: string; - /** - * - * @type {string} - * @memberof SharedLinkEditDto - */ - 'expiresAt'?: string | null; - /** - * - * @type {string} - * @memberof SharedLinkEditDto - */ - 'password'?: string; - /** - * - * @type {boolean} - * @memberof SharedLinkEditDto - */ - 'showMetadata'?: boolean; -} -/** - * - * @export - * @interface SharedLinkResponseDto - */ -export interface SharedLinkResponseDto { - /** - * - * @type {AlbumResponseDto} - * @memberof SharedLinkResponseDto - */ - 'album'?: AlbumResponseDto; - /** - * - * @type {boolean} - * @memberof SharedLinkResponseDto - */ - 'allowDownload': boolean; - /** - * - * @type {boolean} - * @memberof SharedLinkResponseDto - */ - 'allowUpload': boolean; - /** - * - * @type {Array} - * @memberof SharedLinkResponseDto - */ - 'assets': Array; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'createdAt': string; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'description': string | null; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'expiresAt': string | null; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'key': string; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'password': string | null; - /** - * - * @type {boolean} - * @memberof SharedLinkResponseDto - */ - 'showMetadata': boolean; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'token'?: string | null; - /** - * - * @type {SharedLinkType} - * @memberof SharedLinkResponseDto - */ - 'type': SharedLinkType; - /** - * - * @type {string} - * @memberof SharedLinkResponseDto - */ - 'userId': string; -} - - -/** - * - * @export - * @enum {string} - */ - -export const SharedLinkType = { - Album: 'ALBUM', - Individual: 'INDIVIDUAL' -} as const; - -export type SharedLinkType = typeof SharedLinkType[keyof typeof SharedLinkType]; - - -/** - * - * @export - * @interface SignUpDto - */ -export interface SignUpDto { - /** - * - * @type {string} - * @memberof SignUpDto - */ - 'email': string; - /** - * - * @type {string} - * @memberof SignUpDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof SignUpDto - */ - 'password': string; -} -/** - * - * @export - * @interface SmartInfoResponseDto - */ -export interface SmartInfoResponseDto { - /** - * - * @type {Array} - * @memberof SmartInfoResponseDto - */ - 'objects'?: Array | null; - /** - * - * @type {Array} - * @memberof SmartInfoResponseDto - */ - 'tags'?: Array | null; -} -/** - * - * @export - * @interface SmartSearchDto - */ -export interface SmartSearchDto { - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'city'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'country'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'createdAfter'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'createdBefore'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'deviceId'?: string; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isArchived'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isEncoded'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isExternal'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isFavorite'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isMotion'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isNotInAlbum'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isOffline'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isReadOnly'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'isVisible'?: boolean; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'lensModel'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'libraryId'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'make'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'model'?: string; - /** - * - * @type {number} - * @memberof SmartSearchDto - */ - 'page'?: number; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'query': string; - /** - * - * @type {number} - * @memberof SmartSearchDto - */ - 'size'?: number; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'state'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'takenAfter'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'takenBefore'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'trashedAfter'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'trashedBefore'?: string; - /** - * - * @type {AssetTypeEnum} - * @memberof SmartSearchDto - */ - 'type'?: AssetTypeEnum; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'updatedAfter'?: string; - /** - * - * @type {string} - * @memberof SmartSearchDto - */ - 'updatedBefore'?: string; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'withArchived'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'withDeleted'?: boolean; - /** - * - * @type {boolean} - * @memberof SmartSearchDto - */ - 'withExif'?: boolean; -} - - -/** - * - * @export - * @interface SystemConfigDto - */ -export interface SystemConfigDto { - /** - * - * @type {SystemConfigFFmpegDto} - * @memberof SystemConfigDto - */ - 'ffmpeg': SystemConfigFFmpegDto; - /** - * - * @type {SystemConfigJobDto} - * @memberof SystemConfigDto - */ - 'job': SystemConfigJobDto; - /** - * - * @type {SystemConfigLibraryDto} - * @memberof SystemConfigDto - */ - 'library': SystemConfigLibraryDto; - /** - * - * @type {SystemConfigLoggingDto} - * @memberof SystemConfigDto - */ - 'logging': SystemConfigLoggingDto; - /** - * - * @type {SystemConfigMachineLearningDto} - * @memberof SystemConfigDto - */ - 'machineLearning': SystemConfigMachineLearningDto; - /** - * - * @type {SystemConfigMapDto} - * @memberof SystemConfigDto - */ - 'map': SystemConfigMapDto; - /** - * - * @type {SystemConfigNewVersionCheckDto} - * @memberof SystemConfigDto - */ - 'newVersionCheck': SystemConfigNewVersionCheckDto; - /** - * - * @type {SystemConfigOAuthDto} - * @memberof SystemConfigDto - */ - 'oauth': SystemConfigOAuthDto; - /** - * - * @type {SystemConfigPasswordLoginDto} - * @memberof SystemConfigDto - */ - 'passwordLogin': SystemConfigPasswordLoginDto; - /** - * - * @type {SystemConfigReverseGeocodingDto} - * @memberof SystemConfigDto - */ - 'reverseGeocoding': SystemConfigReverseGeocodingDto; - /** - * - * @type {SystemConfigServerDto} - * @memberof SystemConfigDto - */ - 'server': SystemConfigServerDto; - /** - * - * @type {SystemConfigStorageTemplateDto} - * @memberof SystemConfigDto - */ - 'storageTemplate': SystemConfigStorageTemplateDto; - /** - * - * @type {SystemConfigThemeDto} - * @memberof SystemConfigDto - */ - 'theme': SystemConfigThemeDto; - /** - * - * @type {SystemConfigThumbnailDto} - * @memberof SystemConfigDto - */ - 'thumbnail': SystemConfigThumbnailDto; - /** - * - * @type {SystemConfigTrashDto} - * @memberof SystemConfigDto - */ - 'trash': SystemConfigTrashDto; -} -/** - * - * @export - * @interface SystemConfigFFmpegDto - */ -export interface SystemConfigFFmpegDto { - /** - * - * @type {TranscodeHWAccel} - * @memberof SystemConfigFFmpegDto - */ - 'accel': TranscodeHWAccel; - /** - * - * @type {Array} - * @memberof SystemConfigFFmpegDto - */ - 'acceptedAudioCodecs': Array; - /** - * - * @type {Array} - * @memberof SystemConfigFFmpegDto - */ - 'acceptedVideoCodecs': Array; - /** - * - * @type {number} - * @memberof SystemConfigFFmpegDto - */ - 'bframes': number; - /** - * - * @type {CQMode} - * @memberof SystemConfigFFmpegDto - */ - 'cqMode': CQMode; - /** - * - * @type {number} - * @memberof SystemConfigFFmpegDto - */ - 'crf': number; - /** - * - * @type {number} - * @memberof SystemConfigFFmpegDto - */ - 'gopSize': number; - /** - * - * @type {string} - * @memberof SystemConfigFFmpegDto - */ - 'maxBitrate': string; - /** - * - * @type {number} - * @memberof SystemConfigFFmpegDto - */ - 'npl': number; - /** - * - * @type {string} - * @memberof SystemConfigFFmpegDto - */ - 'preferredHwDevice': string; - /** - * - * @type {string} - * @memberof SystemConfigFFmpegDto - */ - 'preset': string; - /** - * - * @type {number} - * @memberof SystemConfigFFmpegDto - */ - 'refs': number; - /** - * - * @type {AudioCodec} - * @memberof SystemConfigFFmpegDto - */ - 'targetAudioCodec': AudioCodec; - /** - * - * @type {string} - * @memberof SystemConfigFFmpegDto - */ - 'targetResolution': string; - /** - * - * @type {VideoCodec} - * @memberof SystemConfigFFmpegDto - */ - 'targetVideoCodec': VideoCodec; - /** - * - * @type {boolean} - * @memberof SystemConfigFFmpegDto - */ - 'temporalAQ': boolean; - /** - * - * @type {number} - * @memberof SystemConfigFFmpegDto - */ - 'threads': number; - /** - * - * @type {ToneMapping} - * @memberof SystemConfigFFmpegDto - */ - 'tonemap': ToneMapping; - /** - * - * @type {TranscodePolicy} - * @memberof SystemConfigFFmpegDto - */ - 'transcode': TranscodePolicy; - /** - * - * @type {boolean} - * @memberof SystemConfigFFmpegDto - */ - 'twoPass': boolean; -} - - -/** - * - * @export - * @interface SystemConfigJobDto - */ -export interface SystemConfigJobDto { - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'backgroundTask': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'faceDetection': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'library': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'metadataExtraction': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'migration': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'search': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'sidecar': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'smartSearch': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'thumbnailGeneration': JobSettingsDto; - /** - * - * @type {JobSettingsDto} - * @memberof SystemConfigJobDto - */ - 'videoConversion': JobSettingsDto; -} -/** - * - * @export - * @interface SystemConfigLibraryDto - */ -export interface SystemConfigLibraryDto { - /** - * - * @type {SystemConfigLibraryScanDto} - * @memberof SystemConfigLibraryDto - */ - 'scan': SystemConfigLibraryScanDto; - /** - * - * @type {SystemConfigLibraryWatchDto} - * @memberof SystemConfigLibraryDto - */ - 'watch': SystemConfigLibraryWatchDto; -} -/** - * - * @export - * @interface SystemConfigLibraryScanDto - */ -export interface SystemConfigLibraryScanDto { - /** - * - * @type {string} - * @memberof SystemConfigLibraryScanDto - */ - 'cronExpression': string; - /** - * - * @type {boolean} - * @memberof SystemConfigLibraryScanDto - */ - 'enabled': boolean; -} -/** - * - * @export - * @interface SystemConfigLibraryWatchDto - */ -export interface SystemConfigLibraryWatchDto { - /** - * - * @type {boolean} - * @memberof SystemConfigLibraryWatchDto - */ - 'enabled': boolean; -} -/** - * - * @export - * @interface SystemConfigLoggingDto - */ -export interface SystemConfigLoggingDto { - /** - * - * @type {boolean} - * @memberof SystemConfigLoggingDto - */ - 'enabled': boolean; - /** - * - * @type {LogLevel} - * @memberof SystemConfigLoggingDto - */ - 'level': LogLevel; -} - - -/** - * - * @export - * @interface SystemConfigMachineLearningDto - */ -export interface SystemConfigMachineLearningDto { - /** - * - * @type {CLIPConfig} - * @memberof SystemConfigMachineLearningDto - */ - 'clip': CLIPConfig; - /** - * - * @type {boolean} - * @memberof SystemConfigMachineLearningDto - */ - 'enabled': boolean; - /** - * - * @type {RecognitionConfig} - * @memberof SystemConfigMachineLearningDto - */ - 'facialRecognition': RecognitionConfig; - /** - * - * @type {string} - * @memberof SystemConfigMachineLearningDto - */ - 'url': string; -} -/** - * - * @export - * @interface SystemConfigMapDto - */ -export interface SystemConfigMapDto { - /** - * - * @type {string} - * @memberof SystemConfigMapDto - */ - 'darkStyle': string; - /** - * - * @type {boolean} - * @memberof SystemConfigMapDto - */ - 'enabled': boolean; - /** - * - * @type {string} - * @memberof SystemConfigMapDto - */ - 'lightStyle': string; -} -/** - * - * @export - * @interface SystemConfigNewVersionCheckDto - */ -export interface SystemConfigNewVersionCheckDto { - /** - * - * @type {boolean} - * @memberof SystemConfigNewVersionCheckDto - */ - 'enabled': boolean; -} -/** - * - * @export - * @interface SystemConfigOAuthDto - */ -export interface SystemConfigOAuthDto { - /** - * - * @type {boolean} - * @memberof SystemConfigOAuthDto - */ - 'autoLaunch': boolean; - /** - * - * @type {boolean} - * @memberof SystemConfigOAuthDto - */ - 'autoRegister': boolean; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'buttonText': string; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'clientId': string; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'clientSecret': string; - /** - * - * @type {boolean} - * @memberof SystemConfigOAuthDto - */ - 'enabled': boolean; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'issuerUrl': string; - /** - * - * @type {boolean} - * @memberof SystemConfigOAuthDto - */ - 'mobileOverrideEnabled': boolean; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'mobileRedirectUri': string; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'scope': string; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'signingAlgorithm': string; - /** - * - * @type {string} - * @memberof SystemConfigOAuthDto - */ - 'storageLabelClaim': string; -} -/** - * - * @export - * @interface SystemConfigPasswordLoginDto - */ -export interface SystemConfigPasswordLoginDto { - /** - * - * @type {boolean} - * @memberof SystemConfigPasswordLoginDto - */ - 'enabled': boolean; -} -/** - * - * @export - * @interface SystemConfigReverseGeocodingDto - */ -export interface SystemConfigReverseGeocodingDto { - /** - * - * @type {boolean} - * @memberof SystemConfigReverseGeocodingDto - */ - 'enabled': boolean; -} -/** - * - * @export - * @interface SystemConfigServerDto - */ -export interface SystemConfigServerDto { - /** - * - * @type {string} - * @memberof SystemConfigServerDto - */ - 'externalDomain': string; - /** - * - * @type {string} - * @memberof SystemConfigServerDto - */ - 'loginPageMessage': string; -} -/** - * - * @export - * @interface SystemConfigStorageTemplateDto - */ -export interface SystemConfigStorageTemplateDto { - /** - * - * @type {boolean} - * @memberof SystemConfigStorageTemplateDto - */ - 'enabled': boolean; - /** - * - * @type {boolean} - * @memberof SystemConfigStorageTemplateDto - */ - 'hashVerificationEnabled': boolean; - /** - * - * @type {string} - * @memberof SystemConfigStorageTemplateDto - */ - 'template': string; -} -/** - * - * @export - * @interface SystemConfigTemplateStorageOptionDto - */ -export interface SystemConfigTemplateStorageOptionDto { - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'dayOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'hourOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'minuteOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'monthOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'presetOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'secondOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'weekOptions': Array; - /** - * - * @type {Array} - * @memberof SystemConfigTemplateStorageOptionDto - */ - 'yearOptions': Array; -} -/** - * - * @export - * @interface SystemConfigThemeDto - */ -export interface SystemConfigThemeDto { - /** - * - * @type {string} - * @memberof SystemConfigThemeDto - */ - 'customCss': string; -} -/** - * - * @export - * @interface SystemConfigThumbnailDto - */ -export interface SystemConfigThumbnailDto { - /** - * - * @type {Colorspace} - * @memberof SystemConfigThumbnailDto - */ - 'colorspace': Colorspace; - /** - * - * @type {number} - * @memberof SystemConfigThumbnailDto - */ - 'jpegSize': number; - /** - * - * @type {number} - * @memberof SystemConfigThumbnailDto - */ - 'quality': number; - /** - * - * @type {number} - * @memberof SystemConfigThumbnailDto - */ - 'webpSize': number; -} - - -/** - * - * @export - * @interface SystemConfigTrashDto - */ -export interface SystemConfigTrashDto { - /** - * - * @type {number} - * @memberof SystemConfigTrashDto - */ - 'days': number; - /** - * - * @type {boolean} - * @memberof SystemConfigTrashDto - */ - 'enabled': boolean; -} -/** - * - * @export - * @interface TagResponseDto - */ -export interface TagResponseDto { - /** - * - * @type {string} - * @memberof TagResponseDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof TagResponseDto - */ - 'name': string; - /** - * - * @type {TagTypeEnum} - * @memberof TagResponseDto - */ - 'type': TagTypeEnum; - /** - * - * @type {string} - * @memberof TagResponseDto - */ - 'userId': string; -} - - -/** - * - * @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]; - - -/** - * - * @export - * @interface TimeBucketResponseDto - */ -export interface TimeBucketResponseDto { - /** - * - * @type {number} - * @memberof TimeBucketResponseDto - */ - 'count': number; - /** - * - * @type {string} - * @memberof TimeBucketResponseDto - */ - 'timeBucket': string; -} -/** - * - * @export - * @enum {string} - */ - -export const TimeBucketSize = { - Day: 'DAY', - Month: 'MONTH' -} as const; - -export type TimeBucketSize = typeof TimeBucketSize[keyof typeof TimeBucketSize]; - - -/** - * - * @export - * @enum {string} - */ - -export const ToneMapping = { - Hable: 'hable', - Mobius: 'mobius', - Reinhard: 'reinhard', - Disabled: 'disabled' -} as const; - -export type ToneMapping = typeof ToneMapping[keyof typeof ToneMapping]; - - -/** - * - * @export - * @enum {string} - */ - -export const TranscodeHWAccel = { - Nvenc: 'nvenc', - Qsv: 'qsv', - Vaapi: 'vaapi', - Rkmpp: 'rkmpp', - Disabled: 'disabled' -} as const; - -export type TranscodeHWAccel = typeof TranscodeHWAccel[keyof typeof TranscodeHWAccel]; - - -/** - * - * @export - * @enum {string} - */ - -export const TranscodePolicy = { - All: 'all', - Optimal: 'optimal', - Bitrate: 'bitrate', - Required: 'required', - Disabled: 'disabled' -} as const; - -export type TranscodePolicy = typeof TranscodePolicy[keyof typeof TranscodePolicy]; - - -/** - * - * @export - * @interface UpdateAlbumDto - */ -export interface UpdateAlbumDto { - /** - * - * @type {string} - * @memberof UpdateAlbumDto - */ - 'albumName'?: string; - /** - * - * @type {string} - * @memberof UpdateAlbumDto - */ - 'albumThumbnailAssetId'?: string; - /** - * - * @type {string} - * @memberof UpdateAlbumDto - */ - 'description'?: string; - /** - * - * @type {boolean} - * @memberof UpdateAlbumDto - */ - 'isActivityEnabled'?: boolean; -} -/** - * - * @export - * @interface UpdateAssetDto - */ -export interface UpdateAssetDto { - /** - * - * @type {string} - * @memberof UpdateAssetDto - */ - 'dateTimeOriginal'?: string; - /** - * - * @type {string} - * @memberof UpdateAssetDto - */ - 'description'?: string; - /** - * - * @type {boolean} - * @memberof UpdateAssetDto - */ - 'isArchived'?: boolean; - /** - * - * @type {boolean} - * @memberof UpdateAssetDto - */ - 'isFavorite'?: boolean; - /** - * - * @type {number} - * @memberof UpdateAssetDto - */ - 'latitude'?: number; - /** - * - * @type {number} - * @memberof UpdateAssetDto - */ - 'longitude'?: number; -} -/** - * - * @export - * @interface UpdateLibraryDto - */ -export interface UpdateLibraryDto { - /** - * - * @type {Array} - * @memberof UpdateLibraryDto - */ - 'exclusionPatterns'?: Array; - /** - * - * @type {Array} - * @memberof UpdateLibraryDto - */ - 'importPaths'?: Array; - /** - * - * @type {boolean} - * @memberof UpdateLibraryDto - */ - 'isVisible'?: boolean; - /** - * - * @type {string} - * @memberof UpdateLibraryDto - */ - 'name'?: string; -} -/** - * - * @export - * @interface UpdatePartnerDto - */ -export interface UpdatePartnerDto { - /** - * - * @type {boolean} - * @memberof UpdatePartnerDto - */ - 'inTimeline': boolean; -} -/** - * - * @export - * @interface UpdateStackParentDto - */ -export interface UpdateStackParentDto { - /** - * - * @type {string} - * @memberof UpdateStackParentDto - */ - 'newParentId': string; - /** - * - * @type {string} - * @memberof UpdateStackParentDto - */ - 'oldParentId': string; -} -/** - * - * @export - * @interface UpdateTagDto - */ -export interface UpdateTagDto { - /** - * - * @type {string} - * @memberof UpdateTagDto - */ - 'name'?: string; -} -/** - * - * @export - * @interface UpdateUserDto - */ -export interface UpdateUserDto { - /** - * - * @type {UserAvatarColor} - * @memberof UpdateUserDto - */ - 'avatarColor'?: UserAvatarColor; - /** - * - * @type {string} - * @memberof UpdateUserDto - */ - 'email'?: string; - /** - * - * @type {string} - * @memberof UpdateUserDto - */ - 'externalPath'?: string; - /** - * - * @type {string} - * @memberof UpdateUserDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof UpdateUserDto - */ - 'isAdmin'?: boolean; - /** - * - * @type {boolean} - * @memberof UpdateUserDto - */ - 'memoriesEnabled'?: boolean; - /** - * - * @type {string} - * @memberof UpdateUserDto - */ - 'name'?: string; - /** - * - * @type {string} - * @memberof UpdateUserDto - */ - 'password'?: string; - /** - * - * @type {number} - * @memberof UpdateUserDto - */ - 'quotaSizeInBytes'?: number | null; - /** - * - * @type {boolean} - * @memberof UpdateUserDto - */ - 'shouldChangePassword'?: boolean; - /** - * - * @type {string} - * @memberof UpdateUserDto - */ - 'storageLabel'?: string; -} - - -/** - * - * @export - * @interface UsageByUserDto - */ -export interface UsageByUserDto { - /** - * - * @type {number} - * @memberof UsageByUserDto - */ - 'photos': number; - /** - * - * @type {number} - * @memberof UsageByUserDto - */ - 'quotaSizeInBytes': number | null; - /** - * - * @type {number} - * @memberof UsageByUserDto - */ - 'usage': number; - /** - * - * @type {string} - * @memberof UsageByUserDto - */ - 'userId': string; - /** - * - * @type {string} - * @memberof UsageByUserDto - */ - 'userName': string; - /** - * - * @type {number} - * @memberof UsageByUserDto - */ - 'videos': number; -} -/** - * - * @export - * @enum {string} - */ - -export const UserAvatarColor = { - Primary: 'primary', - Pink: 'pink', - Red: 'red', - Yellow: 'yellow', - Blue: 'blue', - Green: 'green', - Purple: 'purple', - Orange: 'orange', - Gray: 'gray', - Amber: 'amber' -} as const; - -export type UserAvatarColor = typeof UserAvatarColor[keyof typeof UserAvatarColor]; - - -/** - * - * @export - * @interface UserDto - */ -export interface UserDto { - /** - * - * @type {UserAvatarColor} - * @memberof UserDto - */ - 'avatarColor': UserAvatarColor; - /** - * - * @type {string} - * @memberof UserDto - */ - 'email': string; - /** - * - * @type {string} - * @memberof UserDto - */ - 'id': string; - /** - * - * @type {string} - * @memberof UserDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof UserDto - */ - 'profileImagePath': string; -} - - -/** - * - * @export - * @interface UserResponseDto - */ -export interface UserResponseDto { - /** - * - * @type {UserAvatarColor} - * @memberof UserResponseDto - */ - 'avatarColor': UserAvatarColor; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'createdAt': string; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'deletedAt': string | null; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'email': string; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'externalPath': string | null; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'id': string; - /** - * - * @type {boolean} - * @memberof UserResponseDto - */ - 'isAdmin': boolean; - /** - * - * @type {boolean} - * @memberof UserResponseDto - */ - 'memoriesEnabled'?: boolean; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'name': string; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'oauthId': string; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'profileImagePath': string; - /** - * - * @type {number} - * @memberof UserResponseDto - */ - 'quotaSizeInBytes': number | null; - /** - * - * @type {number} - * @memberof UserResponseDto - */ - 'quotaUsageInBytes': number | null; - /** - * - * @type {boolean} - * @memberof UserResponseDto - */ - 'shouldChangePassword': boolean; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'storageLabel': string | null; - /** - * - * @type {string} - * @memberof UserResponseDto - */ - 'updatedAt': string; -} - - -/** - * - * @export - * @interface ValidateAccessTokenResponseDto - */ -export interface ValidateAccessTokenResponseDto { - /** - * - * @type {boolean} - * @memberof ValidateAccessTokenResponseDto - */ - 'authStatus': boolean; -} -/** - * - * @export - * @interface ValidateLibraryDto - */ -export interface ValidateLibraryDto { - /** - * - * @type {Array} - * @memberof ValidateLibraryDto - */ - 'exclusionPatterns'?: Array; - /** - * - * @type {Array} - * @memberof ValidateLibraryDto - */ - 'importPaths'?: Array; -} -/** - * - * @export - * @interface ValidateLibraryImportPathResponseDto - */ -export interface ValidateLibraryImportPathResponseDto { - /** - * - * @type {string} - * @memberof ValidateLibraryImportPathResponseDto - */ - 'importPath': string; - /** - * - * @type {boolean} - * @memberof ValidateLibraryImportPathResponseDto - */ - 'isValid'?: boolean; - /** - * - * @type {string} - * @memberof ValidateLibraryImportPathResponseDto - */ - 'message'?: string; -} -/** - * - * @export - * @interface ValidateLibraryResponseDto - */ -export interface ValidateLibraryResponseDto { - /** - * - * @type {Array} - * @memberof ValidateLibraryResponseDto - */ - 'importPaths'?: Array; -} -/** - * - * @export - * @enum {string} - */ - -export const VideoCodec = { - H264: 'h264', - Hevc: 'hevc', - Vp9: 'vp9' -} as const; - -export type VideoCodec = typeof VideoCodec[keyof typeof VideoCodec]; - - - -/** - * APIKeyApi - axios parameter creator - * @export - */ -export const APIKeyApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {APIKeyCreateDto} aPIKeyCreateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createApiKey: async (aPIKeyCreateDto: APIKeyCreateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'aPIKeyCreateDto' is not null or undefined - assertParamExists('createApiKey', '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; - - // 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) - - - - 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, - }; - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteApiKey: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('deleteApiKey', '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; - - // 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) - - - - 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} - */ - getApiKey: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getApiKey', '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; - - // 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) - - - - 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} - */ - getApiKeys: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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 {APIKeyUpdateDto} aPIKeyUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateApiKey: async (id: string, aPIKeyUpdateDto: APIKeyUpdateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updateApiKey', 'id', id) - // verify required parameter 'aPIKeyUpdateDto' is not null or undefined - assertParamExists('updateApiKey', '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; - - // 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) - - - - 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 createApiKey(aPIKeyCreateDto: APIKeyCreateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createApiKey(aPIKeyCreateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['APIKeyApi.createApiKey']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteApiKey(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApiKey(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['APIKeyApi.deleteApiKey']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getApiKey(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getApiKey(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['APIKeyApi.getApiKey']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getApiKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getApiKeys(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['APIKeyApi.getApiKeys']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {APIKeyUpdateDto} aPIKeyUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateApiKey(id: string, aPIKeyUpdateDto: APIKeyUpdateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateApiKey(id, aPIKeyUpdateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['APIKeyApi.updateApiKey']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * APIKeyApi - factory interface - * @export - */ -export const APIKeyApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = APIKeyApiFp(configuration) - return { - /** - * - * @param {APIKeyApiCreateApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createApiKey(requestParameters: APIKeyApiCreateApiKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createApiKey(requestParameters.aPIKeyCreateDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {APIKeyApiDeleteApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteApiKey(requestParameters: APIKeyApiDeleteApiKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteApiKey(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {APIKeyApiGetApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getApiKey(requestParameters: APIKeyApiGetApiKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getApiKey(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getApiKeys(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getApiKeys(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {APIKeyApiUpdateApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateApiKey(requestParameters: APIKeyApiUpdateApiKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateApiKey(requestParameters.id, requestParameters.aPIKeyUpdateDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for createApiKey operation in APIKeyApi. - * @export - * @interface APIKeyApiCreateApiKeyRequest - */ -export interface APIKeyApiCreateApiKeyRequest { - /** - * - * @type {APIKeyCreateDto} - * @memberof APIKeyApiCreateApiKey - */ - readonly aPIKeyCreateDto: APIKeyCreateDto -} - -/** - * Request parameters for deleteApiKey operation in APIKeyApi. - * @export - * @interface APIKeyApiDeleteApiKeyRequest - */ -export interface APIKeyApiDeleteApiKeyRequest { - /** - * - * @type {string} - * @memberof APIKeyApiDeleteApiKey - */ - readonly id: string -} - -/** - * Request parameters for getApiKey operation in APIKeyApi. - * @export - * @interface APIKeyApiGetApiKeyRequest - */ -export interface APIKeyApiGetApiKeyRequest { - /** - * - * @type {string} - * @memberof APIKeyApiGetApiKey - */ - readonly id: string -} - -/** - * Request parameters for updateApiKey operation in APIKeyApi. - * @export - * @interface APIKeyApiUpdateApiKeyRequest - */ -export interface APIKeyApiUpdateApiKeyRequest { - /** - * - * @type {string} - * @memberof APIKeyApiUpdateApiKey - */ - readonly id: string - - /** - * - * @type {APIKeyUpdateDto} - * @memberof APIKeyApiUpdateApiKey - */ - readonly aPIKeyUpdateDto: APIKeyUpdateDto -} - -/** - * APIKeyApi - object-oriented interface - * @export - * @class APIKeyApi - * @extends {BaseAPI} - */ -export class APIKeyApi extends BaseAPI { - /** - * - * @param {APIKeyApiCreateApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof APIKeyApi - */ - public createApiKey(requestParameters: APIKeyApiCreateApiKeyRequest, options?: RawAxiosRequestConfig) { - return APIKeyApiFp(this.configuration).createApiKey(requestParameters.aPIKeyCreateDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {APIKeyApiDeleteApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof APIKeyApi - */ - public deleteApiKey(requestParameters: APIKeyApiDeleteApiKeyRequest, options?: RawAxiosRequestConfig) { - return APIKeyApiFp(this.configuration).deleteApiKey(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {APIKeyApiGetApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof APIKeyApi - */ - public getApiKey(requestParameters: APIKeyApiGetApiKeyRequest, options?: RawAxiosRequestConfig) { - return APIKeyApiFp(this.configuration).getApiKey(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof APIKeyApi - */ - public getApiKeys(options?: RawAxiosRequestConfig) { - return APIKeyApiFp(this.configuration).getApiKeys(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {APIKeyApiUpdateApiKeyRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof APIKeyApi - */ - public updateApiKey(requestParameters: APIKeyApiUpdateApiKeyRequest, options?: RawAxiosRequestConfig) { - return APIKeyApiFp(this.configuration).updateApiKey(requestParameters.id, requestParameters.aPIKeyUpdateDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * ActivityApi - axios parameter creator - * @export - */ -export const ActivityApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {ActivityCreateDto} activityCreateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createActivity: async (activityCreateDto: ActivityCreateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'activityCreateDto' is not null or undefined - assertParamExists('createActivity', 'activityCreateDto', activityCreateDto) - const localVarPath = `/activity`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(activityCreateDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteActivity: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('deleteActivity', 'id', id) - const localVarPath = `/activity/{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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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 {string} [assetId] - * @param {ReactionLevel} [level] - * @param {ReactionType} [type] - * @param {string} [userId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getActivities: async (albumId: string, assetId?: string, level?: ReactionLevel, type?: ReactionType, userId?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'albumId' is not null or undefined - assertParamExists('getActivities', 'albumId', albumId) - const localVarPath = `/activity`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (albumId !== undefined) { - localVarQueryParameter['albumId'] = albumId; - } - - if (assetId !== undefined) { - localVarQueryParameter['assetId'] = assetId; - } - - if (level !== undefined) { - localVarQueryParameter['level'] = level; - } - - if (type !== undefined) { - localVarQueryParameter['type'] = type; - } - - if (userId !== undefined) { - localVarQueryParameter['userId'] = userId; - } - - - - 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 {string} [assetId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getActivityStatistics: async (albumId: string, assetId?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'albumId' is not null or undefined - assertParamExists('getActivityStatistics', 'albumId', albumId) - const localVarPath = `/activity/statistics`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (albumId !== undefined) { - localVarQueryParameter['albumId'] = albumId; - } - - if (assetId !== undefined) { - localVarQueryParameter['assetId'] = assetId; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * ActivityApi - functional programming interface - * @export - */ -export const ActivityApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = ActivityApiAxiosParamCreator(configuration) - return { - /** - * - * @param {ActivityCreateDto} activityCreateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createActivity(activityCreateDto: ActivityCreateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createActivity(activityCreateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ActivityApi.createActivity']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteActivity(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteActivity(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ActivityApi.deleteActivity']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} albumId - * @param {string} [assetId] - * @param {ReactionLevel} [level] - * @param {ReactionType} [type] - * @param {string} [userId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getActivities(albumId: string, assetId?: string, level?: ReactionLevel, type?: ReactionType, userId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getActivities(albumId, assetId, level, type, userId, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ActivityApi.getActivities']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} albumId - * @param {string} [assetId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getActivityStatistics(albumId: string, assetId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getActivityStatistics(albumId, assetId, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ActivityApi.getActivityStatistics']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * ActivityApi - factory interface - * @export - */ -export const ActivityApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = ActivityApiFp(configuration) - return { - /** - * - * @param {ActivityApiCreateActivityRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createActivity(requestParameters: ActivityApiCreateActivityRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createActivity(requestParameters.activityCreateDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {ActivityApiDeleteActivityRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteActivity(requestParameters: ActivityApiDeleteActivityRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteActivity(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {ActivityApiGetActivitiesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getActivities(requestParameters: ActivityApiGetActivitiesRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getActivities(requestParameters.albumId, requestParameters.assetId, requestParameters.level, requestParameters.type, requestParameters.userId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {ActivityApiGetActivityStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getActivityStatistics(requestParameters: ActivityApiGetActivityStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getActivityStatistics(requestParameters.albumId, requestParameters.assetId, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for createActivity operation in ActivityApi. - * @export - * @interface ActivityApiCreateActivityRequest - */ -export interface ActivityApiCreateActivityRequest { - /** - * - * @type {ActivityCreateDto} - * @memberof ActivityApiCreateActivity - */ - readonly activityCreateDto: ActivityCreateDto -} - -/** - * Request parameters for deleteActivity operation in ActivityApi. - * @export - * @interface ActivityApiDeleteActivityRequest - */ -export interface ActivityApiDeleteActivityRequest { - /** - * - * @type {string} - * @memberof ActivityApiDeleteActivity - */ - readonly id: string -} - -/** - * Request parameters for getActivities operation in ActivityApi. - * @export - * @interface ActivityApiGetActivitiesRequest - */ -export interface ActivityApiGetActivitiesRequest { - /** - * - * @type {string} - * @memberof ActivityApiGetActivities - */ - readonly albumId: string - - /** - * - * @type {string} - * @memberof ActivityApiGetActivities - */ - readonly assetId?: string - - /** - * - * @type {ReactionLevel} - * @memberof ActivityApiGetActivities - */ - readonly level?: ReactionLevel - - /** - * - * @type {ReactionType} - * @memberof ActivityApiGetActivities - */ - readonly type?: ReactionType - - /** - * - * @type {string} - * @memberof ActivityApiGetActivities - */ - readonly userId?: string -} - -/** - * Request parameters for getActivityStatistics operation in ActivityApi. - * @export - * @interface ActivityApiGetActivityStatisticsRequest - */ -export interface ActivityApiGetActivityStatisticsRequest { - /** - * - * @type {string} - * @memberof ActivityApiGetActivityStatistics - */ - readonly albumId: string - - /** - * - * @type {string} - * @memberof ActivityApiGetActivityStatistics - */ - readonly assetId?: string -} - -/** - * ActivityApi - object-oriented interface - * @export - * @class ActivityApi - * @extends {BaseAPI} - */ -export class ActivityApi extends BaseAPI { - /** - * - * @param {ActivityApiCreateActivityRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ActivityApi - */ - public createActivity(requestParameters: ActivityApiCreateActivityRequest, options?: RawAxiosRequestConfig) { - return ActivityApiFp(this.configuration).createActivity(requestParameters.activityCreateDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {ActivityApiDeleteActivityRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ActivityApi - */ - public deleteActivity(requestParameters: ActivityApiDeleteActivityRequest, options?: RawAxiosRequestConfig) { - return ActivityApiFp(this.configuration).deleteActivity(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {ActivityApiGetActivitiesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ActivityApi - */ - public getActivities(requestParameters: ActivityApiGetActivitiesRequest, options?: RawAxiosRequestConfig) { - return ActivityApiFp(this.configuration).getActivities(requestParameters.albumId, requestParameters.assetId, requestParameters.level, requestParameters.type, requestParameters.userId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {ActivityApiGetActivityStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ActivityApi - */ - public getActivityStatistics(requestParameters: ActivityApiGetActivityStatisticsRequest, options?: RawAxiosRequestConfig) { - return ActivityApiFp(this.configuration).getActivityStatistics(requestParameters.albumId, requestParameters.assetId, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * AlbumApi - axios parameter creator - * @export - */ -export const AlbumApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {string} id - * @param {BulkIdsDto} bulkIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - addAssetsToAlbum: async (id: string, bulkIdsDto: BulkIdsDto, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('addAssetsToAlbum', 'id', id) - // verify required parameter 'bulkIdsDto' is not null or undefined - assertParamExists('addAssetsToAlbum', 'bulkIdsDto', bulkIdsDto) - const localVarPath = `/album/{id}/assets` - .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; - - // 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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(bulkIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {AddUsersDto} addUsersDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - addUsersToAlbum: async (id: string, addUsersDto: AddUsersDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('addUsersToAlbum', 'id', id) - // verify required parameter 'addUsersDto' is not null or undefined - assertParamExists('addUsersToAlbum', 'addUsersDto', addUsersDto) - const localVarPath = `/album/{id}/users` - .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; - - // 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) - - - - 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: RawAxiosRequestConfig = {}): Promise => { - // 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; - - // 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) - - - - 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, - }; - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteAlbum: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('deleteAlbum', 'id', id) - const localVarPath = `/album/{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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} - */ - getAlbumCount: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/album/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; - - // 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) - - - - 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 {string} [key] - * @param {boolean} [withoutAssets] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAlbumInfo: async (id: string, key?: string, withoutAssets?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getAlbumInfo', 'id', id) - const localVarPath = `/album/{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; - - // 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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - if (withoutAssets !== undefined) { - localVarQueryParameter['withoutAssets'] = withoutAssets; - } - - - - 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] Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums - * @param {boolean} [shared] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllAlbums: async (assetId?: string, shared?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - if (assetId !== undefined) { - localVarQueryParameter['assetId'] = assetId; - } - - if (shared !== undefined) { - localVarQueryParameter['shared'] = shared; - } - - - - 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 {BulkIdsDto} bulkIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeAssetFromAlbum: async (id: string, bulkIdsDto: BulkIdsDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('removeAssetFromAlbum', 'id', id) - // verify required parameter 'bulkIdsDto' is not null or undefined - assertParamExists('removeAssetFromAlbum', 'bulkIdsDto', bulkIdsDto) - const localVarPath = `/album/{id}/assets` - .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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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(bulkIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {string} userId - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeUserFromAlbum: async (id: string, userId: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('removeUserFromAlbum', 'id', id) - // verify required parameter 'userId' is not null or undefined - assertParamExists('removeUserFromAlbum', 'userId', userId) - const localVarPath = `/album/{id}/user/{userId}` - .replace(`{${"id"}}`, encodeURIComponent(String(id))) - .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; - - // 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) - - - - 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 {UpdateAlbumDto} updateAlbumDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateAlbumInfo: async (id: string, updateAlbumDto: UpdateAlbumDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updateAlbumInfo', 'id', id) - // verify required parameter 'updateAlbumDto' is not null or undefined - assertParamExists('updateAlbumInfo', 'updateAlbumDto', updateAlbumDto) - const localVarPath = `/album/{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; - - // 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) - - - - 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, - }; - }, - } -}; - -/** - * AlbumApi - functional programming interface - * @export - */ -export const AlbumApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = AlbumApiAxiosParamCreator(configuration) - return { - /** - * - * @param {string} id - * @param {BulkIdsDto} bulkIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async addAssetsToAlbum(id: string, bulkIdsDto: BulkIdsDto, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.addAssetsToAlbum(id, bulkIdsDto, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.addAssetsToAlbum']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {AddUsersDto} addUsersDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async addUsersToAlbum(id: string, addUsersDto: AddUsersDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.addUsersToAlbum(id, addUsersDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.addUsersToAlbum']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {CreateAlbumDto} createAlbumDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createAlbum(createAlbumDto: CreateAlbumDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createAlbum(createAlbumDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.createAlbum']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteAlbum(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAlbum(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.deleteAlbum']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAlbumCount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAlbumCount(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.getAlbumCount']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {string} [key] - * @param {boolean} [withoutAssets] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAlbumInfo(id: string, key?: string, withoutAssets?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAlbumInfo(id, key, withoutAssets, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.getAlbumInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} [assetId] Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums - * @param {boolean} [shared] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAllAlbums(assetId?: string, shared?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAlbums(assetId, shared, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.getAllAlbums']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {BulkIdsDto} bulkIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async removeAssetFromAlbum(id: string, bulkIdsDto: BulkIdsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.removeAssetFromAlbum(id, bulkIdsDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.removeAssetFromAlbum']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {string} userId - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async removeUserFromAlbum(id: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.removeUserFromAlbum(id, userId, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.removeUserFromAlbum']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {UpdateAlbumDto} updateAlbumDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateAlbumInfo(id: string, updateAlbumDto: UpdateAlbumDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateAlbumInfo(id, updateAlbumDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AlbumApi.updateAlbumInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * AlbumApi - factory interface - * @export - */ -export const AlbumApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = AlbumApiFp(configuration) - return { - /** - * - * @param {AlbumApiAddAssetsToAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - addAssetsToAlbum(requestParameters: AlbumApiAddAssetsToAlbumRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.addAssetsToAlbum(requestParameters.id, requestParameters.bulkIdsDto, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiAddUsersToAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - addUsersToAlbum(requestParameters: AlbumApiAddUsersToAlbumRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.addUsersToAlbum(requestParameters.id, requestParameters.addUsersDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiCreateAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createAlbum(requestParameters: AlbumApiCreateAlbumRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createAlbum(requestParameters.createAlbumDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiDeleteAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteAlbum(requestParameters: AlbumApiDeleteAlbumRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteAlbum(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAlbumCount(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAlbumCount(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiGetAlbumInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAlbumInfo(requestParameters: AlbumApiGetAlbumInfoRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAlbumInfo(requestParameters.id, requestParameters.key, requestParameters.withoutAssets, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiGetAllAlbumsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllAlbums(requestParameters: AlbumApiGetAllAlbumsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAllAlbums(requestParameters.assetId, requestParameters.shared, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiRemoveAssetFromAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeAssetFromAlbum(requestParameters: AlbumApiRemoveAssetFromAlbumRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.removeAssetFromAlbum(requestParameters.id, requestParameters.bulkIdsDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiRemoveUserFromAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeUserFromAlbum(requestParameters: AlbumApiRemoveUserFromAlbumRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.removeUserFromAlbum(requestParameters.id, requestParameters.userId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AlbumApiUpdateAlbumInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateAlbumInfo(requestParameters: AlbumApiUpdateAlbumInfoRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateAlbumInfo(requestParameters.id, requestParameters.updateAlbumDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for addAssetsToAlbum operation in AlbumApi. - * @export - * @interface AlbumApiAddAssetsToAlbumRequest - */ -export interface AlbumApiAddAssetsToAlbumRequest { - /** - * - * @type {string} - * @memberof AlbumApiAddAssetsToAlbum - */ - readonly id: string - - /** - * - * @type {BulkIdsDto} - * @memberof AlbumApiAddAssetsToAlbum - */ - readonly bulkIdsDto: BulkIdsDto - - /** - * - * @type {string} - * @memberof AlbumApiAddAssetsToAlbum - */ - readonly key?: string -} - -/** - * Request parameters for addUsersToAlbum operation in AlbumApi. - * @export - * @interface AlbumApiAddUsersToAlbumRequest - */ -export interface AlbumApiAddUsersToAlbumRequest { - /** - * - * @type {string} - * @memberof AlbumApiAddUsersToAlbum - */ - readonly id: string - - /** - * - * @type {AddUsersDto} - * @memberof AlbumApiAddUsersToAlbum - */ - readonly addUsersDto: AddUsersDto -} - -/** - * Request parameters for createAlbum operation in AlbumApi. - * @export - * @interface AlbumApiCreateAlbumRequest - */ -export interface AlbumApiCreateAlbumRequest { - /** - * - * @type {CreateAlbumDto} - * @memberof AlbumApiCreateAlbum - */ - readonly createAlbumDto: CreateAlbumDto -} - -/** - * Request parameters for deleteAlbum operation in AlbumApi. - * @export - * @interface AlbumApiDeleteAlbumRequest - */ -export interface AlbumApiDeleteAlbumRequest { - /** - * - * @type {string} - * @memberof AlbumApiDeleteAlbum - */ - readonly id: string -} - -/** - * Request parameters for getAlbumInfo operation in AlbumApi. - * @export - * @interface AlbumApiGetAlbumInfoRequest - */ -export interface AlbumApiGetAlbumInfoRequest { - /** - * - * @type {string} - * @memberof AlbumApiGetAlbumInfo - */ - readonly id: string - - /** - * - * @type {string} - * @memberof AlbumApiGetAlbumInfo - */ - readonly key?: string - - /** - * - * @type {boolean} - * @memberof AlbumApiGetAlbumInfo - */ - readonly withoutAssets?: boolean -} - -/** - * Request parameters for getAllAlbums operation in AlbumApi. - * @export - * @interface AlbumApiGetAllAlbumsRequest - */ -export interface AlbumApiGetAllAlbumsRequest { - /** - * Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums - * @type {string} - * @memberof AlbumApiGetAllAlbums - */ - readonly assetId?: string - - /** - * - * @type {boolean} - * @memberof AlbumApiGetAllAlbums - */ - readonly shared?: boolean -} - -/** - * Request parameters for removeAssetFromAlbum operation in AlbumApi. - * @export - * @interface AlbumApiRemoveAssetFromAlbumRequest - */ -export interface AlbumApiRemoveAssetFromAlbumRequest { - /** - * - * @type {string} - * @memberof AlbumApiRemoveAssetFromAlbum - */ - readonly id: string - - /** - * - * @type {BulkIdsDto} - * @memberof AlbumApiRemoveAssetFromAlbum - */ - readonly bulkIdsDto: BulkIdsDto -} - -/** - * Request parameters for removeUserFromAlbum operation in AlbumApi. - * @export - * @interface AlbumApiRemoveUserFromAlbumRequest - */ -export interface AlbumApiRemoveUserFromAlbumRequest { - /** - * - * @type {string} - * @memberof AlbumApiRemoveUserFromAlbum - */ - readonly id: string - - /** - * - * @type {string} - * @memberof AlbumApiRemoveUserFromAlbum - */ - readonly userId: string -} - -/** - * Request parameters for updateAlbumInfo operation in AlbumApi. - * @export - * @interface AlbumApiUpdateAlbumInfoRequest - */ -export interface AlbumApiUpdateAlbumInfoRequest { - /** - * - * @type {string} - * @memberof AlbumApiUpdateAlbumInfo - */ - readonly id: string - - /** - * - * @type {UpdateAlbumDto} - * @memberof AlbumApiUpdateAlbumInfo - */ - readonly updateAlbumDto: UpdateAlbumDto -} - -/** - * AlbumApi - object-oriented interface - * @export - * @class AlbumApi - * @extends {BaseAPI} - */ -export class AlbumApi extends BaseAPI { - /** - * - * @param {AlbumApiAddAssetsToAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public addAssetsToAlbum(requestParameters: AlbumApiAddAssetsToAlbumRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).addAssetsToAlbum(requestParameters.id, requestParameters.bulkIdsDto, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiAddUsersToAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public addUsersToAlbum(requestParameters: AlbumApiAddUsersToAlbumRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).addUsersToAlbum(requestParameters.id, requestParameters.addUsersDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiCreateAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public createAlbum(requestParameters: AlbumApiCreateAlbumRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).createAlbum(requestParameters.createAlbumDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiDeleteAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public deleteAlbum(requestParameters: AlbumApiDeleteAlbumRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).deleteAlbum(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public getAlbumCount(options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).getAlbumCount(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiGetAlbumInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public getAlbumInfo(requestParameters: AlbumApiGetAlbumInfoRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).getAlbumInfo(requestParameters.id, requestParameters.key, requestParameters.withoutAssets, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiGetAllAlbumsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public getAllAlbums(requestParameters: AlbumApiGetAllAlbumsRequest = {}, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).getAllAlbums(requestParameters.assetId, requestParameters.shared, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiRemoveAssetFromAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public removeAssetFromAlbum(requestParameters: AlbumApiRemoveAssetFromAlbumRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).removeAssetFromAlbum(requestParameters.id, requestParameters.bulkIdsDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiRemoveUserFromAlbumRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public removeUserFromAlbum(requestParameters: AlbumApiRemoveUserFromAlbumRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).removeUserFromAlbum(requestParameters.id, requestParameters.userId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AlbumApiUpdateAlbumInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AlbumApi - */ - public updateAlbumInfo(requestParameters: AlbumApiUpdateAlbumInfoRequest, options?: RawAxiosRequestConfig) { - return AlbumApiFp(this.configuration).updateAlbumInfo(requestParameters.id, requestParameters.updateAlbumDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * AssetApi - axios parameter creator - * @export - */ -export const AssetApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * Checks if assets exist by checksums - * @param {AssetBulkUploadCheckDto} assetBulkUploadCheckDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - checkBulkUpload: async (assetBulkUploadCheckDto: AssetBulkUploadCheckDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'assetBulkUploadCheckDto' is not null or undefined - assertParamExists('checkBulkUpload', 'assetBulkUploadCheckDto', assetBulkUploadCheckDto) - const localVarPath = `/asset/bulk-upload-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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetBulkUploadCheckDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * 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: RawAxiosRequestConfig = {}): Promise => { - // 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; - - // 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) - - - - 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, - }; - }, - /** - * - * @param {AssetBulkDeleteDto} assetBulkDeleteDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteAssets: async (assetBulkDeleteDto: AssetBulkDeleteDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'assetBulkDeleteDto' is not null or undefined - assertParamExists('deleteAssets', 'assetBulkDeleteDto', assetBulkDeleteDto) - 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetBulkDeleteDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * Get all AssetEntity belong to the user - * @param {string} [ifNoneMatch] ETag of data already cached on the client - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {number} [skip] - * @param {number} [take] - * @param {string} [updatedAfter] - * @param {string} [updatedBefore] - * @param {string} [userId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllAssets: async (ifNoneMatch?: string, isArchived?: boolean, isFavorite?: boolean, skip?: number, take?: number, updatedAfter?: string, updatedBefore?: string, userId?: string, options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - if (isArchived !== undefined) { - localVarQueryParameter['isArchived'] = isArchived; - } - - if (isFavorite !== undefined) { - localVarQueryParameter['isFavorite'] = isFavorite; - } - - if (skip !== undefined) { - localVarQueryParameter['skip'] = skip; - } - - if (take !== undefined) { - localVarQueryParameter['take'] = take; - } - - if (updatedAfter !== undefined) { - localVarQueryParameter['updatedAfter'] = (updatedAfter as any instanceof Date) ? - (updatedAfter as any).toISOString() : - updatedAfter; - } - - if (updatedBefore !== undefined) { - localVarQueryParameter['updatedBefore'] = (updatedBefore as any instanceof Date) ? - (updatedBefore as any).toISOString() : - updatedBefore; - } - - if (userId !== undefined) { - localVarQueryParameter['userId'] = userId; - } - - if (ifNoneMatch != null) { - localVarHeaderParameter['if-none-match'] = String(ifNoneMatch); - } - - - - 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} - */ - getAllUserAssetsByDeviceId: async (deviceId: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'deviceId' is not null or undefined - assertParamExists('getAllUserAssetsByDeviceId', 'deviceId', deviceId) - const localVarPath = `/asset/device/{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; - - // 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) - - - - 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 {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetInfo: async (id: string, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getAssetInfo', 'id', id) - const localVarPath = `/asset/{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; - - // 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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - 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} - */ - getAssetSearchTerms: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/asset/search-terms`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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 {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [isTrashed] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetStatistics: async (isArchived?: boolean, isFavorite?: boolean, isTrashed?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/asset/statistics`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (isArchived !== undefined) { - localVarQueryParameter['isArchived'] = isArchived; - } - - if (isFavorite !== undefined) { - localVarQueryParameter['isFavorite'] = isFavorite; - } - - if (isTrashed !== undefined) { - localVarQueryParameter['isTrashed'] = isTrashed; - } - - - - 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 {ThumbnailFormat} [format] - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetThumbnail: async (id: string, format?: ThumbnailFormat, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getAssetThumbnail', 'id', id) - const localVarPath = `/asset/thumbnail/{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; - - // 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) - - if (format !== undefined) { - localVarQueryParameter['format'] = format; - } - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - 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: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/asset/curated-locations`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/asset/curated-objects`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} [fileCreatedAfter] - * @param {string} [fileCreatedBefore] - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [withPartners] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMapMarkers: async (fileCreatedAfter?: string, fileCreatedBefore?: string, isArchived?: boolean, isFavorite?: boolean, withPartners?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (fileCreatedAfter !== undefined) { - localVarQueryParameter['fileCreatedAfter'] = (fileCreatedAfter as any instanceof Date) ? - (fileCreatedAfter as any).toISOString() : - fileCreatedAfter; - } - - if (fileCreatedBefore !== undefined) { - localVarQueryParameter['fileCreatedBefore'] = (fileCreatedBefore as any instanceof Date) ? - (fileCreatedBefore as any).toISOString() : - fileCreatedBefore; - } - - if (isArchived !== undefined) { - localVarQueryParameter['isArchived'] = isArchived; - } - - if (isFavorite !== undefined) { - localVarQueryParameter['isFavorite'] = isFavorite; - } - - if (withPartners !== undefined) { - localVarQueryParameter['withPartners'] = withPartners; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {number} day - * @param {number} month - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMemoryLane: async (day: number, month: number, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'day' is not null or undefined - assertParamExists('getMemoryLane', 'day', day) - // verify required parameter 'month' is not null or undefined - assertParamExists('getMemoryLane', 'month', month) - const localVarPath = `/asset/memory-lane`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (day !== undefined) { - localVarQueryParameter['day'] = day; - } - - if (month !== undefined) { - localVarQueryParameter['month'] = month; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {number} [count] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getRandom: async (count?: number, options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/asset/random`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (count !== undefined) { - localVarQueryParameter['count'] = count; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {TimeBucketSize} size - * @param {string} timeBucket - * @param {string} [albumId] - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [isTrashed] - * @param {string} [key] - * @param {string} [personId] - * @param {string} [userId] - * @param {boolean} [withPartners] - * @param {boolean} [withStacked] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTimeBucket: async (size: TimeBucketSize, timeBucket: string, albumId?: string, isArchived?: boolean, isFavorite?: boolean, isTrashed?: boolean, key?: string, personId?: string, userId?: string, withPartners?: boolean, withStacked?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'size' is not null or undefined - assertParamExists('getTimeBucket', 'size', size) - // verify required parameter 'timeBucket' is not null or undefined - assertParamExists('getTimeBucket', 'timeBucket', timeBucket) - const localVarPath = `/asset/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: 'GET', ...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) - - if (albumId !== undefined) { - localVarQueryParameter['albumId'] = albumId; - } - - if (isArchived !== undefined) { - localVarQueryParameter['isArchived'] = isArchived; - } - - if (isFavorite !== undefined) { - localVarQueryParameter['isFavorite'] = isFavorite; - } - - if (isTrashed !== undefined) { - localVarQueryParameter['isTrashed'] = isTrashed; - } - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - if (personId !== undefined) { - localVarQueryParameter['personId'] = personId; - } - - if (size !== undefined) { - localVarQueryParameter['size'] = size; - } - - if (timeBucket !== undefined) { - localVarQueryParameter['timeBucket'] = timeBucket; - } - - if (userId !== undefined) { - localVarQueryParameter['userId'] = userId; - } - - if (withPartners !== undefined) { - localVarQueryParameter['withPartners'] = withPartners; - } - - if (withStacked !== undefined) { - localVarQueryParameter['withStacked'] = withStacked; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {TimeBucketSize} size - * @param {string} [albumId] - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [isTrashed] - * @param {string} [key] - * @param {string} [personId] - * @param {string} [userId] - * @param {boolean} [withPartners] - * @param {boolean} [withStacked] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTimeBuckets: async (size: TimeBucketSize, albumId?: string, isArchived?: boolean, isFavorite?: boolean, isTrashed?: boolean, key?: string, personId?: string, userId?: string, withPartners?: boolean, withStacked?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'size' is not null or undefined - assertParamExists('getTimeBuckets', 'size', size) - const localVarPath = `/asset/time-buckets`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (albumId !== undefined) { - localVarQueryParameter['albumId'] = albumId; - } - - if (isArchived !== undefined) { - localVarQueryParameter['isArchived'] = isArchived; - } - - if (isFavorite !== undefined) { - localVarQueryParameter['isFavorite'] = isFavorite; - } - - if (isTrashed !== undefined) { - localVarQueryParameter['isTrashed'] = isTrashed; - } - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - if (personId !== undefined) { - localVarQueryParameter['personId'] = personId; - } - - if (size !== undefined) { - localVarQueryParameter['size'] = size; - } - - if (userId !== undefined) { - localVarQueryParameter['userId'] = userId; - } - - if (withPartners !== undefined) { - localVarQueryParameter['withPartners'] = withPartners; - } - - if (withStacked !== undefined) { - localVarQueryParameter['withStacked'] = withStacked; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {AssetJobsDto} assetJobsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - runAssetJobs: async (assetJobsDto: AssetJobsDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'assetJobsDto' is not null or undefined - assertParamExists('runAssetJobs', 'assetJobsDto', assetJobsDto) - const localVarPath = `/asset/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: 'POST', ...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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetJobsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} [checksum] - * @param {string} [city] - * @param {string} [country] - * @param {string} [createdAfter] - * @param {string} [createdBefore] - * @param {string} [deviceAssetId] - * @param {string} [deviceId] - * @param {string} [encodedVideoPath] - * @param {string} [id] - * @param {boolean} [isArchived] - * @param {boolean} [isEncoded] - * @param {boolean} [isExternal] - * @param {boolean} [isFavorite] - * @param {boolean} [isMotion] - * @param {boolean} [isNotInAlbum] - * @param {boolean} [isOffline] - * @param {boolean} [isReadOnly] - * @param {boolean} [isVisible] - * @param {string} [lensModel] - * @param {string} [libraryId] - * @param {string} [make] - * @param {string} [model] - * @param {AssetOrder} [order] - * @param {string} [originalFileName] - * @param {string} [originalPath] - * @param {number} [page] - * @param {Array} [personIds] - * @param {string} [resizePath] - * @param {number} [size] - * @param {string} [state] - * @param {string} [takenAfter] - * @param {string} [takenBefore] - * @param {string} [trashedAfter] - * @param {string} [trashedBefore] - * @param {AssetTypeEnum} [type] - * @param {string} [updatedAfter] - * @param {string} [updatedBefore] - * @param {string} [webpPath] - * @param {boolean} [withArchived] - * @param {boolean} [withDeleted] - * @param {boolean} [withExif] - * @param {boolean} [withPeople] - * @param {boolean} [withStacked] - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - searchAssets: async (checksum?: string, city?: string, country?: string, createdAfter?: string, createdBefore?: string, deviceAssetId?: string, deviceId?: string, encodedVideoPath?: string, id?: string, isArchived?: boolean, isEncoded?: boolean, isExternal?: boolean, isFavorite?: boolean, isMotion?: boolean, isNotInAlbum?: boolean, isOffline?: boolean, isReadOnly?: boolean, isVisible?: boolean, lensModel?: string, libraryId?: string, make?: string, model?: string, order?: AssetOrder, originalFileName?: string, originalPath?: string, page?: number, personIds?: Array, resizePath?: string, size?: number, state?: string, takenAfter?: string, takenBefore?: string, trashedAfter?: string, trashedBefore?: string, type?: AssetTypeEnum, updatedAfter?: string, updatedBefore?: string, webpPath?: string, withArchived?: boolean, withDeleted?: boolean, withExif?: boolean, withPeople?: boolean, withStacked?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/assets`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (checksum !== undefined) { - localVarQueryParameter['checksum'] = checksum; - } - - if (city !== undefined) { - localVarQueryParameter['city'] = city; - } - - if (country !== undefined) { - localVarQueryParameter['country'] = country; - } - - if (createdAfter !== undefined) { - localVarQueryParameter['createdAfter'] = (createdAfter as any instanceof Date) ? - (createdAfter as any).toISOString() : - createdAfter; - } - - if (createdBefore !== undefined) { - localVarQueryParameter['createdBefore'] = (createdBefore as any instanceof Date) ? - (createdBefore as any).toISOString() : - createdBefore; - } - - if (deviceAssetId !== undefined) { - localVarQueryParameter['deviceAssetId'] = deviceAssetId; - } - - if (deviceId !== undefined) { - localVarQueryParameter['deviceId'] = deviceId; - } - - if (encodedVideoPath !== undefined) { - localVarQueryParameter['encodedVideoPath'] = encodedVideoPath; - } - - if (id !== undefined) { - localVarQueryParameter['id'] = id; - } - - if (isArchived !== undefined) { - localVarQueryParameter['isArchived'] = isArchived; - } - - if (isEncoded !== undefined) { - localVarQueryParameter['isEncoded'] = isEncoded; - } - - if (isExternal !== undefined) { - localVarQueryParameter['isExternal'] = isExternal; - } - - if (isFavorite !== undefined) { - localVarQueryParameter['isFavorite'] = isFavorite; - } - - if (isMotion !== undefined) { - localVarQueryParameter['isMotion'] = isMotion; - } - - if (isNotInAlbum !== undefined) { - localVarQueryParameter['isNotInAlbum'] = isNotInAlbum; - } - - if (isOffline !== undefined) { - localVarQueryParameter['isOffline'] = isOffline; - } - - if (isReadOnly !== undefined) { - localVarQueryParameter['isReadOnly'] = isReadOnly; - } - - if (isVisible !== undefined) { - localVarQueryParameter['isVisible'] = isVisible; - } - - if (lensModel !== undefined) { - localVarQueryParameter['lensModel'] = lensModel; - } - - if (libraryId !== undefined) { - localVarQueryParameter['libraryId'] = libraryId; - } - - if (make !== undefined) { - localVarQueryParameter['make'] = make; - } - - if (model !== undefined) { - localVarQueryParameter['model'] = model; - } - - if (order !== undefined) { - localVarQueryParameter['order'] = order; - } - - if (originalFileName !== undefined) { - localVarQueryParameter['originalFileName'] = originalFileName; - } - - if (originalPath !== undefined) { - localVarQueryParameter['originalPath'] = originalPath; - } - - if (page !== undefined) { - localVarQueryParameter['page'] = page; - } - - if (personIds) { - localVarQueryParameter['personIds'] = personIds; - } - - if (resizePath !== undefined) { - localVarQueryParameter['resizePath'] = resizePath; - } - - if (size !== undefined) { - localVarQueryParameter['size'] = size; - } - - if (state !== undefined) { - localVarQueryParameter['state'] = state; - } - - if (takenAfter !== undefined) { - localVarQueryParameter['takenAfter'] = (takenAfter as any instanceof Date) ? - (takenAfter as any).toISOString() : - takenAfter; - } - - if (takenBefore !== undefined) { - localVarQueryParameter['takenBefore'] = (takenBefore as any instanceof Date) ? - (takenBefore as any).toISOString() : - takenBefore; - } - - if (trashedAfter !== undefined) { - localVarQueryParameter['trashedAfter'] = (trashedAfter as any instanceof Date) ? - (trashedAfter as any).toISOString() : - trashedAfter; - } - - if (trashedBefore !== undefined) { - localVarQueryParameter['trashedBefore'] = (trashedBefore as any instanceof Date) ? - (trashedBefore as any).toISOString() : - trashedBefore; - } - - if (type !== undefined) { - localVarQueryParameter['type'] = type; - } - - if (updatedAfter !== undefined) { - localVarQueryParameter['updatedAfter'] = (updatedAfter as any instanceof Date) ? - (updatedAfter as any).toISOString() : - updatedAfter; - } - - if (updatedBefore !== undefined) { - localVarQueryParameter['updatedBefore'] = (updatedBefore as any instanceof Date) ? - (updatedBefore as any).toISOString() : - updatedBefore; - } - - if (webpPath !== undefined) { - localVarQueryParameter['webpPath'] = webpPath; - } - - if (withArchived !== undefined) { - localVarQueryParameter['withArchived'] = withArchived; - } - - if (withDeleted !== undefined) { - localVarQueryParameter['withDeleted'] = withDeleted; - } - - if (withExif !== undefined) { - localVarQueryParameter['withExif'] = withExif; - } - - if (withPeople !== undefined) { - localVarQueryParameter['withPeople'] = withPeople; - } - - if (withStacked !== undefined) { - localVarQueryParameter['withStacked'] = withStacked; - } - - - - 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 {boolean} [isThumb] - * @param {boolean} [isWeb] - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - serveFile: async (id: string, isThumb?: boolean, isWeb?: boolean, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('serveFile', 'id', id) - const localVarPath = `/asset/file/{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; - - // 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) - - if (isThumb !== undefined) { - localVarQueryParameter['isThumb'] = isThumb; - } - - if (isWeb !== undefined) { - localVarQueryParameter['isWeb'] = isWeb; - } - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - 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 {UpdateAssetDto} updateAssetDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateAsset: async (id: string, updateAssetDto: UpdateAssetDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updateAsset', 'id', id) - // verify required parameter 'updateAssetDto' is not null or undefined - assertParamExists('updateAsset', 'updateAssetDto', updateAssetDto) - const localVarPath = `/asset/{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; - - // 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) - - - - 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, - }; - }, - /** - * - * @param {AssetBulkUpdateDto} assetBulkUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateAssets: async (assetBulkUpdateDto: AssetBulkUpdateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'assetBulkUpdateDto' is not null or undefined - assertParamExists('updateAssets', 'assetBulkUpdateDto', assetBulkUpdateDto) - 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: 'PUT', ...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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetBulkUpdateDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {UpdateStackParentDto} updateStackParentDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateStackParent: async (updateStackParentDto: UpdateStackParentDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'updateStackParentDto' is not null or undefined - assertParamExists('updateStackParent', 'updateStackParentDto', updateStackParentDto) - const localVarPath = `/asset/stack/parent`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(updateStackParentDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {File} assetData - * @param {string} deviceAssetId - * @param {string} deviceId - * @param {string} fileCreatedAt - * @param {string} fileModifiedAt - * @param {string} [key] - * @param {string} [duration] - * @param {boolean} [isArchived] - * @param {boolean} [isExternal] - * @param {boolean} [isFavorite] - * @param {boolean} [isOffline] - * @param {boolean} [isReadOnly] - * @param {boolean} [isVisible] - * @param {string} [libraryId] - * @param {File} [livePhotoData] - * @param {File} [sidecarData] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - uploadFile: async (assetData: File, deviceAssetId: string, deviceId: string, fileCreatedAt: string, fileModifiedAt: string, key?: string, duration?: string, isArchived?: boolean, isExternal?: boolean, isFavorite?: boolean, isOffline?: boolean, isReadOnly?: boolean, isVisible?: boolean, libraryId?: string, livePhotoData?: File, sidecarData?: File, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'assetData' is not null or undefined - assertParamExists('uploadFile', 'assetData', assetData) - // 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) - // 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) - 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)(); - - // 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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - if (assetData !== undefined) { - localVarFormParams.append('assetData', assetData as any); - } - - if (deviceAssetId !== undefined) { - localVarFormParams.append('deviceAssetId', deviceAssetId as any); - } - - if (deviceId !== undefined) { - localVarFormParams.append('deviceId', deviceId as any); - } - - if (duration !== undefined) { - localVarFormParams.append('duration', duration as any); - } - - if (fileCreatedAt !== undefined) { - localVarFormParams.append('fileCreatedAt', fileCreatedAt as any); - } - - if (fileModifiedAt !== undefined) { - localVarFormParams.append('fileModifiedAt', fileModifiedAt as any); - } - - if (isArchived !== undefined) { - localVarFormParams.append('isArchived', isArchived as any); - } - - if (isExternal !== undefined) { - localVarFormParams.append('isExternal', isExternal as any); - } - - if (isFavorite !== undefined) { - localVarFormParams.append('isFavorite', isFavorite as any); - } - - if (isOffline !== undefined) { - localVarFormParams.append('isOffline', isOffline as any); - } - - if (isReadOnly !== undefined) { - localVarFormParams.append('isReadOnly', isReadOnly as any); - } - - if (isVisible !== undefined) { - localVarFormParams.append('isVisible', isVisible as any); - } - - if (libraryId !== undefined) { - localVarFormParams.append('libraryId', libraryId as any); - } - - if (livePhotoData !== undefined) { - localVarFormParams.append('livePhotoData', livePhotoData as any); - } - - if (sidecarData !== undefined) { - localVarFormParams.append('sidecarData', sidecarData 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, - }; - }, - } -}; - -/** - * AssetApi - functional programming interface - * @export - */ -export const AssetApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = AssetApiAxiosParamCreator(configuration) - return { - /** - * Checks if assets exist by checksums - * @param {AssetBulkUploadCheckDto} assetBulkUploadCheckDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async checkBulkUpload(assetBulkUploadCheckDto: AssetBulkUploadCheckDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.checkBulkUpload(assetBulkUploadCheckDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.checkBulkUpload']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * 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?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.checkExistingAssets(checkExistingAssetsDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.checkExistingAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {AssetBulkDeleteDto} assetBulkDeleteDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteAssets(assetBulkDeleteDto: AssetBulkDeleteDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAssets(assetBulkDeleteDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.deleteAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * Get all AssetEntity belong to the user - * @param {string} [ifNoneMatch] ETag of data already cached on the client - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {number} [skip] - * @param {number} [take] - * @param {string} [updatedAfter] - * @param {string} [updatedBefore] - * @param {string} [userId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAllAssets(ifNoneMatch?: string, isArchived?: boolean, isFavorite?: boolean, skip?: number, take?: number, updatedAfter?: string, updatedBefore?: string, userId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAssets(ifNoneMatch, isArchived, isFavorite, skip, take, updatedAfter, updatedBefore, userId, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getAllAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * 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 getAllUserAssetsByDeviceId(deviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllUserAssetsByDeviceId(deviceId, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getAllUserAssetsByDeviceId']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAssetInfo(id: string, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetInfo(id, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getAssetInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAssetSearchTerms(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetSearchTerms(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getAssetSearchTerms']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [isTrashed] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAssetStatistics(isArchived?: boolean, isFavorite?: boolean, isTrashed?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetStatistics(isArchived, isFavorite, isTrashed, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getAssetStatistics']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {ThumbnailFormat} [format] - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAssetThumbnail(id: string, format?: ThumbnailFormat, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetThumbnail(id, format, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getAssetThumbnail']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getCuratedLocations(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getCuratedLocations(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getCuratedLocations']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getCuratedObjects(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getCuratedObjects(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getCuratedObjects']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} [fileCreatedAfter] - * @param {string} [fileCreatedBefore] - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [withPartners] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getMapMarkers(fileCreatedAfter?: string, fileCreatedBefore?: string, isArchived?: boolean, isFavorite?: boolean, withPartners?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getMapMarkers(fileCreatedAfter, fileCreatedBefore, isArchived, isFavorite, withPartners, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getMapMarkers']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {number} day - * @param {number} month - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getMemoryLane(day: number, month: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getMemoryLane(day, month, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getMemoryLane']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {number} [count] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getRandom(count?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getRandom(count, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getRandom']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {TimeBucketSize} size - * @param {string} timeBucket - * @param {string} [albumId] - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [isTrashed] - * @param {string} [key] - * @param {string} [personId] - * @param {string} [userId] - * @param {boolean} [withPartners] - * @param {boolean} [withStacked] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getTimeBucket(size: TimeBucketSize, timeBucket: string, albumId?: string, isArchived?: boolean, isFavorite?: boolean, isTrashed?: boolean, key?: string, personId?: string, userId?: string, withPartners?: boolean, withStacked?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getTimeBucket(size, timeBucket, albumId, isArchived, isFavorite, isTrashed, key, personId, userId, withPartners, withStacked, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getTimeBucket']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {TimeBucketSize} size - * @param {string} [albumId] - * @param {boolean} [isArchived] - * @param {boolean} [isFavorite] - * @param {boolean} [isTrashed] - * @param {string} [key] - * @param {string} [personId] - * @param {string} [userId] - * @param {boolean} [withPartners] - * @param {boolean} [withStacked] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getTimeBuckets(size: TimeBucketSize, albumId?: string, isArchived?: boolean, isFavorite?: boolean, isTrashed?: boolean, key?: string, personId?: string, userId?: string, withPartners?: boolean, withStacked?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getTimeBuckets(size, albumId, isArchived, isFavorite, isTrashed, key, personId, userId, withPartners, withStacked, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.getTimeBuckets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {AssetJobsDto} assetJobsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async runAssetJobs(assetJobsDto: AssetJobsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.runAssetJobs(assetJobsDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.runAssetJobs']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} [checksum] - * @param {string} [city] - * @param {string} [country] - * @param {string} [createdAfter] - * @param {string} [createdBefore] - * @param {string} [deviceAssetId] - * @param {string} [deviceId] - * @param {string} [encodedVideoPath] - * @param {string} [id] - * @param {boolean} [isArchived] - * @param {boolean} [isEncoded] - * @param {boolean} [isExternal] - * @param {boolean} [isFavorite] - * @param {boolean} [isMotion] - * @param {boolean} [isNotInAlbum] - * @param {boolean} [isOffline] - * @param {boolean} [isReadOnly] - * @param {boolean} [isVisible] - * @param {string} [lensModel] - * @param {string} [libraryId] - * @param {string} [make] - * @param {string} [model] - * @param {AssetOrder} [order] - * @param {string} [originalFileName] - * @param {string} [originalPath] - * @param {number} [page] - * @param {Array} [personIds] - * @param {string} [resizePath] - * @param {number} [size] - * @param {string} [state] - * @param {string} [takenAfter] - * @param {string} [takenBefore] - * @param {string} [trashedAfter] - * @param {string} [trashedBefore] - * @param {AssetTypeEnum} [type] - * @param {string} [updatedAfter] - * @param {string} [updatedBefore] - * @param {string} [webpPath] - * @param {boolean} [withArchived] - * @param {boolean} [withDeleted] - * @param {boolean} [withExif] - * @param {boolean} [withPeople] - * @param {boolean} [withStacked] - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async searchAssets(checksum?: string, city?: string, country?: string, createdAfter?: string, createdBefore?: string, deviceAssetId?: string, deviceId?: string, encodedVideoPath?: string, id?: string, isArchived?: boolean, isEncoded?: boolean, isExternal?: boolean, isFavorite?: boolean, isMotion?: boolean, isNotInAlbum?: boolean, isOffline?: boolean, isReadOnly?: boolean, isVisible?: boolean, lensModel?: string, libraryId?: string, make?: string, model?: string, order?: AssetOrder, originalFileName?: string, originalPath?: string, page?: number, personIds?: Array, resizePath?: string, size?: number, state?: string, takenAfter?: string, takenBefore?: string, trashedAfter?: string, trashedBefore?: string, type?: AssetTypeEnum, updatedAfter?: string, updatedBefore?: string, webpPath?: string, withArchived?: boolean, withDeleted?: boolean, withExif?: boolean, withPeople?: boolean, withStacked?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.searchAssets(checksum, city, country, createdAfter, createdBefore, deviceAssetId, deviceId, encodedVideoPath, id, isArchived, isEncoded, isExternal, isFavorite, isMotion, isNotInAlbum, isOffline, isReadOnly, isVisible, lensModel, libraryId, make, model, order, originalFileName, originalPath, page, personIds, resizePath, size, state, takenAfter, takenBefore, trashedAfter, trashedBefore, type, updatedAfter, updatedBefore, webpPath, withArchived, withDeleted, withExif, withPeople, withStacked, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.searchAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {boolean} [isThumb] - * @param {boolean} [isWeb] - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async serveFile(id: string, isThumb?: boolean, isWeb?: boolean, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.serveFile(id, isThumb, isWeb, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.serveFile']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {UpdateAssetDto} updateAssetDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateAsset(id: string, updateAssetDto: UpdateAssetDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateAsset(id, updateAssetDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.updateAsset']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {AssetBulkUpdateDto} assetBulkUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateAssets(assetBulkUpdateDto: AssetBulkUpdateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateAssets(assetBulkUpdateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.updateAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {UpdateStackParentDto} updateStackParentDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateStackParent(updateStackParentDto: UpdateStackParentDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateStackParent(updateStackParentDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.updateStackParent']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {File} assetData - * @param {string} deviceAssetId - * @param {string} deviceId - * @param {string} fileCreatedAt - * @param {string} fileModifiedAt - * @param {string} [key] - * @param {string} [duration] - * @param {boolean} [isArchived] - * @param {boolean} [isExternal] - * @param {boolean} [isFavorite] - * @param {boolean} [isOffline] - * @param {boolean} [isReadOnly] - * @param {boolean} [isVisible] - * @param {string} [libraryId] - * @param {File} [livePhotoData] - * @param {File} [sidecarData] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async uploadFile(assetData: File, deviceAssetId: string, deviceId: string, fileCreatedAt: string, fileModifiedAt: string, key?: string, duration?: string, isArchived?: boolean, isExternal?: boolean, isFavorite?: boolean, isOffline?: boolean, isReadOnly?: boolean, isVisible?: boolean, libraryId?: string, livePhotoData?: File, sidecarData?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.uploadFile(assetData, deviceAssetId, deviceId, fileCreatedAt, fileModifiedAt, key, duration, isArchived, isExternal, isFavorite, isOffline, isReadOnly, isVisible, libraryId, livePhotoData, sidecarData, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AssetApi.uploadFile']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * AssetApi - factory interface - * @export - */ -export const AssetApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = AssetApiFp(configuration) - return { - /** - * Checks if assets exist by checksums - * @param {AssetApiCheckBulkUploadRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - checkBulkUpload(requestParameters: AssetApiCheckBulkUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.checkBulkUpload(requestParameters.assetBulkUploadCheckDto, options).then((request) => request(axios, basePath)); - }, - /** - * Checks if multiple assets exist on the server and returns all existing - used by background backup - * @param {AssetApiCheckExistingAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - checkExistingAssets(requestParameters: AssetApiCheckExistingAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.checkExistingAssets(requestParameters.checkExistingAssetsDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiDeleteAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteAssets(requestParameters: AssetApiDeleteAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteAssets(requestParameters.assetBulkDeleteDto, options).then((request) => request(axios, basePath)); - }, - /** - * Get all AssetEntity belong to the user - * @param {AssetApiGetAllAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllAssets(requestParameters: AssetApiGetAllAssetsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAllAssets(requestParameters.ifNoneMatch, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.skip, requestParameters.take, requestParameters.updatedAfter, requestParameters.updatedBefore, requestParameters.userId, options).then((request) => request(axios, basePath)); - }, - /** - * Get all asset of a device that are in the database, ID only. - * @param {AssetApiGetAllUserAssetsByDeviceIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllUserAssetsByDeviceId(requestParameters: AssetApiGetAllUserAssetsByDeviceIdRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAllUserAssetsByDeviceId(requestParameters.deviceId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetAssetInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetInfo(requestParameters: AssetApiGetAssetInfoRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAssetInfo(requestParameters.id, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetSearchTerms(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAssetSearchTerms(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetAssetStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetStatistics(requestParameters: AssetApiGetAssetStatisticsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAssetStatistics(requestParameters.isArchived, requestParameters.isFavorite, requestParameters.isTrashed, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetAssetThumbnailRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAssetThumbnail(requestParameters: AssetApiGetAssetThumbnailRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAssetThumbnail(requestParameters.id, requestParameters.format, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getCuratedLocations(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getCuratedLocations(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getCuratedObjects(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getCuratedObjects(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetMapMarkersRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMapMarkers(requestParameters: AssetApiGetMapMarkersRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getMapMarkers(requestParameters.fileCreatedAfter, requestParameters.fileCreatedBefore, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.withPartners, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetMemoryLaneRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMemoryLane(requestParameters: AssetApiGetMemoryLaneRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getMemoryLane(requestParameters.day, requestParameters.month, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetRandomRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getRandom(requestParameters: AssetApiGetRandomRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getRandom(requestParameters.count, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetTimeBucketRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTimeBucket(requestParameters: AssetApiGetTimeBucketRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getTimeBucket(requestParameters.size, requestParameters.timeBucket, requestParameters.albumId, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.isTrashed, requestParameters.key, requestParameters.personId, requestParameters.userId, requestParameters.withPartners, requestParameters.withStacked, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiGetTimeBucketsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTimeBuckets(requestParameters: AssetApiGetTimeBucketsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getTimeBuckets(requestParameters.size, requestParameters.albumId, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.isTrashed, requestParameters.key, requestParameters.personId, requestParameters.userId, requestParameters.withPartners, requestParameters.withStacked, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiRunAssetJobsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - runAssetJobs(requestParameters: AssetApiRunAssetJobsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.runAssetJobs(requestParameters.assetJobsDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiSearchAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - searchAssets(requestParameters: AssetApiSearchAssetsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.searchAssets(requestParameters.checksum, requestParameters.city, requestParameters.country, requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.deviceAssetId, requestParameters.deviceId, requestParameters.encodedVideoPath, requestParameters.id, requestParameters.isArchived, requestParameters.isEncoded, requestParameters.isExternal, requestParameters.isFavorite, requestParameters.isMotion, requestParameters.isNotInAlbum, requestParameters.isOffline, requestParameters.isReadOnly, requestParameters.isVisible, requestParameters.lensModel, requestParameters.libraryId, requestParameters.make, requestParameters.model, requestParameters.order, requestParameters.originalFileName, requestParameters.originalPath, requestParameters.page, requestParameters.personIds, requestParameters.resizePath, requestParameters.size, requestParameters.state, requestParameters.takenAfter, requestParameters.takenBefore, requestParameters.trashedAfter, requestParameters.trashedBefore, requestParameters.type, requestParameters.updatedAfter, requestParameters.updatedBefore, requestParameters.webpPath, requestParameters.withArchived, requestParameters.withDeleted, requestParameters.withExif, requestParameters.withPeople, requestParameters.withStacked, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiServeFileRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - serveFile(requestParameters: AssetApiServeFileRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.serveFile(requestParameters.id, requestParameters.isThumb, requestParameters.isWeb, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiUpdateAssetRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateAsset(requestParameters: AssetApiUpdateAssetRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateAsset(requestParameters.id, requestParameters.updateAssetDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiUpdateAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateAssets(requestParameters: AssetApiUpdateAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateAssets(requestParameters.assetBulkUpdateDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiUpdateStackParentRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateStackParent(requestParameters: AssetApiUpdateStackParentRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateStackParent(requestParameters.updateStackParentDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AssetApiUploadFileRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - uploadFile(requestParameters: AssetApiUploadFileRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.uploadFile(requestParameters.assetData, requestParameters.deviceAssetId, requestParameters.deviceId, requestParameters.fileCreatedAt, requestParameters.fileModifiedAt, requestParameters.key, requestParameters.duration, requestParameters.isArchived, requestParameters.isExternal, requestParameters.isFavorite, requestParameters.isOffline, requestParameters.isReadOnly, requestParameters.isVisible, requestParameters.libraryId, requestParameters.livePhotoData, requestParameters.sidecarData, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for checkBulkUpload operation in AssetApi. - * @export - * @interface AssetApiCheckBulkUploadRequest - */ -export interface AssetApiCheckBulkUploadRequest { - /** - * - * @type {AssetBulkUploadCheckDto} - * @memberof AssetApiCheckBulkUpload - */ - readonly assetBulkUploadCheckDto: AssetBulkUploadCheckDto -} - -/** - * Request parameters for checkExistingAssets operation in AssetApi. - * @export - * @interface AssetApiCheckExistingAssetsRequest - */ -export interface AssetApiCheckExistingAssetsRequest { - /** - * - * @type {CheckExistingAssetsDto} - * @memberof AssetApiCheckExistingAssets - */ - readonly checkExistingAssetsDto: CheckExistingAssetsDto -} - -/** - * Request parameters for deleteAssets operation in AssetApi. - * @export - * @interface AssetApiDeleteAssetsRequest - */ -export interface AssetApiDeleteAssetsRequest { - /** - * - * @type {AssetBulkDeleteDto} - * @memberof AssetApiDeleteAssets - */ - readonly assetBulkDeleteDto: AssetBulkDeleteDto -} - -/** - * Request parameters for getAllAssets operation in AssetApi. - * @export - * @interface AssetApiGetAllAssetsRequest - */ -export interface AssetApiGetAllAssetsRequest { - /** - * ETag of data already cached on the client - * @type {string} - * @memberof AssetApiGetAllAssets - */ - readonly ifNoneMatch?: string - - /** - * - * @type {boolean} - * @memberof AssetApiGetAllAssets - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetAllAssets - */ - readonly isFavorite?: boolean - - /** - * - * @type {number} - * @memberof AssetApiGetAllAssets - */ - readonly skip?: number - - /** - * - * @type {number} - * @memberof AssetApiGetAllAssets - */ - readonly take?: number - - /** - * - * @type {string} - * @memberof AssetApiGetAllAssets - */ - readonly updatedAfter?: string - - /** - * - * @type {string} - * @memberof AssetApiGetAllAssets - */ - readonly updatedBefore?: string - - /** - * - * @type {string} - * @memberof AssetApiGetAllAssets - */ - readonly userId?: string -} - -/** - * Request parameters for getAllUserAssetsByDeviceId operation in AssetApi. - * @export - * @interface AssetApiGetAllUserAssetsByDeviceIdRequest - */ -export interface AssetApiGetAllUserAssetsByDeviceIdRequest { - /** - * - * @type {string} - * @memberof AssetApiGetAllUserAssetsByDeviceId - */ - readonly deviceId: string -} - -/** - * Request parameters for getAssetInfo operation in AssetApi. - * @export - * @interface AssetApiGetAssetInfoRequest - */ -export interface AssetApiGetAssetInfoRequest { - /** - * - * @type {string} - * @memberof AssetApiGetAssetInfo - */ - readonly id: string - - /** - * - * @type {string} - * @memberof AssetApiGetAssetInfo - */ - readonly key?: string -} - -/** - * Request parameters for getAssetStatistics operation in AssetApi. - * @export - * @interface AssetApiGetAssetStatisticsRequest - */ -export interface AssetApiGetAssetStatisticsRequest { - /** - * - * @type {boolean} - * @memberof AssetApiGetAssetStatistics - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetAssetStatistics - */ - readonly isFavorite?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetAssetStatistics - */ - readonly isTrashed?: boolean -} - -/** - * Request parameters for getAssetThumbnail operation in AssetApi. - * @export - * @interface AssetApiGetAssetThumbnailRequest - */ -export interface AssetApiGetAssetThumbnailRequest { - /** - * - * @type {string} - * @memberof AssetApiGetAssetThumbnail - */ - readonly id: string - - /** - * - * @type {ThumbnailFormat} - * @memberof AssetApiGetAssetThumbnail - */ - readonly format?: ThumbnailFormat - - /** - * - * @type {string} - * @memberof AssetApiGetAssetThumbnail - */ - readonly key?: string -} - -/** - * Request parameters for getMapMarkers operation in AssetApi. - * @export - * @interface AssetApiGetMapMarkersRequest - */ -export interface AssetApiGetMapMarkersRequest { - /** - * - * @type {string} - * @memberof AssetApiGetMapMarkers - */ - readonly fileCreatedAfter?: string - - /** - * - * @type {string} - * @memberof AssetApiGetMapMarkers - */ - readonly fileCreatedBefore?: string - - /** - * - * @type {boolean} - * @memberof AssetApiGetMapMarkers - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetMapMarkers - */ - readonly isFavorite?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetMapMarkers - */ - readonly withPartners?: boolean -} - -/** - * Request parameters for getMemoryLane operation in AssetApi. - * @export - * @interface AssetApiGetMemoryLaneRequest - */ -export interface AssetApiGetMemoryLaneRequest { - /** - * - * @type {number} - * @memberof AssetApiGetMemoryLane - */ - readonly day: number - - /** - * - * @type {number} - * @memberof AssetApiGetMemoryLane - */ - readonly month: number -} - -/** - * Request parameters for getRandom operation in AssetApi. - * @export - * @interface AssetApiGetRandomRequest - */ -export interface AssetApiGetRandomRequest { - /** - * - * @type {number} - * @memberof AssetApiGetRandom - */ - readonly count?: number -} - -/** - * Request parameters for getTimeBucket operation in AssetApi. - * @export - * @interface AssetApiGetTimeBucketRequest - */ -export interface AssetApiGetTimeBucketRequest { - /** - * - * @type {TimeBucketSize} - * @memberof AssetApiGetTimeBucket - */ - readonly size: TimeBucketSize - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBucket - */ - readonly timeBucket: string - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBucket - */ - readonly albumId?: string - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBucket - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBucket - */ - readonly isFavorite?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBucket - */ - readonly isTrashed?: boolean - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBucket - */ - readonly key?: string - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBucket - */ - readonly personId?: string - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBucket - */ - readonly userId?: string - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBucket - */ - readonly withPartners?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBucket - */ - readonly withStacked?: boolean -} - -/** - * Request parameters for getTimeBuckets operation in AssetApi. - * @export - * @interface AssetApiGetTimeBucketsRequest - */ -export interface AssetApiGetTimeBucketsRequest { - /** - * - * @type {TimeBucketSize} - * @memberof AssetApiGetTimeBuckets - */ - readonly size: TimeBucketSize - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBuckets - */ - readonly albumId?: string - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBuckets - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBuckets - */ - readonly isFavorite?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBuckets - */ - readonly isTrashed?: boolean - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBuckets - */ - readonly key?: string - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBuckets - */ - readonly personId?: string - - /** - * - * @type {string} - * @memberof AssetApiGetTimeBuckets - */ - readonly userId?: string - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBuckets - */ - readonly withPartners?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiGetTimeBuckets - */ - readonly withStacked?: boolean -} - -/** - * Request parameters for runAssetJobs operation in AssetApi. - * @export - * @interface AssetApiRunAssetJobsRequest - */ -export interface AssetApiRunAssetJobsRequest { - /** - * - * @type {AssetJobsDto} - * @memberof AssetApiRunAssetJobs - */ - readonly assetJobsDto: AssetJobsDto -} - -/** - * Request parameters for searchAssets operation in AssetApi. - * @export - * @interface AssetApiSearchAssetsRequest - */ -export interface AssetApiSearchAssetsRequest { - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly checksum?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly city?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly country?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly createdAfter?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly createdBefore?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly deviceAssetId?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly deviceId?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly encodedVideoPath?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly id?: string - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isEncoded?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isExternal?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isFavorite?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isMotion?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isNotInAlbum?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isOffline?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isReadOnly?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly isVisible?: boolean - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly lensModel?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly libraryId?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly make?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly model?: string - - /** - * - * @type {AssetOrder} - * @memberof AssetApiSearchAssets - */ - readonly order?: AssetOrder - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly originalFileName?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly originalPath?: string - - /** - * - * @type {number} - * @memberof AssetApiSearchAssets - */ - readonly page?: number - - /** - * - * @type {Array} - * @memberof AssetApiSearchAssets - */ - readonly personIds?: Array - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly resizePath?: string - - /** - * - * @type {number} - * @memberof AssetApiSearchAssets - */ - readonly size?: number - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly state?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly takenAfter?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly takenBefore?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly trashedAfter?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly trashedBefore?: string - - /** - * - * @type {AssetTypeEnum} - * @memberof AssetApiSearchAssets - */ - readonly type?: AssetTypeEnum - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly updatedAfter?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly updatedBefore?: string - - /** - * - * @type {string} - * @memberof AssetApiSearchAssets - */ - readonly webpPath?: string - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly withArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly withDeleted?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly withExif?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly withPeople?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiSearchAssets - */ - readonly withStacked?: boolean -} - -/** - * Request parameters for serveFile operation in AssetApi. - * @export - * @interface AssetApiServeFileRequest - */ -export interface AssetApiServeFileRequest { - /** - * - * @type {string} - * @memberof AssetApiServeFile - */ - readonly id: string - - /** - * - * @type {boolean} - * @memberof AssetApiServeFile - */ - readonly isThumb?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiServeFile - */ - readonly isWeb?: boolean - - /** - * - * @type {string} - * @memberof AssetApiServeFile - */ - readonly key?: string -} - -/** - * Request parameters for updateAsset operation in AssetApi. - * @export - * @interface AssetApiUpdateAssetRequest - */ -export interface AssetApiUpdateAssetRequest { - /** - * - * @type {string} - * @memberof AssetApiUpdateAsset - */ - readonly id: string - - /** - * - * @type {UpdateAssetDto} - * @memberof AssetApiUpdateAsset - */ - readonly updateAssetDto: UpdateAssetDto -} - -/** - * Request parameters for updateAssets operation in AssetApi. - * @export - * @interface AssetApiUpdateAssetsRequest - */ -export interface AssetApiUpdateAssetsRequest { - /** - * - * @type {AssetBulkUpdateDto} - * @memberof AssetApiUpdateAssets - */ - readonly assetBulkUpdateDto: AssetBulkUpdateDto -} - -/** - * Request parameters for updateStackParent operation in AssetApi. - * @export - * @interface AssetApiUpdateStackParentRequest - */ -export interface AssetApiUpdateStackParentRequest { - /** - * - * @type {UpdateStackParentDto} - * @memberof AssetApiUpdateStackParent - */ - readonly updateStackParentDto: UpdateStackParentDto -} - -/** - * Request parameters for uploadFile operation in AssetApi. - * @export - * @interface AssetApiUploadFileRequest - */ -export interface AssetApiUploadFileRequest { - /** - * - * @type {File} - * @memberof AssetApiUploadFile - */ - readonly assetData: File - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly deviceAssetId: string - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly deviceId: string - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly fileCreatedAt: string - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly fileModifiedAt: string - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly key?: string - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly duration?: string - - /** - * - * @type {boolean} - * @memberof AssetApiUploadFile - */ - readonly isArchived?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiUploadFile - */ - readonly isExternal?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiUploadFile - */ - readonly isFavorite?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiUploadFile - */ - readonly isOffline?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiUploadFile - */ - readonly isReadOnly?: boolean - - /** - * - * @type {boolean} - * @memberof AssetApiUploadFile - */ - readonly isVisible?: boolean - - /** - * - * @type {string} - * @memberof AssetApiUploadFile - */ - readonly libraryId?: string - - /** - * - * @type {File} - * @memberof AssetApiUploadFile - */ - readonly livePhotoData?: File - - /** - * - * @type {File} - * @memberof AssetApiUploadFile - */ - readonly sidecarData?: File -} - -/** - * AssetApi - object-oriented interface - * @export - * @class AssetApi - * @extends {BaseAPI} - */ -export class AssetApi extends BaseAPI { - /** - * Checks if assets exist by checksums - * @param {AssetApiCheckBulkUploadRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public checkBulkUpload(requestParameters: AssetApiCheckBulkUploadRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).checkBulkUpload(requestParameters.assetBulkUploadCheckDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * Checks if multiple assets exist on the server and returns all existing - used by background backup - * @param {AssetApiCheckExistingAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public checkExistingAssets(requestParameters: AssetApiCheckExistingAssetsRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).checkExistingAssets(requestParameters.checkExistingAssetsDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiDeleteAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public deleteAssets(requestParameters: AssetApiDeleteAssetsRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).deleteAssets(requestParameters.assetBulkDeleteDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * Get all AssetEntity belong to the user - * @param {AssetApiGetAllAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getAllAssets(requestParameters: AssetApiGetAllAssetsRequest = {}, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getAllAssets(requestParameters.ifNoneMatch, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.skip, requestParameters.take, requestParameters.updatedAfter, requestParameters.updatedBefore, requestParameters.userId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * Get all asset of a device that are in the database, ID only. - * @param {AssetApiGetAllUserAssetsByDeviceIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getAllUserAssetsByDeviceId(requestParameters: AssetApiGetAllUserAssetsByDeviceIdRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getAllUserAssetsByDeviceId(requestParameters.deviceId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetAssetInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getAssetInfo(requestParameters: AssetApiGetAssetInfoRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getAssetInfo(requestParameters.id, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getAssetSearchTerms(options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getAssetSearchTerms(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetAssetStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getAssetStatistics(requestParameters: AssetApiGetAssetStatisticsRequest = {}, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getAssetStatistics(requestParameters.isArchived, requestParameters.isFavorite, requestParameters.isTrashed, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetAssetThumbnailRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getAssetThumbnail(requestParameters: AssetApiGetAssetThumbnailRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getAssetThumbnail(requestParameters.id, requestParameters.format, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getCuratedLocations(options?: RawAxiosRequestConfig) { - 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?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getCuratedObjects(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetMapMarkersRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getMapMarkers(requestParameters: AssetApiGetMapMarkersRequest = {}, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getMapMarkers(requestParameters.fileCreatedAfter, requestParameters.fileCreatedBefore, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.withPartners, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetMemoryLaneRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getMemoryLane(requestParameters: AssetApiGetMemoryLaneRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getMemoryLane(requestParameters.day, requestParameters.month, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetRandomRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getRandom(requestParameters: AssetApiGetRandomRequest = {}, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getRandom(requestParameters.count, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetTimeBucketRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getTimeBucket(requestParameters: AssetApiGetTimeBucketRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getTimeBucket(requestParameters.size, requestParameters.timeBucket, requestParameters.albumId, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.isTrashed, requestParameters.key, requestParameters.personId, requestParameters.userId, requestParameters.withPartners, requestParameters.withStacked, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiGetTimeBucketsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public getTimeBuckets(requestParameters: AssetApiGetTimeBucketsRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).getTimeBuckets(requestParameters.size, requestParameters.albumId, requestParameters.isArchived, requestParameters.isFavorite, requestParameters.isTrashed, requestParameters.key, requestParameters.personId, requestParameters.userId, requestParameters.withPartners, requestParameters.withStacked, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiRunAssetJobsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public runAssetJobs(requestParameters: AssetApiRunAssetJobsRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).runAssetJobs(requestParameters.assetJobsDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiSearchAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof AssetApi - */ - public searchAssets(requestParameters: AssetApiSearchAssetsRequest = {}, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).searchAssets(requestParameters.checksum, requestParameters.city, requestParameters.country, requestParameters.createdAfter, requestParameters.createdBefore, requestParameters.deviceAssetId, requestParameters.deviceId, requestParameters.encodedVideoPath, requestParameters.id, requestParameters.isArchived, requestParameters.isEncoded, requestParameters.isExternal, requestParameters.isFavorite, requestParameters.isMotion, requestParameters.isNotInAlbum, requestParameters.isOffline, requestParameters.isReadOnly, requestParameters.isVisible, requestParameters.lensModel, requestParameters.libraryId, requestParameters.make, requestParameters.model, requestParameters.order, requestParameters.originalFileName, requestParameters.originalPath, requestParameters.page, requestParameters.personIds, requestParameters.resizePath, requestParameters.size, requestParameters.state, requestParameters.takenAfter, requestParameters.takenBefore, requestParameters.trashedAfter, requestParameters.trashedBefore, requestParameters.type, requestParameters.updatedAfter, requestParameters.updatedBefore, requestParameters.webpPath, requestParameters.withArchived, requestParameters.withDeleted, requestParameters.withExif, requestParameters.withPeople, requestParameters.withStacked, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiServeFileRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public serveFile(requestParameters: AssetApiServeFileRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).serveFile(requestParameters.id, requestParameters.isThumb, requestParameters.isWeb, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiUpdateAssetRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public updateAsset(requestParameters: AssetApiUpdateAssetRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).updateAsset(requestParameters.id, requestParameters.updateAssetDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiUpdateAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public updateAssets(requestParameters: AssetApiUpdateAssetsRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).updateAssets(requestParameters.assetBulkUpdateDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiUpdateStackParentRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public updateStackParent(requestParameters: AssetApiUpdateStackParentRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).updateStackParent(requestParameters.updateStackParentDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AssetApiUploadFileRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AssetApi - */ - public uploadFile(requestParameters: AssetApiUploadFileRequest, options?: RawAxiosRequestConfig) { - return AssetApiFp(this.configuration).uploadFile(requestParameters.assetData, requestParameters.deviceAssetId, requestParameters.deviceId, requestParameters.fileCreatedAt, requestParameters.fileModifiedAt, requestParameters.key, requestParameters.duration, requestParameters.isArchived, requestParameters.isExternal, requestParameters.isFavorite, requestParameters.isOffline, requestParameters.isReadOnly, requestParameters.isVisible, requestParameters.libraryId, requestParameters.livePhotoData, requestParameters.sidecarData, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * AuditApi - axios parameter creator - * @export - */ -export const AuditApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {FileReportFixDto} fileReportFixDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - fixAuditFiles: async (fileReportFixDto: FileReportFixDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'fileReportFixDto' is not null or undefined - assertParamExists('fixAuditFiles', 'fileReportFixDto', fileReportFixDto) - const localVarPath = `/audit/file-report/fix`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(fileReportFixDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} after - * @param {EntityType} entityType - * @param {string} [userId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAuditDeletes: async (after: string, entityType: EntityType, userId?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'after' is not null or undefined - assertParamExists('getAuditDeletes', 'after', after) - // verify required parameter 'entityType' is not null or undefined - assertParamExists('getAuditDeletes', 'entityType', entityType) - const localVarPath = `/audit/deletes`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (after !== undefined) { - localVarQueryParameter['after'] = (after as any instanceof Date) ? - (after as any).toISOString() : - after; - } - - if (entityType !== undefined) { - localVarQueryParameter['entityType'] = entityType; - } - - if (userId !== undefined) { - localVarQueryParameter['userId'] = userId; - } - - - - 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} - */ - getAuditFiles: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/audit/file-report`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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 {FileChecksumDto} fileChecksumDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getFileChecksums: async (fileChecksumDto: FileChecksumDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'fileChecksumDto' is not null or undefined - assertParamExists('getFileChecksums', 'fileChecksumDto', fileChecksumDto) - const localVarPath = `/audit/file-report/checksum`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(fileChecksumDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * AuditApi - functional programming interface - * @export - */ -export const AuditApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = AuditApiAxiosParamCreator(configuration) - return { - /** - * - * @param {FileReportFixDto} fileReportFixDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async fixAuditFiles(fileReportFixDto: FileReportFixDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.fixAuditFiles(fileReportFixDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuditApi.fixAuditFiles']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} after - * @param {EntityType} entityType - * @param {string} [userId] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAuditDeletes(after: string, entityType: EntityType, userId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAuditDeletes(after, entityType, userId, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuditApi.getAuditDeletes']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAuditFiles(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAuditFiles(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuditApi.getAuditFiles']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {FileChecksumDto} fileChecksumDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getFileChecksums(fileChecksumDto: FileChecksumDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getFileChecksums(fileChecksumDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuditApi.getFileChecksums']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * AuditApi - factory interface - * @export - */ -export const AuditApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = AuditApiFp(configuration) - return { - /** - * - * @param {AuditApiFixAuditFilesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - fixAuditFiles(requestParameters: AuditApiFixAuditFilesRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.fixAuditFiles(requestParameters.fileReportFixDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AuditApiGetAuditDeletesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAuditDeletes(requestParameters: AuditApiGetAuditDeletesRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAuditDeletes(requestParameters.after, requestParameters.entityType, requestParameters.userId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAuditFiles(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAuditFiles(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AuditApiGetFileChecksumsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getFileChecksums(requestParameters: AuditApiGetFileChecksumsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getFileChecksums(requestParameters.fileChecksumDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for fixAuditFiles operation in AuditApi. - * @export - * @interface AuditApiFixAuditFilesRequest - */ -export interface AuditApiFixAuditFilesRequest { - /** - * - * @type {FileReportFixDto} - * @memberof AuditApiFixAuditFiles - */ - readonly fileReportFixDto: FileReportFixDto -} - -/** - * Request parameters for getAuditDeletes operation in AuditApi. - * @export - * @interface AuditApiGetAuditDeletesRequest - */ -export interface AuditApiGetAuditDeletesRequest { - /** - * - * @type {string} - * @memberof AuditApiGetAuditDeletes - */ - readonly after: string - - /** - * - * @type {EntityType} - * @memberof AuditApiGetAuditDeletes - */ - readonly entityType: EntityType - - /** - * - * @type {string} - * @memberof AuditApiGetAuditDeletes - */ - readonly userId?: string -} - -/** - * Request parameters for getFileChecksums operation in AuditApi. - * @export - * @interface AuditApiGetFileChecksumsRequest - */ -export interface AuditApiGetFileChecksumsRequest { - /** - * - * @type {FileChecksumDto} - * @memberof AuditApiGetFileChecksums - */ - readonly fileChecksumDto: FileChecksumDto -} - -/** - * AuditApi - object-oriented interface - * @export - * @class AuditApi - * @extends {BaseAPI} - */ -export class AuditApi extends BaseAPI { - /** - * - * @param {AuditApiFixAuditFilesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuditApi - */ - public fixAuditFiles(requestParameters: AuditApiFixAuditFilesRequest, options?: RawAxiosRequestConfig) { - return AuditApiFp(this.configuration).fixAuditFiles(requestParameters.fileReportFixDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AuditApiGetAuditDeletesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuditApi - */ - public getAuditDeletes(requestParameters: AuditApiGetAuditDeletesRequest, options?: RawAxiosRequestConfig) { - return AuditApiFp(this.configuration).getAuditDeletes(requestParameters.after, requestParameters.entityType, requestParameters.userId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuditApi - */ - public getAuditFiles(options?: RawAxiosRequestConfig) { - return AuditApiFp(this.configuration).getAuditFiles(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AuditApiGetFileChecksumsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuditApi - */ - public getFileChecksums(requestParameters: AuditApiGetFileChecksumsRequest, options?: RawAxiosRequestConfig) { - return AuditApiFp(this.configuration).getFileChecksums(requestParameters.fileChecksumDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * AuthenticationApi - axios parameter creator - * @export - */ -export const AuthenticationApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {ChangePasswordDto} changePasswordDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - changePassword: async (changePasswordDto: ChangePasswordDto, options: RawAxiosRequestConfig = {}): Promise => { - // 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; - - // 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) - - - - 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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAuthDevices: async (options: RawAxiosRequestConfig = {}): Promise => { - 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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 {LoginCredentialDto} loginCredentialDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - login: async (loginCredentialDto: LoginCredentialDto, options: RawAxiosRequestConfig = {}): Promise => { - // 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: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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: RawAxiosRequestConfig = {}): Promise => { - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} - */ - logoutAuthDevices: async (options: RawAxiosRequestConfig = {}): Promise => { - 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {SignUpDto} signUpDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - signUpAdmin: async (signUpDto: SignUpDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'signUpDto' is not null or undefined - assertParamExists('signUpAdmin', '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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - validateAccessToken: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * AuthenticationApi - functional programming interface - * @export - */ -export const AuthenticationApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = AuthenticationApiAxiosParamCreator(configuration) - return { - /** - * - * @param {ChangePasswordDto} changePasswordDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async changePassword(changePasswordDto: ChangePasswordDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(changePasswordDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.changePassword']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAuthDevices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAuthDevices(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.getAuthDevices']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {LoginCredentialDto} loginCredentialDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async login(loginCredentialDto: LoginCredentialDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.login(loginCredentialDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.login']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async logout(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.logout(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.logout']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async logoutAuthDevice(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.logoutAuthDevice(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.logoutAuthDevice']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async logoutAuthDevices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.logoutAuthDevices(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.logoutAuthDevices']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {SignUpDto} signUpDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async signUpAdmin(signUpDto: SignUpDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.signUpAdmin(signUpDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.signUpAdmin']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async validateAccessToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.validateAccessToken(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['AuthenticationApi.validateAccessToken']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * AuthenticationApi - factory interface - * @export - */ -export const AuthenticationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = AuthenticationApiFp(configuration) - return { - /** - * - * @param {AuthenticationApiChangePasswordRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - changePassword(requestParameters: AuthenticationApiChangePasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.changePassword(requestParameters.changePasswordDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAuthDevices(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAuthDevices(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AuthenticationApiLoginRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - login(requestParameters: AuthenticationApiLoginRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.login(requestParameters.loginCredentialDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - logout(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.logout(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AuthenticationApiLogoutAuthDeviceRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - logoutAuthDevice(requestParameters: AuthenticationApiLogoutAuthDeviceRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.logoutAuthDevice(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - logoutAuthDevices(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.logoutAuthDevices(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {AuthenticationApiSignUpAdminRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - signUpAdmin(requestParameters: AuthenticationApiSignUpAdminRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.signUpAdmin(requestParameters.signUpDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - validateAccessToken(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.validateAccessToken(options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for changePassword operation in AuthenticationApi. - * @export - * @interface AuthenticationApiChangePasswordRequest - */ -export interface AuthenticationApiChangePasswordRequest { - /** - * - * @type {ChangePasswordDto} - * @memberof AuthenticationApiChangePassword - */ - readonly changePasswordDto: ChangePasswordDto -} - -/** - * Request parameters for login operation in AuthenticationApi. - * @export - * @interface AuthenticationApiLoginRequest - */ -export interface AuthenticationApiLoginRequest { - /** - * - * @type {LoginCredentialDto} - * @memberof AuthenticationApiLogin - */ - readonly loginCredentialDto: LoginCredentialDto -} - -/** - * Request parameters for logoutAuthDevice operation in AuthenticationApi. - * @export - * @interface AuthenticationApiLogoutAuthDeviceRequest - */ -export interface AuthenticationApiLogoutAuthDeviceRequest { - /** - * - * @type {string} - * @memberof AuthenticationApiLogoutAuthDevice - */ - readonly id: string -} - -/** - * Request parameters for signUpAdmin operation in AuthenticationApi. - * @export - * @interface AuthenticationApiSignUpAdminRequest - */ -export interface AuthenticationApiSignUpAdminRequest { - /** - * - * @type {SignUpDto} - * @memberof AuthenticationApiSignUpAdmin - */ - readonly signUpDto: SignUpDto -} - -/** - * AuthenticationApi - object-oriented interface - * @export - * @class AuthenticationApi - * @extends {BaseAPI} - */ -export class AuthenticationApi extends BaseAPI { - /** - * - * @param {AuthenticationApiChangePasswordRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public changePassword(requestParameters: AuthenticationApiChangePasswordRequest, options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).changePassword(requestParameters.changePasswordDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public getAuthDevices(options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).getAuthDevices(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AuthenticationApiLoginRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public login(requestParameters: AuthenticationApiLoginRequest, options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).login(requestParameters.loginCredentialDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public logout(options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).logout(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AuthenticationApiLogoutAuthDeviceRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public logoutAuthDevice(requestParameters: AuthenticationApiLogoutAuthDeviceRequest, options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).logoutAuthDevice(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public logoutAuthDevices(options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).logoutAuthDevices(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {AuthenticationApiSignUpAdminRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public signUpAdmin(requestParameters: AuthenticationApiSignUpAdminRequest, options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).signUpAdmin(requestParameters.signUpDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof AuthenticationApi - */ - public validateAccessToken(options?: RawAxiosRequestConfig) { - return AuthenticationApiFp(this.configuration).validateAccessToken(options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * DownloadApi - axios parameter creator - * @export - */ -export const DownloadApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {AssetIdsDto} assetIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadArchive: async (assetIdsDto: AssetIdsDto, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'assetIdsDto' is not null or undefined - assertParamExists('downloadArchive', 'assetIdsDto', assetIdsDto) - const localVarPath = `/download/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: 'POST', ...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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile: async (id: string, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('downloadFile', 'id', id) - const localVarPath = `/download/asset/{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: 'POST', ...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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {DownloadInfoDto} downloadInfoDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getDownloadInfo: async (downloadInfoDto: DownloadInfoDto, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'downloadInfoDto' is not null or undefined - assertParamExists('getDownloadInfo', 'downloadInfoDto', downloadInfoDto) - const localVarPath = `/download/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: 'POST', ...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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(downloadInfoDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * DownloadApi - functional programming interface - * @export - */ -export const DownloadApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = DownloadApiAxiosParamCreator(configuration) - return { - /** - * - * @param {AssetIdsDto} assetIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async downloadArchive(assetIdsDto: AssetIdsDto, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.downloadArchive(assetIdsDto, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['DownloadApi.downloadArchive']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async downloadFile(id: string, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.downloadFile(id, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['DownloadApi.downloadFile']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {DownloadInfoDto} downloadInfoDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getDownloadInfo(downloadInfoDto: DownloadInfoDto, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getDownloadInfo(downloadInfoDto, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['DownloadApi.getDownloadInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * DownloadApi - factory interface - * @export - */ -export const DownloadApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = DownloadApiFp(configuration) - return { - /** - * - * @param {DownloadApiDownloadArchiveRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadArchive(requestParameters: DownloadApiDownloadArchiveRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.downloadArchive(requestParameters.assetIdsDto, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {DownloadApiDownloadFileRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(requestParameters: DownloadApiDownloadFileRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.downloadFile(requestParameters.id, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {DownloadApiGetDownloadInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getDownloadInfo(requestParameters: DownloadApiGetDownloadInfoRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getDownloadInfo(requestParameters.downloadInfoDto, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for downloadArchive operation in DownloadApi. - * @export - * @interface DownloadApiDownloadArchiveRequest - */ -export interface DownloadApiDownloadArchiveRequest { - /** - * - * @type {AssetIdsDto} - * @memberof DownloadApiDownloadArchive - */ - readonly assetIdsDto: AssetIdsDto - - /** - * - * @type {string} - * @memberof DownloadApiDownloadArchive - */ - readonly key?: string -} - -/** - * Request parameters for downloadFile operation in DownloadApi. - * @export - * @interface DownloadApiDownloadFileRequest - */ -export interface DownloadApiDownloadFileRequest { - /** - * - * @type {string} - * @memberof DownloadApiDownloadFile - */ - readonly id: string - - /** - * - * @type {string} - * @memberof DownloadApiDownloadFile - */ - readonly key?: string -} - -/** - * Request parameters for getDownloadInfo operation in DownloadApi. - * @export - * @interface DownloadApiGetDownloadInfoRequest - */ -export interface DownloadApiGetDownloadInfoRequest { - /** - * - * @type {DownloadInfoDto} - * @memberof DownloadApiGetDownloadInfo - */ - readonly downloadInfoDto: DownloadInfoDto - - /** - * - * @type {string} - * @memberof DownloadApiGetDownloadInfo - */ - readonly key?: string -} - -/** - * DownloadApi - object-oriented interface - * @export - * @class DownloadApi - * @extends {BaseAPI} - */ -export class DownloadApi extends BaseAPI { - /** - * - * @param {DownloadApiDownloadArchiveRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof DownloadApi - */ - public downloadArchive(requestParameters: DownloadApiDownloadArchiveRequest, options?: RawAxiosRequestConfig) { - return DownloadApiFp(this.configuration).downloadArchive(requestParameters.assetIdsDto, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {DownloadApiDownloadFileRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof DownloadApi - */ - public downloadFile(requestParameters: DownloadApiDownloadFileRequest, options?: RawAxiosRequestConfig) { - return DownloadApiFp(this.configuration).downloadFile(requestParameters.id, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {DownloadApiGetDownloadInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof DownloadApi - */ - public getDownloadInfo(requestParameters: DownloadApiGetDownloadInfoRequest, options?: RawAxiosRequestConfig) { - return DownloadApiFp(this.configuration).getDownloadInfo(requestParameters.downloadInfoDto, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * FaceApi - axios parameter creator - * @export - */ -export const FaceApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getFaces: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getFaces', 'id', id) - const localVarPath = `/face`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (id !== undefined) { - localVarQueryParameter['id'] = id; - } - - - - 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 {FaceDto} faceDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - reassignFacesById: async (id: string, faceDto: FaceDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('reassignFacesById', 'id', id) - // verify required parameter 'faceDto' is not null or undefined - assertParamExists('reassignFacesById', 'faceDto', faceDto) - const localVarPath = `/face/{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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(faceDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * FaceApi - functional programming interface - * @export - */ -export const FaceApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = FaceApiAxiosParamCreator(configuration) - return { - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getFaces(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getFaces(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['FaceApi.getFaces']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {FaceDto} faceDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async reassignFacesById(id: string, faceDto: FaceDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.reassignFacesById(id, faceDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['FaceApi.reassignFacesById']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * FaceApi - factory interface - * @export - */ -export const FaceApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = FaceApiFp(configuration) - return { - /** - * - * @param {FaceApiGetFacesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getFaces(requestParameters: FaceApiGetFacesRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getFaces(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {FaceApiReassignFacesByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - reassignFacesById(requestParameters: FaceApiReassignFacesByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.reassignFacesById(requestParameters.id, requestParameters.faceDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for getFaces operation in FaceApi. - * @export - * @interface FaceApiGetFacesRequest - */ -export interface FaceApiGetFacesRequest { - /** - * - * @type {string} - * @memberof FaceApiGetFaces - */ - readonly id: string -} - -/** - * Request parameters for reassignFacesById operation in FaceApi. - * @export - * @interface FaceApiReassignFacesByIdRequest - */ -export interface FaceApiReassignFacesByIdRequest { - /** - * - * @type {string} - * @memberof FaceApiReassignFacesById - */ - readonly id: string - - /** - * - * @type {FaceDto} - * @memberof FaceApiReassignFacesById - */ - readonly faceDto: FaceDto -} - -/** - * FaceApi - object-oriented interface - * @export - * @class FaceApi - * @extends {BaseAPI} - */ -export class FaceApi extends BaseAPI { - /** - * - * @param {FaceApiGetFacesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof FaceApi - */ - public getFaces(requestParameters: FaceApiGetFacesRequest, options?: RawAxiosRequestConfig) { - return FaceApiFp(this.configuration).getFaces(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {FaceApiReassignFacesByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof FaceApi - */ - public reassignFacesById(requestParameters: FaceApiReassignFacesByIdRequest, options?: RawAxiosRequestConfig) { - return FaceApiFp(this.configuration).reassignFacesById(requestParameters.id, requestParameters.faceDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * JobApi - axios parameter creator - * @export - */ -export const JobApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllJobsStatus: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {JobName} id - * @param {JobCommandDto} jobCommandDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - sendJobCommand: async (id: JobName, jobCommandDto: JobCommandDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('sendJobCommand', 'id', id) - // verify required parameter 'jobCommandDto' is not null or undefined - assertParamExists('sendJobCommand', 'jobCommandDto', jobCommandDto) - const localVarPath = `/jobs/{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; - - // 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) - - - - 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?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllJobsStatus(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['JobApi.getAllJobsStatus']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {JobName} id - * @param {JobCommandDto} jobCommandDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async sendJobCommand(id: JobName, jobCommandDto: JobCommandDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.sendJobCommand(id, jobCommandDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['JobApi.sendJobCommand']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * 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?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAllJobsStatus(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {JobApiSendJobCommandRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - sendJobCommand(requestParameters: JobApiSendJobCommandRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.sendJobCommand(requestParameters.id, requestParameters.jobCommandDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for sendJobCommand operation in JobApi. - * @export - * @interface JobApiSendJobCommandRequest - */ -export interface JobApiSendJobCommandRequest { - /** - * - * @type {JobName} - * @memberof JobApiSendJobCommand - */ - readonly id: JobName - - /** - * - * @type {JobCommandDto} - * @memberof JobApiSendJobCommand - */ - readonly jobCommandDto: JobCommandDto -} - -/** - * 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?: RawAxiosRequestConfig) { - return JobApiFp(this.configuration).getAllJobsStatus(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {JobApiSendJobCommandRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof JobApi - */ - public sendJobCommand(requestParameters: JobApiSendJobCommandRequest, options?: RawAxiosRequestConfig) { - return JobApiFp(this.configuration).sendJobCommand(requestParameters.id, requestParameters.jobCommandDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * LibraryApi - axios parameter creator - * @export - */ -export const LibraryApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {CreateLibraryDto} createLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createLibrary: async (createLibraryDto: CreateLibraryDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'createLibraryDto' is not null or undefined - assertParamExists('createLibrary', 'createLibraryDto', createLibraryDto) - const localVarPath = `/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: 'POST', ...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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createLibraryDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteLibrary: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('deleteLibrary', 'id', id) - const localVarPath = `/library/{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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} - */ - getLibraries: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/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; - - // 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) - - - - 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} - */ - getLibraryInfo: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getLibraryInfo', 'id', id) - const localVarPath = `/library/{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; - - // 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) - - - - 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} - */ - getLibraryStatistics: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getLibraryStatistics', 'id', id) - const localVarPath = `/library/{id}/statistics` - .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; - - // 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) - - - - 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} - */ - removeOfflineFiles: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('removeOfflineFiles', 'id', id) - const localVarPath = `/library/{id}/removeOffline` - .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: 'POST', ...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) - - - - 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 {ScanLibraryDto} scanLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - scanLibrary: async (id: string, scanLibraryDto: ScanLibraryDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('scanLibrary', 'id', id) - // verify required parameter 'scanLibraryDto' is not null or undefined - assertParamExists('scanLibrary', 'scanLibraryDto', scanLibraryDto) - const localVarPath = `/library/{id}/scan` - .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: 'POST', ...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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(scanLibraryDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {UpdateLibraryDto} updateLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateLibrary: async (id: string, updateLibraryDto: UpdateLibraryDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updateLibrary', 'id', id) - // verify required parameter 'updateLibraryDto' is not null or undefined - assertParamExists('updateLibrary', 'updateLibraryDto', updateLibraryDto) - const localVarPath = `/library/{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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(updateLibraryDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {ValidateLibraryDto} validateLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - validate: async (id: string, validateLibraryDto: ValidateLibraryDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('validate', 'id', id) - // verify required parameter 'validateLibraryDto' is not null or undefined - assertParamExists('validate', 'validateLibraryDto', validateLibraryDto) - const localVarPath = `/library/{id}/validate` - .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: 'POST', ...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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(validateLibraryDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * LibraryApi - functional programming interface - * @export - */ -export const LibraryApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = LibraryApiAxiosParamCreator(configuration) - return { - /** - * - * @param {CreateLibraryDto} createLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createLibrary(createLibraryDto: CreateLibraryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createLibrary(createLibraryDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.createLibrary']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteLibrary(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteLibrary(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.deleteLibrary']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getLibraries(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getLibraries(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.getLibraries']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getLibraryInfo(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getLibraryInfo(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.getLibraryInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getLibraryStatistics(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getLibraryStatistics(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.getLibraryStatistics']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async removeOfflineFiles(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.removeOfflineFiles(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.removeOfflineFiles']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {ScanLibraryDto} scanLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async scanLibrary(id: string, scanLibraryDto: ScanLibraryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.scanLibrary(id, scanLibraryDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.scanLibrary']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {UpdateLibraryDto} updateLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateLibrary(id: string, updateLibraryDto: UpdateLibraryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateLibrary(id, updateLibraryDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.updateLibrary']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {ValidateLibraryDto} validateLibraryDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async validate(id: string, validateLibraryDto: ValidateLibraryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.validate(id, validateLibraryDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['LibraryApi.validate']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * LibraryApi - factory interface - * @export - */ -export const LibraryApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = LibraryApiFp(configuration) - return { - /** - * - * @param {LibraryApiCreateLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createLibrary(requestParameters: LibraryApiCreateLibraryRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createLibrary(requestParameters.createLibraryDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiDeleteLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteLibrary(requestParameters: LibraryApiDeleteLibraryRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteLibrary(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getLibraries(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getLibraries(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiGetLibraryInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getLibraryInfo(requestParameters: LibraryApiGetLibraryInfoRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getLibraryInfo(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiGetLibraryStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getLibraryStatistics(requestParameters: LibraryApiGetLibraryStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getLibraryStatistics(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiRemoveOfflineFilesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeOfflineFiles(requestParameters: LibraryApiRemoveOfflineFilesRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.removeOfflineFiles(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiScanLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - scanLibrary(requestParameters: LibraryApiScanLibraryRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.scanLibrary(requestParameters.id, requestParameters.scanLibraryDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiUpdateLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateLibrary(requestParameters: LibraryApiUpdateLibraryRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateLibrary(requestParameters.id, requestParameters.updateLibraryDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {LibraryApiValidateRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - validate(requestParameters: LibraryApiValidateRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.validate(requestParameters.id, requestParameters.validateLibraryDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for createLibrary operation in LibraryApi. - * @export - * @interface LibraryApiCreateLibraryRequest - */ -export interface LibraryApiCreateLibraryRequest { - /** - * - * @type {CreateLibraryDto} - * @memberof LibraryApiCreateLibrary - */ - readonly createLibraryDto: CreateLibraryDto -} - -/** - * Request parameters for deleteLibrary operation in LibraryApi. - * @export - * @interface LibraryApiDeleteLibraryRequest - */ -export interface LibraryApiDeleteLibraryRequest { - /** - * - * @type {string} - * @memberof LibraryApiDeleteLibrary - */ - readonly id: string -} - -/** - * Request parameters for getLibraryInfo operation in LibraryApi. - * @export - * @interface LibraryApiGetLibraryInfoRequest - */ -export interface LibraryApiGetLibraryInfoRequest { - /** - * - * @type {string} - * @memberof LibraryApiGetLibraryInfo - */ - readonly id: string -} - -/** - * Request parameters for getLibraryStatistics operation in LibraryApi. - * @export - * @interface LibraryApiGetLibraryStatisticsRequest - */ -export interface LibraryApiGetLibraryStatisticsRequest { - /** - * - * @type {string} - * @memberof LibraryApiGetLibraryStatistics - */ - readonly id: string -} - -/** - * Request parameters for removeOfflineFiles operation in LibraryApi. - * @export - * @interface LibraryApiRemoveOfflineFilesRequest - */ -export interface LibraryApiRemoveOfflineFilesRequest { - /** - * - * @type {string} - * @memberof LibraryApiRemoveOfflineFiles - */ - readonly id: string -} - -/** - * Request parameters for scanLibrary operation in LibraryApi. - * @export - * @interface LibraryApiScanLibraryRequest - */ -export interface LibraryApiScanLibraryRequest { - /** - * - * @type {string} - * @memberof LibraryApiScanLibrary - */ - readonly id: string - - /** - * - * @type {ScanLibraryDto} - * @memberof LibraryApiScanLibrary - */ - readonly scanLibraryDto: ScanLibraryDto -} - -/** - * Request parameters for updateLibrary operation in LibraryApi. - * @export - * @interface LibraryApiUpdateLibraryRequest - */ -export interface LibraryApiUpdateLibraryRequest { - /** - * - * @type {string} - * @memberof LibraryApiUpdateLibrary - */ - readonly id: string - - /** - * - * @type {UpdateLibraryDto} - * @memberof LibraryApiUpdateLibrary - */ - readonly updateLibraryDto: UpdateLibraryDto -} - -/** - * Request parameters for validate operation in LibraryApi. - * @export - * @interface LibraryApiValidateRequest - */ -export interface LibraryApiValidateRequest { - /** - * - * @type {string} - * @memberof LibraryApiValidate - */ - readonly id: string - - /** - * - * @type {ValidateLibraryDto} - * @memberof LibraryApiValidate - */ - readonly validateLibraryDto: ValidateLibraryDto -} - -/** - * LibraryApi - object-oriented interface - * @export - * @class LibraryApi - * @extends {BaseAPI} - */ -export class LibraryApi extends BaseAPI { - /** - * - * @param {LibraryApiCreateLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public createLibrary(requestParameters: LibraryApiCreateLibraryRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).createLibrary(requestParameters.createLibraryDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiDeleteLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public deleteLibrary(requestParameters: LibraryApiDeleteLibraryRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).deleteLibrary(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public getLibraries(options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).getLibraries(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiGetLibraryInfoRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public getLibraryInfo(requestParameters: LibraryApiGetLibraryInfoRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).getLibraryInfo(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiGetLibraryStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public getLibraryStatistics(requestParameters: LibraryApiGetLibraryStatisticsRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).getLibraryStatistics(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiRemoveOfflineFilesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public removeOfflineFiles(requestParameters: LibraryApiRemoveOfflineFilesRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).removeOfflineFiles(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiScanLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public scanLibrary(requestParameters: LibraryApiScanLibraryRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).scanLibrary(requestParameters.id, requestParameters.scanLibraryDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiUpdateLibraryRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public updateLibrary(requestParameters: LibraryApiUpdateLibraryRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).updateLibrary(requestParameters.id, requestParameters.updateLibraryDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {LibraryApiValidateRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof LibraryApi - */ - public validate(requestParameters: LibraryApiValidateRequest, options?: RawAxiosRequestConfig) { - return LibraryApiFp(this.configuration).validate(requestParameters.id, requestParameters.validateLibraryDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * OAuthApi - axios parameter creator - * @export - */ -export const OAuthApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {OAuthCallbackDto} oAuthCallbackDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - finishOAuth: async (oAuthCallbackDto: OAuthCallbackDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'oAuthCallbackDto' is not null or undefined - assertParamExists('finishOAuth', '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 {OAuthCallbackDto} oAuthCallbackDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - linkOAuthAccount: async (oAuthCallbackDto: OAuthCallbackDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'oAuthCallbackDto' is not null or undefined - assertParamExists('linkOAuthAccount', '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; - - // 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) - - - - 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 {*} [options] Override http request option. - * @throws {RequiredError} - */ - redirectOAuthToMobile: async (options: RawAxiosRequestConfig = {}): Promise => { - 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, - }; - }, - /** - * - * @param {OAuthConfigDto} oAuthConfigDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - startOAuth: async (oAuthConfigDto: OAuthConfigDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'oAuthConfigDto' is not null or undefined - assertParamExists('startOAuth', 'oAuthConfigDto', oAuthConfigDto) - const localVarPath = `/oauth/authorize`; - // 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) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - unlinkOAuthAccount: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - 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 finishOAuth(oAuthCallbackDto: OAuthCallbackDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.finishOAuth(oAuthCallbackDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['OAuthApi.finishOAuth']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {OAuthCallbackDto} oAuthCallbackDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async linkOAuthAccount(oAuthCallbackDto: OAuthCallbackDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.linkOAuthAccount(oAuthCallbackDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['OAuthApi.linkOAuthAccount']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async redirectOAuthToMobile(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.redirectOAuthToMobile(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['OAuthApi.redirectOAuthToMobile']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {OAuthConfigDto} oAuthConfigDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async startOAuth(oAuthConfigDto: OAuthConfigDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.startOAuth(oAuthConfigDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['OAuthApi.startOAuth']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async unlinkOAuthAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.unlinkOAuthAccount(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['OAuthApi.unlinkOAuthAccount']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * OAuthApi - factory interface - * @export - */ -export const OAuthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = OAuthApiFp(configuration) - return { - /** - * - * @param {OAuthApiFinishOAuthRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - finishOAuth(requestParameters: OAuthApiFinishOAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.finishOAuth(requestParameters.oAuthCallbackDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {OAuthApiLinkOAuthAccountRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - linkOAuthAccount(requestParameters: OAuthApiLinkOAuthAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.linkOAuthAccount(requestParameters.oAuthCallbackDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - redirectOAuthToMobile(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.redirectOAuthToMobile(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {OAuthApiStartOAuthRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - startOAuth(requestParameters: OAuthApiStartOAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.startOAuth(requestParameters.oAuthConfigDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - unlinkOAuthAccount(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.unlinkOAuthAccount(options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for finishOAuth operation in OAuthApi. - * @export - * @interface OAuthApiFinishOAuthRequest - */ -export interface OAuthApiFinishOAuthRequest { - /** - * - * @type {OAuthCallbackDto} - * @memberof OAuthApiFinishOAuth - */ - readonly oAuthCallbackDto: OAuthCallbackDto -} - -/** - * Request parameters for linkOAuthAccount operation in OAuthApi. - * @export - * @interface OAuthApiLinkOAuthAccountRequest - */ -export interface OAuthApiLinkOAuthAccountRequest { - /** - * - * @type {OAuthCallbackDto} - * @memberof OAuthApiLinkOAuthAccount - */ - readonly oAuthCallbackDto: OAuthCallbackDto -} - -/** - * Request parameters for startOAuth operation in OAuthApi. - * @export - * @interface OAuthApiStartOAuthRequest - */ -export interface OAuthApiStartOAuthRequest { - /** - * - * @type {OAuthConfigDto} - * @memberof OAuthApiStartOAuth - */ - readonly oAuthConfigDto: OAuthConfigDto -} - -/** - * OAuthApi - object-oriented interface - * @export - * @class OAuthApi - * @extends {BaseAPI} - */ -export class OAuthApi extends BaseAPI { - /** - * - * @param {OAuthApiFinishOAuthRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OAuthApi - */ - public finishOAuth(requestParameters: OAuthApiFinishOAuthRequest, options?: RawAxiosRequestConfig) { - return OAuthApiFp(this.configuration).finishOAuth(requestParameters.oAuthCallbackDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {OAuthApiLinkOAuthAccountRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OAuthApi - */ - public linkOAuthAccount(requestParameters: OAuthApiLinkOAuthAccountRequest, options?: RawAxiosRequestConfig) { - return OAuthApiFp(this.configuration).linkOAuthAccount(requestParameters.oAuthCallbackDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OAuthApi - */ - public redirectOAuthToMobile(options?: RawAxiosRequestConfig) { - return OAuthApiFp(this.configuration).redirectOAuthToMobile(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {OAuthApiStartOAuthRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OAuthApi - */ - public startOAuth(requestParameters: OAuthApiStartOAuthRequest, options?: RawAxiosRequestConfig) { - return OAuthApiFp(this.configuration).startOAuth(requestParameters.oAuthConfigDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OAuthApi - */ - public unlinkOAuthAccount(options?: RawAxiosRequestConfig) { - return OAuthApiFp(this.configuration).unlinkOAuthAccount(options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * PartnerApi - axios parameter creator - * @export - */ -export const PartnerApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createPartner: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('createPartner', 'id', id) - const localVarPath = `/partner/{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: 'POST', ...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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {GetPartnersDirectionEnum} direction - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getPartners: async (direction: GetPartnersDirectionEnum, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'direction' is not null or undefined - assertParamExists('getPartners', 'direction', direction) - const localVarPath = `/partner`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (direction !== undefined) { - localVarQueryParameter['direction'] = direction; - } - - - - 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} - */ - removePartner: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('removePartner', 'id', id) - const localVarPath = `/partner/{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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} id - * @param {UpdatePartnerDto} updatePartnerDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updatePartner: async (id: string, updatePartnerDto: UpdatePartnerDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updatePartner', 'id', id) - // verify required parameter 'updatePartnerDto' is not null or undefined - assertParamExists('updatePartner', 'updatePartnerDto', updatePartnerDto) - const localVarPath = `/partner/{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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(updatePartnerDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * PartnerApi - functional programming interface - * @export - */ -export const PartnerApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = PartnerApiAxiosParamCreator(configuration) - return { - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createPartner(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createPartner(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PartnerApi.createPartner']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {GetPartnersDirectionEnum} direction - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getPartners(direction: GetPartnersDirectionEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getPartners(direction, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PartnerApi.getPartners']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async removePartner(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.removePartner(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PartnerApi.removePartner']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {UpdatePartnerDto} updatePartnerDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updatePartner(id: string, updatePartnerDto: UpdatePartnerDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updatePartner(id, updatePartnerDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PartnerApi.updatePartner']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * PartnerApi - factory interface - * @export - */ -export const PartnerApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = PartnerApiFp(configuration) - return { - /** - * - * @param {PartnerApiCreatePartnerRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createPartner(requestParameters: PartnerApiCreatePartnerRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createPartner(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PartnerApiGetPartnersRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getPartners(requestParameters: PartnerApiGetPartnersRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getPartners(requestParameters.direction, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PartnerApiRemovePartnerRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removePartner(requestParameters: PartnerApiRemovePartnerRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.removePartner(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PartnerApiUpdatePartnerRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updatePartner(requestParameters: PartnerApiUpdatePartnerRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updatePartner(requestParameters.id, requestParameters.updatePartnerDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for createPartner operation in PartnerApi. - * @export - * @interface PartnerApiCreatePartnerRequest - */ -export interface PartnerApiCreatePartnerRequest { - /** - * - * @type {string} - * @memberof PartnerApiCreatePartner - */ - readonly id: string -} - -/** - * Request parameters for getPartners operation in PartnerApi. - * @export - * @interface PartnerApiGetPartnersRequest - */ -export interface PartnerApiGetPartnersRequest { - /** - * - * @type {'shared-by' | 'shared-with'} - * @memberof PartnerApiGetPartners - */ - readonly direction: GetPartnersDirectionEnum -} - -/** - * Request parameters for removePartner operation in PartnerApi. - * @export - * @interface PartnerApiRemovePartnerRequest - */ -export interface PartnerApiRemovePartnerRequest { - /** - * - * @type {string} - * @memberof PartnerApiRemovePartner - */ - readonly id: string -} - -/** - * Request parameters for updatePartner operation in PartnerApi. - * @export - * @interface PartnerApiUpdatePartnerRequest - */ -export interface PartnerApiUpdatePartnerRequest { - /** - * - * @type {string} - * @memberof PartnerApiUpdatePartner - */ - readonly id: string - - /** - * - * @type {UpdatePartnerDto} - * @memberof PartnerApiUpdatePartner - */ - readonly updatePartnerDto: UpdatePartnerDto -} - -/** - * PartnerApi - object-oriented interface - * @export - * @class PartnerApi - * @extends {BaseAPI} - */ -export class PartnerApi extends BaseAPI { - /** - * - * @param {PartnerApiCreatePartnerRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PartnerApi - */ - public createPartner(requestParameters: PartnerApiCreatePartnerRequest, options?: RawAxiosRequestConfig) { - return PartnerApiFp(this.configuration).createPartner(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PartnerApiGetPartnersRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PartnerApi - */ - public getPartners(requestParameters: PartnerApiGetPartnersRequest, options?: RawAxiosRequestConfig) { - return PartnerApiFp(this.configuration).getPartners(requestParameters.direction, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PartnerApiRemovePartnerRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PartnerApi - */ - public removePartner(requestParameters: PartnerApiRemovePartnerRequest, options?: RawAxiosRequestConfig) { - return PartnerApiFp(this.configuration).removePartner(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PartnerApiUpdatePartnerRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PartnerApi - */ - public updatePartner(requestParameters: PartnerApiUpdatePartnerRequest, options?: RawAxiosRequestConfig) { - return PartnerApiFp(this.configuration).updatePartner(requestParameters.id, requestParameters.updatePartnerDto, options).then((request) => request(this.axios, this.basePath)); - } -} - -/** - * @export - */ -export const GetPartnersDirectionEnum = { - By: 'shared-by', - With: 'shared-with' -} as const; -export type GetPartnersDirectionEnum = typeof GetPartnersDirectionEnum[keyof typeof GetPartnersDirectionEnum]; - - -/** - * PersonApi - axios parameter creator - * @export - */ -export const PersonApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createPerson: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/person`; - // 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {boolean} [withHidden] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllPeople: async (withHidden?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/person`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (withHidden !== undefined) { - localVarQueryParameter['withHidden'] = withHidden; - } - - - - 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} - */ - getPerson: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getPerson', 'id', id) - const localVarPath = `/person/{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; - - // 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) - - - - 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} - */ - getPersonAssets: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getPersonAssets', 'id', id) - const localVarPath = `/person/{id}/assets` - .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; - - // 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) - - - - 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} - */ - getPersonStatistics: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getPersonStatistics', 'id', id) - const localVarPath = `/person/{id}/statistics` - .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; - - // 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) - - - - 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} - */ - getPersonThumbnail: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getPersonThumbnail', 'id', id) - const localVarPath = `/person/{id}/thumbnail` - .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; - - // 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) - - - - 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 {MergePersonDto} mergePersonDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - mergePerson: async (id: string, mergePersonDto: MergePersonDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('mergePerson', 'id', id) - // verify required parameter 'mergePersonDto' is not null or undefined - assertParamExists('mergePerson', 'mergePersonDto', mergePersonDto) - const localVarPath = `/person/{id}/merge` - .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: 'POST', ...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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(mergePersonDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {AssetFaceUpdateDto} assetFaceUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - reassignFaces: async (id: string, assetFaceUpdateDto: AssetFaceUpdateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('reassignFaces', 'id', id) - // verify required parameter 'assetFaceUpdateDto' is not null or undefined - assertParamExists('reassignFaces', 'assetFaceUpdateDto', assetFaceUpdateDto) - const localVarPath = `/person/{id}/reassign` - .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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetFaceUpdateDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {PeopleUpdateDto} peopleUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updatePeople: async (peopleUpdateDto: PeopleUpdateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'peopleUpdateDto' is not null or undefined - assertParamExists('updatePeople', 'peopleUpdateDto', peopleUpdateDto) - const localVarPath = `/person`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(peopleUpdateDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {PersonUpdateDto} personUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updatePerson: async (id: string, personUpdateDto: PersonUpdateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updatePerson', 'id', id) - // verify required parameter 'personUpdateDto' is not null or undefined - assertParamExists('updatePerson', 'personUpdateDto', personUpdateDto) - const localVarPath = `/person/{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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(personUpdateDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * PersonApi - functional programming interface - * @export - */ -export const PersonApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = PersonApiAxiosParamCreator(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createPerson(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createPerson(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.createPerson']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {boolean} [withHidden] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAllPeople(withHidden?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllPeople(withHidden, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.getAllPeople']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getPerson(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getPerson(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.getPerson']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getPersonAssets(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getPersonAssets(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.getPersonAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getPersonStatistics(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getPersonStatistics(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.getPersonStatistics']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getPersonThumbnail(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getPersonThumbnail(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.getPersonThumbnail']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {MergePersonDto} mergePersonDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async mergePerson(id: string, mergePersonDto: MergePersonDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.mergePerson(id, mergePersonDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.mergePerson']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {AssetFaceUpdateDto} assetFaceUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async reassignFaces(id: string, assetFaceUpdateDto: AssetFaceUpdateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.reassignFaces(id, assetFaceUpdateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.reassignFaces']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {PeopleUpdateDto} peopleUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updatePeople(peopleUpdateDto: PeopleUpdateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updatePeople(peopleUpdateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.updatePeople']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {PersonUpdateDto} personUpdateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updatePerson(id: string, personUpdateDto: PersonUpdateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updatePerson(id, personUpdateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['PersonApi.updatePerson']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * PersonApi - factory interface - * @export - */ -export const PersonApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = PersonApiFp(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createPerson(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createPerson(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiGetAllPeopleRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllPeople(requestParameters: PersonApiGetAllPeopleRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getAllPeople(requestParameters.withHidden, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiGetPersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getPerson(requestParameters: PersonApiGetPersonRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getPerson(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiGetPersonAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getPersonAssets(requestParameters: PersonApiGetPersonAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getPersonAssets(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiGetPersonStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getPersonStatistics(requestParameters: PersonApiGetPersonStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getPersonStatistics(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiGetPersonThumbnailRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getPersonThumbnail(requestParameters: PersonApiGetPersonThumbnailRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getPersonThumbnail(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiMergePersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - mergePerson(requestParameters: PersonApiMergePersonRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.mergePerson(requestParameters.id, requestParameters.mergePersonDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiReassignFacesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - reassignFaces(requestParameters: PersonApiReassignFacesRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.reassignFaces(requestParameters.id, requestParameters.assetFaceUpdateDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiUpdatePeopleRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updatePeople(requestParameters: PersonApiUpdatePeopleRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.updatePeople(requestParameters.peopleUpdateDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {PersonApiUpdatePersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updatePerson(requestParameters: PersonApiUpdatePersonRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updatePerson(requestParameters.id, requestParameters.personUpdateDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for getAllPeople operation in PersonApi. - * @export - * @interface PersonApiGetAllPeopleRequest - */ -export interface PersonApiGetAllPeopleRequest { - /** - * - * @type {boolean} - * @memberof PersonApiGetAllPeople - */ - readonly withHidden?: boolean -} - -/** - * Request parameters for getPerson operation in PersonApi. - * @export - * @interface PersonApiGetPersonRequest - */ -export interface PersonApiGetPersonRequest { - /** - * - * @type {string} - * @memberof PersonApiGetPerson - */ - readonly id: string -} - -/** - * Request parameters for getPersonAssets operation in PersonApi. - * @export - * @interface PersonApiGetPersonAssetsRequest - */ -export interface PersonApiGetPersonAssetsRequest { - /** - * - * @type {string} - * @memberof PersonApiGetPersonAssets - */ - readonly id: string -} - -/** - * Request parameters for getPersonStatistics operation in PersonApi. - * @export - * @interface PersonApiGetPersonStatisticsRequest - */ -export interface PersonApiGetPersonStatisticsRequest { - /** - * - * @type {string} - * @memberof PersonApiGetPersonStatistics - */ - readonly id: string -} - -/** - * Request parameters for getPersonThumbnail operation in PersonApi. - * @export - * @interface PersonApiGetPersonThumbnailRequest - */ -export interface PersonApiGetPersonThumbnailRequest { - /** - * - * @type {string} - * @memberof PersonApiGetPersonThumbnail - */ - readonly id: string -} - -/** - * Request parameters for mergePerson operation in PersonApi. - * @export - * @interface PersonApiMergePersonRequest - */ -export interface PersonApiMergePersonRequest { - /** - * - * @type {string} - * @memberof PersonApiMergePerson - */ - readonly id: string - - /** - * - * @type {MergePersonDto} - * @memberof PersonApiMergePerson - */ - readonly mergePersonDto: MergePersonDto -} - -/** - * Request parameters for reassignFaces operation in PersonApi. - * @export - * @interface PersonApiReassignFacesRequest - */ -export interface PersonApiReassignFacesRequest { - /** - * - * @type {string} - * @memberof PersonApiReassignFaces - */ - readonly id: string - - /** - * - * @type {AssetFaceUpdateDto} - * @memberof PersonApiReassignFaces - */ - readonly assetFaceUpdateDto: AssetFaceUpdateDto -} - -/** - * Request parameters for updatePeople operation in PersonApi. - * @export - * @interface PersonApiUpdatePeopleRequest - */ -export interface PersonApiUpdatePeopleRequest { - /** - * - * @type {PeopleUpdateDto} - * @memberof PersonApiUpdatePeople - */ - readonly peopleUpdateDto: PeopleUpdateDto -} - -/** - * Request parameters for updatePerson operation in PersonApi. - * @export - * @interface PersonApiUpdatePersonRequest - */ -export interface PersonApiUpdatePersonRequest { - /** - * - * @type {string} - * @memberof PersonApiUpdatePerson - */ - readonly id: string - - /** - * - * @type {PersonUpdateDto} - * @memberof PersonApiUpdatePerson - */ - readonly personUpdateDto: PersonUpdateDto -} - -/** - * PersonApi - object-oriented interface - * @export - * @class PersonApi - * @extends {BaseAPI} - */ -export class PersonApi extends BaseAPI { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public createPerson(options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).createPerson(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiGetAllPeopleRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public getAllPeople(requestParameters: PersonApiGetAllPeopleRequest = {}, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).getAllPeople(requestParameters.withHidden, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiGetPersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public getPerson(requestParameters: PersonApiGetPersonRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).getPerson(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiGetPersonAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public getPersonAssets(requestParameters: PersonApiGetPersonAssetsRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).getPersonAssets(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiGetPersonStatisticsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public getPersonStatistics(requestParameters: PersonApiGetPersonStatisticsRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).getPersonStatistics(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiGetPersonThumbnailRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public getPersonThumbnail(requestParameters: PersonApiGetPersonThumbnailRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).getPersonThumbnail(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiMergePersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public mergePerson(requestParameters: PersonApiMergePersonRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).mergePerson(requestParameters.id, requestParameters.mergePersonDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiReassignFacesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public reassignFaces(requestParameters: PersonApiReassignFacesRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).reassignFaces(requestParameters.id, requestParameters.assetFaceUpdateDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiUpdatePeopleRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public updatePeople(requestParameters: PersonApiUpdatePeopleRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).updatePeople(requestParameters.peopleUpdateDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {PersonApiUpdatePersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof PersonApi - */ - public updatePerson(requestParameters: PersonApiUpdatePersonRequest, options?: RawAxiosRequestConfig) { - return PersonApiFp(this.configuration).updatePerson(requestParameters.id, requestParameters.personUpdateDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * SearchApi - axios parameter creator - * @export - */ -export const SearchApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getExploreData: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {SearchSuggestionType} type - * @param {string} [country] - * @param {string} [make] - * @param {string} [model] - * @param {string} [state] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getSearchSuggestions: async (type: SearchSuggestionType, country?: string, make?: string, model?: string, state?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'type' is not null or undefined - assertParamExists('getSearchSuggestions', 'type', type) - const localVarPath = `/search/suggestions`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (country !== undefined) { - localVarQueryParameter['country'] = country; - } - - if (make !== undefined) { - localVarQueryParameter['make'] = make; - } - - if (model !== undefined) { - localVarQueryParameter['model'] = model; - } - - if (state !== undefined) { - localVarQueryParameter['state'] = state; - } - - if (type !== undefined) { - localVarQueryParameter['type'] = type; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {boolean} [clip] - * @param {boolean} [motion] - * @param {number} [page] - * @param {string} [q] - * @param {string} [query] - * @param {boolean} [recent] - * @param {number} [size] - * @param {boolean} [smart] - * @param {SearchTypeEnum} [type] - * @param {boolean} [withArchived] - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - search: async (clip?: boolean, motion?: boolean, page?: number, q?: string, query?: string, recent?: boolean, size?: number, smart?: boolean, type?: SearchTypeEnum, withArchived?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - if (clip !== undefined) { - localVarQueryParameter['clip'] = clip; - } - - if (motion !== undefined) { - localVarQueryParameter['motion'] = motion; - } - - if (page !== undefined) { - localVarQueryParameter['page'] = page; - } - - if (q !== undefined) { - localVarQueryParameter['q'] = q; - } - - if (query !== undefined) { - localVarQueryParameter['query'] = query; - } - - if (recent !== undefined) { - localVarQueryParameter['recent'] = recent; - } - - if (size !== undefined) { - localVarQueryParameter['size'] = size; - } - - if (smart !== undefined) { - localVarQueryParameter['smart'] = smart; - } - - if (type !== undefined) { - localVarQueryParameter['type'] = type; - } - - if (withArchived !== undefined) { - localVarQueryParameter['withArchived'] = withArchived; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {MetadataSearchDto} metadataSearchDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchMetadata: async (metadataSearchDto: MetadataSearchDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'metadataSearchDto' is not null or undefined - assertParamExists('searchMetadata', 'metadataSearchDto', metadataSearchDto) - const localVarPath = `/search/metadata`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(metadataSearchDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} name - * @param {boolean} [withHidden] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchPerson: async (name: string, withHidden?: boolean, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'name' is not null or undefined - assertParamExists('searchPerson', 'name', name) - const localVarPath = `/search/person`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (name !== undefined) { - localVarQueryParameter['name'] = name; - } - - if (withHidden !== undefined) { - localVarQueryParameter['withHidden'] = withHidden; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} name - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchPlaces: async (name: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'name' is not null or undefined - assertParamExists('searchPlaces', 'name', name) - const localVarPath = `/search/places`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (name !== undefined) { - localVarQueryParameter['name'] = name; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {SmartSearchDto} smartSearchDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchSmart: async (smartSearchDto: SmartSearchDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'smartSearchDto' is not null or undefined - assertParamExists('searchSmart', 'smartSearchDto', smartSearchDto) - const localVarPath = `/search/smart`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(smartSearchDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * SearchApi - functional programming interface - * @export - */ -export const SearchApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = SearchApiAxiosParamCreator(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getExploreData(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getExploreData(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.getExploreData']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {SearchSuggestionType} type - * @param {string} [country] - * @param {string} [make] - * @param {string} [model] - * @param {string} [state] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getSearchSuggestions(type: SearchSuggestionType, country?: string, make?: string, model?: string, state?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchSuggestions(type, country, make, model, state, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.getSearchSuggestions']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {boolean} [clip] - * @param {boolean} [motion] - * @param {number} [page] - * @param {string} [q] - * @param {string} [query] - * @param {boolean} [recent] - * @param {number} [size] - * @param {boolean} [smart] - * @param {SearchTypeEnum} [type] - * @param {boolean} [withArchived] - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async search(clip?: boolean, motion?: boolean, page?: number, q?: string, query?: string, recent?: boolean, size?: number, smart?: boolean, type?: SearchTypeEnum, withArchived?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.search(clip, motion, page, q, query, recent, size, smart, type, withArchived, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.search']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {MetadataSearchDto} metadataSearchDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async searchMetadata(metadataSearchDto: MetadataSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.searchMetadata(metadataSearchDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.searchMetadata']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} name - * @param {boolean} [withHidden] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async searchPerson(name: string, withHidden?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.searchPerson(name, withHidden, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.searchPerson']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} name - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async searchPlaces(name: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.searchPlaces(name, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.searchPlaces']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {SmartSearchDto} smartSearchDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async searchSmart(smartSearchDto: SmartSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.searchSmart(smartSearchDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SearchApi.searchSmart']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * SearchApi - factory interface - * @export - */ -export const SearchApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = SearchApiFp(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getExploreData(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getExploreData(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SearchApiGetSearchSuggestionsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getSearchSuggestions(requestParameters: SearchApiGetSearchSuggestionsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getSearchSuggestions(requestParameters.type, requestParameters.country, requestParameters.make, requestParameters.model, requestParameters.state, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SearchApiSearchRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - search(requestParameters: SearchApiSearchRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.search(requestParameters.clip, requestParameters.motion, requestParameters.page, requestParameters.q, requestParameters.query, requestParameters.recent, requestParameters.size, requestParameters.smart, requestParameters.type, requestParameters.withArchived, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SearchApiSearchMetadataRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchMetadata(requestParameters: SearchApiSearchMetadataRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.searchMetadata(requestParameters.metadataSearchDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SearchApiSearchPersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchPerson(requestParameters: SearchApiSearchPersonRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.searchPerson(requestParameters.name, requestParameters.withHidden, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SearchApiSearchPlacesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchPlaces(requestParameters: SearchApiSearchPlacesRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.searchPlaces(requestParameters.name, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SearchApiSearchSmartRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - searchSmart(requestParameters: SearchApiSearchSmartRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.searchSmart(requestParameters.smartSearchDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for getSearchSuggestions operation in SearchApi. - * @export - * @interface SearchApiGetSearchSuggestionsRequest - */ -export interface SearchApiGetSearchSuggestionsRequest { - /** - * - * @type {SearchSuggestionType} - * @memberof SearchApiGetSearchSuggestions - */ - readonly type: SearchSuggestionType - - /** - * - * @type {string} - * @memberof SearchApiGetSearchSuggestions - */ - readonly country?: string - - /** - * - * @type {string} - * @memberof SearchApiGetSearchSuggestions - */ - readonly make?: string - - /** - * - * @type {string} - * @memberof SearchApiGetSearchSuggestions - */ - readonly model?: string - - /** - * - * @type {string} - * @memberof SearchApiGetSearchSuggestions - */ - readonly state?: string -} - -/** - * Request parameters for search operation in SearchApi. - * @export - * @interface SearchApiSearchRequest - */ -export interface SearchApiSearchRequest { - /** - * - * @type {boolean} - * @memberof SearchApiSearch - */ - readonly clip?: boolean - - /** - * - * @type {boolean} - * @memberof SearchApiSearch - */ - readonly motion?: boolean - - /** - * - * @type {number} - * @memberof SearchApiSearch - */ - readonly page?: number - - /** - * - * @type {string} - * @memberof SearchApiSearch - */ - readonly q?: string - - /** - * - * @type {string} - * @memberof SearchApiSearch - */ - readonly query?: string - - /** - * - * @type {boolean} - * @memberof SearchApiSearch - */ - readonly recent?: boolean - - /** - * - * @type {number} - * @memberof SearchApiSearch - */ - readonly size?: number - - /** - * - * @type {boolean} - * @memberof SearchApiSearch - */ - readonly smart?: boolean - - /** - * - * @type {'IMAGE' | 'VIDEO' | 'AUDIO' | 'OTHER'} - * @memberof SearchApiSearch - */ - readonly type?: SearchTypeEnum - - /** - * - * @type {boolean} - * @memberof SearchApiSearch - */ - readonly withArchived?: boolean -} - -/** - * Request parameters for searchMetadata operation in SearchApi. - * @export - * @interface SearchApiSearchMetadataRequest - */ -export interface SearchApiSearchMetadataRequest { - /** - * - * @type {MetadataSearchDto} - * @memberof SearchApiSearchMetadata - */ - readonly metadataSearchDto: MetadataSearchDto -} - -/** - * Request parameters for searchPerson operation in SearchApi. - * @export - * @interface SearchApiSearchPersonRequest - */ -export interface SearchApiSearchPersonRequest { - /** - * - * @type {string} - * @memberof SearchApiSearchPerson - */ - readonly name: string - - /** - * - * @type {boolean} - * @memberof SearchApiSearchPerson - */ - readonly withHidden?: boolean -} - -/** - * Request parameters for searchPlaces operation in SearchApi. - * @export - * @interface SearchApiSearchPlacesRequest - */ -export interface SearchApiSearchPlacesRequest { - /** - * - * @type {string} - * @memberof SearchApiSearchPlaces - */ - readonly name: string -} - -/** - * Request parameters for searchSmart operation in SearchApi. - * @export - * @interface SearchApiSearchSmartRequest - */ -export interface SearchApiSearchSmartRequest { - /** - * - * @type {SmartSearchDto} - * @memberof SearchApiSearchSmart - */ - readonly smartSearchDto: SmartSearchDto -} - -/** - * SearchApi - object-oriented interface - * @export - * @class SearchApi - * @extends {BaseAPI} - */ -export class SearchApi extends BaseAPI { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SearchApi - */ - public getExploreData(options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).getExploreData(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SearchApiGetSearchSuggestionsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SearchApi - */ - public getSearchSuggestions(requestParameters: SearchApiGetSearchSuggestionsRequest, options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).getSearchSuggestions(requestParameters.type, requestParameters.country, requestParameters.make, requestParameters.model, requestParameters.state, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SearchApiSearchRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof SearchApi - */ - public search(requestParameters: SearchApiSearchRequest = {}, options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).search(requestParameters.clip, requestParameters.motion, requestParameters.page, requestParameters.q, requestParameters.query, requestParameters.recent, requestParameters.size, requestParameters.smart, requestParameters.type, requestParameters.withArchived, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SearchApiSearchMetadataRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SearchApi - */ - public searchMetadata(requestParameters: SearchApiSearchMetadataRequest, options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).searchMetadata(requestParameters.metadataSearchDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SearchApiSearchPersonRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SearchApi - */ - public searchPerson(requestParameters: SearchApiSearchPersonRequest, options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).searchPerson(requestParameters.name, requestParameters.withHidden, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SearchApiSearchPlacesRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SearchApi - */ - public searchPlaces(requestParameters: SearchApiSearchPlacesRequest, options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).searchPlaces(requestParameters.name, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SearchApiSearchSmartRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SearchApi - */ - public searchSmart(requestParameters: SearchApiSearchSmartRequest, options?: RawAxiosRequestConfig) { - return SearchApiFp(this.configuration).searchSmart(requestParameters.smartSearchDto, options).then((request) => request(this.axios, this.basePath)); - } -} - -/** - * @export - */ -export const SearchTypeEnum = { - Image: 'IMAGE', - Video: 'VIDEO', - Audio: 'AUDIO', - Other: 'OTHER' -} as const; -export type SearchTypeEnum = typeof SearchTypeEnum[keyof typeof SearchTypeEnum]; - - -/** - * ServerInfoApi - axios parameter creator - * @export - */ -export const ServerInfoApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerConfig: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/server-info/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; - - - - 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} - */ - getServerFeatures: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/server-info/features`; - // 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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerInfo: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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} - */ - getServerStatistics: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/server-info/statistics`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} - */ - getServerVersion: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - - - 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} - */ - getSupportedMediaTypes: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/server-info/media-types`; - // 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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTheme: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/server-info/theme`; - // 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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - pingServer: async (options: RawAxiosRequestConfig = {}): Promise => { - 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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - setAdminOnboarding: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/server-info/admin-onboarding`; - // 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * ServerInfoApi - functional programming interface - * @export - */ -export const ServerInfoApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = ServerInfoApiAxiosParamCreator(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getServerConfig(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getServerConfig(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getServerConfig']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getServerFeatures(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getServerFeatures(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getServerFeatures']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getServerInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getServerInfo(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getServerInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getServerStatistics(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getServerStatistics(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getServerStatistics']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getServerVersion(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getServerVersion(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getServerVersion']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getSupportedMediaTypes(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getSupportedMediaTypes(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getSupportedMediaTypes']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getTheme(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getTheme(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.getTheme']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async pingServer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.pingServer(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.pingServer']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async setAdminOnboarding(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.setAdminOnboarding(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['ServerInfoApi.setAdminOnboarding']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * ServerInfoApi - factory interface - * @export - */ -export const ServerInfoApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = ServerInfoApiFp(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerConfig(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getServerConfig(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerFeatures(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getServerFeatures(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerInfo(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getServerInfo(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerStatistics(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getServerStatistics(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getServerVersion(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getServerVersion(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getSupportedMediaTypes(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getSupportedMediaTypes(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTheme(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getTheme(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - pingServer(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.pingServer(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - setAdminOnboarding(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.setAdminOnboarding(options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * ServerInfoApi - object-oriented interface - * @export - * @class ServerInfoApi - * @extends {BaseAPI} - */ -export class ServerInfoApi extends BaseAPI { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getServerConfig(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getServerConfig(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getServerFeatures(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getServerFeatures(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getServerInfo(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getServerInfo(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getServerStatistics(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getServerStatistics(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getServerVersion(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getServerVersion(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getSupportedMediaTypes(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getSupportedMediaTypes(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public getTheme(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).getTheme(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public pingServer(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).pingServer(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ServerInfoApi - */ - public setAdminOnboarding(options?: RawAxiosRequestConfig) { - return ServerInfoApiFp(this.configuration).setAdminOnboarding(options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * SharedLinkApi - axios parameter creator - * @export - */ -export const SharedLinkApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {string} id - * @param {AssetIdsDto} assetIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - addSharedLinkAssets: async (id: string, assetIdsDto: AssetIdsDto, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('addSharedLinkAssets', 'id', id) - // verify required parameter 'assetIdsDto' is not null or undefined - assertParamExists('addSharedLinkAssets', 'assetIdsDto', assetIdsDto) - const localVarPath = `/shared-link/{id}/assets` - .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; - - // 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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {SharedLinkCreateDto} sharedLinkCreateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createSharedLink: async (sharedLinkCreateDto: SharedLinkCreateDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'sharedLinkCreateDto' is not null or undefined - assertParamExists('createSharedLink', 'sharedLinkCreateDto', sharedLinkCreateDto) - const localVarPath = `/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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(sharedLinkCreateDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllSharedLinks: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/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: 'GET', ...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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} [key] - * @param {string} [password] - * @param {string} [token] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMySharedLink: async (key?: string, password?: string, token?: string, options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/shared-link/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; - - // 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) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - if (password !== undefined) { - localVarQueryParameter['password'] = password; - } - - if (token !== undefined) { - localVarQueryParameter['token'] = token; - } - - - - 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: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getSharedLinkById', 'id', id) - const localVarPath = `/shared-link/{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; - - // 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) - - - - 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: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('removeSharedLink', 'id', id) - const localVarPath = `/shared-link/{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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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} id - * @param {AssetIdsDto} assetIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeSharedLinkAssets: async (id: string, assetIdsDto: AssetIdsDto, key?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('removeSharedLinkAssets', 'id', id) - // verify required parameter 'assetIdsDto' is not null or undefined - assertParamExists('removeSharedLinkAssets', 'assetIdsDto', assetIdsDto) - const localVarPath = `/shared-link/{id}/assets` - .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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (key !== undefined) { - localVarQueryParameter['key'] = key; - } - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {SharedLinkEditDto} sharedLinkEditDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateSharedLink: async (id: string, sharedLinkEditDto: SharedLinkEditDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updateSharedLink', 'id', id) - // verify required parameter 'sharedLinkEditDto' is not null or undefined - assertParamExists('updateSharedLink', 'sharedLinkEditDto', sharedLinkEditDto) - const localVarPath = `/shared-link/{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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(sharedLinkEditDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * SharedLinkApi - functional programming interface - * @export - */ -export const SharedLinkApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = SharedLinkApiAxiosParamCreator(configuration) - return { - /** - * - * @param {string} id - * @param {AssetIdsDto} assetIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async addSharedLinkAssets(id: string, assetIdsDto: AssetIdsDto, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.addSharedLinkAssets(id, assetIdsDto, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.addSharedLinkAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {SharedLinkCreateDto} sharedLinkCreateDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createSharedLink(sharedLinkCreateDto: SharedLinkCreateDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createSharedLink(sharedLinkCreateDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.createSharedLink']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAllSharedLinks(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllSharedLinks(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.getAllSharedLinks']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} [key] - * @param {string} [password] - * @param {string} [token] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getMySharedLink(key?: string, password?: string, token?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getMySharedLink(key, password, token, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.getMySharedLink']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getSharedLinkById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getSharedLinkById(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.getSharedLinkById']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async removeSharedLink(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.removeSharedLink(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.removeSharedLink']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {AssetIdsDto} assetIdsDto - * @param {string} [key] - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async removeSharedLinkAssets(id: string, assetIdsDto: AssetIdsDto, key?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.removeSharedLinkAssets(id, assetIdsDto, key, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.removeSharedLinkAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {SharedLinkEditDto} sharedLinkEditDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateSharedLink(id: string, sharedLinkEditDto: SharedLinkEditDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateSharedLink(id, sharedLinkEditDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SharedLinkApi.updateSharedLink']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * SharedLinkApi - factory interface - * @export - */ -export const SharedLinkApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = SharedLinkApiFp(configuration) - return { - /** - * - * @param {SharedLinkApiAddSharedLinkAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - addSharedLinkAssets(requestParameters: SharedLinkApiAddSharedLinkAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.addSharedLinkAssets(requestParameters.id, requestParameters.assetIdsDto, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SharedLinkApiCreateSharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createSharedLink(requestParameters: SharedLinkApiCreateSharedLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createSharedLink(requestParameters.sharedLinkCreateDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllSharedLinks(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAllSharedLinks(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SharedLinkApiGetMySharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMySharedLink(requestParameters: SharedLinkApiGetMySharedLinkRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getMySharedLink(requestParameters.key, requestParameters.password, requestParameters.token, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SharedLinkApiGetSharedLinkByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getSharedLinkById(requestParameters: SharedLinkApiGetSharedLinkByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getSharedLinkById(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SharedLinkApiRemoveSharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeSharedLink(requestParameters: SharedLinkApiRemoveSharedLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.removeSharedLink(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SharedLinkApiRemoveSharedLinkAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - removeSharedLinkAssets(requestParameters: SharedLinkApiRemoveSharedLinkAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.removeSharedLinkAssets(requestParameters.id, requestParameters.assetIdsDto, requestParameters.key, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SharedLinkApiUpdateSharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateSharedLink(requestParameters: SharedLinkApiUpdateSharedLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateSharedLink(requestParameters.id, requestParameters.sharedLinkEditDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for addSharedLinkAssets operation in SharedLinkApi. - * @export - * @interface SharedLinkApiAddSharedLinkAssetsRequest - */ -export interface SharedLinkApiAddSharedLinkAssetsRequest { - /** - * - * @type {string} - * @memberof SharedLinkApiAddSharedLinkAssets - */ - readonly id: string - - /** - * - * @type {AssetIdsDto} - * @memberof SharedLinkApiAddSharedLinkAssets - */ - readonly assetIdsDto: AssetIdsDto - - /** - * - * @type {string} - * @memberof SharedLinkApiAddSharedLinkAssets - */ - readonly key?: string -} - -/** - * Request parameters for createSharedLink operation in SharedLinkApi. - * @export - * @interface SharedLinkApiCreateSharedLinkRequest - */ -export interface SharedLinkApiCreateSharedLinkRequest { - /** - * - * @type {SharedLinkCreateDto} - * @memberof SharedLinkApiCreateSharedLink - */ - readonly sharedLinkCreateDto: SharedLinkCreateDto -} - -/** - * Request parameters for getMySharedLink operation in SharedLinkApi. - * @export - * @interface SharedLinkApiGetMySharedLinkRequest - */ -export interface SharedLinkApiGetMySharedLinkRequest { - /** - * - * @type {string} - * @memberof SharedLinkApiGetMySharedLink - */ - readonly key?: string - - /** - * - * @type {string} - * @memberof SharedLinkApiGetMySharedLink - */ - readonly password?: string - - /** - * - * @type {string} - * @memberof SharedLinkApiGetMySharedLink - */ - readonly token?: string -} - -/** - * Request parameters for getSharedLinkById operation in SharedLinkApi. - * @export - * @interface SharedLinkApiGetSharedLinkByIdRequest - */ -export interface SharedLinkApiGetSharedLinkByIdRequest { - /** - * - * @type {string} - * @memberof SharedLinkApiGetSharedLinkById - */ - readonly id: string -} - -/** - * Request parameters for removeSharedLink operation in SharedLinkApi. - * @export - * @interface SharedLinkApiRemoveSharedLinkRequest - */ -export interface SharedLinkApiRemoveSharedLinkRequest { - /** - * - * @type {string} - * @memberof SharedLinkApiRemoveSharedLink - */ - readonly id: string -} - -/** - * Request parameters for removeSharedLinkAssets operation in SharedLinkApi. - * @export - * @interface SharedLinkApiRemoveSharedLinkAssetsRequest - */ -export interface SharedLinkApiRemoveSharedLinkAssetsRequest { - /** - * - * @type {string} - * @memberof SharedLinkApiRemoveSharedLinkAssets - */ - readonly id: string - - /** - * - * @type {AssetIdsDto} - * @memberof SharedLinkApiRemoveSharedLinkAssets - */ - readonly assetIdsDto: AssetIdsDto - - /** - * - * @type {string} - * @memberof SharedLinkApiRemoveSharedLinkAssets - */ - readonly key?: string -} - -/** - * Request parameters for updateSharedLink operation in SharedLinkApi. - * @export - * @interface SharedLinkApiUpdateSharedLinkRequest - */ -export interface SharedLinkApiUpdateSharedLinkRequest { - /** - * - * @type {string} - * @memberof SharedLinkApiUpdateSharedLink - */ - readonly id: string - - /** - * - * @type {SharedLinkEditDto} - * @memberof SharedLinkApiUpdateSharedLink - */ - readonly sharedLinkEditDto: SharedLinkEditDto -} - -/** - * SharedLinkApi - object-oriented interface - * @export - * @class SharedLinkApi - * @extends {BaseAPI} - */ -export class SharedLinkApi extends BaseAPI { - /** - * - * @param {SharedLinkApiAddSharedLinkAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public addSharedLinkAssets(requestParameters: SharedLinkApiAddSharedLinkAssetsRequest, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).addSharedLinkAssets(requestParameters.id, requestParameters.assetIdsDto, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SharedLinkApiCreateSharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public createSharedLink(requestParameters: SharedLinkApiCreateSharedLinkRequest, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).createSharedLink(requestParameters.sharedLinkCreateDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public getAllSharedLinks(options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).getAllSharedLinks(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SharedLinkApiGetMySharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public getMySharedLink(requestParameters: SharedLinkApiGetMySharedLinkRequest = {}, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).getMySharedLink(requestParameters.key, requestParameters.password, requestParameters.token, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SharedLinkApiGetSharedLinkByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public getSharedLinkById(requestParameters: SharedLinkApiGetSharedLinkByIdRequest, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).getSharedLinkById(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SharedLinkApiRemoveSharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public removeSharedLink(requestParameters: SharedLinkApiRemoveSharedLinkRequest, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).removeSharedLink(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SharedLinkApiRemoveSharedLinkAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public removeSharedLinkAssets(requestParameters: SharedLinkApiRemoveSharedLinkAssetsRequest, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).removeSharedLinkAssets(requestParameters.id, requestParameters.assetIdsDto, requestParameters.key, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SharedLinkApiUpdateSharedLinkRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SharedLinkApi - */ - public updateSharedLink(requestParameters: SharedLinkApiUpdateSharedLinkRequest, options?: RawAxiosRequestConfig) { - return SharedLinkApiFp(this.configuration).updateSharedLink(requestParameters.id, requestParameters.sharedLinkEditDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * SystemConfigApi - axios parameter creator - * @export - */ -export const SystemConfigApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getConfig: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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} - */ - getConfigDefaults: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {MapTheme} theme - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMapStyle: async (theme: MapTheme, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'theme' is not null or undefined - assertParamExists('getMapStyle', 'theme', theme) - const localVarPath = `/system-config/map/style.json`; - // 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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // authentication bearer required - // http bearer authentication required - await setBearerAuthToObject(localVarHeaderParameter, configuration) - - if (theme !== undefined) { - localVarQueryParameter['theme'] = theme; - } - - - - 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: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'systemConfigDto' is not null or undefined - assertParamExists('updateConfig', 'systemConfigDto', systemConfigDto) - 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(systemConfigDto, localVarRequestOptions, configuration) - - 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} - */ - async getConfig(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getConfig(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SystemConfigApi.getConfig']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getConfigDefaults(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigDefaults(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SystemConfigApi.getConfigDefaults']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {MapTheme} theme - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getMapStyle(theme: MapTheme, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getMapStyle(theme, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SystemConfigApi.getMapStyle']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getStorageTemplateOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getStorageTemplateOptions(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SystemConfigApi.getStorageTemplateOptions']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {SystemConfigDto} systemConfigDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateConfig(systemConfigDto: SystemConfigDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateConfig(systemConfigDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['SystemConfigApi.updateConfig']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * 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} - */ - getConfig(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getConfig(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getConfigDefaults(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getConfigDefaults(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SystemConfigApiGetMapStyleRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMapStyle(requestParameters: SystemConfigApiGetMapStyleRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getMapStyle(requestParameters.theme, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getStorageTemplateOptions(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getStorageTemplateOptions(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {SystemConfigApiUpdateConfigRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateConfig(requestParameters: SystemConfigApiUpdateConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateConfig(requestParameters.systemConfigDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for getMapStyle operation in SystemConfigApi. - * @export - * @interface SystemConfigApiGetMapStyleRequest - */ -export interface SystemConfigApiGetMapStyleRequest { - /** - * - * @type {MapTheme} - * @memberof SystemConfigApiGetMapStyle - */ - readonly theme: MapTheme -} - -/** - * Request parameters for updateConfig operation in SystemConfigApi. - * @export - * @interface SystemConfigApiUpdateConfigRequest - */ -export interface SystemConfigApiUpdateConfigRequest { - /** - * - * @type {SystemConfigDto} - * @memberof SystemConfigApiUpdateConfig - */ - readonly systemConfigDto: SystemConfigDto -} - -/** - * 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?: RawAxiosRequestConfig) { - return SystemConfigApiFp(this.configuration).getConfig(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SystemConfigApi - */ - public getConfigDefaults(options?: RawAxiosRequestConfig) { - return SystemConfigApiFp(this.configuration).getConfigDefaults(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SystemConfigApiGetMapStyleRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SystemConfigApi - */ - public getMapStyle(requestParameters: SystemConfigApiGetMapStyleRequest, options?: RawAxiosRequestConfig) { - return SystemConfigApiFp(this.configuration).getMapStyle(requestParameters.theme, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SystemConfigApi - */ - public getStorageTemplateOptions(options?: RawAxiosRequestConfig) { - return SystemConfigApiFp(this.configuration).getStorageTemplateOptions(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {SystemConfigApiUpdateConfigRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof SystemConfigApi - */ - public updateConfig(requestParameters: SystemConfigApiUpdateConfigRequest, options?: RawAxiosRequestConfig) { - return SystemConfigApiFp(this.configuration).updateConfig(requestParameters.systemConfigDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * TagApi - axios parameter creator - * @export - */ -export const TagApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {CreateTagDto} createTagDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTag: async (createTagDto: CreateTagDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'createTagDto' is not null or undefined - assertParamExists('createTag', '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; - - // 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) - - - - 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 {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteTag: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('deleteTag', '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; - - // 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) - - - - 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} - */ - getAllTags: async (options: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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} - */ - getTagAssets: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getTagAssets', 'id', id) - const localVarPath = `/tag/{id}/assets` - .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; - - // 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) - - - - 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} - */ - getTagById: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getTagById', '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; - - // 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) - - - - 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 {AssetIdsDto} assetIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - tagAssets: async (id: string, assetIdsDto: AssetIdsDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('tagAssets', 'id', id) - // verify required parameter 'assetIdsDto' is not null or undefined - assertParamExists('tagAssets', 'assetIdsDto', assetIdsDto) - const localVarPath = `/tag/{id}/assets` - .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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(assetIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {AssetIdsDto} assetIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - untagAssets: async (id: string, assetIdsDto: AssetIdsDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('untagAssets', 'id', id) - // verify required parameter 'assetIdsDto' is not null or undefined - assertParamExists('untagAssets', 'assetIdsDto', assetIdsDto) - const localVarPath = `/tag/{id}/assets` - .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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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(assetIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {string} id - * @param {UpdateTagDto} updateTagDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateTag: async (id: string, updateTagDto: UpdateTagDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('updateTag', 'id', id) - // verify required parameter 'updateTagDto' is not null or undefined - assertParamExists('updateTag', '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; - - // 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) - - - - 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 {CreateTagDto} createTagDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createTag(createTagDto: CreateTagDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createTag(createTagDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.createTag']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteTag(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTag(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.deleteTag']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAllTags(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllTags(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.getAllTags']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getTagAssets(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getTagAssets(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.getTagAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getTagById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getTagById(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.getTagById']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {AssetIdsDto} assetIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async tagAssets(id: string, assetIdsDto: AssetIdsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.tagAssets(id, assetIdsDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.tagAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {AssetIdsDto} assetIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async untagAssets(id: string, assetIdsDto: AssetIdsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.untagAssets(id, assetIdsDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.untagAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {UpdateTagDto} updateTagDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateTag(id: string, updateTagDto: UpdateTagDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateTag(id, updateTagDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TagApi.updateTag']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * TagApi - factory interface - * @export - */ -export const TagApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = TagApiFp(configuration) - return { - /** - * - * @param {TagApiCreateTagRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTag(requestParameters: TagApiCreateTagRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createTag(requestParameters.createTagDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TagApiDeleteTagRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteTag(requestParameters: TagApiDeleteTagRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteTag(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllTags(options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAllTags(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TagApiGetTagAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTagAssets(requestParameters: TagApiGetTagAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getTagAssets(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TagApiGetTagByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getTagById(requestParameters: TagApiGetTagByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getTagById(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TagApiTagAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - tagAssets(requestParameters: TagApiTagAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.tagAssets(requestParameters.id, requestParameters.assetIdsDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TagApiUntagAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - untagAssets(requestParameters: TagApiUntagAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.untagAssets(requestParameters.id, requestParameters.assetIdsDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TagApiUpdateTagRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateTag(requestParameters: TagApiUpdateTagRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateTag(requestParameters.id, requestParameters.updateTagDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for createTag operation in TagApi. - * @export - * @interface TagApiCreateTagRequest - */ -export interface TagApiCreateTagRequest { - /** - * - * @type {CreateTagDto} - * @memberof TagApiCreateTag - */ - readonly createTagDto: CreateTagDto -} - -/** - * Request parameters for deleteTag operation in TagApi. - * @export - * @interface TagApiDeleteTagRequest - */ -export interface TagApiDeleteTagRequest { - /** - * - * @type {string} - * @memberof TagApiDeleteTag - */ - readonly id: string -} - -/** - * Request parameters for getTagAssets operation in TagApi. - * @export - * @interface TagApiGetTagAssetsRequest - */ -export interface TagApiGetTagAssetsRequest { - /** - * - * @type {string} - * @memberof TagApiGetTagAssets - */ - readonly id: string -} - -/** - * Request parameters for getTagById operation in TagApi. - * @export - * @interface TagApiGetTagByIdRequest - */ -export interface TagApiGetTagByIdRequest { - /** - * - * @type {string} - * @memberof TagApiGetTagById - */ - readonly id: string -} - -/** - * Request parameters for tagAssets operation in TagApi. - * @export - * @interface TagApiTagAssetsRequest - */ -export interface TagApiTagAssetsRequest { - /** - * - * @type {string} - * @memberof TagApiTagAssets - */ - readonly id: string - - /** - * - * @type {AssetIdsDto} - * @memberof TagApiTagAssets - */ - readonly assetIdsDto: AssetIdsDto -} - -/** - * Request parameters for untagAssets operation in TagApi. - * @export - * @interface TagApiUntagAssetsRequest - */ -export interface TagApiUntagAssetsRequest { - /** - * - * @type {string} - * @memberof TagApiUntagAssets - */ - readonly id: string - - /** - * - * @type {AssetIdsDto} - * @memberof TagApiUntagAssets - */ - readonly assetIdsDto: AssetIdsDto -} - -/** - * Request parameters for updateTag operation in TagApi. - * @export - * @interface TagApiUpdateTagRequest - */ -export interface TagApiUpdateTagRequest { - /** - * - * @type {string} - * @memberof TagApiUpdateTag - */ - readonly id: string - - /** - * - * @type {UpdateTagDto} - * @memberof TagApiUpdateTag - */ - readonly updateTagDto: UpdateTagDto -} - -/** - * TagApi - object-oriented interface - * @export - * @class TagApi - * @extends {BaseAPI} - */ -export class TagApi extends BaseAPI { - /** - * - * @param {TagApiCreateTagRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public createTag(requestParameters: TagApiCreateTagRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).createTag(requestParameters.createTagDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TagApiDeleteTagRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public deleteTag(requestParameters: TagApiDeleteTagRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).deleteTag(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public getAllTags(options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).getAllTags(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TagApiGetTagAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public getTagAssets(requestParameters: TagApiGetTagAssetsRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).getTagAssets(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TagApiGetTagByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public getTagById(requestParameters: TagApiGetTagByIdRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).getTagById(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TagApiTagAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public tagAssets(requestParameters: TagApiTagAssetsRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).tagAssets(requestParameters.id, requestParameters.assetIdsDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TagApiUntagAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public untagAssets(requestParameters: TagApiUntagAssetsRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).untagAssets(requestParameters.id, requestParameters.assetIdsDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TagApiUpdateTagRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TagApi - */ - public updateTag(requestParameters: TagApiUpdateTagRequest, options?: RawAxiosRequestConfig) { - return TagApiFp(this.configuration).updateTag(requestParameters.id, requestParameters.updateTagDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * TrashApi - axios parameter creator - * @export - */ -export const TrashApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - emptyTrash: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/trash/empty`; - // 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {BulkIdsDto} bulkIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - restoreAssets: async (bulkIdsDto: BulkIdsDto, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'bulkIdsDto' is not null or undefined - assertParamExists('restoreAssets', 'bulkIdsDto', bulkIdsDto) - const localVarPath = `/trash/restore/assets`; - // 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; - - // 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) - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(bulkIdsDto, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - restoreTrash: async (options: RawAxiosRequestConfig = {}): Promise => { - const localVarPath = `/trash/restore`; - // 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; - - // 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) - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * TrashApi - functional programming interface - * @export - */ -export const TrashApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = TrashApiAxiosParamCreator(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async emptyTrash(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.emptyTrash(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TrashApi.emptyTrash']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {BulkIdsDto} bulkIdsDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async restoreAssets(bulkIdsDto: BulkIdsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.restoreAssets(bulkIdsDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TrashApi.restoreAssets']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async restoreTrash(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.restoreTrash(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['TrashApi.restoreTrash']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * TrashApi - factory interface - * @export - */ -export const TrashApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = TrashApiFp(configuration) - return { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - emptyTrash(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.emptyTrash(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {TrashApiRestoreAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - restoreAssets(requestParameters: TrashApiRestoreAssetsRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.restoreAssets(requestParameters.bulkIdsDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - restoreTrash(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.restoreTrash(options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for restoreAssets operation in TrashApi. - * @export - * @interface TrashApiRestoreAssetsRequest - */ -export interface TrashApiRestoreAssetsRequest { - /** - * - * @type {BulkIdsDto} - * @memberof TrashApiRestoreAssets - */ - readonly bulkIdsDto: BulkIdsDto -} - -/** - * TrashApi - object-oriented interface - * @export - * @class TrashApi - * @extends {BaseAPI} - */ -export class TrashApi extends BaseAPI { - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TrashApi - */ - public emptyTrash(options?: RawAxiosRequestConfig) { - return TrashApiFp(this.configuration).emptyTrash(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {TrashApiRestoreAssetsRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TrashApi - */ - public restoreAssets(requestParameters: TrashApiRestoreAssetsRequest, options?: RawAxiosRequestConfig) { - return TrashApiFp(this.configuration).restoreAssets(requestParameters.bulkIdsDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof TrashApi - */ - public restoreTrash(options?: RawAxiosRequestConfig) { - return TrashApiFp(this.configuration).restoreTrash(options).then((request) => request(this.axios, this.basePath)); - } -} - - - -/** - * UserApi - axios parameter creator - * @export - */ -export const UserApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @param {File} file - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createProfileImage: async (file: File, options: RawAxiosRequestConfig = {}): Promise => { - // 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)(); - - // 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) - - - 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: RawAxiosRequestConfig = {}): Promise => { - // 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; - - // 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) - - - - 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, - }; - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteProfileImage: async (options: RawAxiosRequestConfig = {}): Promise => { - 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: '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) - - - - 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} - */ - deleteUser: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('deleteUser', 'id', id) - const localVarPath = `/user/{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 - - // authentication api_key required - await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration) - - // 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 {boolean} isAll - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllUsers: async (isAll: boolean, options: RawAxiosRequestConfig = {}): Promise => { - // 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; - - // 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) - - 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: RawAxiosRequestConfig = {}): Promise => { - 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; - - // 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) - - - - 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} - */ - getProfileImage: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getProfileImage', 'id', id) - const localVarPath = `/user/profile-image/{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; - - // 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) - - - - 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} - */ - getUserById: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('getUserById', 'id', id) - const localVarPath = `/user/info/{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; - - // 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) - - - - 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} - */ - restoreUser: async (id: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'id' is not null or undefined - assertParamExists('restoreUser', 'id', id) - const localVarPath = `/user/{id}/restore` - .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: 'POST', ...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) - - - - 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: RawAxiosRequestConfig = {}): Promise => { - // 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; - - // 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) - - - - 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, - }; - }, - } -}; - -/** - * UserApi - functional programming interface - * @export - */ -export const UserApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = UserApiAxiosParamCreator(configuration) - return { - /** - * - * @param {File} file - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createProfileImage(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createProfileImage(file, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.createProfileImage']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {CreateUserDto} createUserDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createUser(createUserDto: CreateUserDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createUser(createUserDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.createUser']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteProfileImage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteProfileImage(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.deleteProfileImage']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteUser(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteUser(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.deleteUser']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {boolean} isAll - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getAllUsers(isAll: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getAllUsers(isAll, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.getAllUsers']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getMyUserInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getMyUserInfo(options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.getMyUserInfo']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getProfileImage(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getProfileImage(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.getProfileImage']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async getUserById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getUserById(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.getUserById']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {string} id - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async restoreUser(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.restoreUser(id, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.restoreUser']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - /** - * - * @param {UpdateUserDto} updateUserDto - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async updateUser(updateUserDto: UpdateUserDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.updateUser(updateUserDto, options); - const index = configuration?.serverIndex ?? 0; - const operationBasePath = operationServerMap['UserApi.updateUser']?.[index]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath); - }, - } -}; - -/** - * UserApi - factory interface - * @export - */ -export const UserApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = UserApiFp(configuration) - return { - /** - * - * @param {UserApiCreateProfileImageRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createProfileImage(requestParameters: UserApiCreateProfileImageRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createProfileImage(requestParameters.file, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiCreateUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createUser(requestParameters: UserApiCreateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.createUser(requestParameters.createUserDto, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteProfileImage(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteProfileImage(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiDeleteUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteUser(requestParameters: UserApiDeleteUserRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.deleteUser(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiGetAllUsersRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getAllUsers(requestParameters: UserApiGetAllUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise> { - return localVarFp.getAllUsers(requestParameters.isAll, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getMyUserInfo(options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getMyUserInfo(options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiGetProfileImageRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getProfileImage(requestParameters: UserApiGetProfileImageRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getProfileImage(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiGetUserByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - getUserById(requestParameters: UserApiGetUserByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.getUserById(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiRestoreUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - restoreUser(requestParameters: UserApiRestoreUserRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.restoreUser(requestParameters.id, options).then((request) => request(axios, basePath)); - }, - /** - * - * @param {UserApiUpdateUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - updateUser(requestParameters: UserApiUpdateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.updateUser(requestParameters.updateUserDto, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * Request parameters for createProfileImage operation in UserApi. - * @export - * @interface UserApiCreateProfileImageRequest - */ -export interface UserApiCreateProfileImageRequest { - /** - * - * @type {File} - * @memberof UserApiCreateProfileImage - */ - readonly file: File -} - -/** - * Request parameters for createUser operation in UserApi. - * @export - * @interface UserApiCreateUserRequest - */ -export interface UserApiCreateUserRequest { - /** - * - * @type {CreateUserDto} - * @memberof UserApiCreateUser - */ - readonly createUserDto: CreateUserDto -} - -/** - * Request parameters for deleteUser operation in UserApi. - * @export - * @interface UserApiDeleteUserRequest - */ -export interface UserApiDeleteUserRequest { - /** - * - * @type {string} - * @memberof UserApiDeleteUser - */ - readonly id: string -} - -/** - * Request parameters for getAllUsers operation in UserApi. - * @export - * @interface UserApiGetAllUsersRequest - */ -export interface UserApiGetAllUsersRequest { - /** - * - * @type {boolean} - * @memberof UserApiGetAllUsers - */ - readonly isAll: boolean -} - -/** - * Request parameters for getProfileImage operation in UserApi. - * @export - * @interface UserApiGetProfileImageRequest - */ -export interface UserApiGetProfileImageRequest { - /** - * - * @type {string} - * @memberof UserApiGetProfileImage - */ - readonly id: string -} - -/** - * Request parameters for getUserById operation in UserApi. - * @export - * @interface UserApiGetUserByIdRequest - */ -export interface UserApiGetUserByIdRequest { - /** - * - * @type {string} - * @memberof UserApiGetUserById - */ - readonly id: string -} - -/** - * Request parameters for restoreUser operation in UserApi. - * @export - * @interface UserApiRestoreUserRequest - */ -export interface UserApiRestoreUserRequest { - /** - * - * @type {string} - * @memberof UserApiRestoreUser - */ - readonly id: string -} - -/** - * Request parameters for updateUser operation in UserApi. - * @export - * @interface UserApiUpdateUserRequest - */ -export interface UserApiUpdateUserRequest { - /** - * - * @type {UpdateUserDto} - * @memberof UserApiUpdateUser - */ - readonly updateUserDto: UpdateUserDto -} - -/** - * UserApi - object-oriented interface - * @export - * @class UserApi - * @extends {BaseAPI} - */ -export class UserApi extends BaseAPI { - /** - * - * @param {UserApiCreateProfileImageRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public createProfileImage(requestParameters: UserApiCreateProfileImageRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).createProfileImage(requestParameters.file, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiCreateUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public createUser(requestParameters: UserApiCreateUserRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).createUser(requestParameters.createUserDto, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public deleteProfileImage(options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).deleteProfileImage(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiDeleteUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public deleteUser(requestParameters: UserApiDeleteUserRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).deleteUser(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiGetAllUsersRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public getAllUsers(requestParameters: UserApiGetAllUsersRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).getAllUsers(requestParameters.isAll, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public getMyUserInfo(options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).getMyUserInfo(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiGetProfileImageRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public getProfileImage(requestParameters: UserApiGetProfileImageRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).getProfileImage(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiGetUserByIdRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public getUserById(requestParameters: UserApiGetUserByIdRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).getUserById(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiRestoreUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public restoreUser(requestParameters: UserApiRestoreUserRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).restoreUser(requestParameters.id, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @param {UserApiUpdateUserRequest} requestParameters Request parameters. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof UserApi - */ - public updateUser(requestParameters: UserApiUpdateUserRequest, options?: RawAxiosRequestConfig) { - return UserApiFp(this.configuration).updateUser(requestParameters.updateUserDto, options).then((request) => request(this.axios, this.basePath)); - } -} - - - diff --git a/open-api/typescript-sdk/axios-client/base.ts b/open-api/typescript-sdk/axios-client/base.ts deleted file mode 100644 index 43fa9de47c..0000000000 --- a/open-api/typescript-sdk/axios-client/base.ts +++ /dev/null @@ -1,86 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * Immich - * Immich API - * - * The version of the OpenAPI document: 1.97.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -import type { Configuration } from './configuration'; -// Some imports not used depending on template conditions -// @ts-ignore -import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; -import globalAxios from 'axios'; - -export const BASE_PATH = "/api".replace(/\/+$/, ""); - -/** - * - * @export - */ -export const COLLECTION_FORMATS = { - csv: ",", - ssv: " ", - tsv: "\t", - pipes: "|", -}; - -/** - * - * @export - * @interface RequestArgs - */ -export interface RequestArgs { - url: string; - options: RawAxiosRequestConfig; -} - -/** - * - * @export - * @class BaseAPI - */ -export class BaseAPI { - protected configuration: Configuration | undefined; - - constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) { - if (configuration) { - this.configuration = configuration; - this.basePath = configuration.basePath ?? basePath; - } - } -}; - -/** - * - * @export - * @class RequiredError - * @extends {Error} - */ -export class RequiredError extends Error { - constructor(public field: string, msg?: string) { - super(msg); - this.name = "RequiredError" - } -} - -interface ServerMap { - [key: string]: { - url: string, - description: string, - }[]; -} - -/** - * - * @export - */ -export const operationServerMap: ServerMap = { -} diff --git a/open-api/typescript-sdk/axios-client/common.ts b/open-api/typescript-sdk/axios-client/common.ts deleted file mode 100644 index 8257bfe6f9..0000000000 --- a/open-api/typescript-sdk/axios-client/common.ts +++ /dev/null @@ -1,150 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * Immich - * Immich API - * - * The version of the OpenAPI document: 1.97.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -import type { Configuration } from "./configuration"; -import type { RequestArgs } from "./base"; -import type { AxiosInstance, AxiosResponse } from 'axios'; -import { RequiredError } from "./base"; - -/** - * - * @export - */ -export const DUMMY_BASE_URL = 'https://example.com' - -/** - * - * @throws {RequiredError} - * @export - */ -export const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) { - if (paramValue === null || paramValue === undefined) { - throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`); - } -} - -/** - * - * @export - */ -export const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) { - if (configuration && configuration.apiKey) { - const localVarApiKeyValue = typeof configuration.apiKey === 'function' - ? await configuration.apiKey(keyParamName) - : await configuration.apiKey; - object[keyParamName] = localVarApiKeyValue; - } -} - -/** - * - * @export - */ -export const setBasicAuthToObject = function (object: any, configuration?: Configuration) { - if (configuration && (configuration.username || configuration.password)) { - object["auth"] = { username: configuration.username, password: configuration.password }; - } -} - -/** - * - * @export - */ -export const setBearerAuthToObject = async function (object: any, configuration?: Configuration) { - if (configuration && configuration.accessToken) { - const accessToken = typeof configuration.accessToken === 'function' - ? await configuration.accessToken() - : await configuration.accessToken; - object["Authorization"] = "Bearer " + accessToken; - } -} - -/** - * - * @export - */ -export const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) { - if (configuration && configuration.accessToken) { - const localVarAccessTokenValue = typeof configuration.accessToken === 'function' - ? await configuration.accessToken(name, scopes) - : await configuration.accessToken; - object["Authorization"] = "Bearer " + localVarAccessTokenValue; - } -} - -function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void { - if (parameter == null) return; - if (typeof parameter === "object") { - if (Array.isArray(parameter)) { - (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); - } - else { - Object.keys(parameter).forEach(currentKey => - setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`) - ); - } - } - else { - if (urlSearchParams.has(key)) { - urlSearchParams.append(key, parameter); - } - else { - urlSearchParams.set(key, parameter); - } - } -} - -/** - * - * @export - */ -export const setSearchParams = function (url: URL, ...objects: any[]) { - const searchParams = new URLSearchParams(url.search); - setFlattenedQueryParams(searchParams, objects); - url.search = searchParams.toString(); -} - -/** - * - * @export - */ -export const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) { - const nonString = typeof value !== 'string'; - const needsSerialization = nonString && configuration && configuration.isJsonMime - ? configuration.isJsonMime(requestOptions.headers['Content-Type']) - : nonString; - return needsSerialization - ? JSON.stringify(value !== undefined ? value : {}) - : (value || ""); -} - -/** - * - * @export - */ -export const toPathString = function (url: URL) { - return url.pathname + url.search + url.hash -} - -/** - * - * @export - */ -export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) { - return >(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => { - const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url}; - return axios.request(axiosRequestArgs); - }; -} diff --git a/open-api/typescript-sdk/axios-client/configuration.ts b/open-api/typescript-sdk/axios-client/configuration.ts deleted file mode 100644 index 18dc661330..0000000000 --- a/open-api/typescript-sdk/axios-client/configuration.ts +++ /dev/null @@ -1,110 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * Immich - * Immich API - * - * The version of the OpenAPI document: 1.97.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -export interface ConfigurationParameters { - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - username?: string; - password?: string; - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - basePath?: string; - serverIndex?: number; - baseOptions?: any; - formDataCtor?: new () => any; -} - -export class Configuration { - /** - * parameter for apiKey security - * @param name security name - * @memberof Configuration - */ - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - username?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - password?: string; - /** - * parameter for oauth2 security - * @param name security name - * @param scopes oauth2 scope - * @memberof Configuration - */ - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - /** - * override base path - * - * @type {string} - * @memberof Configuration - */ - basePath?: string; - /** - * override server index - * - * @type {number} - * @memberof Configuration - */ - serverIndex?: number; - /** - * base options for axios calls - * - * @type {any} - * @memberof Configuration - */ - baseOptions?: any; - /** - * The FormData constructor that will be used to create multipart form data - * requests. You can inject this here so that execution environments that - * do not support the FormData class can still run the generated client. - * - * @type {new () => FormData} - */ - formDataCtor?: new () => any; - - constructor(param: ConfigurationParameters = {}) { - this.apiKey = param.apiKey; - this.username = param.username; - this.password = param.password; - this.accessToken = param.accessToken; - this.basePath = param.basePath; - this.serverIndex = param.serverIndex; - this.baseOptions = param.baseOptions; - this.formDataCtor = param.formDataCtor; - } - - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param mime - MIME (Multipurpose Internet Mail Extensions) - * @return True if the given MIME is JSON, false otherwise. - */ - public isJsonMime(mime: string): boolean { - const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i'); - return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json'); - } -} diff --git a/open-api/typescript-sdk/axios-client/git_push.sh b/open-api/typescript-sdk/axios-client/git_push.sh deleted file mode 100644 index f53a75d4fa..0000000000 --- a/open-api/typescript-sdk/axios-client/git_push.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh -# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/ -# -# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com" - -git_user_id=$1 -git_repo_id=$2 -release_note=$3 -git_host=$4 - -if [ "$git_host" = "" ]; then - git_host="github.com" - echo "[INFO] No command line input provided. Set \$git_host to $git_host" -fi - -if [ "$git_user_id" = "" ]; then - git_user_id="GIT_USER_ID" - echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" -fi - -if [ "$git_repo_id" = "" ]; then - git_repo_id="GIT_REPO_ID" - echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id" -fi - -if [ "$release_note" = "" ]; then - release_note="Minor update" - echo "[INFO] No command line input provided. Set \$release_note to $release_note" -fi - -# Initialize the local directory as a Git repository -git init - -# Adds the files in the local repository and stages them for commit. -git add . - -# Commits the tracked changes and prepares them to be pushed to a remote repository. -git commit -m "$release_note" - -# Sets the new remote -git_remote=$(git remote) -if [ "$git_remote" = "" ]; then # git remote not defined - - if [ "$GIT_TOKEN" = "" ]; then - echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment." - git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git - else - git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git - fi - -fi - -git pull origin master - -# Pushes (Forces) the changes in the local repository up to the remote repository -echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git" -git push origin master 2>&1 | grep -v 'To https' diff --git a/open-api/typescript-sdk/axios-client/index.ts b/open-api/typescript-sdk/axios-client/index.ts deleted file mode 100644 index 6c53769b74..0000000000 --- a/open-api/typescript-sdk/axios-client/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * Immich - * Immich API - * - * The version of the OpenAPI document: 1.97.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -export * from "./api"; -export * from "./configuration"; - diff --git a/open-api/typescript-sdk/axios.ts b/open-api/typescript-sdk/axios.ts deleted file mode 100644 index 9cda702043..0000000000 --- a/open-api/typescript-sdk/axios.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from './axios-client'; -export * as base from './axios-client/base'; -export * as configuration from './axios-client/configuration'; -export * as common from './axios-client/common'; diff --git a/open-api/typescript-sdk/package-lock.json b/open-api/typescript-sdk/package-lock.json index 3359297e26..b141f21859 100644 --- a/open-api/typescript-sdk/package-lock.json +++ b/open-api/typescript-sdk/package-lock.json @@ -12,14 +12,6 @@ "@oazapfts/runtime": "^1.0.0", "@types/node": "^20.11.0", "typescript": "^5.3.3" - }, - "peerDependencies": { - "axios": "^1.6.7" - }, - "peerDependenciesMeta": { - "axios": { - "optional": true - } } }, "node_modules/@oazapfts/runtime": { @@ -37,114 +29,6 @@ "undici-types": "~5.26.4" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "optional": true, - "peer": true - }, - "node_modules/axios": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", - "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", - "optional": true, - "peer": true, - "dependencies": { - "follow-redirects": "^1.15.4", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "optional": true, - "peer": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "optional": true, - "peer": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "optional": true, - "peer": true, - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "optional": true, - "peer": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "optional": true, - "peer": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "optional": true, - "peer": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "optional": true, - "peer": true - }, "node_modules/typescript": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", diff --git a/open-api/typescript-sdk/package.json b/open-api/typescript-sdk/package.json index 05e7843f9a..960ce52c0c 100644 --- a/open-api/typescript-sdk/package.json +++ b/open-api/typescript-sdk/package.json @@ -3,33 +3,21 @@ "version": "1.92.1", "description": "", "type": "module", - "main": "./build/fetch/index.js", - "types": "./build/fetch/index.d.ts", + "main": "./build/index.js", + "types": "./build/index.d.ts", "exports": { - "./axios": { - "types": "./build/axios/axios.d.ts", - "default": "./build/axios/axios.js" - }, ".": { - "types": "./build/fetch/fetch.d.ts", - "default": "./build/fetch/fetch.js" + "types": "./build/index.d.ts", + "default": "./build/index.js" } }, "scripts": { - "build": "tsc -b ./tsconfig.axios.json ./tsconfig.fetch.json" + "build": "tsc" }, "license": "GNU Affero General Public License version 3", "devDependencies": { "@oazapfts/runtime": "^1.0.0", "@types/node": "^20.11.0", "typescript": "^5.3.3" - }, - "peerDependencies": { - "axios": "^1.6.7" - }, - "peerDependenciesMeta": { - "axios": { - "optional": true - } } } diff --git a/open-api/typescript-sdk/fetch-client.ts b/open-api/typescript-sdk/src/fetch-client.ts similarity index 100% rename from open-api/typescript-sdk/fetch-client.ts rename to open-api/typescript-sdk/src/fetch-client.ts diff --git a/open-api/typescript-sdk/fetch-errors.ts b/open-api/typescript-sdk/src/fetch-errors.ts similarity index 100% rename from open-api/typescript-sdk/fetch-errors.ts rename to open-api/typescript-sdk/src/fetch-errors.ts diff --git a/open-api/typescript-sdk/fetch.ts b/open-api/typescript-sdk/src/index.ts similarity index 100% rename from open-api/typescript-sdk/fetch.ts rename to open-api/typescript-sdk/src/index.ts diff --git a/open-api/typescript-sdk/tsconfig.axios.json b/open-api/typescript-sdk/tsconfig.axios.json deleted file mode 100644 index 9f0d06bbff..0000000000 --- a/open-api/typescript-sdk/tsconfig.axios.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "include": ["axios.ts", "axios-client/**/*"], - "compilerOptions": { - "target": "esnext", - "strict": true, - "skipLibCheck": true, - "declaration": true, - "outDir": "build/axios", - "module": "esnext", - "moduleResolution": "Bundler", - "lib": ["esnext"] - } -} diff --git a/open-api/typescript-sdk/tsconfig.fetch.json b/open-api/typescript-sdk/tsconfig.json similarity index 72% rename from open-api/typescript-sdk/tsconfig.fetch.json rename to open-api/typescript-sdk/tsconfig.json index 92d17ebda9..251202774e 100644 --- a/open-api/typescript-sdk/tsconfig.fetch.json +++ b/open-api/typescript-sdk/tsconfig.json @@ -1,13 +1,13 @@ { - "include": ["fetch.ts", "fetch-client.ts"], "compilerOptions": { "target": "esnext", "strict": true, "skipLibCheck": true, "declaration": true, - "outDir": "build/fetch", + "outDir": "build", "module": "esnext", "moduleResolution": "Bundler", "lib": ["esnext", "dom"] - } + }, + "include": ["src/**/*.ts"] } diff --git a/web/package-lock.json b/web/package-lock.json index 5aa715313b..7555557b5e 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -13,7 +13,6 @@ "@mdi/js": "^7.4.47", "@photo-sphere-viewer/core": "^5.7.1", "@zoom-image/svelte": "^0.2.6", - "axios": "^1.6.7", "buffer": "^6.0.3", "copy-image-clipboard": "^2.1.2", "dom-to-image": "^2.6.0", @@ -28,7 +27,6 @@ }, "devDependencies": { "@faker-js/faker": "^8.4.1", - "@floating-ui/dom": "^1.6.3", "@socket.io/component-emitter": "^3.1.0", "@sveltejs/adapter-static": "^3.0.1", "@sveltejs/enhanced-img": "^0.1.8", @@ -49,7 +47,6 @@ "eslint-plugin-svelte": "^2.35.1", "eslint-plugin-unicorn": "^51.0.1", "factory.ts": "^1.4.1", - "identity-obj-proxy": "^3.0.0", "postcss": "^8.4.35", "prettier": "^3.2.5", "prettier-plugin-organize-imports": "^3.2.4", @@ -72,14 +69,6 @@ "@oazapfts/runtime": "^1.0.0", "@types/node": "^20.11.0", "typescript": "^5.3.3" - }, - "peerDependencies": { - "axios": "^1.6.7" - }, - "peerDependenciesMeta": { - "axios": { - "optional": true - } } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -922,31 +911,6 @@ "npm": ">=6.14.13" } }, - "node_modules/@floating-ui/core": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", - "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", - "dev": true, - "dependencies": { - "@floating-ui/utils": "^0.2.1" - } - }, - "node_modules/@floating-ui/dom": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", - "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", - "dev": true, - "dependencies": { - "@floating-ui/core": "^1.0.0", - "@floating-ui/utils": "^0.2.0" - } - }, - "node_modules/@floating-ui/utils": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", - "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", - "dev": true - }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", @@ -3031,7 +2995,10 @@ "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "optional": true, + "peer": true }, "node_modules/autoprefixer": { "version": "10.4.17", @@ -3082,16 +3049,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/axios": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", - "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", - "dependencies": { - "follow-redirects": "^1.15.4", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, "node_modules/axobject-query": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", @@ -3525,6 +3482,9 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { "delayed-stream": "~1.0.0" }, @@ -3799,6 +3759,9 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "optional": true, + "peer": true, "engines": { "node": ">=0.4.0" } @@ -4655,25 +4618,6 @@ "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, - "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, "node_modules/for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", @@ -4687,6 +4631,9 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -4960,12 +4907,6 @@ "uglify-js": "^3.1.4" } }, - "node_modules/harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", - "dev": true - }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -5126,18 +5067,6 @@ "node": ">=0.10.0" } }, - "node_modules/identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", - "dev": true, - "dependencies": { - "harmony-reflect": "^1.4.6" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -6193,6 +6122,9 @@ "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "optional": true, + "peer": true, "engines": { "node": ">= 0.6" } @@ -6201,6 +6133,9 @@ "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { "mime-db": "1.52.0" }, @@ -7039,11 +6974,6 @@ "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, "node_modules/psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", diff --git a/web/package.json b/web/package.json index 73e025c6d1..0e374d3668 100644 --- a/web/package.json +++ b/web/package.json @@ -23,7 +23,6 @@ }, "devDependencies": { "@faker-js/faker": "^8.4.1", - "@floating-ui/dom": "^1.6.3", "@socket.io/component-emitter": "^3.1.0", "@sveltejs/adapter-static": "^3.0.1", "@sveltejs/enhanced-img": "^0.1.8", @@ -44,7 +43,6 @@ "eslint-plugin-svelte": "^2.35.1", "eslint-plugin-unicorn": "^51.0.1", "factory.ts": "^1.4.1", - "identity-obj-proxy": "^3.0.0", "postcss": "^8.4.35", "prettier": "^3.2.5", "prettier-plugin-organize-imports": "^3.2.4", @@ -64,7 +62,6 @@ "@mdi/js": "^7.4.47", "@photo-sphere-viewer/core": "^5.7.1", "@zoom-image/svelte": "^0.2.6", - "axios": "^1.6.7", "buffer": "^6.0.3", "copy-image-clipboard": "^2.1.2", "dom-to-image": "^2.6.0", diff --git a/web/src/lib/api/index.ts b/web/src/lib/api/index.ts deleted file mode 100644 index de8a5f722f..0000000000 --- a/web/src/lib/api/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { AssetApi, DownloadApi, configuration } from '@immich/sdk/axios'; - -class ImmichApi { - public downloadApi: DownloadApi; - public assetApi: AssetApi; - - constructor(parameters: configuration.ConfigurationParameters) { - const config = new configuration.Configuration(parameters); - this.downloadApi = new DownloadApi(config); - this.assetApi = new AssetApi(config); - } -} - -export const api = new ImmichApi({ basePath: '/api' }); diff --git a/web/src/lib/components/album-page/__tests__/album-card.spec.ts b/web/src/lib/components/album-page/__tests__/album-card.spec.ts index 08285e7d37..508253c2c2 100644 --- a/web/src/lib/components/album-page/__tests__/album-card.spec.ts +++ b/web/src/lib/components/album-page/__tests__/album-card.spec.ts @@ -1,14 +1,18 @@ import { createObjectURLMock } from '$lib/__mocks__/jsdom-url.mock'; -import { api } from '$lib/api'; -import { ThumbnailFormat } from '@immich/sdk'; +import sdk, { ThumbnailFormat } from '@immich/sdk'; import { albumFactory } from '@test-data'; import '@testing-library/jest-dom'; import { fireEvent, render, waitFor, type RenderResult } from '@testing-library/svelte'; import type { MockedObject } from 'vitest'; import AlbumCard from '../album-card.svelte'; -vi.mock('$lib/api'); -const apiMock: MockedObject = api as MockedObject; +vi.mock('@immich/sdk', async (originalImport) => { + const module = await originalImport(); + const mock = { ...module, getAssetThumbnail: vi.fn() }; + return { ...mock, default: mock }; +}); + +const sdkMock: MockedObject = sdk as MockedObject; describe('AlbumCard component', () => { let sut: RenderResult; @@ -48,7 +52,7 @@ describe('AlbumCard component', () => { await waitFor(() => expect(albumImgElement).toHaveAttribute('src')); expect(albumImgElement).toHaveAttribute('alt', album.id); - expect(apiMock.assetApi.getAssetThumbnail).not.toHaveBeenCalled(); + expect(sdkMock.getAssetThumbnail).not.toHaveBeenCalled(); expect(albumNameElement).toHaveTextContent(album.albumName); expect(albumDetailsElement).toHaveTextContent(new RegExp(detailsText)); @@ -57,17 +61,7 @@ describe('AlbumCard component', () => { it('shows album data and loads the thumbnail image when available', async () => { const thumbnailFile = new File([new Blob()], 'fileThumbnail'); const thumbnailUrl = 'blob:thumbnailUrlOne'; - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - // TODO: there needs to be a more robust mock of the @api to avoid mockResolvedValueOnce ts error - // this is a workaround to make ts checks not fail but the test will pass as expected - apiMock.assetApi.getAssetThumbnail.mockResolvedValue({ - data: thumbnailFile, - config: {}, - headers: {}, - status: 200, - statusText: '', - }); + sdkMock.getAssetThumbnail.mockResolvedValue(thumbnailFile); createObjectURLMock.mockReturnValueOnce(thumbnailUrl); const album = albumFactory.build({ @@ -85,14 +79,11 @@ describe('AlbumCard component', () => { await waitFor(() => expect(albumImgElement).toHaveAttribute('src', thumbnailUrl)); expect(albumImgElement).toHaveAttribute('alt', album.id); - expect(apiMock.assetApi.getAssetThumbnail).toHaveBeenCalledTimes(1); - expect(apiMock.assetApi.getAssetThumbnail).toHaveBeenCalledWith( - { - id: 'thumbnailIdOne', - format: ThumbnailFormat.Jpeg, - }, - { responseType: 'blob' }, - ); + expect(sdkMock.getAssetThumbnail).toHaveBeenCalledTimes(1); + expect(sdkMock.getAssetThumbnail).toHaveBeenCalledWith({ + id: 'thumbnailIdOne', + format: ThumbnailFormat.Jpeg, + }); expect(createObjectURLMock).toHaveBeenCalledWith(thumbnailFile); expect(albumNameElement).toHaveTextContent('some album name'); diff --git a/web/src/lib/components/album-page/album-card.svelte b/web/src/lib/components/album-page/album-card.svelte index eb645a702d..e11ee18ba0 100644 --- a/web/src/lib/components/album-page/album-card.svelte +++ b/web/src/lib/components/album-page/album-card.svelte @@ -1,10 +1,9 @@ diff --git a/web/src/lib/components/asset-viewer/photo-viewer.svelte b/web/src/lib/components/asset-viewer/photo-viewer.svelte index 79e8276153..036ef6cf84 100644 --- a/web/src/lib/components/asset-viewer/photo-viewer.svelte +++ b/web/src/lib/components/asset-viewer/photo-viewer.svelte @@ -1,10 +1,9 @@