@ -302,16 +302,13 @@ export type AssetFaceWithoutPersonResponseDto = {
};
};
exporttypePersonWithFacesResponseDto={
exporttypePersonWithFacesResponseDto={
birthDate: string|null;
birthDate: string|null;
/** This property was added in v1.126.0 */
color?: string;
color?: string;
faces: AssetFaceWithoutPersonResponseDto[];
faces: AssetFaceWithoutPersonResponseDto[];
id: string;
id: string;
/** This property was added in v1.126.0 */
isFavorite?: boolean;
isFavorite?: boolean;
isHidden: boolean;
isHidden: boolean;
name: string;
name: string;
thumbnailPath: string;
thumbnailPath: string;
/** This property was added in v1.107.0 */
updatedAt?: string;
updatedAt?: string;
};
};
exporttypeAssetStackResponseDto={
exporttypeAssetStackResponseDto={
@ -348,7 +345,6 @@ export type AssetResponseDto = {
isFavorite: boolean;
isFavorite: boolean;
isOffline: boolean;
isOffline: boolean;
isTrashed: boolean;
isTrashed: boolean;
/** This property was deprecated in v1.106.0 */
libraryId?: string|null;
libraryId?: string|null;
livePhotoVideoId?: string|null;
livePhotoVideoId?: string|null;
/** The local date and time when the photo/video was taken, derived from EXIF metadata. This represents the photographer's local time regardless of timezone, stored as a timezone-agnostic timestamp. Used for timeline grouping by "local" days and months. */
/** The local date and time when the photo/video was taken, derived from EXIF metadata. This represents the photographer's local time regardless of timezone, stored as a timezone-agnostic timestamp. Used for timeline grouping by "local" days and months. */
@ -359,7 +355,6 @@ export type AssetResponseDto = {
owner?: UserResponseDto;
owner?: UserResponseDto;
ownerId: string;
ownerId: string;
people?: PersonWithFacesResponseDto[];
people?: PersonWithFacesResponseDto[];
/** This property was deprecated in v1.113.0 */
resized?: boolean;
resized?: boolean;
stack?:(AssetStackResponseDto)|null;
stack?:(AssetStackResponseDto)|null;
tags?: TagResponseDto[];
tags?: TagResponseDto[];
@ -669,15 +664,12 @@ export type DuplicateResponseDto = {
};
};
exporttypePersonResponseDto={
exporttypePersonResponseDto={
birthDate: string|null;
birthDate: string|null;
/** This property was added in v1.126.0 */
color?: string;
color?: string;
id: string;
id: string;
/** This property was added in v1.126.0 */
isFavorite?: boolean;
isFavorite?: boolean;
isHidden: boolean;
isHidden: boolean;
name: string;
name: string;
thumbnailPath: string;
thumbnailPath: string;
/** This property was added in v1.107.0 */
updatedAt?: string;
updatedAt?: string;
};
};
exporttypeAssetFaceResponseDto={
exporttypeAssetFaceResponseDto={
@ -874,7 +866,6 @@ export type PartnerUpdateDto = {
'Returns a list of activities for the selected asset or album. The activities are returned in sorted order, with the oldest activities appearing first.',
'Returns a list of activities for the selected asset or album. The activities are returned in sorted order, with the oldest activities appearing first.',
'Update the information of a specific album by its ID. This endpoint can be used to update the album name, description, sort order, etc. However, it is not used to add or remove assets or users from the album.',
'Update the information of a specific album by its ID. This endpoint can be used to update the album name, description, sort order, etc. However, it is not used to add or remove assets or users from the album.',
'Delete a specific album by its ID. Note the album is initially trashed and then immediately scheduled for deletion, but relies on a background job to complete the process.',
'Delete a specific album by its ID. Note the album is initially trashed and then immediately scheduled for deletion, but relies on a background job to complete the process.',
'Retrieve information about how to request a download for the specified assets or album. The response includes groups of assets that can be downloaded together.',
'Retrieve information about how to request a download for the specified assets or album. The response includes groups of assets that can be downloaded together.',
'Run a specific job. Most jobs are queued automatically, but this endpoint allows for manual creation of a handful of jobs, including various cleanup tasks, as well as creating a new database backup.',
'Run a specific job. Most jobs are queued automatically, but this endpoint allows for manual creation of a handful of jobs, including various cleanup tasks, as well as creating a new database backup.',
'Queue all assets for a specific job type. Defaults to only queueing assets that have not yet been processed, but the force command can be used to re-process all assets.',
'Queue all assets for a specific job type. Defaults to only queueing assets that have not yet been processed, but the force command can be used to re-process all assets.',
'Retrieve a list of memories. Memories are sorted descending by creation date by default, although they can also be sorted in ascending order, or randomly.',
'Retrieve a list of memories. Memories are sorted descending by creation date by default, although they can also be sorted in ascending order, or randomly.',
'Retrieve a list of assets with each asset belonging to a different city. This endpoint is used on the places pages to show a single thumbnail for each city the user has assets in.',
'Retrieve a list of assets with each asset belonging to a different city. This endpoint is used on the places pages to show a single thumbnail for each city the user has assets in.',
'Create a new stack by providing a name and a list of asset IDs to include in the stack. If any of the provided asset IDs are primary assets of an existing stack, the existing stack will be merged into the newly created stack.',
'Create a new stack by providing a name and a list of asset IDs to include in the stack. If any of the provided asset IDs are primary assets of an existing stack, the existing stack will be merged into the newly created stack.',
'Retrieve a JSON lines streamed response of changes for synchronization. This endpoint is used by the mobile app to efficiently stay up to date with changes.',
'Retrieve a JSON lines streamed response of changes for synchronization. This endpoint is used by the mobile app to efficiently stay up to date with changes.',