Skip to content

Commit afb07c1

Browse files
authored
Asana - Bug Fix for taskFields prop (#16491)
* bug fix * pnpm-lock.yaml * versions * updates
1 parent 4abcfa3 commit afb07c1

File tree

30 files changed

+46
-39
lines changed

30 files changed

+46
-39
lines changed

components/asana/actions/add-task-to-section/add-task-to-section.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Add Task To Section",
66
description: "Add a task to a specific, existing section. This will remove the task from other sections of the project. [See the documentation](https://developers.asana.com/docs/add-task-to-section)",
77
key: "asana-add-task-to-section",
8-
version: "0.2.8",
8+
version: "0.2.9",
99
type: "action",
1010
props: {
1111
...common.props,

components/asana/actions/create-project/create-project.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "asana-create-project",
66
name: "Create Project",
77
description: "Create a new project in a workspace or team. [See the documentation](https://developers.asana.com/docs/create-a-project)",
8-
version: "0.10.1",
8+
version: "0.10.2",
99
type: "action",
1010
props: {
1111
asana,

components/asana/actions/create-subtask/create-subtask.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "asana-create-subtask",
66
name: "Create Subtask",
77
description: "Creates a new subtask and adds it to the parent task. [See the documentation](https://developers.asana.com/docs/create-a-subtask)",
8-
version: "0.4.1",
8+
version: "0.4.2",
99
type: "action",
1010
props: {
1111
...common.props,

components/asana/actions/create-task-comment/create-task-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "asana-create-task-comment",
66
name: "Create Task Comment",
77
description: "Adds a comment to a task. [See the documentation](https://developers.asana.com/docs/create-a-story-on-a-task)",
8-
version: "0.2.8",
8+
version: "0.2.9",
99
type: "action",
1010
props: {
1111
...common.props,

components/asana/actions/create-task-from-template/create-task-from-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "Create Task from Template",
55
key: "asana-create-task-from-template",
66
description: "Creates a new task from a task template. [See the documentation](https://developers.asana.com/reference/instantiatetask)",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
props: {
1010
...common.props,

components/asana/actions/create-task/create-task.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "asana-create-task",
66
name: "Create Task",
77
description: "Creates a new task. [See the documentation](https://developers.asana.com/docs/create-a-task)",
8-
version: "0.4.1",
8+
version: "0.4.2",
99
type: "action",
1010
props: {
1111
...common.props,

components/asana/actions/delete-task/delete-task.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "asana-delete-task",
66
name: "Delete Task",
77
description: "Deletes a specific and existing task. [See the documentation](https://developers.asana.com/docs/delete-a-task)",
8-
version: "0.0.9",
8+
version: "0.0.10",
99
type: "action",
1010
props: {
1111
...common.props,

components/asana/actions/find-task-by-id/find-task-by-id.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "asana-find-task-by-id",
66
name: "Find Task by ID",
77
description: "Searches for a task by id. Returns the complete task record for a single task. [See the documentation](https://developers.asana.com/docs/get-a-task)",
8-
version: "0.2.8",
8+
version: "0.2.9",
99
type: "action",
1010
props: {
1111
...common.props,

components/asana/actions/get-tasks-from-task-list/get-tasks-from-task-list.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "asana-get-tasks-from-task-list",
55
name: "Get Tasks From Task List",
66
description: "Returns the compact list of tasks in a user’s My Tasks list. [See the documentation](https://developers.asana.com/reference/gettasksforusertasklist)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...common.props,

components/asana/actions/search-projects/search-projects.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import asana from "../../asana.app.mjs";
33
export default {
44
type: "action",
55
key: "asana-search-projects",
6-
version: "0.2.8",
6+
version: "0.2.9",
77
name: "Search Projects",
88
description: "Finds an existing project. [See the documentation](https://developers.asana.com/docs/get-multiple-projects)",
99
props: {

0 commit comments

Comments
 (0)