Variable ProcessStreamResponse

ProcessStreamResponse: {
    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;
            result?: {
                counters?: {
                    add?: boolean;
                    metadata?: {
                        address?: (...)
                        | (...);
                        blockNumber?: (...) | (...);
                        chainId?: (...) | (...);
                        contractName?: (...) | (...);
                        labels?: (...) | (...);
                        logIndex?: (...) | (...);
                        name?: (...) | (...);
                        transactionHash?: (...) | (...);
                        transactionIndex?: (...) | (...);
                    };
                    metricValue?: {
                        bigDecimal?: (...)
                        | (...);
                        bigInteger?: (...) | (...);
                        doubleValue?: (...) | (...);
                    };
                    runtimeInfo?: { from?: (...)
                    | (...) };
                }[];
                events?: {
                    attributes?: { [key: string]: any };
                    attributes2?: { fields?: (...) | (...) };
                    distinctEntityId?: string;
                    message?: string;
                    metadata?: {
                        address?: (...) | (...);
                        blockNumber?: (...) | (...);
                        chainId?: (...) | (...);
                        contractName?: (...) | (...);
                        labels?: (...) | (...);
                        logIndex?: (...) | (...);
                        name?: (...) | (...);
                        transactionHash?: (...) | (...);
                        transactionIndex?: (...) | (...);
                    };
                    noMetric?: boolean;
                    runtimeInfo?: { from?: (...)
                    | (...) };
                    severity?: LogLevel;
                }[];
                exports?: {
                    metadata?: {
                        address?: (...)
                        | (...);
                        blockNumber?: (...) | (...);
                        chainId?: (...) | (...);
                        contractName?: (...) | (...);
                        labels?: (...) | (...);
                        logIndex?: (...) | (...);
                        name?: (...) | (...);
                        transactionHash?: (...) | (...);
                        transactionIndex?: (...) | (...);
                    };
                    payload?: string;
                    runtimeInfo?: { from?: (...)
                    | (...) };
                }[];
                gauges?: {
                    metadata?: {
                        address?: (...)
                        | (...);
                        blockNumber?: (...) | (...);
                        chainId?: (...) | (...);
                        contractName?: (...) | (...);
                        labels?: (...) | (...);
                        logIndex?: (...) | (...);
                        name?: (...) | (...);
                        transactionHash?: (...) | (...);
                        transactionIndex?: (...) | (...);
                    };
                    metricValue?: {
                        bigDecimal?: (...)
                        | (...);
                        bigInteger?: (...) | (...);
                        doubleValue?: (...) | (...);
                    };
                    runtimeInfo?: { from?: (...)
                    | (...) };
                }[];
                states?: { configUpdated?: boolean; error?: string };
            };
        },
    ): ProcessStreamResponse;
    decode(input: Uint8Array | Reader, length?: number): ProcessStreamResponse;
    encode(message: ProcessStreamResponse, writer?: Writer): Writer;
    fromJSON(object: any): ProcessStreamResponse;
    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;
            result?: {
                counters?: {
                    add?: boolean;
                    metadata?: {
                        address?: string;
                        blockNumber?: bigint;
                        chainId?: string;
                        contractName?: string;
                        labels?: { [key: ...]: ... };
                        logIndex?: number;
                        name?: string;
                        transactionHash?: string;
                        transactionIndex?: number;
                    };
                    metricValue?: {
                        bigDecimal?: string;
                        bigInteger?: { data?: ...; negative?: ... };
                        doubleValue?: number;
                    };
                    runtimeInfo?: { from?: HandlerType };
                }[];
                events?: {
                    attributes?: { [key: string]: any };
                    attributes2?: { fields?: { [key: ...]: ... } };
                    distinctEntityId?: string;
                    message?: string;
                    metadata?: {
                        address?: string;
                        blockNumber?: bigint;
                        chainId?: string;
                        contractName?: string;
                        labels?: { [key: ...]: ... };
                        logIndex?: number;
                        name?: string;
                        transactionHash?: string;
                        transactionIndex?: number;
                    };
                    noMetric?: boolean;
                    runtimeInfo?: { from?: HandlerType };
                    severity?: LogLevel;
                }[];
                exports?: {
                    metadata?: {
                        address?: string;
                        blockNumber?: bigint;
                        chainId?: string;
                        contractName?: string;
                        labels?: { [key: ...]: ... };
                        logIndex?: number;
                        name?: string;
                        transactionHash?: string;
                        transactionIndex?: number;
                    };
                    payload?: string;
                    runtimeInfo?: { from?: HandlerType };
                }[];
                gauges?: {
                    metadata?: {
                        address?: string;
                        blockNumber?: bigint;
                        chainId?: string;
                        contractName?: string;
                        labels?: { [key: ...]: ... };
                        logIndex?: number;
                        name?: string;
                        transactionHash?: string;
                        transactionIndex?: number;
                    };
                    metricValue?: {
                        bigDecimal?: string;
                        bigInteger?: { data?: ...; negative?: ... };
                        doubleValue?: number;
                    };
                    runtimeInfo?: { from?: HandlerType };
                }[];
                states?: { configUpdated?: boolean; error?: string };
            };
        },
    ): ProcessStreamResponse;
    toJSON(message: ProcessStreamResponse): unknown;
}