Test fixes

This commit is contained in:
Dean 2025-01-30 12:33:04 +00:00
parent 1fd7685a7b
commit 7583864d73
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ describe("Branching automations", () => {
name: testName, name: testName,
}) })
const automation = await builder const automation = await builder
.webhook({ fields: { parameter: "string" } }) .webhook({ body: { parameter: "string" } })
.createRow({ .createRow({
row: { tableId: table._id!, name: "{{ trigger.parameter }}" }, row: { tableId: table._id!, name: "{{ trigger.parameter }}" },
}) })

View File

@ -297,7 +297,7 @@ export type RowUpdatedTriggerOutputs = {
row: Row row: Row
id: string id: string
revision?: string revision?: string
oldRow: Row oldRow?: Row
} }
export type WebhookTriggerInputs = { export type WebhookTriggerInputs = {