You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/google_sheets/sources/common/new-row-added.mjs
+65-1Lines changed: 65 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,20 @@ export default {
20
20
label: "Worksheet ID(s)",
21
21
description: "Select one or more worksheet(s), or provide an array of worksheet IDs.",
22
22
},
23
+
hasHeaders: {
24
+
type: "boolean",
25
+
label: "Has Headers",
26
+
description: "Set to true if your spreadsheet contains column headers. When enabled, webhook responses will use column headers as keys instead of positional array indices.",
27
+
default: false,
28
+
optional: true,
29
+
},
30
+
headerRow: {
31
+
type: "integer",
32
+
label: "Header Row Number",
33
+
description: "The row number containing the column headers (e.g., 1 for the first row). Only used when 'Has Headers' is enabled.",
0 commit comments