-
Notifications
You must be signed in to change notification settings - Fork 442
Open
grepdemos/airtable.js
#6Labels
Description
Airtable documentation:
When creating an attachment, url is required, and filename is optional.
Attachment interface:
export interface Attachment {
id: string;
url: string;
filename: string;
size: number;
type: string;
thumbnails?: {
small: Thumbnail;
large: Thumbnail;
full: Thumbnail;
};
}filename, size, type etc. not so optional.
Please do props optional or split type for different actions (create/update/delete).
jlevers, danalexilewis, tresorama, CrutchTheClutch, FormulaZero and 2 more