Skip to content

Commit 23ad1ac

Browse files
fix http urls
1 parent fe22e40 commit 23ad1ac

File tree

24 files changed

+46
-49
lines changed

24 files changed

+46
-49
lines changed

docs-v2/pages/core/cli/install.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Download the appropriate [Linux CLI build](#cli-builds) for your architecture. U
5252

5353
## CLI Builds
5454

55-
Pipedream publishes the following builds of the CLI. If you need to use the CLI on another OS or architecture, [please reach out](https://docs.pipedream.com/support/).
55+
Pipedream publishes the following builds of the CLI. If you need to use the CLI on another OS or architecture, [please reach out](https://pipedream.com/support/).
5656

5757
| Operating System | Architecture | link |
5858
| ---------------- | ------------ | ----------------------------------------------------------------- |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ pd deploy my-source.js
10261026
10271027
##### From Pipedream Github Repo
10281028
1029-
You can explore the components available to deploy in [Pipedream's GitHub repo](https://github.com/pipedreamhq/pipedream/tree/master/components).
1029+
You can explore the components available to deploy in [Pipedream's GitHub repo](https://github.com/PipedreamHQ/pipedream/tree/master/components).
10301030
10311031
```bash
10321032
pd deploy <source-key>

docs-v2/pages/core/contributing/components/guidelines.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ filters events for only new star activity so the user doesn't have to.
107107

108108
There may be cases where it's valuable to create a generic component that
109109
provides users with broad latitude (e.g., see the [custom
110-
webhook](https://github.com/pipedreamhq/pipedream/blob/master/components/github/sources/custom-webhook-events)
110+
webhook](https://github.com/PipedreamHQ/pipedream/blob/master/components/github/sources/custom-webhook-events)
111111
event source for GitHub). However, as a general heuristic, we found that tightly
112112
scoped components are easier for users to understand and use.
113113

@@ -190,7 +190,7 @@ Registry components are organized by app in the `components` directory of the
190190
(-) (i.e., in kebab case)
191191

192192
You can explore examples in the [components
193-
directory](https://github.com/pipedreamhq/pipedream/tree/master/components).
193+
directory](https://github.com/PipedreamHQ/pipedream/tree/master/components).
194194

195195
#### Using APIs vs Client Libraries
196196

docs-v2/pages/core/contributing/components/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import VideoPlayer from '@/components/VideoPlayer'
77

88
Components are [Node.js modules](api/#component-structure) that run on Pipedream's serverless infrastructure. They can use Pipedream managed auth for [{process.env.PUBLIC_APPS}+ apps](https://pipedream.com/explore) (for both OAuth and key-based APIs) and [use most npm packages](api/#using-npm-packages) with no `npm install` or `package.json` required.
99

10-
Components are most commonly used as the building blocks of Pipedream workflows, but they can also be used like typical serverless functions. You can explore curated components for popular apps in Pipedream's [Marketplace](https://pipedream.com/explore) and [GitHub repo](https://github.com/pipedreamhq/pipedream/tree/master/components) or you can author and share your own.
10+
Components are most commonly used as the building blocks of Pipedream workflows, but they can also be used like typical serverless functions. You can explore curated components for popular apps in Pipedream's [Marketplace](https://pipedream.com/explore) and [GitHub repo](https://github.com/PipedreamHQ/pipedream/tree/master/components) or you can author and share your own.
1111

1212
<Callout type="info">
1313
Our TypeScript component API is in **beta**. If you're interested in developing TypeScript components and providing feedback, [see our TypeScript docs](/core/contributing/components/typescript/).
@@ -99,7 +99,7 @@ Finally, the target app must be integrated with Pipedream. You can explore all a
9999

100100
### Component API Reference
101101

102-
After getting familiar with source/action development using the quickstart guides, check out [the Component API Reference](/core/contributing/components/api//) and [examples on GitHub](https://github.com/pipedreamhq/pipedream/tree/master/components) to learn more.
102+
After getting familiar with source/action development using the quickstart guides, check out [the Component API Reference](/core/contributing/components/api//) and [examples on GitHub](https://github.com/PipedreamHQ/pipedream/tree/master/components) to learn more.
103103

104104
## Managing Privately Published Components
105105

docs-v2/pages/core/contributing/components/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ During the beta, the `@pipedream/types` package and other TypeScript configurati
1414

1515
## Why TypeScript?
1616

17-
Most Pipedream components in [the registry](https://github.com/PipedreamHQ/pipedream/) are written in Node.js. Writing components in TypeScript can reduce bugs and speed up development, with very few changes to your code.
17+
Most Pipedream components in [the registry](https://github.com/PipedreamHQ/pipedream) are written in Node.js. Writing components in TypeScript can reduce bugs and speed up development, with very few changes to your code.
1818

1919
If you haven't written TypeScript, start with [this tutorial](https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html).
2020

@@ -26,7 +26,7 @@ If you've never developed Pipedream components before, [start here](/core/contri
2626

2727
### Developing TypeScript components in the `PipedreamHQ/pipedream` registry
2828

29-
1. [Fork and clone the repo](https://github.com/PipedreamHQ/pipedream/).
29+
1. [Fork and clone the repo](https://github.com/PipedreamHQ/pipedream).
3030

3131
2. Run `pnpm install` to install dependencies.
3232

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { FileTree } from 'nextra/components'
33

44
# Pipedream Registry
55

6-
When developing workflows with pre-built actions and triggers, under the hood you're using [components](/core/contributing/components/) from the [Pipedream Registry Github Repository](https://github.com/pipedreamhq/pipedream).
6+
When developing workflows with pre-built actions and triggers, under the hood you're using [components](/core/contributing/components/) from the [Pipedream Registry Github Repository](https://github.com/PipedreamHQ/pipedream).
77

8-
Components contributed to the [Pipedream Registry Github Repository](https://github.com/pipedreamhq/pipedream) are published to the [Pipedream marketplace](https://pipedream.com/apps) and are listed in
8+
Components contributed to the [Pipedream Registry Github Repository](https://github.com/PipedreamHQ/pipedream) are published to the [Pipedream marketplace](https://pipedream.com/apps) and are listed in
99
the Pipedream UI when building workflows.
1010

1111
<Callout type="info">
@@ -58,7 +58,7 @@ Anyone from the community can build [sources](/core/workflows/triggers/) and [ac
5858

5959
To submit new components or update existing components:
6060

61-
1. Fork the public [Pipedream Registry Github Repository](https://github.com/pipedreamhq/pipedream).
61+
1. Fork the public [Pipedream Registry Github Repository](https://github.com/PipedreamHQ/pipedream).
6262
2. Create a new component within the corresponding app's directory within the `components` directory (if applicable).
6363
3. [Create a PR for the Pipedream team to review](https://github.com/PipedreamHQ/pipedream/compare).
6464
4. Address any feedback provided by Pipedream based on the best practice [Component Guidelines & Patterns](/core/contributing/components/guidelines/).
@@ -85,15 +85,15 @@ actions for Pipedream's registry.
8585

8686
| Name | App | Type |
8787
| ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | -------------------------------------------- |
88-
| [New Card](https://github.com/pipedreamhq/pipedream/blob/master/components/trello/sources/new-card/new-card.mjs) | Trello | Webhook |
89-
| [New or Modified Files](https://github.com/pipedreamhq/pipedream/blob/master/components/google_drive/sources/new-or-modified-files/new-or-modified-files.mjs) | Google Drive | Webhook + Polling |
90-
| [New Submission](https://github.com/pipedreamhq/pipedream/blob/master/components/jotform/sources/new-submission/new-submission.mjs) | Jotform | Webhook (with no unique hook ID) |
88+
| [New Card](https://github.com/PipedreamHQ/pipedream/blob/master/components/trello/sources/new-card/new-card.mjs) | Trello | Webhook |
89+
| [New or Modified Files](https://github.com/PipedreamHQ/pipedream/blob/master/components/google_drive/sources/new-or-modified-files/new-or-modified-files.mjs) | Google Drive | Webhook + Polling |
90+
| [New Submission](https://github.com/PipedreamHQ/pipedream/blob/master/components/jotform/sources/new-submission/new-submission.mjs) | Jotform | Webhook (with no unique hook ID) |
9191

9292
### Reference Actions
9393

9494
| Name | App |
9595
| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
9696
| [Add Multiple Rows](https://github.com/PipedreamHQ/pipedream/blob/master/components/google_sheets/actions/add-multiple-rows/add-multiple-rows.mjs) | Google Sheets |
97-
| [Send Message](https://github.com/PipedreamHQ/pipedream/blob/master/components/discord_webhook/actions/send-message/send-message.mjs) | Discord |
97+
| [Send Message](https://github.com/PipedreamHQ/pipedream/blob/master/components/discord_bot/actions/send-message/send-message.mjs) | Discord |
9898
| [Append Text](https://github.com/PipedreamHQ/pipedream/blob/master/components/google_docs/actions/append-text/append-text.mjs) | Google Docs |
9999
| [`GET` request](https://github.com/PipedreamHQ/pipedream/blob/master/components/http/actions/get-request/get-request.mjs) | HTTP |

docs-v2/pages/core/environment-variables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ You can reference the value of environment variables using `{{process.env.YOUR_E
115115
/>
116116

117117
<Callout type="info">
118-
[Private components](https://pipedream.com/docs/workflows/contributing/components#using-components) (actions or triggers) do not have direct access to workspace or project variables as public components or code steps. Add a prop specifically for the variable you need. For sensitive data like API keys, [configure the prop as a secret](https://pipedream.com/docs/workflows/contributing/components/api#props). In your prop configuration, set the value to `{{process.env.YOUR_ENV_VAR}}` to securely reference the environment variable.
118+
[Private components](/core/contributing/components/#using-components) (actions or triggers) do not have direct access to workspace or project variables as public components or code steps. Add a prop specifically for the variable you need. For sensitive data like API keys, [configure the prop as a secret](/core/contributing/components/api/#props). In your prop configuration, set the value to `{{process.env.YOUR_ENV_VAR}}` to securely reference the environment variable.
119119
</Callout>
120120

121121
## Frequently Asked Questions

docs-v2/pages/core/event-history.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import ArcadeEmbed from '@/components/ArcadeEmbed'
44

55
# Event History
66

7-
Monitor all workflow events and their stack traces in one centralized view under the [**Event History**](https://pipedream.com/workflows/event-history) section in the dashboard.
7+
Monitor all workflow events and their stack traces in one centralized view under the [**Event History**](https://pipedream.com/event-history) section in the dashboard.
88

99
Within the **Event History**, you'll be able to filter your events by workflow, execution status, within a specific time range.
1010

docs-v2/pages/core/git.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,9 @@ Yes, you can use the GitHub Syncing feature to develop your workflows from YAML
195195
Then pushing changes to the `production` branch will trigger a deploy for your Pipedream workflows.
196196

197197
### Why am I seeing the error "could not resolve step[index].uses: component-key@version" when merging to production?
198-
This error occurs when a workflow references a [private component](https://pipedream.com/docs/workflows/contributing/components#using-private-actions) without properly prefixing the component key with your workspace name in the `workflow.yaml` configuration file. Pipedream requires this prefix to correctly identify and resolve components specific to your workspace.
198+
This error occurs when a workflow references a [private component](/core/contributing/components/#using-private-actions) without properly prefixing the component key with your workspace name in the `workflow.yaml` configuration file. Pipedream requires this prefix to correctly identify and resolve components specific to your workspace.
199199

200-
For example, if you modified a [registry action](https://pipedream.com/docs/apps/contributing) and published it privately, the correct component key should be formatted as `@workspacename/component-key@version` (e.g., `@pipedream/[email protected]`).
200+
For example, if you modified a [registry action](/core/contributing/) and published it privately, the correct component key should be formatted as `@workspacename/component-key@version` (e.g., `@pipedream/[email protected]`).
201201

202202
To resolve this error:
203203

@@ -206,7 +206,7 @@ To resolve this error:
206206
3. Add your workspace name prefix to the component key, ensuring it follows the format `@workspacename/component-key@version`.
207207
4. Commit your changes and push them to your repository.
208208
5. Open your project in the Pipedream UI and select your development branch.
209-
6. Click on **Merge to Production** and verify the deployment success in the [Changelog](https://pipedream.com/docs/workflows/git#use-the-changelog).
209+
6. Click on **Merge to Production** and verify the deployment success in the [Changelog](/core/git/#use-the-changelog).
210210
7. If the issue persists, [reach out to Pipedream Support](https://pipedream.com/support) for further assistance.
211211

212212
### Why am I seeing an error about "private auth mismatch" when trying to merge a branch to production?

docs-v2/pages/core/projects/access-controls.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Workspace owners and admins are able to perform all actions in projects, whereas
2424
| Operation | Project creator | Workspace members |
2525
| ------------------------------------------------------------ | :-------------: | :---------------: |
2626
| View in [projects listing](https://pipedream.com/projects) |||
27-
| View in [Event History](https://pipedream.com/workflows/event-history) |||
27+
| View in [Event History](https://pipedream.com/event-history) |||
2828
| View in global search |||
2929
| Manage project workflows |||
3030
| Manage project files |||

0 commit comments

Comments
 (0)