ping-identity
    Preparing search index...

    Type Alias OidcDeviceFlowStatus

    OidcDeviceFlowStatus:
        | { response: OidcDeviceAuthorizationResponse; type: "started" }
        | {
            nextPollAt: number;
            pollCount: number;
            pollInterval: number;
            type: "polling";
        }
        | { type: "success" }
        | { type: "expired" }
        | { type: "accessDenied" }
        | {
            error: { code?: string; message: string; status?: number };
            type: "failure";
        }

    Normalized status emitted while an OIDC device authorization flow runs.