diff --git a/src/connectors/asana/functions/create_task.ts b/src/connectors/asana/functions/create_task.ts index 256b8d4..208c31d 100644 --- a/src/connectors/asana/functions/create_task.ts +++ b/src/connectors/asana/functions/create_task.ts @@ -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", diff --git a/src/connectors/asana/functions/create_task_test.ts b/src/connectors/asana/functions/create_task_test.ts index 9435f46..ddc16fa 100644 --- a/src/connectors/asana/functions/create_task_test.ts +++ b/src/connectors/asana/functions/create_task_test.ts @@ -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); diff --git a/src/connectors/jira.cloud/functions/edit_issue.ts b/src/connectors/jira.cloud/functions/edit_issue.ts index df28c01..640d7fa 100644 --- a/src/connectors/jira.cloud/functions/edit_issue.ts +++ b/src/connectors/jira.cloud/functions/edit_issue.ts @@ -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, @@ -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", diff --git a/src/connectors/mod.ts b/src/connectors/mod.ts index e58d461..947b379 100644 --- a/src/connectors/mod.ts +++ b/src/connectors/mod.ts @@ -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";