-
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
46 changed files
with
338 additions
and
123 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 @@ | ||
export * from "@edgedb/ai"; | ||
export * from "@gel/ai"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
dist/ |
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,5 @@ | ||
# @edgedb/auth-core | ||
|
||
⚠️ **This package has been renamed** ⚠️ | ||
|
||
This package has been renamed to `@gel/auth-core`. Please update your 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "@gel/auth-core"; |
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,27 +1,42 @@ | ||
{ | ||
"name": "@edgedb/auth-core", | ||
"version": "2.0.0", | ||
"version": "0.3.0", | ||
"description": "This package has been renamed to @gel/auth-core. Please update your dependencies.", | ||
"author": "Gel <info@geldata.com>", | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/geldata/gel-js.git", | ||
"directory": "edgedb/auth-core" | ||
}, | ||
"license": "Apache-2.0", | ||
"main": "./node_modules/@gel/auth-core/dist/index.js", | ||
"types": "./node_modules/@gel/auth-core/dist/index.d.ts", | ||
"sideEffects": false, | ||
"mauth-coren": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./node_modules/@gel/auth-core/dist/index.d.ts", | ||
"default": "./node_modules/@gel/auth-core/dist/index.js" | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"./*": { | ||
"types": "./node_modules/@gel/auth-core/dist/*.d.ts", | ||
"default": "./node_modules/@gel/auth-core/dist/*.js" | ||
"types": "./dist/*.d.ts", | ||
"default": "./dist/*.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-core": "2.0.0" | ||
} | ||
"@gel/auth-core": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
}, | ||
"deprecated": "This package has been renamed to @gel/auth-core" | ||
} |
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 @@ | ||
{ | ||
"extends": "@repo/tsconfig/client.json", | ||
"compilerOptions": { | ||
"outDir": "./dist" | ||
}, | ||
"include": ["**/*.ts"], | ||
"exclude": ["dist", "node_modules"] | ||
} |
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,2 @@ | ||
node_modules/ | ||
dist/ |
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,5 @@ | ||
# @edgedb/auth-express | ||
|
||
⚠️ **This package has been renamed** ⚠️ | ||
|
||
This package has been renamed to `@gel/auth-express`. Please update your 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "@gel/auth-express"; |
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,27 +1,42 @@ | ||
{ | ||
"name": "@edgedb/auth-express", | ||
"version": "2.0.0", | ||
"version": "0.3.0", | ||
"description": "This package has been renamed to @gel/auth-express. Please update your dependencies.", | ||
"author": "Gel <info@geldata.com>", | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/geldata/gel-js.git", | ||
"directory": "edgedb/auth-express" | ||
}, | ||
"license": "Apache-2.0", | ||
"main": "./node_modules/@gel/auth-express/dist/index.js", | ||
"types": "./node_modules/@gel/auth-express/dist/index.d.ts", | ||
"sideEffects": false, | ||
"mauth-expressn": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./node_modules/@gel/auth-express/dist/index.d.ts", | ||
"default": "./node_modules/@gel/auth-express/dist/index.js" | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"./*": { | ||
"types": "./node_modules/@gel/auth-express/dist/*.d.ts", | ||
"default": "./node_modules/@gel/auth-express/dist/*.js" | ||
"types": "./dist/*.d.ts", | ||
"default": "./dist/*.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-express": "2.0.0" | ||
} | ||
"@gel/auth-express": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
}, | ||
"deprecated": "This package has been renamed to @gel/auth-express" | ||
} |
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 @@ | ||
{ | ||
"extends": "@repo/tsconfig/client.json", | ||
"compilerOptions": { | ||
"outDir": "./dist" | ||
}, | ||
"include": ["**/*.ts"], | ||
"exclude": ["dist", "node_modules"] | ||
} |
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,2 @@ | ||
node_modules/ | ||
dist/ |
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,5 @@ | ||
# @edgedb/auth-nextjs | ||
|
||
⚠️ **This package has been renamed** ⚠️ | ||
|
||
This package has been renamed to `@gel/auth-nextjs`. Please update your 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "@gel/auth-nextjs"; |
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,27 +1,42 @@ | ||
{ | ||
"name": "@edgedb/auth-nextjs", | ||
"version": "2.0.0", | ||
"version": "0.4.0", | ||
"description": "This package has been renamed to @gel/auth-nextjs. Please update your dependencies.", | ||
"author": "Gel <info@geldata.com>", | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/geldata/gel-js.git", | ||
"directory": "edgedb/auth-nextjs" | ||
}, | ||
"license": "Apache-2.0", | ||
"main": "./node_modules/@gel/auth-nextjs/dist/index.js", | ||
"types": "./node_modules/@gel/auth-nextjs/dist/index.d.ts", | ||
"sideEffects": false, | ||
"mauth-nextjsn": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./node_modules/@gel/auth-nextjs/dist/index.d.ts", | ||
"default": "./node_modules/@gel/auth-nextjs/dist/index.js" | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"./*": { | ||
"types": "./node_modules/@gel/auth-nextjs/dist/*.d.ts", | ||
"default": "./node_modules/@gel/auth-nextjs/dist/*.js" | ||
"types": "./dist/*.d.ts", | ||
"default": "./dist/*.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-nextjs": "2.0.0" | ||
} | ||
"@gel/auth-nextjs": "0.4.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
}, | ||
"deprecated": "This package has been renamed to @gel/auth-nextjs" | ||
} |
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 @@ | ||
{ | ||
"extends": "@repo/tsconfig/client.json", | ||
"compilerOptions": { | ||
"outDir": "./dist" | ||
}, | ||
"include": ["**/*.ts"], | ||
"exclude": ["dist", "node_modules"] | ||
} |
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,2 @@ | ||
node_modules/ | ||
dist/ |
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,5 @@ | ||
# @edgedb/auth-remix | ||
|
||
⚠️ **This package has been renamed** ⚠️ | ||
|
||
This package has been renamed to `@gel/auth-remix`. Please update your 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "@gel/auth-remix"; |
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,27 +1,42 @@ | ||
{ | ||
"name": "@edgedb/auth-remix", | ||
"version": "2.0.0", | ||
"version": "0.3.0", | ||
"description": "This package has been renamed to @gel/auth-remix. Please update your dependencies.", | ||
"author": "Gel <info@geldata.com>", | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/geldata/gel-js.git", | ||
"directory": "edgedb/auth-remix" | ||
}, | ||
"license": "Apache-2.0", | ||
"main": "./node_modules/@gel/auth-remix/dist/index.js", | ||
"types": "./node_modules/@gel/auth-remix/dist/index.d.ts", | ||
"sideEffects": false, | ||
"mauth-remixn": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./node_modules/@gel/auth-remix/dist/index.d.ts", | ||
"default": "./node_modules/@gel/auth-remix/dist/index.js" | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"./*": { | ||
"types": "./node_modules/@gel/auth-remix/dist/*.d.ts", | ||
"default": "./node_modules/@gel/auth-remix/dist/*.js" | ||
"types": "./dist/*.d.ts", | ||
"default": "./dist/*.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-remix": "2.0.0" | ||
} | ||
"@gel/auth-remix": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
}, | ||
"deprecated": "This package has been renamed to @gel/auth-remix" | ||
} |
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 @@ | ||
{ | ||
"extends": "@repo/tsconfig/client.json", | ||
"compilerOptions": { | ||
"outDir": "./dist" | ||
}, | ||
"include": ["**/*.ts"], | ||
"exclude": ["dist", "node_modules"] | ||
} |
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,2 @@ | ||
node_modules/ | ||
dist/ |
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,5 @@ | ||
# @edgedb/auth-sveltekit | ||
|
||
⚠️ **This package has been renamed** ⚠️ | ||
|
||
This package has been renamed to `@gel/auth-sveltekit`. Please update your 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "@gel/auth-sveltekit"; |
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,27 +1,42 @@ | ||
{ | ||
"name": "@edgedb/auth-sveltekit", | ||
"version": "2.0.0", | ||
"version": "0.3.0", | ||
"description": "This package has been renamed to @gel/auth-sveltekit. Please update your dependencies.", | ||
"author": "Gel <info@geldata.com>", | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/geldata/gel-js.git", | ||
"directory": "edgedb/auth-sveltekit" | ||
}, | ||
"license": "Apache-2.0", | ||
"main": "./node_modules/@gel/auth-sveltekit/dist/index.js", | ||
"types": "./node_modules/@gel/auth-sveltekit/dist/index.d.ts", | ||
"sideEffects": false, | ||
"mauth-sveltekitn": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./node_modules/@gel/auth-sveltekit/dist/index.d.ts", | ||
"default": "./node_modules/@gel/auth-sveltekit/dist/index.js" | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"./*": { | ||
"types": "./node_modules/@gel/auth-sveltekit/dist/*.d.ts", | ||
"default": "./node_modules/@gel/auth-sveltekit/dist/*.js" | ||
"types": "./dist/*.d.ts", | ||
"default": "./dist/*.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@gel/auth-sveltekit": "2.0.0" | ||
} | ||
"@gel/auth-sveltekit": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.5.2" | ||
}, | ||
"deprecated": "This package has been renamed to @gel/auth-sveltekit" | ||
} |
Oops, something went wrong.