Skip to content

Commit 5a1becf

Browse files
move images to public folder
1 parent 378d8bc commit 5a1becf

File tree

420 files changed

+218
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

420 files changed

+218
-219
lines changed

docs-v2/pages/account/billing-settings.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ If you've already upgraded, you'll see an option to **Manage Subscription** here
1616

1717
Hover over a specific column in the chart to see the number of credits run for that specific day:
1818

19-
![Daily credits tooltip](./images/daily-invocations-tooltip.png)
19+
![Daily credits tooltip](/images/account/daily-invocations-tooltip.png)
2020

2121
_Click_ on a specific column to see credits for that day, broken out by workflow / source:
2222

23-
![Credits broken out by workflow / source](./images/usage-by-resource.png)
23+
![Credits broken out by workflow / source](/images/account/usage-by-resource.png)
2424

2525
Users on the free tier will see the last 30 days of usage in this chart. Users on [paid plans](https://pipedream.com/pricing) will see the cumulative usage tied to their current billing period.
2626

docs-v2/pages/core/contributing/components/actions-quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ To test the action:
9696
3. Click the **+** button to add a step to your workflow
9797

9898
4. Click on **My Actions** and then select the **Action Demo** action to add it to your workflow.
99-
![Click on the My Actions button to show all of your privately published actions](./images/v3/using-private-actions.png)
99+
![Click on the My Actions button to show all of your privately published actions](/images/components/v3/using-private-actions.png)
100100
5. Deploy your workflow
101101

102102
6. Click **RUN NOW** to execute your workflow and action

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ When you define a prop in an app file, and that prop depends on the value of ano
303303

304304
You create Trello _boards_ for new projects. Boards contain _lists_. For example, this **Active** board contains two lists:
305305

306-
![Trello board example](./images/trello-board-example.png)
306+
![Trello board example](/images/components/trello-board-example.png)
307307

308308
In Pipedream, users can choose from lists on a specific board:
309309

310-
![Trello board and lists props](./images/trello-props.png)
310+
![Trello board and lists props](/images/components/trello-props.png)
311311

312312
Both **Board** and **Lists** are defined in the Trello app file:
313313

@@ -719,7 +719,7 @@ export default defineComponent({
719719
720720
Refer to GitHub's component sources in the `pipedream` repo for an [example implementation](https://github.com/PipedreamHQ/pipedream/blob/b447d71f658d10d6a7432e8f5153bbda56ba9810/components/github/sources/common/common-flex.mjs#L27).
721721
722-
![Info alert prop in GitHub source](./images/info-alert-prop-github.png)
722+
![Info alert prop in GitHub source](/images/components/info-alert-prop-github.png)
723723
724724
#### Limits on props
725725
@@ -903,7 +903,7 @@ async run({ $ }) {
903903
904904
`$.summary` is used to surface brief, user-friendly summaries about what happened when an action step succeeds. For example, when [adding items to a Spotify playlist](https://github.com/PipedreamHQ/pipedream/blob/master/components/spotify/actions/add-items-to-playlist/add-items-to-playlist.mjs#L51):
905905
906-
![Spotify example with $summary](./images/spotify-$summary-example.png)
906+
![Spotify example with $summary](/images/components/spotify-$summary-example.png)
907907
908908
Example implementation:
909909

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ Examples:
470470
understand what values they can enter, with specific values highlighted using
471471
backticks and links to external content.
472472

473-
![image-20210326151706682](./images/image-20210326151706682.png)
473+
![image-20210326151706682](/images/components/image-20210326151706682.png)
474474

475475
### Optional vs Required Props
476476

@@ -482,7 +482,7 @@ connect their account and enter a search term. The remaining fields are optional
482482
for users who want to filter the results, but they do not require any action to
483483
activate the source:
484484

485-
![image-20210326151930885](./images/image-20210326151930885.png)
485+
![image-20210326151930885](/images/components/image-20210326151930885.png)
486486

487487
### Default Values
488488

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ Private action components published from the [CLI](/workflows/cli/reference/#pd-
6060

6161
To use a published action, add a new step to your workflow and click **My Actions**. Your privately published action components will appear in this list.
6262

63-
![Use the "My Actions" section in a new step to include your private actions](./images/v3/using-private-actions.png)
63+
![Use the "My Actions" section in a new step to include your private actions](/images/components/v3/using-private-actions.png)
6464

6565
### Using Private Sources
6666

6767
Private source components deployed from your account via the [CLI](/workflows/cli/reference/#pd-deploy) will automatically create a new Source in your account with the prop configuration you specified.
6868

6969
Then in the workflow builder, when creating the trigger, select the *Existing* sources tab in the upper right corner to select your deployed source:
7070

71-
![Selecting a pre-exisiting deployed source as the trigger for the workflow](./images/v3/using-private-sources.png)
71+
![Selecting a pre-exisiting deployed source as the trigger for the workflow](/images/components/v3/using-private-sources.png)
7272

7373
You can also deploy new instances of a source from the [Components dashboard](https://res.cloudinary.com/pipedreamin/image/upload/v1618550730/docs/components/image-20210411165325045_ia5sd5.png). To deploy a new instance of a source, click the menu on the right hand side and select **Create source**.
7474

docs-v2/pages/core/contributing/components/sources-quickstart.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Open the URL returned by the CLI (`https://pipedream.com/sources/dc_v3uXKz` in t
106106

107107
Then click **RUN NOW** to invoke your source. Your event will appear in real-time, and you can select it to inspect the emitted data.
108108

109-
![source](./images/quickstart/hello-world-1.gif)
109+
![source](/images/components/quickstart/hello-world-1.gif)
110110

111111
### Maintain state across executions
112112

@@ -165,7 +165,7 @@ export default {
165165

166166
Save the changes to your local file. Your component on Pipedream should automatically update. Return to the Pipedream UI and press **RUN NOW** — you should see the execution count appear in the event list.
167167

168-
![source](./images/quickstart/hello-world-2.gif)
168+
![source](/images/components/quickstart/hello-world-2.gif)
169169

170170
### Invoke your code on a schedule
171171

@@ -212,7 +212,7 @@ export default {
212212

213213
Save the changes to your file (your component on Pipedream should automatically update). and then, return to the Pipedream UI and **reload the page**. You should now see the timer settings in the summary and a countdown to the next execution (you can still run your component manually). Your component will now run every 15 minutes.
214214

215-
![source](./images/quickstart/hello-world-3.gif)
215+
![source](/images/components/quickstart/hello-world-3.gif)
216216

217217
**Note**: if you'd like to change the schedule of your deployed component, visit the **Configuration** tab in the Pipedream UI and change the schedule accordingly. Changing the value of `intervalSeconds` within the component's code will not change the schedule of the running instance of the component. You can also set one value as the default `intervalSeconds` in the component's code, but run
218218

@@ -298,7 +298,7 @@ curl -d '{ "message": "hello world!" }' \
298298
"INSERT-YOUR-ENDPOINT-URL-HERE"
299299
```
300300

301-
![source](./images/quickstart/hello-world-4.gif)
301+
![source](/images/components/quickstart/hello-world-4.gif)
302302

303303
## Emit new RSS items on a schedule (~10 mins)
304304

docs-v2/pages/core/data-management/data-stores.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ To insert data into a data store:
3434
2. Search for the **Data Stores** app and select it.
3535
3. Select the **Add or update a single record** pre-built action.
3636

37-
![Insert a single row into a data store](pages/images/v3/data-stores/add-or-update-a-single-record.png)
37+
![Insert a single row into a data store](/images/data-stores/add-or-update-a-single-record.png)
3838

3939
Configure the action:
4040

4141
1. **Select or create a Data Store** — create a new data store or choose an existing data store.
4242
2. **Key** - the unique ID for this data that you'll use for lookup later
4343
3. **Value** - The data to store at the specified `key`
4444

45-
![Configure the action](pages/images/v3/data-stores/configuring-data-store-update-action.png)
45+
![Configure the action](/images/data-stores/configuring-data-store-update-action.png)
4646

4747
For example, to store the timestamp when the workflow was initially triggered, set the **Key** to **Triggered At** and the **Value** to `{{steps.trigger.context.ts}}`.
4848

4949
The **Key** must evaluate to a string. You can pass a static string, reference [exports](/workflows/#step-exports) from a previous step, or use [any valid expression](/core/workflows/using-props#entering-expressions).
5050

51-
![Workflow trigger example](pages/images/v3/data-stores/update-data-store-key-by-reference.png)
51+
![Workflow trigger example](/images/data-stores/update-data-store-key-by-reference.png)
5252

5353
<Callout type="info">
5454
Need to store multiple records in one action? Use the **Add or update multiple
@@ -63,7 +63,7 @@ The **Get record** action will retrieve the latest value of a data point in one
6363
2. Search for the **Data Stores** app and select it.
6464
3. Select the **Add or update a single record** pre-built action.
6565

66-
![Create a get record action](pages/images/v3/data-stores/get-a-record-action-selection.png)
66+
![Create a get record action](/images/data-stores/get-a-record-action-selection.png)
6767

6868
Configure the action:
6969

@@ -72,13 +72,13 @@ Configure the action:
7272
3. **Create new record if key is not found** - if the specified key isn't found, you can create a new record
7373
4. **Value** - The data to store at the specified `key`
7474

75-
![Get record action](pages/images/v3/data-stores/configure-data-store-retrieve-record.png)
75+
![Get record action](/images/data-stores/configure-data-store-retrieve-record.png)
7676

7777
### Deleting Data
7878

7979
To delete a single record from your data store, use the **Delete a single record** action in a step:
8080

81-
![Select the delete record step](pages/images/v3/data-stores/select-delete-a-record.png)
81+
![Select the delete record step](/images/data-stores/select-delete-a-record.png)
8282

8383
Then configure the action:
8484

@@ -87,7 +87,7 @@ Then configure the action:
8787

8888
For example, you can delete the data at the **Triggered At** key that we've created in the steps above:
8989

90-
![Delete a record example](pages/images/v3/data-stores/delete-a-single-record.png)
90+
![Delete a record example](/images/data-stores/delete-a-single-record.png)
9191

9292
Deleting a record does not delete the entire data store. [To delete an entire data store, use the Pipedream Data Stores Dashboard](#deleting-data-stores).
9393

Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)