-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…1032-auto-complete-update
- Loading branch information
Showing
119 changed files
with
4,656 additions
and
963 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Nango Integration Flows Compile | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: flows-compile--${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
flow-compilation: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install nango CLI | ||
run: | | ||
npm install -g nango | ||
# TODO this shouldn't be needed | ||
npm install @tsconfig/node18-strictest-esm --save-dev | ||
- name: Compile with Nango | ||
run: | | ||
set -e | ||
cd integration-templates | ||
for dir in */; do | ||
if [[ "$dir" != "." && "$dir" != "integration-templates/" ]]; then | ||
cd "$dir" | ||
mkdir -p nango-integrations | ||
find . -maxdepth 1 ! -name '.' ! -name 'nango-integrations' -exec mv -t nango-integrations {} + | ||
cd nango-integrations | ||
output=$(nango compile 2>&1) | ||
echo "$output" | ||
if [[ "$output" == *"Error compiling"* ]]; then | ||
echo "Error found in directory $dir" | ||
exit 1 | ||
fi | ||
cd ../../ | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Upload integration templates to S3 | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
types: | ||
- closed | ||
|
||
concurrency: | ||
group: templates-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
template-upload: | ||
runs-on: ubuntu-latest | ||
if: (github.event_name == 'push') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true) | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install nango CLI | ||
run: | | ||
npm install -g nango | ||
npm install @tsconfig/node18-strictest-esm --save-dev | ||
- name: Get specific changed files | ||
id: changed-files-specific | ||
uses: tj-actions/changed-files@v39 | ||
with: | ||
files: | | ||
integration-templates/* | ||
integration-templates/**/* | ||
- name: Process and Upload changed directories to S3 | ||
if: steps.changed-files-specific.outputs.any_changed == 'true' | ||
run: | | ||
wd=$(pwd) | ||
for file in ${{ steps.changed-files-specific.outputs.all_changed_files }}; do | ||
dir=$(dirname $file) | ||
mkdir -p /tmp/nango-temp/nango-integrations | ||
cp -r $dir/* /tmp/nango-temp/nango-integrations/ | ||
cd /tmp/nango-temp/nango-integrations | ||
nango compile | ||
cp -r dist/ $wd/$dir/ | ||
cd - | ||
rm -rf /tmp/nango-temp | ||
aws s3 sync $dir s3://${{ secrets.AWS_BUCKET_NAME }}/$dir/ | ||
done | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ rules: | |
document-start: disable | ||
truthy: | ||
check-keys: false | ||
|
||
ignore: | | ||
.github/workflows/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
title: HighLevel | ||
sidebarTitle: HighLevel | ||
--- | ||
|
||
API configuration: [`highlevel`](https://nango.dev/providers.yaml) | ||
|
||
|
||
|
||
## Features | ||
|
||
| Feature | Status | | ||
| -------------------------------------------------------------------------------- | ------------------------------- | | ||
| [Auth (OAuth)](/guides/oauth) | ✅ | | ||
| [Syncs](/guides/sync) & [Actions](/guides/actions) | ✅ | | ||
| [Nango Proxy](/guides/proxy) | ✅ | | ||
| [Integration templates](/integration-templates/overview) | 🚫 (time to contribute: <1h) | | ||
| Auto-pagination | 🚫 (time to contribute: <1h) | | ||
| API-specific rate limits | 🚫 (time to contribute: <1h) | | ||
|
||
<Tip>We can implement missing features in <48h, just ask for it in the [community](https://nango.dev/slack).</Tip> | ||
## Getting started | ||
|
||
- [API Documentation](https://highlevel.stoplight.io/docs/integrations/0443d7d1a4bd0-overview) | ||
|
||
<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip> | ||
|
||
## API gotchas | ||
|
||
<Note>Add Getting Started links and Gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/highlevel.mdx)</Note> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
integration-templates/google-workspace/google-workspace-user-access-tokens.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.