Skip to content

Commit a149d10

Browse files
authored
Merge branch 'master' into master
2 parents c0f9c61 + c6c7db2 commit a149d10

File tree

4 files changed

+31
-2
lines changed

4 files changed

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

components/columns_ai/package.json

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

docs-v2/pages/rest-api/workflows.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ In the Get Workflow API response, you'll see two properties:
4848
* `triggers` - represents the triggers for the workflow.
4949
* `steps` - represents the series of steps within your workflow
5050

51-
`triggers` and `steps` contain [props](/workflows/steps/using-props/) that define the connected accounts as well as configuration.
51+
`triggers` and `steps` contain [props](/workflows/using-props) that define the connected accounts as well as configuration.
5252

5353
The next step is to learn how we can pass our specific connected accounts to app based props in the `steps` and/or `triggers` of the workflow template.
5454

@@ -252,4 +252,4 @@ Finally, send the request to create this new workflow with this payload we've de
252252
You should see the new workflow within your Pipedream dashboard under the workspace and project defined in the payload.
253253

254254
You can use this request to dynamically create new instances of the same workflow with different props, connected accounts and settings.
255-
</Steps>
255+
</Steps>

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)