@stytch/vanilla-js 5.14.1 → 5.15.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/sso/IdpInfo.d.ts +0 -3
- package/dist/assets/okta.d.ts +3 -0
- package/dist/assets/sso.d.ts +3 -0
- package/dist/b2b/index.esm.js +912 -434
- package/dist/b2b/index.headless.esm.js +1 -1
- package/dist/b2b/index.headless.js +1 -1
- package/dist/b2b/index.js +916 -438
- package/dist/b2b/ssoDiscovery.d.ts +6 -0
- 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/dist/ui/b2b/GlobalContextProvider.d.ts +9 -2
- package/dist/ui/b2b/hooks/useSsoDiscoveryConnection.d.ts +3 -0
- package/dist/ui/b2b/reducer.d.ts +4 -1
- package/dist/ui/b2b/screens/SSOButtons.d.ts +2 -4
- package/dist/ui/b2b/screens/SSODiscoveryEmail.d.ts +2 -0
- package/dist/ui/b2b/screens/SSODiscoveryFallback.d.ts +2 -0
- package/dist/ui/b2b/screens/SSODiscoveryMenu.d.ts +2 -0
- package/dist/utils/KnownIdp.d.ts +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
+
## 5.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 63d41b2: Support SSO as a valid auth product in B2B Discovery UI
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [63d41b2]
|
|
12
|
+
- Updated dependencies [63d41b2]
|
|
13
|
+
- @stytch/core@2.40.0
|
|
14
|
+
|
|
3
15
|
## 5.14.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { RequireAllOrNone } from 'type-fest';
|
|
2
2
|
import { ConnectionType } from '../utils/ConnectionType';
|
|
3
3
|
import { ExternalTaggedConnection, OIDCTaggedConnection, SAMLTaggedConnection, TaggedConnection } from './TaggedConnection';
|
|
4
|
-
export type SamlKnownIdp = 'generic' | 'okta' | 'microsoft-entra' | 'google-workspace';
|
|
5
|
-
export type OidcKnownIdp = 'generic' | 'okta' | 'microsoft-entra';
|
|
6
|
-
export type KnownIdp = SamlKnownIdp | OidcKnownIdp;
|
|
7
4
|
export type SamlSetupStep = 'createApplication' | 'copyToIdp' | 'copyFromIdp' | 'attributeMapping';
|
|
8
5
|
export type SamlIdpValue = 'ssoUrl' | 'entityId' | 'certificate';
|
|
9
6
|
export type OidcSetupStep = 'createApplication' | 'copyToIdp' | 'copyFromIdp';
|