From 8eb5c9e24dba5d4c06b49550ce56add5e7c52038 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Tue, 14 Oct 2025 12:05:37 -0400 Subject: [PATCH 1/2] chore: (types): Add examples for types --- packages/types/src/clerk.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/types/src/clerk.ts b/packages/types/src/clerk.ts index e432fb76357..a8fc6103bc9 100644 --- a/packages/types/src/clerk.ts +++ b/packages/types/src/clerk.ts @@ -1496,6 +1496,7 @@ export type UserProfileProps = RoutingOptions & { customPages?: CustomPage[]; /** * Specify on which page the user profile modal will open. + * @example __experimental_startPath: '/members' * @experimental **/ __experimental_startPath?: string; @@ -1527,6 +1528,7 @@ export type OrganizationProfileProps = RoutingOptions & { customPages?: CustomPage[]; /** * Specify on which page the organization profile modal will open. + * @example __experimental_startPath: '/organization-members' * @experimental **/ __experimental_startPath?: string; From eeb2d008e709ceb907d9c7bd7f872b65f4d43876 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Tue, 14 Oct 2025 12:06:42 -0400 Subject: [PATCH 2/2] add changeset --- .changeset/fresh-pandas-dress.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fresh-pandas-dress.md diff --git a/.changeset/fresh-pandas-dress.md b/.changeset/fresh-pandas-dress.md new file mode 100644 index 00000000000..aec9c6dd986 --- /dev/null +++ b/.changeset/fresh-pandas-dress.md @@ -0,0 +1,5 @@ +--- +'@clerk/types': patch +--- + +Add example usage for `__experimental_startPath`.