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 #67

Closed
wants to merge 1 commit into from
Closed
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 Oct 28 2024. Follow the steps in src/schema/slack/functions/README.md to rebuild **/
/** This file was autogenerated on Mon Dec 09 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
2 changes: 1 addition & 1 deletion src/connectors/salesforce/functions/create_record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default DefineConnector({
output_parameters: {
properties: {
success: { type: Schema.types.boolean, title: "Response" },
record_id: { type: Schema.types.string, title: "Record ID" },
record_id: { type: undefined, title: "Record ID" },
record_url: { type: Schema.types.string, title: "Record URL" },
},
required: [],
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/salesforce/functions/delete_record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default DefineConnector({
title: "Salesforce object",
},
record_id: {
type: Schema.types.string,
type: undefined,
description: "Ex: 1000000000Abcd",
title: "Record ID",
},
Expand All @@ -32,7 +32,7 @@ export default DefineConnector({
output_parameters: {
properties: {
code: { type: Schema.types.integer, title: "Response" },
record_id: { type: Schema.types.string, title: "Record ID" },
record_id: { type: undefined, title: "Record ID" },
},
required: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/connectors/salesforce/functions/read_record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default DefineConnector({
description: "Salesforce Object",
title: "Salesforce object",
},
record_id: { type: Schema.types.string, title: "Record" },
record_id: { type: undefined, title: "Record" },
salesforce_access_token: {
type: Schema.slack.types.oauth2,
title: "Salesforce Access Token",
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/salesforce/functions/update_record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default DefineConnector({
description: "Select an option...",
title: "Salesforce object",
},
record_id: { type: Schema.types.string, title: "Record" },
record_id: { type: undefined, title: "Record" },
updates: { type: Schema.types.object, title: "Updates" },
salesforce_access_token: {
type: Schema.slack.types.oauth2,
Expand All @@ -30,7 +30,7 @@ export default DefineConnector({
properties: {
code: { type: Schema.types.integer, title: "Response" },
record_url: { type: Schema.types.string, title: "Record URL" },
record_id: { type: Schema.types.string, title: "Record ID" },
record_id: { type: undefined, title: "Record ID" },
},
required: [],
},
Expand Down
Loading