update user schema, webauthn bug fix

This commit is contained in:
2025-02-24 16:56:25 +05:30
parent dee35bec5b
commit fef560127a
8 changed files with 22 additions and 6 deletions

View File

@@ -73,7 +73,7 @@ export async function getUploadUrlMultiPart(key: string, fileSize: number) {
export async function completeMultiPartUpload(
key: string,
uploadId: string,
parts: { ETag: string; PartNumber: number }[]
parts: { ETag?: string; PartNumber?: number }[]
) {
const command = new CompleteMultipartUploadCommand({
Key: key,