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

Merged
merged 1 commit into from
Mar 19, 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
1 change: 1 addition & 0 deletions src/connectors/asana/functions/create_task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export default DefineConnector({
},
output_parameters: {
properties: {
task_gid: { type: Schema.types.string, title: "Task ID" },
assignee: {
type: Schema.types.string,
description: "The name of the user assigned to the task",
Expand Down
1 change: 1 addition & 0 deletions src/connectors/asana/functions/create_task_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Deno.test("All outputs of Slack function CreateTask should exist", () => {
name: "test",
asana_access_token: "test",
});
assertExists(step.outputs.task_gid);
assertExists(step.outputs.assignee);
assertExists(step.outputs.task_name);
assertExists(step.outputs.start_at);
Expand Down
5 changes: 2 additions & 3 deletions src/connectors/jira.cloud/functions/edit_issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default DefineConnector({
project: { type: Schema.types.string, title: "Project" },
issue_id: {
type: Schema.types.string,
description: "Search issue",
title: "Issue key",
description: "Issue ID",
title: "Issue ID",
},
priority: {
type: Schema.types.string,
Expand All @@ -39,7 +39,6 @@ export default DefineConnector({
description: "Description of the bug or issue...",
title: "Description",
},
custom_fields: { type: Schema.types.object, title: "Additional inputs" },
},
required: [
"atlassian_access_token",
Expand Down
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 Mar 11 2024. Follow the steps in src/schema/slack/functions/README.md to rebuild **/
/** This file was autogenerated on Mon Mar 18 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
Loading