From bb2e8720e8f6bb955d4f100d4f998065fec52727 Mon Sep 17 00:00:00 2001 From: Emmanouela Pothitou <68468183+EmmanouelaPothitou@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:37:25 +0300 Subject: [PATCH] chore(types): Add experimental tag on startPath type (#3819) --- .changeset/young-otters-kneel.md | 2 ++ packages/types/src/clerk.ts | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 .changeset/young-otters-kneel.md diff --git a/.changeset/young-otters-kneel.md b/.changeset/young-otters-kneel.md new file mode 100644 index 0000000000..a845151cc8 --- /dev/null +++ b/.changeset/young-otters-kneel.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/packages/types/src/clerk.ts b/packages/types/src/clerk.ts index 93c429e29f..62ce64ccb4 100644 --- a/packages/types/src/clerk.ts +++ b/packages/types/src/clerk.ts @@ -816,6 +816,10 @@ export type UserProfileProps = RoutingOptions & { * Provide custom pages and links to be rendered inside the UserProfile. */ customPages?: CustomPage[]; + /** + * @experimental + * Specify on which page the user profile modal will open. + **/ __experimental_startPath?: string; }; @@ -837,6 +841,10 @@ export type OrganizationProfileProps = RoutingOptions & { * Provide custom pages and links to be rendered inside the OrganizationProfile. */ customPages?: CustomPage[]; + /** + * @experimental + * Specify on which page the organization profile modal will open. + **/ __experimental_startPath?: string; };