@mcurros2/microm 1.1.287-0 → 1.1.289-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/dist/index.d.ts +6 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +128 -55
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ export interface LoginOptions {
|
|
|
97
97
|
verifyCodeButtonLabel?: string;
|
|
98
98
|
twoFactorTitle?: string;
|
|
99
99
|
twoFactorDescription?: string;
|
|
100
|
-
|
|
100
|
+
registerAuthenticatorLabel?: string;
|
|
101
101
|
cancelTwoFactorButtonLabel?: string;
|
|
102
102
|
}
|
|
103
103
|
export const LoginDefaultProps: Partial<LoginOptions>;
|
|
@@ -1172,7 +1172,6 @@ export class MicromUsersDef extends EntityDefinition {
|
|
|
1172
1172
|
dt_last_refresh: EntityColumn<Date>;
|
|
1173
1173
|
vc_totp_secret: EntityColumn<string>;
|
|
1174
1174
|
bt_totp_enabled: EntityColumn<boolean>;
|
|
1175
|
-
dt_totp_confirmed: EntityColumn<Date>;
|
|
1176
1175
|
vc_recovery_code: EntityColumn<string>;
|
|
1177
1176
|
dt_last_recovery: EntityColumn<Date>;
|
|
1178
1177
|
c_usertype_id: EntityColumn<string>;
|
|
@@ -1228,10 +1227,10 @@ export interface MicromUsersFormProps extends FormOptions<MicromUsers> {
|
|
|
1228
1227
|
authenticatorEnabledLabel?: string;
|
|
1229
1228
|
authenticatorDisabledLabel?: string;
|
|
1230
1229
|
authenticatorStatusTitle?: string;
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1230
|
+
resetAuthenticatorButtonLabel?: string;
|
|
1231
|
+
resetAuthenticatorTitle?: string;
|
|
1232
|
+
resetAuthenticatorConfirmation?: string;
|
|
1233
|
+
resetAuthenticatorOKLabel?: string;
|
|
1235
1234
|
}
|
|
1236
1235
|
export const MicromUsersFormDefaultProps: Partial<MicromUsersFormProps>;
|
|
1237
1236
|
export function MicromUsersForm(props: MicromUsersFormProps): JSX.Element;
|
|
@@ -3823,6 +3822,7 @@ export class MicroMClient {
|
|
|
3823
3822
|
isLoggedInLocal(): Promise<boolean>;
|
|
3824
3823
|
login(username: string, password: string, rememberme?: boolean): Promise<MicroMToken | TwoFactorLoginResult>;
|
|
3825
3824
|
login2fa(challengeId: string, code: string, rememberme?: boolean, username?: string): Promise<MicroMToken>;
|
|
3825
|
+
registerLoginTotp(challengeId: string): Promise<TotpSetupStartResponse>;
|
|
3826
3826
|
localLogoff(): Promise<void>;
|
|
3827
3827
|
logoff(): Promise<void>;
|
|
3828
3828
|
updateClientClaims(claims: Partial<MicroMClientClaimTypes>): Promise<void>;
|