@sentio/protos 1.37.5-rc.2 → 1.37.5-rc.3
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.
- package/lib/builtin.d.ts +2 -2
- package/lib/chainquery/protos/chainquery.d.ts +5 -5
- package/lib/google/protobuf/empty.d.ts +2 -2
- package/lib/google/protobuf/struct.d.ts +2 -2
- package/lib/google/protobuf/timestamp.d.ts +2 -2
- package/lib/processor/protos/processor.d.ts +4 -4
- package/lib/service/price/protos/price.d.ts +3 -3
- package/package.json +2 -2
package/lib/builtin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
2
|
+
export 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 {} ? {
|
|
3
3
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
4
4
|
} : Partial<T>;
|
|
5
5
|
export {};
|
|
@@ -147,7 +147,7 @@ export declare const EvmQueryResponse: {
|
|
|
147
147
|
toJSON(message: EvmQueryResponse): unknown;
|
|
148
148
|
fromPartial(object: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
|
|
149
149
|
};
|
|
150
|
-
export
|
|
150
|
+
export type AptosQueryDefinition = typeof AptosQueryDefinition;
|
|
151
151
|
export declare const AptosQueryDefinition: {
|
|
152
152
|
readonly name: "AptosQuery";
|
|
153
153
|
readonly fullName: "chainquery.AptosQuery";
|
|
@@ -312,7 +312,7 @@ export interface AptosQueryClient<CallOptionsExt = {}> {
|
|
|
312
312
|
aptosRefresh(request: DeepPartial<AptosRefreshRequest>, options?: CallOptions & CallOptionsExt): Promise<VoidResponse>;
|
|
313
313
|
aptosSQLQuery(request: DeepPartial<AptosSQLQueryRequest>, options?: CallOptions & CallOptionsExt): Promise<AptosGetTxnsResponse>;
|
|
314
314
|
}
|
|
315
|
-
export
|
|
315
|
+
export type EvmQueryDefinition = typeof EvmQueryDefinition;
|
|
316
316
|
export declare const EvmQueryDefinition: {
|
|
317
317
|
readonly name: "EvmQuery";
|
|
318
318
|
readonly fullName: "chainquery.EvmQuery";
|
|
@@ -389,11 +389,11 @@ export interface EvmQueryClient<CallOptionsExt = {}> {
|
|
|
389
389
|
evmGetHeader(request: DeepPartial<EvmGetHeaderRequest>, options?: CallOptions & CallOptionsExt): Promise<EvmQueryResponse>;
|
|
390
390
|
evmHintHeaderCache(request: DeepPartial<EvmGetHeaderRequest>, options?: CallOptions & CallOptionsExt): Promise<VoidResponse>;
|
|
391
391
|
}
|
|
392
|
-
|
|
393
|
-
|
|
392
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
393
|
+
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 {} ? {
|
|
394
394
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
395
395
|
} : Partial<T>;
|
|
396
|
-
export
|
|
396
|
+
export type ServerStreamingMethodResult<Response> = {
|
|
397
397
|
[Symbol.asyncIterator](): AsyncIterator<Response, void>;
|
|
398
398
|
};
|
|
399
399
|
export {};
|
|
@@ -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 {};
|
|
@@ -704,7 +704,7 @@ export declare const ExportResult: {
|
|
|
704
704
|
toJSON(message: ExportResult): unknown;
|
|
705
705
|
fromPartial(object: DeepPartial<ExportResult>): ExportResult;
|
|
706
706
|
};
|
|
707
|
-
export
|
|
707
|
+
export type ProcessorDefinition = typeof ProcessorDefinition;
|
|
708
708
|
export declare const ProcessorDefinition: {
|
|
709
709
|
readonly name: "Processor";
|
|
710
710
|
readonly fullName: "processor.Processor";
|
|
@@ -825,11 +825,11 @@ export interface ProcessorClient<CallOptionsExt = {}> {
|
|
|
825
825
|
processBindings(request: DeepPartial<ProcessBindingsRequest>, options?: CallOptions & CallOptionsExt): Promise<ProcessBindingResponse>;
|
|
826
826
|
processBindingsStream(request: AsyncIterable<DeepPartial<DataBinding>>, options?: CallOptions & CallOptionsExt): AsyncIterable<ProcessBindingResponse>;
|
|
827
827
|
}
|
|
828
|
-
|
|
829
|
-
|
|
828
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
829
|
+
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 {} ? {
|
|
830
830
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
831
831
|
} : Partial<T>;
|
|
832
|
-
export
|
|
832
|
+
export type ServerStreamingMethodResult<Response> = {
|
|
833
833
|
[Symbol.asyncIterator](): AsyncIterator<Response, void>;
|
|
834
834
|
};
|
|
835
835
|
export {};
|
|
@@ -44,7 +44,7 @@ export declare const GetPriceResponse: {
|
|
|
44
44
|
toJSON(message: GetPriceResponse): unknown;
|
|
45
45
|
fromPartial(object: DeepPartial<GetPriceResponse>): GetPriceResponse;
|
|
46
46
|
};
|
|
47
|
-
export
|
|
47
|
+
export type PriceServiceDefinition = typeof PriceServiceDefinition;
|
|
48
48
|
export declare const PriceServiceDefinition: {
|
|
49
49
|
readonly name: "PriceService";
|
|
50
50
|
readonly fullName: "price_service.PriceService";
|
|
@@ -77,8 +77,8 @@ export interface PriceServiceImplementation<CallContextExt = {}> {
|
|
|
77
77
|
export interface PriceServiceClient<CallOptionsExt = {}> {
|
|
78
78
|
getPrice(request: DeepPartial<GetPriceRequest>, options?: CallOptions & CallOptionsExt): Promise<GetPriceResponse>;
|
|
79
79
|
}
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
81
|
+
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 {} ? {
|
|
82
82
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
83
83
|
} : Partial<T>;
|
|
84
84
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentio/protos",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "1.37.5-rc.
|
|
4
|
+
"version": "1.37.5-rc.3",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"compile": "tsc -p .",
|
|
7
7
|
"clean": "tsc --build --clean",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"!{lib,src}/tests",
|
|
20
20
|
"!**/*.test.{js,ts}"
|
|
21
21
|
],
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "91efb0c0a1853f1c3158c8abd5d9dcbc152c53c0"
|
|
23
23
|
}
|