@streamr/trackerless-network 100.0.0-pretestnet.0 → 100.0.0-pretestnet.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/dist/package.json +8 -8
- package/dist/src/NetworkNode.js +1 -1
- package/dist/src/NetworkNode.js.map +1 -1
- package/dist/src/NetworkStack.js +1 -1
- package/dist/src/NetworkStack.js.map +1 -1
- package/dist/src/logic/DeliveryRpcLocal.d.ts +1 -1
- package/dist/src/logic/EntryPointDiscovery.d.ts +1 -1
- package/dist/src/logic/EntryPointDiscovery.js +5 -5
- package/dist/src/logic/EntryPointDiscovery.js.map +1 -1
- package/dist/src/logic/Layer0Node.d.ts +1 -1
- package/dist/src/logic/Layer1Node.d.ts +1 -1
- package/dist/src/logic/RandomGraphNode.d.ts +2 -1
- package/dist/src/logic/RandomGraphNode.js +8 -8
- package/dist/src/logic/RandomGraphNode.js.map +1 -1
- package/dist/src/logic/StreamrNode.d.ts +1 -0
- package/dist/src/logic/StreamrNode.js +34 -28
- package/dist/src/logic/StreamrNode.js.map +1 -1
- package/dist/src/logic/createRandomGraphNode.js +8 -7
- package/dist/src/logic/createRandomGraphNode.js.map +1 -1
- package/dist/src/logic/inspect/Inspector.d.ts +2 -2
- package/dist/src/logic/inspect/Inspector.js +2 -2
- package/dist/src/logic/inspect/Inspector.js.map +1 -1
- package/dist/src/logic/neighbor-discovery/Handshaker.d.ts +2 -1
- package/dist/src/logic/neighbor-discovery/Handshaker.js +3 -3
- package/dist/src/logic/neighbor-discovery/Handshaker.js.map +1 -1
- package/dist/src/logic/neighbor-discovery/NeighborUpdateManager.d.ts +1 -1
- package/dist/src/logic/neighbor-discovery/NeighborUpdateManager.js +1 -1
- package/dist/src/logic/neighbor-discovery/NeighborUpdateManager.js.map +1 -1
- package/dist/src/logic/neighbor-discovery/NeighborUpdateRpcLocal.d.ts +1 -1
- package/dist/src/logic/neighbor-discovery/NeighborUpdateRpcLocal.js +2 -2
- package/dist/src/logic/neighbor-discovery/NeighborUpdateRpcLocal.js.map +1 -1
- package/dist/src/logic/proxy/ProxyClient.d.ts +1 -1
- package/dist/src/logic/proxy/ProxyClient.js +5 -5
- package/dist/src/logic/proxy/ProxyClient.js.map +1 -1
- package/dist/src/logic/proxy/ProxyConnectionRpcLocal.d.ts +1 -1
- package/dist/src/logic/proxy/ProxyConnectionRpcLocal.js +1 -1
- package/dist/src/logic/proxy/ProxyConnectionRpcLocal.js.map +1 -1
- package/dist/src/logic/proxy/ProxyConnectionRpcRemote.js +1 -1
- package/dist/src/logic/proxy/ProxyConnectionRpcRemote.js.map +1 -1
- package/dist/src/logic/temporary-connection/TemporaryConnectionRpcLocal.d.ts +1 -1
- package/dist/src/logic/temporary-connection/TemporaryConnectionRpcLocal.js +2 -2
- package/dist/src/logic/temporary-connection/TemporaryConnectionRpcLocal.js.map +1 -1
- package/dist/src/proto/packages/dht/protos/DhtRpc.client.d.ts +77 -60
- package/dist/src/proto/packages/dht/protos/DhtRpc.client.js +71 -58
- package/dist/src/proto/packages/dht/protos/DhtRpc.client.js.map +1 -1
- package/dist/src/proto/packages/dht/protos/DhtRpc.d.ts +87 -124
- package/dist/src/proto/packages/dht/protos/DhtRpc.js +83 -101
- package/dist/src/proto/packages/dht/protos/DhtRpc.js.map +1 -1
- package/dist/src/proto/packages/dht/protos/DhtRpc.server.d.ts +37 -32
- package/dist/test/benchmark/first-message.js +1 -1
- package/dist/test/benchmark/first-message.js.map +1 -1
- package/dist/test/utils/utils.d.ts +1 -1
- package/dist/test/utils/utils.js +10 -8
- package/dist/test/utils/utils.js.map +1 -1
- package/karma.config.js +2 -2
- package/package.json +8 -8
- package/src/NetworkNode.ts +1 -1
- package/src/NetworkStack.ts +1 -1
- package/src/logic/DeliveryRpcLocal.ts +1 -1
- package/src/logic/EntryPointDiscovery.ts +6 -6
- package/src/logic/Layer0Node.ts +1 -1
- package/src/logic/Layer1Node.ts +1 -1
- package/src/logic/RandomGraphNode.ts +19 -13
- package/src/logic/StreamrNode.ts +22 -12
- package/src/logic/createRandomGraphNode.ts +8 -7
- package/src/logic/inspect/Inspector.ts +4 -4
- package/src/logic/neighbor-discovery/Handshaker.ts +15 -6
- package/src/logic/neighbor-discovery/NeighborUpdateManager.ts +2 -2
- package/src/logic/neighbor-discovery/NeighborUpdateRpcLocal.ts +3 -3
- package/src/logic/proxy/ProxyClient.ts +7 -7
- package/src/logic/proxy/ProxyConnectionRpcLocal.ts +2 -2
- package/src/logic/proxy/ProxyConnectionRpcRemote.ts +2 -2
- package/src/logic/temporary-connection/TemporaryConnectionRpcLocal.ts +3 -3
- package/src/proto/packages/dht/protos/DhtRpc.client.ts +113 -97
- package/src/proto/packages/dht/protos/DhtRpc.server.ts +37 -32
- package/src/proto/packages/dht/protos/DhtRpc.ts +115 -160
- package/test/benchmark/first-message.ts +1 -1
- package/test/end-to-end/inspect.test.ts +6 -3
- package/test/end-to-end/proxy-and-full-node.test.ts +1 -0
- package/test/end-to-end/proxy-connections.test.ts +2 -0
- package/test/end-to-end/proxy-key-exchange.test.ts +1 -0
- package/test/end-to-end/random-graph-with-real-connections.test.ts +10 -10
- package/test/end-to-end/webrtc-full-node-network.test.ts +2 -1
- package/test/end-to-end/websocket-full-node-network.test.ts +3 -1
- package/test/integration/Handshakes.test.ts +1 -1
- package/test/integration/Inspect.test.ts +1 -1
- package/test/integration/NetworkStack.test.ts +4 -2
- package/test/integration/NetworkStackStoppedDuringStart.test.ts +4 -2
- package/test/integration/RandomGraphNode-Layer1Node-Latencies.test.ts +2 -2
- package/test/integration/RandomGraphNode-Layer1Node.test.ts +2 -2
- package/test/unit/DeliveryRpcLocal.test.ts +1 -1
- package/test/unit/EntrypointDiscovery.test.ts +3 -3
- package/test/unit/HandshakeRpcLocal.test.ts +2 -2
- package/test/unit/Handshaker.test.ts +3 -2
- package/test/unit/Inspector.test.ts +1 -1
- package/test/unit/NodeList.test.ts +1 -1
- package/test/unit/RandomGraphNode.test.ts +1 -1
- package/test/utils/mock/MockLayer0Node.ts +1 -1
- package/test/utils/mock/Transport.ts +1 -1
- package/test/utils/utils.ts +10 -8
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExternalStoreDataResponse } from "./DhtRpc";
|
|
2
2
|
import type { ExternalStoreDataRequest } from "./DhtRpc";
|
|
3
|
-
import type {
|
|
4
|
-
import type {
|
|
3
|
+
import type { ExternalFindDataResponse } from "./DhtRpc";
|
|
4
|
+
import type { ExternalFindDataRequest } from "./DhtRpc";
|
|
5
5
|
import type { DisconnectNoticeResponse } from "./DhtRpc";
|
|
6
6
|
import type { DisconnectNotice } from "./DhtRpc";
|
|
7
7
|
import type { UnlockRequest } from "./DhtRpc";
|
|
@@ -10,10 +10,10 @@ import type { LockRequest } from "./DhtRpc";
|
|
|
10
10
|
import type { IceCandidate } from "./DhtRpc";
|
|
11
11
|
import type { RtcAnswer } from "./DhtRpc";
|
|
12
12
|
import type { RtcOffer } from "./DhtRpc";
|
|
13
|
-
import type {
|
|
14
|
-
import type {
|
|
15
|
-
import type {
|
|
16
|
-
import type {
|
|
13
|
+
import type { WebrtcConnectionRequest } from "./DhtRpc";
|
|
14
|
+
import type { WebsocketConnectionResponse } from "./DhtRpc";
|
|
15
|
+
import type { WebsocketConnectionRequest } from "./DhtRpc";
|
|
16
|
+
import type { FindResponse } from "./DhtRpc";
|
|
17
17
|
import type { DeleteDataResponse } from "./DhtRpc";
|
|
18
18
|
import type { DeleteDataRequest } from "./DhtRpc";
|
|
19
19
|
import type { MigrateDataResponse } from "./DhtRpc";
|
|
@@ -33,9 +33,9 @@ import type { ClosestPeersRequest } from "./DhtRpc";
|
|
|
33
33
|
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
34
34
|
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
35
35
|
/**
|
|
36
|
-
* @generated from protobuf service dht.
|
|
36
|
+
* @generated from protobuf service dht.DhtNodeRpc
|
|
37
37
|
*/
|
|
38
|
-
export interface
|
|
38
|
+
export interface IDhtNodeRpcClient {
|
|
39
39
|
/**
|
|
40
40
|
* @generated from protobuf rpc: getClosestPeers(dht.ClosestPeersRequest) returns (dht.ClosestPeersResponse);
|
|
41
41
|
*/
|
|
@@ -50,9 +50,9 @@ export interface IDhtRpcServiceClient {
|
|
|
50
50
|
leaveNotice(input: LeaveNotice, options?: RpcOptions): UnaryCall<LeaveNotice, Empty>;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
|
-
* @generated from protobuf service dht.
|
|
53
|
+
* @generated from protobuf service dht.DhtNodeRpc
|
|
54
54
|
*/
|
|
55
|
-
export declare class
|
|
55
|
+
export declare class DhtNodeRpcClient implements IDhtNodeRpcClient, ServiceInfo {
|
|
56
56
|
private readonly _transport;
|
|
57
57
|
typeName: string;
|
|
58
58
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -74,9 +74,9 @@ export declare class DhtRpcServiceClient implements IDhtRpcServiceClient, Servic
|
|
|
74
74
|
leaveNotice(input: LeaveNotice, options?: RpcOptions): UnaryCall<LeaveNotice, Empty>;
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
|
-
* @generated from protobuf service dht.
|
|
77
|
+
* @generated from protobuf service dht.RouterRpc
|
|
78
78
|
*/
|
|
79
|
-
export interface
|
|
79
|
+
export interface IRouterRpcClient {
|
|
80
80
|
/**
|
|
81
81
|
* @generated from protobuf rpc: routeMessage(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
82
82
|
*/
|
|
@@ -85,15 +85,11 @@ export interface IRoutingServiceClient {
|
|
|
85
85
|
* @generated from protobuf rpc: forwardMessage(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
86
86
|
*/
|
|
87
87
|
forwardMessage(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
88
|
-
/**
|
|
89
|
-
* @generated from protobuf rpc: findRecursively(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
90
|
-
*/
|
|
91
|
-
findRecursively(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
92
88
|
}
|
|
93
89
|
/**
|
|
94
|
-
* @generated from protobuf service dht.
|
|
90
|
+
* @generated from protobuf service dht.RouterRpc
|
|
95
91
|
*/
|
|
96
|
-
export declare class
|
|
92
|
+
export declare class RouterRpcClient implements IRouterRpcClient, ServiceInfo {
|
|
97
93
|
private readonly _transport;
|
|
98
94
|
typeName: string;
|
|
99
95
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -109,15 +105,36 @@ export declare class RoutingServiceClient implements IRoutingServiceClient, Serv
|
|
|
109
105
|
* @generated from protobuf rpc: forwardMessage(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
110
106
|
*/
|
|
111
107
|
forwardMessage(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* @generated from protobuf service dht.FindRpc
|
|
111
|
+
*/
|
|
112
|
+
export interface IFindRpcClient {
|
|
113
|
+
/**
|
|
114
|
+
* @generated from protobuf rpc: routeFindRequest(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
115
|
+
*/
|
|
116
|
+
routeFindRequest(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* @generated from protobuf service dht.FindRpc
|
|
120
|
+
*/
|
|
121
|
+
export declare class FindRpcClient implements IFindRpcClient, ServiceInfo {
|
|
122
|
+
private readonly _transport;
|
|
123
|
+
typeName: string;
|
|
124
|
+
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
125
|
+
options: {
|
|
126
|
+
[extensionName: string]: import("@protobuf-ts/runtime").JsonValue;
|
|
127
|
+
};
|
|
128
|
+
constructor(_transport: RpcTransport);
|
|
112
129
|
/**
|
|
113
|
-
* @generated from protobuf rpc:
|
|
130
|
+
* @generated from protobuf rpc: routeFindRequest(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
114
131
|
*/
|
|
115
|
-
|
|
132
|
+
routeFindRequest(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
116
133
|
}
|
|
117
134
|
/**
|
|
118
|
-
* @generated from protobuf service dht.
|
|
135
|
+
* @generated from protobuf service dht.StoreRpc
|
|
119
136
|
*/
|
|
120
|
-
export interface
|
|
137
|
+
export interface IStoreRpcClient {
|
|
121
138
|
/**
|
|
122
139
|
* @generated from protobuf rpc: storeData(dht.StoreDataRequest) returns (dht.StoreDataResponse);
|
|
123
140
|
*/
|
|
@@ -132,9 +149,9 @@ export interface IStoreServiceClient {
|
|
|
132
149
|
deleteData(input: DeleteDataRequest, options?: RpcOptions): UnaryCall<DeleteDataRequest, DeleteDataResponse>;
|
|
133
150
|
}
|
|
134
151
|
/**
|
|
135
|
-
* @generated from protobuf service dht.
|
|
152
|
+
* @generated from protobuf service dht.StoreRpc
|
|
136
153
|
*/
|
|
137
|
-
export declare class
|
|
154
|
+
export declare class StoreRpcClient implements IStoreRpcClient, ServiceInfo {
|
|
138
155
|
private readonly _transport;
|
|
139
156
|
typeName: string;
|
|
140
157
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -156,18 +173,18 @@ export declare class StoreServiceClient implements IStoreServiceClient, ServiceI
|
|
|
156
173
|
deleteData(input: DeleteDataRequest, options?: RpcOptions): UnaryCall<DeleteDataRequest, DeleteDataResponse>;
|
|
157
174
|
}
|
|
158
175
|
/**
|
|
159
|
-
* @generated from protobuf service dht.
|
|
176
|
+
* @generated from protobuf service dht.FindSessionRpc
|
|
160
177
|
*/
|
|
161
|
-
export interface
|
|
178
|
+
export interface IFindSessionRpcClient {
|
|
162
179
|
/**
|
|
163
|
-
* @generated from protobuf rpc:
|
|
180
|
+
* @generated from protobuf rpc: sendFindResponse(dht.FindResponse) returns (google.protobuf.Empty);
|
|
164
181
|
*/
|
|
165
|
-
|
|
182
|
+
sendFindResponse(input: FindResponse, options?: RpcOptions): UnaryCall<FindResponse, Empty>;
|
|
166
183
|
}
|
|
167
184
|
/**
|
|
168
|
-
* @generated from protobuf service dht.
|
|
185
|
+
* @generated from protobuf service dht.FindSessionRpc
|
|
169
186
|
*/
|
|
170
|
-
export declare class
|
|
187
|
+
export declare class FindSessionRpcClient implements IFindSessionRpcClient, ServiceInfo {
|
|
171
188
|
private readonly _transport;
|
|
172
189
|
typeName: string;
|
|
173
190
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -176,23 +193,23 @@ export declare class RecursiveFindSessionServiceClient implements IRecursiveFind
|
|
|
176
193
|
};
|
|
177
194
|
constructor(_transport: RpcTransport);
|
|
178
195
|
/**
|
|
179
|
-
* @generated from protobuf rpc:
|
|
196
|
+
* @generated from protobuf rpc: sendFindResponse(dht.FindResponse) returns (google.protobuf.Empty);
|
|
180
197
|
*/
|
|
181
|
-
|
|
198
|
+
sendFindResponse(input: FindResponse, options?: RpcOptions): UnaryCall<FindResponse, Empty>;
|
|
182
199
|
}
|
|
183
200
|
/**
|
|
184
|
-
* @generated from protobuf service dht.
|
|
201
|
+
* @generated from protobuf service dht.WebsocketConnectorRpc
|
|
185
202
|
*/
|
|
186
|
-
export interface
|
|
203
|
+
export interface IWebsocketConnectorRpcClient {
|
|
187
204
|
/**
|
|
188
|
-
* @generated from protobuf rpc: requestConnection(dht.
|
|
205
|
+
* @generated from protobuf rpc: requestConnection(dht.WebsocketConnectionRequest) returns (dht.WebsocketConnectionResponse);
|
|
189
206
|
*/
|
|
190
|
-
requestConnection(input:
|
|
207
|
+
requestConnection(input: WebsocketConnectionRequest, options?: RpcOptions): UnaryCall<WebsocketConnectionRequest, WebsocketConnectionResponse>;
|
|
191
208
|
}
|
|
192
209
|
/**
|
|
193
|
-
* @generated from protobuf service dht.
|
|
210
|
+
* @generated from protobuf service dht.WebsocketConnectorRpc
|
|
194
211
|
*/
|
|
195
|
-
export declare class
|
|
212
|
+
export declare class WebsocketConnectorRpcClient implements IWebsocketConnectorRpcClient, ServiceInfo {
|
|
196
213
|
private readonly _transport;
|
|
197
214
|
typeName: string;
|
|
198
215
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -201,18 +218,18 @@ export declare class WebSocketConnectorServiceClient implements IWebSocketConnec
|
|
|
201
218
|
};
|
|
202
219
|
constructor(_transport: RpcTransport);
|
|
203
220
|
/**
|
|
204
|
-
* @generated from protobuf rpc: requestConnection(dht.
|
|
221
|
+
* @generated from protobuf rpc: requestConnection(dht.WebsocketConnectionRequest) returns (dht.WebsocketConnectionResponse);
|
|
205
222
|
*/
|
|
206
|
-
requestConnection(input:
|
|
223
|
+
requestConnection(input: WebsocketConnectionRequest, options?: RpcOptions): UnaryCall<WebsocketConnectionRequest, WebsocketConnectionResponse>;
|
|
207
224
|
}
|
|
208
225
|
/**
|
|
209
|
-
* @generated from protobuf service dht.
|
|
226
|
+
* @generated from protobuf service dht.WebrtcConnectorRpc
|
|
210
227
|
*/
|
|
211
|
-
export interface
|
|
228
|
+
export interface IWebrtcConnectorRpcClient {
|
|
212
229
|
/**
|
|
213
|
-
* @generated from protobuf rpc: requestConnection(dht.
|
|
230
|
+
* @generated from protobuf rpc: requestConnection(dht.WebrtcConnectionRequest) returns (google.protobuf.Empty);
|
|
214
231
|
*/
|
|
215
|
-
requestConnection(input:
|
|
232
|
+
requestConnection(input: WebrtcConnectionRequest, options?: RpcOptions): UnaryCall<WebrtcConnectionRequest, Empty>;
|
|
216
233
|
/**
|
|
217
234
|
* @generated from protobuf rpc: rtcOffer(dht.RtcOffer) returns (google.protobuf.Empty);
|
|
218
235
|
*/
|
|
@@ -227,9 +244,9 @@ export interface IWebRtcConnectorServiceClient {
|
|
|
227
244
|
iceCandidate(input: IceCandidate, options?: RpcOptions): UnaryCall<IceCandidate, Empty>;
|
|
228
245
|
}
|
|
229
246
|
/**
|
|
230
|
-
* @generated from protobuf service dht.
|
|
247
|
+
* @generated from protobuf service dht.WebrtcConnectorRpc
|
|
231
248
|
*/
|
|
232
|
-
export declare class
|
|
249
|
+
export declare class WebrtcConnectorRpcClient implements IWebrtcConnectorRpcClient, ServiceInfo {
|
|
233
250
|
private readonly _transport;
|
|
234
251
|
typeName: string;
|
|
235
252
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -238,9 +255,9 @@ export declare class WebRtcConnectorServiceClient implements IWebRtcConnectorSer
|
|
|
238
255
|
};
|
|
239
256
|
constructor(_transport: RpcTransport);
|
|
240
257
|
/**
|
|
241
|
-
* @generated from protobuf rpc: requestConnection(dht.
|
|
258
|
+
* @generated from protobuf rpc: requestConnection(dht.WebrtcConnectionRequest) returns (google.protobuf.Empty);
|
|
242
259
|
*/
|
|
243
|
-
requestConnection(input:
|
|
260
|
+
requestConnection(input: WebrtcConnectionRequest, options?: RpcOptions): UnaryCall<WebrtcConnectionRequest, Empty>;
|
|
244
261
|
/**
|
|
245
262
|
* @generated from protobuf rpc: rtcOffer(dht.RtcOffer) returns (google.protobuf.Empty);
|
|
246
263
|
*/
|
|
@@ -255,9 +272,9 @@ export declare class WebRtcConnectorServiceClient implements IWebRtcConnectorSer
|
|
|
255
272
|
iceCandidate(input: IceCandidate, options?: RpcOptions): UnaryCall<IceCandidate, Empty>;
|
|
256
273
|
}
|
|
257
274
|
/**
|
|
258
|
-
* @generated from protobuf service dht.
|
|
275
|
+
* @generated from protobuf service dht.ConnectionLockRpc
|
|
259
276
|
*/
|
|
260
|
-
export interface
|
|
277
|
+
export interface IConnectionLockRpcClient {
|
|
261
278
|
/**
|
|
262
279
|
* @generated from protobuf rpc: lockRequest(dht.LockRequest) returns (dht.LockResponse);
|
|
263
280
|
*/
|
|
@@ -272,9 +289,9 @@ export interface IConnectionLockerClient {
|
|
|
272
289
|
gracefulDisconnect(input: DisconnectNotice, options?: RpcOptions): UnaryCall<DisconnectNotice, DisconnectNoticeResponse>;
|
|
273
290
|
}
|
|
274
291
|
/**
|
|
275
|
-
* @generated from protobuf service dht.
|
|
292
|
+
* @generated from protobuf service dht.ConnectionLockRpc
|
|
276
293
|
*/
|
|
277
|
-
export declare class
|
|
294
|
+
export declare class ConnectionLockRpcClient implements IConnectionLockRpcClient, ServiceInfo {
|
|
278
295
|
private readonly _transport;
|
|
279
296
|
typeName: string;
|
|
280
297
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -296,22 +313,22 @@ export declare class ConnectionLockerClient implements IConnectionLockerClient,
|
|
|
296
313
|
gracefulDisconnect(input: DisconnectNotice, options?: RpcOptions): UnaryCall<DisconnectNotice, DisconnectNoticeResponse>;
|
|
297
314
|
}
|
|
298
315
|
/**
|
|
299
|
-
* @generated from protobuf service dht.
|
|
316
|
+
* @generated from protobuf service dht.ExternalApiRpc
|
|
300
317
|
*/
|
|
301
|
-
export interface
|
|
318
|
+
export interface IExternalApiRpcClient {
|
|
302
319
|
/**
|
|
303
|
-
* @generated from protobuf rpc:
|
|
320
|
+
* @generated from protobuf rpc: externalFindData(dht.ExternalFindDataRequest) returns (dht.ExternalFindDataResponse);
|
|
304
321
|
*/
|
|
305
|
-
|
|
322
|
+
externalFindData(input: ExternalFindDataRequest, options?: RpcOptions): UnaryCall<ExternalFindDataRequest, ExternalFindDataResponse>;
|
|
306
323
|
/**
|
|
307
324
|
* @generated from protobuf rpc: externalStoreData(dht.ExternalStoreDataRequest) returns (dht.ExternalStoreDataResponse);
|
|
308
325
|
*/
|
|
309
326
|
externalStoreData(input: ExternalStoreDataRequest, options?: RpcOptions): UnaryCall<ExternalStoreDataRequest, ExternalStoreDataResponse>;
|
|
310
327
|
}
|
|
311
328
|
/**
|
|
312
|
-
* @generated from protobuf service dht.
|
|
329
|
+
* @generated from protobuf service dht.ExternalApiRpc
|
|
313
330
|
*/
|
|
314
|
-
export declare class
|
|
331
|
+
export declare class ExternalApiRpcClient implements IExternalApiRpcClient, ServiceInfo {
|
|
315
332
|
private readonly _transport;
|
|
316
333
|
typeName: string;
|
|
317
334
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -320,9 +337,9 @@ export declare class ExternalApiServiceClient implements IExternalApiServiceClie
|
|
|
320
337
|
};
|
|
321
338
|
constructor(_transport: RpcTransport);
|
|
322
339
|
/**
|
|
323
|
-
* @generated from protobuf rpc:
|
|
340
|
+
* @generated from protobuf rpc: externalFindData(dht.ExternalFindDataRequest) returns (dht.ExternalFindDataResponse);
|
|
324
341
|
*/
|
|
325
|
-
|
|
342
|
+
externalFindData(input: ExternalFindDataRequest, options?: RpcOptions): UnaryCall<ExternalFindDataRequest, ExternalFindDataResponse>;
|
|
326
343
|
/**
|
|
327
344
|
* @generated from protobuf rpc: externalStoreData(dht.ExternalStoreDataRequest) returns (dht.ExternalStoreDataResponse);
|
|
328
345
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ExternalApiRpcClient = exports.ConnectionLockRpcClient = exports.WebrtcConnectorRpcClient = exports.WebsocketConnectorRpcClient = exports.FindSessionRpcClient = exports.StoreRpcClient = exports.FindRpcClient = exports.RouterRpcClient = exports.DhtNodeRpcClient = void 0;
|
|
4
4
|
// @generated by protobuf-ts 2.9.1 with parameter server_generic,generate_dependencies,long_type_number
|
|
5
5
|
// @generated from protobuf file "packages/dht/protos/DhtRpc.proto" (package "dht", syntax proto3)
|
|
6
6
|
// tslint:disable
|
|
@@ -12,16 +12,17 @@ const DhtRpc_5 = require("./DhtRpc");
|
|
|
12
12
|
const DhtRpc_6 = require("./DhtRpc");
|
|
13
13
|
const DhtRpc_7 = require("./DhtRpc");
|
|
14
14
|
const DhtRpc_8 = require("./DhtRpc");
|
|
15
|
+
const DhtRpc_9 = require("./DhtRpc");
|
|
15
16
|
const runtime_rpc_1 = require("@protobuf-ts/runtime-rpc");
|
|
16
17
|
/**
|
|
17
|
-
* @generated from protobuf service dht.
|
|
18
|
+
* @generated from protobuf service dht.DhtNodeRpc
|
|
18
19
|
*/
|
|
19
|
-
class
|
|
20
|
+
class DhtNodeRpcClient {
|
|
20
21
|
constructor(_transport) {
|
|
21
22
|
this._transport = _transport;
|
|
22
|
-
this.typeName =
|
|
23
|
-
this.methods =
|
|
24
|
-
this.options =
|
|
23
|
+
this.typeName = DhtRpc_9.DhtNodeRpc.typeName;
|
|
24
|
+
this.methods = DhtRpc_9.DhtNodeRpc.methods;
|
|
25
|
+
this.options = DhtRpc_9.DhtNodeRpc.options;
|
|
25
26
|
}
|
|
26
27
|
/**
|
|
27
28
|
* @generated from protobuf rpc: getClosestPeers(dht.ClosestPeersRequest) returns (dht.ClosestPeersResponse);
|
|
@@ -45,16 +46,16 @@ class DhtRpcServiceClient {
|
|
|
45
46
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
46
47
|
}
|
|
47
48
|
}
|
|
48
|
-
exports.
|
|
49
|
+
exports.DhtNodeRpcClient = DhtNodeRpcClient;
|
|
49
50
|
/**
|
|
50
|
-
* @generated from protobuf service dht.
|
|
51
|
+
* @generated from protobuf service dht.RouterRpc
|
|
51
52
|
*/
|
|
52
|
-
class
|
|
53
|
+
class RouterRpcClient {
|
|
53
54
|
constructor(_transport) {
|
|
54
55
|
this._transport = _transport;
|
|
55
|
-
this.typeName =
|
|
56
|
-
this.methods =
|
|
57
|
-
this.options =
|
|
56
|
+
this.typeName = DhtRpc_8.RouterRpc.typeName;
|
|
57
|
+
this.methods = DhtRpc_8.RouterRpc.methods;
|
|
58
|
+
this.options = DhtRpc_8.RouterRpc.options;
|
|
58
59
|
}
|
|
59
60
|
/**
|
|
60
61
|
* @generated from protobuf rpc: routeMessage(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
@@ -70,24 +71,36 @@ class RoutingServiceClient {
|
|
|
70
71
|
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
|
71
72
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
72
73
|
}
|
|
74
|
+
}
|
|
75
|
+
exports.RouterRpcClient = RouterRpcClient;
|
|
76
|
+
/**
|
|
77
|
+
* @generated from protobuf service dht.FindRpc
|
|
78
|
+
*/
|
|
79
|
+
class FindRpcClient {
|
|
80
|
+
constructor(_transport) {
|
|
81
|
+
this._transport = _transport;
|
|
82
|
+
this.typeName = DhtRpc_7.FindRpc.typeName;
|
|
83
|
+
this.methods = DhtRpc_7.FindRpc.methods;
|
|
84
|
+
this.options = DhtRpc_7.FindRpc.options;
|
|
85
|
+
}
|
|
73
86
|
/**
|
|
74
|
-
* @generated from protobuf rpc:
|
|
87
|
+
* @generated from protobuf rpc: routeFindRequest(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
75
88
|
*/
|
|
76
|
-
|
|
77
|
-
const method = this.methods[
|
|
89
|
+
routeFindRequest(input, options) {
|
|
90
|
+
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
78
91
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
79
92
|
}
|
|
80
93
|
}
|
|
81
|
-
exports.
|
|
94
|
+
exports.FindRpcClient = FindRpcClient;
|
|
82
95
|
/**
|
|
83
|
-
* @generated from protobuf service dht.
|
|
96
|
+
* @generated from protobuf service dht.StoreRpc
|
|
84
97
|
*/
|
|
85
|
-
class
|
|
98
|
+
class StoreRpcClient {
|
|
86
99
|
constructor(_transport) {
|
|
87
100
|
this._transport = _transport;
|
|
88
|
-
this.typeName = DhtRpc_6.
|
|
89
|
-
this.methods = DhtRpc_6.
|
|
90
|
-
this.options = DhtRpc_6.
|
|
101
|
+
this.typeName = DhtRpc_6.StoreRpc.typeName;
|
|
102
|
+
this.methods = DhtRpc_6.StoreRpc.methods;
|
|
103
|
+
this.options = DhtRpc_6.StoreRpc.options;
|
|
91
104
|
}
|
|
92
105
|
/**
|
|
93
106
|
* @generated from protobuf rpc: storeData(dht.StoreDataRequest) returns (dht.StoreDataResponse);
|
|
@@ -111,57 +124,57 @@ class StoreServiceClient {
|
|
|
111
124
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
112
125
|
}
|
|
113
126
|
}
|
|
114
|
-
exports.
|
|
127
|
+
exports.StoreRpcClient = StoreRpcClient;
|
|
115
128
|
/**
|
|
116
|
-
* @generated from protobuf service dht.
|
|
129
|
+
* @generated from protobuf service dht.FindSessionRpc
|
|
117
130
|
*/
|
|
118
|
-
class
|
|
131
|
+
class FindSessionRpcClient {
|
|
119
132
|
constructor(_transport) {
|
|
120
133
|
this._transport = _transport;
|
|
121
|
-
this.typeName = DhtRpc_5.
|
|
122
|
-
this.methods = DhtRpc_5.
|
|
123
|
-
this.options = DhtRpc_5.
|
|
134
|
+
this.typeName = DhtRpc_5.FindSessionRpc.typeName;
|
|
135
|
+
this.methods = DhtRpc_5.FindSessionRpc.methods;
|
|
136
|
+
this.options = DhtRpc_5.FindSessionRpc.options;
|
|
124
137
|
}
|
|
125
138
|
/**
|
|
126
|
-
* @generated from protobuf rpc:
|
|
139
|
+
* @generated from protobuf rpc: sendFindResponse(dht.FindResponse) returns (google.protobuf.Empty);
|
|
127
140
|
*/
|
|
128
|
-
|
|
141
|
+
sendFindResponse(input, options) {
|
|
129
142
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
130
143
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
131
144
|
}
|
|
132
145
|
}
|
|
133
|
-
exports.
|
|
146
|
+
exports.FindSessionRpcClient = FindSessionRpcClient;
|
|
134
147
|
/**
|
|
135
|
-
* @generated from protobuf service dht.
|
|
148
|
+
* @generated from protobuf service dht.WebsocketConnectorRpc
|
|
136
149
|
*/
|
|
137
|
-
class
|
|
150
|
+
class WebsocketConnectorRpcClient {
|
|
138
151
|
constructor(_transport) {
|
|
139
152
|
this._transport = _transport;
|
|
140
|
-
this.typeName = DhtRpc_4.
|
|
141
|
-
this.methods = DhtRpc_4.
|
|
142
|
-
this.options = DhtRpc_4.
|
|
153
|
+
this.typeName = DhtRpc_4.WebsocketConnectorRpc.typeName;
|
|
154
|
+
this.methods = DhtRpc_4.WebsocketConnectorRpc.methods;
|
|
155
|
+
this.options = DhtRpc_4.WebsocketConnectorRpc.options;
|
|
143
156
|
}
|
|
144
157
|
/**
|
|
145
|
-
* @generated from protobuf rpc: requestConnection(dht.
|
|
158
|
+
* @generated from protobuf rpc: requestConnection(dht.WebsocketConnectionRequest) returns (dht.WebsocketConnectionResponse);
|
|
146
159
|
*/
|
|
147
160
|
requestConnection(input, options) {
|
|
148
161
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
149
162
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
150
163
|
}
|
|
151
164
|
}
|
|
152
|
-
exports.
|
|
165
|
+
exports.WebsocketConnectorRpcClient = WebsocketConnectorRpcClient;
|
|
153
166
|
/**
|
|
154
|
-
* @generated from protobuf service dht.
|
|
167
|
+
* @generated from protobuf service dht.WebrtcConnectorRpc
|
|
155
168
|
*/
|
|
156
|
-
class
|
|
169
|
+
class WebrtcConnectorRpcClient {
|
|
157
170
|
constructor(_transport) {
|
|
158
171
|
this._transport = _transport;
|
|
159
|
-
this.typeName = DhtRpc_3.
|
|
160
|
-
this.methods = DhtRpc_3.
|
|
161
|
-
this.options = DhtRpc_3.
|
|
172
|
+
this.typeName = DhtRpc_3.WebrtcConnectorRpc.typeName;
|
|
173
|
+
this.methods = DhtRpc_3.WebrtcConnectorRpc.methods;
|
|
174
|
+
this.options = DhtRpc_3.WebrtcConnectorRpc.options;
|
|
162
175
|
}
|
|
163
176
|
/**
|
|
164
|
-
* @generated from protobuf rpc: requestConnection(dht.
|
|
177
|
+
* @generated from protobuf rpc: requestConnection(dht.WebrtcConnectionRequest) returns (google.protobuf.Empty);
|
|
165
178
|
*/
|
|
166
179
|
requestConnection(input, options) {
|
|
167
180
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
@@ -189,16 +202,16 @@ class WebRtcConnectorServiceClient {
|
|
|
189
202
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
190
203
|
}
|
|
191
204
|
}
|
|
192
|
-
exports.
|
|
205
|
+
exports.WebrtcConnectorRpcClient = WebrtcConnectorRpcClient;
|
|
193
206
|
/**
|
|
194
|
-
* @generated from protobuf service dht.
|
|
207
|
+
* @generated from protobuf service dht.ConnectionLockRpc
|
|
195
208
|
*/
|
|
196
|
-
class
|
|
209
|
+
class ConnectionLockRpcClient {
|
|
197
210
|
constructor(_transport) {
|
|
198
211
|
this._transport = _transport;
|
|
199
|
-
this.typeName = DhtRpc_2.
|
|
200
|
-
this.methods = DhtRpc_2.
|
|
201
|
-
this.options = DhtRpc_2.
|
|
212
|
+
this.typeName = DhtRpc_2.ConnectionLockRpc.typeName;
|
|
213
|
+
this.methods = DhtRpc_2.ConnectionLockRpc.methods;
|
|
214
|
+
this.options = DhtRpc_2.ConnectionLockRpc.options;
|
|
202
215
|
}
|
|
203
216
|
/**
|
|
204
217
|
* @generated from protobuf rpc: lockRequest(dht.LockRequest) returns (dht.LockResponse);
|
|
@@ -222,21 +235,21 @@ class ConnectionLockerClient {
|
|
|
222
235
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
223
236
|
}
|
|
224
237
|
}
|
|
225
|
-
exports.
|
|
238
|
+
exports.ConnectionLockRpcClient = ConnectionLockRpcClient;
|
|
226
239
|
/**
|
|
227
|
-
* @generated from protobuf service dht.
|
|
240
|
+
* @generated from protobuf service dht.ExternalApiRpc
|
|
228
241
|
*/
|
|
229
|
-
class
|
|
242
|
+
class ExternalApiRpcClient {
|
|
230
243
|
constructor(_transport) {
|
|
231
244
|
this._transport = _transport;
|
|
232
|
-
this.typeName = DhtRpc_1.
|
|
233
|
-
this.methods = DhtRpc_1.
|
|
234
|
-
this.options = DhtRpc_1.
|
|
245
|
+
this.typeName = DhtRpc_1.ExternalApiRpc.typeName;
|
|
246
|
+
this.methods = DhtRpc_1.ExternalApiRpc.methods;
|
|
247
|
+
this.options = DhtRpc_1.ExternalApiRpc.options;
|
|
235
248
|
}
|
|
236
249
|
/**
|
|
237
|
-
* @generated from protobuf rpc:
|
|
250
|
+
* @generated from protobuf rpc: externalFindData(dht.ExternalFindDataRequest) returns (dht.ExternalFindDataResponse);
|
|
238
251
|
*/
|
|
239
|
-
|
|
252
|
+
externalFindData(input, options) {
|
|
240
253
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
241
254
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
242
255
|
}
|
|
@@ -248,5 +261,5 @@ class ExternalApiServiceClient {
|
|
|
248
261
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
249
262
|
}
|
|
250
263
|
}
|
|
251
|
-
exports.
|
|
264
|
+
exports.ExternalApiRpcClient = ExternalApiRpcClient;
|
|
252
265
|
//# sourceMappingURL=DhtRpc.client.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DhtRpc.client.js","sourceRoot":"","sources":["../../../../../../src/proto/packages/dht/protos/DhtRpc.client.ts"],"names":[],"mappings":";;;AAAA,uGAAuG;AACvG,kGAAkG;AAClG,iBAAiB;AACjB,qCAA8C;AAK9C,
|
|
1
|
+
{"version":3,"file":"DhtRpc.client.js","sourceRoot":"","sources":["../../../../../../src/proto/packages/dht/protos/DhtRpc.client.ts"],"names":[],"mappings":"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"}
|