Skip to content

Commit a9b491f

Browse files
committed
Merge branch 'master' into biz/dj-2780-add-support-for-configurationerror-in-connect-react
2 parents 26fc774 + c360726 commit a9b491f

26 files changed

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

components/humanlayer/package.json

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

components/planhat/package.json

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

components/planhat/planhat.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: "planhat",
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/storerocket",
3+
"version": "0.0.1",
4+
"description": "Pipedream Storerocket Components",
5+
"main": "storerocket.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"storerocket"
9+
],
10+
"homepage": "https://pipedream.com/apps/storerocket",
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: "storerocket",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

packages/connect-react/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<!-- markdownlint-disable MD024 -->
22
# Changelog
33

4+
# [1.0.0-preview.27] - 2025-01-30
5+
6+
- Add styling to alerts
7+
8+
# [1.0.0-preview.26] - 2025-01-29
9+
10+
- No change
11+
412
# [1.0.0-preview.25] - 2025-01-28
513

614
- Show prop labels instead of values after selecting dynamic props

packages/connect-react/examples/nextjs/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)