/** * Describes the type of action that the password action template will be used for. * Here are the actions that each enumerated string refers to: * - `PWDLESS_LOGIN`: Passwordless login * - `PWD_RESET_ACTION`: Password reset * - `PWD_RESET_CROSS_DEVICE_ACTION`: Password reset for cross-device flow * - `WEBAUTHN_AUTHORIZE_USER`: WebAuthn authorize user */ export type PasswordTemplateActionType = 'PWDLESS_LOGIN' | 'PWD_RESET_ACTION' | 'PWD_RESET_CROSS_DEVICE_ACTION' | 'WEBAUTHN_AUTHORIZE_USER';