@sentio/runtime 1.37.5-rc.2 → 1.37.5-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,8 +8,8 @@ export declare const Empty: {
|
|
8
8
|
toJSON(_: Empty): unknown;
|
9
9
|
fromPartial(_: DeepPartial<Empty>): Empty;
|
10
10
|
};
|
11
|
-
|
12
|
-
|
11
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
12
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
13
13
|
[K in keyof T]?: DeepPartial<T[K]>;
|
14
14
|
} : Partial<T>;
|
15
15
|
export {};
|
@@ -65,8 +65,8 @@ export declare const ListValue: {
|
|
65
65
|
wrap(value: Array<any> | undefined): ListValue;
|
66
66
|
unwrap(message: ListValue): Array<any>;
|
67
67
|
};
|
68
|
-
|
69
|
-
|
68
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
69
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
70
70
|
[K in keyof T]?: DeepPartial<T[K]>;
|
71
71
|
} : Partial<T>;
|
72
72
|
export {};
|
@@ -10,8 +10,8 @@ export declare const Timestamp: {
|
|
10
10
|
toJSON(message: Timestamp): unknown;
|
11
11
|
fromPartial(object: DeepPartial<Timestamp>): Timestamp;
|
12
12
|
};
|
13
|
-
|
14
|
-
|
13
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
14
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
15
15
|
[K in keyof T]?: DeepPartial<T[K]>;
|
16
16
|
} : Partial<T>;
|
17
17
|
export {};
|
@@ -706,7 +706,7 @@ export declare const ExportResult: {
|
|
706
706
|
toJSON(message: ExportResult): unknown;
|
707
707
|
fromPartial(object: DeepPartial<ExportResult>): ExportResult;
|
708
708
|
};
|
709
|
-
export
|
709
|
+
export type ProcessorDefinition = typeof ProcessorDefinition;
|
710
710
|
export declare const ProcessorDefinition: {
|
711
711
|
readonly name: "Processor";
|
712
712
|
readonly fullName: "processor_full.Processor";
|
@@ -827,11 +827,11 @@ export interface ProcessorClient<CallOptionsExt = {}> {
|
|
827
827
|
processBindings(request: DeepPartial<ProcessBindingsRequest>, options?: CallOptions & CallOptionsExt): Promise<ProcessBindingResponse>;
|
828
828
|
processBindingsStream(request: AsyncIterable<DeepPartial<DataBinding>>, options?: CallOptions & CallOptionsExt): AsyncIterable<ProcessBindingResponse>;
|
829
829
|
}
|
830
|
-
|
831
|
-
|
830
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
831
|
+
type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
832
832
|
[K in keyof T]?: DeepPartial<T[K]>;
|
833
833
|
} : Partial<T>;
|
834
|
-
export
|
834
|
+
export type ServerStreamingMethodResult<Response> = {
|
835
835
|
[Symbol.asyncIterator](): AsyncIterator<Response, void>;
|
836
836
|
};
|
837
837
|
export {};
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sentio/runtime",
|
3
3
|
"license": "Apache-2.0",
|
4
|
-
"version": "1.37.5-rc.
|
4
|
+
"version": "1.37.5-rc.4",
|
5
5
|
"scripts": {
|
6
6
|
"compile": "tsc -p .",
|
7
7
|
"build": "yarn compile",
|
@@ -10,7 +10,7 @@
|
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@ethersproject/providers": "~5.7.0",
|
13
|
-
"@sentio/protos": "^1.37.5-rc.
|
13
|
+
"@sentio/protos": "^1.37.5-rc.4",
|
14
14
|
"bignumber.js": "^9.1.0",
|
15
15
|
"command-line-args": "^5.2.1",
|
16
16
|
"command-line-usage": "^6.1.3",
|
@@ -46,5 +46,5 @@
|
|
46
46
|
"!{lib,src}/tests",
|
47
47
|
"!**/*.test.{js,ts}"
|
48
48
|
],
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "c0d8949dec4708bd63dc1a3e32459c9b2ef751bb"
|
50
50
|
}
|