//native
export async function main(
type: string,
table: string,
record: object,
schema: string,
old_record: object,
) {
console.log("type", type);
console.log("table", table);
console.log("record", record);
console.log("schema", schema);
console.log("old_record", old_record);
return {
type,
table,
record,
schema,
old_record,
};
}
Submitted by hugo989 10 days ago