Skip to content

Commit 8e9d55c

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-16183
2 parents f4aa1ab + 2738d71 commit 8e9d55c

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

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

components/hamsa/package.json

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

docs-v2/pages/connect/api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ Reload the component's props after configuring a dynamic prop, based on the
15981598
current component's configuration. This endpoint will use the component's
15991599
configuration to retrieve a new list of props depending on the value of the
16001600
props that were configured so far. See the [Dynamic
1601-
Props](/workflows/contributing/components#dynamic-props-optional) section for more information.
1601+
Props](/connect/components/#configure-dynamic-props-optional) section for more information.
16021602

16031603
```text
16041604
GET /{component_type}/props

pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)