Sporades SDK API
    Preparing search index...

    Type Alias AclStorageFileMetadata

    File metadata shape exposed inside table ACL helpers.

    ACLs receive metadata, not uploaded file bytes. Use it to authorize access to File references without coupling table rules to a storage backend.

    type AclStorageFileMetadata = {
        bucket: string;
        createdAt: string;
        deletedAt: string | null;
        id: string;
        name: string;
        originalName: string;
        owner: string;
        ownerId: string;
        path: string;
        size: number;
        status: string;
        type: string;
        updatedAt: string;
        version: string;
    }
    Index
    bucket: string
    createdAt: string
    deletedAt: string | null
    id: string
    name: string
    originalName: string
    owner: string
    ownerId: string
    path: string
    size: number
    status: string
    type: string
    updatedAt: string
    version: string