ping-identity
    Preparing search index...

    Type Alias ContinueNode

    Node requiring user input — contains a list of collectors.

    type ContinueNode = {
        collectors: DaVinciCollector[];
        input?: Record<string, unknown>;
        type: "ContinueNode";
        unsupportedFields?: UnsupportedDaVinciField[];
    }
    Index

    Properties

    collectors: DaVinciCollector[]

    Collectors representing the form fields for this step.

    input?: Record<string, unknown>

    Full server input payload for this node.

    Parity with Journey's ContinueNode.input. Useful for integration collectors that need the full server context beyond the typed collector projection.

    type: "ContinueNode"
    unsupportedFields?: UnsupportedDaVinciField[]

    Form fields the native SDK skipped because their type was not registered.

    Populated on both iOS and Android when the native SDK drops one or more fields (see UnsupportedDaVinciField). Omitted when every server field has a matching collector.