@clerk/nuxt 2.0.0-canary-core3.v20251208095523 → 2.0.0-canary-core3.v20251208151723
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/module.js
CHANGED
|
@@ -18,12 +18,12 @@ type PageProps<T extends string> = {
|
|
|
18
18
|
label: T;
|
|
19
19
|
url?: never;
|
|
20
20
|
};
|
|
21
|
-
type UserProfilePageProps = PageProps<'account' | 'security'>;
|
|
21
|
+
type UserProfilePageProps = PageProps<'account' | 'security' | 'billing' | 'apiKeys'>;
|
|
22
22
|
type UserProfileLinkProps = {
|
|
23
23
|
url: string;
|
|
24
24
|
label: string;
|
|
25
25
|
};
|
|
26
|
-
type OrganizationProfilePageProps = PageProps<'general' | 'members'>;
|
|
26
|
+
type OrganizationProfilePageProps = PageProps<'general' | 'members' | 'billing' | 'apiKeys'>;
|
|
27
27
|
type OrganizationLinkProps = {
|
|
28
28
|
url: string;
|
|
29
29
|
label: string;
|
|
@@ -85,7 +85,7 @@ declare const UserProfile: {
|
|
|
85
85
|
label: string;
|
|
86
86
|
url: string;
|
|
87
87
|
} | {
|
|
88
|
-
label: "account" | "security";
|
|
88
|
+
label: "account" | "security" | "billing" | "apiKeys";
|
|
89
89
|
url?: never;
|
|
90
90
|
}, vue.PublicProps>;
|
|
91
91
|
Link: vue.DefineSetupFnComponent<UserProfileLinkProps, {}, {}, UserProfileLinkProps, vue.PublicProps>;
|
|
@@ -141,7 +141,7 @@ declare const OrganizationProfile: {
|
|
|
141
141
|
label: string;
|
|
142
142
|
url: string;
|
|
143
143
|
} | {
|
|
144
|
-
label: "general" | "members";
|
|
144
|
+
label: "general" | "billing" | "apiKeys" | "members";
|
|
145
145
|
url?: never;
|
|
146
146
|
}, vue.PublicProps>;
|
|
147
147
|
Link: vue.DefineSetupFnComponent<OrganizationLinkProps, {}, {}, OrganizationLinkProps, vue.PublicProps>;
|
package/dist/runtime/plugin.js
CHANGED
|
@@ -18,7 +18,7 @@ var plugin_default = defineNuxtPlugin((nuxtApp) => {
|
|
|
18
18
|
clerkUiUrl: clerkConfig.uiUrl,
|
|
19
19
|
sdkMetadata: {
|
|
20
20
|
name: "@clerk/nuxt",
|
|
21
|
-
version: "2.0.0-canary-core3.
|
|
21
|
+
version: "2.0.0-canary-core3.v20251208151723",
|
|
22
22
|
environment: process.env.NODE_ENV
|
|
23
23
|
},
|
|
24
24
|
routerPush: (to) => navigateTo(to),
|
|
@@ -17,10 +17,10 @@ function clerkClient(event) {
|
|
|
17
17
|
disabled: isTruthy(runtimeConfig.public.clerk.telemetry?.disabled),
|
|
18
18
|
debug: isTruthy(runtimeConfig.public.clerk.telemetry?.debug)
|
|
19
19
|
},
|
|
20
|
-
userAgent: `${"@clerk/nuxt"}@${"2.0.0-canary-core3.
|
|
20
|
+
userAgent: `${"@clerk/nuxt"}@${"2.0.0-canary-core3.v20251208151723"}`,
|
|
21
21
|
sdkMetadata: {
|
|
22
22
|
name: "@clerk/nuxt",
|
|
23
|
-
version: "2.0.0-canary-core3.
|
|
23
|
+
version: "2.0.0-canary-core3.v20251208151723",
|
|
24
24
|
environment: process.env.NODE_ENV
|
|
25
25
|
}
|
|
26
26
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clerk/nuxt",
|
|
3
|
-
"version": "2.0.0-canary-core3.
|
|
3
|
+
"version": "2.0.0-canary-core3.v20251208151723",
|
|
4
4
|
"description": "Clerk SDK for Nuxt",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clerk",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"@nuxt/kit": "^4.1.3",
|
|
61
61
|
"@nuxt/schema": "^4.1.3",
|
|
62
62
|
"h3": "^1.15.4",
|
|
63
|
-
"@clerk/backend": "^3.0.0-canary-core3.
|
|
64
|
-
"@clerk/shared": "^4.0.0-canary-core3.
|
|
65
|
-
"@clerk/vue": "^2.0.0-canary-core3.
|
|
63
|
+
"@clerk/backend": "^3.0.0-canary-core3.v20251208151723",
|
|
64
|
+
"@clerk/shared": "^4.0.0-canary-core3.v20251208151723",
|
|
65
|
+
"@clerk/vue": "^2.0.0-canary-core3.v20251208151723"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"nuxt": "^4.1.2",
|