Skip to content

Commit 875ee0c

Browse files
fix some docs links
1 parent 3b85f1a commit 875ee0c

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

docs-v2/pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To get started, [sign up for a free account](https://pipedream.com/auth/signup)
2525
Once you understand the basics of workflow development, learn how to get more out of Pipedream:
2626

2727
- [Use code in workflows](/workflows/building-workflows/code/)
28-
- [Develop custom actions](/workflows/contributing/components/quickstart/nodejs/actions/)
28+
- [Develop custom actions](/workflows/contributing/components/actions-quickstart/)
2929
- [Develop custom triggers](/workflows/contributing/components/quickstart/nodejs/sources/)
3030

3131
## Use Cases

docs-v2/pages/workflows/building-workflows/actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In your code steps with out of date actions, you'll see a button appear that wil
3030

3131
You can author your own actions on Pipedream, too. Anytime you need to reuse the same code across steps, consider making that an action.
3232

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).
3434

3535
You can also publish actions to [the Pipedream registry](/workflows/contributing/), which makes them available for anyone on Pipedream to use.
3636

docs-v2/pages/workflows/building-workflows/code/nodejs/sharing-code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pipedream provides two ways to share code across workflows:
99

1010
- **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.
1111

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/).
1313

1414
## Publish an action from a Node.js code step
1515

docs-v2/pages/workflows/building-workflows/code/python/working-with-files.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@ To avoid errors, assume that the `/tmp` directory is empty between workflow runs
111111
<Callout type="warning">
112112
Are File Stores helpers available for Python to download, upload and manage files?
113113

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.
115115
</Callout>

docs-v2/pages/workflows/building-workflows/control-flow/delay.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Delayed executions can hold one of three states:
3434
- **Resumed**: The workflow has been resumed at the end of its delay window automatically, or resumed manually
3535
- **Cancelled**: The execution was cancelled manually
3636

37-
You'll see the current state of an execution by [viewing its event data](/workflows/building-workflows/triggers/inspect/).
37+
You'll see the current state of an execution by [viewing its event data](/workflows/building-workflows/inspect/).
3838

3939
#### Cancelling or resuming execution manually
4040

docs-v2/pages/workflows/building-workflows/sources.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Generating test data manually can result in typos or missing fields that your wo
143143

144144
## Publishing a new event source, or modifying an existing source
145145

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.
147147

148148
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).
149149

docs-v2/pages/workflows/building-workflows/triggers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ If the presigned URL for the attachment has expired, then you'll need to send an
717717

718718
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.
719719

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.
721721

722722
## RSS
723723

docs-v2/pages/workflows/contributing/components/api.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Callout from '@/components/Callout'
66
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/).
77
</Callout>
88

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.
1010

1111
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.
1212

@@ -27,7 +27,7 @@ Components are Node.js modules that run on Pipedream's serverless infrastructure
2727

2828
### Quickstarts
2929

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.
3131

3232
### Differences between sources and actions
3333

@@ -956,7 +956,7 @@ All properties from [`steps.trigger.context`](/workflows/building-workflows/trig
956956
957957
### Environment variables
958958
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.
960960
961961
In sources, you can use [`secret` props](#props) to reference sensitive data.
962962
@@ -1096,7 +1096,7 @@ You can delete a component via the UI at [https://pipedream.com/sources](https:/
10961096
10971097
#### API
10981098
1099-
See the [REST API docs](/workflows/building-workflows/rest-api/).
1099+
See the [REST API docs](/rest-api/).
11001100
11011101
### Managing Actions
11021102

docs-v2/pages/workflows/contributing/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the Pipedream UI when building workflows.
1212
What is a component?
1313

1414
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.
1616
</Callout>
1717

1818
## Registry Components Structure

docs-v2/pages/workflows/data-management/file-stores/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export default defineComponent({
117117
})
118118
```
119119

120-
Once the file has been opened, you can [read, write, delete the file and more](/workflows/projects/file-stores/reference/).
120+
Once the file has been opened, you can [read, write, delete the file and more](/workflows/data-management/file-stores/reference/).
121121

122122
### Uploading files to File Stores
123123

0 commit comments

Comments
 (0)