Merge branch 'main' into andrew/web-3627-implement-frontend-of-preventing-workspace-creations

This commit is contained in:
andrewwallacespeckle
2025-06-20 10:35:13 +02:00
21 changed files with 383 additions and 59 deletions
@@ -10,6 +10,7 @@ import type { FileTypeSpecifier } from '~~/src/helpers/form/file'
import { computed, unref } from 'vue'
import type { CSSProperties } from 'vue'
import { BaseError } from '~~/src/lib'
import type { BlobUploadStatus } from '@speckle/shared/blobs'
/**
* A file, as emitted out from FileUploadZone
@@ -31,7 +32,7 @@ export type BlobPostResultItem = {
/**
* Success = 1, Failure = 2
*/
uploadStatus: number
uploadStatus: BlobUploadStatus
uploadError: string
}