0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

feat(schemas,console): add mfa interaction log key (#4560)

This commit is contained in:
wangsijie 2023-09-25 11:37:43 +08:00 committed by GitHub
parent 9644308176
commit 7b43dd5de6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 2 deletions

View file

@ -22,6 +22,12 @@ export const auditLogEventTitle: Record<string, Optional<string>> &
'Interaction.ForgotPassword.Profile.Update': 'Patch update forgot-password interaction profile',
'Interaction.ForgotPassword.Submit': 'Submit forgot-password interaction',
'Interaction.ForgotPassword.Update': 'Update forgot-password interaction',
'Interaction.ForgotPassword.BindMfa.Totp.Create': undefined,
'Interaction.ForgotPassword.BindMfa.Totp.Submit': undefined,
'Interaction.ForgotPassword.BindMfa.BackupCode.Create': undefined,
'Interaction.ForgotPassword.BindMfa.BackupCode.Submit': undefined,
'Interaction.ForgotPassword.BindMfa.WebAuthn.Create': undefined,
'Interaction.ForgotPassword.BindMfa.WebAuthn.Submit': undefined,
'Interaction.Register.Identifier.Password.Submit': undefined,
'Interaction.Register.Identifier.Social.Create': undefined,
'Interaction.Register.Identifier.Social.Submit': undefined,
@ -34,6 +40,12 @@ export const auditLogEventTitle: Record<string, Optional<string>> &
'Interaction.Register.Profile.Update': 'Patch update register interaction profile',
'Interaction.Register.Submit': 'Submit register interaction',
'Interaction.Register.Update': 'Update register interaction',
'Interaction.Register.BindMfa.Totp.Create': undefined,
'Interaction.Register.BindMfa.Totp.Submit': undefined,
'Interaction.Register.BindMfa.BackupCode.Create': undefined,
'Interaction.Register.BindMfa.BackupCode.Submit': undefined,
'Interaction.Register.BindMfa.WebAuthn.Create': undefined,
'Interaction.Register.BindMfa.WebAuthn.Submit': undefined,
'Interaction.SignIn.Identifier.Password.Submit': 'Submit sign-in identifier with password',
'Interaction.SignIn.Identifier.Social.Create': 'Create social sign-in authorization-url',
'Interaction.SignIn.Identifier.Social.Submit': 'Authenticate and submit social identifier',
@ -46,6 +58,12 @@ export const auditLogEventTitle: Record<string, Optional<string>> &
'Interaction.SignIn.Profile.Update': 'Patch Update sign-in interaction profile',
'Interaction.SignIn.Submit': 'Submit sign-in interaction',
'Interaction.SignIn.Update': 'Update sign-in interaction',
'Interaction.SignIn.BindMfa.Totp.Create': undefined,
'Interaction.SignIn.BindMfa.Totp.Submit': undefined,
'Interaction.SignIn.BindMfa.BackupCode.Create': undefined,
'Interaction.SignIn.BindMfa.BackupCode.Submit': undefined,
'Interaction.SignIn.BindMfa.WebAuthn.Create': undefined,
'Interaction.SignIn.BindMfa.WebAuthn.Submit': undefined,
RevokeToken: undefined,
Unknown: undefined,
});

View file

@ -153,7 +153,7 @@ export const customContentGuard = z.record(z.string());
export type CustomContent = z.infer<typeof customContentGuard>;
export enum MfaFactor {
TOTP = 'TOTP',
TOTP = 'Totp',
WebAuthn = 'WebAuthn',
BackupCode = 'BackupCode',
}

View file

@ -1,3 +1,4 @@
import { type MfaFactor } from '../../foundations/jsonb-types.js';
import type { InteractionEvent } from '../interactions.js';
export type Prefix = 'Interaction';
@ -9,6 +10,7 @@ export enum Field {
Event = 'Event',
Identifier = 'Identifier',
Profile = 'Profile',
BindMfa = 'BindMfa',
}
/** Method to verify the identifier */
@ -81,4 +83,5 @@ export type LogKey =
| `${Prefix}.${InteractionEvent}.${Field.Identifier}.${Exclude<
Method,
Method.VerificationCode | Method.Social
>}.${Action.Submit}`;
>}.${Action.Submit}`
| `${Prefix}.${InteractionEvent}.${Field.BindMfa}.${MfaFactor}.${Action.Submit | Action.Create}`;