javascript

Official Javascript repository for Clerk authentication

MIT License

Downloads
6.1M
Stars
1.1K
Committers
167
javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

  • Add option to hide the slug field in the <CreateOrganization />, <OrganizationSwitcher />, and <OrganizationList /> components (#3882) by @wobsoriano
javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected]

Published by clerk-cookie 3 months ago

Patch Changes

javascript - @clerk/[email protected] Latest Release

Published by clerk-cookie 3 months ago

Minor Changes

  • Add createOrganizationsLimit param in @clerk/backend method User.updateUser() (#3823) by @NicolasLopes7

    Example:

        import { createClerkClient }  from '@clerk/backend';
    
        const clerkClient = createClerkClient({...});
        // Update user with createOrganizationsLimit equals 10
        await clerkClient.users.updateUser('user_...', { createOrganizationsLimit: 10 })
    
        // Remove createOrganizationsLimit
        await clerkClient.users.updateUser('user_...', { createOrganizationsLimit: 0 })