Skip to content

Commit 72af636

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-13275
2 parents 4d27e13 + 2c1ae19 commit 72af636

File tree

287 files changed

+7401
-525
lines changed

Some content is hidden

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

287 files changed

+7401
-525
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineApp } from "@pipedream/types";
2-
3-
export default defineApp({
1+
export default {
42
type: "app",
5-
app: "klipfolio",
3+
app: "alteryx_analytics_cloud",
64
propDefinitions: {},
75
methods: {
86
// this.$auth contains connected account data
97
authKeys() {
108
console.log(Object.keys(this.$auth));
119
},
1210
},
13-
});
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/alteryx_analytics_cloud",
3+
"version": "0.0.1",
4+
"description": "Pipedream Alteryx Analytics Cloud Components",
5+
"main": "alteryx_analytics_cloud.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"alteryx_analytics_cloud"
9+
],
10+
"homepage": "https://pipedream.com/apps/alteryx_analytics_cloud",
11+
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineApp } from "@pipedream/types";
2-
3-
export default defineApp({
1+
export default {
42
type: "app",
5-
app: "messagebird",
3+
app: "apaleo",
64
propDefinitions: {},
75
methods: {
86
// this.$auth contains connected account data
97
authKeys() {
108
console.log(Object.keys(this.$auth));
119
},
1210
},
13-
});
11+
};

components/apaleo/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/apaleo",
3+
"version": "0.0.1",
4+
"description": "Pipedream Apaleo Components",
5+
"main": "apaleo.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"apaleo"
9+
],
10+
"homepage": "https://pipedream.com/apps/apaleo",
11+
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/aws/actions/s3-download-file-to-tmp/s3-download-file-to-tmp.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ import { pipeline } from "stream/promises";
22
import fs from "fs";
33
import common from "../../common/common-s3.mjs";
44
import { toSingleLineString } from "../../common/utils.mjs";
5+
import "@aws-sdk/signature-v4-crt";
56

67
export default {
78
...common,
89
key: "aws-s3-download-file-to-tmp",
910
name: "S3 - Download File to /tmp",
1011
description: toSingleLineString(`
1112
Downloads a file from S3 to the /tmp directory.
12-
[See the docs](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
13+
[See the documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html)
1314
`),
14-
version: "0.0.1",
15+
version: "0.0.2",
1516
type: "action",
1617
props: {
1718
aws: common.props.aws,

components/aws/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/aws",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Pipedream Aws Components",
55
"main": "aws.app.mjs",
66
"keywords": [
@@ -26,6 +26,7 @@
2626
"@aws-sdk/client-ssm": "^3.58.0",
2727
"@aws-sdk/client-sts": "^3.58.0",
2828
"@aws-sdk/s3-request-presigner": "^3.609.0",
29+
"@aws-sdk/signature-v4-crt": "^3.731.0",
2930
"@pipedream/helper_functions": "^0.3.6",
3031
"@pipedream/platform": "^1.6.3",
3132
"adm-zip": "^0.5.10",
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineApp } from "@pipedream/types";
2-
3-
export default defineApp({
1+
export default {
42
type: "app",
5-
app: "listen_notes",
3+
app: "azure_api_for_fhir",
64
propDefinitions: {},
75
methods: {
86
// this.$auth contains connected account data
97
authKeys() {
108
console.log(Object.keys(this.$auth));
119
},
1210
},
13-
});
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/azure_api_for_fhir",
3+
"version": "0.0.1",
4+
"description": "Pipedream Azure API for FHIR Components",
5+
"main": "azure_api_for_fhir.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"azure_api_for_fhir"
9+
],
10+
"homepage": "https://pipedream.com/apps/azure_api_for_fhir",
11+
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "battle_net",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/battle_net/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/battle_net",
3+
"version": "0.0.1",
4+
"description": "Pipedream Blizzard Battle.net Components",
5+
"main": "battle_net.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"battle_net"
9+
],
10+
"homepage": "https://pipedream.com/apps/battle_net",
11+
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

0 commit comments

Comments
 (0)