Skip to content

Commit f4f912d

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-14837
2 parents 666f736 + 84bba87 commit f4f912d

File tree

280 files changed

+7033
-12340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+7033
-12340
lines changed

.npmrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
auto-install-peers=true
22
enable-pre-post-scripts=true
33
save-workspace-protocol=false
4-
link-workspace-packages=false
4+
link-workspace-packages=false
5+
shamefully-hoist=true
6+
node-linker=hoisted
7+
shared-workspace-lockfile=true
8+
engine-strict=false

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.6",
8+
version: "0.2.7",
99
type: "action",
1010
props: {
1111
...common.props,

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

Lines changed: 7 additions & 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.9.6",
8+
version: "0.10.0",
99
type: "action",
1010
props: {
1111
asana,
@@ -93,6 +93,9 @@ export default {
9393
propDefinition: [
9494
asana,
9595
"users",
96+
({ workspace }) => ({
97+
workspace,
98+
}),
9699
],
97100
},
98101
html_notes: {
@@ -109,6 +112,9 @@ export default {
109112
propDefinition: [
110113
asana,
111114
"users",
115+
({ workspace }) => ({
116+
workspace,
117+
}),
112118
],
113119
},
114120
},

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

Lines changed: 7 additions & 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.3.6",
8+
version: "0.4.0",
99
type: "action",
1010
props: {
1111
...common.props,
@@ -34,6 +34,9 @@ export default {
3434
propDefinition: [
3535
asana,
3636
"users",
37+
({ workspace }) => ({
38+
workspace,
39+
}),
3740
],
3841
},
3942
assignee_section: {
@@ -75,6 +78,9 @@ export default {
7578
propDefinition: [
7679
asana,
7780
"users",
81+
({ workspace }) => ({
82+
workspace,
83+
}),
7884
],
7985
},
8086
html_notes: {

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.6",
8+
version: "0.2.7",
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.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
...common.props,

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

Lines changed: 7 additions & 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.3.6",
8+
version: "0.4.0",
99
type: "action",
1010
props: {
1111
...common.props,
@@ -29,6 +29,9 @@ export default {
2929
propDefinition: [
3030
asana,
3131
"users",
32+
({ workspace }) => ({
33+
workspace,
34+
}),
3235
],
3336
},
3437
assignee_section: {
@@ -70,6 +73,9 @@ export default {
7073
propDefinition: [
7174
asana,
7275
"users",
76+
({ workspace }) => ({
77+
workspace,
78+
}),
7379
],
7480
},
7581
html_notes: {

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.7",
8+
version: "0.0.8",
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.6",
8+
version: "0.2.7",
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.4",
7+
version: "0.0.5",
88
type: "action",
99
props: {
1010
...common.props,

0 commit comments

Comments
 (0)