Variable PreprocessStreamRequest

PreprocessStreamRequest: {
    create(
        base?: {
            bindings?: {
                bindings?: {
                    data?: {
                        aptCall?: (...) | (...);
                        aptEvent?: (...) | (...);
                        aptResource?: (...) | (...);
                        btcBlock?: (...) | (...);
                        btcTransaction?: (...) | (...);
                        cosmosCall?: (...) | (...);
                        ethBlock?: (...) | (...);
                        ethLog?: (...) | (...);
                        ethTrace?: (...) | (...);
                        ethTransaction?: (...) | (...);
                        fuelBlock?: (...) | (...);
                        fuelCall?: (...) | (...);
                        solInstruction?: (...) | (...);
                        starknetEvents?: (...) | (...);
                        suiCall?: (...) | (...);
                        suiEvent?: (...) | (...);
                        suiObject?: (...) | (...);
                        suiObjectChange?: (...) | (...);
                    };
                    handlerIds?: number[];
                    handlerType?: HandlerType;
                }[];
            };
            dbResult?: {
                data?: { [key: string]: any };
                entities?: { entities?: { fields?: (...) | (...) }[] };
                entityList?: {
                    entities?: {
                        data?: (...) | (...);
                        entity?: (...) | (...);
                        genBlockChain?: (...) | (...);
                        genBlockNumber?: (...) | (...);
                        genBlockTime?: (...) | (...);
                    }[];
                };
                error?: string;
                list?: any[];
                nextCursor?: string;
                opId?: bigint;
            };
            processId?: number;
        },
    ): PreprocessStreamRequest;
    decode(
        input: Uint8Array | Reader,
        length?: number,
    ): PreprocessStreamRequest;
    encode(message: PreprocessStreamRequest, writer?: Writer): Writer;
    fromJSON(object: any): PreprocessStreamRequest;
    fromPartial(
        object: {
            bindings?: {
                bindings?: {
                    data?: {
                        aptCall?: { rawTransaction?: ...; transaction?: ... };
                        aptEvent?: { rawTransaction?: ...; transaction?: ... };
                        aptResource?: {
                            rawResources?: ...;
                            resources?: ...;
                            timestampMicros?: ...;
                            version?: ...;
                        };
                        btcBlock?: { block?: ...; timestamp?: ... };
                        btcTransaction?: { timestamp?: ...; transaction?: ... };
                        cosmosCall?: { timestamp?: ...; transaction?: ... };
                        ethBlock?: { block?: ... };
                        ethLog?: {
                            block?: ...;
                            log?: ...;
                            timestamp?: ...;
                            transaction?: ...;
                            transactionReceipt?: ...;
                        };
                        ethTrace?: {
                            block?: ...;
                            timestamp?: ...;
                            trace?: ...;
                            transaction?: ...;
                            transactionReceipt?: ...;
                        };
                        ethTransaction?: {
                            block?: ...;
                            timestamp?: ...;
                            trace?: ...;
                            transaction?: ...;
                            transactionReceipt?: ...;
                        };
                        fuelBlock?: { block?: ...; timestamp?: ... };
                        fuelCall?: { timestamp?: ...; transaction?: ... };
                        solInstruction?: {
                            accounts?: ...;
                            instructionData?: ...;
                            parsed?: ...;
                            programAccountId?: ...;
                            slot?: ...;
                        };
                        starknetEvents?: { result?: ...; timestamp?: ... };
                        suiCall?: { slot?: ...; timestamp?: ...; transaction?: ... };
                        suiEvent?: { slot?: ...; timestamp?: ...; transaction?: ... };
                        suiObject?: {
                            objectDigest?: ...;
                            objectId?: ...;
                            objects?: ...;
                            objectVersion?: ...;
                            self?: ...;
                            slot?: ...;
                            timestamp?: ...;
                        };
                        suiObjectChange?: {
                            changes?: ...;
                            slot?: ...;
                            timestamp?: ...;
                            txDigest?: ...;
                        };
                    };
                    handlerIds?: number[];
                    handlerType?: HandlerType;
                }[];
            };
            dbResult?: {
                data?: { [key: string]: any };
                entities?: { entities?: { fields?: { [key: ...]: ... } }[] };
                entityList?: {
                    entities?: {
                        data?: { fields?: ... };
                        entity?: string;
                        genBlockChain?: string;
                        genBlockNumber?: bigint;
                        genBlockTime?: Date;
                    }[];
                };
                error?: string;
                list?: any[];
                nextCursor?: string;
                opId?: bigint;
            };
            processId?: number;
        },
    ): PreprocessStreamRequest;
    toJSON(message: PreprocessStreamRequest): unknown;
}