This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2bd85c
commit 21e0c0d
Showing
130 changed files
with
8,775 additions
and
33 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "api", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"packageManager": "[email protected]", | ||
"type": "commonjs", | ||
"dependencies": { | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "mgmt-ui", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sync-worker", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@sentry/integrations": "^7.43.0", | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ After creating your account, you will be directed to the management portal. | |
Clone the Github repo and run the Supaglue stack locally using docker compose: | ||
|
||
```shell | ||
git clone -b v0.7.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue | ||
git clone -b v0.7.2 https://github.com/supaglue-labs/supaglue.git && cd supaglue | ||
docker compose up | ||
``` | ||
|
||
|
@@ -96,21 +96,20 @@ Create a Supaglue customer using the [Management API](/api/mgmt#tag/Customers/op | |
You will need four pieces of information when hitting this endpoint: | ||
|
||
- **customer_id**: the primary key you use in your application that uniquely identifies this customer. | ||
- **application_id**: your Supaglue application id: `a4398523-03a2-42dd-9681-c91e3e2efaf4`. | ||
- **name**: the name of the customer. | ||
- **email**: the email associated with the customer. | ||
- **api_key**: the Supaglue API key for Supaglue Application. | ||
|
||
Here's a sample request: | ||
|
||
```shell | ||
curl --location --request PUT 'http://localhost:8080/mgmt/v1/customers' \ | ||
--header 'x-api-key: {{apiKey}}' | ||
--header 'x-api-key: {{api_key}}' | ||
--header 'Content-Type: application/json' \ | ||
--data-raw '{ | ||
"application_id": "{{applicationId}}", | ||
"name": "Customer 1", | ||
"email": "[email protected]", | ||
"customer_id": "0001" | ||
"customer_id": "your_application_customer_id" | ||
}' | ||
``` | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[ | ||
"0.7.1", | ||
"0.7.0" | ||
"0.7.2", | ||
"0.7.1" | ||
] |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
openapi: 3.0.3 | ||
info: | ||
version: 0.7.1 | ||
version: 0.7.2 | ||
title: Supaglue CRM API | ||
contact: | ||
name: Supaglue | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
7 changes: 7 additions & 0 deletions
7
openapi/versioned/version-0.7.2/common/components/parameters/header/x-customer-id.yaml
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,7 @@ | ||
name: x-customer-id | ||
in: header | ||
schema: | ||
type: string | ||
example: my-customer-1 | ||
description: The customer ID that uniquely identifies the customer in your application | ||
required: true |
7 changes: 7 additions & 0 deletions
7
openapi/versioned/version-0.7.2/common/components/parameters/header/x-provider-name.yaml
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,7 @@ | ||
name: x-provider-name | ||
in: header | ||
schema: | ||
type: string | ||
example: salesforce | ||
description: The provider name | ||
required: true |
7 changes: 7 additions & 0 deletions
7
openapi/versioned/version-0.7.2/common/components/parameters/query/created_after.yaml
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,7 @@ | ||
name: created_after | ||
in: query | ||
schema: | ||
type: string | ||
format: date-time | ||
example: 2023-02-23T00:00:00Z | ||
description: If provided, will only return objects created after this datetime |
7 changes: 7 additions & 0 deletions
7
openapi/versioned/version-0.7.2/common/components/parameters/query/created_before.yaml
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,7 @@ | ||
name: created_before | ||
in: query | ||
schema: | ||
type: string | ||
format: date-time | ||
example: 2023-02-23T00:00:00Z | ||
description: If provided, will only return objects created before this datetime |
6 changes: 6 additions & 0 deletions
6
openapi/versioned/version-0.7.2/common/components/parameters/query/cursor.yaml
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,6 @@ | ||
name: cursor | ||
in: query | ||
schema: | ||
type: string | ||
example: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw | ||
description: The pagination cursor value |
6 changes: 6 additions & 0 deletions
6
openapi/versioned/version-0.7.2/common/components/parameters/query/customer_id.yaml
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,6 @@ | ||
name: customer_id | ||
in: query | ||
schema: | ||
type: string | ||
example: 1bae5050-b8ff-472e-8b9f-01f29a81d1ee | ||
description: The customer ID that uniquely identifies the customer in your application |
8 changes: 8 additions & 0 deletions
8
openapi/versioned/version-0.7.2/common/components/parameters/query/expand.yaml
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,8 @@ | ||
name: expand | ||
in: query | ||
schema: | ||
type: string | ||
example: owner | ||
description: >- | ||
Which relations should be returned in expanded form. Multiple | ||
relation names should be comma separated without spaces |
6 changes: 6 additions & 0 deletions
6
openapi/versioned/version-0.7.2/common/components/parameters/query/include_deleted_data.yaml
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,6 @@ | ||
name: include_deleted_data | ||
in: query | ||
schema: | ||
type: boolean | ||
example: true | ||
description: Whether to include data that was deleted in providers. |
7 changes: 7 additions & 0 deletions
7
openapi/versioned/version-0.7.2/common/components/parameters/query/modified_after.yaml
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,7 @@ | ||
name: modified_after | ||
in: query | ||
schema: | ||
type: string | ||
format: date-time | ||
example: 2023-02-23T00:00:00Z | ||
description: If provided, will only return objects modified after this datetime |
7 changes: 7 additions & 0 deletions
7
openapi/versioned/version-0.7.2/common/components/parameters/query/modified_before.yaml
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,7 @@ | ||
name: modified_before | ||
in: query | ||
schema: | ||
type: string | ||
format: date-time | ||
example: 2023-02-23T00:00:00Z | ||
description: If provided, will only return objects modified before this datetime |
6 changes: 6 additions & 0 deletions
6
openapi/versioned/version-0.7.2/common/components/parameters/query/page_size.yaml
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,6 @@ | ||
name: page_size | ||
in: query | ||
schema: | ||
type: string | ||
example: '3804695' | ||
description: Number of results to return per page |
6 changes: 6 additions & 0 deletions
6
openapi/versioned/version-0.7.2/common/components/parameters/query/provider_name.yaml
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,6 @@ | ||
name: provider_name | ||
in: query | ||
schema: | ||
type: string | ||
example: salesforce | ||
description: The provider name |
30 changes: 30 additions & 0 deletions
30
openapi/versioned/version-0.7.2/common/components/schemas/errors.yaml
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 @@ | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
detail: | ||
type: string | ||
example: name is a required field on model. | ||
problem_type: | ||
type: string | ||
example: MISSING_REQUIRED_FIELD | ||
source: | ||
type: object | ||
properties: | ||
pointer: | ||
type: string | ||
example: irure consectetur | ||
title: | ||
type: string | ||
example: Missing Required Field | ||
example: | ||
- detail: name is a required field on model. | ||
problem_type: MISSING_REQUIRED_FIELD | ||
source: | ||
pointer: irure consectetur | ||
title: Missing Required Field | ||
- detail: name is a required field on model. | ||
problem_type: MISSING_REQUIRED_FIELD | ||
source: | ||
pointer: et | ||
title: Missing Required Field |
38 changes: 38 additions & 0 deletions
38
openapi/versioned/version-0.7.2/common/components/schemas/logs.yaml
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,38 @@ | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
dashboard_view: | ||
type: string | ||
example: >- | ||
https://api.supaglue.com/logs/99433219-8017-4acd-bb3c-ceb23d663832 | ||
log_id: | ||
type: string | ||
example: 99433219-8017-4acd-bb3c-ceb23d663832 | ||
log_summary: | ||
type: object | ||
properties: | ||
method: | ||
type: string | ||
example: POST | ||
status_code: | ||
type: number | ||
example: 200 | ||
url: | ||
type: string | ||
example: https://harvest.greenhouse.io/v1/candidates/ | ||
example: | ||
- dashboard_view: >- | ||
https://api.supaglue.com/logs/99433219-8017-4acd-bb3c-ceb23d663832 | ||
log_id: 99433219-8017-4acd-bb3c-ceb23d663832 | ||
log_summary: | ||
method: POST | ||
status_code: 200 | ||
url: https://harvest.greenhouse.io/v1/candidates/ | ||
- dashboard_view: >- | ||
https://api.supaglue.com/logs/99433219-8017-4acd-bb3c-ceb23d663832 | ||
log_id: 99433219-8017-4acd-bb3c-ceb23d663832 | ||
log_summary: | ||
method: POST | ||
status_code: 200 | ||
url: https://harvest.greenhouse.io/v1/candidates/ |
10 changes: 10 additions & 0 deletions
10
openapi/versioned/version-0.7.2/common/components/schemas/pagination.yaml
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,10 @@ | ||
type: object | ||
properties: | ||
next: | ||
type: string | ||
nullable: true | ||
example: eyJpZCI6IjQyNTc5ZjczLTg1MjQtNDU3MC05YjY3LWVjYmQ3MDJjNmIxNCIsInJldmVyc2UiOmZhbHNlfQ== | ||
previous: | ||
type: string | ||
nullable: true | ||
example: eyJpZCI6IjBjZDhmYmZkLWU5NmQtNDEwZC05ZjQxLWIwMjU1YjdmNGI4NyIsInJldmVyc2UiOnRydWV9 |
Oops, something went wrong.
21e0c0d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
supaglue-docs – ./docs
supaglue-docs-1exg.vercel.app
docs.supaglue.com
supaglue-docs-supaglue.vercel.app
supaglue-docs-git-main-supaglue.vercel.app