import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * @generated from message sf.substreams.v1.StoreDeltas */ export declare class StoreDeltas extends Message { /** * @generated from field: repeated sf.substreams.v1.StoreDelta store_deltas = 1; */ storeDeltas: StoreDelta[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "sf.substreams.v1.StoreDeltas"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StoreDeltas; static fromJson(jsonValue: JsonValue, options?: Partial): StoreDeltas; static fromJsonString(jsonString: string, options?: Partial): StoreDeltas; static equals(a: StoreDeltas | PlainMessage | undefined, b: StoreDeltas | PlainMessage | undefined): boolean; } /** * @generated from message sf.substreams.v1.StoreDelta */ export declare class StoreDelta extends Message { /** * @generated from field: sf.substreams.v1.StoreDelta.Operation operation = 1; */ operation: StoreDelta_Operation; /** * @generated from field: uint64 ordinal = 2; */ ordinal: bigint; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: bytes old_value = 4; */ oldValue: Uint8Array; /** * @generated from field: bytes new_value = 5; */ newValue: Uint8Array; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "sf.substreams.v1.StoreDelta"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StoreDelta; static fromJson(jsonValue: JsonValue, options?: Partial): StoreDelta; static fromJsonString(jsonString: string, options?: Partial): StoreDelta; static equals(a: StoreDelta | PlainMessage | undefined, b: StoreDelta | PlainMessage | undefined): boolean; } /** * @generated from enum sf.substreams.v1.StoreDelta.Operation */ export declare enum StoreDelta_Operation { /** * @generated from enum value: UNSET = 0; */ UNSET = 0, /** * @generated from enum value: CREATE = 1; */ CREATE = 1, /** * @generated from enum value: UPDATE = 2; */ UPDATE = 2, /** * @generated from enum value: DELETE = 3; */ DELETE = 3 } //# sourceMappingURL=deltas_pb.d.ts.map