-
Notifications
You must be signed in to change notification settings - Fork 67
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
Showing
18 changed files
with
61 additions
and
29 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 |
---|---|---|
@@ -1 +1,15 @@ | ||
import { | ||
GelMessage, | ||
GelSystemMessage, | ||
GelUserMessage, | ||
GelAssistantMessage, | ||
GelToolMessage, | ||
} from "@gel/ai"; | ||
|
||
export * from "@gel/ai"; | ||
|
||
export type EdgeDBSystemMessage = GelSystemMessage; | ||
export type EdgeDBUserMessage = GelUserMessage; | ||
export type EdgeDBAssistantMessage = GelAssistantMessage; | ||
export type EdgeDBToolMessage = GelToolMessage; | ||
export type EdgeDBMessage = GelMessage; |
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 +1,11 @@ | ||
import { GelAuthError } from "@gel/auth-core"; | ||
|
||
export * from "@gel/auth-core"; | ||
|
||
export const EdgeDBAuthError = GelAuthError; | ||
|
||
Object.defineProperty(EdgeDBAuthError.prototype, "type", { | ||
get() { | ||
return "_EdgeDBAuth"; | ||
}, | ||
}); |
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": "@edgedb/create", | ||
"version": "0.1.0", | ||
"version": "0.3.0", | ||
"description": "This package has been renamed to @gel/create. Please update your dependencies.", | ||
"author": "Gel <[email protected]>", | ||
"type": "module", | ||
|
@@ -25,7 +25,7 @@ | |
"prepare": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@gel/create": "0.1.0" | ||
"@gel/create": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
|
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 +1,7 @@ | ||
import { GelError } from "gel/dist/index.shared.js"; | ||
|
||
export * from "gel/dist/index.browser.js"; | ||
|
||
export const EdgeDBError = GelError; | ||
|
||
Object.defineProperty(EdgeDBError, "name", { value: "EdgeDBError" }); |
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 +1,7 @@ | ||
import { GelError } from "gel/dist/index.shared.js"; | ||
|
||
export * from "gel/dist/index.node.js"; | ||
|
||
export const EdgeDBError = GelError; | ||
|
||
Object.defineProperty(EdgeDBError, "name", { value: "EdgeDBError" }); |
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": "edgedb", | ||
"version": "1.6.0", | ||
"version": "2.0.0", | ||
"description": "This package has been renamed to gel. Please update your dependencies.", | ||
"author": "Gel <[email protected]>", | ||
"repository": { | ||
|
@@ -29,7 +29,7 @@ | |
"build:cjs": "tsc -p tsconfig.json" | ||
}, | ||
"dependencies": { | ||
"gel": "2.0.0" | ||
"gel": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
|
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,7 +1,7 @@ | ||
{ | ||
"name": "@gel/ai", | ||
"description": "Helper library for the Gel AI extension", | ||
"version": "0.1.0-alpha.2", | ||
"version": "0.1.0", | ||
"author": "Gel <[email protected]>", | ||
"type": "module", | ||
"repository": { | ||
|
@@ -43,7 +43,7 @@ | |
"@repo/tsconfig": "*" | ||
}, | ||
"peerDependencies": { | ||
"gel": "^1.5.0" | ||
"gel": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"eventsource-parser": "^1.1.2" | ||
|
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,7 +1,7 @@ | ||
{ | ||
"name": "@gel/auth-core", | ||
"description": "Core helper library for the Gel Auth extension", | ||
"version": "0.2.1", | ||
"version": "0.3.0", | ||
"author": "Gel <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -43,7 +43,7 @@ | |
"@repo/tsconfig": "*" | ||
}, | ||
"peerDependencies": { | ||
"gel": "^1.3.6" | ||
"gel": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"jwt-decode": "^4.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@gel/auth-express", | ||
"description": "Helper library to integrate the Gel Auth extension with Express", | ||
"version": "0.2.2", | ||
"version": "0.3.0", | ||
"type": "module", | ||
"author": "Gel <[email protected]>", | ||
"repository": { | ||
|
@@ -42,10 +42,10 @@ | |
}, | ||
"peerDependencies": { | ||
"cookie-parser": "^1.4.6", | ||
"gel": "^1.3.6", | ||
"gel": "^2.0.0", | ||
"express": "^4.18.2" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-core": "^0.2.1" | ||
"@gel/auth-core": "^0.3.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@gel/auth-nextjs", | ||
"description": "Helper library to integrate the Gel Auth extension with Next.js", | ||
"version": "0.3.2", | ||
"version": "0.4.0", | ||
"author": "Gel <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -34,12 +34,12 @@ | |
"typescript": "^5.5.2" | ||
}, | ||
"peerDependencies": { | ||
"gel": "^1.3.6", | ||
"gel": "^2.0.0", | ||
"next": ">=13.5.6 <16.0.0", | ||
"react": "^18.2.0 || ^19.0" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-core": "0.2.1" | ||
"@gel/auth-core": "0.3.0" | ||
}, | ||
"overrides": { | ||
"@types/react": "npm:types-react@rc" | ||
|
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,7 +1,7 @@ | ||
{ | ||
"name": "@gel/auth-remix", | ||
"description": "Helper library to integrate the Gel Auth extension with Remix", | ||
"version": "0.2.2", | ||
"version": "0.3.0", | ||
"author": "Gel <[email protected]>", | ||
"type": "module", | ||
"repository": { | ||
|
@@ -27,10 +27,10 @@ | |
"typescript": "^5.5.2" | ||
}, | ||
"peerDependencies": { | ||
"gel": "^1.3.6" | ||
"gel": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-core": "^0.2.1", | ||
"@gel/auth-core": "^0.3.0", | ||
"@remix-run/server-runtime": "^2.9.2", | ||
"cookie": "^0.6.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@gel/auth-sveltekit", | ||
"description": "Helper library to integrate the Gel Auth extension with Sveltekit.", | ||
"version": "0.2.3", | ||
"version": "0.3.0", | ||
"author": "Gel <[email protected]>", | ||
"type": "module", | ||
"repository": { | ||
|
@@ -30,10 +30,10 @@ | |
"vite": "^5.2.12" | ||
}, | ||
"peerDependencies": { | ||
"gel": "^1.3.6" | ||
"gel": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-core": "^0.2.1" | ||
"@gel/auth-core": "^0.3.0" | ||
}, | ||
"exports": { | ||
"./*": "./dist/*.js" | ||
|
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": "@gel/generate", | ||
"version": "0.5.6", | ||
"version": "0.6.0", | ||
"description": "Gel code generators for TS/JavaScript", | ||
"homepage": "https://geldata.com/docs", | ||
"author": "Gel <[email protected]>", | ||
|
@@ -18,7 +18,7 @@ | |
], | ||
"bin": "dist/cli.js", | ||
"peerDependencies": { | ||
"gel": "^1.5.10" | ||
"gel": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@repo/tsconfig": "*", | ||
|
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