@dcl/protocol 1.0.0-19269458809.commit-593cbae → 1.0.0-19436779782.commit-4853e4c
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/out-js/decentraland/social_service/errors.gen.d.ts +96 -0
- package/out-js/decentraland/social_service/errors.gen.js +405 -0
- package/out-js/decentraland/social_service/errors.gen.js.map +1 -0
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.d.ts +1368 -32
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js +7118 -209
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js.map +1 -1
- package/out-ts/decentraland/social_service/errors.gen.ts +442 -0
- package/out-ts/decentraland/social_service/v2/social_service_v2.gen.ts +8946 -985
- package/package.json +2 -2
- package/proto/decentraland/social_service/errors.proto +30 -0
- package/proto/decentraland/social_service/v2/social_service_v2.proto +563 -11
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import _m0 from "protobufjs/minimal";
|
|
2
2
|
import { Empty } from "../../../google/protobuf/empty.gen";
|
|
3
|
+
import { ConflictingError, ForbiddenError, InternalServerError, InvalidFriendshipAction, InvalidRequest, NotFoundError, ProfileNotFound } from "../errors.gen";
|
|
3
4
|
export declare const protobufPackage = "decentraland.social_service.v2";
|
|
4
5
|
export declare enum ConnectivityStatus {
|
|
5
6
|
ONLINE = 0,
|
|
@@ -17,34 +18,75 @@ export declare enum FriendshipStatus {
|
|
|
17
18
|
REJECTED = 4,
|
|
18
19
|
DELETED = 5,
|
|
19
20
|
BLOCKED = 6,
|
|
21
|
+
NONE = 7,
|
|
22
|
+
BLOCKED_BY = 8,
|
|
20
23
|
UNRECOGNIZED = -1
|
|
21
24
|
}
|
|
22
25
|
export declare function friendshipStatusFromJSON(object: any): FriendshipStatus;
|
|
23
26
|
export declare function friendshipStatusToJSON(object: FriendshipStatus): string;
|
|
24
|
-
|
|
25
|
-
|
|
27
|
+
export declare enum PrivateMessagePrivacySetting {
|
|
28
|
+
ALL = 0,
|
|
29
|
+
ONLY_FRIENDS = 1,
|
|
30
|
+
UNRECOGNIZED = -1
|
|
31
|
+
}
|
|
32
|
+
export declare function privateMessagePrivacySettingFromJSON(object: any): PrivateMessagePrivacySetting;
|
|
33
|
+
export declare function privateMessagePrivacySettingToJSON(object: PrivateMessagePrivacySetting): string;
|
|
34
|
+
export declare enum BlockedUsersMessagesVisibilitySetting {
|
|
35
|
+
SHOW_MESSAGES = 0,
|
|
36
|
+
DO_NOT_SHOW_MESSAGES = 1,
|
|
37
|
+
UNRECOGNIZED = -1
|
|
26
38
|
}
|
|
27
|
-
export
|
|
39
|
+
export declare function blockedUsersMessagesVisibilitySettingFromJSON(object: any): BlockedUsersMessagesVisibilitySetting;
|
|
40
|
+
export declare function blockedUsersMessagesVisibilitySettingToJSON(object: BlockedUsersMessagesVisibilitySetting): string;
|
|
41
|
+
export declare enum PrivateVoiceChatStatus {
|
|
42
|
+
VOICE_CHAT_REQUESTED = 0,
|
|
43
|
+
VOICE_CHAT_ACCEPTED = 1,
|
|
44
|
+
VOICE_CHAT_REJECTED = 2,
|
|
45
|
+
VOICE_CHAT_ENDED = 3,
|
|
46
|
+
VOICE_CHAT_EXPIRED = 4,
|
|
47
|
+
UNRECOGNIZED = -1
|
|
28
48
|
}
|
|
49
|
+
export declare function privateVoiceChatStatusFromJSON(object: any): PrivateVoiceChatStatus;
|
|
50
|
+
export declare function privateVoiceChatStatusToJSON(object: PrivateVoiceChatStatus): string;
|
|
51
|
+
export declare enum CommunityVoiceChatStatus {
|
|
52
|
+
COMMUNITY_VOICE_CHAT_STARTED = 0,
|
|
53
|
+
COMMUNITY_VOICE_CHAT_ENDED = 1,
|
|
54
|
+
UNRECOGNIZED = -1
|
|
55
|
+
}
|
|
56
|
+
export declare function communityVoiceChatStatusFromJSON(object: any): CommunityVoiceChatStatus;
|
|
57
|
+
export declare function communityVoiceChatStatusToJSON(object: CommunityVoiceChatStatus): string;
|
|
29
58
|
/** Types */
|
|
30
59
|
export interface User {
|
|
31
60
|
address: string;
|
|
32
61
|
}
|
|
62
|
+
export interface FriendProfile {
|
|
63
|
+
address: string;
|
|
64
|
+
name: string;
|
|
65
|
+
hasClaimedName: boolean;
|
|
66
|
+
profilePictureUrl: string;
|
|
67
|
+
}
|
|
68
|
+
export interface BlockedUserProfile {
|
|
69
|
+
address: string;
|
|
70
|
+
name: string;
|
|
71
|
+
hasClaimedName: boolean;
|
|
72
|
+
profilePictureUrl: string;
|
|
73
|
+
blockedAt?: number | undefined;
|
|
74
|
+
}
|
|
33
75
|
export interface Pagination {
|
|
34
76
|
limit: number;
|
|
35
77
|
offset: number;
|
|
36
78
|
}
|
|
37
79
|
export interface FriendshipRequestResponse {
|
|
38
|
-
|
|
80
|
+
friend: FriendProfile | undefined;
|
|
39
81
|
createdAt: number;
|
|
40
82
|
message?: string | undefined;
|
|
83
|
+
id: string;
|
|
41
84
|
}
|
|
42
85
|
export interface FriendshipRequests {
|
|
43
86
|
requests: FriendshipRequestResponse[];
|
|
44
87
|
}
|
|
45
88
|
export interface GetFriendsPayload {
|
|
46
89
|
pagination?: Pagination | undefined;
|
|
47
|
-
status?: ConnectivityStatus | undefined;
|
|
48
90
|
}
|
|
49
91
|
export interface GetFriendshipRequestsPayload {
|
|
50
92
|
pagination?: Pagination | undefined;
|
|
@@ -91,8 +133,8 @@ export interface PaginatedResponse {
|
|
|
91
133
|
total: number;
|
|
92
134
|
page: number;
|
|
93
135
|
}
|
|
94
|
-
export interface
|
|
95
|
-
|
|
136
|
+
export interface PaginatedFriendsProfilesResponse {
|
|
137
|
+
friends: FriendProfile[];
|
|
96
138
|
paginationData: PaginatedResponse | undefined;
|
|
97
139
|
}
|
|
98
140
|
export interface PaginatedFriendshipRequestsResponse {
|
|
@@ -115,16 +157,21 @@ export interface UpsertFriendshipResponse {
|
|
|
115
157
|
} | {
|
|
116
158
|
$case: "internalServerError";
|
|
117
159
|
internalServerError: InternalServerError;
|
|
160
|
+
} | {
|
|
161
|
+
$case: "invalidRequest";
|
|
162
|
+
invalidRequest: InvalidRequest;
|
|
118
163
|
} | undefined;
|
|
119
164
|
}
|
|
120
165
|
export interface UpsertFriendshipResponse_Accepted {
|
|
121
166
|
id: string;
|
|
122
167
|
createdAt: number;
|
|
168
|
+
friend: FriendProfile | undefined;
|
|
169
|
+
message?: string | undefined;
|
|
123
170
|
}
|
|
124
171
|
export interface FriendshipUpdate {
|
|
125
172
|
update?: {
|
|
126
173
|
$case: "request";
|
|
127
|
-
request:
|
|
174
|
+
request: FriendshipUpdate_RequestResponse;
|
|
128
175
|
} | {
|
|
129
176
|
$case: "accept";
|
|
130
177
|
accept: FriendshipUpdate_AcceptResponse;
|
|
@@ -137,8 +184,17 @@ export interface FriendshipUpdate {
|
|
|
137
184
|
} | {
|
|
138
185
|
$case: "cancel";
|
|
139
186
|
cancel: FriendshipUpdate_CancelResponse;
|
|
187
|
+
} | {
|
|
188
|
+
$case: "block";
|
|
189
|
+
block: FriendshipUpdate_BlockResponse;
|
|
140
190
|
} | undefined;
|
|
141
191
|
}
|
|
192
|
+
export interface FriendshipUpdate_RequestResponse {
|
|
193
|
+
friend: FriendProfile | undefined;
|
|
194
|
+
createdAt: number;
|
|
195
|
+
message?: string | undefined;
|
|
196
|
+
id: string;
|
|
197
|
+
}
|
|
142
198
|
export interface FriendshipUpdate_AcceptResponse {
|
|
143
199
|
user: User | undefined;
|
|
144
200
|
}
|
|
@@ -151,6 +207,13 @@ export interface FriendshipUpdate_DeleteResponse {
|
|
|
151
207
|
export interface FriendshipUpdate_CancelResponse {
|
|
152
208
|
user: User | undefined;
|
|
153
209
|
}
|
|
210
|
+
export interface FriendshipUpdate_BlockResponse {
|
|
211
|
+
user: User | undefined;
|
|
212
|
+
}
|
|
213
|
+
export interface FriendConnectivityUpdate {
|
|
214
|
+
friend: FriendProfile | undefined;
|
|
215
|
+
status: ConnectivityStatus;
|
|
216
|
+
}
|
|
154
217
|
export interface GetFriendshipStatusPayload {
|
|
155
218
|
user: User | undefined;
|
|
156
219
|
}
|
|
@@ -161,27 +224,510 @@ export interface GetFriendshipStatusResponse {
|
|
|
161
224
|
} | {
|
|
162
225
|
$case: "internalServerError";
|
|
163
226
|
internalServerError: InternalServerError;
|
|
227
|
+
} | {
|
|
228
|
+
$case: "invalidRequest";
|
|
229
|
+
invalidRequest: InvalidRequest;
|
|
164
230
|
} | undefined;
|
|
165
231
|
}
|
|
166
232
|
export interface GetFriendshipStatusResponse_Ok {
|
|
167
233
|
status: FriendshipStatus;
|
|
168
234
|
message?: string | undefined;
|
|
169
235
|
}
|
|
170
|
-
export
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
236
|
+
export interface BlockUserPayload {
|
|
237
|
+
user: User | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface BlockUserResponse {
|
|
240
|
+
response?: {
|
|
241
|
+
$case: "ok";
|
|
242
|
+
ok: BlockUserResponse_Ok;
|
|
243
|
+
} | {
|
|
244
|
+
$case: "internalServerError";
|
|
245
|
+
internalServerError: InternalServerError;
|
|
246
|
+
} | {
|
|
247
|
+
$case: "invalidRequest";
|
|
248
|
+
invalidRequest: InvalidRequest;
|
|
249
|
+
} | {
|
|
250
|
+
$case: "profileNotFound";
|
|
251
|
+
profileNotFound: ProfileNotFound;
|
|
252
|
+
} | undefined;
|
|
253
|
+
}
|
|
254
|
+
export interface BlockUserResponse_Ok {
|
|
255
|
+
profile: BlockedUserProfile | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface UnblockUserPayload {
|
|
258
|
+
user: User | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface UnblockUserResponse {
|
|
261
|
+
response?: {
|
|
262
|
+
$case: "ok";
|
|
263
|
+
ok: UnblockUserResponse_Ok;
|
|
264
|
+
} | {
|
|
265
|
+
$case: "internalServerError";
|
|
266
|
+
internalServerError: InternalServerError;
|
|
267
|
+
} | {
|
|
268
|
+
$case: "invalidRequest";
|
|
269
|
+
invalidRequest: InvalidRequest;
|
|
270
|
+
} | {
|
|
271
|
+
$case: "profileNotFound";
|
|
272
|
+
profileNotFound: ProfileNotFound;
|
|
273
|
+
} | undefined;
|
|
274
|
+
}
|
|
275
|
+
export interface UnblockUserResponse_Ok {
|
|
276
|
+
profile: BlockedUserProfile | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface SocialSettings {
|
|
279
|
+
privateMessagesPrivacy: PrivateMessagePrivacySetting;
|
|
280
|
+
blockedUsersMessagesVisibility: BlockedUsersMessagesVisibilitySetting;
|
|
281
|
+
}
|
|
282
|
+
export interface GetSocialSettingsResponse {
|
|
283
|
+
response?: {
|
|
284
|
+
$case: "ok";
|
|
285
|
+
ok: GetSocialSettingsResponse_Ok;
|
|
286
|
+
} | {
|
|
287
|
+
$case: "internalServerError";
|
|
288
|
+
internalServerError: InternalServerError;
|
|
289
|
+
} | undefined;
|
|
290
|
+
}
|
|
291
|
+
export interface GetSocialSettingsResponse_Ok {
|
|
292
|
+
settings: SocialSettings | undefined;
|
|
293
|
+
}
|
|
294
|
+
export interface UpsertSocialSettingsPayload {
|
|
295
|
+
privateMessagesPrivacy?: PrivateMessagePrivacySetting | undefined;
|
|
296
|
+
blockedUsersMessagesVisibility?: BlockedUsersMessagesVisibilitySetting | undefined;
|
|
297
|
+
}
|
|
298
|
+
export interface UpsertSocialSettingsResponse {
|
|
299
|
+
response?: {
|
|
300
|
+
$case: "ok";
|
|
301
|
+
ok: SocialSettings;
|
|
302
|
+
} | {
|
|
303
|
+
$case: "internalServerError";
|
|
304
|
+
internalServerError: InternalServerError;
|
|
305
|
+
} | {
|
|
306
|
+
$case: "invalidRequest";
|
|
307
|
+
invalidRequest: InvalidRequest;
|
|
308
|
+
} | undefined;
|
|
309
|
+
}
|
|
310
|
+
export interface GetPrivateMessagesSettingsPayload {
|
|
311
|
+
user: User[];
|
|
312
|
+
}
|
|
313
|
+
export interface GetPrivateMessagesSettingsResponse {
|
|
314
|
+
response?: {
|
|
315
|
+
$case: "ok";
|
|
316
|
+
ok: GetPrivateMessagesSettingsResponse_Ok;
|
|
317
|
+
} | {
|
|
318
|
+
$case: "internalServerError";
|
|
319
|
+
internalServerError: InternalServerError;
|
|
320
|
+
} | {
|
|
321
|
+
$case: "invalidRequest";
|
|
322
|
+
invalidRequest: InvalidRequest;
|
|
323
|
+
} | {
|
|
324
|
+
$case: "profileNotFound";
|
|
325
|
+
profileNotFound: ProfileNotFound;
|
|
326
|
+
} | undefined;
|
|
327
|
+
}
|
|
328
|
+
export interface GetPrivateMessagesSettingsResponse_PrivateMessagesSettings {
|
|
329
|
+
user: User | undefined;
|
|
330
|
+
privateMessagesPrivacy: PrivateMessagePrivacySetting;
|
|
331
|
+
isFriend: boolean;
|
|
332
|
+
}
|
|
333
|
+
export interface GetPrivateMessagesSettingsResponse_Ok {
|
|
334
|
+
settings: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings[];
|
|
335
|
+
}
|
|
336
|
+
export interface GetBlockedUsersPayload {
|
|
337
|
+
pagination?: Pagination | undefined;
|
|
338
|
+
}
|
|
339
|
+
export interface GetBlockedUsersResponse {
|
|
340
|
+
profiles: BlockedUserProfile[];
|
|
341
|
+
paginationData: PaginatedResponse | undefined;
|
|
342
|
+
}
|
|
343
|
+
export interface GetBlockingStatusResponse {
|
|
344
|
+
blockedUsers: string[];
|
|
345
|
+
blockedByUsers: string[];
|
|
346
|
+
}
|
|
347
|
+
export interface BlockUpdate {
|
|
348
|
+
address: string;
|
|
349
|
+
isBlocked: boolean;
|
|
350
|
+
}
|
|
351
|
+
export interface CommunityMemberConnectivityUpdate {
|
|
352
|
+
communityId: string;
|
|
353
|
+
member: User | undefined;
|
|
354
|
+
status: ConnectivityStatus;
|
|
355
|
+
}
|
|
356
|
+
export interface StartPrivateVoiceChatPayload {
|
|
357
|
+
callee: User | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface StartPrivateVoiceChatResponse {
|
|
360
|
+
response?: {
|
|
361
|
+
$case: "ok";
|
|
362
|
+
ok: StartPrivateVoiceChatResponse_Ok;
|
|
363
|
+
} | {
|
|
364
|
+
$case: "internalServerError";
|
|
365
|
+
internalServerError: InternalServerError;
|
|
366
|
+
} | {
|
|
367
|
+
$case: "invalidRequest";
|
|
368
|
+
invalidRequest: InvalidRequest;
|
|
369
|
+
} | {
|
|
370
|
+
$case: "conflictingError";
|
|
371
|
+
conflictingError: ConflictingError;
|
|
372
|
+
} | {
|
|
373
|
+
$case: "forbiddenError";
|
|
374
|
+
forbiddenError: ForbiddenError;
|
|
375
|
+
} | undefined;
|
|
376
|
+
}
|
|
377
|
+
export interface StartPrivateVoiceChatResponse_Ok {
|
|
378
|
+
callId: string;
|
|
379
|
+
}
|
|
380
|
+
export interface AcceptPrivateVoiceChatPayload {
|
|
381
|
+
callId: string;
|
|
382
|
+
}
|
|
383
|
+
export interface AcceptPrivateVoiceChatResponse {
|
|
384
|
+
response?: {
|
|
385
|
+
$case: "ok";
|
|
386
|
+
ok: AcceptPrivateVoiceChatResponse_Ok;
|
|
387
|
+
} | {
|
|
388
|
+
$case: "internalServerError";
|
|
389
|
+
internalServerError: InternalServerError;
|
|
390
|
+
} | {
|
|
391
|
+
$case: "invalidRequest";
|
|
392
|
+
invalidRequest: InvalidRequest;
|
|
393
|
+
} | {
|
|
394
|
+
$case: "notFound";
|
|
395
|
+
notFound: NotFoundError;
|
|
396
|
+
} | {
|
|
397
|
+
$case: "forbiddenError";
|
|
398
|
+
forbiddenError: ForbiddenError;
|
|
399
|
+
} | undefined;
|
|
400
|
+
}
|
|
401
|
+
export interface AcceptPrivateVoiceChatResponse_Ok {
|
|
402
|
+
callId: string;
|
|
403
|
+
credentials: PrivateVoiceChatCredentials | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface RejectPrivateVoiceChatPayload {
|
|
406
|
+
callId: string;
|
|
407
|
+
}
|
|
408
|
+
export interface RejectPrivateVoiceChatResponse {
|
|
409
|
+
response?: {
|
|
410
|
+
$case: "ok";
|
|
411
|
+
ok: RejectPrivateVoiceChatResponse_Ok;
|
|
412
|
+
} | {
|
|
413
|
+
$case: "internalServerError";
|
|
414
|
+
internalServerError: InternalServerError;
|
|
415
|
+
} | {
|
|
416
|
+
$case: "invalidRequest";
|
|
417
|
+
invalidRequest: InvalidRequest;
|
|
418
|
+
} | {
|
|
419
|
+
$case: "notFound";
|
|
420
|
+
notFound: NotFoundError;
|
|
421
|
+
} | undefined;
|
|
422
|
+
}
|
|
423
|
+
export interface RejectPrivateVoiceChatResponse_Ok {
|
|
424
|
+
callId: string;
|
|
425
|
+
}
|
|
426
|
+
export interface PrivateVoiceChatCredentials {
|
|
427
|
+
connectionUrl: string;
|
|
428
|
+
}
|
|
429
|
+
export interface PrivateVoiceChatUpdate {
|
|
430
|
+
callId: string;
|
|
431
|
+
status: PrivateVoiceChatStatus;
|
|
432
|
+
caller?: User | undefined;
|
|
433
|
+
callee?: User | undefined;
|
|
434
|
+
credentials?: PrivateVoiceChatCredentials | undefined;
|
|
435
|
+
}
|
|
436
|
+
export interface EndPrivateVoiceChatPayload {
|
|
437
|
+
callId: string;
|
|
438
|
+
}
|
|
439
|
+
export interface EndPrivateVoiceChatResponse {
|
|
440
|
+
response?: {
|
|
441
|
+
$case: "ok";
|
|
442
|
+
ok: EndPrivateVoiceChatResponse_Ok;
|
|
443
|
+
} | {
|
|
444
|
+
$case: "internalServerError";
|
|
445
|
+
internalServerError: InternalServerError;
|
|
446
|
+
} | {
|
|
447
|
+
$case: "notFound";
|
|
448
|
+
notFound: NotFoundError;
|
|
449
|
+
} | undefined;
|
|
450
|
+
}
|
|
451
|
+
export interface EndPrivateVoiceChatResponse_Ok {
|
|
452
|
+
callId: string;
|
|
453
|
+
}
|
|
454
|
+
export interface GetIncomingPrivateVoiceChatRequestResponse {
|
|
455
|
+
response?: {
|
|
456
|
+
$case: "ok";
|
|
457
|
+
ok: GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
458
|
+
} | {
|
|
459
|
+
$case: "notFound";
|
|
460
|
+
notFound: NotFoundError;
|
|
461
|
+
} | {
|
|
462
|
+
$case: "internalServerError";
|
|
463
|
+
internalServerError: InternalServerError;
|
|
464
|
+
} | undefined;
|
|
465
|
+
}
|
|
466
|
+
export interface GetIncomingPrivateVoiceChatRequestResponse_Ok {
|
|
467
|
+
caller: User | undefined;
|
|
468
|
+
callId: string;
|
|
469
|
+
}
|
|
470
|
+
/** Community voice chat credentials - specific type for community chats */
|
|
471
|
+
export interface CommunityVoiceChatCredentials {
|
|
472
|
+
connectionUrl: string;
|
|
473
|
+
}
|
|
474
|
+
/** Starting a community voice chat */
|
|
475
|
+
export interface StartCommunityVoiceChatPayload {
|
|
476
|
+
communityId: string;
|
|
477
|
+
}
|
|
478
|
+
export interface StartCommunityVoiceChatResponse {
|
|
479
|
+
response?: {
|
|
480
|
+
$case: "ok";
|
|
481
|
+
ok: StartCommunityVoiceChatResponse_Ok;
|
|
482
|
+
} | {
|
|
483
|
+
$case: "invalidRequest";
|
|
484
|
+
invalidRequest: InvalidRequest;
|
|
485
|
+
} | {
|
|
486
|
+
$case: "forbiddenError";
|
|
487
|
+
forbiddenError: ForbiddenError;
|
|
488
|
+
} | {
|
|
489
|
+
$case: "conflictingError";
|
|
490
|
+
conflictingError: ConflictingError;
|
|
491
|
+
} | {
|
|
492
|
+
$case: "internalServerError";
|
|
493
|
+
internalServerError: InternalServerError;
|
|
494
|
+
} | undefined;
|
|
495
|
+
}
|
|
496
|
+
export interface StartCommunityVoiceChatResponse_Ok {
|
|
497
|
+
/** Moderator gets credentials immediately */
|
|
498
|
+
credentials: CommunityVoiceChatCredentials | undefined;
|
|
499
|
+
}
|
|
500
|
+
/** Joining a community voice chat */
|
|
501
|
+
export interface JoinCommunityVoiceChatPayload {
|
|
502
|
+
communityId: string;
|
|
503
|
+
}
|
|
504
|
+
export interface JoinCommunityVoiceChatResponse {
|
|
505
|
+
response?: {
|
|
506
|
+
$case: "ok";
|
|
507
|
+
ok: JoinCommunityVoiceChatResponse_Ok;
|
|
508
|
+
} | {
|
|
509
|
+
$case: "invalidRequest";
|
|
510
|
+
invalidRequest: InvalidRequest;
|
|
511
|
+
} | {
|
|
512
|
+
$case: "forbiddenError";
|
|
513
|
+
forbiddenError: ForbiddenError;
|
|
514
|
+
} | {
|
|
515
|
+
$case: "notFoundError";
|
|
516
|
+
notFoundError: NotFoundError;
|
|
517
|
+
} | {
|
|
518
|
+
$case: "conflictingError";
|
|
519
|
+
conflictingError: ConflictingError;
|
|
520
|
+
} | {
|
|
521
|
+
$case: "internalServerError";
|
|
522
|
+
internalServerError: InternalServerError;
|
|
523
|
+
} | undefined;
|
|
524
|
+
}
|
|
525
|
+
export interface JoinCommunityVoiceChatResponse_Ok {
|
|
526
|
+
voiceChatId: string;
|
|
527
|
+
credentials: CommunityVoiceChatCredentials | undefined;
|
|
528
|
+
}
|
|
529
|
+
/** Request to speak in community voice chat */
|
|
530
|
+
export interface RequestToSpeakInCommunityVoiceChatPayload {
|
|
531
|
+
communityId: string;
|
|
532
|
+
/** true to raise hand (request to speak), false to lower hand (withdraw request) */
|
|
533
|
+
isRaisingHand: boolean;
|
|
534
|
+
}
|
|
535
|
+
export interface RequestToSpeakInCommunityVoiceChatResponse {
|
|
536
|
+
response?: {
|
|
537
|
+
$case: "ok";
|
|
538
|
+
ok: RequestToSpeakInCommunityVoiceChatResponse_Ok;
|
|
539
|
+
} | {
|
|
540
|
+
$case: "invalidRequest";
|
|
541
|
+
invalidRequest: InvalidRequest;
|
|
542
|
+
} | {
|
|
543
|
+
$case: "forbiddenError";
|
|
544
|
+
forbiddenError: ForbiddenError;
|
|
545
|
+
} | {
|
|
546
|
+
$case: "notFoundError";
|
|
547
|
+
notFoundError: NotFoundError;
|
|
548
|
+
} | {
|
|
549
|
+
$case: "internalServerError";
|
|
550
|
+
internalServerError: InternalServerError;
|
|
551
|
+
} | undefined;
|
|
552
|
+
}
|
|
553
|
+
export interface RequestToSpeakInCommunityVoiceChatResponse_Ok {
|
|
554
|
+
message: string;
|
|
555
|
+
}
|
|
556
|
+
/** Promote speaker in community voice chat */
|
|
557
|
+
export interface PromoteSpeakerInCommunityVoiceChatPayload {
|
|
558
|
+
communityId: string;
|
|
559
|
+
userAddress: string;
|
|
560
|
+
}
|
|
561
|
+
export interface PromoteSpeakerInCommunityVoiceChatResponse {
|
|
562
|
+
response?: {
|
|
563
|
+
$case: "ok";
|
|
564
|
+
ok: PromoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
565
|
+
} | {
|
|
566
|
+
$case: "invalidRequest";
|
|
567
|
+
invalidRequest: InvalidRequest;
|
|
568
|
+
} | {
|
|
569
|
+
$case: "forbiddenError";
|
|
570
|
+
forbiddenError: ForbiddenError;
|
|
571
|
+
} | {
|
|
572
|
+
$case: "notFoundError";
|
|
573
|
+
notFoundError: NotFoundError;
|
|
574
|
+
} | {
|
|
575
|
+
$case: "internalServerError";
|
|
576
|
+
internalServerError: InternalServerError;
|
|
577
|
+
} | undefined;
|
|
578
|
+
}
|
|
579
|
+
export interface PromoteSpeakerInCommunityVoiceChatResponse_Ok {
|
|
580
|
+
message: string;
|
|
581
|
+
}
|
|
582
|
+
/** Demote speaker in community voice chat */
|
|
583
|
+
export interface DemoteSpeakerInCommunityVoiceChatPayload {
|
|
584
|
+
communityId: string;
|
|
585
|
+
userAddress: string;
|
|
586
|
+
}
|
|
587
|
+
export interface DemoteSpeakerInCommunityVoiceChatResponse {
|
|
588
|
+
response?: {
|
|
589
|
+
$case: "ok";
|
|
590
|
+
ok: DemoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
591
|
+
} | {
|
|
592
|
+
$case: "invalidRequest";
|
|
593
|
+
invalidRequest: InvalidRequest;
|
|
594
|
+
} | {
|
|
595
|
+
$case: "forbiddenError";
|
|
596
|
+
forbiddenError: ForbiddenError;
|
|
597
|
+
} | {
|
|
598
|
+
$case: "notFoundError";
|
|
599
|
+
notFoundError: NotFoundError;
|
|
600
|
+
} | {
|
|
601
|
+
$case: "internalServerError";
|
|
602
|
+
internalServerError: InternalServerError;
|
|
603
|
+
} | undefined;
|
|
604
|
+
}
|
|
605
|
+
export interface DemoteSpeakerInCommunityVoiceChatResponse_Ok {
|
|
606
|
+
message: string;
|
|
607
|
+
}
|
|
608
|
+
/** Kick player from community voice chat */
|
|
609
|
+
export interface KickPlayerFromCommunityVoiceChatPayload {
|
|
610
|
+
communityId: string;
|
|
611
|
+
userAddress: string;
|
|
612
|
+
}
|
|
613
|
+
export interface KickPlayerFromCommunityVoiceChatResponse {
|
|
614
|
+
response?: {
|
|
615
|
+
$case: "ok";
|
|
616
|
+
ok: KickPlayerFromCommunityVoiceChatResponse_Ok;
|
|
617
|
+
} | {
|
|
618
|
+
$case: "invalidRequest";
|
|
619
|
+
invalidRequest: InvalidRequest;
|
|
620
|
+
} | {
|
|
621
|
+
$case: "forbiddenError";
|
|
622
|
+
forbiddenError: ForbiddenError;
|
|
623
|
+
} | {
|
|
624
|
+
$case: "notFoundError";
|
|
625
|
+
notFoundError: NotFoundError;
|
|
626
|
+
} | {
|
|
627
|
+
$case: "internalServerError";
|
|
628
|
+
internalServerError: InternalServerError;
|
|
629
|
+
} | undefined;
|
|
630
|
+
}
|
|
631
|
+
export interface KickPlayerFromCommunityVoiceChatResponse_Ok {
|
|
632
|
+
message: string;
|
|
633
|
+
}
|
|
634
|
+
/** Reject speak request in community voice chat */
|
|
635
|
+
export interface RejectSpeakRequestInCommunityVoiceChatPayload {
|
|
636
|
+
communityId: string;
|
|
637
|
+
userAddress: string;
|
|
638
|
+
}
|
|
639
|
+
export interface RejectSpeakRequestInCommunityVoiceChatResponse {
|
|
640
|
+
response?: {
|
|
641
|
+
$case: "ok";
|
|
642
|
+
ok: RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
|
|
643
|
+
} | {
|
|
644
|
+
$case: "invalidRequest";
|
|
645
|
+
invalidRequest: InvalidRequest;
|
|
646
|
+
} | {
|
|
647
|
+
$case: "forbiddenError";
|
|
648
|
+
forbiddenError: ForbiddenError;
|
|
649
|
+
} | {
|
|
650
|
+
$case: "notFoundError";
|
|
651
|
+
notFoundError: NotFoundError;
|
|
652
|
+
} | {
|
|
653
|
+
$case: "internalServerError";
|
|
654
|
+
internalServerError: InternalServerError;
|
|
655
|
+
} | undefined;
|
|
656
|
+
}
|
|
657
|
+
export interface RejectSpeakRequestInCommunityVoiceChatResponse_Ok {
|
|
658
|
+
message: string;
|
|
659
|
+
}
|
|
660
|
+
/** Community Voice Chat Messages */
|
|
661
|
+
export interface MuteSpeakerFromCommunityVoiceChatPayload {
|
|
662
|
+
communityId: string;
|
|
663
|
+
userAddress: string;
|
|
664
|
+
muted: boolean;
|
|
665
|
+
}
|
|
666
|
+
export interface MuteSpeakerFromCommunityVoiceChatResponse {
|
|
667
|
+
response?: {
|
|
668
|
+
$case: "ok";
|
|
669
|
+
ok: MuteSpeakerFromCommunityVoiceChatResponse_Ok;
|
|
670
|
+
} | {
|
|
671
|
+
$case: "forbiddenError";
|
|
672
|
+
forbiddenError: ForbiddenError;
|
|
673
|
+
} | {
|
|
674
|
+
$case: "notFoundError";
|
|
675
|
+
notFoundError: NotFoundError;
|
|
676
|
+
} | {
|
|
677
|
+
$case: "invalidRequest";
|
|
678
|
+
invalidRequest: InvalidRequest;
|
|
679
|
+
} | {
|
|
680
|
+
$case: "internalServerError";
|
|
681
|
+
internalServerError: InternalServerError;
|
|
682
|
+
} | undefined;
|
|
683
|
+
}
|
|
684
|
+
export interface MuteSpeakerFromCommunityVoiceChatResponse_Ok {
|
|
685
|
+
/** The resulting mute state */
|
|
686
|
+
muted: boolean;
|
|
687
|
+
}
|
|
688
|
+
/** End community voice chat (moderator/owner only) */
|
|
689
|
+
export interface EndCommunityVoiceChatPayload {
|
|
690
|
+
communityId: string;
|
|
691
|
+
}
|
|
692
|
+
export interface EndCommunityVoiceChatResponse {
|
|
693
|
+
response?: {
|
|
694
|
+
$case: "ok";
|
|
695
|
+
ok: EndCommunityVoiceChatResponse_Ok;
|
|
696
|
+
} | {
|
|
697
|
+
$case: "invalidRequest";
|
|
698
|
+
invalidRequest: InvalidRequest;
|
|
699
|
+
} | {
|
|
700
|
+
$case: "forbiddenError";
|
|
701
|
+
forbiddenError: ForbiddenError;
|
|
702
|
+
} | {
|
|
703
|
+
$case: "notFoundError";
|
|
704
|
+
notFoundError: NotFoundError;
|
|
705
|
+
} | {
|
|
706
|
+
$case: "internalServerError";
|
|
707
|
+
internalServerError: InternalServerError;
|
|
708
|
+
} | undefined;
|
|
709
|
+
}
|
|
710
|
+
export interface EndCommunityVoiceChatResponse_Ok {
|
|
711
|
+
message: string;
|
|
712
|
+
}
|
|
713
|
+
/** Community voice chat updates/events - 'started' and 'ended' status */
|
|
714
|
+
export interface CommunityVoiceChatUpdate {
|
|
715
|
+
communityId: string;
|
|
716
|
+
createdAt: number;
|
|
717
|
+
/** 'started' or 'ended' */
|
|
718
|
+
status: CommunityVoiceChatStatus;
|
|
719
|
+
/** Only present when status is 'ended' */
|
|
720
|
+
endedAt?: number | undefined;
|
|
721
|
+
/** Positions/coordinates associated with the community (world: false) */
|
|
722
|
+
positions: string[];
|
|
723
|
+
/** Whether the receiving user is a member of the community */
|
|
724
|
+
isMember: boolean;
|
|
725
|
+
/** Name of the community */
|
|
726
|
+
communityName: string;
|
|
727
|
+
/** Image/picture of the community */
|
|
728
|
+
communityImage?: string | undefined;
|
|
729
|
+
/** World names associated with the community (world: true) */
|
|
730
|
+
worlds: string[];
|
|
185
731
|
}
|
|
186
732
|
export declare namespace User {
|
|
187
733
|
function encode(message: User, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -191,6 +737,22 @@ export declare namespace User {
|
|
|
191
737
|
function create<I extends Exact<DeepPartial<User>, I>>(base?: I): User;
|
|
192
738
|
function fromPartial<I extends Exact<DeepPartial<User>, I>>(object: I): User;
|
|
193
739
|
}
|
|
740
|
+
export declare namespace FriendProfile {
|
|
741
|
+
function encode(message: FriendProfile, writer?: _m0.Writer): _m0.Writer;
|
|
742
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendProfile;
|
|
743
|
+
function fromJSON(object: any): FriendProfile;
|
|
744
|
+
function toJSON(message: FriendProfile): unknown;
|
|
745
|
+
function create<I extends Exact<DeepPartial<FriendProfile>, I>>(base?: I): FriendProfile;
|
|
746
|
+
function fromPartial<I extends Exact<DeepPartial<FriendProfile>, I>>(object: I): FriendProfile;
|
|
747
|
+
}
|
|
748
|
+
export declare namespace BlockedUserProfile {
|
|
749
|
+
function encode(message: BlockedUserProfile, writer?: _m0.Writer): _m0.Writer;
|
|
750
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockedUserProfile;
|
|
751
|
+
function fromJSON(object: any): BlockedUserProfile;
|
|
752
|
+
function toJSON(message: BlockedUserProfile): unknown;
|
|
753
|
+
function create<I extends Exact<DeepPartial<BlockedUserProfile>, I>>(base?: I): BlockedUserProfile;
|
|
754
|
+
function fromPartial<I extends Exact<DeepPartial<BlockedUserProfile>, I>>(object: I): BlockedUserProfile;
|
|
755
|
+
}
|
|
194
756
|
export declare namespace Pagination {
|
|
195
757
|
function encode(message: Pagination, writer?: _m0.Writer): _m0.Writer;
|
|
196
758
|
function decode(input: _m0.Reader | Uint8Array, length?: number): Pagination;
|
|
@@ -295,13 +857,13 @@ export declare namespace PaginatedResponse {
|
|
|
295
857
|
function create<I extends Exact<DeepPartial<PaginatedResponse>, I>>(base?: I): PaginatedResponse;
|
|
296
858
|
function fromPartial<I extends Exact<DeepPartial<PaginatedResponse>, I>>(object: I): PaginatedResponse;
|
|
297
859
|
}
|
|
298
|
-
export declare namespace
|
|
299
|
-
function encode(message:
|
|
300
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
301
|
-
function fromJSON(object: any):
|
|
302
|
-
function toJSON(message:
|
|
303
|
-
function create<I extends Exact<DeepPartial<
|
|
304
|
-
function fromPartial<I extends Exact<DeepPartial<
|
|
860
|
+
export declare namespace PaginatedFriendsProfilesResponse {
|
|
861
|
+
function encode(message: PaginatedFriendsProfilesResponse, writer?: _m0.Writer): _m0.Writer;
|
|
862
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PaginatedFriendsProfilesResponse;
|
|
863
|
+
function fromJSON(object: any): PaginatedFriendsProfilesResponse;
|
|
864
|
+
function toJSON(message: PaginatedFriendsProfilesResponse): unknown;
|
|
865
|
+
function create<I extends Exact<DeepPartial<PaginatedFriendsProfilesResponse>, I>>(base?: I): PaginatedFriendsProfilesResponse;
|
|
866
|
+
function fromPartial<I extends Exact<DeepPartial<PaginatedFriendsProfilesResponse>, I>>(object: I): PaginatedFriendsProfilesResponse;
|
|
305
867
|
}
|
|
306
868
|
export declare namespace PaginatedFriendshipRequestsResponse {
|
|
307
869
|
function encode(message: PaginatedFriendshipRequestsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -335,6 +897,14 @@ export declare namespace FriendshipUpdate {
|
|
|
335
897
|
function create<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(base?: I): FriendshipUpdate;
|
|
336
898
|
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(object: I): FriendshipUpdate;
|
|
337
899
|
}
|
|
900
|
+
export declare namespace FriendshipUpdate_RequestResponse {
|
|
901
|
+
function encode(message: FriendshipUpdate_RequestResponse, writer?: _m0.Writer): _m0.Writer;
|
|
902
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_RequestResponse;
|
|
903
|
+
function fromJSON(object: any): FriendshipUpdate_RequestResponse;
|
|
904
|
+
function toJSON(message: FriendshipUpdate_RequestResponse): unknown;
|
|
905
|
+
function create<I extends Exact<DeepPartial<FriendshipUpdate_RequestResponse>, I>>(base?: I): FriendshipUpdate_RequestResponse;
|
|
906
|
+
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_RequestResponse>, I>>(object: I): FriendshipUpdate_RequestResponse;
|
|
907
|
+
}
|
|
338
908
|
export declare namespace FriendshipUpdate_AcceptResponse {
|
|
339
909
|
function encode(message: FriendshipUpdate_AcceptResponse, writer?: _m0.Writer): _m0.Writer;
|
|
340
910
|
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_AcceptResponse;
|
|
@@ -367,6 +937,22 @@ export declare namespace FriendshipUpdate_CancelResponse {
|
|
|
367
937
|
function create<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(base?: I): FriendshipUpdate_CancelResponse;
|
|
368
938
|
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(object: I): FriendshipUpdate_CancelResponse;
|
|
369
939
|
}
|
|
940
|
+
export declare namespace FriendshipUpdate_BlockResponse {
|
|
941
|
+
function encode(message: FriendshipUpdate_BlockResponse, writer?: _m0.Writer): _m0.Writer;
|
|
942
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_BlockResponse;
|
|
943
|
+
function fromJSON(object: any): FriendshipUpdate_BlockResponse;
|
|
944
|
+
function toJSON(message: FriendshipUpdate_BlockResponse): unknown;
|
|
945
|
+
function create<I extends Exact<DeepPartial<FriendshipUpdate_BlockResponse>, I>>(base?: I): FriendshipUpdate_BlockResponse;
|
|
946
|
+
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_BlockResponse>, I>>(object: I): FriendshipUpdate_BlockResponse;
|
|
947
|
+
}
|
|
948
|
+
export declare namespace FriendConnectivityUpdate {
|
|
949
|
+
function encode(message: FriendConnectivityUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
950
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendConnectivityUpdate;
|
|
951
|
+
function fromJSON(object: any): FriendConnectivityUpdate;
|
|
952
|
+
function toJSON(message: FriendConnectivityUpdate): unknown;
|
|
953
|
+
function create<I extends Exact<DeepPartial<FriendConnectivityUpdate>, I>>(base?: I): FriendConnectivityUpdate;
|
|
954
|
+
function fromPartial<I extends Exact<DeepPartial<FriendConnectivityUpdate>, I>>(object: I): FriendConnectivityUpdate;
|
|
955
|
+
}
|
|
370
956
|
export declare namespace GetFriendshipStatusPayload {
|
|
371
957
|
function encode(message: GetFriendshipStatusPayload, writer?: _m0.Writer): _m0.Writer;
|
|
372
958
|
function decode(input: _m0.Reader | Uint8Array, length?: number): GetFriendshipStatusPayload;
|
|
@@ -391,6 +977,526 @@ export declare namespace GetFriendshipStatusResponse_Ok {
|
|
|
391
977
|
function create<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(base?: I): GetFriendshipStatusResponse_Ok;
|
|
392
978
|
function fromPartial<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(object: I): GetFriendshipStatusResponse_Ok;
|
|
393
979
|
}
|
|
980
|
+
export declare namespace BlockUserPayload {
|
|
981
|
+
function encode(message: BlockUserPayload, writer?: _m0.Writer): _m0.Writer;
|
|
982
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserPayload;
|
|
983
|
+
function fromJSON(object: any): BlockUserPayload;
|
|
984
|
+
function toJSON(message: BlockUserPayload): unknown;
|
|
985
|
+
function create<I extends Exact<DeepPartial<BlockUserPayload>, I>>(base?: I): BlockUserPayload;
|
|
986
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUserPayload>, I>>(object: I): BlockUserPayload;
|
|
987
|
+
}
|
|
988
|
+
export declare namespace BlockUserResponse {
|
|
989
|
+
function encode(message: BlockUserResponse, writer?: _m0.Writer): _m0.Writer;
|
|
990
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse;
|
|
991
|
+
function fromJSON(object: any): BlockUserResponse;
|
|
992
|
+
function toJSON(message: BlockUserResponse): unknown;
|
|
993
|
+
function create<I extends Exact<DeepPartial<BlockUserResponse>, I>>(base?: I): BlockUserResponse;
|
|
994
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUserResponse>, I>>(object: I): BlockUserResponse;
|
|
995
|
+
}
|
|
996
|
+
export declare namespace BlockUserResponse_Ok {
|
|
997
|
+
function encode(message: BlockUserResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
998
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse_Ok;
|
|
999
|
+
function fromJSON(object: any): BlockUserResponse_Ok;
|
|
1000
|
+
function toJSON(message: BlockUserResponse_Ok): unknown;
|
|
1001
|
+
function create<I extends Exact<DeepPartial<BlockUserResponse_Ok>, I>>(base?: I): BlockUserResponse_Ok;
|
|
1002
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUserResponse_Ok>, I>>(object: I): BlockUserResponse_Ok;
|
|
1003
|
+
}
|
|
1004
|
+
export declare namespace UnblockUserPayload {
|
|
1005
|
+
function encode(message: UnblockUserPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1006
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserPayload;
|
|
1007
|
+
function fromJSON(object: any): UnblockUserPayload;
|
|
1008
|
+
function toJSON(message: UnblockUserPayload): unknown;
|
|
1009
|
+
function create<I extends Exact<DeepPartial<UnblockUserPayload>, I>>(base?: I): UnblockUserPayload;
|
|
1010
|
+
function fromPartial<I extends Exact<DeepPartial<UnblockUserPayload>, I>>(object: I): UnblockUserPayload;
|
|
1011
|
+
}
|
|
1012
|
+
export declare namespace UnblockUserResponse {
|
|
1013
|
+
function encode(message: UnblockUserResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1014
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserResponse;
|
|
1015
|
+
function fromJSON(object: any): UnblockUserResponse;
|
|
1016
|
+
function toJSON(message: UnblockUserResponse): unknown;
|
|
1017
|
+
function create<I extends Exact<DeepPartial<UnblockUserResponse>, I>>(base?: I): UnblockUserResponse;
|
|
1018
|
+
function fromPartial<I extends Exact<DeepPartial<UnblockUserResponse>, I>>(object: I): UnblockUserResponse;
|
|
1019
|
+
}
|
|
1020
|
+
export declare namespace UnblockUserResponse_Ok {
|
|
1021
|
+
function encode(message: UnblockUserResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1022
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserResponse_Ok;
|
|
1023
|
+
function fromJSON(object: any): UnblockUserResponse_Ok;
|
|
1024
|
+
function toJSON(message: UnblockUserResponse_Ok): unknown;
|
|
1025
|
+
function create<I extends Exact<DeepPartial<UnblockUserResponse_Ok>, I>>(base?: I): UnblockUserResponse_Ok;
|
|
1026
|
+
function fromPartial<I extends Exact<DeepPartial<UnblockUserResponse_Ok>, I>>(object: I): UnblockUserResponse_Ok;
|
|
1027
|
+
}
|
|
1028
|
+
export declare namespace SocialSettings {
|
|
1029
|
+
function encode(message: SocialSettings, writer?: _m0.Writer): _m0.Writer;
|
|
1030
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): SocialSettings;
|
|
1031
|
+
function fromJSON(object: any): SocialSettings;
|
|
1032
|
+
function toJSON(message: SocialSettings): unknown;
|
|
1033
|
+
function create<I extends Exact<DeepPartial<SocialSettings>, I>>(base?: I): SocialSettings;
|
|
1034
|
+
function fromPartial<I extends Exact<DeepPartial<SocialSettings>, I>>(object: I): SocialSettings;
|
|
1035
|
+
}
|
|
1036
|
+
export declare namespace GetSocialSettingsResponse {
|
|
1037
|
+
function encode(message: GetSocialSettingsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1038
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetSocialSettingsResponse;
|
|
1039
|
+
function fromJSON(object: any): GetSocialSettingsResponse;
|
|
1040
|
+
function toJSON(message: GetSocialSettingsResponse): unknown;
|
|
1041
|
+
function create<I extends Exact<DeepPartial<GetSocialSettingsResponse>, I>>(base?: I): GetSocialSettingsResponse;
|
|
1042
|
+
function fromPartial<I extends Exact<DeepPartial<GetSocialSettingsResponse>, I>>(object: I): GetSocialSettingsResponse;
|
|
1043
|
+
}
|
|
1044
|
+
export declare namespace GetSocialSettingsResponse_Ok {
|
|
1045
|
+
function encode(message: GetSocialSettingsResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1046
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetSocialSettingsResponse_Ok;
|
|
1047
|
+
function fromJSON(object: any): GetSocialSettingsResponse_Ok;
|
|
1048
|
+
function toJSON(message: GetSocialSettingsResponse_Ok): unknown;
|
|
1049
|
+
function create<I extends Exact<DeepPartial<GetSocialSettingsResponse_Ok>, I>>(base?: I): GetSocialSettingsResponse_Ok;
|
|
1050
|
+
function fromPartial<I extends Exact<DeepPartial<GetSocialSettingsResponse_Ok>, I>>(object: I): GetSocialSettingsResponse_Ok;
|
|
1051
|
+
}
|
|
1052
|
+
export declare namespace UpsertSocialSettingsPayload {
|
|
1053
|
+
function encode(message: UpsertSocialSettingsPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1054
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UpsertSocialSettingsPayload;
|
|
1055
|
+
function fromJSON(object: any): UpsertSocialSettingsPayload;
|
|
1056
|
+
function toJSON(message: UpsertSocialSettingsPayload): unknown;
|
|
1057
|
+
function create<I extends Exact<DeepPartial<UpsertSocialSettingsPayload>, I>>(base?: I): UpsertSocialSettingsPayload;
|
|
1058
|
+
function fromPartial<I extends Exact<DeepPartial<UpsertSocialSettingsPayload>, I>>(object: I): UpsertSocialSettingsPayload;
|
|
1059
|
+
}
|
|
1060
|
+
export declare namespace UpsertSocialSettingsResponse {
|
|
1061
|
+
function encode(message: UpsertSocialSettingsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1062
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UpsertSocialSettingsResponse;
|
|
1063
|
+
function fromJSON(object: any): UpsertSocialSettingsResponse;
|
|
1064
|
+
function toJSON(message: UpsertSocialSettingsResponse): unknown;
|
|
1065
|
+
function create<I extends Exact<DeepPartial<UpsertSocialSettingsResponse>, I>>(base?: I): UpsertSocialSettingsResponse;
|
|
1066
|
+
function fromPartial<I extends Exact<DeepPartial<UpsertSocialSettingsResponse>, I>>(object: I): UpsertSocialSettingsResponse;
|
|
1067
|
+
}
|
|
1068
|
+
export declare namespace GetPrivateMessagesSettingsPayload {
|
|
1069
|
+
function encode(message: GetPrivateMessagesSettingsPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1070
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsPayload;
|
|
1071
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsPayload;
|
|
1072
|
+
function toJSON(message: GetPrivateMessagesSettingsPayload): unknown;
|
|
1073
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsPayload>, I>>(base?: I): GetPrivateMessagesSettingsPayload;
|
|
1074
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsPayload>, I>>(object: I): GetPrivateMessagesSettingsPayload;
|
|
1075
|
+
}
|
|
1076
|
+
export declare namespace GetPrivateMessagesSettingsResponse {
|
|
1077
|
+
function encode(message: GetPrivateMessagesSettingsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1078
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse;
|
|
1079
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsResponse;
|
|
1080
|
+
function toJSON(message: GetPrivateMessagesSettingsResponse): unknown;
|
|
1081
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse>, I>>(base?: I): GetPrivateMessagesSettingsResponse;
|
|
1082
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse>, I>>(object: I): GetPrivateMessagesSettingsResponse;
|
|
1083
|
+
}
|
|
1084
|
+
export declare namespace GetPrivateMessagesSettingsResponse_PrivateMessagesSettings {
|
|
1085
|
+
function encode(message: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings, writer?: _m0.Writer): _m0.Writer;
|
|
1086
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
1087
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
1088
|
+
function toJSON(message: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings): unknown;
|
|
1089
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_PrivateMessagesSettings>, I>>(base?: I): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
1090
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_PrivateMessagesSettings>, I>>(object: I): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
1091
|
+
}
|
|
1092
|
+
export declare namespace GetPrivateMessagesSettingsResponse_Ok {
|
|
1093
|
+
function encode(message: GetPrivateMessagesSettingsResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1094
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse_Ok;
|
|
1095
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsResponse_Ok;
|
|
1096
|
+
function toJSON(message: GetPrivateMessagesSettingsResponse_Ok): unknown;
|
|
1097
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_Ok>, I>>(base?: I): GetPrivateMessagesSettingsResponse_Ok;
|
|
1098
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_Ok>, I>>(object: I): GetPrivateMessagesSettingsResponse_Ok;
|
|
1099
|
+
}
|
|
1100
|
+
export declare namespace GetBlockedUsersPayload {
|
|
1101
|
+
function encode(message: GetBlockedUsersPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1102
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockedUsersPayload;
|
|
1103
|
+
function fromJSON(object: any): GetBlockedUsersPayload;
|
|
1104
|
+
function toJSON(message: GetBlockedUsersPayload): unknown;
|
|
1105
|
+
function create<I extends Exact<DeepPartial<GetBlockedUsersPayload>, I>>(base?: I): GetBlockedUsersPayload;
|
|
1106
|
+
function fromPartial<I extends Exact<DeepPartial<GetBlockedUsersPayload>, I>>(object: I): GetBlockedUsersPayload;
|
|
1107
|
+
}
|
|
1108
|
+
export declare namespace GetBlockedUsersResponse {
|
|
1109
|
+
function encode(message: GetBlockedUsersResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1110
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockedUsersResponse;
|
|
1111
|
+
function fromJSON(object: any): GetBlockedUsersResponse;
|
|
1112
|
+
function toJSON(message: GetBlockedUsersResponse): unknown;
|
|
1113
|
+
function create<I extends Exact<DeepPartial<GetBlockedUsersResponse>, I>>(base?: I): GetBlockedUsersResponse;
|
|
1114
|
+
function fromPartial<I extends Exact<DeepPartial<GetBlockedUsersResponse>, I>>(object: I): GetBlockedUsersResponse;
|
|
1115
|
+
}
|
|
1116
|
+
export declare namespace GetBlockingStatusResponse {
|
|
1117
|
+
function encode(message: GetBlockingStatusResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1118
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockingStatusResponse;
|
|
1119
|
+
function fromJSON(object: any): GetBlockingStatusResponse;
|
|
1120
|
+
function toJSON(message: GetBlockingStatusResponse): unknown;
|
|
1121
|
+
function create<I extends Exact<DeepPartial<GetBlockingStatusResponse>, I>>(base?: I): GetBlockingStatusResponse;
|
|
1122
|
+
function fromPartial<I extends Exact<DeepPartial<GetBlockingStatusResponse>, I>>(object: I): GetBlockingStatusResponse;
|
|
1123
|
+
}
|
|
1124
|
+
export declare namespace BlockUpdate {
|
|
1125
|
+
function encode(message: BlockUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
1126
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUpdate;
|
|
1127
|
+
function fromJSON(object: any): BlockUpdate;
|
|
1128
|
+
function toJSON(message: BlockUpdate): unknown;
|
|
1129
|
+
function create<I extends Exact<DeepPartial<BlockUpdate>, I>>(base?: I): BlockUpdate;
|
|
1130
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUpdate>, I>>(object: I): BlockUpdate;
|
|
1131
|
+
}
|
|
1132
|
+
export declare namespace CommunityMemberConnectivityUpdate {
|
|
1133
|
+
function encode(message: CommunityMemberConnectivityUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
1134
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityMemberConnectivityUpdate;
|
|
1135
|
+
function fromJSON(object: any): CommunityMemberConnectivityUpdate;
|
|
1136
|
+
function toJSON(message: CommunityMemberConnectivityUpdate): unknown;
|
|
1137
|
+
function create<I extends Exact<DeepPartial<CommunityMemberConnectivityUpdate>, I>>(base?: I): CommunityMemberConnectivityUpdate;
|
|
1138
|
+
function fromPartial<I extends Exact<DeepPartial<CommunityMemberConnectivityUpdate>, I>>(object: I): CommunityMemberConnectivityUpdate;
|
|
1139
|
+
}
|
|
1140
|
+
export declare namespace StartPrivateVoiceChatPayload {
|
|
1141
|
+
function encode(message: StartPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1142
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatPayload;
|
|
1143
|
+
function fromJSON(object: any): StartPrivateVoiceChatPayload;
|
|
1144
|
+
function toJSON(message: StartPrivateVoiceChatPayload): unknown;
|
|
1145
|
+
function create<I extends Exact<DeepPartial<StartPrivateVoiceChatPayload>, I>>(base?: I): StartPrivateVoiceChatPayload;
|
|
1146
|
+
function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatPayload>, I>>(object: I): StartPrivateVoiceChatPayload;
|
|
1147
|
+
}
|
|
1148
|
+
export declare namespace StartPrivateVoiceChatResponse {
|
|
1149
|
+
function encode(message: StartPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1150
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatResponse;
|
|
1151
|
+
function fromJSON(object: any): StartPrivateVoiceChatResponse;
|
|
1152
|
+
function toJSON(message: StartPrivateVoiceChatResponse): unknown;
|
|
1153
|
+
function create<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse>, I>>(base?: I): StartPrivateVoiceChatResponse;
|
|
1154
|
+
function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse>, I>>(object: I): StartPrivateVoiceChatResponse;
|
|
1155
|
+
}
|
|
1156
|
+
export declare namespace StartPrivateVoiceChatResponse_Ok {
|
|
1157
|
+
function encode(message: StartPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1158
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatResponse_Ok;
|
|
1159
|
+
function fromJSON(object: any): StartPrivateVoiceChatResponse_Ok;
|
|
1160
|
+
function toJSON(message: StartPrivateVoiceChatResponse_Ok): unknown;
|
|
1161
|
+
function create<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse_Ok>, I>>(base?: I): StartPrivateVoiceChatResponse_Ok;
|
|
1162
|
+
function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse_Ok>, I>>(object: I): StartPrivateVoiceChatResponse_Ok;
|
|
1163
|
+
}
|
|
1164
|
+
export declare namespace AcceptPrivateVoiceChatPayload {
|
|
1165
|
+
function encode(message: AcceptPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1166
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatPayload;
|
|
1167
|
+
function fromJSON(object: any): AcceptPrivateVoiceChatPayload;
|
|
1168
|
+
function toJSON(message: AcceptPrivateVoiceChatPayload): unknown;
|
|
1169
|
+
function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatPayload>, I>>(base?: I): AcceptPrivateVoiceChatPayload;
|
|
1170
|
+
function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatPayload>, I>>(object: I): AcceptPrivateVoiceChatPayload;
|
|
1171
|
+
}
|
|
1172
|
+
export declare namespace AcceptPrivateVoiceChatResponse {
|
|
1173
|
+
function encode(message: AcceptPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1174
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatResponse;
|
|
1175
|
+
function fromJSON(object: any): AcceptPrivateVoiceChatResponse;
|
|
1176
|
+
function toJSON(message: AcceptPrivateVoiceChatResponse): unknown;
|
|
1177
|
+
function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse>, I>>(base?: I): AcceptPrivateVoiceChatResponse;
|
|
1178
|
+
function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse>, I>>(object: I): AcceptPrivateVoiceChatResponse;
|
|
1179
|
+
}
|
|
1180
|
+
export declare namespace AcceptPrivateVoiceChatResponse_Ok {
|
|
1181
|
+
function encode(message: AcceptPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1182
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatResponse_Ok;
|
|
1183
|
+
function fromJSON(object: any): AcceptPrivateVoiceChatResponse_Ok;
|
|
1184
|
+
function toJSON(message: AcceptPrivateVoiceChatResponse_Ok): unknown;
|
|
1185
|
+
function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse_Ok>, I>>(base?: I): AcceptPrivateVoiceChatResponse_Ok;
|
|
1186
|
+
function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse_Ok>, I>>(object: I): AcceptPrivateVoiceChatResponse_Ok;
|
|
1187
|
+
}
|
|
1188
|
+
export declare namespace RejectPrivateVoiceChatPayload {
|
|
1189
|
+
function encode(message: RejectPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1190
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatPayload;
|
|
1191
|
+
function fromJSON(object: any): RejectPrivateVoiceChatPayload;
|
|
1192
|
+
function toJSON(message: RejectPrivateVoiceChatPayload): unknown;
|
|
1193
|
+
function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatPayload>, I>>(base?: I): RejectPrivateVoiceChatPayload;
|
|
1194
|
+
function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatPayload>, I>>(object: I): RejectPrivateVoiceChatPayload;
|
|
1195
|
+
}
|
|
1196
|
+
export declare namespace RejectPrivateVoiceChatResponse {
|
|
1197
|
+
function encode(message: RejectPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1198
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatResponse;
|
|
1199
|
+
function fromJSON(object: any): RejectPrivateVoiceChatResponse;
|
|
1200
|
+
function toJSON(message: RejectPrivateVoiceChatResponse): unknown;
|
|
1201
|
+
function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse>, I>>(base?: I): RejectPrivateVoiceChatResponse;
|
|
1202
|
+
function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse>, I>>(object: I): RejectPrivateVoiceChatResponse;
|
|
1203
|
+
}
|
|
1204
|
+
export declare namespace RejectPrivateVoiceChatResponse_Ok {
|
|
1205
|
+
function encode(message: RejectPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1206
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatResponse_Ok;
|
|
1207
|
+
function fromJSON(object: any): RejectPrivateVoiceChatResponse_Ok;
|
|
1208
|
+
function toJSON(message: RejectPrivateVoiceChatResponse_Ok): unknown;
|
|
1209
|
+
function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse_Ok>, I>>(base?: I): RejectPrivateVoiceChatResponse_Ok;
|
|
1210
|
+
function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse_Ok>, I>>(object: I): RejectPrivateVoiceChatResponse_Ok;
|
|
1211
|
+
}
|
|
1212
|
+
export declare namespace PrivateVoiceChatCredentials {
|
|
1213
|
+
function encode(message: PrivateVoiceChatCredentials, writer?: _m0.Writer): _m0.Writer;
|
|
1214
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PrivateVoiceChatCredentials;
|
|
1215
|
+
function fromJSON(object: any): PrivateVoiceChatCredentials;
|
|
1216
|
+
function toJSON(message: PrivateVoiceChatCredentials): unknown;
|
|
1217
|
+
function create<I extends Exact<DeepPartial<PrivateVoiceChatCredentials>, I>>(base?: I): PrivateVoiceChatCredentials;
|
|
1218
|
+
function fromPartial<I extends Exact<DeepPartial<PrivateVoiceChatCredentials>, I>>(object: I): PrivateVoiceChatCredentials;
|
|
1219
|
+
}
|
|
1220
|
+
export declare namespace PrivateVoiceChatUpdate {
|
|
1221
|
+
function encode(message: PrivateVoiceChatUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
1222
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PrivateVoiceChatUpdate;
|
|
1223
|
+
function fromJSON(object: any): PrivateVoiceChatUpdate;
|
|
1224
|
+
function toJSON(message: PrivateVoiceChatUpdate): unknown;
|
|
1225
|
+
function create<I extends Exact<DeepPartial<PrivateVoiceChatUpdate>, I>>(base?: I): PrivateVoiceChatUpdate;
|
|
1226
|
+
function fromPartial<I extends Exact<DeepPartial<PrivateVoiceChatUpdate>, I>>(object: I): PrivateVoiceChatUpdate;
|
|
1227
|
+
}
|
|
1228
|
+
export declare namespace EndPrivateVoiceChatPayload {
|
|
1229
|
+
function encode(message: EndPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1230
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatPayload;
|
|
1231
|
+
function fromJSON(object: any): EndPrivateVoiceChatPayload;
|
|
1232
|
+
function toJSON(message: EndPrivateVoiceChatPayload): unknown;
|
|
1233
|
+
function create<I extends Exact<DeepPartial<EndPrivateVoiceChatPayload>, I>>(base?: I): EndPrivateVoiceChatPayload;
|
|
1234
|
+
function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatPayload>, I>>(object: I): EndPrivateVoiceChatPayload;
|
|
1235
|
+
}
|
|
1236
|
+
export declare namespace EndPrivateVoiceChatResponse {
|
|
1237
|
+
function encode(message: EndPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1238
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatResponse;
|
|
1239
|
+
function fromJSON(object: any): EndPrivateVoiceChatResponse;
|
|
1240
|
+
function toJSON(message: EndPrivateVoiceChatResponse): unknown;
|
|
1241
|
+
function create<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse>, I>>(base?: I): EndPrivateVoiceChatResponse;
|
|
1242
|
+
function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse>, I>>(object: I): EndPrivateVoiceChatResponse;
|
|
1243
|
+
}
|
|
1244
|
+
export declare namespace EndPrivateVoiceChatResponse_Ok {
|
|
1245
|
+
function encode(message: EndPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1246
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatResponse_Ok;
|
|
1247
|
+
function fromJSON(object: any): EndPrivateVoiceChatResponse_Ok;
|
|
1248
|
+
function toJSON(message: EndPrivateVoiceChatResponse_Ok): unknown;
|
|
1249
|
+
function create<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse_Ok>, I>>(base?: I): EndPrivateVoiceChatResponse_Ok;
|
|
1250
|
+
function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse_Ok>, I>>(object: I): EndPrivateVoiceChatResponse_Ok;
|
|
1251
|
+
}
|
|
1252
|
+
export declare namespace GetIncomingPrivateVoiceChatRequestResponse {
|
|
1253
|
+
function encode(message: GetIncomingPrivateVoiceChatRequestResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1254
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1255
|
+
function fromJSON(object: any): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1256
|
+
function toJSON(message: GetIncomingPrivateVoiceChatRequestResponse): unknown;
|
|
1257
|
+
function create<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse>, I>>(base?: I): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1258
|
+
function fromPartial<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse>, I>>(object: I): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1259
|
+
}
|
|
1260
|
+
export declare namespace GetIncomingPrivateVoiceChatRequestResponse_Ok {
|
|
1261
|
+
function encode(message: GetIncomingPrivateVoiceChatRequestResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1262
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1263
|
+
function fromJSON(object: any): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1264
|
+
function toJSON(message: GetIncomingPrivateVoiceChatRequestResponse_Ok): unknown;
|
|
1265
|
+
function create<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse_Ok>, I>>(base?: I): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1266
|
+
function fromPartial<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse_Ok>, I>>(object: I): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1267
|
+
}
|
|
1268
|
+
export declare namespace CommunityVoiceChatCredentials {
|
|
1269
|
+
function encode(message: CommunityVoiceChatCredentials, writer?: _m0.Writer): _m0.Writer;
|
|
1270
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityVoiceChatCredentials;
|
|
1271
|
+
function fromJSON(object: any): CommunityVoiceChatCredentials;
|
|
1272
|
+
function toJSON(message: CommunityVoiceChatCredentials): unknown;
|
|
1273
|
+
function create<I extends Exact<DeepPartial<CommunityVoiceChatCredentials>, I>>(base?: I): CommunityVoiceChatCredentials;
|
|
1274
|
+
function fromPartial<I extends Exact<DeepPartial<CommunityVoiceChatCredentials>, I>>(object: I): CommunityVoiceChatCredentials;
|
|
1275
|
+
}
|
|
1276
|
+
export declare namespace StartCommunityVoiceChatPayload {
|
|
1277
|
+
function encode(message: StartCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1278
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartCommunityVoiceChatPayload;
|
|
1279
|
+
function fromJSON(object: any): StartCommunityVoiceChatPayload;
|
|
1280
|
+
function toJSON(message: StartCommunityVoiceChatPayload): unknown;
|
|
1281
|
+
function create<I extends Exact<DeepPartial<StartCommunityVoiceChatPayload>, I>>(base?: I): StartCommunityVoiceChatPayload;
|
|
1282
|
+
function fromPartial<I extends Exact<DeepPartial<StartCommunityVoiceChatPayload>, I>>(object: I): StartCommunityVoiceChatPayload;
|
|
1283
|
+
}
|
|
1284
|
+
export declare namespace StartCommunityVoiceChatResponse {
|
|
1285
|
+
function encode(message: StartCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1286
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartCommunityVoiceChatResponse;
|
|
1287
|
+
function fromJSON(object: any): StartCommunityVoiceChatResponse;
|
|
1288
|
+
function toJSON(message: StartCommunityVoiceChatResponse): unknown;
|
|
1289
|
+
function create<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse>, I>>(base?: I): StartCommunityVoiceChatResponse;
|
|
1290
|
+
function fromPartial<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse>, I>>(object: I): StartCommunityVoiceChatResponse;
|
|
1291
|
+
}
|
|
1292
|
+
export declare namespace StartCommunityVoiceChatResponse_Ok {
|
|
1293
|
+
function encode(message: StartCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1294
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartCommunityVoiceChatResponse_Ok;
|
|
1295
|
+
function fromJSON(object: any): StartCommunityVoiceChatResponse_Ok;
|
|
1296
|
+
function toJSON(message: StartCommunityVoiceChatResponse_Ok): unknown;
|
|
1297
|
+
function create<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse_Ok>, I>>(base?: I): StartCommunityVoiceChatResponse_Ok;
|
|
1298
|
+
function fromPartial<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse_Ok>, I>>(object: I): StartCommunityVoiceChatResponse_Ok;
|
|
1299
|
+
}
|
|
1300
|
+
export declare namespace JoinCommunityVoiceChatPayload {
|
|
1301
|
+
function encode(message: JoinCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1302
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): JoinCommunityVoiceChatPayload;
|
|
1303
|
+
function fromJSON(object: any): JoinCommunityVoiceChatPayload;
|
|
1304
|
+
function toJSON(message: JoinCommunityVoiceChatPayload): unknown;
|
|
1305
|
+
function create<I extends Exact<DeepPartial<JoinCommunityVoiceChatPayload>, I>>(base?: I): JoinCommunityVoiceChatPayload;
|
|
1306
|
+
function fromPartial<I extends Exact<DeepPartial<JoinCommunityVoiceChatPayload>, I>>(object: I): JoinCommunityVoiceChatPayload;
|
|
1307
|
+
}
|
|
1308
|
+
export declare namespace JoinCommunityVoiceChatResponse {
|
|
1309
|
+
function encode(message: JoinCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1310
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): JoinCommunityVoiceChatResponse;
|
|
1311
|
+
function fromJSON(object: any): JoinCommunityVoiceChatResponse;
|
|
1312
|
+
function toJSON(message: JoinCommunityVoiceChatResponse): unknown;
|
|
1313
|
+
function create<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse>, I>>(base?: I): JoinCommunityVoiceChatResponse;
|
|
1314
|
+
function fromPartial<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse>, I>>(object: I): JoinCommunityVoiceChatResponse;
|
|
1315
|
+
}
|
|
1316
|
+
export declare namespace JoinCommunityVoiceChatResponse_Ok {
|
|
1317
|
+
function encode(message: JoinCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1318
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): JoinCommunityVoiceChatResponse_Ok;
|
|
1319
|
+
function fromJSON(object: any): JoinCommunityVoiceChatResponse_Ok;
|
|
1320
|
+
function toJSON(message: JoinCommunityVoiceChatResponse_Ok): unknown;
|
|
1321
|
+
function create<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse_Ok>, I>>(base?: I): JoinCommunityVoiceChatResponse_Ok;
|
|
1322
|
+
function fromPartial<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse_Ok>, I>>(object: I): JoinCommunityVoiceChatResponse_Ok;
|
|
1323
|
+
}
|
|
1324
|
+
export declare namespace RequestToSpeakInCommunityVoiceChatPayload {
|
|
1325
|
+
function encode(message: RequestToSpeakInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1326
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RequestToSpeakInCommunityVoiceChatPayload;
|
|
1327
|
+
function fromJSON(object: any): RequestToSpeakInCommunityVoiceChatPayload;
|
|
1328
|
+
function toJSON(message: RequestToSpeakInCommunityVoiceChatPayload): unknown;
|
|
1329
|
+
function create<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatPayload>, I>>(base?: I): RequestToSpeakInCommunityVoiceChatPayload;
|
|
1330
|
+
function fromPartial<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatPayload>, I>>(object: I): RequestToSpeakInCommunityVoiceChatPayload;
|
|
1331
|
+
}
|
|
1332
|
+
export declare namespace RequestToSpeakInCommunityVoiceChatResponse {
|
|
1333
|
+
function encode(message: RequestToSpeakInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1334
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RequestToSpeakInCommunityVoiceChatResponse;
|
|
1335
|
+
function fromJSON(object: any): RequestToSpeakInCommunityVoiceChatResponse;
|
|
1336
|
+
function toJSON(message: RequestToSpeakInCommunityVoiceChatResponse): unknown;
|
|
1337
|
+
function create<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse>, I>>(base?: I): RequestToSpeakInCommunityVoiceChatResponse;
|
|
1338
|
+
function fromPartial<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse>, I>>(object: I): RequestToSpeakInCommunityVoiceChatResponse;
|
|
1339
|
+
}
|
|
1340
|
+
export declare namespace RequestToSpeakInCommunityVoiceChatResponse_Ok {
|
|
1341
|
+
function encode(message: RequestToSpeakInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1342
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RequestToSpeakInCommunityVoiceChatResponse_Ok;
|
|
1343
|
+
function fromJSON(object: any): RequestToSpeakInCommunityVoiceChatResponse_Ok;
|
|
1344
|
+
function toJSON(message: RequestToSpeakInCommunityVoiceChatResponse_Ok): unknown;
|
|
1345
|
+
function create<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse_Ok>, I>>(base?: I): RequestToSpeakInCommunityVoiceChatResponse_Ok;
|
|
1346
|
+
function fromPartial<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse_Ok>, I>>(object: I): RequestToSpeakInCommunityVoiceChatResponse_Ok;
|
|
1347
|
+
}
|
|
1348
|
+
export declare namespace PromoteSpeakerInCommunityVoiceChatPayload {
|
|
1349
|
+
function encode(message: PromoteSpeakerInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1350
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PromoteSpeakerInCommunityVoiceChatPayload;
|
|
1351
|
+
function fromJSON(object: any): PromoteSpeakerInCommunityVoiceChatPayload;
|
|
1352
|
+
function toJSON(message: PromoteSpeakerInCommunityVoiceChatPayload): unknown;
|
|
1353
|
+
function create<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatPayload>, I>>(base?: I): PromoteSpeakerInCommunityVoiceChatPayload;
|
|
1354
|
+
function fromPartial<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatPayload>, I>>(object: I): PromoteSpeakerInCommunityVoiceChatPayload;
|
|
1355
|
+
}
|
|
1356
|
+
export declare namespace PromoteSpeakerInCommunityVoiceChatResponse {
|
|
1357
|
+
function encode(message: PromoteSpeakerInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1358
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PromoteSpeakerInCommunityVoiceChatResponse;
|
|
1359
|
+
function fromJSON(object: any): PromoteSpeakerInCommunityVoiceChatResponse;
|
|
1360
|
+
function toJSON(message: PromoteSpeakerInCommunityVoiceChatResponse): unknown;
|
|
1361
|
+
function create<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse>, I>>(base?: I): PromoteSpeakerInCommunityVoiceChatResponse;
|
|
1362
|
+
function fromPartial<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse>, I>>(object: I): PromoteSpeakerInCommunityVoiceChatResponse;
|
|
1363
|
+
}
|
|
1364
|
+
export declare namespace PromoteSpeakerInCommunityVoiceChatResponse_Ok {
|
|
1365
|
+
function encode(message: PromoteSpeakerInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1366
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1367
|
+
function fromJSON(object: any): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1368
|
+
function toJSON(message: PromoteSpeakerInCommunityVoiceChatResponse_Ok): unknown;
|
|
1369
|
+
function create<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(base?: I): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1370
|
+
function fromPartial<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(object: I): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1371
|
+
}
|
|
1372
|
+
export declare namespace DemoteSpeakerInCommunityVoiceChatPayload {
|
|
1373
|
+
function encode(message: DemoteSpeakerInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1374
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): DemoteSpeakerInCommunityVoiceChatPayload;
|
|
1375
|
+
function fromJSON(object: any): DemoteSpeakerInCommunityVoiceChatPayload;
|
|
1376
|
+
function toJSON(message: DemoteSpeakerInCommunityVoiceChatPayload): unknown;
|
|
1377
|
+
function create<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatPayload>, I>>(base?: I): DemoteSpeakerInCommunityVoiceChatPayload;
|
|
1378
|
+
function fromPartial<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatPayload>, I>>(object: I): DemoteSpeakerInCommunityVoiceChatPayload;
|
|
1379
|
+
}
|
|
1380
|
+
export declare namespace DemoteSpeakerInCommunityVoiceChatResponse {
|
|
1381
|
+
function encode(message: DemoteSpeakerInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1382
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): DemoteSpeakerInCommunityVoiceChatResponse;
|
|
1383
|
+
function fromJSON(object: any): DemoteSpeakerInCommunityVoiceChatResponse;
|
|
1384
|
+
function toJSON(message: DemoteSpeakerInCommunityVoiceChatResponse): unknown;
|
|
1385
|
+
function create<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse>, I>>(base?: I): DemoteSpeakerInCommunityVoiceChatResponse;
|
|
1386
|
+
function fromPartial<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse>, I>>(object: I): DemoteSpeakerInCommunityVoiceChatResponse;
|
|
1387
|
+
}
|
|
1388
|
+
export declare namespace DemoteSpeakerInCommunityVoiceChatResponse_Ok {
|
|
1389
|
+
function encode(message: DemoteSpeakerInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1390
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1391
|
+
function fromJSON(object: any): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1392
|
+
function toJSON(message: DemoteSpeakerInCommunityVoiceChatResponse_Ok): unknown;
|
|
1393
|
+
function create<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(base?: I): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1394
|
+
function fromPartial<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(object: I): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
|
|
1395
|
+
}
|
|
1396
|
+
export declare namespace KickPlayerFromCommunityVoiceChatPayload {
|
|
1397
|
+
function encode(message: KickPlayerFromCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1398
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): KickPlayerFromCommunityVoiceChatPayload;
|
|
1399
|
+
function fromJSON(object: any): KickPlayerFromCommunityVoiceChatPayload;
|
|
1400
|
+
function toJSON(message: KickPlayerFromCommunityVoiceChatPayload): unknown;
|
|
1401
|
+
function create<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatPayload>, I>>(base?: I): KickPlayerFromCommunityVoiceChatPayload;
|
|
1402
|
+
function fromPartial<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatPayload>, I>>(object: I): KickPlayerFromCommunityVoiceChatPayload;
|
|
1403
|
+
}
|
|
1404
|
+
export declare namespace KickPlayerFromCommunityVoiceChatResponse {
|
|
1405
|
+
function encode(message: KickPlayerFromCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1406
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): KickPlayerFromCommunityVoiceChatResponse;
|
|
1407
|
+
function fromJSON(object: any): KickPlayerFromCommunityVoiceChatResponse;
|
|
1408
|
+
function toJSON(message: KickPlayerFromCommunityVoiceChatResponse): unknown;
|
|
1409
|
+
function create<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse>, I>>(base?: I): KickPlayerFromCommunityVoiceChatResponse;
|
|
1410
|
+
function fromPartial<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse>, I>>(object: I): KickPlayerFromCommunityVoiceChatResponse;
|
|
1411
|
+
}
|
|
1412
|
+
export declare namespace KickPlayerFromCommunityVoiceChatResponse_Ok {
|
|
1413
|
+
function encode(message: KickPlayerFromCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1414
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): KickPlayerFromCommunityVoiceChatResponse_Ok;
|
|
1415
|
+
function fromJSON(object: any): KickPlayerFromCommunityVoiceChatResponse_Ok;
|
|
1416
|
+
function toJSON(message: KickPlayerFromCommunityVoiceChatResponse_Ok): unknown;
|
|
1417
|
+
function create<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse_Ok>, I>>(base?: I): KickPlayerFromCommunityVoiceChatResponse_Ok;
|
|
1418
|
+
function fromPartial<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse_Ok>, I>>(object: I): KickPlayerFromCommunityVoiceChatResponse_Ok;
|
|
1419
|
+
}
|
|
1420
|
+
export declare namespace RejectSpeakRequestInCommunityVoiceChatPayload {
|
|
1421
|
+
function encode(message: RejectSpeakRequestInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1422
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectSpeakRequestInCommunityVoiceChatPayload;
|
|
1423
|
+
function fromJSON(object: any): RejectSpeakRequestInCommunityVoiceChatPayload;
|
|
1424
|
+
function toJSON(message: RejectSpeakRequestInCommunityVoiceChatPayload): unknown;
|
|
1425
|
+
function create<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatPayload>, I>>(base?: I): RejectSpeakRequestInCommunityVoiceChatPayload;
|
|
1426
|
+
function fromPartial<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatPayload>, I>>(object: I): RejectSpeakRequestInCommunityVoiceChatPayload;
|
|
1427
|
+
}
|
|
1428
|
+
export declare namespace RejectSpeakRequestInCommunityVoiceChatResponse {
|
|
1429
|
+
function encode(message: RejectSpeakRequestInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1430
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectSpeakRequestInCommunityVoiceChatResponse;
|
|
1431
|
+
function fromJSON(object: any): RejectSpeakRequestInCommunityVoiceChatResponse;
|
|
1432
|
+
function toJSON(message: RejectSpeakRequestInCommunityVoiceChatResponse): unknown;
|
|
1433
|
+
function create<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse>, I>>(base?: I): RejectSpeakRequestInCommunityVoiceChatResponse;
|
|
1434
|
+
function fromPartial<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse>, I>>(object: I): RejectSpeakRequestInCommunityVoiceChatResponse;
|
|
1435
|
+
}
|
|
1436
|
+
export declare namespace RejectSpeakRequestInCommunityVoiceChatResponse_Ok {
|
|
1437
|
+
function encode(message: RejectSpeakRequestInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1438
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
|
|
1439
|
+
function fromJSON(object: any): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
|
|
1440
|
+
function toJSON(message: RejectSpeakRequestInCommunityVoiceChatResponse_Ok): unknown;
|
|
1441
|
+
function create<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse_Ok>, I>>(base?: I): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
|
|
1442
|
+
function fromPartial<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse_Ok>, I>>(object: I): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
|
|
1443
|
+
}
|
|
1444
|
+
export declare namespace MuteSpeakerFromCommunityVoiceChatPayload {
|
|
1445
|
+
function encode(message: MuteSpeakerFromCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1446
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): MuteSpeakerFromCommunityVoiceChatPayload;
|
|
1447
|
+
function fromJSON(object: any): MuteSpeakerFromCommunityVoiceChatPayload;
|
|
1448
|
+
function toJSON(message: MuteSpeakerFromCommunityVoiceChatPayload): unknown;
|
|
1449
|
+
function create<I extends Exact<DeepPartial<MuteSpeakerFromCommunityVoiceChatPayload>, I>>(base?: I): MuteSpeakerFromCommunityVoiceChatPayload;
|
|
1450
|
+
function fromPartial<I extends Exact<DeepPartial<MuteSpeakerFromCommunityVoiceChatPayload>, I>>(object: I): MuteSpeakerFromCommunityVoiceChatPayload;
|
|
1451
|
+
}
|
|
1452
|
+
export declare namespace MuteSpeakerFromCommunityVoiceChatResponse {
|
|
1453
|
+
function encode(message: MuteSpeakerFromCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1454
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): MuteSpeakerFromCommunityVoiceChatResponse;
|
|
1455
|
+
function fromJSON(object: any): MuteSpeakerFromCommunityVoiceChatResponse;
|
|
1456
|
+
function toJSON(message: MuteSpeakerFromCommunityVoiceChatResponse): unknown;
|
|
1457
|
+
function create<I extends Exact<DeepPartial<MuteSpeakerFromCommunityVoiceChatResponse>, I>>(base?: I): MuteSpeakerFromCommunityVoiceChatResponse;
|
|
1458
|
+
function fromPartial<I extends Exact<DeepPartial<MuteSpeakerFromCommunityVoiceChatResponse>, I>>(object: I): MuteSpeakerFromCommunityVoiceChatResponse;
|
|
1459
|
+
}
|
|
1460
|
+
export declare namespace MuteSpeakerFromCommunityVoiceChatResponse_Ok {
|
|
1461
|
+
function encode(message: MuteSpeakerFromCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1462
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): MuteSpeakerFromCommunityVoiceChatResponse_Ok;
|
|
1463
|
+
function fromJSON(object: any): MuteSpeakerFromCommunityVoiceChatResponse_Ok;
|
|
1464
|
+
function toJSON(message: MuteSpeakerFromCommunityVoiceChatResponse_Ok): unknown;
|
|
1465
|
+
function create<I extends Exact<DeepPartial<MuteSpeakerFromCommunityVoiceChatResponse_Ok>, I>>(base?: I): MuteSpeakerFromCommunityVoiceChatResponse_Ok;
|
|
1466
|
+
function fromPartial<I extends Exact<DeepPartial<MuteSpeakerFromCommunityVoiceChatResponse_Ok>, I>>(object: I): MuteSpeakerFromCommunityVoiceChatResponse_Ok;
|
|
1467
|
+
}
|
|
1468
|
+
export declare namespace EndCommunityVoiceChatPayload {
|
|
1469
|
+
function encode(message: EndCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1470
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndCommunityVoiceChatPayload;
|
|
1471
|
+
function fromJSON(object: any): EndCommunityVoiceChatPayload;
|
|
1472
|
+
function toJSON(message: EndCommunityVoiceChatPayload): unknown;
|
|
1473
|
+
function create<I extends Exact<DeepPartial<EndCommunityVoiceChatPayload>, I>>(base?: I): EndCommunityVoiceChatPayload;
|
|
1474
|
+
function fromPartial<I extends Exact<DeepPartial<EndCommunityVoiceChatPayload>, I>>(object: I): EndCommunityVoiceChatPayload;
|
|
1475
|
+
}
|
|
1476
|
+
export declare namespace EndCommunityVoiceChatResponse {
|
|
1477
|
+
function encode(message: EndCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1478
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndCommunityVoiceChatResponse;
|
|
1479
|
+
function fromJSON(object: any): EndCommunityVoiceChatResponse;
|
|
1480
|
+
function toJSON(message: EndCommunityVoiceChatResponse): unknown;
|
|
1481
|
+
function create<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse>, I>>(base?: I): EndCommunityVoiceChatResponse;
|
|
1482
|
+
function fromPartial<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse>, I>>(object: I): EndCommunityVoiceChatResponse;
|
|
1483
|
+
}
|
|
1484
|
+
export declare namespace EndCommunityVoiceChatResponse_Ok {
|
|
1485
|
+
function encode(message: EndCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1486
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndCommunityVoiceChatResponse_Ok;
|
|
1487
|
+
function fromJSON(object: any): EndCommunityVoiceChatResponse_Ok;
|
|
1488
|
+
function toJSON(message: EndCommunityVoiceChatResponse_Ok): unknown;
|
|
1489
|
+
function create<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse_Ok>, I>>(base?: I): EndCommunityVoiceChatResponse_Ok;
|
|
1490
|
+
function fromPartial<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse_Ok>, I>>(object: I): EndCommunityVoiceChatResponse_Ok;
|
|
1491
|
+
}
|
|
1492
|
+
export declare namespace CommunityVoiceChatUpdate {
|
|
1493
|
+
function encode(message: CommunityVoiceChatUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
1494
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityVoiceChatUpdate;
|
|
1495
|
+
function fromJSON(object: any): CommunityVoiceChatUpdate;
|
|
1496
|
+
function toJSON(message: CommunityVoiceChatUpdate): unknown;
|
|
1497
|
+
function create<I extends Exact<DeepPartial<CommunityVoiceChatUpdate>, I>>(base?: I): CommunityVoiceChatUpdate;
|
|
1498
|
+
function fromPartial<I extends Exact<DeepPartial<CommunityVoiceChatUpdate>, I>>(object: I): CommunityVoiceChatUpdate;
|
|
1499
|
+
}
|
|
394
1500
|
export type SocialServiceDefinition = typeof SocialServiceDefinition;
|
|
395
1501
|
export declare const SocialServiceDefinition: {
|
|
396
1502
|
readonly name: "SocialService";
|
|
@@ -401,7 +1507,7 @@ export declare const SocialServiceDefinition: {
|
|
|
401
1507
|
readonly name: "GetFriends";
|
|
402
1508
|
readonly requestType: typeof GetFriendsPayload;
|
|
403
1509
|
readonly requestStream: false;
|
|
404
|
-
readonly responseType: typeof
|
|
1510
|
+
readonly responseType: typeof PaginatedFriendsProfilesResponse;
|
|
405
1511
|
readonly responseStream: false;
|
|
406
1512
|
readonly options: {};
|
|
407
1513
|
};
|
|
@@ -410,7 +1516,7 @@ export declare const SocialServiceDefinition: {
|
|
|
410
1516
|
readonly name: "GetMutualFriends";
|
|
411
1517
|
readonly requestType: typeof GetMutualFriendsPayload;
|
|
412
1518
|
readonly requestStream: false;
|
|
413
|
-
readonly responseType: typeof
|
|
1519
|
+
readonly responseType: typeof PaginatedFriendsProfilesResponse;
|
|
414
1520
|
readonly responseStream: false;
|
|
415
1521
|
readonly options: {};
|
|
416
1522
|
};
|
|
@@ -450,6 +1556,7 @@ export declare const SocialServiceDefinition: {
|
|
|
450
1556
|
readonly responseStream: true;
|
|
451
1557
|
readonly options: {};
|
|
452
1558
|
};
|
|
1559
|
+
/** Get the friendship status between the authenticated user and the one in the parameter */
|
|
453
1560
|
readonly getFriendshipStatus: {
|
|
454
1561
|
readonly name: "GetFriendshipStatus";
|
|
455
1562
|
readonly requestType: typeof GetFriendshipStatusPayload;
|
|
@@ -458,6 +1565,235 @@ export declare const SocialServiceDefinition: {
|
|
|
458
1565
|
readonly responseStream: false;
|
|
459
1566
|
readonly options: {};
|
|
460
1567
|
};
|
|
1568
|
+
/** Subscribe to connectivity updates of friends: ONLINE, OFFLINE, AWAY */
|
|
1569
|
+
readonly subscribeToFriendConnectivityUpdates: {
|
|
1570
|
+
readonly name: "SubscribeToFriendConnectivityUpdates";
|
|
1571
|
+
readonly requestType: typeof Empty;
|
|
1572
|
+
readonly requestStream: false;
|
|
1573
|
+
readonly responseType: typeof FriendConnectivityUpdate;
|
|
1574
|
+
readonly responseStream: true;
|
|
1575
|
+
readonly options: {};
|
|
1576
|
+
};
|
|
1577
|
+
readonly blockUser: {
|
|
1578
|
+
readonly name: "BlockUser";
|
|
1579
|
+
readonly requestType: typeof BlockUserPayload;
|
|
1580
|
+
readonly requestStream: false;
|
|
1581
|
+
readonly responseType: typeof BlockUserResponse;
|
|
1582
|
+
readonly responseStream: false;
|
|
1583
|
+
readonly options: {};
|
|
1584
|
+
};
|
|
1585
|
+
readonly unblockUser: {
|
|
1586
|
+
readonly name: "UnblockUser";
|
|
1587
|
+
readonly requestType: typeof UnblockUserPayload;
|
|
1588
|
+
readonly requestStream: false;
|
|
1589
|
+
readonly responseType: typeof UnblockUserResponse;
|
|
1590
|
+
readonly responseStream: false;
|
|
1591
|
+
readonly options: {};
|
|
1592
|
+
};
|
|
1593
|
+
readonly getBlockedUsers: {
|
|
1594
|
+
readonly name: "GetBlockedUsers";
|
|
1595
|
+
readonly requestType: typeof GetBlockedUsersPayload;
|
|
1596
|
+
readonly requestStream: false;
|
|
1597
|
+
readonly responseType: typeof GetBlockedUsersResponse;
|
|
1598
|
+
readonly responseStream: false;
|
|
1599
|
+
readonly options: {};
|
|
1600
|
+
};
|
|
1601
|
+
readonly getBlockingStatus: {
|
|
1602
|
+
readonly name: "GetBlockingStatus";
|
|
1603
|
+
readonly requestType: typeof Empty;
|
|
1604
|
+
readonly requestStream: false;
|
|
1605
|
+
readonly responseType: typeof GetBlockingStatusResponse;
|
|
1606
|
+
readonly responseStream: false;
|
|
1607
|
+
readonly options: {};
|
|
1608
|
+
};
|
|
1609
|
+
readonly subscribeToBlockUpdates: {
|
|
1610
|
+
readonly name: "SubscribeToBlockUpdates";
|
|
1611
|
+
readonly requestType: typeof Empty;
|
|
1612
|
+
readonly requestStream: false;
|
|
1613
|
+
readonly responseType: typeof BlockUpdate;
|
|
1614
|
+
readonly responseStream: true;
|
|
1615
|
+
readonly options: {};
|
|
1616
|
+
};
|
|
1617
|
+
/** Get all the social settings for the authenticated user */
|
|
1618
|
+
readonly getSocialSettings: {
|
|
1619
|
+
readonly name: "GetSocialSettings";
|
|
1620
|
+
readonly requestType: typeof Empty;
|
|
1621
|
+
readonly requestStream: false;
|
|
1622
|
+
readonly responseType: typeof GetSocialSettingsResponse;
|
|
1623
|
+
readonly responseStream: false;
|
|
1624
|
+
readonly options: {};
|
|
1625
|
+
};
|
|
1626
|
+
/** Insert or update the social settings for the authenticated user */
|
|
1627
|
+
readonly upsertSocialSettings: {
|
|
1628
|
+
readonly name: "UpsertSocialSettings";
|
|
1629
|
+
readonly requestType: typeof UpsertSocialSettingsPayload;
|
|
1630
|
+
readonly requestStream: false;
|
|
1631
|
+
readonly responseType: typeof UpsertSocialSettingsResponse;
|
|
1632
|
+
readonly responseStream: false;
|
|
1633
|
+
readonly options: {};
|
|
1634
|
+
};
|
|
1635
|
+
/** Get the private messages privacy settings for the requested users */
|
|
1636
|
+
readonly getPrivateMessagesSettings: {
|
|
1637
|
+
readonly name: "GetPrivateMessagesSettings";
|
|
1638
|
+
readonly requestType: typeof GetPrivateMessagesSettingsPayload;
|
|
1639
|
+
readonly requestStream: false;
|
|
1640
|
+
readonly responseType: typeof GetPrivateMessagesSettingsResponse;
|
|
1641
|
+
readonly responseStream: false;
|
|
1642
|
+
readonly options: {};
|
|
1643
|
+
};
|
|
1644
|
+
/** Subscribe to community member connectivity updates: ONLINE, OFFLINE */
|
|
1645
|
+
readonly subscribeToCommunityMemberConnectivityUpdates: {
|
|
1646
|
+
readonly name: "SubscribeToCommunityMemberConnectivityUpdates";
|
|
1647
|
+
readonly requestType: typeof Empty;
|
|
1648
|
+
readonly requestStream: false;
|
|
1649
|
+
readonly responseType: typeof CommunityMemberConnectivityUpdate;
|
|
1650
|
+
readonly responseStream: true;
|
|
1651
|
+
readonly options: {};
|
|
1652
|
+
};
|
|
1653
|
+
/** Start a private voice chat */
|
|
1654
|
+
readonly startPrivateVoiceChat: {
|
|
1655
|
+
readonly name: "StartPrivateVoiceChat";
|
|
1656
|
+
readonly requestType: typeof StartPrivateVoiceChatPayload;
|
|
1657
|
+
readonly requestStream: false;
|
|
1658
|
+
readonly responseType: typeof StartPrivateVoiceChatResponse;
|
|
1659
|
+
readonly responseStream: false;
|
|
1660
|
+
readonly options: {};
|
|
1661
|
+
};
|
|
1662
|
+
/** Accept a private voice chat */
|
|
1663
|
+
readonly acceptPrivateVoiceChat: {
|
|
1664
|
+
readonly name: "AcceptPrivateVoiceChat";
|
|
1665
|
+
readonly requestType: typeof AcceptPrivateVoiceChatPayload;
|
|
1666
|
+
readonly requestStream: false;
|
|
1667
|
+
readonly responseType: typeof AcceptPrivateVoiceChatResponse;
|
|
1668
|
+
readonly responseStream: false;
|
|
1669
|
+
readonly options: {};
|
|
1670
|
+
};
|
|
1671
|
+
/** Reject a private voice chat */
|
|
1672
|
+
readonly rejectPrivateVoiceChat: {
|
|
1673
|
+
readonly name: "RejectPrivateVoiceChat";
|
|
1674
|
+
readonly requestType: typeof RejectPrivateVoiceChatPayload;
|
|
1675
|
+
readonly requestStream: false;
|
|
1676
|
+
readonly responseType: typeof RejectPrivateVoiceChatResponse;
|
|
1677
|
+
readonly responseStream: false;
|
|
1678
|
+
readonly options: {};
|
|
1679
|
+
};
|
|
1680
|
+
/** End a private voice chat */
|
|
1681
|
+
readonly endPrivateVoiceChat: {
|
|
1682
|
+
readonly name: "EndPrivateVoiceChat";
|
|
1683
|
+
readonly requestType: typeof EndPrivateVoiceChatPayload;
|
|
1684
|
+
readonly requestStream: false;
|
|
1685
|
+
readonly responseType: typeof EndPrivateVoiceChatResponse;
|
|
1686
|
+
readonly responseStream: false;
|
|
1687
|
+
readonly options: {};
|
|
1688
|
+
};
|
|
1689
|
+
/** Get the incoming private voice chat request */
|
|
1690
|
+
readonly getIncomingPrivateVoiceChatRequest: {
|
|
1691
|
+
readonly name: "GetIncomingPrivateVoiceChatRequest";
|
|
1692
|
+
readonly requestType: typeof Empty;
|
|
1693
|
+
readonly requestStream: false;
|
|
1694
|
+
readonly responseType: typeof GetIncomingPrivateVoiceChatRequestResponse;
|
|
1695
|
+
readonly responseStream: false;
|
|
1696
|
+
readonly options: {};
|
|
1697
|
+
};
|
|
1698
|
+
/** Subscribe to private voice chat updates */
|
|
1699
|
+
readonly subscribeToPrivateVoiceChatUpdates: {
|
|
1700
|
+
readonly name: "SubscribeToPrivateVoiceChatUpdates";
|
|
1701
|
+
readonly requestType: typeof Empty;
|
|
1702
|
+
readonly requestStream: false;
|
|
1703
|
+
readonly responseType: typeof PrivateVoiceChatUpdate;
|
|
1704
|
+
readonly responseStream: true;
|
|
1705
|
+
readonly options: {};
|
|
1706
|
+
};
|
|
1707
|
+
/** Start a community voice chat (moderator/owner only) */
|
|
1708
|
+
readonly startCommunityVoiceChat: {
|
|
1709
|
+
readonly name: "StartCommunityVoiceChat";
|
|
1710
|
+
readonly requestType: typeof StartCommunityVoiceChatPayload;
|
|
1711
|
+
readonly requestStream: false;
|
|
1712
|
+
readonly responseType: typeof StartCommunityVoiceChatResponse;
|
|
1713
|
+
readonly responseStream: false;
|
|
1714
|
+
readonly options: {};
|
|
1715
|
+
};
|
|
1716
|
+
/** Join a community voice chat */
|
|
1717
|
+
readonly joinCommunityVoiceChat: {
|
|
1718
|
+
readonly name: "JoinCommunityVoiceChat";
|
|
1719
|
+
readonly requestType: typeof JoinCommunityVoiceChatPayload;
|
|
1720
|
+
readonly requestStream: false;
|
|
1721
|
+
readonly responseType: typeof JoinCommunityVoiceChatResponse;
|
|
1722
|
+
readonly responseStream: false;
|
|
1723
|
+
readonly options: {};
|
|
1724
|
+
};
|
|
1725
|
+
/** Request to speak in community voice chat */
|
|
1726
|
+
readonly requestToSpeakInCommunityVoiceChat: {
|
|
1727
|
+
readonly name: "RequestToSpeakInCommunityVoiceChat";
|
|
1728
|
+
readonly requestType: typeof RequestToSpeakInCommunityVoiceChatPayload;
|
|
1729
|
+
readonly requestStream: false;
|
|
1730
|
+
readonly responseType: typeof RequestToSpeakInCommunityVoiceChatResponse;
|
|
1731
|
+
readonly responseStream: false;
|
|
1732
|
+
readonly options: {};
|
|
1733
|
+
};
|
|
1734
|
+
/** Promote speaker in community voice chat (moderator only) */
|
|
1735
|
+
readonly promoteSpeakerInCommunityVoiceChat: {
|
|
1736
|
+
readonly name: "PromoteSpeakerInCommunityVoiceChat";
|
|
1737
|
+
readonly requestType: typeof PromoteSpeakerInCommunityVoiceChatPayload;
|
|
1738
|
+
readonly requestStream: false;
|
|
1739
|
+
readonly responseType: typeof PromoteSpeakerInCommunityVoiceChatResponse;
|
|
1740
|
+
readonly responseStream: false;
|
|
1741
|
+
readonly options: {};
|
|
1742
|
+
};
|
|
1743
|
+
/** Demote speaker in community voice chat (moderator only) */
|
|
1744
|
+
readonly demoteSpeakerInCommunityVoiceChat: {
|
|
1745
|
+
readonly name: "DemoteSpeakerInCommunityVoiceChat";
|
|
1746
|
+
readonly requestType: typeof DemoteSpeakerInCommunityVoiceChatPayload;
|
|
1747
|
+
readonly requestStream: false;
|
|
1748
|
+
readonly responseType: typeof DemoteSpeakerInCommunityVoiceChatResponse;
|
|
1749
|
+
readonly responseStream: false;
|
|
1750
|
+
readonly options: {};
|
|
1751
|
+
};
|
|
1752
|
+
/** Kick player from community voice chat (moderator only) */
|
|
1753
|
+
readonly kickPlayerFromCommunityVoiceChat: {
|
|
1754
|
+
readonly name: "KickPlayerFromCommunityVoiceChat";
|
|
1755
|
+
readonly requestType: typeof KickPlayerFromCommunityVoiceChatPayload;
|
|
1756
|
+
readonly requestStream: false;
|
|
1757
|
+
readonly responseType: typeof KickPlayerFromCommunityVoiceChatResponse;
|
|
1758
|
+
readonly responseStream: false;
|
|
1759
|
+
readonly options: {};
|
|
1760
|
+
};
|
|
1761
|
+
/** Reject speak request in community voice chat (moderator only) */
|
|
1762
|
+
readonly rejectSpeakRequestInCommunityVoiceChat: {
|
|
1763
|
+
readonly name: "RejectSpeakRequestInCommunityVoiceChat";
|
|
1764
|
+
readonly requestType: typeof RejectSpeakRequestInCommunityVoiceChatPayload;
|
|
1765
|
+
readonly requestStream: false;
|
|
1766
|
+
readonly responseType: typeof RejectSpeakRequestInCommunityVoiceChatResponse;
|
|
1767
|
+
readonly responseStream: false;
|
|
1768
|
+
readonly options: {};
|
|
1769
|
+
};
|
|
1770
|
+
/** End community voice chat (moderator/owner only) */
|
|
1771
|
+
readonly endCommunityVoiceChat: {
|
|
1772
|
+
readonly name: "EndCommunityVoiceChat";
|
|
1773
|
+
readonly requestType: typeof EndCommunityVoiceChatPayload;
|
|
1774
|
+
readonly requestStream: false;
|
|
1775
|
+
readonly responseType: typeof EndCommunityVoiceChatResponse;
|
|
1776
|
+
readonly responseStream: false;
|
|
1777
|
+
readonly options: {};
|
|
1778
|
+
};
|
|
1779
|
+
/** Subscribe to community voice chat updates (only 'started' events) */
|
|
1780
|
+
readonly subscribeToCommunityVoiceChatUpdates: {
|
|
1781
|
+
readonly name: "SubscribeToCommunityVoiceChatUpdates";
|
|
1782
|
+
readonly requestType: typeof Empty;
|
|
1783
|
+
readonly requestStream: false;
|
|
1784
|
+
readonly responseType: typeof CommunityVoiceChatUpdate;
|
|
1785
|
+
readonly responseStream: true;
|
|
1786
|
+
readonly options: {};
|
|
1787
|
+
};
|
|
1788
|
+
/** Mute or unmute a speaker in a community voice chat */
|
|
1789
|
+
readonly muteSpeakerFromCommunityVoiceChat: {
|
|
1790
|
+
readonly name: "MuteSpeakerFromCommunityVoiceChat";
|
|
1791
|
+
readonly requestType: typeof MuteSpeakerFromCommunityVoiceChatPayload;
|
|
1792
|
+
readonly requestStream: false;
|
|
1793
|
+
readonly responseType: typeof MuteSpeakerFromCommunityVoiceChatResponse;
|
|
1794
|
+
readonly responseStream: false;
|
|
1795
|
+
readonly options: {};
|
|
1796
|
+
};
|
|
461
1797
|
};
|
|
462
1798
|
};
|
|
463
1799
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|