github clerk/javascript @clerk/backend@1.32.3

latest releases: @clerk/types@4.92.0, @clerk/clerk-js@5.99.0, @clerk/fastify@2.4.37...
5 months ago

Patch Changes

  • Introduces createOrganizationInvitationBulk - it creates new organization invitations in bulk and sends out emails to the provided email addresses with a link to accept the invitation and join the organization. (#5962) by @LauraBeatris

    const organizationId = 'org_123';
    const params = [
      {
        inviterUserId: 'user_1',
        emailAddress: 'testclerk1@clerk.dev',
        role: 'org:admin',
      },
      {
        inviterUserId: 'user_2',
        emailAddress: 'testclerk2@clerk.dev',
        role: 'org:member',
      },
    ];
    
    const response = await clerkClient.organizations.createOrganizationInvitationBulk(organizationId, params);
  • Use domain in AuthenticateRequest only for satellite domains (#5919) by @jacekradko

  • Updated dependencies [c305b31, 6bb480e]:

    • @clerk/types@4.59.1
    • @clerk/shared@3.9.2

Don't miss a new javascript release

NewReleases is sending notifications on new releases.