@stream-io/video-client 0.0.1-alpha.7
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 +219 -0
- package/README.md +14 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +14663 -0
- package/dist/index.js.map +1 -0
- package/dist/src/Batcher.d.ts +12 -0
- package/dist/src/CallDropScheduler.d.ts +44 -0
- package/dist/src/StreamSfuClient.d.ts +25 -0
- package/dist/src/StreamVideoClient.d.ts +145 -0
- package/dist/src/__tests__/StreamVideoClient.test.d.ts +1 -0
- package/dist/src/config/defaultConfigs.d.ts +2 -0
- package/dist/src/config/types.d.ts +29 -0
- package/dist/src/coordinator/StreamCoordinatorClient.d.ts +19 -0
- package/dist/src/coordinator/connection/base64.d.ts +2 -0
- package/dist/src/coordinator/connection/client.d.ts +174 -0
- package/dist/src/coordinator/connection/connection.d.ts +139 -0
- package/dist/src/coordinator/connection/connection_fallback.d.ts +38 -0
- package/dist/src/coordinator/connection/errors.d.ts +16 -0
- package/dist/src/coordinator/connection/events.d.ts +7 -0
- package/dist/src/coordinator/connection/insights.d.ts +58 -0
- package/dist/src/coordinator/connection/signing.d.ts +30 -0
- package/dist/src/coordinator/connection/token_manager.d.ts +39 -0
- package/dist/src/coordinator/connection/types.d.ts +96 -0
- package/dist/src/coordinator/connection/utils.d.ts +25 -0
- package/dist/src/devices.d.ts +79 -0
- package/dist/src/events/call.d.ts +26 -0
- package/dist/src/events/internal.d.ts +8 -0
- package/dist/src/events/participant.d.ts +21 -0
- package/dist/src/events/speaker.d.ts +10 -0
- package/dist/src/gen/coordinator/index.d.ts +1664 -0
- package/dist/src/gen/google/protobuf/descriptor.d.ts +1650 -0
- package/dist/src/gen/google/protobuf/duration.d.ts +113 -0
- package/dist/src/gen/google/protobuf/struct.d.ts +184 -0
- package/dist/src/gen/google/protobuf/timestamp.d.ts +158 -0
- package/dist/src/gen/video/coordinator/broadcast_v1/broadcast.d.ts +66 -0
- package/dist/src/gen/video/coordinator/call_v1/call.d.ts +254 -0
- package/dist/src/gen/video/coordinator/client_v1_rpc/client_rpc.client.d.ts +351 -0
- package/dist/src/gen/video/coordinator/client_v1_rpc/client_rpc.d.ts +1488 -0
- package/dist/src/gen/video/coordinator/client_v1_rpc/envelopes.d.ts +143 -0
- package/dist/src/gen/video/coordinator/client_v1_rpc/websocket.d.ts +292 -0
- package/dist/src/gen/video/coordinator/edge_v1/edge.d.ts +183 -0
- package/dist/src/gen/video/coordinator/event_v1/event.d.ts +411 -0
- package/dist/src/gen/video/coordinator/geofence_v1/geofence.d.ts +63 -0
- package/dist/src/gen/video/coordinator/member_v1/member.d.ts +59 -0
- package/dist/src/gen/video/coordinator/participant_v1/participant.d.ts +103 -0
- package/dist/src/gen/video/coordinator/push_v1/push.d.ts +240 -0
- package/dist/src/gen/video/coordinator/stat_v1/stat.d.ts +308 -0
- package/dist/src/gen/video/coordinator/user_v1/user.d.ts +112 -0
- package/dist/src/gen/video/coordinator/utils_v1/utils.d.ts +47 -0
- package/dist/src/gen/video/sfu/event/events.d.ts +736 -0
- package/dist/src/gen/video/sfu/models/models.d.ts +460 -0
- package/dist/src/gen/video/sfu/signal_rpc/signal.client.d.ts +89 -0
- package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +320 -0
- package/dist/src/helpers/browsers.d.ts +8 -0
- package/dist/src/helpers/sound-detector.d.ts +34 -0
- package/dist/src/rpc/createClient.d.ts +10 -0
- package/dist/src/rpc/index.d.ts +2 -0
- package/dist/src/rpc/latency.d.ts +9 -0
- package/dist/src/rtc/Call.d.ts +180 -0
- package/dist/src/rtc/CallMetadata.d.ts +9 -0
- package/dist/src/rtc/Dispatcher.d.ts +9 -0
- package/dist/src/rtc/IceTrickleBuffer.d.ts +11 -0
- package/dist/src/rtc/callEventHandlers.d.ts +5 -0
- package/dist/src/rtc/codecs.d.ts +2 -0
- package/dist/src/rtc/helpers/iceCandidate.d.ts +2 -0
- package/dist/src/rtc/helpers/tracks.d.ts +3 -0
- package/dist/src/rtc/publisher.d.ts +53 -0
- package/dist/src/rtc/signal.d.ts +5 -0
- package/dist/src/rtc/subscriber.d.ts +7 -0
- package/dist/src/rtc/types.d.ts +84 -0
- package/dist/src/rtc/videoLayers.d.ts +17 -0
- package/dist/src/stats/coordinator-stats-reporter.d.ts +10 -0
- package/dist/src/stats/state-store-stats-reporter.d.ts +57 -0
- package/dist/src/stats/types.d.ts +42 -0
- package/dist/src/store/index.d.ts +2 -0
- package/dist/src/store/rxUtils.d.ts +18 -0
- package/dist/src/store/stateStore.d.ts +182 -0
- package/generate-openapi.sh +32 -0
- package/index.ts +30 -0
- package/openapitools.json +7 -0
- package/package.json +54 -0
- package/rollup.config.mjs +48 -0
- package/src/Batcher.ts +43 -0
- package/src/CallDropScheduler.ts +192 -0
- package/src/StreamSfuClient.ts +185 -0
- package/src/StreamVideoClient.ts +487 -0
- package/src/__tests__/StreamVideoClient.test.ts +83 -0
- package/src/config/defaultConfigs.ts +15 -0
- package/src/config/types.ts +30 -0
- package/src/coordinator/StreamCoordinatorClient.ts +111 -0
- package/src/coordinator/connection/base64.ts +80 -0
- package/src/coordinator/connection/client.ts +815 -0
- package/src/coordinator/connection/connection.ts +750 -0
- package/src/coordinator/connection/connection_fallback.ts +239 -0
- package/src/coordinator/connection/errors.ts +70 -0
- package/src/coordinator/connection/events.ts +10 -0
- package/src/coordinator/connection/insights.ts +88 -0
- package/src/coordinator/connection/signing.ts +104 -0
- package/src/coordinator/connection/token_manager.ts +160 -0
- package/src/coordinator/connection/types.ts +120 -0
- package/src/coordinator/connection/utils.ts +148 -0
- package/src/devices.ts +266 -0
- package/src/events/call.ts +166 -0
- package/src/events/internal.ts +47 -0
- package/src/events/participant.ts +97 -0
- package/src/events/speaker.ts +62 -0
- package/src/gen/coordinator/index.ts +1653 -0
- package/src/gen/google/protobuf/descriptor.ts +3466 -0
- package/src/gen/google/protobuf/duration.ts +232 -0
- package/src/gen/google/protobuf/struct.ts +481 -0
- package/src/gen/google/protobuf/timestamp.ts +291 -0
- package/src/gen/video/coordinator/broadcast_v1/broadcast.ts +154 -0
- package/src/gen/video/coordinator/call_v1/call.ts +651 -0
- package/src/gen/video/coordinator/client_v1_rpc/client_rpc.client.ts +463 -0
- package/src/gen/video/coordinator/client_v1_rpc/client_rpc.ts +3819 -0
- package/src/gen/video/coordinator/client_v1_rpc/envelopes.ts +424 -0
- package/src/gen/video/coordinator/client_v1_rpc/websocket.ts +719 -0
- package/src/gen/video/coordinator/edge_v1/edge.ts +532 -0
- package/src/gen/video/coordinator/event_v1/event.ts +1171 -0
- package/src/gen/video/coordinator/geofence_v1/geofence.ts +128 -0
- package/src/gen/video/coordinator/member_v1/member.ts +138 -0
- package/src/gen/video/coordinator/participant_v1/participant.ts +261 -0
- package/src/gen/video/coordinator/push_v1/push.ts +651 -0
- package/src/gen/video/coordinator/stat_v1/stat.ts +656 -0
- package/src/gen/video/coordinator/user_v1/user.ts +277 -0
- package/src/gen/video/coordinator/utils_v1/utils.ts +98 -0
- package/src/gen/video/sfu/event/events.ts +1962 -0
- package/src/gen/video/sfu/models/models.ts +1062 -0
- package/src/gen/video/sfu/signal_rpc/signal.client.ts +108 -0
- package/src/gen/video/sfu/signal_rpc/signal.ts +906 -0
- package/src/helpers/browsers.ts +13 -0
- package/src/helpers/sound-detector.ts +85 -0
- package/src/rpc/createClient.ts +50 -0
- package/src/rpc/index.ts +2 -0
- package/src/rpc/latency.ts +43 -0
- package/src/rtc/Call.ts +585 -0
- package/src/rtc/CallMetadata.ts +24 -0
- package/src/rtc/Dispatcher.ts +46 -0
- package/src/rtc/IceTrickleBuffer.ts +21 -0
- package/src/rtc/callEventHandlers.ts +37 -0
- package/src/rtc/codecs.ts +61 -0
- package/src/rtc/helpers/iceCandidate.ts +16 -0
- package/src/rtc/helpers/tracks.ts +18 -0
- package/src/rtc/publisher.ts +305 -0
- package/src/rtc/signal.ts +34 -0
- package/src/rtc/subscriber.ts +85 -0
- package/src/rtc/types.ts +105 -0
- package/src/rtc/videoLayers.ts +103 -0
- package/src/stats/coordinator-stats-reporter.ts +167 -0
- package/src/stats/state-store-stats-reporter.ts +364 -0
- package/src/stats/types.ts +46 -0
- package/src/store/index.ts +2 -0
- package/src/store/rxUtils.ts +42 -0
- package/src/store/stateStore.ts +341 -0
- package/tsconfig.json +25 -0
- package/typedoc.json +11 -0
- package/vite.config.ts +11 -0
|
@@ -0,0 +1,1488 @@
|
|
|
1
|
+
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
2
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
3
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
4
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
7
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
8
|
+
import { Broadcast } from "../broadcast_v1/broadcast";
|
|
9
|
+
import { RTMPOptions } from "../broadcast_v1/broadcast";
|
|
10
|
+
import { MediaStateChanged } from "../stat_v1/stat";
|
|
11
|
+
import { ParticipantDisconnected } from "../stat_v1/stat";
|
|
12
|
+
import { ParticipantConnected } from "../stat_v1/stat";
|
|
13
|
+
import { Timestamp } from "../../../google/protobuf/timestamp";
|
|
14
|
+
import { Device } from "../push_v1/push";
|
|
15
|
+
import { DeviceInput } from "../push_v1/push";
|
|
16
|
+
import { Credentials } from "../edge_v1/edge";
|
|
17
|
+
import { LatencyMeasurements } from "../edge_v1/edge";
|
|
18
|
+
import { User } from "../user_v1/user";
|
|
19
|
+
import { MembersEnvelope } from "./envelopes";
|
|
20
|
+
import { CallsEnvelope } from "./envelopes";
|
|
21
|
+
import { Sort } from "../utils_v1/utils";
|
|
22
|
+
import { CallSettings } from "../call_v1/call";
|
|
23
|
+
import { Edge } from "../edge_v1/edge";
|
|
24
|
+
import { UserInput } from "../user_v1/user";
|
|
25
|
+
import { CallEnvelope } from "./envelopes";
|
|
26
|
+
/**
|
|
27
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetCallRequest
|
|
28
|
+
*/
|
|
29
|
+
export interface GetCallRequest {
|
|
30
|
+
/**
|
|
31
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
32
|
+
*/
|
|
33
|
+
callCid: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetCallResponse
|
|
37
|
+
*/
|
|
38
|
+
export interface GetCallResponse {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallEnvelope call = 1;
|
|
41
|
+
*/
|
|
42
|
+
call?: CallEnvelope;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.MemberInput
|
|
46
|
+
*/
|
|
47
|
+
export interface MemberInput {
|
|
48
|
+
/**
|
|
49
|
+
* @generated from protobuf field: string user_id = 1;
|
|
50
|
+
*/
|
|
51
|
+
userId: string;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from protobuf field: string role = 2;
|
|
54
|
+
*/
|
|
55
|
+
role: string;
|
|
56
|
+
/**
|
|
57
|
+
* @generated from protobuf field: bytes custom_json = 3;
|
|
58
|
+
*/
|
|
59
|
+
customJson: Uint8Array;
|
|
60
|
+
/**
|
|
61
|
+
* The user data for the user
|
|
62
|
+
* If the user does not exist, this will be used to create the user
|
|
63
|
+
* If the user already exists, this input will be ignored
|
|
64
|
+
*
|
|
65
|
+
* @generated from protobuf field: stream.video.coordinator.user_v1.UserInput user_input = 4;
|
|
66
|
+
*/
|
|
67
|
+
userInput?: UserInput;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpsertCallMembersRequest
|
|
71
|
+
*/
|
|
72
|
+
export interface UpsertCallMembersRequest {
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
75
|
+
*/
|
|
76
|
+
callCid: string;
|
|
77
|
+
/**
|
|
78
|
+
* @generated from protobuf field: repeated stream.video.coordinator.client_v1_rpc.MemberInput members = 2;
|
|
79
|
+
*/
|
|
80
|
+
members: MemberInput[];
|
|
81
|
+
/**
|
|
82
|
+
* Ringing option, used to signal to clients' UI
|
|
83
|
+
*
|
|
84
|
+
* @generated from protobuf field: bool ring = 3;
|
|
85
|
+
*/
|
|
86
|
+
ring: boolean;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpsertCallMembersResponse
|
|
90
|
+
*/
|
|
91
|
+
export interface UpsertCallMembersResponse {
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.DeleteCallMembersRequest
|
|
95
|
+
*/
|
|
96
|
+
export interface DeleteCallMembersRequest {
|
|
97
|
+
/**
|
|
98
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
99
|
+
*/
|
|
100
|
+
callCid: string;
|
|
101
|
+
/**
|
|
102
|
+
* @generated from protobuf field: repeated string user_ids = 2;
|
|
103
|
+
*/
|
|
104
|
+
userIds: string[];
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.DeleteCallMembersResponse
|
|
108
|
+
*/
|
|
109
|
+
export interface DeleteCallMembersResponse {
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* A message that carries data for call creation
|
|
113
|
+
*
|
|
114
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.CreateCallInput
|
|
115
|
+
*/
|
|
116
|
+
export interface CreateCallInput {
|
|
117
|
+
/**
|
|
118
|
+
* Call properties to set
|
|
119
|
+
*
|
|
120
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallInput call = 1;
|
|
121
|
+
*/
|
|
122
|
+
call?: CallInput;
|
|
123
|
+
/**
|
|
124
|
+
* Members to add to the created call
|
|
125
|
+
*
|
|
126
|
+
* @generated from protobuf field: repeated stream.video.coordinator.client_v1_rpc.MemberInput members = 2;
|
|
127
|
+
*/
|
|
128
|
+
members: MemberInput[];
|
|
129
|
+
/**
|
|
130
|
+
* Ringing option, used to signal to clients' UI
|
|
131
|
+
*
|
|
132
|
+
* @generated from protobuf field: optional bool ring = 3;
|
|
133
|
+
*/
|
|
134
|
+
ring?: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* @generated from protobuf oneof: created_by
|
|
137
|
+
*/
|
|
138
|
+
createdBy: {
|
|
139
|
+
oneofKind: "userId";
|
|
140
|
+
/**
|
|
141
|
+
* @generated from protobuf field: string user_id = 4;
|
|
142
|
+
*/
|
|
143
|
+
userId: string;
|
|
144
|
+
} | {
|
|
145
|
+
oneofKind: "user";
|
|
146
|
+
/**
|
|
147
|
+
* @generated from protobuf field: stream.video.coordinator.user_v1.UserInput user = 5;
|
|
148
|
+
*/
|
|
149
|
+
user: UserInput;
|
|
150
|
+
} | {
|
|
151
|
+
oneofKind: undefined;
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* A request message for GetOrCreateCall endpoint
|
|
156
|
+
*
|
|
157
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.CreateCallRequest
|
|
158
|
+
*/
|
|
159
|
+
export interface CreateCallRequest {
|
|
160
|
+
/**
|
|
161
|
+
* Call type
|
|
162
|
+
*
|
|
163
|
+
* @generated from protobuf field: string type = 1;
|
|
164
|
+
*/
|
|
165
|
+
type: string;
|
|
166
|
+
/**
|
|
167
|
+
* Call ID. If empty, will be generated as UUIDv4
|
|
168
|
+
*
|
|
169
|
+
* @generated from protobuf field: optional string id = 2;
|
|
170
|
+
*/
|
|
171
|
+
id?: string;
|
|
172
|
+
/**
|
|
173
|
+
* Call creation input, only used if the call does not exist
|
|
174
|
+
*
|
|
175
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CreateCallInput input = 3;
|
|
176
|
+
*/
|
|
177
|
+
input?: CreateCallInput;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* A request message for GetOrCreateCall endpoint
|
|
181
|
+
*
|
|
182
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetOrCreateCallRequest
|
|
183
|
+
*/
|
|
184
|
+
export interface GetOrCreateCallRequest {
|
|
185
|
+
/**
|
|
186
|
+
* Call type
|
|
187
|
+
*
|
|
188
|
+
* @generated from protobuf field: string type = 1;
|
|
189
|
+
*/
|
|
190
|
+
type: string;
|
|
191
|
+
/**
|
|
192
|
+
* Call ID
|
|
193
|
+
*
|
|
194
|
+
* @generated from protobuf field: string id = 2;
|
|
195
|
+
*/
|
|
196
|
+
id: string;
|
|
197
|
+
/**
|
|
198
|
+
* Call creation input, only used if the call does not exist
|
|
199
|
+
*
|
|
200
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CreateCallInput input = 3;
|
|
201
|
+
*/
|
|
202
|
+
input?: CreateCallInput;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* A request message for JoinCall endpoint
|
|
206
|
+
*
|
|
207
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.JoinCallRequest
|
|
208
|
+
*/
|
|
209
|
+
export interface JoinCallRequest {
|
|
210
|
+
/**
|
|
211
|
+
* Call type
|
|
212
|
+
*
|
|
213
|
+
* @generated from protobuf field: string type = 1;
|
|
214
|
+
*/
|
|
215
|
+
type: string;
|
|
216
|
+
/**
|
|
217
|
+
* Call ID
|
|
218
|
+
*
|
|
219
|
+
* @generated from protobuf field: string id = 2;
|
|
220
|
+
*/
|
|
221
|
+
id: string;
|
|
222
|
+
/**
|
|
223
|
+
* Call creation input, only used if the call does not exist
|
|
224
|
+
*
|
|
225
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CreateCallInput input = 3;
|
|
226
|
+
*/
|
|
227
|
+
input?: CreateCallInput;
|
|
228
|
+
/**
|
|
229
|
+
* Preferred client datacenter. This is optional and when set, preferred datacenter selection is not guaranteed
|
|
230
|
+
*
|
|
231
|
+
* @generated from protobuf field: string datacenter_id = 4;
|
|
232
|
+
*/
|
|
233
|
+
datacenterId: string;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* A request message for GetOrCreateCall endpoint
|
|
237
|
+
*
|
|
238
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.JoinCallResponse
|
|
239
|
+
*/
|
|
240
|
+
export interface JoinCallResponse {
|
|
241
|
+
/**
|
|
242
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallEnvelope call = 1;
|
|
243
|
+
*/
|
|
244
|
+
call?: CallEnvelope;
|
|
245
|
+
/**
|
|
246
|
+
* Whether a call was created
|
|
247
|
+
*
|
|
248
|
+
* @generated from protobuf field: bool created = 2;
|
|
249
|
+
*/
|
|
250
|
+
created: boolean;
|
|
251
|
+
/**
|
|
252
|
+
* A list of endpoints to measure latency
|
|
253
|
+
*
|
|
254
|
+
* @generated from protobuf field: repeated stream.video.coordinator.edge_v1.Edge edges = 3;
|
|
255
|
+
*/
|
|
256
|
+
edges: Edge[];
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Represents all updatable room fields
|
|
260
|
+
*
|
|
261
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.CallInput
|
|
262
|
+
*/
|
|
263
|
+
export interface CallInput {
|
|
264
|
+
/**
|
|
265
|
+
* Custom JSON object that is stored in this call
|
|
266
|
+
* All users with read permissions will have access to this object
|
|
267
|
+
*
|
|
268
|
+
* @generated from protobuf field: bytes custom_json = 1;
|
|
269
|
+
*/
|
|
270
|
+
customJson: Uint8Array;
|
|
271
|
+
/**
|
|
272
|
+
* Call settings to be overridden specifically
|
|
273
|
+
*
|
|
274
|
+
* @generated from protobuf field: stream.video.coordinator.call_v1.CallSettings settings_overrides = 2;
|
|
275
|
+
*/
|
|
276
|
+
settingsOverrides?: CallSettings;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetOrCreateCallResponse
|
|
280
|
+
*/
|
|
281
|
+
export interface GetOrCreateCallResponse {
|
|
282
|
+
/**
|
|
283
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallEnvelope call = 1;
|
|
284
|
+
*/
|
|
285
|
+
call?: CallEnvelope;
|
|
286
|
+
/**
|
|
287
|
+
* Whether a call was created
|
|
288
|
+
*
|
|
289
|
+
* @generated from protobuf field: bool created = 2;
|
|
290
|
+
*/
|
|
291
|
+
created: boolean;
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallRequest
|
|
295
|
+
*/
|
|
296
|
+
export interface UpdateCallRequest {
|
|
297
|
+
/**
|
|
298
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
299
|
+
*/
|
|
300
|
+
callCid: string;
|
|
301
|
+
/**
|
|
302
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallInput input = 2;
|
|
303
|
+
*/
|
|
304
|
+
input?: CallInput;
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallResponse
|
|
308
|
+
*/
|
|
309
|
+
export interface UpdateCallResponse {
|
|
310
|
+
/**
|
|
311
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallEnvelope call = 1;
|
|
312
|
+
*/
|
|
313
|
+
call?: CallEnvelope;
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.RoleOverride
|
|
317
|
+
*/
|
|
318
|
+
export interface RoleOverride {
|
|
319
|
+
/**
|
|
320
|
+
* the users that should get the new role, cannot be empty
|
|
321
|
+
*
|
|
322
|
+
* @generated from protobuf field: repeated string user_ids = 1;
|
|
323
|
+
*/
|
|
324
|
+
userIds: string[];
|
|
325
|
+
/**
|
|
326
|
+
* the new role
|
|
327
|
+
*
|
|
328
|
+
* @generated from protobuf field: optional string role_name = 2;
|
|
329
|
+
*/
|
|
330
|
+
roleName?: string;
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.PermissionGrantOverride
|
|
334
|
+
*/
|
|
335
|
+
export interface PermissionGrantOverride {
|
|
336
|
+
/**
|
|
337
|
+
* the users that will get the new permissions granted
|
|
338
|
+
* if empty, the grant applies to all users
|
|
339
|
+
*
|
|
340
|
+
* @generated from protobuf field: repeated string user_ids = 1;
|
|
341
|
+
*/
|
|
342
|
+
userIds: string[];
|
|
343
|
+
/**
|
|
344
|
+
* the list of permissions granted to users
|
|
345
|
+
*
|
|
346
|
+
* @generated from protobuf field: repeated string permissions = 2;
|
|
347
|
+
*/
|
|
348
|
+
permissions: string[];
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallPermissionsRequest
|
|
352
|
+
*/
|
|
353
|
+
export interface UpdateCallPermissionsRequest {
|
|
354
|
+
/**
|
|
355
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
356
|
+
*/
|
|
357
|
+
callCid: string;
|
|
358
|
+
/**
|
|
359
|
+
* @generated from protobuf oneof: grant_input
|
|
360
|
+
*/
|
|
361
|
+
grantInput: {
|
|
362
|
+
oneofKind: "roleOverride";
|
|
363
|
+
/**
|
|
364
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.RoleOverride role_override = 2;
|
|
365
|
+
*/
|
|
366
|
+
roleOverride: RoleOverride;
|
|
367
|
+
} | {
|
|
368
|
+
oneofKind: "permissionOverride";
|
|
369
|
+
/**
|
|
370
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.PermissionGrantOverride permission_override = 3;
|
|
371
|
+
*/
|
|
372
|
+
permissionOverride: PermissionGrantOverride;
|
|
373
|
+
} | {
|
|
374
|
+
oneofKind: undefined;
|
|
375
|
+
};
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallPermissionsResponse
|
|
379
|
+
*/
|
|
380
|
+
export interface UpdateCallPermissionsResponse {
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.EndCallRequest
|
|
384
|
+
*/
|
|
385
|
+
export interface EndCallRequest {
|
|
386
|
+
/**
|
|
387
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
388
|
+
*/
|
|
389
|
+
callCid: string;
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.EndCallResponse
|
|
393
|
+
*/
|
|
394
|
+
export interface EndCallResponse {
|
|
395
|
+
}
|
|
396
|
+
/**
|
|
397
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.CreateCallResponse
|
|
398
|
+
*/
|
|
399
|
+
export interface CreateCallResponse {
|
|
400
|
+
/**
|
|
401
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallEnvelope call = 1;
|
|
402
|
+
*/
|
|
403
|
+
call?: CallEnvelope;
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryCallsRequest
|
|
407
|
+
*/
|
|
408
|
+
export interface QueryCallsRequest {
|
|
409
|
+
/**
|
|
410
|
+
* @generated from protobuf field: bytes mq_json = 1;
|
|
411
|
+
*/
|
|
412
|
+
mqJson: Uint8Array;
|
|
413
|
+
/**
|
|
414
|
+
* @generated from protobuf field: optional int32 limit = 2;
|
|
415
|
+
*/
|
|
416
|
+
limit?: number;
|
|
417
|
+
/**
|
|
418
|
+
* @generated from protobuf field: repeated stream.video.coordinator.utils_v1.Sort sorts = 3;
|
|
419
|
+
*/
|
|
420
|
+
sorts: Sort[];
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryCallsResponse
|
|
424
|
+
*/
|
|
425
|
+
export interface QueryCallsResponse {
|
|
426
|
+
/**
|
|
427
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallsEnvelope calls = 1;
|
|
428
|
+
*/
|
|
429
|
+
calls?: CallsEnvelope;
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryMembersRequest
|
|
433
|
+
*/
|
|
434
|
+
export interface QueryMembersRequest {
|
|
435
|
+
/**
|
|
436
|
+
* @generated from protobuf field: bytes mq_json = 1;
|
|
437
|
+
*/
|
|
438
|
+
mqJson: Uint8Array;
|
|
439
|
+
/**
|
|
440
|
+
* @generated from protobuf field: optional int32 limit = 2;
|
|
441
|
+
*/
|
|
442
|
+
limit?: number;
|
|
443
|
+
/**
|
|
444
|
+
* @generated from protobuf field: repeated stream.video.coordinator.utils_v1.Sort sorts = 3;
|
|
445
|
+
*/
|
|
446
|
+
sorts: Sort[];
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryMembersResponse
|
|
450
|
+
*/
|
|
451
|
+
export interface QueryMembersResponse {
|
|
452
|
+
/**
|
|
453
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.MembersEnvelope members = 1;
|
|
454
|
+
*/
|
|
455
|
+
members?: MembersEnvelope;
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryUsersRequest
|
|
459
|
+
*/
|
|
460
|
+
export interface QueryUsersRequest {
|
|
461
|
+
/**
|
|
462
|
+
* @generated from protobuf field: bytes mq_json = 1;
|
|
463
|
+
*/
|
|
464
|
+
mqJson: Uint8Array;
|
|
465
|
+
/**
|
|
466
|
+
* @generated from protobuf field: optional int32 limit = 2;
|
|
467
|
+
*/
|
|
468
|
+
limit?: number;
|
|
469
|
+
/**
|
|
470
|
+
* @generated from protobuf field: repeated stream.video.coordinator.utils_v1.Sort sorts = 3;
|
|
471
|
+
*/
|
|
472
|
+
sorts: Sort[];
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryUsersResponse
|
|
476
|
+
*/
|
|
477
|
+
export interface QueryUsersResponse {
|
|
478
|
+
/**
|
|
479
|
+
* @generated from protobuf field: repeated stream.video.coordinator.user_v1.User users = 1;
|
|
480
|
+
*/
|
|
481
|
+
users: User[];
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpsertUsersRequest
|
|
485
|
+
*/
|
|
486
|
+
export interface UpsertUsersRequest {
|
|
487
|
+
/**
|
|
488
|
+
* @generated from protobuf field: repeated stream.video.coordinator.user_v1.UserInput users = 1;
|
|
489
|
+
*/
|
|
490
|
+
users: UserInput[];
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.UpsertUsersResponse
|
|
494
|
+
*/
|
|
495
|
+
export interface UpsertUsersResponse {
|
|
496
|
+
/**
|
|
497
|
+
* @generated from protobuf field: repeated stream.video.coordinator.user_v1.User users = 1;
|
|
498
|
+
*/
|
|
499
|
+
users: User[];
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* A request message for GetCallEdgeServer endpoint
|
|
503
|
+
*
|
|
504
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetCallEdgeServerRequest
|
|
505
|
+
*/
|
|
506
|
+
export interface GetCallEdgeServerRequest {
|
|
507
|
+
/**
|
|
508
|
+
* Call CID to get SFU for
|
|
509
|
+
*
|
|
510
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
511
|
+
*/
|
|
512
|
+
callCid: string;
|
|
513
|
+
/**
|
|
514
|
+
* Latency measurement results
|
|
515
|
+
* Optional
|
|
516
|
+
*
|
|
517
|
+
* @generated from protobuf field: stream.video.coordinator.edge_v1.LatencyMeasurements measurements = 2;
|
|
518
|
+
*/
|
|
519
|
+
measurements?: LatencyMeasurements;
|
|
520
|
+
}
|
|
521
|
+
/**
|
|
522
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetCallEdgeServerResponse
|
|
523
|
+
*/
|
|
524
|
+
export interface GetCallEdgeServerResponse {
|
|
525
|
+
/**
|
|
526
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.CallEnvelope call = 1;
|
|
527
|
+
*/
|
|
528
|
+
call?: CallEnvelope;
|
|
529
|
+
/**
|
|
530
|
+
* Call edge server credentials
|
|
531
|
+
*
|
|
532
|
+
* @generated from protobuf field: stream.video.coordinator.edge_v1.Credentials credentials = 2;
|
|
533
|
+
*/
|
|
534
|
+
credentials?: Credentials;
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.CreateDeviceRequest
|
|
538
|
+
*/
|
|
539
|
+
export interface CreateDeviceRequest {
|
|
540
|
+
/**
|
|
541
|
+
* @generated from protobuf field: stream.video.coordinator.push_v1.DeviceInput input = 1;
|
|
542
|
+
*/
|
|
543
|
+
input?: DeviceInput;
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.CreateDeviceResponse
|
|
547
|
+
*/
|
|
548
|
+
export interface CreateDeviceResponse {
|
|
549
|
+
/**
|
|
550
|
+
* @generated from protobuf field: stream.video.coordinator.push_v1.Device device = 1;
|
|
551
|
+
*/
|
|
552
|
+
device?: Device;
|
|
553
|
+
}
|
|
554
|
+
/**
|
|
555
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.DeleteDeviceRequest
|
|
556
|
+
*/
|
|
557
|
+
export interface DeleteDeviceRequest {
|
|
558
|
+
/**
|
|
559
|
+
* @generated from protobuf field: string id = 1;
|
|
560
|
+
*/
|
|
561
|
+
id: string;
|
|
562
|
+
}
|
|
563
|
+
/**
|
|
564
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.DeleteDeviceResponse
|
|
565
|
+
*/
|
|
566
|
+
export interface DeleteDeviceResponse {
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryDevicesRequest
|
|
570
|
+
*/
|
|
571
|
+
export interface QueryDevicesRequest {
|
|
572
|
+
}
|
|
573
|
+
/**
|
|
574
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.QueryDevicesResponse
|
|
575
|
+
*/
|
|
576
|
+
export interface QueryDevicesResponse {
|
|
577
|
+
/**
|
|
578
|
+
* @generated from protobuf field: repeated stream.video.coordinator.push_v1.Device devices = 1;
|
|
579
|
+
*/
|
|
580
|
+
devices: Device[];
|
|
581
|
+
}
|
|
582
|
+
/**
|
|
583
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.SendEventRequest
|
|
584
|
+
*/
|
|
585
|
+
export interface SendEventRequest {
|
|
586
|
+
/**
|
|
587
|
+
* The call cid
|
|
588
|
+
*
|
|
589
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
590
|
+
*/
|
|
591
|
+
callCid: string;
|
|
592
|
+
/**
|
|
593
|
+
* The type of event
|
|
594
|
+
*
|
|
595
|
+
* @generated from protobuf field: stream.video.coordinator.client_v1_rpc.UserEventType event_type = 2;
|
|
596
|
+
*/
|
|
597
|
+
eventType: UserEventType;
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.SendEventResponse
|
|
601
|
+
*/
|
|
602
|
+
export interface SendEventResponse {
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.SendCustomEventRequest
|
|
606
|
+
*/
|
|
607
|
+
export interface SendCustomEventRequest {
|
|
608
|
+
/**
|
|
609
|
+
* The call cid
|
|
610
|
+
*
|
|
611
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
612
|
+
*/
|
|
613
|
+
callCid: string;
|
|
614
|
+
/**
|
|
615
|
+
* The type of event
|
|
616
|
+
*
|
|
617
|
+
* @generated from protobuf field: string type = 2;
|
|
618
|
+
*/
|
|
619
|
+
type: string;
|
|
620
|
+
/**
|
|
621
|
+
* The data of the event
|
|
622
|
+
*
|
|
623
|
+
* @generated from protobuf field: bytes data_json = 3;
|
|
624
|
+
*/
|
|
625
|
+
dataJson: Uint8Array;
|
|
626
|
+
}
|
|
627
|
+
/**
|
|
628
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.SendCustomEventResponse
|
|
629
|
+
*/
|
|
630
|
+
export interface SendCustomEventResponse {
|
|
631
|
+
}
|
|
632
|
+
/**
|
|
633
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatsRequest
|
|
634
|
+
*/
|
|
635
|
+
export interface ReportCallStatsRequest {
|
|
636
|
+
/**
|
|
637
|
+
* A concatenation of call type and call id with ":" as delimiter
|
|
638
|
+
*
|
|
639
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
640
|
+
*/
|
|
641
|
+
callCid: string;
|
|
642
|
+
/**
|
|
643
|
+
* A WebRTC Stats report encoded as a JSON string, as defined in https://www.w3.org/TR/webrtc/#dom-rtcstatsreport
|
|
644
|
+
*
|
|
645
|
+
* @generated from protobuf field: bytes stats_json = 2;
|
|
646
|
+
*/
|
|
647
|
+
statsJson: Uint8Array;
|
|
648
|
+
}
|
|
649
|
+
/**
|
|
650
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatsResponse
|
|
651
|
+
*/
|
|
652
|
+
export interface ReportCallStatsResponse {
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatEventRequest
|
|
656
|
+
*/
|
|
657
|
+
export interface ReportCallStatEventRequest {
|
|
658
|
+
/**
|
|
659
|
+
* A concatenation of call type and call id with ":" as delimiter
|
|
660
|
+
*
|
|
661
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
662
|
+
*/
|
|
663
|
+
callCid: string;
|
|
664
|
+
/**
|
|
665
|
+
* Event timestamp as RFC3339 string.
|
|
666
|
+
*
|
|
667
|
+
* @generated from protobuf field: google.protobuf.Timestamp timestamp = 2;
|
|
668
|
+
*/
|
|
669
|
+
timestamp?: Timestamp;
|
|
670
|
+
/**
|
|
671
|
+
* @generated from protobuf oneof: event
|
|
672
|
+
*/
|
|
673
|
+
event: {
|
|
674
|
+
oneofKind: "participantConnected";
|
|
675
|
+
/**
|
|
676
|
+
* @generated from protobuf field: stream.video.coordinator.stat_v1.ParticipantConnected participant_connected = 3;
|
|
677
|
+
*/
|
|
678
|
+
participantConnected: ParticipantConnected;
|
|
679
|
+
} | {
|
|
680
|
+
oneofKind: "participantDisconnected";
|
|
681
|
+
/**
|
|
682
|
+
* @generated from protobuf field: stream.video.coordinator.stat_v1.ParticipantDisconnected participant_disconnected = 4;
|
|
683
|
+
*/
|
|
684
|
+
participantDisconnected: ParticipantDisconnected;
|
|
685
|
+
} | {
|
|
686
|
+
oneofKind: "mediaStateChanged";
|
|
687
|
+
/**
|
|
688
|
+
* @generated from protobuf field: stream.video.coordinator.stat_v1.MediaStateChanged media_state_changed = 5;
|
|
689
|
+
*/
|
|
690
|
+
mediaStateChanged: MediaStateChanged;
|
|
691
|
+
} | {
|
|
692
|
+
oneofKind: undefined;
|
|
693
|
+
};
|
|
694
|
+
}
|
|
695
|
+
/**
|
|
696
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatEventResponse
|
|
697
|
+
*/
|
|
698
|
+
export interface ReportCallStatEventResponse {
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.GetCallStatsRequest
|
|
702
|
+
*/
|
|
703
|
+
export interface GetCallStatsRequest {
|
|
704
|
+
/**
|
|
705
|
+
* A concatenation of call type and call id with ":" as delimiter
|
|
706
|
+
*
|
|
707
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
708
|
+
*/
|
|
709
|
+
callCid: string;
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReportIssueRequest
|
|
713
|
+
*/
|
|
714
|
+
export interface ReportIssueRequest {
|
|
715
|
+
/**
|
|
716
|
+
* A concatenation of call type and call id with ":" as delimiter
|
|
717
|
+
*
|
|
718
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
719
|
+
*/
|
|
720
|
+
callCid: string;
|
|
721
|
+
/**
|
|
722
|
+
* Optional description.
|
|
723
|
+
*
|
|
724
|
+
* @generated from protobuf field: string description = 2;
|
|
725
|
+
*/
|
|
726
|
+
description: string;
|
|
727
|
+
/**
|
|
728
|
+
* @generated from protobuf field: bytes custom_json = 3;
|
|
729
|
+
*/
|
|
730
|
+
customJson: Uint8Array;
|
|
731
|
+
}
|
|
732
|
+
/**
|
|
733
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReportIssueResponse
|
|
734
|
+
*/
|
|
735
|
+
export interface ReportIssueResponse {
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReviewCallRequest
|
|
739
|
+
*/
|
|
740
|
+
export interface ReviewCallRequest {
|
|
741
|
+
/**
|
|
742
|
+
* A concatenation of call type and call id with ":" as delimiter
|
|
743
|
+
*
|
|
744
|
+
* @generated from protobuf field: string call_cid = 1;
|
|
745
|
+
*/
|
|
746
|
+
callCid: string;
|
|
747
|
+
/**
|
|
748
|
+
* Rating between 0 and 5 stars.
|
|
749
|
+
*
|
|
750
|
+
* @generated from protobuf field: float stars = 2;
|
|
751
|
+
*/
|
|
752
|
+
stars: number;
|
|
753
|
+
/**
|
|
754
|
+
* Optional description.
|
|
755
|
+
*
|
|
756
|
+
* @generated from protobuf field: string description = 3;
|
|
757
|
+
*/
|
|
758
|
+
description: string;
|
|
759
|
+
/**
|
|
760
|
+
* Optional custom data.
|
|
761
|
+
*
|
|
762
|
+
* @generated from protobuf field: bytes custom_json = 4;
|
|
763
|
+
*/
|
|
764
|
+
customJson: Uint8Array;
|
|
765
|
+
}
|
|
766
|
+
/**
|
|
767
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.ReviewCallResponse
|
|
768
|
+
*/
|
|
769
|
+
export interface ReviewCallResponse {
|
|
770
|
+
}
|
|
771
|
+
/**
|
|
772
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StartBroadcastRequest
|
|
773
|
+
*/
|
|
774
|
+
export interface StartBroadcastRequest {
|
|
775
|
+
/**
|
|
776
|
+
* Call type and id.
|
|
777
|
+
*
|
|
778
|
+
* @generated from protobuf field: string call_type = 1;
|
|
779
|
+
*/
|
|
780
|
+
callType: string;
|
|
781
|
+
/**
|
|
782
|
+
* @generated from protobuf field: string call_id = 2;
|
|
783
|
+
*/
|
|
784
|
+
callId: string;
|
|
785
|
+
/**
|
|
786
|
+
* Toggles HLS broadcasting on/off.
|
|
787
|
+
*
|
|
788
|
+
* @generated from protobuf field: bool hls_broadcast = 3;
|
|
789
|
+
*/
|
|
790
|
+
hlsBroadcast: boolean;
|
|
791
|
+
/**
|
|
792
|
+
* Enables rtmp broadcasting.
|
|
793
|
+
*
|
|
794
|
+
* @generated from protobuf field: stream.video.coordinator.broadcast_v1.RTMPOptions rtmp = 5;
|
|
795
|
+
*/
|
|
796
|
+
rtmp?: RTMPOptions;
|
|
797
|
+
}
|
|
798
|
+
/**
|
|
799
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StartBroadcastResponse
|
|
800
|
+
*/
|
|
801
|
+
export interface StartBroadcastResponse {
|
|
802
|
+
/**
|
|
803
|
+
* @generated from protobuf field: stream.video.coordinator.broadcast_v1.Broadcast broadcast = 1;
|
|
804
|
+
*/
|
|
805
|
+
broadcast?: Broadcast;
|
|
806
|
+
}
|
|
807
|
+
/**
|
|
808
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StopBroadcastRequest
|
|
809
|
+
*/
|
|
810
|
+
export interface StopBroadcastRequest {
|
|
811
|
+
/**
|
|
812
|
+
* Call type and id.
|
|
813
|
+
*
|
|
814
|
+
* @generated from protobuf field: string call_type = 1;
|
|
815
|
+
*/
|
|
816
|
+
callType: string;
|
|
817
|
+
/**
|
|
818
|
+
* @generated from protobuf field: string call_id = 2;
|
|
819
|
+
*/
|
|
820
|
+
callId: string;
|
|
821
|
+
}
|
|
822
|
+
/**
|
|
823
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StopBroadcastResponse
|
|
824
|
+
*/
|
|
825
|
+
export interface StopBroadcastResponse {
|
|
826
|
+
}
|
|
827
|
+
/**
|
|
828
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StartRecordingRequest
|
|
829
|
+
*/
|
|
830
|
+
export interface StartRecordingRequest {
|
|
831
|
+
/**
|
|
832
|
+
* @generated from protobuf field: string call_type = 1;
|
|
833
|
+
*/
|
|
834
|
+
callType: string;
|
|
835
|
+
/**
|
|
836
|
+
* @generated from protobuf field: string call_id = 2;
|
|
837
|
+
*/
|
|
838
|
+
callId: string;
|
|
839
|
+
}
|
|
840
|
+
/**
|
|
841
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StartRecordingResponse
|
|
842
|
+
*/
|
|
843
|
+
export interface StartRecordingResponse {
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StopRecordingRequest
|
|
847
|
+
*/
|
|
848
|
+
export interface StopRecordingRequest {
|
|
849
|
+
/**
|
|
850
|
+
* @generated from protobuf field: string call_type = 1;
|
|
851
|
+
*/
|
|
852
|
+
callType: string;
|
|
853
|
+
/**
|
|
854
|
+
* @generated from protobuf field: string call_id = 2;
|
|
855
|
+
*/
|
|
856
|
+
callId: string;
|
|
857
|
+
}
|
|
858
|
+
/**
|
|
859
|
+
* @generated from protobuf message stream.video.coordinator.client_v1_rpc.StopRecordingResponse
|
|
860
|
+
*/
|
|
861
|
+
export interface StopRecordingResponse {
|
|
862
|
+
}
|
|
863
|
+
/**
|
|
864
|
+
* @generated from protobuf enum stream.video.coordinator.client_v1_rpc.UserEventType
|
|
865
|
+
*/
|
|
866
|
+
export declare enum UserEventType {
|
|
867
|
+
/**
|
|
868
|
+
* @generated from protobuf enum value: USER_EVENT_TYPE_UNSPECIFIED = 0;
|
|
869
|
+
*/
|
|
870
|
+
UNSPECIFIED = 0,
|
|
871
|
+
/**
|
|
872
|
+
* @generated from protobuf enum value: USER_EVENT_TYPE_ACCEPTED_CALL = 1;
|
|
873
|
+
*/
|
|
874
|
+
ACCEPTED_CALL = 1,
|
|
875
|
+
/**
|
|
876
|
+
* @generated from protobuf enum value: USER_EVENT_TYPE_REJECTED_CALL = 2;
|
|
877
|
+
*/
|
|
878
|
+
REJECTED_CALL = 2,
|
|
879
|
+
/**
|
|
880
|
+
* @generated from protobuf enum value: USER_EVENT_TYPE_CANCELLED_CALL = 3;
|
|
881
|
+
*/
|
|
882
|
+
CANCELLED_CALL = 3
|
|
883
|
+
}
|
|
884
|
+
declare class GetCallRequest$Type extends MessageType<GetCallRequest> {
|
|
885
|
+
constructor();
|
|
886
|
+
create(value?: PartialMessage<GetCallRequest>): GetCallRequest;
|
|
887
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetCallRequest): GetCallRequest;
|
|
888
|
+
internalBinaryWrite(message: GetCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
889
|
+
}
|
|
890
|
+
/**
|
|
891
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetCallRequest
|
|
892
|
+
*/
|
|
893
|
+
export declare const GetCallRequest: GetCallRequest$Type;
|
|
894
|
+
declare class GetCallResponse$Type extends MessageType<GetCallResponse> {
|
|
895
|
+
constructor();
|
|
896
|
+
create(value?: PartialMessage<GetCallResponse>): GetCallResponse;
|
|
897
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetCallResponse): GetCallResponse;
|
|
898
|
+
internalBinaryWrite(message: GetCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
899
|
+
}
|
|
900
|
+
/**
|
|
901
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetCallResponse
|
|
902
|
+
*/
|
|
903
|
+
export declare const GetCallResponse: GetCallResponse$Type;
|
|
904
|
+
declare class MemberInput$Type extends MessageType<MemberInput> {
|
|
905
|
+
constructor();
|
|
906
|
+
create(value?: PartialMessage<MemberInput>): MemberInput;
|
|
907
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MemberInput): MemberInput;
|
|
908
|
+
internalBinaryWrite(message: MemberInput, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.MemberInput
|
|
912
|
+
*/
|
|
913
|
+
export declare const MemberInput: MemberInput$Type;
|
|
914
|
+
declare class UpsertCallMembersRequest$Type extends MessageType<UpsertCallMembersRequest> {
|
|
915
|
+
constructor();
|
|
916
|
+
create(value?: PartialMessage<UpsertCallMembersRequest>): UpsertCallMembersRequest;
|
|
917
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpsertCallMembersRequest): UpsertCallMembersRequest;
|
|
918
|
+
internalBinaryWrite(message: UpsertCallMembersRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
919
|
+
}
|
|
920
|
+
/**
|
|
921
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpsertCallMembersRequest
|
|
922
|
+
*/
|
|
923
|
+
export declare const UpsertCallMembersRequest: UpsertCallMembersRequest$Type;
|
|
924
|
+
declare class UpsertCallMembersResponse$Type extends MessageType<UpsertCallMembersResponse> {
|
|
925
|
+
constructor();
|
|
926
|
+
create(value?: PartialMessage<UpsertCallMembersResponse>): UpsertCallMembersResponse;
|
|
927
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpsertCallMembersResponse): UpsertCallMembersResponse;
|
|
928
|
+
internalBinaryWrite(message: UpsertCallMembersResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
929
|
+
}
|
|
930
|
+
/**
|
|
931
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpsertCallMembersResponse
|
|
932
|
+
*/
|
|
933
|
+
export declare const UpsertCallMembersResponse: UpsertCallMembersResponse$Type;
|
|
934
|
+
declare class DeleteCallMembersRequest$Type extends MessageType<DeleteCallMembersRequest> {
|
|
935
|
+
constructor();
|
|
936
|
+
create(value?: PartialMessage<DeleteCallMembersRequest>): DeleteCallMembersRequest;
|
|
937
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteCallMembersRequest): DeleteCallMembersRequest;
|
|
938
|
+
internalBinaryWrite(message: DeleteCallMembersRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
939
|
+
}
|
|
940
|
+
/**
|
|
941
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.DeleteCallMembersRequest
|
|
942
|
+
*/
|
|
943
|
+
export declare const DeleteCallMembersRequest: DeleteCallMembersRequest$Type;
|
|
944
|
+
declare class DeleteCallMembersResponse$Type extends MessageType<DeleteCallMembersResponse> {
|
|
945
|
+
constructor();
|
|
946
|
+
create(value?: PartialMessage<DeleteCallMembersResponse>): DeleteCallMembersResponse;
|
|
947
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteCallMembersResponse): DeleteCallMembersResponse;
|
|
948
|
+
internalBinaryWrite(message: DeleteCallMembersResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
949
|
+
}
|
|
950
|
+
/**
|
|
951
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.DeleteCallMembersResponse
|
|
952
|
+
*/
|
|
953
|
+
export declare const DeleteCallMembersResponse: DeleteCallMembersResponse$Type;
|
|
954
|
+
declare class CreateCallInput$Type extends MessageType<CreateCallInput> {
|
|
955
|
+
constructor();
|
|
956
|
+
create(value?: PartialMessage<CreateCallInput>): CreateCallInput;
|
|
957
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateCallInput): CreateCallInput;
|
|
958
|
+
internalBinaryWrite(message: CreateCallInput, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
959
|
+
}
|
|
960
|
+
/**
|
|
961
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.CreateCallInput
|
|
962
|
+
*/
|
|
963
|
+
export declare const CreateCallInput: CreateCallInput$Type;
|
|
964
|
+
declare class CreateCallRequest$Type extends MessageType<CreateCallRequest> {
|
|
965
|
+
constructor();
|
|
966
|
+
create(value?: PartialMessage<CreateCallRequest>): CreateCallRequest;
|
|
967
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateCallRequest): CreateCallRequest;
|
|
968
|
+
internalBinaryWrite(message: CreateCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
969
|
+
}
|
|
970
|
+
/**
|
|
971
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.CreateCallRequest
|
|
972
|
+
*/
|
|
973
|
+
export declare const CreateCallRequest: CreateCallRequest$Type;
|
|
974
|
+
declare class GetOrCreateCallRequest$Type extends MessageType<GetOrCreateCallRequest> {
|
|
975
|
+
constructor();
|
|
976
|
+
create(value?: PartialMessage<GetOrCreateCallRequest>): GetOrCreateCallRequest;
|
|
977
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetOrCreateCallRequest): GetOrCreateCallRequest;
|
|
978
|
+
internalBinaryWrite(message: GetOrCreateCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetOrCreateCallRequest
|
|
982
|
+
*/
|
|
983
|
+
export declare const GetOrCreateCallRequest: GetOrCreateCallRequest$Type;
|
|
984
|
+
declare class JoinCallRequest$Type extends MessageType<JoinCallRequest> {
|
|
985
|
+
constructor();
|
|
986
|
+
create(value?: PartialMessage<JoinCallRequest>): JoinCallRequest;
|
|
987
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: JoinCallRequest): JoinCallRequest;
|
|
988
|
+
internalBinaryWrite(message: JoinCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
989
|
+
}
|
|
990
|
+
/**
|
|
991
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.JoinCallRequest
|
|
992
|
+
*/
|
|
993
|
+
export declare const JoinCallRequest: JoinCallRequest$Type;
|
|
994
|
+
declare class JoinCallResponse$Type extends MessageType<JoinCallResponse> {
|
|
995
|
+
constructor();
|
|
996
|
+
create(value?: PartialMessage<JoinCallResponse>): JoinCallResponse;
|
|
997
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: JoinCallResponse): JoinCallResponse;
|
|
998
|
+
internalBinaryWrite(message: JoinCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.JoinCallResponse
|
|
1002
|
+
*/
|
|
1003
|
+
export declare const JoinCallResponse: JoinCallResponse$Type;
|
|
1004
|
+
declare class CallInput$Type extends MessageType<CallInput> {
|
|
1005
|
+
constructor();
|
|
1006
|
+
create(value?: PartialMessage<CallInput>): CallInput;
|
|
1007
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CallInput): CallInput;
|
|
1008
|
+
internalBinaryWrite(message: CallInput, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1009
|
+
}
|
|
1010
|
+
/**
|
|
1011
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.CallInput
|
|
1012
|
+
*/
|
|
1013
|
+
export declare const CallInput: CallInput$Type;
|
|
1014
|
+
declare class GetOrCreateCallResponse$Type extends MessageType<GetOrCreateCallResponse> {
|
|
1015
|
+
constructor();
|
|
1016
|
+
create(value?: PartialMessage<GetOrCreateCallResponse>): GetOrCreateCallResponse;
|
|
1017
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetOrCreateCallResponse): GetOrCreateCallResponse;
|
|
1018
|
+
internalBinaryWrite(message: GetOrCreateCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1019
|
+
}
|
|
1020
|
+
/**
|
|
1021
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetOrCreateCallResponse
|
|
1022
|
+
*/
|
|
1023
|
+
export declare const GetOrCreateCallResponse: GetOrCreateCallResponse$Type;
|
|
1024
|
+
declare class UpdateCallRequest$Type extends MessageType<UpdateCallRequest> {
|
|
1025
|
+
constructor();
|
|
1026
|
+
create(value?: PartialMessage<UpdateCallRequest>): UpdateCallRequest;
|
|
1027
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateCallRequest): UpdateCallRequest;
|
|
1028
|
+
internalBinaryWrite(message: UpdateCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1029
|
+
}
|
|
1030
|
+
/**
|
|
1031
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallRequest
|
|
1032
|
+
*/
|
|
1033
|
+
export declare const UpdateCallRequest: UpdateCallRequest$Type;
|
|
1034
|
+
declare class UpdateCallResponse$Type extends MessageType<UpdateCallResponse> {
|
|
1035
|
+
constructor();
|
|
1036
|
+
create(value?: PartialMessage<UpdateCallResponse>): UpdateCallResponse;
|
|
1037
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateCallResponse): UpdateCallResponse;
|
|
1038
|
+
internalBinaryWrite(message: UpdateCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1039
|
+
}
|
|
1040
|
+
/**
|
|
1041
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallResponse
|
|
1042
|
+
*/
|
|
1043
|
+
export declare const UpdateCallResponse: UpdateCallResponse$Type;
|
|
1044
|
+
declare class RoleOverride$Type extends MessageType<RoleOverride> {
|
|
1045
|
+
constructor();
|
|
1046
|
+
create(value?: PartialMessage<RoleOverride>): RoleOverride;
|
|
1047
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RoleOverride): RoleOverride;
|
|
1048
|
+
internalBinaryWrite(message: RoleOverride, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1049
|
+
}
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.RoleOverride
|
|
1052
|
+
*/
|
|
1053
|
+
export declare const RoleOverride: RoleOverride$Type;
|
|
1054
|
+
declare class PermissionGrantOverride$Type extends MessageType<PermissionGrantOverride> {
|
|
1055
|
+
constructor();
|
|
1056
|
+
create(value?: PartialMessage<PermissionGrantOverride>): PermissionGrantOverride;
|
|
1057
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PermissionGrantOverride): PermissionGrantOverride;
|
|
1058
|
+
internalBinaryWrite(message: PermissionGrantOverride, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1059
|
+
}
|
|
1060
|
+
/**
|
|
1061
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.PermissionGrantOverride
|
|
1062
|
+
*/
|
|
1063
|
+
export declare const PermissionGrantOverride: PermissionGrantOverride$Type;
|
|
1064
|
+
declare class UpdateCallPermissionsRequest$Type extends MessageType<UpdateCallPermissionsRequest> {
|
|
1065
|
+
constructor();
|
|
1066
|
+
create(value?: PartialMessage<UpdateCallPermissionsRequest>): UpdateCallPermissionsRequest;
|
|
1067
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateCallPermissionsRequest): UpdateCallPermissionsRequest;
|
|
1068
|
+
internalBinaryWrite(message: UpdateCallPermissionsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1069
|
+
}
|
|
1070
|
+
/**
|
|
1071
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallPermissionsRequest
|
|
1072
|
+
*/
|
|
1073
|
+
export declare const UpdateCallPermissionsRequest: UpdateCallPermissionsRequest$Type;
|
|
1074
|
+
declare class UpdateCallPermissionsResponse$Type extends MessageType<UpdateCallPermissionsResponse> {
|
|
1075
|
+
constructor();
|
|
1076
|
+
create(value?: PartialMessage<UpdateCallPermissionsResponse>): UpdateCallPermissionsResponse;
|
|
1077
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateCallPermissionsResponse): UpdateCallPermissionsResponse;
|
|
1078
|
+
internalBinaryWrite(message: UpdateCallPermissionsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1079
|
+
}
|
|
1080
|
+
/**
|
|
1081
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpdateCallPermissionsResponse
|
|
1082
|
+
*/
|
|
1083
|
+
export declare const UpdateCallPermissionsResponse: UpdateCallPermissionsResponse$Type;
|
|
1084
|
+
declare class EndCallRequest$Type extends MessageType<EndCallRequest> {
|
|
1085
|
+
constructor();
|
|
1086
|
+
create(value?: PartialMessage<EndCallRequest>): EndCallRequest;
|
|
1087
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EndCallRequest): EndCallRequest;
|
|
1088
|
+
internalBinaryWrite(message: EndCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1089
|
+
}
|
|
1090
|
+
/**
|
|
1091
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.EndCallRequest
|
|
1092
|
+
*/
|
|
1093
|
+
export declare const EndCallRequest: EndCallRequest$Type;
|
|
1094
|
+
declare class EndCallResponse$Type extends MessageType<EndCallResponse> {
|
|
1095
|
+
constructor();
|
|
1096
|
+
create(value?: PartialMessage<EndCallResponse>): EndCallResponse;
|
|
1097
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EndCallResponse): EndCallResponse;
|
|
1098
|
+
internalBinaryWrite(message: EndCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1099
|
+
}
|
|
1100
|
+
/**
|
|
1101
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.EndCallResponse
|
|
1102
|
+
*/
|
|
1103
|
+
export declare const EndCallResponse: EndCallResponse$Type;
|
|
1104
|
+
declare class CreateCallResponse$Type extends MessageType<CreateCallResponse> {
|
|
1105
|
+
constructor();
|
|
1106
|
+
create(value?: PartialMessage<CreateCallResponse>): CreateCallResponse;
|
|
1107
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateCallResponse): CreateCallResponse;
|
|
1108
|
+
internalBinaryWrite(message: CreateCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1109
|
+
}
|
|
1110
|
+
/**
|
|
1111
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.CreateCallResponse
|
|
1112
|
+
*/
|
|
1113
|
+
export declare const CreateCallResponse: CreateCallResponse$Type;
|
|
1114
|
+
declare class QueryCallsRequest$Type extends MessageType<QueryCallsRequest> {
|
|
1115
|
+
constructor();
|
|
1116
|
+
create(value?: PartialMessage<QueryCallsRequest>): QueryCallsRequest;
|
|
1117
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryCallsRequest): QueryCallsRequest;
|
|
1118
|
+
internalBinaryWrite(message: QueryCallsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1119
|
+
}
|
|
1120
|
+
/**
|
|
1121
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryCallsRequest
|
|
1122
|
+
*/
|
|
1123
|
+
export declare const QueryCallsRequest: QueryCallsRequest$Type;
|
|
1124
|
+
declare class QueryCallsResponse$Type extends MessageType<QueryCallsResponse> {
|
|
1125
|
+
constructor();
|
|
1126
|
+
create(value?: PartialMessage<QueryCallsResponse>): QueryCallsResponse;
|
|
1127
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryCallsResponse): QueryCallsResponse;
|
|
1128
|
+
internalBinaryWrite(message: QueryCallsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1129
|
+
}
|
|
1130
|
+
/**
|
|
1131
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryCallsResponse
|
|
1132
|
+
*/
|
|
1133
|
+
export declare const QueryCallsResponse: QueryCallsResponse$Type;
|
|
1134
|
+
declare class QueryMembersRequest$Type extends MessageType<QueryMembersRequest> {
|
|
1135
|
+
constructor();
|
|
1136
|
+
create(value?: PartialMessage<QueryMembersRequest>): QueryMembersRequest;
|
|
1137
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryMembersRequest): QueryMembersRequest;
|
|
1138
|
+
internalBinaryWrite(message: QueryMembersRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1139
|
+
}
|
|
1140
|
+
/**
|
|
1141
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryMembersRequest
|
|
1142
|
+
*/
|
|
1143
|
+
export declare const QueryMembersRequest: QueryMembersRequest$Type;
|
|
1144
|
+
declare class QueryMembersResponse$Type extends MessageType<QueryMembersResponse> {
|
|
1145
|
+
constructor();
|
|
1146
|
+
create(value?: PartialMessage<QueryMembersResponse>): QueryMembersResponse;
|
|
1147
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryMembersResponse): QueryMembersResponse;
|
|
1148
|
+
internalBinaryWrite(message: QueryMembersResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1149
|
+
}
|
|
1150
|
+
/**
|
|
1151
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryMembersResponse
|
|
1152
|
+
*/
|
|
1153
|
+
export declare const QueryMembersResponse: QueryMembersResponse$Type;
|
|
1154
|
+
declare class QueryUsersRequest$Type extends MessageType<QueryUsersRequest> {
|
|
1155
|
+
constructor();
|
|
1156
|
+
create(value?: PartialMessage<QueryUsersRequest>): QueryUsersRequest;
|
|
1157
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryUsersRequest): QueryUsersRequest;
|
|
1158
|
+
internalBinaryWrite(message: QueryUsersRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryUsersRequest
|
|
1162
|
+
*/
|
|
1163
|
+
export declare const QueryUsersRequest: QueryUsersRequest$Type;
|
|
1164
|
+
declare class QueryUsersResponse$Type extends MessageType<QueryUsersResponse> {
|
|
1165
|
+
constructor();
|
|
1166
|
+
create(value?: PartialMessage<QueryUsersResponse>): QueryUsersResponse;
|
|
1167
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryUsersResponse): QueryUsersResponse;
|
|
1168
|
+
internalBinaryWrite(message: QueryUsersResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1169
|
+
}
|
|
1170
|
+
/**
|
|
1171
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryUsersResponse
|
|
1172
|
+
*/
|
|
1173
|
+
export declare const QueryUsersResponse: QueryUsersResponse$Type;
|
|
1174
|
+
declare class UpsertUsersRequest$Type extends MessageType<UpsertUsersRequest> {
|
|
1175
|
+
constructor();
|
|
1176
|
+
create(value?: PartialMessage<UpsertUsersRequest>): UpsertUsersRequest;
|
|
1177
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpsertUsersRequest): UpsertUsersRequest;
|
|
1178
|
+
internalBinaryWrite(message: UpsertUsersRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1179
|
+
}
|
|
1180
|
+
/**
|
|
1181
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpsertUsersRequest
|
|
1182
|
+
*/
|
|
1183
|
+
export declare const UpsertUsersRequest: UpsertUsersRequest$Type;
|
|
1184
|
+
declare class UpsertUsersResponse$Type extends MessageType<UpsertUsersResponse> {
|
|
1185
|
+
constructor();
|
|
1186
|
+
create(value?: PartialMessage<UpsertUsersResponse>): UpsertUsersResponse;
|
|
1187
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpsertUsersResponse): UpsertUsersResponse;
|
|
1188
|
+
internalBinaryWrite(message: UpsertUsersResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1189
|
+
}
|
|
1190
|
+
/**
|
|
1191
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.UpsertUsersResponse
|
|
1192
|
+
*/
|
|
1193
|
+
export declare const UpsertUsersResponse: UpsertUsersResponse$Type;
|
|
1194
|
+
declare class GetCallEdgeServerRequest$Type extends MessageType<GetCallEdgeServerRequest> {
|
|
1195
|
+
constructor();
|
|
1196
|
+
create(value?: PartialMessage<GetCallEdgeServerRequest>): GetCallEdgeServerRequest;
|
|
1197
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetCallEdgeServerRequest): GetCallEdgeServerRequest;
|
|
1198
|
+
internalBinaryWrite(message: GetCallEdgeServerRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1199
|
+
}
|
|
1200
|
+
/**
|
|
1201
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetCallEdgeServerRequest
|
|
1202
|
+
*/
|
|
1203
|
+
export declare const GetCallEdgeServerRequest: GetCallEdgeServerRequest$Type;
|
|
1204
|
+
declare class GetCallEdgeServerResponse$Type extends MessageType<GetCallEdgeServerResponse> {
|
|
1205
|
+
constructor();
|
|
1206
|
+
create(value?: PartialMessage<GetCallEdgeServerResponse>): GetCallEdgeServerResponse;
|
|
1207
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetCallEdgeServerResponse): GetCallEdgeServerResponse;
|
|
1208
|
+
internalBinaryWrite(message: GetCallEdgeServerResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1209
|
+
}
|
|
1210
|
+
/**
|
|
1211
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetCallEdgeServerResponse
|
|
1212
|
+
*/
|
|
1213
|
+
export declare const GetCallEdgeServerResponse: GetCallEdgeServerResponse$Type;
|
|
1214
|
+
declare class CreateDeviceRequest$Type extends MessageType<CreateDeviceRequest> {
|
|
1215
|
+
constructor();
|
|
1216
|
+
create(value?: PartialMessage<CreateDeviceRequest>): CreateDeviceRequest;
|
|
1217
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateDeviceRequest): CreateDeviceRequest;
|
|
1218
|
+
internalBinaryWrite(message: CreateDeviceRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1219
|
+
}
|
|
1220
|
+
/**
|
|
1221
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.CreateDeviceRequest
|
|
1222
|
+
*/
|
|
1223
|
+
export declare const CreateDeviceRequest: CreateDeviceRequest$Type;
|
|
1224
|
+
declare class CreateDeviceResponse$Type extends MessageType<CreateDeviceResponse> {
|
|
1225
|
+
constructor();
|
|
1226
|
+
create(value?: PartialMessage<CreateDeviceResponse>): CreateDeviceResponse;
|
|
1227
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateDeviceResponse): CreateDeviceResponse;
|
|
1228
|
+
internalBinaryWrite(message: CreateDeviceResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1229
|
+
}
|
|
1230
|
+
/**
|
|
1231
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.CreateDeviceResponse
|
|
1232
|
+
*/
|
|
1233
|
+
export declare const CreateDeviceResponse: CreateDeviceResponse$Type;
|
|
1234
|
+
declare class DeleteDeviceRequest$Type extends MessageType<DeleteDeviceRequest> {
|
|
1235
|
+
constructor();
|
|
1236
|
+
create(value?: PartialMessage<DeleteDeviceRequest>): DeleteDeviceRequest;
|
|
1237
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteDeviceRequest): DeleteDeviceRequest;
|
|
1238
|
+
internalBinaryWrite(message: DeleteDeviceRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1239
|
+
}
|
|
1240
|
+
/**
|
|
1241
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.DeleteDeviceRequest
|
|
1242
|
+
*/
|
|
1243
|
+
export declare const DeleteDeviceRequest: DeleteDeviceRequest$Type;
|
|
1244
|
+
declare class DeleteDeviceResponse$Type extends MessageType<DeleteDeviceResponse> {
|
|
1245
|
+
constructor();
|
|
1246
|
+
create(value?: PartialMessage<DeleteDeviceResponse>): DeleteDeviceResponse;
|
|
1247
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteDeviceResponse): DeleteDeviceResponse;
|
|
1248
|
+
internalBinaryWrite(message: DeleteDeviceResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1249
|
+
}
|
|
1250
|
+
/**
|
|
1251
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.DeleteDeviceResponse
|
|
1252
|
+
*/
|
|
1253
|
+
export declare const DeleteDeviceResponse: DeleteDeviceResponse$Type;
|
|
1254
|
+
declare class QueryDevicesRequest$Type extends MessageType<QueryDevicesRequest> {
|
|
1255
|
+
constructor();
|
|
1256
|
+
create(value?: PartialMessage<QueryDevicesRequest>): QueryDevicesRequest;
|
|
1257
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryDevicesRequest): QueryDevicesRequest;
|
|
1258
|
+
internalBinaryWrite(message: QueryDevicesRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1259
|
+
}
|
|
1260
|
+
/**
|
|
1261
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryDevicesRequest
|
|
1262
|
+
*/
|
|
1263
|
+
export declare const QueryDevicesRequest: QueryDevicesRequest$Type;
|
|
1264
|
+
declare class QueryDevicesResponse$Type extends MessageType<QueryDevicesResponse> {
|
|
1265
|
+
constructor();
|
|
1266
|
+
create(value?: PartialMessage<QueryDevicesResponse>): QueryDevicesResponse;
|
|
1267
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QueryDevicesResponse): QueryDevicesResponse;
|
|
1268
|
+
internalBinaryWrite(message: QueryDevicesResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.QueryDevicesResponse
|
|
1272
|
+
*/
|
|
1273
|
+
export declare const QueryDevicesResponse: QueryDevicesResponse$Type;
|
|
1274
|
+
declare class SendEventRequest$Type extends MessageType<SendEventRequest> {
|
|
1275
|
+
constructor();
|
|
1276
|
+
create(value?: PartialMessage<SendEventRequest>): SendEventRequest;
|
|
1277
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SendEventRequest): SendEventRequest;
|
|
1278
|
+
internalBinaryWrite(message: SendEventRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1279
|
+
}
|
|
1280
|
+
/**
|
|
1281
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.SendEventRequest
|
|
1282
|
+
*/
|
|
1283
|
+
export declare const SendEventRequest: SendEventRequest$Type;
|
|
1284
|
+
declare class SendEventResponse$Type extends MessageType<SendEventResponse> {
|
|
1285
|
+
constructor();
|
|
1286
|
+
create(value?: PartialMessage<SendEventResponse>): SendEventResponse;
|
|
1287
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SendEventResponse): SendEventResponse;
|
|
1288
|
+
internalBinaryWrite(message: SendEventResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1289
|
+
}
|
|
1290
|
+
/**
|
|
1291
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.SendEventResponse
|
|
1292
|
+
*/
|
|
1293
|
+
export declare const SendEventResponse: SendEventResponse$Type;
|
|
1294
|
+
declare class SendCustomEventRequest$Type extends MessageType<SendCustomEventRequest> {
|
|
1295
|
+
constructor();
|
|
1296
|
+
create(value?: PartialMessage<SendCustomEventRequest>): SendCustomEventRequest;
|
|
1297
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SendCustomEventRequest): SendCustomEventRequest;
|
|
1298
|
+
internalBinaryWrite(message: SendCustomEventRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1299
|
+
}
|
|
1300
|
+
/**
|
|
1301
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.SendCustomEventRequest
|
|
1302
|
+
*/
|
|
1303
|
+
export declare const SendCustomEventRequest: SendCustomEventRequest$Type;
|
|
1304
|
+
declare class SendCustomEventResponse$Type extends MessageType<SendCustomEventResponse> {
|
|
1305
|
+
constructor();
|
|
1306
|
+
create(value?: PartialMessage<SendCustomEventResponse>): SendCustomEventResponse;
|
|
1307
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SendCustomEventResponse): SendCustomEventResponse;
|
|
1308
|
+
internalBinaryWrite(message: SendCustomEventResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1309
|
+
}
|
|
1310
|
+
/**
|
|
1311
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.SendCustomEventResponse
|
|
1312
|
+
*/
|
|
1313
|
+
export declare const SendCustomEventResponse: SendCustomEventResponse$Type;
|
|
1314
|
+
declare class ReportCallStatsRequest$Type extends MessageType<ReportCallStatsRequest> {
|
|
1315
|
+
constructor();
|
|
1316
|
+
create(value?: PartialMessage<ReportCallStatsRequest>): ReportCallStatsRequest;
|
|
1317
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportCallStatsRequest): ReportCallStatsRequest;
|
|
1318
|
+
internalBinaryWrite(message: ReportCallStatsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1319
|
+
}
|
|
1320
|
+
/**
|
|
1321
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatsRequest
|
|
1322
|
+
*/
|
|
1323
|
+
export declare const ReportCallStatsRequest: ReportCallStatsRequest$Type;
|
|
1324
|
+
declare class ReportCallStatsResponse$Type extends MessageType<ReportCallStatsResponse> {
|
|
1325
|
+
constructor();
|
|
1326
|
+
create(value?: PartialMessage<ReportCallStatsResponse>): ReportCallStatsResponse;
|
|
1327
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportCallStatsResponse): ReportCallStatsResponse;
|
|
1328
|
+
internalBinaryWrite(message: ReportCallStatsResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1329
|
+
}
|
|
1330
|
+
/**
|
|
1331
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatsResponse
|
|
1332
|
+
*/
|
|
1333
|
+
export declare const ReportCallStatsResponse: ReportCallStatsResponse$Type;
|
|
1334
|
+
declare class ReportCallStatEventRequest$Type extends MessageType<ReportCallStatEventRequest> {
|
|
1335
|
+
constructor();
|
|
1336
|
+
create(value?: PartialMessage<ReportCallStatEventRequest>): ReportCallStatEventRequest;
|
|
1337
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportCallStatEventRequest): ReportCallStatEventRequest;
|
|
1338
|
+
internalBinaryWrite(message: ReportCallStatEventRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1339
|
+
}
|
|
1340
|
+
/**
|
|
1341
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatEventRequest
|
|
1342
|
+
*/
|
|
1343
|
+
export declare const ReportCallStatEventRequest: ReportCallStatEventRequest$Type;
|
|
1344
|
+
declare class ReportCallStatEventResponse$Type extends MessageType<ReportCallStatEventResponse> {
|
|
1345
|
+
constructor();
|
|
1346
|
+
create(value?: PartialMessage<ReportCallStatEventResponse>): ReportCallStatEventResponse;
|
|
1347
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportCallStatEventResponse): ReportCallStatEventResponse;
|
|
1348
|
+
internalBinaryWrite(message: ReportCallStatEventResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1349
|
+
}
|
|
1350
|
+
/**
|
|
1351
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReportCallStatEventResponse
|
|
1352
|
+
*/
|
|
1353
|
+
export declare const ReportCallStatEventResponse: ReportCallStatEventResponse$Type;
|
|
1354
|
+
declare class GetCallStatsRequest$Type extends MessageType<GetCallStatsRequest> {
|
|
1355
|
+
constructor();
|
|
1356
|
+
create(value?: PartialMessage<GetCallStatsRequest>): GetCallStatsRequest;
|
|
1357
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetCallStatsRequest): GetCallStatsRequest;
|
|
1358
|
+
internalBinaryWrite(message: GetCallStatsRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1359
|
+
}
|
|
1360
|
+
/**
|
|
1361
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.GetCallStatsRequest
|
|
1362
|
+
*/
|
|
1363
|
+
export declare const GetCallStatsRequest: GetCallStatsRequest$Type;
|
|
1364
|
+
declare class ReportIssueRequest$Type extends MessageType<ReportIssueRequest> {
|
|
1365
|
+
constructor();
|
|
1366
|
+
create(value?: PartialMessage<ReportIssueRequest>): ReportIssueRequest;
|
|
1367
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportIssueRequest): ReportIssueRequest;
|
|
1368
|
+
internalBinaryWrite(message: ReportIssueRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1369
|
+
}
|
|
1370
|
+
/**
|
|
1371
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReportIssueRequest
|
|
1372
|
+
*/
|
|
1373
|
+
export declare const ReportIssueRequest: ReportIssueRequest$Type;
|
|
1374
|
+
declare class ReportIssueResponse$Type extends MessageType<ReportIssueResponse> {
|
|
1375
|
+
constructor();
|
|
1376
|
+
create(value?: PartialMessage<ReportIssueResponse>): ReportIssueResponse;
|
|
1377
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportIssueResponse): ReportIssueResponse;
|
|
1378
|
+
internalBinaryWrite(message: ReportIssueResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1379
|
+
}
|
|
1380
|
+
/**
|
|
1381
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReportIssueResponse
|
|
1382
|
+
*/
|
|
1383
|
+
export declare const ReportIssueResponse: ReportIssueResponse$Type;
|
|
1384
|
+
declare class ReviewCallRequest$Type extends MessageType<ReviewCallRequest> {
|
|
1385
|
+
constructor();
|
|
1386
|
+
create(value?: PartialMessage<ReviewCallRequest>): ReviewCallRequest;
|
|
1387
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReviewCallRequest): ReviewCallRequest;
|
|
1388
|
+
internalBinaryWrite(message: ReviewCallRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1389
|
+
}
|
|
1390
|
+
/**
|
|
1391
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReviewCallRequest
|
|
1392
|
+
*/
|
|
1393
|
+
export declare const ReviewCallRequest: ReviewCallRequest$Type;
|
|
1394
|
+
declare class ReviewCallResponse$Type extends MessageType<ReviewCallResponse> {
|
|
1395
|
+
constructor();
|
|
1396
|
+
create(value?: PartialMessage<ReviewCallResponse>): ReviewCallResponse;
|
|
1397
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReviewCallResponse): ReviewCallResponse;
|
|
1398
|
+
internalBinaryWrite(message: ReviewCallResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1399
|
+
}
|
|
1400
|
+
/**
|
|
1401
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.ReviewCallResponse
|
|
1402
|
+
*/
|
|
1403
|
+
export declare const ReviewCallResponse: ReviewCallResponse$Type;
|
|
1404
|
+
declare class StartBroadcastRequest$Type extends MessageType<StartBroadcastRequest> {
|
|
1405
|
+
constructor();
|
|
1406
|
+
create(value?: PartialMessage<StartBroadcastRequest>): StartBroadcastRequest;
|
|
1407
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StartBroadcastRequest): StartBroadcastRequest;
|
|
1408
|
+
internalBinaryWrite(message: StartBroadcastRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1409
|
+
}
|
|
1410
|
+
/**
|
|
1411
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StartBroadcastRequest
|
|
1412
|
+
*/
|
|
1413
|
+
export declare const StartBroadcastRequest: StartBroadcastRequest$Type;
|
|
1414
|
+
declare class StartBroadcastResponse$Type extends MessageType<StartBroadcastResponse> {
|
|
1415
|
+
constructor();
|
|
1416
|
+
create(value?: PartialMessage<StartBroadcastResponse>): StartBroadcastResponse;
|
|
1417
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StartBroadcastResponse): StartBroadcastResponse;
|
|
1418
|
+
internalBinaryWrite(message: StartBroadcastResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1419
|
+
}
|
|
1420
|
+
/**
|
|
1421
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StartBroadcastResponse
|
|
1422
|
+
*/
|
|
1423
|
+
export declare const StartBroadcastResponse: StartBroadcastResponse$Type;
|
|
1424
|
+
declare class StopBroadcastRequest$Type extends MessageType<StopBroadcastRequest> {
|
|
1425
|
+
constructor();
|
|
1426
|
+
create(value?: PartialMessage<StopBroadcastRequest>): StopBroadcastRequest;
|
|
1427
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StopBroadcastRequest): StopBroadcastRequest;
|
|
1428
|
+
internalBinaryWrite(message: StopBroadcastRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1429
|
+
}
|
|
1430
|
+
/**
|
|
1431
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StopBroadcastRequest
|
|
1432
|
+
*/
|
|
1433
|
+
export declare const StopBroadcastRequest: StopBroadcastRequest$Type;
|
|
1434
|
+
declare class StopBroadcastResponse$Type extends MessageType<StopBroadcastResponse> {
|
|
1435
|
+
constructor();
|
|
1436
|
+
create(value?: PartialMessage<StopBroadcastResponse>): StopBroadcastResponse;
|
|
1437
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StopBroadcastResponse): StopBroadcastResponse;
|
|
1438
|
+
internalBinaryWrite(message: StopBroadcastResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1439
|
+
}
|
|
1440
|
+
/**
|
|
1441
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StopBroadcastResponse
|
|
1442
|
+
*/
|
|
1443
|
+
export declare const StopBroadcastResponse: StopBroadcastResponse$Type;
|
|
1444
|
+
declare class StartRecordingRequest$Type extends MessageType<StartRecordingRequest> {
|
|
1445
|
+
constructor();
|
|
1446
|
+
create(value?: PartialMessage<StartRecordingRequest>): StartRecordingRequest;
|
|
1447
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StartRecordingRequest): StartRecordingRequest;
|
|
1448
|
+
internalBinaryWrite(message: StartRecordingRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1449
|
+
}
|
|
1450
|
+
/**
|
|
1451
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StartRecordingRequest
|
|
1452
|
+
*/
|
|
1453
|
+
export declare const StartRecordingRequest: StartRecordingRequest$Type;
|
|
1454
|
+
declare class StartRecordingResponse$Type extends MessageType<StartRecordingResponse> {
|
|
1455
|
+
constructor();
|
|
1456
|
+
create(value?: PartialMessage<StartRecordingResponse>): StartRecordingResponse;
|
|
1457
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StartRecordingResponse): StartRecordingResponse;
|
|
1458
|
+
internalBinaryWrite(message: StartRecordingResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1459
|
+
}
|
|
1460
|
+
/**
|
|
1461
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StartRecordingResponse
|
|
1462
|
+
*/
|
|
1463
|
+
export declare const StartRecordingResponse: StartRecordingResponse$Type;
|
|
1464
|
+
declare class StopRecordingRequest$Type extends MessageType<StopRecordingRequest> {
|
|
1465
|
+
constructor();
|
|
1466
|
+
create(value?: PartialMessage<StopRecordingRequest>): StopRecordingRequest;
|
|
1467
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StopRecordingRequest): StopRecordingRequest;
|
|
1468
|
+
internalBinaryWrite(message: StopRecordingRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1469
|
+
}
|
|
1470
|
+
/**
|
|
1471
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StopRecordingRequest
|
|
1472
|
+
*/
|
|
1473
|
+
export declare const StopRecordingRequest: StopRecordingRequest$Type;
|
|
1474
|
+
declare class StopRecordingResponse$Type extends MessageType<StopRecordingResponse> {
|
|
1475
|
+
constructor();
|
|
1476
|
+
create(value?: PartialMessage<StopRecordingResponse>): StopRecordingResponse;
|
|
1477
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StopRecordingResponse): StopRecordingResponse;
|
|
1478
|
+
internalBinaryWrite(message: StopRecordingResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1479
|
+
}
|
|
1480
|
+
/**
|
|
1481
|
+
* @generated MessageType for protobuf message stream.video.coordinator.client_v1_rpc.StopRecordingResponse
|
|
1482
|
+
*/
|
|
1483
|
+
export declare const StopRecordingResponse: StopRecordingResponse$Type;
|
|
1484
|
+
/**
|
|
1485
|
+
* @generated ServiceType for protobuf service stream.video.coordinator.client_v1_rpc.ClientRPC
|
|
1486
|
+
*/
|
|
1487
|
+
export declare const ClientRPC: ServiceType;
|
|
1488
|
+
export {};
|