Variable PreprocessStreamResponse

PreprocessStreamResponse: {
    create(
        base?: {
            dbRequest?: {
                delete?: { entity?: string[]; id?: string[] };
                get?: { entity?: string; id?: string };
                list?: {
                    cursor?: string;
                    entity?: string;
                    filters?: {
                        field?: (...) | (...);
                        op?: (...) | (...);
                        value?: (...) | (...);
                    }[];
                    pageSize?: number;
                };
                opId?: bigint;
                upsert?: {
                    data?: { [key: string]: any }[];
                    entity?: string[];
                    entityData?: { fields?: (...) | (...) }[];
                    id?: string[];
                };
            };
            processId?: number;
        },
    ): PreprocessStreamResponse;
    decode(
        input: Uint8Array | Reader,
        length?: number,
    ): PreprocessStreamResponse;
    encode(message: PreprocessStreamResponse, writer?: Writer): Writer;
    fromJSON(object: any): PreprocessStreamResponse;
    fromPartial(
        object: {
            dbRequest?: {
                delete?: { entity?: string[]; id?: string[] };
                get?: { entity?: string; id?: string };
                list?: {
                    cursor?: string;
                    entity?: string;
                    filters?: {
                        field?: string;
                        op?: DBRequest_DBOperator;
                        value?: { values?: ... };
                    }[];
                    pageSize?: number;
                };
                opId?: bigint;
                upsert?: {
                    data?: { [key: string]: any }[];
                    entity?: string[];
                    entityData?: { fields?: { [key: ...]: ... } }[];
                    id?: string[];
                };
            };
            processId?: number;
        },
    ): PreprocessStreamResponse;
    toJSON(message: PreprocessStreamResponse): unknown;
}