diff --git a/src/connectors/mod.ts b/src/connectors/mod.ts index ebe6daf..275362c 100644 --- a/src/connectors/mod.ts +++ b/src/connectors/mod.ts @@ -1,4 +1,4 @@ -/** This file was autogenerated on Mon Sep 30 2024. Follow the steps in src/schema/slack/functions/README.md to rebuild **/ +/** This file was autogenerated on Mon Oct 21 2024. Follow the steps in src/schema/slack/functions/README.md to rebuild **/ import AdobeSign from "./adobe.sign/mod.ts"; import Airtable from "./airtable/mod.ts"; import Asana from "./asana/mod.ts"; diff --git a/src/connectors/smartsheet/functions/delete_row.ts b/src/connectors/smartsheet/functions/delete_row.ts index 4a2c1bb..3b1b4bc 100644 --- a/src/connectors/smartsheet/functions/delete_row.ts +++ b/src/connectors/smartsheet/functions/delete_row.ts @@ -12,7 +12,11 @@ export default DefineConnector({ description: "Select a Smartsheet", title: "Smartsheet", }, - select_row: { type: Schema.types.string, title: "Select a row" }, + select_row: { + type: Schema.types.string, + description: "Enter row ID, or search cell content to find a row", + title: "Select a row", + }, smartsheet_access_token: { type: Schema.slack.types.oauth2, description: "Which account should we use to fetch Smartsheets?", diff --git a/src/connectors/smartsheet/functions/select_row.ts b/src/connectors/smartsheet/functions/select_row.ts index 2b9d613..ce98c96 100644 --- a/src/connectors/smartsheet/functions/select_row.ts +++ b/src/connectors/smartsheet/functions/select_row.ts @@ -14,7 +14,7 @@ export default DefineConnector({ }, select_row: { type: Schema.types.string, - description: "Search a row with cell value", + description: "Enter row ID, or search cell content to find a row", title: "Select a row", }, smartsheet_access_token: { diff --git a/src/connectors/smartsheet/functions/update_row.ts b/src/connectors/smartsheet/functions/update_row.ts index c051cb2..57f8fa9 100644 --- a/src/connectors/smartsheet/functions/update_row.ts +++ b/src/connectors/smartsheet/functions/update_row.ts @@ -14,7 +14,7 @@ export default DefineConnector({ }, select_row: { type: Schema.types.string, - description: "Search a row with cell value", + description: "Enter row ID, or search cell content to find a row", title: "Select a row", }, updated_values: { type: Schema.types.object, title: "Updated values" },