Skip to content

Commit 3973339

Browse files
Merge branch 'master' into master
2 parents 1536cbc + 4756b93 commit 3973339

File tree

487 files changed

+11180
-13555
lines changed

Some content is hidden

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

487 files changed

+11180
-13555
lines changed

.github/workflows/publish-marketplace-content.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
shell: bash {0} # don't fast fail
4848
run: |
4949
printf -v added_modified_renamed_files '%s,%s' '${{ steps.files.outputs.added_modified }}' '${{ steps.files.outputs.renamed }}'
50-
pnpm dlx ts-node --esm scripts/updateMarketplaceReadme.mts $added_modified_renamed_files
50+
pnpm dlx tsx scripts/updateMarketplaceReadme.mts $added_modified_renamed_files

.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/algolia/actions/create-objects/create-objects.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "algolia-create-objects",
55
name: "Create Objects",
66
description: "Adds an array of JavaScript objects to the given index. [See docs here](https://www.algolia.com/doc/api-reference/api-methods/save-objects/)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
algolia,

components/algolia/actions/delete-objects/delete-objects.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "algolia-delete-objects",
55
name: "Delete Objects",
66
description: "Delete objects from the given index. [See docs here](https://www.algolia.com/doc/api-reference/api-methods/delete-objects/)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
algolia,

components/algolia/algolia.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import algoliasearch from "algoliasearch";
1+
import { algoliasearch } from "algoliasearch";
22

33
export default {
44
type: "app",

components/algolia/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/algolia",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Pipedream Algolia Components",
55
"main": "algolia.app.js",
66
"keywords": [

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,

0 commit comments

Comments
 (0)