ping-identity
    Preparing search index...

    Type Alias JourneyFidoRegistrationField

    JourneyFidoRegistrationField: JourneyBaseField & {
        type: "FidoRegistrationCallback";
        value?: Record<string, unknown>;
    }

    Normalized field for a FidoRegistrationCallback with typed named fields.

    Type Declaration

    • type: "FidoRegistrationCallback"
    • Optionalvalue?: Record<string, unknown>

      WebAuthn credential creation options.

      iOS only — always undefined on Android. See type-level remarks for details.

    Use rn-fido (registerForJourney) to drive the registration flow.

    The value field is present on iOS only — the native iOS bridge aliases MetadataCallback-backed FIDO flows to "FidoRegistrationCallback" and emits the WebAuthn credential creation options as value. On Android, MetadataCallback-backed FIDO flows surface as type: "MetadataCallback" directly; value is always undefined on Android for this normalized field type.