@stytch/vanilla-js 5.22.7 → 5.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/adminPortal/index.d.ts +6 -1
- package/dist/adminPortal/index.esm.js +1 -1
- package/dist/adminPortal/index.js +1 -1
- package/dist/b2b/index.headless.esm.js +1 -1
- package/dist/b2b/index.headless.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.headless.esm.js +1 -1
- package/dist/index.headless.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
+
## 5.23.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 110ecdb: Add `inviteTemplateId` to Admin Portal Member Management configuration to specify the template used for email invitations
|
|
8
|
+
|
|
9
|
+
## 5.22.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ea85029: When assigning roles to SSO connections in Admin Portal, allow SSO group names to contain spaces rather than treat them as a space-delimited list of groups
|
|
14
|
+
|
|
3
15
|
## 5.22.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -305,7 +305,12 @@ declare const mountAdminPortalOrgSettings: (options: AdminPortalOrgSettingsMount
|
|
|
305
305
|
/**
|
|
306
306
|
* The UI configuration object for member management used in the Admin Portal.
|
|
307
307
|
*/
|
|
308
|
-
|
|
308
|
+
interface AdminPortalMemberManagementUIConfig extends AdminPortalUIConfigRoleDisplayProvider {
|
|
309
|
+
/**
|
|
310
|
+
* The ID of the template to use when sending an invitation to join.
|
|
311
|
+
*/
|
|
312
|
+
inviteTemplateId?: string;
|
|
313
|
+
}
|
|
309
314
|
interface AdminPortalMemberManagementMountOptions<TProjectConfiguration extends StytchProjectConfigurationInput = Stytch.DefaultProjectConfiguration> extends AdminPortalComponentMountOptions<TProjectConfiguration> {
|
|
310
315
|
/**
|
|
311
316
|
* An {@link AdminPortalMemberManagementUIConfig} object containing custom configuration.
|