From fc5d6e213acdbfd96df31dfe41a2a28ec097ddd0 Mon Sep 17 00:00:00 2001 From: Toan Nguyen Date: Tue, 11 Jun 2024 10:16:34 +0700 Subject: [PATCH 1/4] add stripe connector repository --- registry/stripe/README.md | 9 ++++++++ registry/stripe/logo.svg | 1 + registry/stripe/metadata.json | 41 +++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 registry/stripe/README.md create mode 100644 registry/stripe/logo.svg create mode 100644 registry/stripe/metadata.json diff --git a/registry/stripe/README.md b/registry/stripe/README.md new file mode 100644 index 00000000..7ca3f1a4 --- /dev/null +++ b/registry/stripe/README.md @@ -0,0 +1,9 @@ +# Stripe Connector + +## Overview + +The Stripe Data Connector provides an instant adapter for Engine v3 to request Stripe resources via GraphQL. This connector is built upon the [REST connector](https://github.com/hasura/ndc-rest) and [Stripe's OpenAPI Specification](https://github.com/stripe/openapi). + +## Usage + +Set the API key to `STRIPE_BEARER_AUTH_TOKEN` environment variable and start the container. See all available variables [here](https://github.com/hasura/ndc-stripe#environment-variables). diff --git a/registry/stripe/logo.svg b/registry/stripe/logo.svg new file mode 100644 index 00000000..415271d5 --- /dev/null +++ b/registry/stripe/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/registry/stripe/metadata.json b/registry/stripe/metadata.json new file mode 100644 index 00000000..988637d2 --- /dev/null +++ b/registry/stripe/metadata.json @@ -0,0 +1,41 @@ +{ + "overview": { + "namespace": "hasura", + "description": "The Stripe Data Connector provides an instant adapter for Engine v3 to request Stripe resources via GraphQL", + "title": "Stripe Data Connector", + "logo": "logo.svg", + "tags": [], + "latest_version": "v0.2.1" + }, + "author": { + "support_email": "support@hasura.io", + "homepage": "https://hasura.io", + "name": "Hasura" + }, + "is_verified": true, + "is_hosted_by_hasura": false, + "packages": [ + { + "version": "v0.2.1", + "uri": "https://github.com/hasura/ndc-stripe/releases/download/v0.2.1/connector-definition.tgz", + "checksum": { + "type": "sha256", + "value": "c805f655843881bebe1056b386954df9d7d9d3b33138342a5b7ed4480b8a4c02" + }, + "source": { + "hash": "3ae2790c8aff6bc6dd386a60809c6149158b5557" + } + } + ], + "source_code": { + "is_open_source": true, + "repository": "https://github.com/hasura/ndc-stripe", + "version": [ + { + "tag": "v0.2.1", + "hash": "3ae2790c8aff6bc6dd386a60809c6149158b5557", + "is_verified": true + } + ] + } +} From a179222fc8459b3d794d3bd012f623283255f2e3 Mon Sep 17 00:00:00 2001 From: Toan Nguyen Date: Tue, 15 Oct 2024 11:21:00 +0700 Subject: [PATCH 2/4] update ndc-stripe v0.2.3 --- registry/hasura/stripe/README.md | 39 +++++++++++++++++++ registry/{ => hasura}/stripe/logo.svg | 0 registry/{ => hasura}/stripe/metadata.json | 21 ++-------- .../releases/v0.2.3/connector-packaging.json | 11 ++++++ registry/stripe/README.md | 9 ----- 5 files changed, 54 insertions(+), 26 deletions(-) create mode 100644 registry/hasura/stripe/README.md rename registry/{ => hasura}/stripe/logo.svg (100%) rename registry/{ => hasura}/stripe/metadata.json (51%) create mode 100644 registry/hasura/stripe/releases/v0.2.3/connector-packaging.json delete mode 100644 registry/stripe/README.md diff --git a/registry/hasura/stripe/README.md b/registry/hasura/stripe/README.md new file mode 100644 index 00000000..c1eab67f --- /dev/null +++ b/registry/hasura/stripe/README.md @@ -0,0 +1,39 @@ +# Stripe Connector + +## Overview + +The Stripe Data Connector provides an instant adapter for Engine v3 to request Stripe resources via GraphQL. This connector is built upon the [REST connector](https://github.com/hasura/ndc-rest) and [Stripe's OpenAPI Specification](https://github.com/stripe/openapi). + +- [GitHub Repository](https://github.com/hasura/ndc-stripe) + +## Prerequisites + +1. Create a [Hasura Cloud account](https://console.hasura.io) +2. Please ensure you have the [DDN CLI](https://hasura.io/docs/3.0/cli/installation) and + [Docker](https://docs.docker.com/engine/install/) installed +3. [Create a supergraph](https://hasura.io/docs/3.0/getting-started/init-supergraph) +4. [Create a subgraph](https://hasura.io/docs/3.0/getting-started/init-subgraph) + +The steps below explain how to initialize and configure a connector on your local machine (typically for development +purposes).You can learn how to deploy a connector to Hasura DDN — after it's been configured — +[here](https://hasura.io/docs/3.0/getting-started/deployment/deploy-a-connector). + +## Using the Stripe connector + +With the [context set](https://hasura.io/docs/3.0/cli/commands/ddn_context_set/) for an existing subgraph, initialize +the connector by choosing `hasura/stripe`. When the wizard runs, you'll also be prompted to enter the following env +vars necessary for your connector to function. + +After the CLI initializes the connector, you'll need to: + +- [Introspect](https://hasura.io/docs/3.0/cli/commands/ddn_connector_introspect) the source. +- Add your [models](https://hasura.io/docs/3.0/cli/commands/ddn_model_add) and + [commands](https://hasura.io/docs/3.0/cli/commands/ddn_command_add). +- Create a [new build](https://hasura.io/docs/3.0/cli/commands/ddn_supergraph_build_local). +- Test it by [running your project along with the connector](https://hasura.io/docs/3.0/cli/commands/ddn_run#examples + +See all available variables [here](https://github.com/hasura/ndc-stripe#environment-variables). + +## License + +The Hasura Stripe connector is available under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). diff --git a/registry/stripe/logo.svg b/registry/hasura/stripe/logo.svg similarity index 100% rename from registry/stripe/logo.svg rename to registry/hasura/stripe/logo.svg diff --git a/registry/stripe/metadata.json b/registry/hasura/stripe/metadata.json similarity index 51% rename from registry/stripe/metadata.json rename to registry/hasura/stripe/metadata.json index 988637d2..9c10ac2e 100644 --- a/registry/stripe/metadata.json +++ b/registry/hasura/stripe/metadata.json @@ -5,7 +5,7 @@ "title": "Stripe Data Connector", "logo": "logo.svg", "tags": [], - "latest_version": "v0.2.1" + "latest_version": "v0.2.3" }, "author": { "support_email": "support@hasura.io", @@ -13,27 +13,14 @@ "name": "Hasura" }, "is_verified": true, - "is_hosted_by_hasura": false, - "packages": [ - { - "version": "v0.2.1", - "uri": "https://github.com/hasura/ndc-stripe/releases/download/v0.2.1/connector-definition.tgz", - "checksum": { - "type": "sha256", - "value": "c805f655843881bebe1056b386954df9d7d9d3b33138342a5b7ed4480b8a4c02" - }, - "source": { - "hash": "3ae2790c8aff6bc6dd386a60809c6149158b5557" - } - } - ], + "is_hosted_by_hasura": true, "source_code": { "is_open_source": true, "repository": "https://github.com/hasura/ndc-stripe", "version": [ { - "tag": "v0.2.1", - "hash": "3ae2790c8aff6bc6dd386a60809c6149158b5557", + "tag": "v0.2.3", + "hash": "71956bc9cc3eb1c08c0f22441a8c9d106dc6cea8", "is_verified": true } ] diff --git a/registry/hasura/stripe/releases/v0.2.3/connector-packaging.json b/registry/hasura/stripe/releases/v0.2.3/connector-packaging.json new file mode 100644 index 00000000..70ca270d --- /dev/null +++ b/registry/hasura/stripe/releases/v0.2.3/connector-packaging.json @@ -0,0 +1,11 @@ +{ + "version": "v0.2.3", + "uri": "https://github.com/hasura/ndc-stripe/releases/download/v0.2.3/connector-definition.tgz", + "checksum": { + "type": "sha256", + "value": "01c3b462cfc89e78cbf72f8713c59c67d2c13b3054a16f39a584e293bee6ab10" + }, + "source": { + "hash": "71956bc9cc3eb1c08c0f22441a8c9d106dc6cea8" + } +} diff --git a/registry/stripe/README.md b/registry/stripe/README.md deleted file mode 100644 index 7ca3f1a4..00000000 --- a/registry/stripe/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# Stripe Connector - -## Overview - -The Stripe Data Connector provides an instant adapter for Engine v3 to request Stripe resources via GraphQL. This connector is built upon the [REST connector](https://github.com/hasura/ndc-rest) and [Stripe's OpenAPI Specification](https://github.com/stripe/openapi). - -## Usage - -Set the API key to `STRIPE_BEARER_AUTH_TOKEN` environment variable and start the container. See all available variables [here](https://github.com/hasura/ndc-stripe#environment-variables). From 17409bc19bd8367567539a0b1b7427e3b738c234 Mon Sep 17 00:00:00 2001 From: Vishnu Bharathi Date: Tue, 15 Oct 2024 13:10:29 +0530 Subject: [PATCH 3/4] Update registry/hasura/stripe/README.md --- registry/hasura/stripe/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/hasura/stripe/README.md b/registry/hasura/stripe/README.md index c1eab67f..88ba5b56 100644 --- a/registry/hasura/stripe/README.md +++ b/registry/hasura/stripe/README.md @@ -30,7 +30,7 @@ After the CLI initializes the connector, you'll need to: - Add your [models](https://hasura.io/docs/3.0/cli/commands/ddn_model_add) and [commands](https://hasura.io/docs/3.0/cli/commands/ddn_command_add). - Create a [new build](https://hasura.io/docs/3.0/cli/commands/ddn_supergraph_build_local). -- Test it by [running your project along with the connector](https://hasura.io/docs/3.0/cli/commands/ddn_run#examples +- Test it by [running your project along with the connector](https://hasura.io/docs/3.0/cli/commands/ddn_run#examples) See all available variables [here](https://github.com/hasura/ndc-stripe#environment-variables). From d550737a9c1ba1b3528c23e17f71f36b53ec32c1 Mon Sep 17 00:00:00 2001 From: Toan Nguyen Date: Tue, 15 Oct 2024 16:31:10 +0700 Subject: [PATCH 4/4] change logo.png --- registry/hasura/stripe/logo.png | Bin 0 -> 10337 bytes registry/hasura/stripe/logo.svg | 1 - registry/hasura/stripe/metadata.json | 4 ++-- 3 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 registry/hasura/stripe/logo.png delete mode 100644 registry/hasura/stripe/logo.svg diff --git a/registry/hasura/stripe/logo.png b/registry/hasura/stripe/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..26b7ce66fbd7861a2cab2727d1500800ad59b6bf GIT binary patch literal 10337 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 literal 0 HcmV?d00001 diff --git a/registry/hasura/stripe/logo.svg b/registry/hasura/stripe/logo.svg deleted file mode 100644 index 415271d5..00000000 --- a/registry/hasura/stripe/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/registry/hasura/stripe/metadata.json b/registry/hasura/stripe/metadata.json index 9c10ac2e..7bff6f83 100644 --- a/registry/hasura/stripe/metadata.json +++ b/registry/hasura/stripe/metadata.json @@ -2,8 +2,8 @@ "overview": { "namespace": "hasura", "description": "The Stripe Data Connector provides an instant adapter for Engine v3 to request Stripe resources via GraphQL", - "title": "Stripe Data Connector", - "logo": "logo.svg", + "title": "Stripe Connector", + "logo": "logo.png", "tags": [], "latest_version": "v0.2.3" },