diff --git a/docs/fern/docs.yml b/docs/fern/docs.yml index 8788f5bc8..2d74a1cd9 100644 --- a/docs/fern/docs.yml +++ b/docs/fern/docs.yml @@ -162,33 +162,78 @@ navigation: path: ./docs/pages/sdk/overview.mdx - section: Objects contents: - - page: StackApp + - section: StackApp icon: fa-duotone fa-square-t path: ./docs/pages/sdk/objects/stack-app.mdx + contents: + - link: StackClientApp + icon: fa-duotone fa-square-t + href: /sdk/objects/stack-app#stackclientapp + - link: StackServerApp + icon: fa-duotone fa-square-t + href: /sdk/objects/stack-app#stackserverapp - section: Types contents: - - page: ContactChannel + - section: ContactChannel icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/contact-channel.mdx + contents: + - link: ContactChannel + icon: fa-duotone fa-square-t + href: /sdk/types/contact-channel#contactchannel + - link: ServerContactChannel + icon: fa-duotone fa-square-t + href: /sdk/types/contact-channel#servercontactchannel - page: Project icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/project.mdx - - page: Team + - section: Team icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/team.mdx + contents: + - link: Team + icon: fa-duotone fa-square-t + href: /sdk/types/team#team + - link: ServerTeam + icon: fa-duotone fa-square-t + href: /sdk/types/team#serverteam - page: TeamPermission icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/team-permission.mdx - - page: TeamProfile + - section: TeamProfile icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/team-profile.mdx - - page: TeamUser + contents: + - link: TeamProfile + icon: fa-duotone fa-square-t + href: /sdk/types/team-profile#teamprofile + - link: ServerTeamProfile + icon: fa-duotone fa-square-t + href: /sdk/types/team-profile#serverteamprofile + - section: TeamUser icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/team-user.mdx - - page: User + contents: + - link: TeamUser + icon: fa-duotone fa-square-t + href: /sdk/types/team-user#teamuser + - link: ServerTeamUser + icon: fa-duotone fa-square-t + href: /sdk/types/team-user#serverteamuser + - section: User icon: fa-duotone fa-square-t path: ./docs/pages/sdk/types/user.mdx - # - page: ConnectedAccount + contents: + - link: CurrentUser + icon: fa-duotone fa-square-t + href: /sdk/types/user#currentuser + - link: ServerUser + icon: fa-duotone fa-square-t + href: /sdk/types/user#serveruser + - link: CurrentServerUser + icon: fa-duotone fa-square-t + href: /sdk/types/user#currentserveruser + # - section: ConnectedAccount # path: ./docs/pages/sdk/types/connected-account.mdx - section: Hooks contents: diff --git a/docs/fern/docs/pages/faq.mdx b/docs/fern/docs/pages/faq.mdx index 53e5f6b9b..a7b81fc57 100644 --- a/docs/fern/docs/pages/faq.mdx +++ b/docs/fern/docs/pages/faq.mdx @@ -27,11 +27,8 @@ subtitle: Frequently asked questions about Stack If you answered "no" to any of these questions, then that's how Stack Auth is different from ``. - - While you can use any backend framework with Stack, the frontend is tightly integrated with Next.js. If you want to use a different frontend framework, you will have to build the integration ourselves with the client endpoints of our [REST API](/rest-api). Some members of our community have started projects to do this, so you may want to join [our Discord](https://discord.stack-auth.com) to coordinate with them. - - - Only the Next.js app router is currently supported. However, just like any other unsupported framework, you can use the client endpoints of our [REST API](/rest-api) to build your own integration. + + Yes! You can [create users programmatically](/rest-api/server/users/create-user) using our [REST API](/rest-api). diff --git a/docs/fern/style.css b/docs/fern/style.css index c6a954e5c..47fb2c152 100644 --- a/docs/fern/style.css +++ b/docs/fern/style.css @@ -137,3 +137,7 @@ tr.stack-clickable-row-missing { .stack-dim-text { opacity: 0.5; } + +.fern-sidebar-link-content > svg:last-child { + display: none; +}