You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/building-workflows/actions.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ In your code steps with out of date actions, you'll see a button appear that wil
30
30
31
31
You can author your own actions on Pipedream, too. Anytime you need to reuse the same code across steps, consider making that an action.
32
32
33
-
Start with our [action development quickstart](/workflows/contributing/components/quickstart/nodejs/actions/). You can read more about all the capabilities of actions in [our API docs](/workflows/contributing/components/api/), and review [example actions here](/workflows/contributing/components/api/#example-components).
33
+
Start with our [action development quickstart](/workflows/contributing/components/actions-quickstart/). You can read more about all the capabilities of actions in [our API docs](/workflows/contributing/components/api/), and review [example actions here](/workflows/contributing/components/api/#example-components).
34
34
35
35
You can also publish actions to [the Pipedream registry](/workflows/contributing/), which makes them available for anyone on Pipedream to use.
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/building-workflows/code/nodejs/sharing-code.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Pipedream provides two ways to share code across workflows:
9
9
10
10
-**Publish an action from a Node.js code step**. [Publish any Node.js code step as a reusable action](/workflows/building-workflows/code/nodejs/sharing-code/#publish-an-action-from-a-nodejs-code-step) from the Pipedream dashboard.
11
11
12
-
-**Create an action from code**. Develop your action code on your local filesystem and [publish to your Pipedream account using the Pipedream CLI](/workflows/contributing/components/quickstart/nodejs/actions/).
12
+
-**Create an action from code**. Develop your action code on your local filesystem and [publish to your Pipedream account using the Pipedream CLI](/workflows/contributing/components/actions-quickstart/).
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/building-workflows/code/python/working-with-files.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,5 +111,5 @@ To avoid errors, assume that the `/tmp` directory is empty between workflow runs
111
111
<Callouttype="warning">
112
112
Are File Stores helpers available for Python to download, upload and manage files?
113
113
114
-
At this time no, only Node.js includes a helper to interact with the [File Store](/workflows/projects/file-stores/) programmatically within workflows.
114
+
At this time no, only Node.js includes a helper to interact with the [File Store](/workflows/data-management/file-stores/) programmatically within workflows.
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/building-workflows/sources.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ Generating test data manually can result in typos or missing fields that your wo
143
143
144
144
## Publishing a new event source, or modifying an existing source
145
145
146
-
Anyone can create an event source or edit an existing one. The code for all event sources is public, and kept in the [`PipedreamHQ/pipedream` repo](https://github.com/PipedreamHQ/pipedream). [Read this quickstart](/workflows/contributing/components/quickstart/nodejs/sources/) and see the [event source API docs](/workflows/contributing/components/api/) to learn more about the source development process.
146
+
Anyone can create an event source or edit an existing one. The code for all event sources is public, and kept in the [`PipedreamHQ/pipedream` repo](https://github.com/PipedreamHQ/pipedream). [Read this quickstart](/workflows/contributing/components/sources-quickstart/) and see the [event source API docs](/workflows/contributing/components/api/) to learn more about the source development process.
147
147
148
148
You can chat about source development with the Pipedream team in the `#contribute` channel of our [public Slack](https://join.slack.com/t/pipedream-users/shared_invite/zt-ernlymsn-UHfPg~Dfp08uGkAd8dpkww), and in the `#dev` topic in the [Pipedream community](https://pipedream.com/community/c/dev/11).
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/building-workflows/triggers.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -717,7 +717,7 @@ If the presigned URL for the attachment has expired, then you'll need to send an
717
717
718
718
If you're using email attachments in combination with [`$.flow.delay`](/workflows/building-workflows/code/nodejs/delay/) or [`$.flow.rerun`](/workflows/building-workflows/code/nodejs/rerun/) which introduces a gap of time between steps in your workflow, then there's a chance the email attachment's URL will expire.
719
719
720
-
To overcome this, we suggest uploading your email attachments to your Project's [File Store](/workflows/projects/file-stores/) for persistent storage.
720
+
To overcome this, we suggest uploading your email attachments to your Project's [File Store](/workflows/data-management/file-stores/) for persistent storage.
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/contributing/components/api.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ import Callout from '@/components/Callout'
6
6
Our TypeScript component API is in **beta**. If you're interested in developing TypeScript components and providing feedback, [see our TypeScript docs](/workflows/contributing/components/typescript/).
7
7
</Callout>
8
8
9
-
This document was created to help developers author and use [Pipedream components](/workflows/contributing/components/). Not only can you develop [sources](/workflows/contributing/components/quickstart/nodejs/sources/) (workflow triggers) and [actions](/workflows/contributing/components/quickstart/nodejs/actions/) using the component API, but you can also develop [Node.js steps](/workflows/building-workflows/code/nodejs/) right in your workflows - without leaving your browser! You can publish components to your account for private use, or [contribute them to the Pipedream registry](/workflows/contributing/) for anyone to run.
9
+
This document was created to help developers author and use [Pipedream components](/workflows/contributing/components/). Not only can you develop [sources](/workflows/contributing/components/sources-quickstart/) (workflow triggers) and [actions](/workflows/contributing/components/actions-quickstart/) using the component API, but you can also develop [Node.js steps](/workflows/building-workflows/code/nodejs/) right in your workflows - without leaving your browser! You can publish components to your account for private use, or [contribute them to the Pipedream registry](/workflows/contributing/) for anyone to run.
10
10
11
11
While sources and actions share the same core component API, they differ in both how they're used and written, so certain parts of the component API apply only to one or the other. [This section of the docs](#differences-between-sources-and-actions) explains the core differences. When this document uses the term "component", the corresponding feature applies to both sources and actions. If a specific feature applies to only sources _or_ actions, the correct term will be used.
12
12
@@ -27,7 +27,7 @@ Components are Node.js modules that run on Pipedream's serverless infrastructure
27
27
28
28
### Quickstarts
29
29
30
-
To help you get started, we created a step-by-step walkthrough for developing both [sources](/workflows/contributing/components/quickstart/nodejs/sources/) and [actions](/workflows/contributing/components/quickstart/nodejs/actions/). We recommend starting with those docs and using the API reference below as you develop.
30
+
To help you get started, we created a step-by-step walkthrough for developing both [sources](/workflows/contributing/components/sources-quickstart/) and [actions](/workflows/contributing/components/actions-quickstart/). We recommend starting with those docs and using the API reference below as you develop.
31
31
32
32
### Differences between sources and actions
33
33
@@ -956,7 +956,7 @@ All properties from [`steps.trigger.context`](/workflows/building-workflows/trig
956
956
957
957
### Environment variables
958
958
959
-
[Environment variables](/workflows/building-workflows/environment-variables/) are not accessible within sources or actions directly. Since components can be used by anyone, you cannot guarantee that a user will have a specific variable set in their environment.
959
+
[Environment variables](/workflows/environment-variables/) are not accessible within sources or actions directly. Since components can be used by anyone, you cannot guarantee that a user will have a specific variable set in their environment.
960
960
961
961
In sources, you can use [`secret` props](#props) to reference sensitive data.
962
962
@@ -1096,7 +1096,7 @@ You can delete a component via the UI at [https://pipedream.com/sources](https:/
1096
1096
1097
1097
#### API
1098
1098
1099
-
See the [REST API docs](/workflows/building-workflows/rest-api/).
Copy file name to clipboardExpand all lines: docs-v2/pages/workflows/contributing/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ the Pipedream UI when building workflows.
12
12
What is a component?
13
13
14
14
If you haven't yet, we recommend starting with our Component Development Quickstart Guides for [sources](/workflows/contributing/components/quickstart/nodejs/sources/)
15
-
and [actions](/workflows/contributing/components/quickstart/nodejs/actions/) to learn how to build components and privately publish them to your account.
15
+
and [actions](/workflows/contributing/components/actions-quickstart/) to learn how to build components and privately publish them to your account.
0 commit comments