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
content: "**Important**: If your sheet has more than 1000 rows, please set the **Monitoring Range** below to avoid performance issues and potential disruptions. Example: `A1:Z1000` to monitor the first 1000 rows with columns A through Z.",
28
+
},
23
29
watchedDrive: {
24
30
propDefinition: [
25
31
googleSheets,
@@ -36,11 +42,50 @@ export default {
36
42
}),
37
43
],
38
44
},
39
-
...common.props,
45
+
worksheetIDs: {
46
+
propDefinition: [
47
+
googleSheets,
48
+
"worksheetIDs",
49
+
(c)=>({
50
+
sheetId: c.sheetID,
51
+
}),
52
+
],
53
+
type: "integer[]",
54
+
label: "Worksheet ID(s)",
55
+
description: "Select one or more worksheet(s), or provide an array of worksheet IDs.",
56
+
},
57
+
monitoringRange: {
58
+
type: "string",
59
+
label: "Monitoring Range",
60
+
description: "The A1 notation range to monitor for changes (e.g., `A1:B100` or `Sheet1!A1:Z1000`). If not specified, the entire sheet will be monitored up to 10000 rows. **Recommended for sheets with more than 1000 rows**.",
0 commit comments