@aura-stack/auth 0.3.0 → 0.4.0-rc.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/@types/index.d.ts +1 -1
- package/dist/@types/router.d.d.ts +1 -1
- package/dist/actions/callback/access-token.d.ts +1 -1
- package/dist/actions/callback/callback.d.ts +25 -3
- package/dist/actions/callback/userinfo.d.ts +1 -1
- package/dist/actions/csrfToken/csrfToken.d.ts +3 -1
- package/dist/actions/index.d.ts +1 -1
- package/dist/actions/index.js +7 -7
- package/dist/actions/session/session.d.ts +3 -1
- package/dist/actions/signIn/authorization.d.ts +1 -1
- package/dist/actions/signIn/signIn.d.ts +24 -3
- package/dist/actions/signOut/signOut.d.ts +9 -1
- package/dist/assert.d.ts +1 -1
- package/dist/cookie.d.ts +1 -1
- package/dist/errors.d.ts +1 -1
- package/dist/{index-DkaLJFn8.d.ts → index-B8jeIElf.d.ts} +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.d.ts +65 -5
- package/dist/index.js +10 -9
- package/dist/oauth/bitbucket.d.ts +1 -1
- package/dist/oauth/discord.d.ts +1 -1
- package/dist/oauth/figma.d.ts +1 -1
- package/dist/oauth/github.d.ts +1 -1
- package/dist/oauth/gitlab.d.ts +1 -1
- package/dist/oauth/index.d.ts +1 -1
- package/dist/oauth/mailchimp.d.ts +1 -1
- package/dist/oauth/pinterest.d.ts +1 -1
- package/dist/oauth/spotify.d.ts +1 -1
- package/dist/oauth/strava.d.ts +1 -1
- package/dist/oauth/x.d.ts +1 -1
- package/dist/secure.d.ts +1 -1
- package/dist/utils.d.ts +1 -1
- package/package.json +2 -2
package/dist/@types/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import '../schemas.js';
|
|
|
3
3
|
import '@aura-stack/router/cookie';
|
|
4
4
|
import '@aura-stack/jose';
|
|
5
5
|
import '@aura-stack/jose/jose';
|
|
6
|
-
export { i as APIErrorMap, a0 as AccessTokenError, d as AuthConfig,
|
|
6
|
+
export { i as APIErrorMap, a0 as AccessTokenError, d as AuthConfig, f as AuthInstance, b as AuthInternalErrorCode, A as AuthRuntimeConfig, c as AuthSecurityErrorCode, $ as AuthorizationError, C as CookieConfig, Z as CookieName, a as CookieStoreConfig, Y as CookieStrategyAttributes, E as ErrorType, V as HostCookie, J as JWTPayloadWithToken, Q as JWTStandardClaims, e as JoseInstance, a2 as OAuthEnv, _ as OAuthError, O as OAuthProvider, g as OAuthProviderConfig, h as OAuthProviderCredentials, j as OAuthProviderRecord, R as RouterGlobalContext, T as SecureCookie, S as Session, W as StandardCookie, a1 as TokenRevocationError, U as User } from '../index-B8jeIElf.js';
|
|
7
7
|
export { LiteralUnion, Prettify } from './utility.js';
|
|
@@ -1,12 +1,34 @@
|
|
|
1
1
|
import * as _aura_stack_router from '@aura-stack/router';
|
|
2
|
-
import {
|
|
3
|
-
import '
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { j as OAuthProviderRecord } from '../../index-B8jeIElf.js';
|
|
4
4
|
import '../../schemas.js';
|
|
5
5
|
import '@aura-stack/router/cookie';
|
|
6
6
|
import '@aura-stack/jose';
|
|
7
7
|
import '@aura-stack/jose/jose';
|
|
8
8
|
import '../../@types/utility.js';
|
|
9
9
|
|
|
10
|
-
declare const callbackAction: (oauth: OAuthProviderRecord) => _aura_stack_router.RouteEndpoint<"GET", "/callback/:oauth", {
|
|
10
|
+
declare const callbackAction: (oauth: OAuthProviderRecord) => _aura_stack_router.RouteEndpoint<"GET", "/callback/:oauth", {
|
|
11
|
+
schemas?: {
|
|
12
|
+
params: z.ZodObject<{
|
|
13
|
+
oauth: z.ZodEnum<{
|
|
14
|
+
[x: string & Record<never, never>]: string & Record<never, never>;
|
|
15
|
+
github: "github";
|
|
16
|
+
bitbucket: "bitbucket";
|
|
17
|
+
figma: "figma";
|
|
18
|
+
discord: "discord";
|
|
19
|
+
gitlab: "gitlab";
|
|
20
|
+
spotify: "spotify";
|
|
21
|
+
x: "x";
|
|
22
|
+
strava: "strava";
|
|
23
|
+
mailchimp: "mailchimp";
|
|
24
|
+
pinterest: "pinterest";
|
|
25
|
+
}>;
|
|
26
|
+
}, z.core.$strip>;
|
|
27
|
+
searchParams: z.ZodObject<{
|
|
28
|
+
code: z.ZodString;
|
|
29
|
+
state: z.ZodString;
|
|
30
|
+
}, z.core.$strip>;
|
|
31
|
+
} | undefined;
|
|
32
|
+
}>;
|
|
11
33
|
|
|
12
34
|
export { callbackAction };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as _aura_stack_router from '@aura-stack/router';
|
|
2
2
|
|
|
3
|
-
declare const csrfTokenAction: _aura_stack_router.RouteEndpoint<"GET", "/csrfToken", {
|
|
3
|
+
declare const csrfTokenAction: _aura_stack_router.RouteEndpoint<"GET", "/csrfToken", {
|
|
4
|
+
schemas?: _aura_stack_router.EndpointSchemas | undefined;
|
|
5
|
+
}>;
|
|
4
6
|
|
|
5
7
|
export { csrfTokenAction };
|
package/dist/actions/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export { sessionAction } from './session/session.js';
|
|
|
4
4
|
export { signOutAction } from './signOut/signOut.js';
|
|
5
5
|
export { csrfTokenAction } from './csrfToken/csrfToken.js';
|
|
6
6
|
import '@aura-stack/router';
|
|
7
|
-
import '../index-DkaLJFn8.js';
|
|
8
7
|
import 'zod';
|
|
8
|
+
import '../index-B8jeIElf.js';
|
|
9
9
|
import '../schemas.js';
|
|
10
10
|
import '@aura-stack/router/cookie';
|
|
11
11
|
import '@aura-stack/jose';
|
package/dist/actions/index.js
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import "../chunk-ITQ7352M.js";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import {
|
|
6
|
-
csrfTokenAction
|
|
7
|
-
} from "../chunk-HT4YLL7N.js";
|
|
3
|
+
signInAction
|
|
4
|
+
} from "../chunk-3EUWD5BB.js";
|
|
8
5
|
import {
|
|
9
6
|
callbackAction
|
|
10
7
|
} from "../chunk-KSWLO5ZU.js";
|
|
@@ -14,8 +11,11 @@ import {
|
|
|
14
11
|
sessionAction
|
|
15
12
|
} from "../chunk-JVFTCTTE.js";
|
|
16
13
|
import {
|
|
17
|
-
|
|
18
|
-
} from "../chunk-
|
|
14
|
+
csrfTokenAction
|
|
15
|
+
} from "../chunk-HT4YLL7N.js";
|
|
16
|
+
import {
|
|
17
|
+
signOutAction
|
|
18
|
+
} from "../chunk-A3N4PVAT.js";
|
|
19
19
|
import "../chunk-N4SX7TZT.js";
|
|
20
20
|
import "../chunk-W6LG7BFW.js";
|
|
21
21
|
import "../chunk-STHEPPUZ.js";
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as _aura_stack_router from '@aura-stack/router';
|
|
2
2
|
|
|
3
|
-
declare const sessionAction: _aura_stack_router.RouteEndpoint<"GET", "/session", {
|
|
3
|
+
declare const sessionAction: _aura_stack_router.RouteEndpoint<"GET", "/session", {
|
|
4
|
+
schemas?: _aura_stack_router.EndpointSchemas | undefined;
|
|
5
|
+
}>;
|
|
4
6
|
|
|
5
7
|
export { sessionAction };
|
|
@@ -1,12 +1,33 @@
|
|
|
1
1
|
import * as _aura_stack_router from '@aura-stack/router';
|
|
2
|
-
import {
|
|
3
|
-
import '
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { j as OAuthProviderRecord } from '../../index-B8jeIElf.js';
|
|
4
4
|
import '../../schemas.js';
|
|
5
5
|
import '@aura-stack/router/cookie';
|
|
6
6
|
import '@aura-stack/jose';
|
|
7
7
|
import '@aura-stack/jose/jose';
|
|
8
8
|
import '../../@types/utility.js';
|
|
9
9
|
|
|
10
|
-
declare const signInAction: (oauth: OAuthProviderRecord) => _aura_stack_router.RouteEndpoint<"GET", "/signIn/:oauth", {
|
|
10
|
+
declare const signInAction: (oauth: OAuthProviderRecord) => _aura_stack_router.RouteEndpoint<"GET", "/signIn/:oauth", {
|
|
11
|
+
schemas?: {
|
|
12
|
+
params: z.ZodObject<{
|
|
13
|
+
oauth: z.ZodEnum<{
|
|
14
|
+
[x: string & Record<never, never>]: string & Record<never, never>;
|
|
15
|
+
github: "github";
|
|
16
|
+
bitbucket: "bitbucket";
|
|
17
|
+
figma: "figma";
|
|
18
|
+
discord: "discord";
|
|
19
|
+
gitlab: "gitlab";
|
|
20
|
+
spotify: "spotify";
|
|
21
|
+
x: "x";
|
|
22
|
+
strava: "strava";
|
|
23
|
+
mailchimp: "mailchimp";
|
|
24
|
+
pinterest: "pinterest";
|
|
25
|
+
}>;
|
|
26
|
+
}, z.core.$strip>;
|
|
27
|
+
searchParams: z.ZodObject<{
|
|
28
|
+
redirectTo: z.ZodOptional<z.ZodString>;
|
|
29
|
+
}, z.core.$strip>;
|
|
30
|
+
} | undefined;
|
|
31
|
+
}>;
|
|
11
32
|
|
|
12
33
|
export { signInAction };
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import * as _aura_stack_router from '@aura-stack/router';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* @see https://datatracker.ietf.org/doc/html/rfc7009
|
|
5
6
|
*/
|
|
6
|
-
declare const signOutAction: _aura_stack_router.RouteEndpoint<"POST", "/signOut", {
|
|
7
|
+
declare const signOutAction: _aura_stack_router.RouteEndpoint<"POST", "/signOut", {
|
|
8
|
+
schemas?: {
|
|
9
|
+
searchParams: z.ZodObject<{
|
|
10
|
+
token_type_hint: z.ZodLiteral<"session_token">;
|
|
11
|
+
redirectTo: z.ZodOptional<z.ZodString>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
} | undefined;
|
|
14
|
+
}>;
|
|
7
15
|
|
|
8
16
|
export { signOutAction };
|
package/dist/assert.d.ts
CHANGED
package/dist/cookie.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SerializeOptions } from '@aura-stack/router/cookie';
|
|
2
2
|
import { JWTPayload } from '@aura-stack/jose/jose';
|
|
3
|
-
import { A as AuthRuntimeConfig, C as CookieConfig, a as CookieStoreConfig } from './index-
|
|
3
|
+
import { A as AuthRuntimeConfig, C as CookieConfig, a as CookieStoreConfig } from './index-B8jeIElf.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import './schemas.js';
|
|
6
6
|
import '@aura-stack/jose';
|
package/dist/errors.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as ErrorType, b as AuthInternalErrorCode, c as AuthSecurityErrorCode } from './index-
|
|
1
|
+
import { E as ErrorType, b as AuthInternalErrorCode, c as AuthSecurityErrorCode } from './index-B8jeIElf.js';
|
|
2
2
|
import { LiteralUnion } from './@types/utility.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import './schemas.js';
|
|
@@ -676,4 +676,4 @@ type APIErrorMap = Record<string, {
|
|
|
676
676
|
message: string;
|
|
677
677
|
}>;
|
|
678
678
|
|
|
679
|
-
export { type AuthorizationError as $, type AuthRuntimeConfig as A, type BitbucketProfile as B, type CookieConfig as C, type DiscordProfile as D, type ErrorType as E, type FigmaProfile as F, type GitLabProfile as G, createBuiltInOAuthProviders as H, type Image as I, type JWTPayloadWithToken as J, type BuiltInOAuthProvider as K, type Login as L, type MailchimpProfile as M, type Nameplate as N, type OAuthProvider as O, type PinterestProfile as P, type JWTStandardClaims as Q, type RouterGlobalContext as R, type Session as S, type SecureCookie as T, type User as U, type HostCookie as V, type StandardCookie as W, type XProfile as X, type CookieStrategyAttributes as Y, type CookieName as Z, type OAuthError as _, type CookieStoreConfig as a, type AccessTokenError as a0, type TokenRevocationError as a1, type OAuthEnv as a2, type AuthInternalErrorCode as b, type AuthSecurityErrorCode as c, type AuthConfig as d, type
|
|
679
|
+
export { type AuthorizationError as $, type AuthRuntimeConfig as A, type BitbucketProfile as B, type CookieConfig as C, type DiscordProfile as D, type ErrorType as E, type FigmaProfile as F, type GitLabProfile as G, createBuiltInOAuthProviders as H, type Image as I, type JWTPayloadWithToken as J, type BuiltInOAuthProvider as K, type Login as L, type MailchimpProfile as M, type Nameplate as N, type OAuthProvider as O, type PinterestProfile as P, type JWTStandardClaims as Q, type RouterGlobalContext as R, type Session as S, type SecureCookie as T, type User as U, type HostCookie as V, type StandardCookie as W, type XProfile as X, type CookieStrategyAttributes as Y, type CookieName as Z, type OAuthError as _, type CookieStoreConfig as a, type AccessTokenError as a0, type TokenRevocationError as a1, type OAuthEnv as a2, type AuthInternalErrorCode as b, type AuthSecurityErrorCode as c, type AuthConfig as d, type JoseInstance as e, type AuthInstance as f, type OAuthProviderConfig as g, type OAuthProviderCredentials as h, type APIErrorMap as i, type OAuthProviderRecord as j, type SummaryClub as k, type SummaryGear as l, mailchimp as m, type StravaProfile as n, type SpotifyProfile as o, pinterest as p, spotify as q, gitlab as r, strava as s, discord as t, figma as u, bitbucket as v, type GitHubProfile as w, x, github as y, builtInOAuthProviders as z };
|
package/dist/index.cjs
CHANGED
|
@@ -30,7 +30,8 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// src/index.ts
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
|
-
createAuth: () => createAuth
|
|
33
|
+
createAuth: () => createAuth,
|
|
34
|
+
createClient: () => import_router7.createClient
|
|
34
35
|
});
|
|
35
36
|
module.exports = __toCommonJS(index_exports);
|
|
36
37
|
var import_config2 = require("dotenv/config");
|
|
@@ -1188,5 +1189,6 @@ var createAuth = (authConfig) => {
|
|
|
1188
1189
|
};
|
|
1189
1190
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1190
1191
|
0 && (module.exports = {
|
|
1191
|
-
createAuth
|
|
1192
|
+
createAuth,
|
|
1193
|
+
createClient
|
|
1192
1194
|
});
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
import { d as AuthConfig, e as
|
|
2
|
-
export {
|
|
3
|
-
import '
|
|
1
|
+
import { d as AuthConfig, e as JoseInstance } from './index-B8jeIElf.js';
|
|
2
|
+
export { f as AuthInstance, C as CookieConfig, E as ErrorType, O as OAuthProvider, g as OAuthProviderConfig, h as OAuthProviderCredentials, S as Session, U as User } from './index-B8jeIElf.js';
|
|
3
|
+
import * as _aura_stack_router from '@aura-stack/router';
|
|
4
|
+
export { createClient } from '@aura-stack/router';
|
|
5
|
+
import * as zod_v4_core from 'zod/v4/core';
|
|
6
|
+
import * as zod from 'zod';
|
|
4
7
|
import './schemas.js';
|
|
5
8
|
import '@aura-stack/router/cookie';
|
|
6
9
|
import '@aura-stack/jose';
|
|
@@ -29,6 +32,63 @@ import './@types/utility.js';
|
|
|
29
32
|
* }]
|
|
30
33
|
* })
|
|
31
34
|
*/
|
|
32
|
-
declare const createAuth: (authConfig: AuthConfig) =>
|
|
35
|
+
declare const createAuth: (authConfig: AuthConfig) => {
|
|
36
|
+
handlers: _aura_stack_router.Router<[_aura_stack_router.RouteEndpoint<"GET", "/signIn/:oauth", {
|
|
37
|
+
schemas?: {
|
|
38
|
+
params: zod.ZodObject<{
|
|
39
|
+
oauth: zod.ZodEnum<{
|
|
40
|
+
[x: string & Record<never, never>]: string & Record<never, never>;
|
|
41
|
+
github: "github";
|
|
42
|
+
bitbucket: "bitbucket";
|
|
43
|
+
figma: "figma";
|
|
44
|
+
discord: "discord";
|
|
45
|
+
gitlab: "gitlab";
|
|
46
|
+
spotify: "spotify";
|
|
47
|
+
x: "x";
|
|
48
|
+
strava: "strava";
|
|
49
|
+
mailchimp: "mailchimp";
|
|
50
|
+
pinterest: "pinterest";
|
|
51
|
+
}>;
|
|
52
|
+
}, zod_v4_core.$strip>;
|
|
53
|
+
searchParams: zod.ZodObject<{
|
|
54
|
+
redirectTo: zod.ZodOptional<zod.ZodString>;
|
|
55
|
+
}, zod_v4_core.$strip>;
|
|
56
|
+
} | undefined;
|
|
57
|
+
}>, _aura_stack_router.RouteEndpoint<"GET", "/callback/:oauth", {
|
|
58
|
+
schemas?: {
|
|
59
|
+
params: zod.ZodObject<{
|
|
60
|
+
oauth: zod.ZodEnum<{
|
|
61
|
+
[x: string & Record<never, never>]: string & Record<never, never>;
|
|
62
|
+
github: "github";
|
|
63
|
+
bitbucket: "bitbucket";
|
|
64
|
+
figma: "figma";
|
|
65
|
+
discord: "discord";
|
|
66
|
+
gitlab: "gitlab";
|
|
67
|
+
spotify: "spotify";
|
|
68
|
+
x: "x";
|
|
69
|
+
strava: "strava";
|
|
70
|
+
mailchimp: "mailchimp";
|
|
71
|
+
pinterest: "pinterest";
|
|
72
|
+
}>;
|
|
73
|
+
}, zod_v4_core.$strip>;
|
|
74
|
+
searchParams: zod.ZodObject<{
|
|
75
|
+
code: zod.ZodString;
|
|
76
|
+
state: zod.ZodString;
|
|
77
|
+
}, zod_v4_core.$strip>;
|
|
78
|
+
} | undefined;
|
|
79
|
+
}>, _aura_stack_router.RouteEndpoint<"GET", "/session", {
|
|
80
|
+
schemas?: _aura_stack_router.EndpointSchemas | undefined;
|
|
81
|
+
}>, _aura_stack_router.RouteEndpoint<"POST", "/signOut", {
|
|
82
|
+
schemas?: {
|
|
83
|
+
searchParams: zod.ZodObject<{
|
|
84
|
+
token_type_hint: zod.ZodLiteral<"session_token">;
|
|
85
|
+
redirectTo: zod.ZodOptional<zod.ZodString>;
|
|
86
|
+
}, zod_v4_core.$strip>;
|
|
87
|
+
} | undefined;
|
|
88
|
+
}>, _aura_stack_router.RouteEndpoint<"GET", "/csrfToken", {
|
|
89
|
+
schemas?: _aura_stack_router.EndpointSchemas | undefined;
|
|
90
|
+
}>]>;
|
|
91
|
+
jose: JoseInstance;
|
|
92
|
+
};
|
|
33
93
|
|
|
34
|
-
export { AuthConfig,
|
|
94
|
+
export { AuthConfig, JoseInstance, createAuth };
|
package/dist/index.js
CHANGED
|
@@ -11,11 +11,8 @@ import "./chunk-E3OXBRYF.js";
|
|
|
11
11
|
import "./chunk-6R2YZ4AC.js";
|
|
12
12
|
import "./chunk-ITQ7352M.js";
|
|
13
13
|
import {
|
|
14
|
-
|
|
15
|
-
} from "./chunk-
|
|
16
|
-
import {
|
|
17
|
-
csrfTokenAction
|
|
18
|
-
} from "./chunk-HT4YLL7N.js";
|
|
14
|
+
signInAction
|
|
15
|
+
} from "./chunk-3EUWD5BB.js";
|
|
19
16
|
import {
|
|
20
17
|
callbackAction
|
|
21
18
|
} from "./chunk-KSWLO5ZU.js";
|
|
@@ -25,8 +22,11 @@ import {
|
|
|
25
22
|
sessionAction
|
|
26
23
|
} from "./chunk-JVFTCTTE.js";
|
|
27
24
|
import {
|
|
28
|
-
|
|
29
|
-
} from "./chunk-
|
|
25
|
+
csrfTokenAction
|
|
26
|
+
} from "./chunk-HT4YLL7N.js";
|
|
27
|
+
import {
|
|
28
|
+
signOutAction
|
|
29
|
+
} from "./chunk-A3N4PVAT.js";
|
|
30
30
|
import "./chunk-N4SX7TZT.js";
|
|
31
31
|
import "./chunk-FIPU4MLT.js";
|
|
32
32
|
import "./chunk-IUYZQTJV.js";
|
|
@@ -49,7 +49,7 @@ import "./chunk-YRCB5FLE.js";
|
|
|
49
49
|
|
|
50
50
|
// src/index.ts
|
|
51
51
|
import "dotenv/config";
|
|
52
|
-
import { createRouter } from "@aura-stack/router";
|
|
52
|
+
import { createRouter, createClient } from "@aura-stack/router";
|
|
53
53
|
var createInternalConfig = (authConfig) => {
|
|
54
54
|
const useSecure = authConfig?.trustedProxyHeaders ?? false;
|
|
55
55
|
return {
|
|
@@ -85,5 +85,6 @@ var createAuth = (authConfig) => {
|
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
87
|
export {
|
|
88
|
-
createAuth
|
|
88
|
+
createAuth,
|
|
89
|
+
createClient
|
|
89
90
|
};
|
package/dist/oauth/discord.d.ts
CHANGED
package/dist/oauth/figma.d.ts
CHANGED
package/dist/oauth/github.d.ts
CHANGED
package/dist/oauth/gitlab.d.ts
CHANGED
package/dist/oauth/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { B as BitbucketProfile, K as BuiltInOAuthProvider, D as DiscordProfile, F as FigmaProfile, w as GitHubProfile, G as GitLabProfile, I as Image, L as Login, M as MailchimpProfile, N as Nameplate, P as PinterestProfile, o as SpotifyProfile, n as StravaProfile, k as SummaryClub, l as SummaryGear, X as XProfile, v as bitbucket, z as builtInOAuthProviders, H as createBuiltInOAuthProviders, t as discord, u as figma, y as github, r as gitlab, m as mailchimp, p as pinterest, q as spotify, s as strava, x } from '../index-
|
|
1
|
+
export { B as BitbucketProfile, K as BuiltInOAuthProvider, D as DiscordProfile, F as FigmaProfile, w as GitHubProfile, G as GitLabProfile, I as Image, L as Login, M as MailchimpProfile, N as Nameplate, P as PinterestProfile, o as SpotifyProfile, n as StravaProfile, k as SummaryClub, l as SummaryGear, X as XProfile, v as bitbucket, z as builtInOAuthProviders, H as createBuiltInOAuthProviders, t as discord, u as figma, y as github, r as gitlab, m as mailchimp, p as pinterest, q as spotify, s as strava, x } from '../index-B8jeIElf.js';
|
|
2
2
|
import '../@types/utility.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import '../schemas.js';
|
package/dist/oauth/spotify.d.ts
CHANGED
package/dist/oauth/strava.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { n as StravaProfile, k as SummaryClub, l as SummaryGear, s as strava } from '../index-
|
|
1
|
+
export { n as StravaProfile, k as SummaryClub, l as SummaryGear, s as strava } from '../index-B8jeIElf.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import '../schemas.js';
|
|
4
4
|
import '@aura-stack/router/cookie';
|
package/dist/oauth/x.d.ts
CHANGED
package/dist/secure.d.ts
CHANGED
package/dist/utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aura-stack/auth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0-rc.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Core auth for @aura-stack/auth",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@aura-stack/router": "
|
|
47
|
+
"@aura-stack/router": "0.6.0-rc.1",
|
|
48
48
|
"dotenv": "^17.2.3",
|
|
49
49
|
"zod": "^4.3.5",
|
|
50
50
|
"@aura-stack/jose": "0.2.0"
|