@connectedxm/admin 1.0.21 → 1.0.23
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/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2330,6 +2330,10 @@ interface BaseCognitoUser {
|
|
|
2330
2330
|
interface CognitoUser extends BaseCognitoUser {
|
|
2331
2331
|
sub: string;
|
|
2332
2332
|
userPoolId: string;
|
|
2333
|
+
enabled: boolean;
|
|
2334
|
+
status: string;
|
|
2335
|
+
email: string;
|
|
2336
|
+
verified: boolean;
|
|
2333
2337
|
}
|
|
2334
2338
|
|
|
2335
2339
|
interface ConnectedXMClientContextState {
|
package/dist/index.d.ts
CHANGED
|
@@ -2330,6 +2330,10 @@ interface BaseCognitoUser {
|
|
|
2330
2330
|
interface CognitoUser extends BaseCognitoUser {
|
|
2331
2331
|
sub: string;
|
|
2332
2332
|
userPoolId: string;
|
|
2333
|
+
enabled: boolean;
|
|
2334
|
+
status: string;
|
|
2335
|
+
email: string;
|
|
2336
|
+
verified: boolean;
|
|
2333
2337
|
}
|
|
2334
2338
|
|
|
2335
2339
|
interface ConnectedXMClientContextState {
|