UNPKG

@kevisual/noco

Version:

一个轻量级的 NocoDB API SDK,支持表记录操作和 Base 管理功能。

21 lines (20 loc) 382 B
export type BaseNocoItem<T = {}> = { Id: number, CreatedAt: string UpdatedAt: string } & T; export type NocoWehookPayload<NocoItem = {}> = { /** 请求id */ id: string; type: "records.after.trigger"; /** * 多维表base id **/ base_id: string; version: "v3", data: { table_id: string; table_name: string; rows: BaseNocoItem<NocoItem>[]; } }