@authup/client-auth-console 1.0.0-beta.60 → 1.0.0-beta.61
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/client/index.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
13
13
|
<title>Authup</title>
|
|
14
14
|
<!--preload-links-->
|
|
15
|
-
<script type="module" crossorigin src="/public/assets/index-
|
|
15
|
+
<script type="module" crossorigin src="/public/assets/index-B6KGdfU3.js"></script>
|
|
16
16
|
<link rel="stylesheet" crossorigin href="/public/assets/index-insIj9Yi.css">
|
|
17
17
|
</head>
|
|
18
18
|
<body>
|
package/dist/server/server.js
CHANGED
|
@@ -87876,6 +87876,10 @@ var IdentityProviderAPI = class extends BaseAPI$1 {
|
|
|
87876
87876
|
async createLinkRequest(id) {
|
|
87877
87877
|
return (await this.client.post(`identity-providers/${id}/link-request`)).data;
|
|
87878
87878
|
}
|
|
87879
|
+
async confirmLinkRequest(id, handle) {
|
|
87880
|
+
const payload = { handle };
|
|
87881
|
+
return (await this.client.post(`identity-providers/${id}/link-confirm`, payload)).data;
|
|
87882
|
+
}
|
|
87879
87883
|
async getMany(record) {
|
|
87880
87884
|
return (await this.client.get(`identity-providers${buildQueryString(record)}`)).data;
|
|
87881
87885
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authup/client-auth-console",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.61",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"description": "Authup's auth console: the SSR auth workflow UI (authorize, register, activate, password recovery, logout) rendered by server-core on the IdP origin.",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"node": "^22.13.0 || ^23.5.0 || >=24.0.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@authup/core-http-kit": "^1.0.0-beta.
|
|
27
|
+
"@authup/core-http-kit": "^1.0.0-beta.61"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@authup/client-web-kit": "^1.0.0-beta.
|
|
31
|
-
"@authup/client-web-kit-theme": "^1.0.0-beta.
|
|
32
|
-
"@authup/client-web-theme": "^1.0.0-beta.
|
|
33
|
-
"@authup/core-kit": "^1.0.0-beta.
|
|
34
|
-
"@authup/i18n": "^1.0.0-beta.
|
|
35
|
-
"@authup/kit": "^1.0.0-beta.
|
|
30
|
+
"@authup/client-web-kit": "^1.0.0-beta.61",
|
|
31
|
+
"@authup/client-web-kit-theme": "^1.0.0-beta.61",
|
|
32
|
+
"@authup/client-web-theme": "^1.0.0-beta.61",
|
|
33
|
+
"@authup/core-kit": "^1.0.0-beta.61",
|
|
34
|
+
"@authup/i18n": "^1.0.0-beta.61",
|
|
35
|
+
"@authup/kit": "^1.0.0-beta.61",
|
|
36
36
|
"@fontsource/asap": "^5.3.0",
|
|
37
37
|
"@fontsource/nunito": "^5.3.0",
|
|
38
38
|
"@iconify-json/fa6-brands": "^1.2.0",
|