ping-identity
    Preparing search index...

    Type Alias DaVinciFormOptions

    Options accepted by useDaVinciForm.

    type DaVinciFormOptions = {
        handledCollectorTypes?: ReadonlySet<string>;
        next?: (input: DaVinciNextInput) => Promise<DaVinciNode>;
    }
    Index

    Properties

    handledCollectorTypes?: ReadonlySet<string>

    Collector types that the app has already handled via native integration (for example IdP, FIDO, or Protect). When provided, matching integration_required collectors are excluded from submit issues so that canSubmit reflects true readiness.

    next?: (input: DaVinciNextInput) => Promise<DaVinciNode>

    Optional next function from useDaVinci(client).

    Required when useDaVinciForm is used outside a <DaVinciProvider>. When omitted, submitFlow falls back to the provider context's next. If neither is available, submitFlow throws a DaVinciError.