|
@@ -486,43 +486,6 @@ export interface AssetCountByTimeBucketResponseDto {
|
|
|
*/
|
|
|
'buckets': Array<AssetCountByTimeBucket>;
|
|
|
}
|
|
|
-/**
|
|
|
- *
|
|
|
- * @export
|
|
|
- * @interface AssetCountByUserIdResponseDto
|
|
|
- */
|
|
|
-export interface AssetCountByUserIdResponseDto {
|
|
|
- /**
|
|
|
- *
|
|
|
- * @type {number}
|
|
|
- * @memberof AssetCountByUserIdResponseDto
|
|
|
- */
|
|
|
- 'audio': number;
|
|
|
- /**
|
|
|
- *
|
|
|
- * @type {number}
|
|
|
- * @memberof AssetCountByUserIdResponseDto
|
|
|
- */
|
|
|
- 'photos': number;
|
|
|
- /**
|
|
|
- *
|
|
|
- * @type {number}
|
|
|
- * @memberof AssetCountByUserIdResponseDto
|
|
|
- */
|
|
|
- 'videos': number;
|
|
|
- /**
|
|
|
- *
|
|
|
- * @type {number}
|
|
|
- * @memberof AssetCountByUserIdResponseDto
|
|
|
- */
|
|
|
- 'other': number;
|
|
|
- /**
|
|
|
- *
|
|
|
- * @type {number}
|
|
|
- * @memberof AssetCountByUserIdResponseDto
|
|
|
- */
|
|
|
- 'total': number;
|
|
|
-}
|
|
|
/**
|
|
|
*
|
|
|
* @export
|
|
@@ -724,6 +687,31 @@ export interface AssetResponseDto {
|
|
|
}
|
|
|
|
|
|
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * @export
|
|
|
+ * @interface AssetStatsResponseDto
|
|
|
+ */
|
|
|
+export interface AssetStatsResponseDto {
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @type {number}
|
|
|
+ * @memberof AssetStatsResponseDto
|
|
|
+ */
|
|
|
+ 'images': number;
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @type {number}
|
|
|
+ * @memberof AssetStatsResponseDto
|
|
|
+ */
|
|
|
+ 'videos': number;
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @type {number}
|
|
|
+ * @memberof AssetStatsResponseDto
|
|
|
+ */
|
|
|
+ 'total': number;
|
|
|
+}
|
|
|
/**
|
|
|
*
|
|
|
* @export
|
|
@@ -4901,44 +4889,6 @@ export const AssetApiAxiosParamCreator = function (configuration?: 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}
|
|
|
- */
|
|
|
- getArchivedAssetCountByUserId: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/asset/stat/archive`;
|
|
|
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
|
- let baseOptions;
|
|
|
- if (configuration) {
|
|
|
- baseOptions = configuration.baseOptions;
|
|
|
- }
|
|
|
-
|
|
|
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
|
- const localVarHeaderParameter = {} as any;
|
|
|
- const localVarQueryParameter = {} as any;
|
|
|
-
|
|
|
- // authentication cookie required
|
|
|
-
|
|
|
- // 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};
|
|
@@ -5088,8 +5038,8 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- getAssetCountByUserId: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/asset/count-by-user-id`;
|
|
|
+ getAssetSearchTerms: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
+ 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;
|
|
@@ -5123,11 +5073,13 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
},
|
|
|
/**
|
|
|
*
|
|
|
+ * @param {boolean} [isArchived]
|
|
|
+ * @param {boolean} [isFavorite]
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- getAssetSearchTerms: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/asset/search-terms`;
|
|
|
+ getAssetStats: async (isArchived?: boolean, isFavorite?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
+ 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;
|
|
@@ -5148,6 +5100,14 @@ export const AssetApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
// http bearer authentication required
|
|
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
|
|
|
|
+ if (isArchived !== undefined) {
|
|
|
+ localVarQueryParameter['isArchived'] = isArchived;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isFavorite !== undefined) {
|
|
|
+ localVarQueryParameter['isFavorite'] = isFavorite;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
|
|
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5896,15 +5856,6 @@ export const AssetApiFp = function(configuration?: Configuration) {
|
|
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAssets(userId, isFavorite, isArchived, withoutThumbs, skip, ifNoneMatch, options);
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
},
|
|
|
- /**
|
|
|
- *
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async getArchivedAssetCountByUserId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetCountByUserIdResponseDto>> {
|
|
|
- const localVarAxiosArgs = await localVarAxiosParamCreator.getArchivedAssetCountByUserId(options);
|
|
|
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
- },
|
|
|
/**
|
|
|
* Get a single asset\'s information
|
|
|
* @param {string} id
|
|
@@ -5941,17 +5892,19 @@ export const AssetApiFp = function(configuration?: Configuration) {
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- async getAssetCountByUserId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetCountByUserIdResponseDto>> {
|
|
|
- const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetCountByUserId(options);
|
|
|
+ async getAssetSearchTerms(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>> {
|
|
|
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetSearchTerms(options);
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
},
|
|
|
/**
|
|
|
*
|
|
|
+ * @param {boolean} [isArchived]
|
|
|
+ * @param {boolean} [isFavorite]
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- async getAssetSearchTerms(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>> {
|
|
|
- const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetSearchTerms(options);
|
|
|
+ async getAssetStats(isArchived?: boolean, isFavorite?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetStatsResponseDto>> {
|
|
|
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetStats(isArchived, isFavorite, options);
|
|
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
|
},
|
|
|
/**
|
|
@@ -6177,14 +6130,6 @@ export const AssetApiFactory = function (configuration?: Configuration, basePath
|
|
|
getAllAssets(userId?: string, isFavorite?: boolean, isArchived?: boolean, withoutThumbs?: boolean, skip?: number, ifNoneMatch?: string, options?: any): AxiosPromise<Array<AssetResponseDto>> {
|
|
|
return localVarFp.getAllAssets(userId, isFavorite, isArchived, withoutThumbs, skip, ifNoneMatch, options).then((request) => request(axios, basePath));
|
|
|
},
|
|
|
- /**
|
|
|
- *
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- getArchivedAssetCountByUserId(options?: any): AxiosPromise<AssetCountByUserIdResponseDto> {
|
|
|
- return localVarFp.getArchivedAssetCountByUserId(options).then((request) => request(axios, basePath));
|
|
|
- },
|
|
|
/**
|
|
|
* Get a single asset\'s information
|
|
|
* @param {string} id
|
|
@@ -6218,16 +6163,18 @@ export const AssetApiFactory = function (configuration?: Configuration, basePath
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- getAssetCountByUserId(options?: any): AxiosPromise<AssetCountByUserIdResponseDto> {
|
|
|
- return localVarFp.getAssetCountByUserId(options).then((request) => request(axios, basePath));
|
|
|
+ getAssetSearchTerms(options?: any): AxiosPromise<Array<string>> {
|
|
|
+ return localVarFp.getAssetSearchTerms(options).then((request) => request(axios, basePath));
|
|
|
},
|
|
|
/**
|
|
|
*
|
|
|
+ * @param {boolean} [isArchived]
|
|
|
+ * @param {boolean} [isFavorite]
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- getAssetSearchTerms(options?: any): AxiosPromise<Array<string>> {
|
|
|
- return localVarFp.getAssetSearchTerms(options).then((request) => request(axios, basePath));
|
|
|
+ getAssetStats(isArchived?: boolean, isFavorite?: boolean, options?: any): AxiosPromise<AssetStatsResponseDto> {
|
|
|
+ return localVarFp.getAssetStats(isArchived, isFavorite, options).then((request) => request(axios, basePath));
|
|
|
},
|
|
|
/**
|
|
|
*
|
|
@@ -6565,6 +6512,27 @@ export interface AssetApiGetAssetCountByTimeBucketRequest {
|
|
|
readonly getAssetCountByTimeBucketDto: GetAssetCountByTimeBucketDto
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * Request parameters for getAssetStats operation in AssetApi.
|
|
|
+ * @export
|
|
|
+ * @interface AssetApiGetAssetStatsRequest
|
|
|
+ */
|
|
|
+export interface AssetApiGetAssetStatsRequest {
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @type {boolean}
|
|
|
+ * @memberof AssetApiGetAssetStats
|
|
|
+ */
|
|
|
+ readonly isArchived?: boolean
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @type {boolean}
|
|
|
+ * @memberof AssetApiGetAssetStats
|
|
|
+ */
|
|
|
+ readonly isFavorite?: boolean
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* Request parameters for getAssetThumbnail operation in AssetApi.
|
|
|
* @export
|
|
@@ -6957,16 +6925,6 @@ export class AssetApi extends BaseAPI {
|
|
|
return AssetApiFp(this.configuration).getAllAssets(requestParameters.userId, requestParameters.isFavorite, requestParameters.isArchived, requestParameters.withoutThumbs, requestParameters.skip, requestParameters.ifNoneMatch, options).then((request) => request(this.axios, this.basePath));
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- *
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- * @memberof AssetApi
|
|
|
- */
|
|
|
- public getArchivedAssetCountByUserId(options?: AxiosRequestConfig) {
|
|
|
- return AssetApiFp(this.configuration).getArchivedAssetCountByUserId(options).then((request) => request(this.axios, this.basePath));
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Get a single asset\'s information
|
|
|
* @param {AssetApiGetAssetByIdRequest} requestParameters Request parameters.
|
|
@@ -7006,18 +6964,19 @@ export class AssetApi extends BaseAPI {
|
|
|
* @throws {RequiredError}
|
|
|
* @memberof AssetApi
|
|
|
*/
|
|
|
- public getAssetCountByUserId(options?: AxiosRequestConfig) {
|
|
|
- return AssetApiFp(this.configuration).getAssetCountByUserId(options).then((request) => request(this.axios, this.basePath));
|
|
|
+ public getAssetSearchTerms(options?: AxiosRequestConfig) {
|
|
|
+ return AssetApiFp(this.configuration).getAssetSearchTerms(options).then((request) => request(this.axios, this.basePath));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
+ * @param {AssetApiGetAssetStatsRequest} requestParameters Request parameters.
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
* @memberof AssetApi
|
|
|
*/
|
|
|
- public getAssetSearchTerms(options?: AxiosRequestConfig) {
|
|
|
- return AssetApiFp(this.configuration).getAssetSearchTerms(options).then((request) => request(this.axios, this.basePath));
|
|
|
+ public getAssetStats(requestParameters: AssetApiGetAssetStatsRequest = {}, options?: AxiosRequestConfig) {
|
|
|
+ return AssetApiFp(this.configuration).getAssetStats(requestParameters.isArchived, requestParameters.isFavorite, options).then((request) => request(this.axios, this.basePath));
|
|
|
}
|
|
|
|
|
|
/**
|