@dxos/client 2.25.1-dev.0ff9b5c9 → 2.25.1-dev.88f8e6d3
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/api/echo-proxy.js +6 -6
- package/dist/src/api/halo-proxy.js +10 -10
- package/dist/src/api/party-proxy.js +5 -5
- package/dist/src/client/client-services.test.js +5 -5
- package/dist/src/client/client.js +1 -1
- package/dist/src/client/service-host/services/halo.d.ts +3 -3
- package/dist/src/client/service-host/services/halo.js +3 -3
- package/dist/src/client/service-host/services/party.d.ts +10 -10
- package/dist/src/client/service-host/services/party.js +10 -10
- package/dist/src/client/service-host/services/profile.d.ts +6 -6
- package/dist/src/client/service-host/services/profile.js +6 -6
- package/dist/src/client/service-host/services/services.js +2 -2
- package/dist/src/client/service-host/services/system.js +2 -2
- package/dist/src/devtools/devtools-host.js +19 -19
- package/dist/src/proto/gen/dxos/client.d.ts +21 -21
- package/dist/src/proto/gen/dxos/devtools.d.ts +21 -21
- package/dist/src/proto/gen/dxos/echo/service.d.ts +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -17
- package/src/api/echo-proxy.ts +6 -6
- package/src/api/halo-proxy.ts +10 -10
- package/src/api/party-proxy.ts +5 -5
- package/src/client/client-services.test.ts +5 -5
- package/src/client/client.ts +1 -1
- package/src/client/service-host/services/halo.ts +3 -3
- package/src/client/service-host/services/party.ts +10 -10
- package/src/client/service-host/services/profile.ts +6 -6
- package/src/client/service-host/services/services.ts +2 -2
- package/src/client/service-host/services/system.ts +2 -2
- package/src/devtools/devtools-host.ts +19 -19
- package/src/proto/gen/dxos/client.ts +21 -21
- package/src/proto/gen/dxos/devtools.ts +21 -21
- package/src/proto/gen/dxos/echo/service.ts +3 -3
|
@@ -6,25 +6,25 @@ import * as dxos_echo_snapshot from "./echo/snapshot";
|
|
|
6
6
|
import * as dxos_halo_keys from "./halo/keys";
|
|
7
7
|
import * as dxos_rpc from "./rpc";
|
|
8
8
|
export interface DevtoolsHost {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
9
|
+
events: (request: void) => Stream<Event>;
|
|
10
|
+
getConfig: (request: void) => Promise<GetConfigResponse>;
|
|
11
|
+
resetStorage: (request: ResetStorageRequest) => Promise<void>;
|
|
12
|
+
enableDebugLogging: (request: EnableDebugLoggingRequest) => Promise<EnableDebugLoggingResponse>;
|
|
13
|
+
disableDebugLogging: (request: EnableDebugLoggingRequest) => Promise<EnableDebugLoggingResponse>;
|
|
14
|
+
subscribeToKeyringKeys: (request: SubscribeToKeyringKeysRequest) => Stream<SubscribeToKeyringKeysResponse>;
|
|
15
|
+
subscribeToCredentialMessages: (request: SubscribeToCredentialMessagesRequest) => Stream<SubscribeToCredentialMessagesResponse>;
|
|
16
|
+
subscribeToParties: (request: SubscribeToPartiesRequest) => Stream<SubscribeToPartiesResponse>;
|
|
17
|
+
subscribeToItems: (request: SubscribeToItemsRequest) => Stream<SubscribeToItemsResponse>;
|
|
18
|
+
subscribeToFeeds: (request: SubscribeToFeedsRequest) => Stream<SubscribeToFeedsResponse>;
|
|
19
|
+
subscribeToFeed: (request: SubscribeToFeedRequest) => Stream<SubscribeToFeedResponse>;
|
|
20
|
+
getPartySnapshot: (request: GetPartySnapshotRequest) => Promise<GetPartySnapshotResponse>;
|
|
21
|
+
savePartySnapshot: (request: SavePartySnapshotRequest) => Promise<SavePartySnapshotResponse>;
|
|
22
|
+
clearSnapshots: (request: ClearSnapshotsRequest) => Promise<void>;
|
|
23
|
+
getNetworkPeers: (request: GetNetworkPeersRequest) => Promise<GetNetworkPeersResponse>;
|
|
24
|
+
subscribeToNetworkTopics: (request: void) => Stream<SubscribeToNetworkTopicsResponse>;
|
|
25
|
+
subscribeToSignalStatus: (request: void) => Stream<SubscribeToSignalStatusResponse>;
|
|
26
|
+
subscribeToSignalTrace: (request: void) => Stream<SubscribeToSignalTraceResponse>;
|
|
27
|
+
subscribeToSwarmInfo: (request: SubscribeToSwarmInfoRequest) => Stream<SubscribeToSwarmInfoResponse>;
|
|
28
28
|
}
|
|
29
29
|
export interface Event {
|
|
30
30
|
ready?: ReadyEvent;
|
|
@@ -191,7 +191,7 @@ export interface SetTracingOptionsRequest {
|
|
|
191
191
|
enable?: boolean;
|
|
192
192
|
}
|
|
193
193
|
export interface TracingService {
|
|
194
|
-
|
|
195
|
-
|
|
194
|
+
setTracingOptions: (request: SetTracingOptionsRequest) => Promise<void>;
|
|
195
|
+
subscribeToRpcTrace: (request: void) => Stream<dxos_rpc.RpcMessage>;
|
|
196
196
|
}
|
|
197
197
|
//# sourceMappingURL=devtools.d.ts.map
|
|
@@ -39,8 +39,8 @@ export interface MutationReceipt {
|
|
|
39
39
|
seq?: number;
|
|
40
40
|
}
|
|
41
41
|
export interface DataService {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
subscribeEntitySet: (request: SubscribeEntitySetRequest) => Stream<SubscribeEntitySetResponse>;
|
|
43
|
+
subscribeEntityStream: (request: SubscribeEntityStreamRequest) => Stream<SubscribeEntityStreamResponse>;
|
|
44
|
+
write: (request: WriteRequest) => Promise<MutationReceipt>;
|
|
45
45
|
}
|
|
46
46
|
//# sourceMappingURL=service.d.ts.map
|