Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit of workflow SDK / OAuth docs #14053

Merged
merged 36 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1c210e1
Initial commit of workflow invocation docs
dylburger Sep 21, 2024
97c5839
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Sep 21, 2024
a9626a6
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Sep 25, 2024
e06e919
removing old docs, adding IP clarification
dylburger Sep 25, 2024
bb5a9e2
Removing broken link checker
dylburger Sep 25, 2024
63ab997
Adding eslint-config-next to try to fix ESLint linting errors
dylburger Sep 25, 2024
cc1a987
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Oct 16, 2024
8cfb804
Adding pnpm lock again
dylburger Oct 16, 2024
c087633
Work so far
dylburger Oct 17, 2024
72921fe
Many more fixes
dylburger Oct 18, 2024
b73b177
Many more docs changes
dylburger Oct 20, 2024
28417e6
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Oct 20, 2024
9b798d5
Many more updates
dylburger Oct 22, 2024
f3bac44
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Oct 22, 2024
b83ada2
Adding the PD SDK
dylburger Oct 24, 2024
cd7ce90
Updating Connect Link quickstart
dannyroosevelt Oct 24, 2024
86e7b51
Some more docs updates
dannyroosevelt Oct 24, 2024
bb694e8
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Oct 28, 2024
3082b0c
Merge branch 'connect/workflow-sdk-docs' of github.com:PipedreamHQ/pi…
dylburger Oct 28, 2024
5d3206d
Adding Apps, Users, Webhooks docs
dylburger Oct 28, 2024
0a12942
Small tweaks
dannyroosevelt Oct 28, 2024
1e2ef10
Adding info re: OAuth clients to Connect docs
dannyroosevelt Oct 29, 2024
d5b256b
More info re: OAuth clients
dannyroosevelt Oct 30, 2024
4516cf0
Updating quickstart
dannyroosevelt Oct 30, 2024
7cfd4e9
Adding /apps APIs, new /accounts params, changing include_credentials…
dylburger Oct 31, 2024
3e2b4f5
Adding /components/search endpoint
dylburger Oct 31, 2024
f5d7c0c
Updating more client references
dylburger Nov 1, 2024
8f7acfe
getAccounts changes
dylburger Nov 1, 2024
0a5c3b6
Small quickstart fix
dylburger Nov 1, 2024
7cb7338
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Nov 1, 2024
6bdfb2c
Docs tweaks
dannyroosevelt Nov 1, 2024
6e1d464
s/oauth app/oauth client
dannyroosevelt Nov 1, 2024
d5df964
Update quickstart.mdx
dannyroosevelt Nov 1, 2024
ce0bdeb
Adding migration guide
dylburger Nov 4, 2024
5c1160c
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Nov 4, 2024
ea3f967
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
dylburger Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
37 changes: 0 additions & 37 deletions .github/workflows/docs.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion components/air/air.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default {
console.log(Object.keys(this.$auth));
},
},
};
};
2 changes: 1 addition & 1 deletion components/roamresearch/roamresearch.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default {
console.log(Object.keys(this.$auth));
},
},
};
};
2 changes: 1 addition & 1 deletion components/smstools/smstools.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default {
console.log(Object.keys(this.$auth));
},
},
};
};
1 change: 1 addition & 0 deletions docs-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"homepage": "https://pipedream.com",
"dependencies": {
"@docsearch/react": "^3.6.1",
"@pipedream/sdk": "^0.1.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/analytics": "^1.3.1",
Expand Down
2 changes: 1 addition & 1 deletion docs-v2/pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"event-history": "Event History",
"http": "HTTP",
"environment-variables": "Environment Variables",
"rest-api": "API Reference",
"rest-api": "REST API",
"cli": "CLI",
"destinations": "Destinations",
"user-settings": "User and Billing Settings",
Expand Down
15 changes: 15 additions & 0 deletions docs-v2/pages/connect/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,20 @@
},
"api": {
"title": "API & SDK Reference"
},
"tokens": {
"title": "Connect tokens"
},
"environments": {
"title": "Environments"
},
"oauth-clients": {
"title": "OAuth Clients"
},
"webhooks": {
"title": "Webhooks"
},
"connect-link": {
"title": "Connect Link"
}
}
Loading