Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Latest generated changes #60

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/connectors/mod.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
6 changes: 5 additions & 1 deletion src/connectors/smartsheet/functions/delete_row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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?",
Expand Down
2 changes: 1 addition & 1 deletion src/connectors/smartsheet/functions/select_row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion src/connectors/smartsheet/functions/update_row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
Loading