Skip to content

Commit

Permalink
Automated commit: Latest generated changes from schedule action (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
github-actions[bot] and WilliamBergamin authored Mar 19, 2024
1 parent 8413474 commit 1667fb9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
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

0 comments on commit 1667fb9

Please sign in to comment.