mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
run make open-api
This commit is contained in:
@@ -6579,9 +6579,6 @@ export function getUploadOptions(opts?: Oazapfts.RequestOpts) {
|
|||||||
method: "OPTIONS"
|
method: "OPTIONS"
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* This endpoint requires the `asset.upload` permission.
|
|
||||||
*/
|
|
||||||
export function startUpload({ contentLength, key, reprDigest, slug, uploadComplete, uploadDraftInteropVersion, xImmichAssetData }: {
|
export function startUpload({ contentLength, key, reprDigest, slug, uploadComplete, uploadDraftInteropVersion, xImmichAssetData }: {
|
||||||
contentLength: string;
|
contentLength: string;
|
||||||
key?: string;
|
key?: string;
|
||||||
@@ -6611,9 +6608,6 @@ export function startUpload({ contentLength, key, reprDigest, slug, uploadComple
|
|||||||
})
|
})
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* This endpoint requires the `asset.upload` permission.
|
|
||||||
*/
|
|
||||||
export function cancelUpload({ id, key, slug }: {
|
export function cancelUpload({ id, key, slug }: {
|
||||||
id: string;
|
id: string;
|
||||||
key?: string;
|
key?: string;
|
||||||
@@ -6627,9 +6621,6 @@ export function cancelUpload({ id, key, slug }: {
|
|||||||
method: "DELETE"
|
method: "DELETE"
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* This endpoint requires the `asset.upload` permission.
|
|
||||||
*/
|
|
||||||
export function getUploadStatus({ id, key, slug, uploadDraftInteropVersion }: {
|
export function getUploadStatus({ id, key, slug, uploadDraftInteropVersion }: {
|
||||||
id: string;
|
id: string;
|
||||||
key?: string;
|
key?: string;
|
||||||
@@ -6647,9 +6638,6 @@ export function getUploadStatus({ id, key, slug, uploadDraftInteropVersion }: {
|
|||||||
})
|
})
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* This endpoint requires the `asset.upload` permission.
|
|
||||||
*/
|
|
||||||
export function resumeUpload({ contentLength, id, key, slug, uploadComplete, uploadDraftInteropVersion, uploadOffset }: {
|
export function resumeUpload({ contentLength, id, key, slug, uploadComplete, uploadDraftInteropVersion, uploadOffset }: {
|
||||||
contentLength: string;
|
contentLength: string;
|
||||||
id: string;
|
id: string;
|
||||||
@@ -7315,6 +7303,8 @@ export enum JobName {
|
|||||||
AssetFileMigration = "AssetFileMigration",
|
AssetFileMigration = "AssetFileMigration",
|
||||||
AssetGenerateThumbnailsQueueAll = "AssetGenerateThumbnailsQueueAll",
|
AssetGenerateThumbnailsQueueAll = "AssetGenerateThumbnailsQueueAll",
|
||||||
AssetGenerateThumbnails = "AssetGenerateThumbnails",
|
AssetGenerateThumbnails = "AssetGenerateThumbnails",
|
||||||
|
PartialAssetCleanup = "PartialAssetCleanup",
|
||||||
|
PartialAssetCleanupQueueAll = "PartialAssetCleanupQueueAll",
|
||||||
AuditLogCleanup = "AuditLogCleanup",
|
AuditLogCleanup = "AuditLogCleanup",
|
||||||
AuditTableCleanup = "AuditTableCleanup",
|
AuditTableCleanup = "AuditTableCleanup",
|
||||||
DatabaseBackup = "DatabaseBackup",
|
DatabaseBackup = "DatabaseBackup",
|
||||||
|
|||||||
Reference in New Issue
Block a user