@resonatehq/sdk
    Preparing search index...

    Type Alias PromiseGetRes

    PromiseGetRes:
        | {
            data: { promise: PromiseRecord };
            head: ResponseHead<200>;
            kind: "promise.get";
        }
        | { data: string; head: ResponseHead<400>; kind: "promise.get" }
        | { data: string; head: ResponseHead<401>; kind: "promise.get" }
        | { data: string; head: ResponseHead<403>; kind: "promise.get" }
        | { data: string; head: ResponseHead<404>; kind: "promise.get" }
        | { data: string; head: ResponseHead<429>; kind: "promise.get" }
        | { data: string; head: ResponseHead<500>; kind: "promise.get" }