Skip to content

Commit 40003d3

Browse files
Merge branch 'master' into danny/404-redirect-handling
2 parents 0e9a3f3 + 43747d1 commit 40003d3

File tree

6 files changed

+53
-26
lines changed

6 files changed

+53
-26
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/sage_intacct",
3+
"version": "0.0.1",
4+
"description": "Pipedream Sage Intacct Components",
5+
"main": "sage_intacct.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"sage_intacct"
9+
],
10+
"homepage": "https://pipedream.com/apps/sage_intacct",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "sage_intacct",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

docs-v2/pages/connect/api.mdx

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,9 @@ curl -X POST https://api.pipedream.com/v1/connect/{project_id}/tokens \
383383

384384
### Accounts
385385

386-
#### List all accounts
386+
#### List All Accounts
387387

388-
List all connected accounts for all end users within a project.
388+
List all connected accounts for all externalusers within a project.
389389

390390
```
391391
GET /{project_id}/accounts/
@@ -650,7 +650,7 @@ curl -X GET \
650650
}
651651
```
652652

653-
#### Retrieve account details by ID
653+
#### Retrieve Account Details by ID
654654

655655
Retrieve the account details for a specific account based on the account ID
656656

@@ -823,9 +823,9 @@ curl -X GET \
823823
}
824824
```
825825

826-
#### Delete connected account
826+
#### Delete Connected Account
827827

828-
Delete a specific connected account for an end user, and any deployed triggers.
828+
Delete a specific connected account for an external user, and any deployed triggers.
829829

830830
```
831831
DELETE /{project_id}/accounts/{account_id}
@@ -910,7 +910,7 @@ curl -X DELETE "https://api.pipedream.com/v1/connect/{project_id}/accounts/{acco
910910

911911
Pipedream returns a `204 No Content` response on successful account deletion
912912

913-
#### Delete all connected accounts for an app
913+
#### Delete All Connected Accounts for an App
914914

915915
Delete all connected accounts for a specific app
916916

@@ -999,9 +999,9 @@ curl -X DELETE "https://api.pipedream.com/v1/connect/{project_id}/accounts/{acco
999999

10001000
Pipedream returns a `204 No Content` response on successful account deletion
10011001

1002-
#### Delete end user
1002+
#### Delete External User
10031003

1004-
Delete an end user, all their connected accounts, and any deployed triggers.
1004+
Delete an external user, all their connected accounts, and any deployed triggers.
10051005

10061006
```
10071007
DELETE /{project_id}/users/{external_user_id}
@@ -1091,7 +1091,7 @@ Pipedream returns a `204 No Content` response on successful account deletion
10911091

10921092
### Components
10931093

1094-
#### List components
1094+
#### List Components
10951095

10961096
List all the components in the Pipedream registry.
10971097

@@ -1239,7 +1239,7 @@ curl -X GET "https://api.pipedream.com/v1/connect/{your_project_id}/components?a
12391239
```
12401240

12411241

1242-
#### Retrieve a component
1242+
#### Retrieve Component
12431243

12441244
Retrieve a specific component from the Pipedream registry.
12451245

@@ -1378,7 +1378,7 @@ curl -X GET "https://api.pipedream.com/v1/connect/{your_project_id}/components/g
13781378

13791379

13801380

1381-
#### Configure a component
1381+
#### Configure Component
13821382

13831383
Configure the a component's prop, based on the current component's
13841384
configuration. This endpoint will use the component's configuration to retrieve
@@ -1592,7 +1592,7 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/components/
15921592
}
15931593
```
15941594

1595-
#### Reload a component's props (i.e. configure dynamic props)
1595+
#### Reload Component Props
15961596

15971597
Reload the component's props after configuring a dynamic prop, based on the
15981598
current component's configuration. This endpoint will use the component's
@@ -1820,7 +1820,7 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/components/
18201820
}
18211821
```
18221822

1823-
#### Invoke an action
1823+
#### Invoke Action
18241824

18251825
Invoke an action component for a Pipedream Connect user in a project.
18261826

@@ -2009,7 +2009,7 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/actions/run
20092009
}
20102010
```
20112011

2012-
#### Deploy a trigger
2012+
#### Deploy Trigger
20132013

20142014
<Callout type="info">
20152015
See [here](/connect/components/#deploying-triggers) for more info on supported trigger types with example payloads
@@ -2242,7 +2242,7 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/triggers/de
22422242
}
22432243
```
22442244

2245-
#### List deployed triggers
2245+
#### List Deployed Triggers
22462246

22472247
List all of the deployed triggers for a given user.
22482248

@@ -2503,7 +2503,7 @@ curl -X GET \
25032503
}
25042504
```
25052505

2506-
#### Retrieve a deployed trigger
2506+
#### Retrieve Deployed Trigger
25072507

25082508
Retrieve a single deployed trigger for a given user.
25092509

@@ -2688,7 +2688,7 @@ curl -X GET \
26882688
}
26892689
```
26902690

2691-
#### Delete deployed trigger
2691+
#### Delete Deployed Trigger
26922692

26932693
Delete deployed trigger for a given user.
26942694

@@ -2797,8 +2797,7 @@ curl -X DELETE \
27972797

27982798
Pipedream returns a `204 No Content` response on successful deletion
27992799

2800-
2801-
#### Retrieve events emitted by deployed trigger
2800+
#### Retrieve Events Emitted by Deployed Trigger
28022801

28032802
Retrieve a list of the last events that a deployed trigger emitted.
28042803

@@ -2995,7 +2994,7 @@ curl -X GET \
29952994
}
29962995
```
29972996

2998-
#### Retrieve webhooks listening to deployed trigger
2997+
#### Retrieve Webhooks Listening to Deployed Trigger
29992998

30002999
Retrieve the list of webhook URLs listening to a deployed trigger.
30013000

@@ -3116,7 +3115,7 @@ curl -X GET \
31163115
}
31173116
```
31183117

3119-
#### Update webhooks listening to deployed trigger
3118+
#### Update Webhooks Listening to Deployed Trigger
31203119

31213120
Update the list of webhook URLs that will listen to a deployed trigger.
31223121

@@ -3255,7 +3254,7 @@ curl -X PUT \
32553254
}
32563255
```
32573256

3258-
#### Retrieve workflows listening to deployed trigger
3257+
#### Retrieve Workflows Listening to Deployed Trigger
32593258

32603259
Retrieve the list of workflow IDs listening to a deployed trigger.
32613260

@@ -3377,7 +3376,7 @@ curl -X GET \
33773376
}
33783377
```
33793378

3380-
#### Update workflows listening to deployed trigger
3379+
#### Update Workflows Listening to Deployed Trigger
33813380

33823381
Update the list of workflows that will listen to a deployed trigger.
33833382

docs-v2/pages/connect/components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ These are 2 categories of triggers you can deploy on behalf of your end users:
821821
- [Native triggers](#native-triggers)
822822

823823
<Callout type="info">
824-
Refer to the [full Connect API reference](/connect/api/#deploy-a-trigger) to list, retrieve, delete, and manage triggers for your user.
824+
Refer to the [full Connect API reference](/connect/api/#deploy-trigger) to list, retrieve, delete, and manage triggers for your user.
825825
</Callout>
826826

827827
### App-based event sources

docs-v2/pages/connect/workflows.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,13 +358,13 @@ curl -X POST https://{your-endpoint-url} \
358358

359359
### Deploy an event source
360360

361-
You can [programmatically deploy triggers via the API](/connect/api/#deploy-a-trigger) to have events from integrated apps (like [new Slack messages](https://pipedream.com/apps/slack/triggers/new-message-in-channels) or [new emails in Gmail](https://pipedream.com/apps/gmail/triggers/new-email-received)) trigger your workflow. This allows you to:
361+
You can [programmatically deploy triggers via the API](/connect/api/#deploy-trigger) to have events from integrated apps (like [new Slack messages](https://pipedream.com/apps/slack/triggers/new-message-in-channels) or [new emails in Gmail](https://pipedream.com/apps/gmail/triggers/new-email-received)) trigger your workflow. This allows you to:
362362

363363
- Deploy triggers for specific users from your application
364364
- Configure trigger parameters per-user
365365
- Manage deployed triggers via the API
366366

367-
See the [API documentation](/connect/api/#deploy-a-trigger) for detailed examples of deploying and managing triggers.
367+
See the [API documentation](/connect/api/#deploy-trigger) for detailed examples of deploying and managing triggers.
368368

369369
## OAuth client requirements
370370

pnpm-lock.yaml

Lines changed: 2 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)