@stytch/vanilla-js 0.13.4 → 0.14.1
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 +19 -0
- package/dist/b2b/index.d.ts +12 -0
- package/dist/b2b/index.esm.d.ts +12 -0
- package/dist/b2b/index.esm.js +1 -1
- package/dist/b2b/index.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.headless.esm.js +3 -3
- package/dist/index.headless.js +3 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
+
## 0.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1f54b59]
|
|
8
|
+
- Updated dependencies [459b8e5]
|
|
9
|
+
- @stytch/core@0.12.1
|
|
10
|
+
|
|
11
|
+
## 0.14.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- c8e2d0b: B2B Passwords UI components
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [c8e2d0b]
|
|
20
|
+
- @stytch/core@0.12.0
|
|
21
|
+
|
|
3
22
|
## 0.13.4
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/b2b/index.d.ts
CHANGED
|
@@ -98,6 +98,12 @@ interface MemberSession {
|
|
|
98
98
|
*/
|
|
99
99
|
custom_claims?: Record<string, unknown>;
|
|
100
100
|
}
|
|
101
|
+
interface SSORegistration {
|
|
102
|
+
connection_id: string;
|
|
103
|
+
external_id: string;
|
|
104
|
+
registration_id: string;
|
|
105
|
+
sso_attributes: Record<string, unknown>;
|
|
106
|
+
}
|
|
101
107
|
interface Member {
|
|
102
108
|
/**
|
|
103
109
|
* Globally unique UUID that identifies an organization in the Stytch API.
|
|
@@ -134,6 +140,12 @@ interface Member {
|
|
|
134
140
|
* See our {@link https://stytch.com/docs/api/metadata metadata reference} for complete details.
|
|
135
141
|
*/
|
|
136
142
|
untrusted_metadata: Record<string, unknown>;
|
|
143
|
+
sso_registrations: Array<SSORegistration>;
|
|
144
|
+
is_breakglass: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* Returned if the member has a registered password
|
|
147
|
+
*/
|
|
148
|
+
member_password_id: string;
|
|
137
149
|
}
|
|
138
150
|
type B2BAuthenticateResponse = ResponseCommon & {
|
|
139
151
|
/**
|
package/dist/b2b/index.esm.d.ts
CHANGED
|
@@ -98,6 +98,12 @@ interface MemberSession {
|
|
|
98
98
|
*/
|
|
99
99
|
custom_claims?: Record<string, unknown>;
|
|
100
100
|
}
|
|
101
|
+
interface SSORegistration {
|
|
102
|
+
connection_id: string;
|
|
103
|
+
external_id: string;
|
|
104
|
+
registration_id: string;
|
|
105
|
+
sso_attributes: Record<string, unknown>;
|
|
106
|
+
}
|
|
101
107
|
interface Member {
|
|
102
108
|
/**
|
|
103
109
|
* Globally unique UUID that identifies an organization in the Stytch API.
|
|
@@ -134,6 +140,12 @@ interface Member {
|
|
|
134
140
|
* See our {@link https://stytch.com/docs/api/metadata metadata reference} for complete details.
|
|
135
141
|
*/
|
|
136
142
|
untrusted_metadata: Record<string, unknown>;
|
|
143
|
+
sso_registrations: Array<SSORegistration>;
|
|
144
|
+
is_breakglass: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* Returned if the member has a registered password
|
|
147
|
+
*/
|
|
148
|
+
member_password_id: string;
|
|
137
149
|
}
|
|
138
150
|
type B2BAuthenticateResponse = ResponseCommon & {
|
|
139
151
|
/**
|