@studiocubics/cms 0.0.10 → 0.0.12
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/ui/System/Invitations/InvitationListActions.d.ts +1 -1
- package/dist/client/ui/System/SystemUser/SystemUserDetailsForm/SystemUserDetailsForm.d.ts +1 -1
- package/dist/client/ui/System/SystemUser/SystemUserRoleForm/SystemUserRoleForm.d.ts +1 -1
- package/dist/client/ui/System/WelcomePage/WelcomePage.js +1 -1
- package/dist/client/ui/System/WelcomePage/WelcomePage.js.map +1 -1
- package/dist/client/ui/System/WelcomePage/WelcomePage.module.css.js +1 -1
- package/dist/index.css +1 -1
- package/dist/server/clerk/actions/invitations.d.ts +1 -1
- package/dist/server/clerk/actions/sessions.d.ts +1 -1
- package/dist/server/clerk/actions/systemUsers.d.ts +1 -1
- package/package.json +6 -6
|
@@ -5,7 +5,7 @@ export declare function InvitationListActions({ status, }: {
|
|
|
5
5
|
export declare function InvitationRevokeDialog({ id }: {
|
|
6
6
|
id: Invitation["id"];
|
|
7
7
|
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const initialInvitationCreateState: import("@studiocubics/utils").ActionResponse<"role" | "emailAddress" | "expiresInDays", ("role" | "emailAddress" | "expiresInDays")[]>;
|
|
8
|
+
declare const initialInvitationCreateState: import("@studiocubics/utils").ActionResponse<"role" | "emailAddress" | "expiresInDays", ("role" | "emailAddress" | "expiresInDays")[], unknown>;
|
|
9
9
|
export type InvitationCreateState = typeof initialInvitationCreateState;
|
|
10
10
|
export declare function InvitationCreateDialog(): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { User } from "@clerk/nextjs/server";
|
|
2
2
|
import { type CardProps } from "@studiocubics/components";
|
|
3
|
-
declare const initialSystemUserDetailsUpdateState: import("@studiocubics/utils").ActionResponse<"firstName" | "lastName" | "imageUrl", ("firstName" | "lastName" | "imageUrl")[]>;
|
|
3
|
+
declare const initialSystemUserDetailsUpdateState: import("@studiocubics/utils").ActionResponse<"firstName" | "lastName" | "imageUrl", ("firstName" | "lastName" | "imageUrl")[], unknown>;
|
|
4
4
|
export type SystemUserDetailsUpdateState = typeof initialSystemUserDetailsUpdateState;
|
|
5
5
|
export declare function SystemUserDetailsForm({ userId, firstName, lastName, imageUrl, hasImage, handleClose, ...rest }: {
|
|
6
6
|
userId: User["id"];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type CardProps } from "@studiocubics/components";
|
|
2
2
|
import { type Role } from "../../../../clerk/rbacConfig";
|
|
3
3
|
import type { User } from "@clerk/nextjs/server";
|
|
4
|
-
declare const initialSystemUserRoleUpdateState: import("@studiocubics/utils").ActionResponse<"role", "role"[]>;
|
|
4
|
+
declare const initialSystemUserRoleUpdateState: import("@studiocubics/utils").ActionResponse<"role", "role"[], unknown>;
|
|
5
5
|
export type SystemUserRoleUpdateState = typeof initialSystemUserRoleUpdateState;
|
|
6
6
|
export declare function SystemUserRoleForm({ userId, role, handleClose, ...rest }: {
|
|
7
7
|
userId: User["id"];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{jsx as e,jsxs as o}from"react/jsx-runtime";import{Button as r,CubicsUILogo as
|
|
1
|
+
import{jsx as e,jsxs as o}from"react/jsx-runtime";import{Button as r,CubicsUILogo as n,PoweredByBanner as t}from"@studiocubics/components";import a from"./WelcomePage.module.css.js";import c from"next/link";import{LogIn as i,LayoutDashboardIcon as d}from"lucide-react";import{auth as l}from"../../../../server/clerk/auth.js";async function s(){const{userId:s}=await l(),m=e(c,{href:"/auth/signIn/",children:e(r,{variant:"contained",endIcon:e(i,{}),children:"Get Started"})}),u=e(c,{href:"/dashboard",children:e(r,{variant:"contained",endIcon:e(d,{}),children:"Go to dashboard"})});return o("div",{className:a.root,children:[e(n,{width:"10rem",onlyFavicon:!0}),e(t,{size:"md"}),e("h2",{children:"Welcome to Cubics CMS!"}),e("p",{className:a.desc,children:"A powerful and intuitive platform to manage your content effortlessly. Streamline updates, enhance collaboration, and take full control of your digital presence."}),s?u:m,!s&&o("p",{className:a.footer,children:["Dont have an account? ",e(c,{href:"/auth/requestAccount",children:"Request from an admin"})]})]})}export{s as WelcomePage};
|
|
2
2
|
//# sourceMappingURL=WelcomePage.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WelcomePage.js","sources":["../../../../../src/client/ui/System/WelcomePage/WelcomePage.tsx"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"WelcomePage.js","sources":["../../../../../src/client/ui/System/WelcomePage/WelcomePage.tsx"],"sourcesContent":["import {\n Button,\n CubicsUILogo,\n PoweredByBanner,\n} from \"@studiocubics/components\";\nimport styles from \"./WelcomePage.module.css\";\nimport Link from \"next/link\";\nimport { LayoutDashboardIcon, LogIn } from \"lucide-react\";\nimport { auth } from \"../../../../server/clerk/auth\";\nexport async function WelcomePage() {\n const { userId } = await auth();\n const loggedOutUser = (\n <Link href={\"/auth/signIn/\"}>\n <Button variant=\"contained\" endIcon={<LogIn />}>\n Get Started\n </Button>\n </Link>\n );\n const loggedInUser = (\n <Link href={\"/dashboard\"}>\n <Button variant=\"contained\" endIcon={<LayoutDashboardIcon />}>\n Go to dashboard\n </Button>\n </Link>\n );\n return (\n <div className={styles.root}>\n <CubicsUILogo width={\"10rem\"} onlyFavicon />\n <PoweredByBanner size={\"md\"} />\n <h2>Welcome to Cubics CMS!</h2>\n <p className={styles.desc}>\n A powerful and intuitive platform to manage your content effortlessly.\n Streamline updates, enhance collaboration, and take full control of your\n digital presence.\n </p>\n {userId ? loggedInUser : loggedOutUser}\n {!userId && (\n <p className={styles.footer}>\n Dont have an account? \n {/* TODO add request account from admin flow.\n //@ts-ignore */}\n <Link href=\"/auth/requestAccount\">Request from an admin</Link>\n </p>\n )}\n </div>\n );\n}\n"],"names":["async","WelcomePage","userId","auth","loggedOutUser","_jsx","Link","href","children","Button","variant","endIcon","LogIn","loggedInUser","LayoutDashboardIcon","_jsxs","className","styles","root","CubicsUILogo","width","onlyFavicon","PoweredByBanner","size","desc","footer"],"mappings":"qUASOA,eAAeC,IACpB,MAAMC,OAAEA,SAAiBC,IACnBC,EACJC,EAACC,GAAKC,KAAM,gBAAeC,SACzBH,EAACI,GAAOC,QAAQ,YAAYC,QAASN,EAACO,EAAK,CAAA,GAAGJ,SAAA,kBAK5CK,EACJR,EAACC,GAAKC,KAAM,aAAYC,SACtBH,EAACI,GAAOC,QAAQ,YAAYC,QAASN,EAACS,EAAmB,CAAA,GAAGN,SAAA,sBAKhE,OACEO,EAAA,MAAA,CAAKC,UAAWC,EAAOC,KAAIV,SAAA,CACzBH,EAACc,EAAY,CAACC,MAAO,QAASC,aAAW,IACzChB,EAACiB,EAAe,CAACC,KAAM,OACvBlB,EAAA,KAAA,CAAAG,SAAA,2BACAH,EAAA,IAAA,CAAGW,UAAWC,EAAOO,KAAIhB,SAAA,sKAKxBN,EAASW,EAAeT,GACvBF,GACAa,EAAA,IAAA,CAAGC,UAAWC,EAAOQ,OAAMjB,SAAA,CAAA,yBAIzBH,EAACC,EAAI,CAACC,KAAK,uBAAsBC,SAAA,+BAK3C"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var e={root:"WelcomePage-module_root__hO-sl",desc:"WelcomePage-module_desc__czLaI",
|
|
1
|
+
var e={root:"WelcomePage-module_root__hO-sl",desc:"WelcomePage-module_desc__czLaI",footer:"WelcomePage-module_footer__Nz2jC"};export{e as default};
|
|
2
2
|
//# sourceMappingURL=WelcomePage.module.css.js.map
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ThemedMonacoEditor-module_root__9pWgK{border-radius:var(--shape-br-sm);overflow:hidden}.CMSSidebarHeader-module_root__QUbml{align-items:center;display:flex;flex:1;flex-direction:row;gap:var(--spacing-gap);padding-inline:8.33%;padding-bottom:var(--spacing-gap-2);padding-top:var(--spacing-gap-3);transition:padding var(--transition-time) var(--transition-tf)}.CMSSidebarHeader-module_logoContainer__1tdc3{align-items:center;display:flex;flex:1;justify-content:flex-start}.CMSSidebarHeader-module_logo__qCMLH{height:auto;max-width:6rem;width:40%}@media (min-width:600px){.CMSSidebarHeader-module_root__QUbml{align-items:center;flex:0 1 0%;flex-direction:column;padding-inline:0}.CMSSidebarHeader-module_root__QUbml[data-open=true]{flex-direction:row;justify-content:space-between;padding-top:var(--spacing-gap-2);& .CMSSidebarHeader-module_logo__qCMLH{width:100%}}.CMSSidebarHeader-module_logoContainer__1tdc3{justify-content:center}}.CMSSidebarFooter-module_root__ZMRx2{display:flex;flex-direction:column;gap:var(--spacing-gap-2);height:100%;justify-content:flex-end}.CurrentSystemUserButton-module_title__RFrLD{align-items:center;display:flex;gap:var(--spacing-gap)}.SignIn-module_body__2yvpI,.SignIn-module_footer__KKVs7,.SignIn-module_form__IjD6r,.SignIn-module_header__XEjx6,.SignIn-module_root__QZuyy{display:flex;flex-direction:column}.SignIn-module_root__QZuyy{align-items:center;gap:var(--spacing-gap-7);width:clamp(350px,50vw,550px);& p{font-size:var(--fs-body2);text-align:center}}.SignIn-module_body__2yvpI{align-items:center;gap:var(--spacing-gap-3);width:100%}.SignIn-module_header__XEjx6{align-items:center;gap:var(--spacing-gap);text-align:center;&>h1{font-size:var(--fs-h3)}&>p{color:var(--color-on-background-faint);font-size:var(--fs-body2)}}.SignIn-module_form__IjD6r{gap:var(--spacing-gap-2);width:100%}.SignIn-module_footer__KKVs7{align-items:center;border-top:1px solid var(--color-outline);padding:var(--spacing-gap-3);width:100%}.SignIn-module_error__q4xLf{color:var(--color-error);font-size:2rem}.SignUp-module_body__TciO0,.SignUp-module_footer__NhgL2,.SignUp-module_form__8wMar,.SignUp-module_header__ol6o4,.SignUp-module_root__gyyhf{display:flex;flex-direction:column}.SignUp-module_root__gyyhf{align-items:center;gap:var(--spacing-gap-7);width:clamp(350px,50vw,550px);& p{font-size:var(--fs-body2);text-align:center}}.SignUp-module_body__TciO0{align-items:center;gap:var(--spacing-gap-3);width:100%}.SignUp-module_header__ol6o4{align-items:center;gap:var(--spacing-gap);text-align:center;&>h1{font-size:var(--fs-h3)}&>p{color:var(--color-on-background-faint);font-size:var(--fs-body2)}}.SignUp-module_form__8wMar{gap:var(--spacing-gap-2);width:100%}.SignUp-module_footer__NhgL2{align-items:center;border-top:1px solid var(--color-outline);padding:var(--spacing-gap-3);width:100%}.SignUp-module_error__VRpFj{color:var(--color-error);font-size:2rem}.SessionListCard-module_title__rvGVQ{align-items:baseline;display:flex;font-size:var(--fs-body2);gap:var(--spacing-gap);&>p{color:var(--color-on-background-faint);font-weight:400}}.SessionListCard-module_desc__26-hF{color:var(--color-on-surface);display:flex;flex-wrap:wrap;gap:var(--spacing-gap-5)}.SessionListCard-module_thumb__mfBlO{--bgcolor:var(--color-surface);--color:var(--color-on-surface);background-color:var(--bgcolor);color:var(--color);&.SessionListCard-module_error__rdAIR{--bgcolor:var(--color-error-alpha);--color:var(--color-on-error-container)}&.SessionListCard-module_primary__JUrYc{--bgcolor:var(--color-primary-alpha);--color:var(--color-on-primary-container)}}.SessionsActive-module_root__oCUdG{background-color:var(--color-background-alpha);border-radius:var(--shape-br-lg);container-type:inline-size;height:50dvh;overflow-y:auto;padding:var(--spacing-gap-2);width:100%;&>div{margin-bottom:var(--spacing-gap-2)}}.SystemUserDetails-module_root__KsYgB{align-items:flex-start;display:flex;justify-content:space-between;width:100%}.SystemUserDetailsForm-module_form__P1Xz3{flex:1}.SystemUserDetailsForm-module_formRow__YpJTg{display:flex;gap:var(--spacing-gap)}.SystemUserRole-module_root__1wcEv{align-items:flex-start;display:flex;justify-content:space-between;width:100%}.SystemUserRole-module_main__xN-Z1{align-items:flex-start;display:flex;flex:1;flex-direction:column;gap:var(--spacing-gap-2);p{color:var(--color-on-background-faint);font-size:var(--fs-body2)}}.WelcomePage-module_root__hO-sl{align-items:center;display:flex;flex-direction:column;gap:var(--spacing-gap-4);height:100dvh;justify-content:center;width:100dvw}.WelcomePage-module_desc__czLaI{color:var(--color-on-background-faint);font-size:var(--fs-body);max-width:65ch;text-align:center}.WelcomePage-
|
|
1
|
+
.ThemedMonacoEditor-module_root__9pWgK{border-radius:var(--shape-br-sm);overflow:hidden}.CMSSidebarHeader-module_root__QUbml{align-items:center;display:flex;flex:1;flex-direction:row;gap:var(--spacing-gap);padding-inline:8.33%;padding-bottom:var(--spacing-gap-2);padding-top:var(--spacing-gap-3);transition:padding var(--transition-time) var(--transition-tf)}.CMSSidebarHeader-module_logoContainer__1tdc3{align-items:center;display:flex;flex:1;justify-content:flex-start}.CMSSidebarHeader-module_logo__qCMLH{height:auto;max-width:6rem;width:40%}@media (min-width:600px){.CMSSidebarHeader-module_root__QUbml{align-items:center;flex:0 1 0%;flex-direction:column;padding-inline:0}.CMSSidebarHeader-module_root__QUbml[data-open=true]{flex-direction:row;justify-content:space-between;padding-top:var(--spacing-gap-2);& .CMSSidebarHeader-module_logo__qCMLH{width:100%}}.CMSSidebarHeader-module_logoContainer__1tdc3{justify-content:center}}.CMSSidebarFooter-module_root__ZMRx2{display:flex;flex-direction:column;gap:var(--spacing-gap-2);height:100%;justify-content:flex-end}.CurrentSystemUserButton-module_title__RFrLD{align-items:center;display:flex;gap:var(--spacing-gap)}.SignIn-module_body__2yvpI,.SignIn-module_footer__KKVs7,.SignIn-module_form__IjD6r,.SignIn-module_header__XEjx6,.SignIn-module_root__QZuyy{display:flex;flex-direction:column}.SignIn-module_root__QZuyy{align-items:center;gap:var(--spacing-gap-7);width:clamp(350px,50vw,550px);& p{font-size:var(--fs-body2);text-align:center}}.SignIn-module_body__2yvpI{align-items:center;gap:var(--spacing-gap-3);width:100%}.SignIn-module_header__XEjx6{align-items:center;gap:var(--spacing-gap);text-align:center;&>h1{font-size:var(--fs-h3)}&>p{color:var(--color-on-background-faint);font-size:var(--fs-body2)}}.SignIn-module_form__IjD6r{gap:var(--spacing-gap-2);width:100%}.SignIn-module_footer__KKVs7{align-items:center;border-top:1px solid var(--color-outline);padding:var(--spacing-gap-3);width:100%}.SignIn-module_error__q4xLf{color:var(--color-error);font-size:2rem}.SignUp-module_body__TciO0,.SignUp-module_footer__NhgL2,.SignUp-module_form__8wMar,.SignUp-module_header__ol6o4,.SignUp-module_root__gyyhf{display:flex;flex-direction:column}.SignUp-module_root__gyyhf{align-items:center;gap:var(--spacing-gap-7);width:clamp(350px,50vw,550px);& p{font-size:var(--fs-body2);text-align:center}}.SignUp-module_body__TciO0{align-items:center;gap:var(--spacing-gap-3);width:100%}.SignUp-module_header__ol6o4{align-items:center;gap:var(--spacing-gap);text-align:center;&>h1{font-size:var(--fs-h3)}&>p{color:var(--color-on-background-faint);font-size:var(--fs-body2)}}.SignUp-module_form__8wMar{gap:var(--spacing-gap-2);width:100%}.SignUp-module_footer__NhgL2{align-items:center;border-top:1px solid var(--color-outline);padding:var(--spacing-gap-3);width:100%}.SignUp-module_error__VRpFj{color:var(--color-error);font-size:2rem}.SessionListCard-module_title__rvGVQ{align-items:baseline;display:flex;font-size:var(--fs-body2);gap:var(--spacing-gap);&>p{color:var(--color-on-background-faint);font-weight:400}}.SessionListCard-module_desc__26-hF{color:var(--color-on-surface);display:flex;flex-wrap:wrap;gap:var(--spacing-gap-5)}.SessionListCard-module_thumb__mfBlO{--bgcolor:var(--color-surface);--color:var(--color-on-surface);background-color:var(--bgcolor);color:var(--color);&.SessionListCard-module_error__rdAIR{--bgcolor:var(--color-error-alpha);--color:var(--color-on-error-container)}&.SessionListCard-module_primary__JUrYc{--bgcolor:var(--color-primary-alpha);--color:var(--color-on-primary-container)}}.SessionsActive-module_root__oCUdG{background-color:var(--color-background-alpha);border-radius:var(--shape-br-lg);container-type:inline-size;height:50dvh;overflow-y:auto;padding:var(--spacing-gap-2);width:100%;&>div{margin-bottom:var(--spacing-gap-2)}}.SystemUserDetails-module_root__KsYgB{align-items:flex-start;display:flex;justify-content:space-between;width:100%}.SystemUserDetailsForm-module_form__P1Xz3{flex:1}.SystemUserDetailsForm-module_formRow__YpJTg{display:flex;gap:var(--spacing-gap)}.SystemUserRole-module_root__1wcEv{align-items:flex-start;display:flex;justify-content:space-between;width:100%}.SystemUserRole-module_main__xN-Z1{align-items:flex-start;display:flex;flex:1;flex-direction:column;gap:var(--spacing-gap-2);p{color:var(--color-on-background-faint);font-size:var(--fs-body2)}}.WelcomePage-module_root__hO-sl{align-items:center;display:flex;flex-direction:column;gap:var(--spacing-gap-4);height:100dvh;justify-content:center;width:100dvw}.WelcomePage-module_desc__czLaI{color:var(--color-on-background-faint);font-size:var(--fs-body);max-width:65ch;text-align:center}.WelcomePage-module_footer__Nz2jC{font-size:var(--fs-body2)}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Invitation } from "@clerk/nextjs/server";
|
|
2
2
|
import type { InvitationCreateState } from "../../../client/ui/System/Invitations/InvitationListActions";
|
|
3
3
|
export declare const invitationListReadAction: (params: ClerkInvitationListParams) => Promise<PaginatedResponse<Invitation[]>>;
|
|
4
|
-
export declare const invitationDeleteAction: (id: string) => Promise<import("@studiocubics/utils").ActionResponse<string, string[]>>;
|
|
4
|
+
export declare const invitationDeleteAction: (id: string) => Promise<import("@studiocubics/utils").ActionResponse<string, string[], unknown>>;
|
|
5
5
|
export declare function invitationCreateAction(_: InvitationCreateState, formData: FormData): Promise<InvitationCreateState>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { type Session } from "@clerk/nextjs/server";
|
|
2
2
|
export declare const sessionListReadAction: (params: ClerkUserSessionListParams) => Promise<PaginatedResponse<Session[]>>;
|
|
3
3
|
export declare const sessionReadAction: (id: Session["id"]) => Promise<Session>;
|
|
4
|
-
export declare const sessionDeleteAction: (id: Session["id"]) => Promise<import("@studiocubics/utils").ActionResponse<string, string[]>>;
|
|
4
|
+
export declare const sessionDeleteAction: (id: Session["id"]) => Promise<import("@studiocubics/utils").ActionResponse<string, string[], unknown>>;
|
|
@@ -5,7 +5,7 @@ export declare const systemUserListReadAction: (params: ClerkUserListParams, rem
|
|
|
5
5
|
export declare const systemUserReadAction: (id: string) => Promise<User>;
|
|
6
6
|
export declare function systemUserRoleUpdateAction(userId: string, _: SystemUserRoleUpdateState, formData: FormData): Promise<SystemUserRoleUpdateState>;
|
|
7
7
|
export declare function systemUserDetailsUpdateAction(userId: string, _: SystemUserDetailsUpdateState, formData: FormData): Promise<SystemUserDetailsUpdateState>;
|
|
8
|
-
export declare function systemUserProfileImageDeleteAction(userId: User["id"]): Promise<import("@studiocubics/utils").ActionResponse<string, string[]>>;
|
|
8
|
+
export declare function systemUserProfileImageDeleteAction(userId: User["id"]): Promise<import("@studiocubics/utils").ActionResponse<string, string[], unknown>>;
|
|
9
9
|
export declare function systemUserDeleteAction(userId: User["id"]): Promise<void>;
|
|
10
10
|
export declare function systemUserBanAction(userId: User["id"]): Promise<void>;
|
|
11
11
|
export declare function systemUserUnbanAction(userId: User["id"]): Promise<void>;
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"private": false,
|
|
8
|
-
"version": "0.0.
|
|
8
|
+
"version": "0.0.12",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"@studiocubics",
|
|
11
11
|
"cubics",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"lucide-react": "^0.554.0",
|
|
38
38
|
"next-themes": "^0.4.6",
|
|
39
39
|
"zod": "^4.3.6",
|
|
40
|
-
"@studiocubics/components": "^0.0.
|
|
41
|
-
"@studiocubics/hooks": "^0.0.
|
|
42
|
-
"@studiocubics/next": "^0.0.
|
|
43
|
-
"@studiocubics/utils": "^0.0.
|
|
40
|
+
"@studiocubics/components": "^0.0.12",
|
|
41
|
+
"@studiocubics/hooks": "^0.0.12",
|
|
42
|
+
"@studiocubics/next": "^0.0.12",
|
|
43
|
+
"@studiocubics/utils": "^0.0.12"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@eslint/js": "^9.39.1",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"rollup-plugin-bundle-stats": "^4.21.9",
|
|
62
62
|
"typescript": "^5.9.3",
|
|
63
63
|
"typescript-eslint": "^8.46.4",
|
|
64
|
-
"@studiocubics/types": "^0.0.
|
|
64
|
+
"@studiocubics/types": "^0.0.12"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"@clerk/nextjs": ">= 6",
|