@streamr/dht 0.0.1-tatum.6 → 0.0.1-tatum.8
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/src/connection/ConnectionLockHandler.d.ts +1 -1
- package/dist/src/connection/ConnectionLockHandler.js.map +1 -1
- package/dist/src/connection/ConnectionLockRpcRemote.d.ts +10 -0
- package/dist/src/connection/{RemoteConnectionLocker.js → ConnectionLockRpcRemote.js} +21 -35
- package/dist/src/connection/ConnectionLockRpcRemote.js.map +1 -0
- package/dist/src/connection/ConnectionManager.d.ts +17 -41
- package/dist/src/connection/ConnectionManager.js +148 -212
- package/dist/src/connection/ConnectionManager.js.map +1 -1
- package/dist/src/connection/ConnectivityChecker.js +16 -13
- package/dist/src/connection/ConnectivityChecker.js.map +1 -1
- package/dist/src/connection/ConnectorFacade.d.ts +49 -0
- package/dist/src/connection/ConnectorFacade.js +83 -0
- package/dist/src/connection/ConnectorFacade.js.map +1 -0
- package/dist/src/connection/Handshaker.d.ts +1 -2
- package/dist/src/connection/Handshaker.js +1 -4
- package/dist/src/connection/Handshaker.js.map +1 -1
- package/dist/src/connection/ManagedConnection.d.ts +2 -6
- package/dist/src/connection/ManagedConnection.js +27 -36
- package/dist/src/connection/ManagedConnection.js.map +1 -1
- package/dist/src/connection/ManagedWebRtcConnection.d.ts +1 -1
- package/dist/src/connection/ManagedWebRtcConnection.js +2 -2
- package/dist/src/connection/ManagedWebRtcConnection.js.map +1 -1
- package/dist/src/connection/Simulator/Simulator.d.ts +0 -2
- package/dist/src/connection/Simulator/Simulator.js +0 -5
- package/dist/src/connection/Simulator/Simulator.js.map +1 -1
- package/dist/src/connection/Simulator/SimulatorConnection.js +16 -13
- package/dist/src/connection/Simulator/SimulatorConnection.js.map +1 -1
- package/dist/src/connection/Simulator/SimulatorConnector.d.ts +2 -3
- package/dist/src/connection/Simulator/SimulatorConnector.js +12 -14
- package/dist/src/connection/Simulator/SimulatorConnector.js.map +1 -1
- package/dist/src/connection/Simulator/SimulatorTransport.js +6 -1
- package/dist/src/connection/Simulator/SimulatorTransport.js.map +1 -1
- package/dist/src/connection/WebRTC/NodeWebRtcConnection.d.ts +3 -1
- package/dist/src/connection/WebRTC/NodeWebRtcConnection.js +12 -12
- package/dist/src/connection/WebRTC/NodeWebRtcConnection.js.map +1 -1
- package/dist/src/connection/WebRTC/{WebRtcConnector.d.ts → WebRtcConnectorRpcLocal.d.ts} +13 -13
- package/dist/src/connection/WebRTC/{WebRtcConnector.js → WebRtcConnectorRpcLocal.js} +46 -38
- package/dist/src/connection/WebRTC/WebRtcConnectorRpcLocal.js.map +1 -0
- package/dist/src/connection/WebRTC/WebRtcConnectorRpcRemote.d.ts +11 -0
- package/dist/src/connection/WebRTC/WebRtcConnectorRpcRemote.js +55 -0
- package/dist/src/connection/WebRTC/WebRtcConnectorRpcRemote.js.map +1 -0
- package/dist/src/connection/WebRTC/iceServerAsString.d.ts +1 -1
- package/dist/src/connection/WebSocket/{WebSocketConnector.d.ts → WebSocketConnectorRpcLocal.d.ts} +21 -11
- package/dist/src/connection/WebSocket/{WebSocketConnector.js → WebSocketConnectorRpcLocal.js} +80 -59
- package/dist/src/connection/WebSocket/WebSocketConnectorRpcLocal.js.map +1 -0
- package/dist/src/connection/WebSocket/WebSocketConnectorRpcRemote.d.ts +8 -0
- package/dist/src/connection/WebSocket/{RemoteWebSocketConnector.js → WebSocketConnectorRpcRemote.js} +12 -16
- package/dist/src/connection/WebSocket/WebSocketConnectorRpcRemote.js.map +1 -0
- package/dist/src/connection/WebSocket/WebSocketServer.d.ts +11 -1
- package/dist/src/connection/WebSocket/WebSocketServer.js +15 -10
- package/dist/src/connection/WebSocket/WebSocketServer.js.map +1 -1
- package/dist/src/dht/DhtNode.d.ts +18 -55
- package/dist/src/dht/DhtNode.js +122 -145
- package/dist/src/dht/DhtNode.js.map +1 -1
- package/dist/src/dht/{RemoteExternalApi.d.ts → ExternalApiRpcRemote.d.ts} +2 -2
- package/dist/src/dht/{RemoteExternalApi.js → ExternalApiRpcRemote.js} +5 -6
- package/dist/src/dht/ExternalApiRpcRemote.js.map +1 -0
- package/dist/src/dht/{DhtPeer.d.ts → RemoteDhtNode.d.ts} +2 -3
- package/dist/src/dht/{DhtPeer.js → RemoteDhtNode.js} +21 -19
- package/dist/src/dht/RemoteDhtNode.js.map +1 -0
- package/dist/src/dht/contact/ContactList.d.ts +0 -1
- package/dist/src/dht/contact/ContactList.js +0 -3
- package/dist/src/dht/contact/ContactList.js.map +1 -1
- package/dist/src/dht/contact/RandomContactList.d.ts +0 -1
- package/dist/src/dht/contact/RandomContactList.js +0 -3
- package/dist/src/dht/contact/RandomContactList.js.map +1 -1
- package/dist/src/dht/contact/SortedContactList.d.ts +0 -3
- package/dist/src/dht/contact/SortedContactList.js +0 -9
- package/dist/src/dht/contact/SortedContactList.js.map +1 -1
- package/dist/src/dht/discovery/DiscoverySession.d.ts +5 -7
- package/dist/src/dht/discovery/DiscoverySession.js +9 -10
- package/dist/src/dht/discovery/DiscoverySession.js.map +1 -1
- package/dist/src/dht/discovery/PeerDiscovery.d.ts +12 -11
- package/dist/src/dht/discovery/PeerDiscovery.js +33 -37
- package/dist/src/dht/discovery/PeerDiscovery.js.map +1 -1
- package/dist/src/dht/find/RecursiveFindSession.d.ts +9 -10
- package/dist/src/dht/find/RecursiveFindSession.js +13 -13
- package/dist/src/dht/find/RecursiveFindSession.js.map +1 -1
- package/dist/src/dht/find/RecursiveFinder.d.ts +9 -11
- package/dist/src/dht/find/RecursiveFinder.js +35 -36
- package/dist/src/dht/find/RecursiveFinder.js.map +1 -1
- package/dist/src/dht/find/RemoteRecursiveFindSession.d.ts +1 -1
- package/dist/src/dht/find/RemoteRecursiveFindSession.js +4 -4
- package/dist/src/dht/find/RemoteRecursiveFindSession.js.map +1 -1
- package/dist/src/dht/registerExternalApiRpcMethods.d.ts +1 -1
- package/dist/src/dht/registerExternalApiRpcMethods.js +4 -3
- package/dist/src/dht/registerExternalApiRpcMethods.js.map +1 -1
- package/dist/src/dht/routing/DuplicateDetector.d.ts +1 -2
- package/dist/src/dht/routing/DuplicateDetector.js +2 -7
- package/dist/src/dht/routing/DuplicateDetector.js.map +1 -1
- package/dist/src/dht/routing/Router.d.ts +12 -15
- package/dist/src/dht/routing/Router.js +30 -33
- package/dist/src/dht/routing/Router.js.map +1 -1
- package/dist/src/dht/routing/{RemoteRouter.d.ts → RouterRpcRemote.d.ts} +2 -2
- package/dist/src/dht/routing/{RemoteRouter.js → RouterRpcRemote.js} +5 -5
- package/dist/src/dht/routing/RouterRpcRemote.js.map +1 -0
- package/dist/src/dht/routing/RoutingSession.d.ts +3 -4
- package/dist/src/dht/routing/RoutingSession.js +6 -5
- package/dist/src/dht/routing/RoutingSession.js.map +1 -1
- package/dist/src/dht/store/{DataStore.d.ts → StoreRpcLocal.d.ts} +6 -6
- package/dist/src/dht/store/{DataStore.js → StoreRpcLocal.js} +34 -34
- package/dist/src/dht/store/StoreRpcLocal.js.map +1 -0
- package/dist/src/dht/store/{RemoteStore.d.ts → StoreRpcRemote.d.ts} +2 -2
- package/dist/src/dht/store/{RemoteStore.js → StoreRpcRemote.js} +4 -4
- package/dist/src/dht/store/StoreRpcRemote.js.map +1 -0
- package/dist/src/exports.d.ts +2 -8
- package/dist/src/exports.js +2 -14
- package/dist/src/exports.js.map +1 -1
- package/dist/src/helpers/PeerID.d.ts +0 -1
- package/dist/src/helpers/PeerID.js +0 -6
- package/dist/src/helpers/PeerID.js.map +1 -1
- package/dist/src/helpers/browser/isBrowserEnvironment.d.ts +1 -0
- package/dist/src/helpers/browser/isBrowserEnvironment.js +6 -0
- package/dist/src/helpers/browser/isBrowserEnvironment.js.map +1 -0
- package/dist/src/helpers/browser/isBrowserEnvironment_override.d.ts +1 -0
- package/dist/src/helpers/browser/isBrowserEnvironment_override.js +7 -0
- package/dist/src/helpers/browser/isBrowserEnvironment_override.js.map +1 -0
- package/dist/src/helpers/kademliaId.d.ts +1 -0
- package/dist/src/helpers/kademliaId.js +14 -0
- package/dist/src/helpers/kademliaId.js.map +1 -0
- package/dist/src/helpers/peerIdFromPeerDescriptor.d.ts +1 -1
- package/dist/src/helpers/peerIdFromPeerDescriptor.js +3 -3
- package/dist/src/helpers/peerIdFromPeerDescriptor.js.map +1 -1
- package/dist/src/helpers/protoClasses.js +2 -2
- package/dist/src/helpers/protoClasses.js.map +1 -1
- package/dist/src/proto/packages/dht/protos/DhtRpc.client.d.ts +29 -29
- package/dist/src/proto/packages/dht/protos/DhtRpc.client.js +39 -39
- package/dist/src/proto/packages/dht/protos/DhtRpc.client.js.map +1 -1
- package/dist/src/proto/packages/dht/protos/DhtRpc.d.ts +49 -162
- package/dist/src/proto/packages/dht/protos/DhtRpc.js +47 -88
- package/dist/src/proto/packages/dht/protos/DhtRpc.js.map +1 -1
- package/dist/src/proto/packages/dht/protos/DhtRpc.server.d.ts +15 -15
- package/dist/src/transport/RoutingRpcCommunicator.js +1 -0
- package/dist/src/transport/RoutingRpcCommunicator.js.map +1 -1
- package/package.json +10 -9
- package/protos/DhtRpc.proto +30 -60
- package/src/connection/ConnectionLockHandler.ts +1 -1
- package/src/connection/ConnectionLockRpcRemote.ts +62 -0
- package/src/connection/ConnectionManager.ts +178 -274
- package/src/connection/ConnectivityChecker.ts +15 -12
- package/src/connection/ConnectorFacade.ts +140 -0
- package/src/connection/Handshaker.ts +0 -5
- package/src/connection/ManagedConnection.ts +26 -40
- package/src/connection/ManagedWebRtcConnection.ts +0 -2
- package/src/connection/Simulator/Simulator.ts +0 -7
- package/src/connection/Simulator/SimulatorConnection.ts +16 -13
- package/src/connection/Simulator/SimulatorConnector.ts +13 -19
- package/src/connection/Simulator/SimulatorTransport.ts +6 -1
- package/src/connection/WebRTC/NodeWebRtcConnection.ts +15 -14
- package/src/connection/WebRTC/{WebRtcConnector.ts → WebRtcConnectorRpcLocal.ts} +68 -56
- package/src/connection/WebRTC/WebRtcConnectorRpcRemote.ts +71 -0
- package/src/connection/WebRTC/iceServerAsString.ts +1 -1
- package/src/connection/WebSocket/{WebSocketConnector.ts → WebSocketConnectorRpcLocal.ts} +102 -79
- package/src/connection/WebSocket/WebSocketConnectorRpcRemote.ts +45 -0
- package/src/connection/WebSocket/WebSocketServer.ts +26 -8
- package/src/dht/DhtNode.ts +176 -203
- package/src/dht/{RemoteExternalApi.ts → ExternalApiRpcRemote.ts} +3 -4
- package/src/dht/{DhtPeer.ts → RemoteDhtNode.ts} +11 -9
- package/src/dht/contact/ContactList.ts +0 -4
- package/src/dht/contact/RandomContactList.ts +0 -4
- package/src/dht/contact/SortedContactList.ts +0 -12
- package/src/dht/discovery/DiscoverySession.ts +20 -23
- package/src/dht/discovery/PeerDiscovery.ts +47 -45
- package/src/dht/find/RecursiveFindSession.ts +21 -22
- package/src/dht/find/RecursiveFinder.ts +45 -49
- package/src/dht/find/RemoteRecursiveFindSession.ts +6 -6
- package/src/dht/registerExternalApiRpcMethods.ts +8 -5
- package/src/dht/routing/DuplicateDetector.ts +3 -10
- package/src/dht/routing/Router.ts +39 -45
- package/src/dht/routing/{RemoteRouter.ts → RouterRpcRemote.ts} +4 -4
- package/src/dht/routing/RoutingSession.ts +15 -15
- package/src/dht/store/{DataStore.ts → StoreRpcLocal.ts} +42 -42
- package/src/dht/store/{RemoteStore.ts → StoreRpcRemote.ts} +2 -2
- package/src/exports.ts +2 -8
- package/src/helpers/PeerID.ts +0 -7
- package/src/helpers/browser/isBrowserEnvironment.ts +1 -0
- package/src/helpers/browser/isBrowserEnvironment_override.ts +3 -0
- package/src/helpers/kademliaId.ts +8 -0
- package/src/helpers/peerIdFromPeerDescriptor.ts +1 -1
- package/src/helpers/protoClasses.ts +4 -4
- package/src/proto/packages/dht/protos/DhtRpc.client.ts +54 -54
- package/src/proto/packages/dht/protos/DhtRpc.server.ts +15 -15
- package/src/proto/packages/dht/protos/DhtRpc.ts +77 -216
- package/src/transport/RoutingRpcCommunicator.ts +1 -0
- package/test/benchmark/KademliaCorrectness.test.ts +4 -2
- package/test/benchmark/RecursiveFind.test.ts +6 -6
- package/test/end-to-end/Layer0-Layer1.test.ts +9 -9
- package/test/end-to-end/Layer0WebRTC-Layer1.test.ts +5 -5
- package/test/end-to-end/Layer0WebRTC.test.ts +5 -6
- package/test/end-to-end/Layer1-Scale-WebRTC.test.ts +13 -8
- package/test/end-to-end/Layer1-Scale-WebSocket.test.ts +15 -10
- package/test/end-to-end/WebSocketConnectionRequest.test.ts +5 -5
- package/test/integration/ConnectionLocking.test.ts +32 -26
- package/test/integration/ConnectionManager.test.ts +90 -93
- package/test/integration/DhtJoinPeerDiscovery.test.ts +53 -0
- package/test/integration/DhtRpc.test.ts +4 -6
- package/test/integration/Layer1-scale.test.ts +8 -8
- package/test/integration/MigrateData.test.ts +9 -9
- package/test/integration/Mock-Layer1-Layer0.test.ts +1 -2
- package/test/integration/RecursiveFind.test.ts +5 -5
- package/test/integration/{DhtPeer.test.ts → RemoteDhtNode.test.ts} +11 -12
- package/test/integration/RouteMessage.test.ts +7 -9
- package/test/integration/{RemoteRouter.test.ts → RouterRpcRemote.test.ts} +13 -14
- package/test/integration/RpcErrors.test.ts +25 -10
- package/test/integration/ScaleDownDht.test.ts +8 -8
- package/test/integration/SimultaneousConnections.test.ts +35 -36
- package/test/integration/Store.test.ts +8 -9
- package/test/integration/StoreAndDelete.test.ts +11 -11
- package/test/integration/StoreOnDhtWithTwoNodes.test.ts +7 -7
- package/test/integration/{RemoteStore.test.ts → StoreRpcRemote.test.ts} +17 -18
- package/test/integration/WebRtcConnectionManagement.test.ts +26 -19
- package/test/integration/WebRtcConnectorRpc.test.ts +17 -32
- package/test/integration/WebSocket.test.ts +4 -2
- package/test/integration/WebSocketConnectionManagement.test.ts +30 -17
- package/test/integration/WebSocketConnectorRpc.test.ts +10 -15
- package/test/unit/DuplicateDetector.test.ts +3 -4
- package/test/unit/LocalDataStore.test.ts +6 -8
- package/test/unit/RandomContactList.test.ts +1 -1
- package/test/unit/RecursiveFinder.test.ts +13 -18
- package/test/unit/Router.test.ts +18 -21
- package/test/unit/WebSocketConnectorRpcLocal.test.ts +64 -0
- package/test/unit/WebSocketServer.test.ts +24 -12
- package/test/unit/{webrtcReplaceInternalIpWithExternalIp.ts → webrtcReplaceInternalIpWithExternalIp.test.ts} +1 -1
- package/test/utils/mock/RecursiveFinder.ts +2 -2
- package/test/utils/mock/Router.ts +9 -11
- package/test/utils/mock/Transport.ts +2 -2
- package/test/utils/utils.ts +55 -74
- package/dist/src/connection/RemoteConnectionLocker.d.ts +0 -13
- package/dist/src/connection/RemoteConnectionLocker.js.map +0 -1
- package/dist/src/connection/WebRTC/RemoteWebrtcConnector.d.ts +0 -12
- package/dist/src/connection/WebRTC/RemoteWebrtcConnector.js +0 -74
- package/dist/src/connection/WebRTC/RemoteWebrtcConnector.js.map +0 -1
- package/dist/src/connection/WebRTC/WebRtcConnector.js.map +0 -1
- package/dist/src/connection/WebSocket/RemoteWebSocketConnector.d.ts +0 -9
- package/dist/src/connection/WebSocket/RemoteWebSocketConnector.js.map +0 -1
- package/dist/src/connection/WebSocket/WebSocketConnector.js.map +0 -1
- package/dist/src/dht/DhtPeer.js.map +0 -1
- package/dist/src/dht/RemoteExternalApi.js.map +0 -1
- package/dist/src/dht/routing/RemoteRouter.js.map +0 -1
- package/dist/src/dht/store/DataStore.js.map +0 -1
- package/dist/src/dht/store/RemoteStore.js.map +0 -1
- package/dist/src/helpers/browser/isBrowser.d.ts +0 -1
- package/dist/src/helpers/browser/isBrowser.js +0 -6
- package/dist/src/helpers/browser/isBrowser.js.map +0 -1
- package/dist/src/helpers/browser/isNodeJS.d.ts +0 -1
- package/dist/src/helpers/browser/isNodeJS.js +0 -6
- package/dist/src/helpers/browser/isNodeJS.js.map +0 -1
- package/src/connection/RemoteConnectionLocker.ts +0 -84
- package/src/connection/WebRTC/RemoteWebrtcConnector.ts +0 -93
- package/src/connection/WebSocket/RemoteWebSocketConnector.ts +0 -49
- package/src/helpers/browser/isBrowser.ts +0 -1
- package/src/helpers/browser/isNodeJS.ts +0 -1
- package/test/integration/DhtWithMockConnectionLatencies.test.ts +0 -46
- package/test/integration/DhtWithMockConnections.test.ts +0 -46
- package/test/integration/DhtWithRealConnectionLatencies.test.ts +0 -47
|
@@ -13,7 +13,7 @@ import type { RtcOffer } from "./DhtRpc";
|
|
|
13
13
|
import type { WebRtcConnectionRequest } from "./DhtRpc";
|
|
14
14
|
import type { WebSocketConnectionResponse } from "./DhtRpc";
|
|
15
15
|
import type { WebSocketConnectionRequest } from "./DhtRpc";
|
|
16
|
-
import type {
|
|
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";
|
|
@@ -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
|
*/
|
|
@@ -91,9 +91,9 @@ export interface IRoutingServiceClient {
|
|
|
91
91
|
findRecursively(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
|
-
* @generated from protobuf service dht.
|
|
94
|
+
* @generated from protobuf service dht.RouterRpc
|
|
95
95
|
*/
|
|
96
|
-
export declare class
|
|
96
|
+
export declare class RouterRpcClient implements IRouterRpcClient, ServiceInfo {
|
|
97
97
|
private readonly _transport;
|
|
98
98
|
typeName: string;
|
|
99
99
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -115,9 +115,9 @@ export declare class RoutingServiceClient implements IRoutingServiceClient, Serv
|
|
|
115
115
|
findRecursively(input: RouteMessageWrapper, options?: RpcOptions): UnaryCall<RouteMessageWrapper, RouteMessageAck>;
|
|
116
116
|
}
|
|
117
117
|
/**
|
|
118
|
-
* @generated from protobuf service dht.
|
|
118
|
+
* @generated from protobuf service dht.StoreRpc
|
|
119
119
|
*/
|
|
120
|
-
export interface
|
|
120
|
+
export interface IStoreRpcClient {
|
|
121
121
|
/**
|
|
122
122
|
* @generated from protobuf rpc: storeData(dht.StoreDataRequest) returns (dht.StoreDataResponse);
|
|
123
123
|
*/
|
|
@@ -132,9 +132,9 @@ export interface IStoreServiceClient {
|
|
|
132
132
|
deleteData(input: DeleteDataRequest, options?: RpcOptions): UnaryCall<DeleteDataRequest, DeleteDataResponse>;
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
|
-
* @generated from protobuf service dht.
|
|
135
|
+
* @generated from protobuf service dht.StoreRpc
|
|
136
136
|
*/
|
|
137
|
-
export declare class
|
|
137
|
+
export declare class StoreRpcClient implements IStoreRpcClient, ServiceInfo {
|
|
138
138
|
private readonly _transport;
|
|
139
139
|
typeName: string;
|
|
140
140
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -160,9 +160,9 @@ export declare class StoreServiceClient implements IStoreServiceClient, ServiceI
|
|
|
160
160
|
*/
|
|
161
161
|
export interface IRecursiveFindSessionServiceClient {
|
|
162
162
|
/**
|
|
163
|
-
* @generated from protobuf rpc:
|
|
163
|
+
* @generated from protobuf rpc: sendFindResponse(dht.FindResponse) returns (google.protobuf.Empty);
|
|
164
164
|
*/
|
|
165
|
-
|
|
165
|
+
sendFindResponse(input: FindResponse, options?: RpcOptions): UnaryCall<FindResponse, Empty>;
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* @generated from protobuf service dht.RecursiveFindSessionService
|
|
@@ -176,23 +176,23 @@ export declare class RecursiveFindSessionServiceClient implements IRecursiveFind
|
|
|
176
176
|
};
|
|
177
177
|
constructor(_transport: RpcTransport);
|
|
178
178
|
/**
|
|
179
|
-
* @generated from protobuf rpc:
|
|
179
|
+
* @generated from protobuf rpc: sendFindResponse(dht.FindResponse) returns (google.protobuf.Empty);
|
|
180
180
|
*/
|
|
181
|
-
|
|
181
|
+
sendFindResponse(input: FindResponse, options?: RpcOptions): UnaryCall<FindResponse, Empty>;
|
|
182
182
|
}
|
|
183
183
|
/**
|
|
184
|
-
* @generated from protobuf service dht.
|
|
184
|
+
* @generated from protobuf service dht.WebSocketConnectorRpc
|
|
185
185
|
*/
|
|
186
|
-
export interface
|
|
186
|
+
export interface IWebSocketConnectorRpcClient {
|
|
187
187
|
/**
|
|
188
188
|
* @generated from protobuf rpc: requestConnection(dht.WebSocketConnectionRequest) returns (dht.WebSocketConnectionResponse);
|
|
189
189
|
*/
|
|
190
190
|
requestConnection(input: WebSocketConnectionRequest, options?: RpcOptions): UnaryCall<WebSocketConnectionRequest, WebSocketConnectionResponse>;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
|
-
* @generated from protobuf service dht.
|
|
193
|
+
* @generated from protobuf service dht.WebSocketConnectorRpc
|
|
194
194
|
*/
|
|
195
|
-
export declare class
|
|
195
|
+
export declare class WebSocketConnectorRpcClient implements IWebSocketConnectorRpcClient, ServiceInfo {
|
|
196
196
|
private readonly _transport;
|
|
197
197
|
typeName: string;
|
|
198
198
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -206,9 +206,9 @@ export declare class WebSocketConnectorServiceClient implements IWebSocketConnec
|
|
|
206
206
|
requestConnection(input: WebSocketConnectionRequest, options?: RpcOptions): UnaryCall<WebSocketConnectionRequest, WebSocketConnectionResponse>;
|
|
207
207
|
}
|
|
208
208
|
/**
|
|
209
|
-
* @generated from protobuf service dht.
|
|
209
|
+
* @generated from protobuf service dht.WebRtcConnectorRpc
|
|
210
210
|
*/
|
|
211
|
-
export interface
|
|
211
|
+
export interface IWebRtcConnectorRpcClient {
|
|
212
212
|
/**
|
|
213
213
|
* @generated from protobuf rpc: requestConnection(dht.WebRtcConnectionRequest) returns (google.protobuf.Empty);
|
|
214
214
|
*/
|
|
@@ -227,9 +227,9 @@ export interface IWebRtcConnectorServiceClient {
|
|
|
227
227
|
iceCandidate(input: IceCandidate, options?: RpcOptions): UnaryCall<IceCandidate, Empty>;
|
|
228
228
|
}
|
|
229
229
|
/**
|
|
230
|
-
* @generated from protobuf service dht.
|
|
230
|
+
* @generated from protobuf service dht.WebRtcConnectorRpc
|
|
231
231
|
*/
|
|
232
|
-
export declare class
|
|
232
|
+
export declare class WebRtcConnectorRpcClient implements IWebRtcConnectorRpcClient, ServiceInfo {
|
|
233
233
|
private readonly _transport;
|
|
234
234
|
typeName: string;
|
|
235
235
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -255,9 +255,9 @@ export declare class WebRtcConnectorServiceClient implements IWebRtcConnectorSer
|
|
|
255
255
|
iceCandidate(input: IceCandidate, options?: RpcOptions): UnaryCall<IceCandidate, Empty>;
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
|
-
* @generated from protobuf service dht.
|
|
258
|
+
* @generated from protobuf service dht.ConnectionLockRpc
|
|
259
259
|
*/
|
|
260
|
-
export interface
|
|
260
|
+
export interface IConnectionLockRpcClient {
|
|
261
261
|
/**
|
|
262
262
|
* @generated from protobuf rpc: lockRequest(dht.LockRequest) returns (dht.LockResponse);
|
|
263
263
|
*/
|
|
@@ -272,9 +272,9 @@ export interface IConnectionLockerClient {
|
|
|
272
272
|
gracefulDisconnect(input: DisconnectNotice, options?: RpcOptions): UnaryCall<DisconnectNotice, DisconnectNoticeResponse>;
|
|
273
273
|
}
|
|
274
274
|
/**
|
|
275
|
-
* @generated from protobuf service dht.
|
|
275
|
+
* @generated from protobuf service dht.ConnectionLockRpc
|
|
276
276
|
*/
|
|
277
|
-
export declare class
|
|
277
|
+
export declare class ConnectionLockRpcClient implements IConnectionLockRpcClient, ServiceInfo {
|
|
278
278
|
private readonly _transport;
|
|
279
279
|
typeName: string;
|
|
280
280
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -296,9 +296,9 @@ export declare class ConnectionLockerClient implements IConnectionLockerClient,
|
|
|
296
296
|
gracefulDisconnect(input: DisconnectNotice, options?: RpcOptions): UnaryCall<DisconnectNotice, DisconnectNoticeResponse>;
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
|
-
* @generated from protobuf service dht.
|
|
299
|
+
* @generated from protobuf service dht.ExternalApiRpc
|
|
300
300
|
*/
|
|
301
|
-
export interface
|
|
301
|
+
export interface IExternalApiRpcClient {
|
|
302
302
|
/**
|
|
303
303
|
* @generated from protobuf rpc: findData(dht.FindDataRequest) returns (dht.FindDataResponse);
|
|
304
304
|
*/
|
|
@@ -309,9 +309,9 @@ export interface IExternalApiServiceClient {
|
|
|
309
309
|
externalStoreData(input: ExternalStoreDataRequest, options?: RpcOptions): UnaryCall<ExternalStoreDataRequest, ExternalStoreDataResponse>;
|
|
310
310
|
}
|
|
311
311
|
/**
|
|
312
|
-
* @generated from protobuf service dht.
|
|
312
|
+
* @generated from protobuf service dht.ExternalApiRpc
|
|
313
313
|
*/
|
|
314
|
-
export declare class
|
|
314
|
+
export declare class ExternalApiRpcClient implements IExternalApiRpcClient, ServiceInfo {
|
|
315
315
|
private readonly _transport;
|
|
316
316
|
typeName: string;
|
|
317
317
|
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
|
|
@@ -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.RecursiveFindSessionServiceClient = exports.StoreRpcClient = exports.RouterRpcClient = exports.DhtRpcServiceClient = 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
|
|
@@ -47,14 +47,14 @@ class DhtRpcServiceClient {
|
|
|
47
47
|
}
|
|
48
48
|
exports.DhtRpcServiceClient = DhtRpcServiceClient;
|
|
49
49
|
/**
|
|
50
|
-
* @generated from protobuf service dht.
|
|
50
|
+
* @generated from protobuf service dht.RouterRpc
|
|
51
51
|
*/
|
|
52
|
-
class
|
|
52
|
+
class RouterRpcClient {
|
|
53
53
|
constructor(_transport) {
|
|
54
54
|
this._transport = _transport;
|
|
55
|
-
this.typeName = DhtRpc_7.
|
|
56
|
-
this.methods = DhtRpc_7.
|
|
57
|
-
this.options = DhtRpc_7.
|
|
55
|
+
this.typeName = DhtRpc_7.RouterRpc.typeName;
|
|
56
|
+
this.methods = DhtRpc_7.RouterRpc.methods;
|
|
57
|
+
this.options = DhtRpc_7.RouterRpc.options;
|
|
58
58
|
}
|
|
59
59
|
/**
|
|
60
60
|
* @generated from protobuf rpc: routeMessage(dht.RouteMessageWrapper) returns (dht.RouteMessageAck);
|
|
@@ -78,16 +78,16 @@ class RoutingServiceClient {
|
|
|
78
78
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
-
exports.
|
|
81
|
+
exports.RouterRpcClient = RouterRpcClient;
|
|
82
82
|
/**
|
|
83
|
-
* @generated from protobuf service dht.
|
|
83
|
+
* @generated from protobuf service dht.StoreRpc
|
|
84
84
|
*/
|
|
85
|
-
class
|
|
85
|
+
class StoreRpcClient {
|
|
86
86
|
constructor(_transport) {
|
|
87
87
|
this._transport = _transport;
|
|
88
|
-
this.typeName = DhtRpc_6.
|
|
89
|
-
this.methods = DhtRpc_6.
|
|
90
|
-
this.options = DhtRpc_6.
|
|
88
|
+
this.typeName = DhtRpc_6.StoreRpc.typeName;
|
|
89
|
+
this.methods = DhtRpc_6.StoreRpc.methods;
|
|
90
|
+
this.options = DhtRpc_6.StoreRpc.options;
|
|
91
91
|
}
|
|
92
92
|
/**
|
|
93
93
|
* @generated from protobuf rpc: storeData(dht.StoreDataRequest) returns (dht.StoreDataResponse);
|
|
@@ -111,7 +111,7 @@ class StoreServiceClient {
|
|
|
111
111
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
|
-
exports.
|
|
114
|
+
exports.StoreRpcClient = StoreRpcClient;
|
|
115
115
|
/**
|
|
116
116
|
* @generated from protobuf service dht.RecursiveFindSessionService
|
|
117
117
|
*/
|
|
@@ -123,23 +123,23 @@ class RecursiveFindSessionServiceClient {
|
|
|
123
123
|
this.options = DhtRpc_5.RecursiveFindSessionService.options;
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
|
-
* @generated from protobuf rpc:
|
|
126
|
+
* @generated from protobuf rpc: sendFindResponse(dht.FindResponse) returns (google.protobuf.Empty);
|
|
127
127
|
*/
|
|
128
|
-
|
|
128
|
+
sendFindResponse(input, options) {
|
|
129
129
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
130
130
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
exports.RecursiveFindSessionServiceClient = RecursiveFindSessionServiceClient;
|
|
134
134
|
/**
|
|
135
|
-
* @generated from protobuf service dht.
|
|
135
|
+
* @generated from protobuf service dht.WebSocketConnectorRpc
|
|
136
136
|
*/
|
|
137
|
-
class
|
|
137
|
+
class WebSocketConnectorRpcClient {
|
|
138
138
|
constructor(_transport) {
|
|
139
139
|
this._transport = _transport;
|
|
140
|
-
this.typeName = DhtRpc_4.
|
|
141
|
-
this.methods = DhtRpc_4.
|
|
142
|
-
this.options = DhtRpc_4.
|
|
140
|
+
this.typeName = DhtRpc_4.WebSocketConnectorRpc.typeName;
|
|
141
|
+
this.methods = DhtRpc_4.WebSocketConnectorRpc.methods;
|
|
142
|
+
this.options = DhtRpc_4.WebSocketConnectorRpc.options;
|
|
143
143
|
}
|
|
144
144
|
/**
|
|
145
145
|
* @generated from protobuf rpc: requestConnection(dht.WebSocketConnectionRequest) returns (dht.WebSocketConnectionResponse);
|
|
@@ -149,16 +149,16 @@ class WebSocketConnectorServiceClient {
|
|
|
149
149
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
|
-
exports.
|
|
152
|
+
exports.WebSocketConnectorRpcClient = WebSocketConnectorRpcClient;
|
|
153
153
|
/**
|
|
154
|
-
* @generated from protobuf service dht.
|
|
154
|
+
* @generated from protobuf service dht.WebRtcConnectorRpc
|
|
155
155
|
*/
|
|
156
|
-
class
|
|
156
|
+
class WebRtcConnectorRpcClient {
|
|
157
157
|
constructor(_transport) {
|
|
158
158
|
this._transport = _transport;
|
|
159
|
-
this.typeName = DhtRpc_3.
|
|
160
|
-
this.methods = DhtRpc_3.
|
|
161
|
-
this.options = DhtRpc_3.
|
|
159
|
+
this.typeName = DhtRpc_3.WebRtcConnectorRpc.typeName;
|
|
160
|
+
this.methods = DhtRpc_3.WebRtcConnectorRpc.methods;
|
|
161
|
+
this.options = DhtRpc_3.WebRtcConnectorRpc.options;
|
|
162
162
|
}
|
|
163
163
|
/**
|
|
164
164
|
* @generated from protobuf rpc: requestConnection(dht.WebRtcConnectionRequest) returns (google.protobuf.Empty);
|
|
@@ -189,16 +189,16 @@ class WebRtcConnectorServiceClient {
|
|
|
189
189
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
|
-
exports.
|
|
192
|
+
exports.WebRtcConnectorRpcClient = WebRtcConnectorRpcClient;
|
|
193
193
|
/**
|
|
194
|
-
* @generated from protobuf service dht.
|
|
194
|
+
* @generated from protobuf service dht.ConnectionLockRpc
|
|
195
195
|
*/
|
|
196
|
-
class
|
|
196
|
+
class ConnectionLockRpcClient {
|
|
197
197
|
constructor(_transport) {
|
|
198
198
|
this._transport = _transport;
|
|
199
|
-
this.typeName = DhtRpc_2.
|
|
200
|
-
this.methods = DhtRpc_2.
|
|
201
|
-
this.options = DhtRpc_2.
|
|
199
|
+
this.typeName = DhtRpc_2.ConnectionLockRpc.typeName;
|
|
200
|
+
this.methods = DhtRpc_2.ConnectionLockRpc.methods;
|
|
201
|
+
this.options = DhtRpc_2.ConnectionLockRpc.options;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* @generated from protobuf rpc: lockRequest(dht.LockRequest) returns (dht.LockResponse);
|
|
@@ -222,16 +222,16 @@ class ConnectionLockerClient {
|
|
|
222
222
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
|
-
exports.
|
|
225
|
+
exports.ConnectionLockRpcClient = ConnectionLockRpcClient;
|
|
226
226
|
/**
|
|
227
|
-
* @generated from protobuf service dht.
|
|
227
|
+
* @generated from protobuf service dht.ExternalApiRpc
|
|
228
228
|
*/
|
|
229
|
-
class
|
|
229
|
+
class ExternalApiRpcClient {
|
|
230
230
|
constructor(_transport) {
|
|
231
231
|
this._transport = _transport;
|
|
232
|
-
this.typeName = DhtRpc_1.
|
|
233
|
-
this.methods = DhtRpc_1.
|
|
234
|
-
this.options = DhtRpc_1.
|
|
232
|
+
this.typeName = DhtRpc_1.ExternalApiRpc.typeName;
|
|
233
|
+
this.methods = DhtRpc_1.ExternalApiRpc.methods;
|
|
234
|
+
this.options = DhtRpc_1.ExternalApiRpc.options;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
237
|
* @generated from protobuf rpc: findData(dht.FindDataRequest) returns (dht.FindDataResponse);
|
|
@@ -248,5 +248,5 @@ class ExternalApiServiceClient {
|
|
|
248
248
|
return (0, runtime_rpc_1.stackIntercept)("unary", this._transport, method, opt, input);
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
|
-
exports.
|
|
251
|
+
exports.ExternalApiRpcClient = ExternalApiRpcClient;
|
|
252
252
|
//# 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,
|
|
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,qCAA0C;AAK1C,qCAA6C;AAM7C,qCAA8C;AAK9C,qCAAiD;AAGjD,qCAAuD;AAEvD,qCAAoC;AAOpC,qCAAqC;AAKrC,qCAAyC;AAKzC,0DAA0D;AAsB1D;;GAEG;AACH,MAAa,mBAAmB;IAI5B,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,sBAAa,CAAC,QAAQ,CAAC;QAClC,YAAO,GAAG,sBAAa,CAAC,OAAO,CAAC;QAChC,YAAO,GAAG,sBAAa,CAAC,OAAO,CAAC;IAEhC,CAAC;IACD;;OAEG;IACH,eAAe,CAAC,KAA0B,EAAE,OAAoB;QAC5D,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAA4C,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACnH,CAAC;IACD;;OAEG;IACH,IAAI,CAAC,KAAkB,EAAE,OAAoB;QACzC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAA4B,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACnG,CAAC;IACD;;OAEG;IACH,WAAW,CAAC,KAAkB,EAAE,OAAoB;QAChD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAqB,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC5F,CAAC;CACJ;AA3BD,kDA2BC;AAkBD;;GAEG;AACH,MAAa,eAAe;IAIxB,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,kBAAS,CAAC,QAAQ,CAAC;QAC9B,YAAO,GAAG,kBAAS,CAAC,OAAO,CAAC;QAC5B,YAAO,GAAG,kBAAS,CAAC,OAAO,CAAC;IAE5B,CAAC;IACD;;OAEG;IACH,YAAY,CAAC,KAA0B,EAAE,OAAoB;QACzD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAuC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC9G,CAAC;IACD;;OAEG;IACH,cAAc,CAAC,KAA0B,EAAE,OAAoB;QAC3D,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAuC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC9G,CAAC;IACD;;OAEG;IACH,eAAe,CAAC,KAA0B,EAAE,OAAoB;QAC5D,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAuC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC9G,CAAC;CACJ;AA3BD,0CA2BC;AAkBD;;GAEG;AACH,MAAa,cAAc;IAIvB,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,iBAAQ,CAAC,QAAQ,CAAC;QAC7B,YAAO,GAAG,iBAAQ,CAAC,OAAO,CAAC;QAC3B,YAAO,GAAG,iBAAQ,CAAC,OAAO,CAAC;IAE3B,CAAC;IACD;;OAEG;IACH,SAAS,CAAC,KAAuB,EAAE,OAAoB;QACnD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAsC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC7G,CAAC;IACD;;OAEG;IACH,WAAW,CAAC,KAAyB,EAAE,OAAoB;QACvD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAA0C,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACjH,CAAC;IACD;;OAEG;IACH,UAAU,CAAC,KAAwB,EAAE,OAAoB;QACrD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAwC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC/G,CAAC;CACJ;AA3BD,wCA2BC;AAUD;;GAEG;AACH,MAAa,iCAAiC;IAI1C,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,oCAA2B,CAAC,QAAQ,CAAC;QAChD,YAAO,GAAG,oCAA2B,CAAC,OAAO,CAAC;QAC9C,YAAO,GAAG,oCAA2B,CAAC,OAAO,CAAC;IAE9C,CAAC;IACD;;OAEG;IACH,gBAAgB,CAAC,KAAmB,EAAE,OAAoB;QACtD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAsB,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC7F,CAAC;CACJ;AAbD,8EAaC;AAUD;;GAEG;AACH,MAAa,2BAA2B;IAIpC,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,8BAAqB,CAAC,QAAQ,CAAC;QAC1C,YAAO,GAAG,8BAAqB,CAAC,OAAO,CAAC;QACxC,YAAO,GAAG,8BAAqB,CAAC,OAAO,CAAC;IAExC,CAAC;IACD;;OAEG;IACH,iBAAiB,CAAC,KAAiC,EAAE,OAAoB;QACrE,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAA0D,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACjI,CAAC;CACJ;AAbD,kEAaC;AAsBD;;GAEG;AACH,MAAa,wBAAwB;IAIjC,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,2BAAkB,CAAC,QAAQ,CAAC;QACvC,YAAO,GAAG,2BAAkB,CAAC,OAAO,CAAC;QACrC,YAAO,GAAG,2BAAkB,CAAC,OAAO,CAAC;IAErC,CAAC;IACD;;OAEG;IACH,iBAAiB,CAAC,KAA8B,EAAE,OAAoB;QAClE,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAiC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACxG,CAAC;IACD;;OAEG;IACH,QAAQ,CAAC,KAAe,EAAE,OAAoB;QAC1C,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAkB,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACzF,CAAC;IACD;;OAEG;IACH,SAAS,CAAC,KAAgB,EAAE,OAAoB;QAC5C,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAmB,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC1F,CAAC;IACD;;OAEG;IACH,YAAY,CAAC,KAAmB,EAAE,OAAoB;QAClD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAsB,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC7F,CAAC;CACJ;AAlCD,4DAkCC;AAkBD;;GAEG;AACH,MAAa,uBAAuB;IAIhC,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,0BAAiB,CAAC,QAAQ,CAAC;QACtC,YAAO,GAAG,0BAAiB,CAAC,OAAO,CAAC;QACpC,YAAO,GAAG,0BAAiB,CAAC,OAAO,CAAC;IAEpC,CAAC;IACD;;OAEG;IACH,WAAW,CAAC,KAAkB,EAAE,OAAoB;QAChD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAA4B,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACnG,CAAC;IACD;;OAEG;IACH,aAAa,CAAC,KAAoB,EAAE,OAAoB;QACpD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAuB,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC9F,CAAC;IACD;;OAEG;IACH,kBAAkB,CAAC,KAAuB,EAAE,OAAoB;QAC5D,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAA6C,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IACpH,CAAC;CACJ;AA3BD,0DA2BC;AAcD;;GAEG;AACH,MAAa,oBAAoB;IAI7B,YAA6B,UAAwB;QAAxB,eAAU,GAAV,UAAU,CAAc;QAHrD,aAAQ,GAAG,uBAAc,CAAC,QAAQ,CAAC;QACnC,YAAO,GAAG,uBAAc,CAAC,OAAO,CAAC;QACjC,YAAO,GAAG,uBAAc,CAAC,OAAO,CAAC;IAEjC,CAAC;IACD;;OAEG;IACH,QAAQ,CAAC,KAAsB,EAAE,OAAoB;QACjD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAoC,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC3G,CAAC;IACD;;OAEG;IACH,iBAAiB,CAAC,KAA+B,EAAE,OAAoB;QACnE,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5E,OAAO,IAAA,4BAAc,EAAsD,OAAO,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;IAC7H,CAAC;CACJ;AApBD,oDAoBC"}
|