41 lines
915 B
JavaScript
41 lines
915 B
JavaScript
|
exports.definition = {
|
||
|
name: "Row Updated",
|
||
|
event: "row:update",
|
||
|
icon: "ri-refresh-line",
|
||
|
tagline: "Row is updated in {{inputs.enriched.table.name}}",
|
||
|
description: "Fired when a row is updated in your database",
|
||
|
stepId: "ROW_UPDATED",
|
||
|
inputs: {},
|
||
|
schema: {
|
||
|
inputs: {
|
||
|
properties: {
|
||
|
tableId: {
|
||
|
type: "string",
|
||
|
customType: "table",
|
||
|
title: "Table",
|
||
|
},
|
||
|
},
|
||
|
required: ["tableId"],
|
||
|
},
|
||
|
outputs: {
|
||
|
properties: {
|
||
|
row: {
|
||
|
type: "object",
|
||
|
customType: "row",
|
||
|
description: "The row that was updated",
|
||
|
},
|
||
|
id: {
|
||
|
type: "string",
|
||
|
description: "Row ID - can be used for updating",
|
||
|
},
|
||
|
revision: {
|
||
|
type: "string",
|
||
|
description: "Revision of row",
|
||
|
},
|
||
|
},
|
||
|
required: ["row", "id"],
|
||
|
},
|
||
|
},
|
||
|
type: "TRIGGER",
|
||
|
}
|