Skip to content

Commit d205c6e

Browse files
committed
Merge branch 'master' into 14077-tricentis-new-components
2 parents 94b24bb + 491fb31 commit d205c6e

File tree

203 files changed

+5985
-169
lines changed

Some content is hidden

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

203 files changed

+5985
-169
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
done
3636
3737
echo "files=${files}" >> $GITHUB_ENV
38-
- uses: rojopolis/spellcheck-github-actions@0.40.0
38+
- uses: rojopolis/spellcheck-github-actions@0.42.0
3939
name: Spellcheck
4040
if: ${{ env.files }}
4141
with:

components/ambee/ambee.app.mjs

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: "ambee",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/ambee/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/ambee",
3+
"version": "0.0.1",
4+
"description": "Pipedream Ambee Components",
5+
"main": "ambee.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"ambee"
9+
],
10+
"homepage": "https://pipedream.com/apps/ambee",
11+
"author": "Pipedream <[email protected]> (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: "americommerce",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/americommerce",
3+
"version": "0.0.1",
4+
"description": "Pipedream AmeriCommerce Components",
5+
"main": "americommerce.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"americommerce"
9+
],
10+
"homepage": "https://pipedream.com/apps/americommerce",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/attio/attio.app.mjs

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: "attio",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/attio/package.json

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

components/azure_sql/actions/execute-query/execute-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Execute Query",
66
description: "Executes a SQL query and returns the results. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql?view=azuresqldb-current)",
77
type: "action",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
props: {
1010
app,
1111
query: {

components/azure_sql/actions/execute-raw-query/execute-raw-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Execute SQL Query",
66
description: "Execute a custom SQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.",
77
type: "action",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
props: {
1010
app,
1111
// eslint-disable-next-line pipedream/props-description

components/azure_sql/actions/insert-row/insert-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "azure_sql-insert-row",
55
name: "Insert Row",
66
description: "Inserts a new row in a table. [See the documentation](https://learn.microsoft.com/en-us/sql/t-sql/statements/insert-transact-sql?view=azuresqldb-current)",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
type: "action",
99
props: {
1010
app,

0 commit comments

Comments
 (0)