ping-identity
    Preparing search index...

    Type Alias DaVinciFormMeta

    Derived metadata for the active form — used to drive UI-level decisions (e.g. hide a form that only has output/immediate collectors).

    type DaVinciFormMeta = {
        hasAutoCapable: boolean;
        hasIntegrationRequired: boolean;
        hasManual: boolean;
        hasOutputOnly: boolean;
        hasUnsupported: boolean;
    }
    Index

    Properties

    hasAutoCapable: boolean

    Always false in the base DaVinci package.

    Stub for parity with JourneyFormMeta.hasAutoCapable. No collector type in the DaVinci 2.0.1 iOS/Android SDKs resolves to an auto_capable execution mode (see resolveExecutionMode in collectorHelpers.ts) — this flag will be wired to live collector presence by future integration stories once such a collector type is registered.

    hasIntegrationRequired: boolean

    True when at least one collector requires an external package integration.

    hasManual: boolean

    True when at least one collector requires manual user input.

    hasOutputOnly: boolean

    True when at least one LABEL (output-only) collector is present.

    hasUnsupported: boolean

    True when at least one unsupported (unknown-type) collector is present.