@formant/realtime-sdk 0.0.20 → 1.0.0
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/LICENSE.txt +19 -0
- package/README.md +43 -0
- package/dist/{common → client}/Credentials.d.ts +1 -1
- package/dist/common/BaseClient.d.ts +4 -3
- package/dist/common/LogReporter.d.ts +1 -3
- package/dist/common/LruCache.d.ts +1 -1
- package/dist/common/PromiseLruCache.d.ts +1 -1
- package/dist/common/ResponseError.d.ts +3 -2
- package/dist/common/StatsManager.d.ts +1 -1
- package/dist/common/StatsReporter.d.ts +7 -6
- package/dist/common/config/index.d.ts +1 -1
- package/dist/common/defined.d.ts +3 -0
- package/dist/common/delay.d.ts +1 -1
- package/dist/common/redact.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/model/AnnotationAreaType.d.ts +1 -1
- package/dist/model/CognitoRegion.d.ts +1 -1
- package/dist/model/Feature.d.ts +2 -2
- package/dist/model/HealthStatus.d.ts +1 -1
- package/dist/model/HexRgbColor.d.ts +1 -1
- package/dist/model/IDictionary.d.ts +3 -0
- package/dist/model/IFilter.d.ts +1 -1
- package/dist/model/IPoint.d.ts +1 -1
- package/dist/model/IRtcSession.d.ts +1 -1
- package/dist/model/ITags.d.ts +2 -3
- package/dist/model/IUser.d.ts +10 -4
- package/dist/model/IUserScope.d.ts +16 -0
- package/dist/model/IsoDate.d.ts +1 -1
- package/dist/model/LanguageType.d.ts +2 -0
- package/dist/model/LogLevel.d.ts +1 -1
- package/dist/model/Marker3DAction.d.ts +1 -1
- package/dist/model/Marker3DType.d.ts +1 -1
- package/dist/model/OrganizationPlan.d.ts +1 -1
- package/dist/model/RequireKeys.d.ts +3 -0
- package/dist/model/RtcConnectionStatus.d.ts +1 -1
- package/dist/model/RtcIceServerProtocol.d.ts +1 -1
- package/dist/model/RtcIceTransportPolicy.d.ts +1 -1
- package/dist/model/RtcStreamType.d.ts +2 -2
- package/dist/model/SmsOptInStatus.d.ts +2 -0
- package/dist/model/StreamType.d.ts +1 -1
- package/dist/model/Timeout.d.ts +1 -1
- package/dist/model/Timestamp.d.ts +1 -1
- package/dist/model/Uuid.d.ts +1 -1
- package/dist/model/VideoMimeType.d.ts +1 -1
- package/dist/model/cognitoRegions.d.ts +1 -1
- package/dist/model/healthStatuses.d.ts +1 -1
- package/dist/model/languageTypes.d.ts +1 -0
- package/dist/model/rtcStreamTypes.d.ts +2 -1
- package/dist/model/smsOptInStatuses.d.ts +1 -0
- package/dist/protos/api/signaling/v1/signaling_grpc_web_pb.d.ts +47 -47
- package/dist/protos/api/signaling/v1/signaling_grpc_web_pb.js +27 -175
- package/dist/protos/api/signaling/v1/signaling_pb.js +7 -1
- package/dist/realtime-sdk/src/index.d.ts +10 -10
- package/dist/rtc-client/IHasPeerConnection.d.ts +3 -0
- package/dist/rtc-client/IHasRemoteDeviceId.d.ts +4 -0
- package/dist/rtc-client/RtcClient.d.ts +3 -1
- package/dist/rtc-client/RtcConnection.d.ts +18 -14
- package/dist/rtc-client/RtcConnectionV1.d.ts +2 -1
- package/dist/rtc-client/RtcSessionMetrics.d.ts +5 -4
- package/dist/rtc-client/RtcSessionMetricsV1.d.ts +8 -6
- package/dist/rtc-client/gatherPingMetrics.d.ts +2 -2
- package/dist/rtc-client/models/IIceMode.d.ts +1 -1
- package/dist/rtc-client/models/IRtcClientConfiguration.d.ts +1 -1
- package/dist/rtc-client/models/IRtcConnectionConfiguration.d.ts +1 -1
- package/dist/rtc-client/models/IRtcStreamPayload.d.ts +2 -0
- package/dist/rtc-client/models/IStreamControl.d.ts +1 -1
- package/dist/rtc-client/models/RtcChannelLabel.d.ts +1 -1
- package/dist/rtc-client/models/RtcCommunicationType.d.ts +1 -1
- package/dist/rtc-client/utils/assertHasPeerConnection.d.ts +1 -0
- package/dist/rtc-client/utils/partition.d.ts +1 -0
- package/dist/ui/utils/browser.d.ts +1 -1
- package/package.json +3 -3
- package/dist/model/IAccessScope.d.ts +0 -5
- package/dist/protos/api/signaling/v1/signaling_grpc_pb.js +0 -276
- package/dist/version.txt +0 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IAnnotationAreaTypeMap } from "./IAnnotationAreaTypeMap";
|
|
2
|
-
export
|
|
2
|
+
export type AnnotationAreaType = keyof IAnnotationAreaTypeMap;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { cognitoRegions } from "./cognitoRegions";
|
|
2
|
-
export
|
|
2
|
+
export type CognitoRegion = (typeof cognitoRegions)[number];
|
package/dist/model/Feature.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { agentFeatures, features } from "./features";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
2
|
+
export type Feature = (typeof features)[number];
|
|
3
|
+
export type AgentFeature = (typeof agentFeatures)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { healthStatuses } from "./healthStatuses";
|
|
2
|
-
export
|
|
2
|
+
export type HealthStatus = (typeof healthStatuses)[number];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type HexRgbColor = string;
|
package/dist/model/IFilter.d.ts
CHANGED
package/dist/model/IPoint.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IVector3 } from "./IVector3";
|
|
2
|
-
export
|
|
2
|
+
export type IPoint = IVector3;
|
package/dist/model/ITags.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
}
|
|
1
|
+
import { IDictionary } from "./IDictionary";
|
|
2
|
+
export type ITags = IDictionary;
|
package/dist/model/IUser.d.ts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import { CognitoRegion } from "./CognitoRegion";
|
|
2
|
-
import { IAccessScope } from "./IAccessScope";
|
|
3
2
|
import { IsoDate } from "./IsoDate";
|
|
4
3
|
import { ITaggedEntity } from "./ITaggedEntity";
|
|
4
|
+
import { IUserScope } from "./IUserScope";
|
|
5
|
+
import { LanguageType } from "./LanguageType";
|
|
6
|
+
import { SmsOptInStatus } from "./SmsOptInStatus";
|
|
5
7
|
import { Uuid } from "./Uuid";
|
|
6
8
|
export interface IUser extends ITaggedEntity {
|
|
7
9
|
organizationId?: Uuid;
|
|
10
|
+
accountId?: Uuid | null;
|
|
11
|
+
roleId: Uuid | null;
|
|
8
12
|
email?: string;
|
|
9
13
|
firstName?: string;
|
|
10
14
|
lastName?: string;
|
|
11
|
-
scope?:
|
|
12
|
-
roleId: Uuid;
|
|
15
|
+
scope?: IUserScope | null;
|
|
13
16
|
teamId?: Uuid | null;
|
|
17
|
+
eventTriggerGroupId?: Uuid | null;
|
|
14
18
|
phoneNumber?: string;
|
|
15
19
|
enabled?: boolean;
|
|
16
20
|
isOrganizationOwner?: boolean;
|
|
@@ -19,9 +23,11 @@ export interface IUser extends ITaggedEntity {
|
|
|
19
23
|
passwordHash?: string | null;
|
|
20
24
|
isSingleSignOn?: boolean;
|
|
21
25
|
isServiceAccount?: boolean;
|
|
26
|
+
smsOptInStatus?: SmsOptInStatus | null;
|
|
22
27
|
region: CognitoRegion;
|
|
23
28
|
jobTitle?: string;
|
|
24
|
-
language?:
|
|
29
|
+
language?: LanguageType;
|
|
25
30
|
units?: string;
|
|
26
31
|
timezone?: string;
|
|
32
|
+
allowCustomEmailConfiguration?: boolean;
|
|
27
33
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IScopeFilter } from "./IScopeFilter";
|
|
2
|
+
import { RequireKeys } from "./RequireKeys";
|
|
3
|
+
export interface IUserResourceScope {
|
|
4
|
+
roles?: IScopeFilter;
|
|
5
|
+
users?: IScopeFilter;
|
|
6
|
+
teams?: IScopeFilter;
|
|
7
|
+
devices?: IScopeFilter;
|
|
8
|
+
fleets?: IScopeFilter;
|
|
9
|
+
events?: IScopeFilter;
|
|
10
|
+
views?: IScopeFilter;
|
|
11
|
+
keyValue?: IScopeFilter;
|
|
12
|
+
}
|
|
13
|
+
export interface IUserScope extends IScopeFilter, IUserResourceScope {
|
|
14
|
+
}
|
|
15
|
+
export type IFullUserScope = IScopeFilter & RequireKeys<IUserResourceScope>;
|
|
16
|
+
export declare const fullAccessUserScope: IFullUserScope;
|
package/dist/model/IsoDate.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type IsoDate = string;
|
package/dist/model/LogLevel.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { logLevels } from "./logLevels";
|
|
2
|
-
export
|
|
2
|
+
export type LogLevel = (typeof logLevels)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { marker3DActions } from "./marker3DActions";
|
|
2
|
-
export
|
|
2
|
+
export type Marker3DAction = (typeof marker3DActions)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { marker3DTypes } from "./marker3DTypes";
|
|
2
|
-
export
|
|
2
|
+
export type Marker3DType = (typeof marker3DTypes)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { organizationPlans } from "./organizationPlans";
|
|
2
|
-
export
|
|
2
|
+
export type OrganizationPlan = (typeof organizationPlans)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { rtcConnectionStatuses } from "./rtcConnectionStatuses";
|
|
2
|
-
export
|
|
2
|
+
export type RtcConnectionStatus = (typeof rtcConnectionStatuses)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { rtcIceServerProtocols } from "./rtcIceServerProtocols";
|
|
2
|
-
export
|
|
2
|
+
export type RtcIceServerProtocol = (typeof rtcIceServerProtocols)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { rtcIceTransportPolicies } from "./rtcIceTransportPolicies";
|
|
2
|
-
export
|
|
2
|
+
export type RtcIceTransportPolicy = (typeof rtcIceTransportPolicies)[number];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { rtcImageStreamTypes, rtcStreamTypes } from "./rtcStreamTypes";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
2
|
+
export type RtcStreamType = (typeof rtcStreamTypes)[number];
|
|
3
|
+
export type RtcImageStreamType = (typeof rtcImageStreamTypes)[number];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IStreamTypeMap } from "./IStreamTypeMap";
|
|
2
|
-
export
|
|
2
|
+
export type StreamType = keyof IStreamTypeMap;
|
package/dist/model/Timeout.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Timeout = ReturnType<typeof setTimeout>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Timestamp = number;
|
package/dist/model/Uuid.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Uuid = string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { videoMimeTypes } from "./videoMimeTypes";
|
|
2
|
-
export
|
|
2
|
+
export type VideoMimeType = (typeof videoMimeTypes)[number];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const cognitoRegions: readonly ["AMER", "EMEA"];
|
|
1
|
+
export declare const cognitoRegions: readonly ["AMER", "EMEA", "JAPAC"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const healthStatuses: readonly ["unknown", "operational", "offline", "error"];
|
|
2
|
-
|
|
2
|
+
type HealthStatus = (typeof healthStatuses)[number];
|
|
3
3
|
export declare function healthStatusToOrdinal(a: HealthStatus): number;
|
|
4
4
|
export declare function ordinalToHealthStatus(a: number): HealthStatus;
|
|
5
5
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const languageTypes: readonly ["en-US", "fr-CA"];
|
|
@@ -20,6 +20,7 @@ export declare const rtcPointCloudStreamType: "point-cloud";
|
|
|
20
20
|
export declare const rtcMarkerArrayStreamType: "marker-array";
|
|
21
21
|
export declare const rtcPointStreamType: "point";
|
|
22
22
|
export declare const rtcJsonStringType: "json-string";
|
|
23
|
-
export declare const
|
|
23
|
+
export declare const rtcOdometryStreamType: "odometry";
|
|
24
|
+
export declare const rtcStreamTypes: readonly ["ping", "pong", "ping-v2", "pong-v2", "stream-control", "streams-info", "agent-info", "numeric", "boolean", "bitset", "twist", "compressed-image", "h264-video-frame", "audio-chunk", "pose", "goal-id", "joint-state", "pose-with-covariance", "point-cloud", "point", "marker-array", "json-string", "odometry"];
|
|
24
25
|
export declare const rtcImageStreamTypes: string[];
|
|
25
26
|
export declare const rtcSystemStreamTypes: string[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const smsOptInStatuses: readonly ["OPT_IN", "OPT_OUT"];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as grpcWeb from 'grpc-web';
|
|
2
2
|
|
|
3
|
-
import * as
|
|
3
|
+
import * as api_signaling_v1_signaling_pb from '../../../api/signaling/v1/signaling_pb';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
export class SignalingClient {
|
|
@@ -9,58 +9,58 @@ export class SignalingClient {
|
|
|
9
9
|
options?: null | { [index: string]: any; });
|
|
10
10
|
|
|
11
11
|
getHealth(
|
|
12
|
-
request:
|
|
12
|
+
request: api_signaling_v1_signaling_pb.GetHealthRequest,
|
|
13
13
|
metadata: grpcWeb.Metadata | undefined,
|
|
14
|
-
callback: (err: grpcWeb.
|
|
15
|
-
response:
|
|
16
|
-
): grpcWeb.ClientReadableStream<
|
|
14
|
+
callback: (err: grpcWeb.RpcError,
|
|
15
|
+
response: api_signaling_v1_signaling_pb.GetHealthResponse) => void
|
|
16
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.GetHealthResponse>;
|
|
17
17
|
|
|
18
18
|
createPeer(
|
|
19
|
-
request:
|
|
19
|
+
request: api_signaling_v1_signaling_pb.CreatePeerRequest,
|
|
20
20
|
metadata: grpcWeb.Metadata | undefined,
|
|
21
|
-
callback: (err: grpcWeb.
|
|
22
|
-
response:
|
|
23
|
-
): grpcWeb.ClientReadableStream<
|
|
21
|
+
callback: (err: grpcWeb.RpcError,
|
|
22
|
+
response: api_signaling_v1_signaling_pb.CreatePeerResponse) => void
|
|
23
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.CreatePeerResponse>;
|
|
24
24
|
|
|
25
25
|
deletePeer(
|
|
26
|
-
request:
|
|
26
|
+
request: api_signaling_v1_signaling_pb.DeletePeerRequest,
|
|
27
27
|
metadata: grpcWeb.Metadata | undefined,
|
|
28
|
-
callback: (err: grpcWeb.
|
|
29
|
-
response:
|
|
30
|
-
): grpcWeb.ClientReadableStream<
|
|
28
|
+
callback: (err: grpcWeb.RpcError,
|
|
29
|
+
response: api_signaling_v1_signaling_pb.DeletePeerResponse) => void
|
|
30
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.DeletePeerResponse>;
|
|
31
31
|
|
|
32
32
|
refreshPeer(
|
|
33
|
-
request:
|
|
33
|
+
request: api_signaling_v1_signaling_pb.RefreshPeerRequest,
|
|
34
34
|
metadata: grpcWeb.Metadata | undefined,
|
|
35
|
-
callback: (err: grpcWeb.
|
|
36
|
-
response:
|
|
37
|
-
): grpcWeb.ClientReadableStream<
|
|
35
|
+
callback: (err: grpcWeb.RpcError,
|
|
36
|
+
response: api_signaling_v1_signaling_pb.RefreshPeerResponse) => void
|
|
37
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.RefreshPeerResponse>;
|
|
38
38
|
|
|
39
39
|
getPeers(
|
|
40
|
-
request:
|
|
40
|
+
request: api_signaling_v1_signaling_pb.GetPeersRequest,
|
|
41
41
|
metadata: grpcWeb.Metadata | undefined,
|
|
42
|
-
callback: (err: grpcWeb.
|
|
43
|
-
response:
|
|
44
|
-
): grpcWeb.ClientReadableStream<
|
|
42
|
+
callback: (err: grpcWeb.RpcError,
|
|
43
|
+
response: api_signaling_v1_signaling_pb.GetPeersResponse) => void
|
|
44
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.GetPeersResponse>;
|
|
45
45
|
|
|
46
46
|
getIceServers(
|
|
47
|
-
request:
|
|
47
|
+
request: api_signaling_v1_signaling_pb.GetIceServersRequest,
|
|
48
48
|
metadata: grpcWeb.Metadata | undefined,
|
|
49
|
-
callback: (err: grpcWeb.
|
|
50
|
-
response:
|
|
51
|
-
): grpcWeb.ClientReadableStream<
|
|
49
|
+
callback: (err: grpcWeb.RpcError,
|
|
50
|
+
response: api_signaling_v1_signaling_pb.GetIceServersResponse) => void
|
|
51
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.GetIceServersResponse>;
|
|
52
52
|
|
|
53
53
|
sendSignal(
|
|
54
|
-
request:
|
|
54
|
+
request: api_signaling_v1_signaling_pb.SendSignalRequest,
|
|
55
55
|
metadata: grpcWeb.Metadata | undefined,
|
|
56
|
-
callback: (err: grpcWeb.
|
|
57
|
-
response:
|
|
58
|
-
): grpcWeb.ClientReadableStream<
|
|
56
|
+
callback: (err: grpcWeb.RpcError,
|
|
57
|
+
response: api_signaling_v1_signaling_pb.SendSignalResponse) => void
|
|
58
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.SendSignalResponse>;
|
|
59
59
|
|
|
60
60
|
receiveSignalStream(
|
|
61
|
-
request:
|
|
61
|
+
request: api_signaling_v1_signaling_pb.ReceiveSignalStreamRequest,
|
|
62
62
|
metadata?: grpcWeb.Metadata
|
|
63
|
-
): grpcWeb.ClientReadableStream<
|
|
63
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.ReceiveSignalStreamResponse>;
|
|
64
64
|
|
|
65
65
|
}
|
|
66
66
|
|
|
@@ -70,44 +70,44 @@ export class SignalingPromiseClient {
|
|
|
70
70
|
options?: null | { [index: string]: any; });
|
|
71
71
|
|
|
72
72
|
getHealth(
|
|
73
|
-
request:
|
|
73
|
+
request: api_signaling_v1_signaling_pb.GetHealthRequest,
|
|
74
74
|
metadata?: grpcWeb.Metadata
|
|
75
|
-
): Promise<
|
|
75
|
+
): Promise<api_signaling_v1_signaling_pb.GetHealthResponse>;
|
|
76
76
|
|
|
77
77
|
createPeer(
|
|
78
|
-
request:
|
|
78
|
+
request: api_signaling_v1_signaling_pb.CreatePeerRequest,
|
|
79
79
|
metadata?: grpcWeb.Metadata
|
|
80
|
-
): Promise<
|
|
80
|
+
): Promise<api_signaling_v1_signaling_pb.CreatePeerResponse>;
|
|
81
81
|
|
|
82
82
|
deletePeer(
|
|
83
|
-
request:
|
|
83
|
+
request: api_signaling_v1_signaling_pb.DeletePeerRequest,
|
|
84
84
|
metadata?: grpcWeb.Metadata
|
|
85
|
-
): Promise<
|
|
85
|
+
): Promise<api_signaling_v1_signaling_pb.DeletePeerResponse>;
|
|
86
86
|
|
|
87
87
|
refreshPeer(
|
|
88
|
-
request:
|
|
88
|
+
request: api_signaling_v1_signaling_pb.RefreshPeerRequest,
|
|
89
89
|
metadata?: grpcWeb.Metadata
|
|
90
|
-
): Promise<
|
|
90
|
+
): Promise<api_signaling_v1_signaling_pb.RefreshPeerResponse>;
|
|
91
91
|
|
|
92
92
|
getPeers(
|
|
93
|
-
request:
|
|
93
|
+
request: api_signaling_v1_signaling_pb.GetPeersRequest,
|
|
94
94
|
metadata?: grpcWeb.Metadata
|
|
95
|
-
): Promise<
|
|
95
|
+
): Promise<api_signaling_v1_signaling_pb.GetPeersResponse>;
|
|
96
96
|
|
|
97
97
|
getIceServers(
|
|
98
|
-
request:
|
|
98
|
+
request: api_signaling_v1_signaling_pb.GetIceServersRequest,
|
|
99
99
|
metadata?: grpcWeb.Metadata
|
|
100
|
-
): Promise<
|
|
100
|
+
): Promise<api_signaling_v1_signaling_pb.GetIceServersResponse>;
|
|
101
101
|
|
|
102
102
|
sendSignal(
|
|
103
|
-
request:
|
|
103
|
+
request: api_signaling_v1_signaling_pb.SendSignalRequest,
|
|
104
104
|
metadata?: grpcWeb.Metadata
|
|
105
|
-
): Promise<
|
|
105
|
+
): Promise<api_signaling_v1_signaling_pb.SendSignalResponse>;
|
|
106
106
|
|
|
107
107
|
receiveSignalStream(
|
|
108
|
-
request:
|
|
108
|
+
request: api_signaling_v1_signaling_pb.ReceiveSignalStreamRequest,
|
|
109
109
|
metadata?: grpcWeb.Metadata
|
|
110
|
-
): grpcWeb.ClientReadableStream<
|
|
110
|
+
): grpcWeb.ClientReadableStream<api_signaling_v1_signaling_pb.ReceiveSignalStreamResponse>;
|
|
111
111
|
|
|
112
112
|
}
|
|
113
113
|
|