Type Alias EditAttachmentMutation

EditAttachmentMutation: {
    attachment: Blob | File | string;
    contentType?: string;
    name?: string;
    operation: "add";
    parentId?: FeatureId;
} | {
    attachment: Blob | File | string;
    attachmentId: FeatureId;
    contentType?: string;
    name?: string;
    operation: "update";
    parentId?: FeatureId;
} | {
    attachmentIds: readonly FeatureId[];
    operation: "delete";
    parentId?: FeatureId;
}