Skip to main content

WorkspaceLogoArgs

type WorkspaceLogoArgs = {
delete?: boolean;
file?: Buffer | NodeJS.ReadableStream | string;
fileName?: string;
workspaceId: number;
};

Arguments for uploading/updating workspace logo.

Properties

delete?

optional delete: boolean;

Whether to delete the logo instead of updating it.


file?

optional file: Buffer | NodeJS.ReadableStream | string;

The image file to upload (Buffer, Stream, or file path).


fileName?

optional fileName: string;

The file name (required for Buffer/Stream uploads).


workspaceId

workspaceId: number;

The workspace ID.