Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
chore: version 0.7.2 (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmarshall authored Apr 7, 2023
1 parent d2bd85c commit 21e0c0d
Show file tree
Hide file tree
Showing 130 changed files with 8,775 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ https://user-images.githubusercontent.com/1925713/223279162-c53ceb43-b51e-4d78-9
### Run Supaglue locally

```shell
git clone -b v0.7.1 https://github.com/supaglue-labs/supaglue.git && cd supaglue
git clone -b v0.7.2 https://github.com/supaglue-labs/supaglue.git && cd supaglue
./scripts/create_quickstart_env.sh
docker compose up
```
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
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": {
Expand Down
2 changes: 1 addition & 1 deletion apps/mgmt-ui/package.json
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",
Expand Down
2 changes: 1 addition & 1 deletion apps/sync-worker/package.json
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",
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-supaglue}

api:
image: supaglue/api:0.7.1
image: supaglue/api:0.7.2
ports:
- '8080:8080'
depends_on:
Expand All @@ -52,7 +52,7 @@ services:
restart: on-failure

sync-worker:
image: supaglue/sync-worker:0.7.1
image: supaglue/sync-worker:0.7.2
depends_on:
postgres:
condition: service_started
Expand All @@ -65,7 +65,7 @@ services:
restart: on-failure

mgmt-ui:
image: supaglue/mgmt-ui:0.7.1
image: supaglue/mgmt-ui:0.7.2
ports:
- '3000:3000'
depends_on:
Expand All @@ -90,7 +90,7 @@ services:
- temporalitedata:/data

init:
image: supaglue/api:0.7.1
image: supaglue/api:0.7.2
environment:
<<: *common-env
SUPAGLUE_QUICKSTART_API_KEY: ${SUPAGLUE_QUICKSTART_API_KEY:-some-api-key}
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.1 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
```

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In less than 5 minutes, sync data from HubSpot or Salesforce into Supaglue and q
Clone our repo, run our setup script which will create an `.env` file for this quickstart, and run the Supaglue stack locally using docker compose:

```shell
git clone -b v0.7.1 https://github.com/supaglue-labs/supaglue.git && cd supaglue
git clone -b v2 https://github.com/supaglue-labs/supaglue.git && cd supaglue
./scripts/create_quickstart_env.sh
docker compose up
```
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.7.1",
"version": "0.7.2",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand 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"
}'
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In less than 5 minutes, sync data from HubSpot or Salesforce into Supaglue and q
Clone our repo, run our setup script which will create an `.env` file for this quickstart, 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 v2 https://github.com/supaglue-labs/supaglue.git && cd supaglue
./scripts/create_quickstart_env.sh
docker compose up
```
Expand Down
4 changes: 2 additions & 2 deletions docs/versions.json
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"
]
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 0.0.8
version: 0.0.9

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 0.7.1
appVersion: 0.7.2
2 changes: 1 addition & 1 deletion openapi/crm/openapi.bundle.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion openapi/crm/openapi.yaml
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
Expand Down
2 changes: 1 addition & 1 deletion openapi/mgmt/openapi.bundle.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion openapi/mgmt/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Other than the `webhooks` key, we should not use 3.1.0 features since the validation middleware doesn't support it yet
openapi: 3.1.0
info:
version: 0.7.1
version: 0.7.2
title: Supaglue Management API
contact:
name: Supaglue
Expand Down
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
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
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
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
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
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
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
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.
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
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
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
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
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
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/
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
Loading

1 comment on commit 21e0c0d

@vercel
Copy link

@vercel vercel bot commented on 21e0c0d Apr 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.