@aura-stack/elysia 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/oauth/authentik.cjs +1 -0
- package/dist/oauth/authentik.d.ts +1 -0
- package/dist/oauth/authentik.js +1 -0
- package/dist/oauth/google.cjs +1 -0
- package/dist/oauth/google.d.ts +1 -0
- package/dist/oauth/google.js +1 -0
- package/dist/oauth/hubspot.cjs +1 -0
- package/dist/oauth/hubspot.d.ts +1 -0
- package/dist/oauth/hubspot.js +1 -0
- package/dist/oauth/huggingface.cjs +1 -0
- package/dist/oauth/huggingface.d.ts +1 -0
- package/dist/oauth/huggingface.js +1 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -671,6 +671,7 @@ declare const createAuth: <Identity extends Identities>(config: AuthConfig$1<Ide
|
|
|
671
671
|
getSession: (options: _$_aura_stack_auth_types0.GetSessionAPIOptions) => Promise<_$_aura_stack_auth_types0.GetSessionAPIReturn<FromShapeToObject<Identity>>>;
|
|
672
672
|
signIn: (oauth: _$_aura_stack_auth_types0.LiteralUnion<_$_aura_stack_auth_types0.BuiltInOAuthProvider>, options?: _$_aura_stack_auth_types0.SignInAPIOptions) => Promise<_$_aura_stack_auth_types0.SignInAPIReturn>;
|
|
673
673
|
signInCredentials: (options: _$_aura_stack_auth_types0.SignInCredentialsAPIOptions) => Promise<_$_aura_stack_auth_types0.SignInCredentialsAPIReturn>;
|
|
674
|
+
signUp: <Payload extends Record<string, any> = {}>(options: _$_aura_stack_auth_types0.SignUpAPIOptions<Payload>) => Promise<_$_aura_stack_auth_types0.SignUpAPIReturn>;
|
|
674
675
|
updateSession: (options: _$_aura_stack_auth_types0.UpdateSessionAPIOptions<FromShapeToObject<Identity>>) => Promise<_$_aura_stack_auth_types0.UpdateSessionAPIReturn<FromShapeToObject<Identity>>>;
|
|
675
676
|
signOut: (options: _$_aura_stack_auth_types0.SignOutAPIOptions) => Promise<_$_aura_stack_auth_types0.SignOutAPIReturn>;
|
|
676
677
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=require(`@aura-stack/auth/oauth/authentik`);Object.keys(e).forEach(function(t){t!==`default`&&!Object.prototype.hasOwnProperty.call(exports,t)&&Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@aura-stack/auth/oauth/authentik";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"@aura-stack/auth/oauth/authentik";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=require(`@aura-stack/auth/oauth/google`);Object.keys(e).forEach(function(t){t!==`default`&&!Object.prototype.hasOwnProperty.call(exports,t)&&Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@aura-stack/auth/oauth/google";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"@aura-stack/auth/oauth/google";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=require(`@aura-stack/auth/oauth/hubspot`);Object.keys(e).forEach(function(t){t!==`default`&&!Object.prototype.hasOwnProperty.call(exports,t)&&Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@aura-stack/auth/oauth/hubspot";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"@aura-stack/auth/oauth/hubspot";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=require(`@aura-stack/auth/oauth/huggingface`);Object.keys(e).forEach(function(t){t!==`default`&&!Object.prototype.hasOwnProperty.call(exports,t)&&Object.defineProperty(exports,t,{enumerable:!0,get:function(){return e[t]}})});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@aura-stack/auth/oauth/huggingface";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"@aura-stack/auth/oauth/huggingface";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aura-stack/elysia",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Authentication integration for Elysia applications. Provides middleware, route handlers and session verification powered by Aura Auth.",
|
|
@@ -76,13 +76,13 @@
|
|
|
76
76
|
},
|
|
77
77
|
"license": "MIT",
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@aura-stack/auth": "0.
|
|
79
|
+
"@aura-stack/auth": "0.8.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"elysia": "^1.2.22",
|
|
83
83
|
"vitest": "4.1.4",
|
|
84
|
-
"@aura-stack/
|
|
85
|
-
"@aura-stack/
|
|
84
|
+
"@aura-stack/tsdown-config": "0.0.0",
|
|
85
|
+
"@aura-stack/tsconfig": "0.0.0"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"elysia": ">=1.0.0"
|