@aotter/mantle 0.0.11-alpha.68 → 0.0.11-alpha.70
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.
|
@@ -455,7 +455,10 @@ Each customer site owns its Better Auth users, linked provider accounts,
|
|
|
455
455
|
sessions, roles, and grants. For Hosted GitHub, the validated proxy profile's
|
|
456
456
|
`github_login` maps to the existing site-local `user.githubLogin`, so hosted
|
|
457
457
|
and self-managed GitHub reuse the same atomic first-owner bootstrap rule. The
|
|
458
|
-
|
|
458
|
+
conventional customer-site path uses the proxy's public OAuth client with PKCE
|
|
459
|
+
and `ADMIN_GITHUB_LOGIN`; it does not use Platform Account OIDC, a client
|
|
460
|
+
secret, or an owner email handoff. The local provider id remains `github`.
|
|
461
|
+
The wire contract remains in [Platform #35](https://github.com/aotter/mantle-platform/issues/35),
|
|
459
462
|
and the product boundary is documented in
|
|
460
463
|
[`docs/auth-hosting-model.md`](../auth-hosting-model.md).
|
|
461
464
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aotter/mantle",
|
|
3
|
-
"version": "0.0.11-alpha.
|
|
3
|
+
"version": "0.0.11-alpha.70",
|
|
4
4
|
"description": "Umbrella entry for @aotter/mantle. Adopters install this one package and import from subpaths: /spec, /runtime, /cloudflare, /admin-ui. Sub-packages remain individually installable on npm for tooling / alt-adapter authors. The Netlify adapter ships as a private workspace stub in v0.1 — its subpath will be added when the impl lands in v0.2.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://mantle.tools/",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"README.md"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@aotter/mantle-admin-ui": "0.0.11-alpha.
|
|
59
|
-
"@aotter/mantle-cloudflare": "0.0.11-alpha.
|
|
60
|
-
"@aotter/mantle-spec": "0.0.11-alpha.
|
|
61
|
-
"@aotter/mantle-runtime": "0.0.11-alpha.
|
|
58
|
+
"@aotter/mantle-admin-ui": "0.0.11-alpha.70",
|
|
59
|
+
"@aotter/mantle-cloudflare": "0.0.11-alpha.70",
|
|
60
|
+
"@aotter/mantle-spec": "0.0.11-alpha.70",
|
|
61
|
+
"@aotter/mantle-runtime": "0.0.11-alpha.70"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"@cloudflare/workers-oauth-provider": "^0.8.0",
|