Skip to content

Commit

Permalink
Rename gel to geldata where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
diksipav committed Jan 16, 2025
1 parent 77e6337 commit 023f000
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion packages/ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gel/ai",
"description": "Helper library for the Gel AI extension",
"version": "0.1.0-alpha.2",
"author": "Gel <info@gel.com>",
"author": "Gel <info@geldata.com>",
"type": "module",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gel/auth-core",
"description": "Core helper library for the Gel Auth extension",
"version": "0.2.1",
"author": "Gel <info@gel.com>",
"author": "Gel <info@geldata.com>",
"repository": {
"type": "git",
"url": "https://github.com/geldata/gel-js.git",
Expand Down
6 changes: 3 additions & 3 deletions packages/auth-core/test/core.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ beforeAll(async () => {
ext::auth::AuthConfig::token_time_to_live := <duration>'24 hours';
configure current database set
ext::auth::SMTPConfig::sender := 'noreply@example.gel.com';
ext::auth::SMTPConfig::sender := 'noreply@example.geldata.com';
configure current database
insert ext::auth::EmailPasswordProviderConfig {};
Expand All @@ -39,7 +39,7 @@ test("test password signup/signin flow", async () => {
const auth = await Auth.create(client);

const signupResponse = await auth.signupWithEmailPassword(
"test@example.gel.com",
"test@example.geldata.com",
"supersecretpassword",
`${auth.baseUrl}/auth/emailpassword/verify`,
);
Expand All @@ -49,7 +49,7 @@ test("test password signup/signin flow", async () => {

await expect(
auth.signinWithEmailPassword(
"test@example.gel.com",
"test@example.geldata.com",
"supersecretpassword",
),
).rejects.toThrow("Email verification is required");
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Helper library to integrate the Gel Auth extension with Express",
"version": "0.2.2",
"type": "module",
"author": "Gel <info@gel.com>",
"author": "Gel <info@geldata.com>",
"repository": {
"type": "git",
"url": "https://github.com/geldata/gel-js.git",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-express/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This library provides a few affordances for adding Gel Auth to your existing Exp

## Configuring the `ExpressAuth` class

After [configuring the Gel Auth extension](https://www.gel.com/docs/guides/auth/index), you can set up the various auth routes with our route builders.
After [configuring the Gel Auth extension](https://www.geldata.com/docs/guides/auth/index), you can set up the various auth routes with our route builders.

Start by instantiating an `ExpressAuth` object by passing it a configured Gel client and some options:

Expand Down
2 changes: 1 addition & 1 deletion packages/auth-remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gel/auth-remix",
"description": "Helper library to integrate the Gel Auth extension with Remix",
"version": "0.2.2",
"author": "Gel <info@gel.com>",
"author": "Gel <info@geldata.com>",
"type": "module",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/create/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"version": "0.2.2",
"type": "module",
"description": "Create a new Gel-based project",
"homepage": "https://gel.com/docs",
"author": "Gel <info@gel.com>",
"homepage": "https://geldata.com/docs",
"author": "Gel <info@geldata.com>",
"engines": {
"node": ">= 18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gel/gel-js.git",
"url": "https://github.com/geldata/gel-js.git",
"directory": "packages/create"
},
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/create/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Enter your project directory using: ${pc.green(
)}
Follow the instructions in the ${pc.green("README.md")} file to get started.
Need help? Join our community at ${pc.green("https://gel.com/community")}`);
Need help? Join our community at ${pc.green("https://geldata.com/community")}`);
}

await main();
2 changes: 1 addition & 1 deletion packages/create/src/recipes/_gel/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const recipe: Recipe<GelOptions> = {

spinner.start("Installing Gel CLI");
const { stdout, stderr } = await execInLoginShell(
"curl --proto '=https' --tlsv1.2 -sSf https://sh.gel.com | sh -s -- -y",
"curl --proto '=https' --tlsv1.2 -sSf https://sh.geldata.com | sh -s -- -y",
);
logger({ stdout, stderr });
spinner.stop("Gel CLI installed");
Expand Down
4 changes: 2 additions & 2 deletions packages/driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "gel",
"version": "1.5.12",
"description": "The official Node.js client library for Gel",
"homepage": "https://gel.com/docs",
"author": "Gel <info@gel.com>",
"homepage": "https://geldata.com/docs",
"author": "Gel <info@geldata.com>",
"engines": {
"node": ">= 18.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/generate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The `@gel/generate` package implements a set of code generation tools that are useful when developing an Gel-backed applications with TypeScript/JavaScript.

[View Documentation >>](https://www.gel.com/docs/clients/js/generation)
[View Documentation >>](https://www.geldata.com/docs/clients/js/generation)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions packages/generate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@gel/generate",
"version": "0.5.6",
"description": "Gel code generators for TS/JavaScript",
"homepage": "https://gel.com/docs",
"author": "Gel <info@gel.com>",
"homepage": "https://geldata.com/docs",
"author": "Gel <info@geldata.com>",
"engines": {
"node": ">= 18.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-ai-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ console.log(text);

## Documentation

Please check out the **[Gel provider documentation](https://docs.gel.com/ai/vercel_ai_sdk_provider)** for more information.
Please check out the **[Gel provider documentation](https://docs.geldata.com/ai/vercel_ai_sdk_provider)** for more information.

0 comments on commit 023f000

Please sign in to comment.