@shubh90/app-runtime 0.2.1 → 0.2.2
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/auth/index.d.ts +1 -0
- package/dist/auth/index.js +1 -0
- package/package.json +1 -1
package/dist/auth/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type { MiiIdentity } from "./plaza.js";
|
|
|
10
10
|
export type { UsersConfig } from "./users-config.js";
|
|
11
11
|
export { SIGN_IN_PROBLEMS } from "./problems.js";
|
|
12
12
|
export { safeNext } from "./next-path.js";
|
|
13
|
+
export { getAuthMode } from "./mode.js";
|
|
13
14
|
export { SESSION_COOKIE } from "./lookup.js";
|
|
14
15
|
export { miiAuthConfig, type MiiAuthConfig } from "./config.js";
|
|
15
16
|
export { redeemWithPlaza, signInWithPlaza, type SignInFailure, type SignInResult } from "./plaza.js";
|
package/dist/auth/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import { deactivateUser, upsertMemberFromIdentity } from "./users.js";
|
|
|
10
10
|
import { resolveUsers } from "./users-config.js";
|
|
11
11
|
export { SIGN_IN_PROBLEMS } from "./problems.js";
|
|
12
12
|
export { safeNext } from "./next-path.js";
|
|
13
|
+
export { getAuthMode } from "./mode.js";
|
|
13
14
|
export { SESSION_COOKIE } from "./lookup.js";
|
|
14
15
|
// Unbound pieces (no user-table context): the app's own proxy and login page
|
|
15
16
|
// may use these directly, the way the template's do.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shubh90/app-runtime",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "The platform contract every mii org app depends on \u2014 sign-in, and the Next.js config an app must not diverge from. A versioned package, not files copied into each repo.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|