const table = {
name: "Tasks",
created: new Date(),
modified: new Date()
};
const columns = [
{ name: "Title", type: "text", order: 0 },
{ name: "Due Date", type: "date", order: 1 },
{ name: "Status", type: "text", order: 2 }
];
const record = {
tableId: 1,
data: {
"Title": "Complete Documentation",
"Due Date": "2024-02-01",
"Status": "In Progress"
},
created: new Date()
};