@dcl/protocol 1.0.0-16915195041.commit-e9319d0 → 1.0.0-18103449748.commit-258fabc

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.
Files changed (26) hide show
  1. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.d.ts +0 -9
  2. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +5 -55
  3. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
  4. package/out-js/decentraland/sdk/components/mesh_collider.gen.d.ts +2 -1
  5. package/out-js/decentraland/sdk/components/mesh_collider.gen.js +6 -5
  6. package/out-js/decentraland/sdk/components/mesh_collider.gen.js.map +1 -1
  7. package/out-js/decentraland/social_service/v2/social_service_v2.gen.d.ts +32 -1305
  8. package/out-js/decentraland/social_service/v2/social_service_v2.gen.js +148 -6717
  9. package/out-js/decentraland/social_service/v2/social_service_v2.gen.js.map +1 -1
  10. package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +2 -65
  11. package/out-ts/decentraland/sdk/components/mesh_collider.gen.ts +6 -5
  12. package/out-ts/decentraland/social_service/v2/social_service_v2.gen.ts +1019 -8579
  13. package/package.json +3 -3
  14. package/proto/decentraland/kernel/comms/rfc4/comms.proto +2 -8
  15. package/proto/decentraland/sdk/components/light_source.proto +1 -1
  16. package/proto/decentraland/sdk/components/mesh_collider.proto +2 -2
  17. package/proto/decentraland/sdk/components/trigger_area.proto +23 -0
  18. package/proto/decentraland/sdk/components/trigger_area_result.proto +34 -0
  19. package/proto/decentraland/sdk/components/virtual_camera.proto +0 -2
  20. package/proto/decentraland/social_service/v2/social_service_v2.proto +11 -538
  21. package/out-js/decentraland/social_service/errors.gen.d.ts +0 -96
  22. package/out-js/decentraland/social_service/errors.gen.js +0 -405
  23. package/out-js/decentraland/social_service/errors.gen.js.map +0 -1
  24. package/out-ts/decentraland/social_service/errors.gen.ts +0 -442
  25. package/proto/decentraland/social_service/errors.proto +0 -30
  26. package/proto/decentraland/social_service/v3/social_service_v3.proto +0 -51
@@ -1,6 +1,5 @@
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";
4
3
  export declare const protobufPackage = "decentraland.social_service.v2";
5
4
  export declare enum ConnectivityStatus {
6
5
  ONLINE = 0,
@@ -18,75 +17,34 @@ export declare enum FriendshipStatus {
18
17
  REJECTED = 4,
19
18
  DELETED = 5,
20
19
  BLOCKED = 6,
21
- NONE = 7,
22
- BLOCKED_BY = 8,
23
20
  UNRECOGNIZED = -1
24
21
  }
25
22
  export declare function friendshipStatusFromJSON(object: any): FriendshipStatus;
26
23
  export declare function friendshipStatusToJSON(object: FriendshipStatus): string;
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
24
+ /** Errors */
25
+ export interface InvalidFriendshipAction {
38
26
  }
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
27
+ export interface InternalServerError {
48
28
  }
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;
58
29
  /** Types */
59
30
  export interface User {
60
31
  address: string;
61
32
  }
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
- }
75
33
  export interface Pagination {
76
34
  limit: number;
77
35
  offset: number;
78
36
  }
79
37
  export interface FriendshipRequestResponse {
80
- friend: FriendProfile | undefined;
38
+ user: User | undefined;
81
39
  createdAt: number;
82
40
  message?: string | undefined;
83
- id: string;
84
41
  }
85
42
  export interface FriendshipRequests {
86
43
  requests: FriendshipRequestResponse[];
87
44
  }
88
45
  export interface GetFriendsPayload {
89
46
  pagination?: Pagination | undefined;
47
+ status?: ConnectivityStatus | undefined;
90
48
  }
91
49
  export interface GetFriendshipRequestsPayload {
92
50
  pagination?: Pagination | undefined;
@@ -133,8 +91,8 @@ export interface PaginatedResponse {
133
91
  total: number;
134
92
  page: number;
135
93
  }
136
- export interface PaginatedFriendsProfilesResponse {
137
- friends: FriendProfile[];
94
+ export interface PaginatedUsersResponse {
95
+ users: User[];
138
96
  paginationData: PaginatedResponse | undefined;
139
97
  }
140
98
  export interface PaginatedFriendshipRequestsResponse {
@@ -157,21 +115,16 @@ export interface UpsertFriendshipResponse {
157
115
  } | {
158
116
  $case: "internalServerError";
159
117
  internalServerError: InternalServerError;
160
- } | {
161
- $case: "invalidRequest";
162
- invalidRequest: InvalidRequest;
163
118
  } | undefined;
164
119
  }
165
120
  export interface UpsertFriendshipResponse_Accepted {
166
121
  id: string;
167
122
  createdAt: number;
168
- friend: FriendProfile | undefined;
169
- message?: string | undefined;
170
123
  }
171
124
  export interface FriendshipUpdate {
172
125
  update?: {
173
126
  $case: "request";
174
- request: FriendshipUpdate_RequestResponse;
127
+ request: FriendshipRequestResponse;
175
128
  } | {
176
129
  $case: "accept";
177
130
  accept: FriendshipUpdate_AcceptResponse;
@@ -184,17 +137,8 @@ export interface FriendshipUpdate {
184
137
  } | {
185
138
  $case: "cancel";
186
139
  cancel: FriendshipUpdate_CancelResponse;
187
- } | {
188
- $case: "block";
189
- block: FriendshipUpdate_BlockResponse;
190
140
  } | undefined;
191
141
  }
192
- export interface FriendshipUpdate_RequestResponse {
193
- friend: FriendProfile | undefined;
194
- createdAt: number;
195
- message?: string | undefined;
196
- id: string;
197
- }
198
142
  export interface FriendshipUpdate_AcceptResponse {
199
143
  user: User | undefined;
200
144
  }
@@ -207,13 +151,6 @@ export interface FriendshipUpdate_DeleteResponse {
207
151
  export interface FriendshipUpdate_CancelResponse {
208
152
  user: User | undefined;
209
153
  }
210
- export interface FriendshipUpdate_BlockResponse {
211
- user: User | undefined;
212
- }
213
- export interface FriendConnectivityUpdate {
214
- friend: FriendProfile | undefined;
215
- status: ConnectivityStatus;
216
- }
217
154
  export interface GetFriendshipStatusPayload {
218
155
  user: User | undefined;
219
156
  }
@@ -224,480 +161,27 @@ export interface GetFriendshipStatusResponse {
224
161
  } | {
225
162
  $case: "internalServerError";
226
163
  internalServerError: InternalServerError;
227
- } | {
228
- $case: "invalidRequest";
229
- invalidRequest: InvalidRequest;
230
164
  } | undefined;
231
165
  }
232
166
  export interface GetFriendshipStatusResponse_Ok {
233
167
  status: FriendshipStatus;
234
168
  message?: string | undefined;
235
169
  }
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
- }
533
- export interface RequestToSpeakInCommunityVoiceChatResponse {
534
- response?: {
535
- $case: "ok";
536
- ok: RequestToSpeakInCommunityVoiceChatResponse_Ok;
537
- } | {
538
- $case: "invalidRequest";
539
- invalidRequest: InvalidRequest;
540
- } | {
541
- $case: "forbiddenError";
542
- forbiddenError: ForbiddenError;
543
- } | {
544
- $case: "notFoundError";
545
- notFoundError: NotFoundError;
546
- } | {
547
- $case: "internalServerError";
548
- internalServerError: InternalServerError;
549
- } | undefined;
550
- }
551
- export interface RequestToSpeakInCommunityVoiceChatResponse_Ok {
552
- message: string;
553
- }
554
- /** Promote speaker in community voice chat */
555
- export interface PromoteSpeakerInCommunityVoiceChatPayload {
556
- communityId: string;
557
- userAddress: string;
558
- }
559
- export interface PromoteSpeakerInCommunityVoiceChatResponse {
560
- response?: {
561
- $case: "ok";
562
- ok: PromoteSpeakerInCommunityVoiceChatResponse_Ok;
563
- } | {
564
- $case: "invalidRequest";
565
- invalidRequest: InvalidRequest;
566
- } | {
567
- $case: "forbiddenError";
568
- forbiddenError: ForbiddenError;
569
- } | {
570
- $case: "notFoundError";
571
- notFoundError: NotFoundError;
572
- } | {
573
- $case: "internalServerError";
574
- internalServerError: InternalServerError;
575
- } | undefined;
576
- }
577
- export interface PromoteSpeakerInCommunityVoiceChatResponse_Ok {
578
- message: string;
579
- }
580
- /** Demote speaker in community voice chat */
581
- export interface DemoteSpeakerInCommunityVoiceChatPayload {
582
- communityId: string;
583
- userAddress: string;
584
- }
585
- export interface DemoteSpeakerInCommunityVoiceChatResponse {
586
- response?: {
587
- $case: "ok";
588
- ok: DemoteSpeakerInCommunityVoiceChatResponse_Ok;
589
- } | {
590
- $case: "invalidRequest";
591
- invalidRequest: InvalidRequest;
592
- } | {
593
- $case: "forbiddenError";
594
- forbiddenError: ForbiddenError;
595
- } | {
596
- $case: "notFoundError";
597
- notFoundError: NotFoundError;
598
- } | {
599
- $case: "internalServerError";
600
- internalServerError: InternalServerError;
601
- } | undefined;
602
- }
603
- export interface DemoteSpeakerInCommunityVoiceChatResponse_Ok {
604
- message: string;
605
- }
606
- /** Kick player from community voice chat */
607
- export interface KickPlayerFromCommunityVoiceChatPayload {
608
- communityId: string;
609
- userAddress: string;
610
- }
611
- export interface KickPlayerFromCommunityVoiceChatResponse {
612
- response?: {
613
- $case: "ok";
614
- ok: KickPlayerFromCommunityVoiceChatResponse_Ok;
615
- } | {
616
- $case: "invalidRequest";
617
- invalidRequest: InvalidRequest;
618
- } | {
619
- $case: "forbiddenError";
620
- forbiddenError: ForbiddenError;
621
- } | {
622
- $case: "notFoundError";
623
- notFoundError: NotFoundError;
624
- } | {
625
- $case: "internalServerError";
626
- internalServerError: InternalServerError;
627
- } | undefined;
628
- }
629
- export interface KickPlayerFromCommunityVoiceChatResponse_Ok {
630
- message: string;
631
- }
632
- /** Reject speak request in community voice chat */
633
- export interface RejectSpeakRequestInCommunityVoiceChatPayload {
634
- communityId: string;
635
- userAddress: string;
636
- }
637
- export interface RejectSpeakRequestInCommunityVoiceChatResponse {
638
- response?: {
639
- $case: "ok";
640
- ok: RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
641
- } | {
642
- $case: "invalidRequest";
643
- invalidRequest: InvalidRequest;
644
- } | {
645
- $case: "forbiddenError";
646
- forbiddenError: ForbiddenError;
647
- } | {
648
- $case: "notFoundError";
649
- notFoundError: NotFoundError;
650
- } | {
651
- $case: "internalServerError";
652
- internalServerError: InternalServerError;
653
- } | undefined;
654
- }
655
- export interface RejectSpeakRequestInCommunityVoiceChatResponse_Ok {
656
- message: string;
657
- }
658
- /** End community voice chat (moderator/owner only) */
659
- export interface EndCommunityVoiceChatPayload {
660
- communityId: string;
661
- }
662
- export interface EndCommunityVoiceChatResponse {
663
- response?: {
664
- $case: "ok";
665
- ok: EndCommunityVoiceChatResponse_Ok;
666
- } | {
667
- $case: "invalidRequest";
668
- invalidRequest: InvalidRequest;
669
- } | {
670
- $case: "forbiddenError";
671
- forbiddenError: ForbiddenError;
672
- } | {
673
- $case: "notFoundError";
674
- notFoundError: NotFoundError;
675
- } | {
676
- $case: "internalServerError";
677
- internalServerError: InternalServerError;
678
- } | undefined;
679
- }
680
- export interface EndCommunityVoiceChatResponse_Ok {
681
- message: string;
682
- }
683
- /** Community voice chat updates/events - 'started' and 'ended' status */
684
- export interface CommunityVoiceChatUpdate {
685
- communityId: string;
686
- createdAt: number;
687
- /** 'started' or 'ended' */
688
- status: CommunityVoiceChatStatus;
689
- /** Only present when status is 'ended' */
690
- endedAt?: number | undefined;
691
- /** Positions/coordinates associated with the community (world: false) */
692
- positions: string[];
693
- /** Whether the receiving user is a member of the community */
694
- isMember: boolean;
695
- /** Name of the community */
696
- communityName: string;
697
- /** Image/picture of the community */
698
- communityImage?: string | undefined;
699
- /** World names associated with the community (world: true) */
700
- worlds: string[];
170
+ export declare namespace InvalidFriendshipAction {
171
+ function encode(_: InvalidFriendshipAction, writer?: _m0.Writer): _m0.Writer;
172
+ function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidFriendshipAction;
173
+ function fromJSON(_: any): InvalidFriendshipAction;
174
+ function toJSON(_: InvalidFriendshipAction): unknown;
175
+ function create<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(base?: I): InvalidFriendshipAction;
176
+ function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(_: I): InvalidFriendshipAction;
177
+ }
178
+ export declare namespace InternalServerError {
179
+ function encode(_: InternalServerError, writer?: _m0.Writer): _m0.Writer;
180
+ function decode(input: _m0.Reader | Uint8Array, length?: number): InternalServerError;
181
+ function fromJSON(_: any): InternalServerError;
182
+ function toJSON(_: InternalServerError): unknown;
183
+ function create<I extends Exact<DeepPartial<InternalServerError>, I>>(base?: I): InternalServerError;
184
+ function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(_: I): InternalServerError;
701
185
  }
702
186
  export declare namespace User {
703
187
  function encode(message: User, writer?: _m0.Writer): _m0.Writer;
@@ -707,22 +191,6 @@ export declare namespace User {
707
191
  function create<I extends Exact<DeepPartial<User>, I>>(base?: I): User;
708
192
  function fromPartial<I extends Exact<DeepPartial<User>, I>>(object: I): User;
709
193
  }
710
- export declare namespace FriendProfile {
711
- function encode(message: FriendProfile, writer?: _m0.Writer): _m0.Writer;
712
- function decode(input: _m0.Reader | Uint8Array, length?: number): FriendProfile;
713
- function fromJSON(object: any): FriendProfile;
714
- function toJSON(message: FriendProfile): unknown;
715
- function create<I extends Exact<DeepPartial<FriendProfile>, I>>(base?: I): FriendProfile;
716
- function fromPartial<I extends Exact<DeepPartial<FriendProfile>, I>>(object: I): FriendProfile;
717
- }
718
- export declare namespace BlockedUserProfile {
719
- function encode(message: BlockedUserProfile, writer?: _m0.Writer): _m0.Writer;
720
- function decode(input: _m0.Reader | Uint8Array, length?: number): BlockedUserProfile;
721
- function fromJSON(object: any): BlockedUserProfile;
722
- function toJSON(message: BlockedUserProfile): unknown;
723
- function create<I extends Exact<DeepPartial<BlockedUserProfile>, I>>(base?: I): BlockedUserProfile;
724
- function fromPartial<I extends Exact<DeepPartial<BlockedUserProfile>, I>>(object: I): BlockedUserProfile;
725
- }
726
194
  export declare namespace Pagination {
727
195
  function encode(message: Pagination, writer?: _m0.Writer): _m0.Writer;
728
196
  function decode(input: _m0.Reader | Uint8Array, length?: number): Pagination;
@@ -827,13 +295,13 @@ export declare namespace PaginatedResponse {
827
295
  function create<I extends Exact<DeepPartial<PaginatedResponse>, I>>(base?: I): PaginatedResponse;
828
296
  function fromPartial<I extends Exact<DeepPartial<PaginatedResponse>, I>>(object: I): PaginatedResponse;
829
297
  }
830
- export declare namespace PaginatedFriendsProfilesResponse {
831
- function encode(message: PaginatedFriendsProfilesResponse, writer?: _m0.Writer): _m0.Writer;
832
- function decode(input: _m0.Reader | Uint8Array, length?: number): PaginatedFriendsProfilesResponse;
833
- function fromJSON(object: any): PaginatedFriendsProfilesResponse;
834
- function toJSON(message: PaginatedFriendsProfilesResponse): unknown;
835
- function create<I extends Exact<DeepPartial<PaginatedFriendsProfilesResponse>, I>>(base?: I): PaginatedFriendsProfilesResponse;
836
- function fromPartial<I extends Exact<DeepPartial<PaginatedFriendsProfilesResponse>, I>>(object: I): PaginatedFriendsProfilesResponse;
298
+ export declare namespace PaginatedUsersResponse {
299
+ function encode(message: PaginatedUsersResponse, writer?: _m0.Writer): _m0.Writer;
300
+ function decode(input: _m0.Reader | Uint8Array, length?: number): PaginatedUsersResponse;
301
+ function fromJSON(object: any): PaginatedUsersResponse;
302
+ function toJSON(message: PaginatedUsersResponse): unknown;
303
+ function create<I extends Exact<DeepPartial<PaginatedUsersResponse>, I>>(base?: I): PaginatedUsersResponse;
304
+ function fromPartial<I extends Exact<DeepPartial<PaginatedUsersResponse>, I>>(object: I): PaginatedUsersResponse;
837
305
  }
838
306
  export declare namespace PaginatedFriendshipRequestsResponse {
839
307
  function encode(message: PaginatedFriendshipRequestsResponse, writer?: _m0.Writer): _m0.Writer;
@@ -867,14 +335,6 @@ export declare namespace FriendshipUpdate {
867
335
  function create<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(base?: I): FriendshipUpdate;
868
336
  function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(object: I): FriendshipUpdate;
869
337
  }
870
- export declare namespace FriendshipUpdate_RequestResponse {
871
- function encode(message: FriendshipUpdate_RequestResponse, writer?: _m0.Writer): _m0.Writer;
872
- function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_RequestResponse;
873
- function fromJSON(object: any): FriendshipUpdate_RequestResponse;
874
- function toJSON(message: FriendshipUpdate_RequestResponse): unknown;
875
- function create<I extends Exact<DeepPartial<FriendshipUpdate_RequestResponse>, I>>(base?: I): FriendshipUpdate_RequestResponse;
876
- function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_RequestResponse>, I>>(object: I): FriendshipUpdate_RequestResponse;
877
- }
878
338
  export declare namespace FriendshipUpdate_AcceptResponse {
879
339
  function encode(message: FriendshipUpdate_AcceptResponse, writer?: _m0.Writer): _m0.Writer;
880
340
  function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_AcceptResponse;
@@ -907,22 +367,6 @@ export declare namespace FriendshipUpdate_CancelResponse {
907
367
  function create<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(base?: I): FriendshipUpdate_CancelResponse;
908
368
  function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(object: I): FriendshipUpdate_CancelResponse;
909
369
  }
910
- export declare namespace FriendshipUpdate_BlockResponse {
911
- function encode(message: FriendshipUpdate_BlockResponse, writer?: _m0.Writer): _m0.Writer;
912
- function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_BlockResponse;
913
- function fromJSON(object: any): FriendshipUpdate_BlockResponse;
914
- function toJSON(message: FriendshipUpdate_BlockResponse): unknown;
915
- function create<I extends Exact<DeepPartial<FriendshipUpdate_BlockResponse>, I>>(base?: I): FriendshipUpdate_BlockResponse;
916
- function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_BlockResponse>, I>>(object: I): FriendshipUpdate_BlockResponse;
917
- }
918
- export declare namespace FriendConnectivityUpdate {
919
- function encode(message: FriendConnectivityUpdate, writer?: _m0.Writer): _m0.Writer;
920
- function decode(input: _m0.Reader | Uint8Array, length?: number): FriendConnectivityUpdate;
921
- function fromJSON(object: any): FriendConnectivityUpdate;
922
- function toJSON(message: FriendConnectivityUpdate): unknown;
923
- function create<I extends Exact<DeepPartial<FriendConnectivityUpdate>, I>>(base?: I): FriendConnectivityUpdate;
924
- function fromPartial<I extends Exact<DeepPartial<FriendConnectivityUpdate>, I>>(object: I): FriendConnectivityUpdate;
925
- }
926
370
  export declare namespace GetFriendshipStatusPayload {
927
371
  function encode(message: GetFriendshipStatusPayload, writer?: _m0.Writer): _m0.Writer;
928
372
  function decode(input: _m0.Reader | Uint8Array, length?: number): GetFriendshipStatusPayload;
@@ -947,502 +391,6 @@ export declare namespace GetFriendshipStatusResponse_Ok {
947
391
  function create<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(base?: I): GetFriendshipStatusResponse_Ok;
948
392
  function fromPartial<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(object: I): GetFriendshipStatusResponse_Ok;
949
393
  }
950
- export declare namespace BlockUserPayload {
951
- function encode(message: BlockUserPayload, writer?: _m0.Writer): _m0.Writer;
952
- function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserPayload;
953
- function fromJSON(object: any): BlockUserPayload;
954
- function toJSON(message: BlockUserPayload): unknown;
955
- function create<I extends Exact<DeepPartial<BlockUserPayload>, I>>(base?: I): BlockUserPayload;
956
- function fromPartial<I extends Exact<DeepPartial<BlockUserPayload>, I>>(object: I): BlockUserPayload;
957
- }
958
- export declare namespace BlockUserResponse {
959
- function encode(message: BlockUserResponse, writer?: _m0.Writer): _m0.Writer;
960
- function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse;
961
- function fromJSON(object: any): BlockUserResponse;
962
- function toJSON(message: BlockUserResponse): unknown;
963
- function create<I extends Exact<DeepPartial<BlockUserResponse>, I>>(base?: I): BlockUserResponse;
964
- function fromPartial<I extends Exact<DeepPartial<BlockUserResponse>, I>>(object: I): BlockUserResponse;
965
- }
966
- export declare namespace BlockUserResponse_Ok {
967
- function encode(message: BlockUserResponse_Ok, writer?: _m0.Writer): _m0.Writer;
968
- function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse_Ok;
969
- function fromJSON(object: any): BlockUserResponse_Ok;
970
- function toJSON(message: BlockUserResponse_Ok): unknown;
971
- function create<I extends Exact<DeepPartial<BlockUserResponse_Ok>, I>>(base?: I): BlockUserResponse_Ok;
972
- function fromPartial<I extends Exact<DeepPartial<BlockUserResponse_Ok>, I>>(object: I): BlockUserResponse_Ok;
973
- }
974
- export declare namespace UnblockUserPayload {
975
- function encode(message: UnblockUserPayload, writer?: _m0.Writer): _m0.Writer;
976
- function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserPayload;
977
- function fromJSON(object: any): UnblockUserPayload;
978
- function toJSON(message: UnblockUserPayload): unknown;
979
- function create<I extends Exact<DeepPartial<UnblockUserPayload>, I>>(base?: I): UnblockUserPayload;
980
- function fromPartial<I extends Exact<DeepPartial<UnblockUserPayload>, I>>(object: I): UnblockUserPayload;
981
- }
982
- export declare namespace UnblockUserResponse {
983
- function encode(message: UnblockUserResponse, writer?: _m0.Writer): _m0.Writer;
984
- function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserResponse;
985
- function fromJSON(object: any): UnblockUserResponse;
986
- function toJSON(message: UnblockUserResponse): unknown;
987
- function create<I extends Exact<DeepPartial<UnblockUserResponse>, I>>(base?: I): UnblockUserResponse;
988
- function fromPartial<I extends Exact<DeepPartial<UnblockUserResponse>, I>>(object: I): UnblockUserResponse;
989
- }
990
- export declare namespace UnblockUserResponse_Ok {
991
- function encode(message: UnblockUserResponse_Ok, writer?: _m0.Writer): _m0.Writer;
992
- function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserResponse_Ok;
993
- function fromJSON(object: any): UnblockUserResponse_Ok;
994
- function toJSON(message: UnblockUserResponse_Ok): unknown;
995
- function create<I extends Exact<DeepPartial<UnblockUserResponse_Ok>, I>>(base?: I): UnblockUserResponse_Ok;
996
- function fromPartial<I extends Exact<DeepPartial<UnblockUserResponse_Ok>, I>>(object: I): UnblockUserResponse_Ok;
997
- }
998
- export declare namespace SocialSettings {
999
- function encode(message: SocialSettings, writer?: _m0.Writer): _m0.Writer;
1000
- function decode(input: _m0.Reader | Uint8Array, length?: number): SocialSettings;
1001
- function fromJSON(object: any): SocialSettings;
1002
- function toJSON(message: SocialSettings): unknown;
1003
- function create<I extends Exact<DeepPartial<SocialSettings>, I>>(base?: I): SocialSettings;
1004
- function fromPartial<I extends Exact<DeepPartial<SocialSettings>, I>>(object: I): SocialSettings;
1005
- }
1006
- export declare namespace GetSocialSettingsResponse {
1007
- function encode(message: GetSocialSettingsResponse, writer?: _m0.Writer): _m0.Writer;
1008
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetSocialSettingsResponse;
1009
- function fromJSON(object: any): GetSocialSettingsResponse;
1010
- function toJSON(message: GetSocialSettingsResponse): unknown;
1011
- function create<I extends Exact<DeepPartial<GetSocialSettingsResponse>, I>>(base?: I): GetSocialSettingsResponse;
1012
- function fromPartial<I extends Exact<DeepPartial<GetSocialSettingsResponse>, I>>(object: I): GetSocialSettingsResponse;
1013
- }
1014
- export declare namespace GetSocialSettingsResponse_Ok {
1015
- function encode(message: GetSocialSettingsResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1016
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetSocialSettingsResponse_Ok;
1017
- function fromJSON(object: any): GetSocialSettingsResponse_Ok;
1018
- function toJSON(message: GetSocialSettingsResponse_Ok): unknown;
1019
- function create<I extends Exact<DeepPartial<GetSocialSettingsResponse_Ok>, I>>(base?: I): GetSocialSettingsResponse_Ok;
1020
- function fromPartial<I extends Exact<DeepPartial<GetSocialSettingsResponse_Ok>, I>>(object: I): GetSocialSettingsResponse_Ok;
1021
- }
1022
- export declare namespace UpsertSocialSettingsPayload {
1023
- function encode(message: UpsertSocialSettingsPayload, writer?: _m0.Writer): _m0.Writer;
1024
- function decode(input: _m0.Reader | Uint8Array, length?: number): UpsertSocialSettingsPayload;
1025
- function fromJSON(object: any): UpsertSocialSettingsPayload;
1026
- function toJSON(message: UpsertSocialSettingsPayload): unknown;
1027
- function create<I extends Exact<DeepPartial<UpsertSocialSettingsPayload>, I>>(base?: I): UpsertSocialSettingsPayload;
1028
- function fromPartial<I extends Exact<DeepPartial<UpsertSocialSettingsPayload>, I>>(object: I): UpsertSocialSettingsPayload;
1029
- }
1030
- export declare namespace UpsertSocialSettingsResponse {
1031
- function encode(message: UpsertSocialSettingsResponse, writer?: _m0.Writer): _m0.Writer;
1032
- function decode(input: _m0.Reader | Uint8Array, length?: number): UpsertSocialSettingsResponse;
1033
- function fromJSON(object: any): UpsertSocialSettingsResponse;
1034
- function toJSON(message: UpsertSocialSettingsResponse): unknown;
1035
- function create<I extends Exact<DeepPartial<UpsertSocialSettingsResponse>, I>>(base?: I): UpsertSocialSettingsResponse;
1036
- function fromPartial<I extends Exact<DeepPartial<UpsertSocialSettingsResponse>, I>>(object: I): UpsertSocialSettingsResponse;
1037
- }
1038
- export declare namespace GetPrivateMessagesSettingsPayload {
1039
- function encode(message: GetPrivateMessagesSettingsPayload, writer?: _m0.Writer): _m0.Writer;
1040
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsPayload;
1041
- function fromJSON(object: any): GetPrivateMessagesSettingsPayload;
1042
- function toJSON(message: GetPrivateMessagesSettingsPayload): unknown;
1043
- function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsPayload>, I>>(base?: I): GetPrivateMessagesSettingsPayload;
1044
- function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsPayload>, I>>(object: I): GetPrivateMessagesSettingsPayload;
1045
- }
1046
- export declare namespace GetPrivateMessagesSettingsResponse {
1047
- function encode(message: GetPrivateMessagesSettingsResponse, writer?: _m0.Writer): _m0.Writer;
1048
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse;
1049
- function fromJSON(object: any): GetPrivateMessagesSettingsResponse;
1050
- function toJSON(message: GetPrivateMessagesSettingsResponse): unknown;
1051
- function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse>, I>>(base?: I): GetPrivateMessagesSettingsResponse;
1052
- function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse>, I>>(object: I): GetPrivateMessagesSettingsResponse;
1053
- }
1054
- export declare namespace GetPrivateMessagesSettingsResponse_PrivateMessagesSettings {
1055
- function encode(message: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings, writer?: _m0.Writer): _m0.Writer;
1056
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
1057
- function fromJSON(object: any): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
1058
- function toJSON(message: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings): unknown;
1059
- function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_PrivateMessagesSettings>, I>>(base?: I): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
1060
- function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_PrivateMessagesSettings>, I>>(object: I): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
1061
- }
1062
- export declare namespace GetPrivateMessagesSettingsResponse_Ok {
1063
- function encode(message: GetPrivateMessagesSettingsResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1064
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse_Ok;
1065
- function fromJSON(object: any): GetPrivateMessagesSettingsResponse_Ok;
1066
- function toJSON(message: GetPrivateMessagesSettingsResponse_Ok): unknown;
1067
- function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_Ok>, I>>(base?: I): GetPrivateMessagesSettingsResponse_Ok;
1068
- function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_Ok>, I>>(object: I): GetPrivateMessagesSettingsResponse_Ok;
1069
- }
1070
- export declare namespace GetBlockedUsersPayload {
1071
- function encode(message: GetBlockedUsersPayload, writer?: _m0.Writer): _m0.Writer;
1072
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockedUsersPayload;
1073
- function fromJSON(object: any): GetBlockedUsersPayload;
1074
- function toJSON(message: GetBlockedUsersPayload): unknown;
1075
- function create<I extends Exact<DeepPartial<GetBlockedUsersPayload>, I>>(base?: I): GetBlockedUsersPayload;
1076
- function fromPartial<I extends Exact<DeepPartial<GetBlockedUsersPayload>, I>>(object: I): GetBlockedUsersPayload;
1077
- }
1078
- export declare namespace GetBlockedUsersResponse {
1079
- function encode(message: GetBlockedUsersResponse, writer?: _m0.Writer): _m0.Writer;
1080
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockedUsersResponse;
1081
- function fromJSON(object: any): GetBlockedUsersResponse;
1082
- function toJSON(message: GetBlockedUsersResponse): unknown;
1083
- function create<I extends Exact<DeepPartial<GetBlockedUsersResponse>, I>>(base?: I): GetBlockedUsersResponse;
1084
- function fromPartial<I extends Exact<DeepPartial<GetBlockedUsersResponse>, I>>(object: I): GetBlockedUsersResponse;
1085
- }
1086
- export declare namespace GetBlockingStatusResponse {
1087
- function encode(message: GetBlockingStatusResponse, writer?: _m0.Writer): _m0.Writer;
1088
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockingStatusResponse;
1089
- function fromJSON(object: any): GetBlockingStatusResponse;
1090
- function toJSON(message: GetBlockingStatusResponse): unknown;
1091
- function create<I extends Exact<DeepPartial<GetBlockingStatusResponse>, I>>(base?: I): GetBlockingStatusResponse;
1092
- function fromPartial<I extends Exact<DeepPartial<GetBlockingStatusResponse>, I>>(object: I): GetBlockingStatusResponse;
1093
- }
1094
- export declare namespace BlockUpdate {
1095
- function encode(message: BlockUpdate, writer?: _m0.Writer): _m0.Writer;
1096
- function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUpdate;
1097
- function fromJSON(object: any): BlockUpdate;
1098
- function toJSON(message: BlockUpdate): unknown;
1099
- function create<I extends Exact<DeepPartial<BlockUpdate>, I>>(base?: I): BlockUpdate;
1100
- function fromPartial<I extends Exact<DeepPartial<BlockUpdate>, I>>(object: I): BlockUpdate;
1101
- }
1102
- export declare namespace CommunityMemberConnectivityUpdate {
1103
- function encode(message: CommunityMemberConnectivityUpdate, writer?: _m0.Writer): _m0.Writer;
1104
- function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityMemberConnectivityUpdate;
1105
- function fromJSON(object: any): CommunityMemberConnectivityUpdate;
1106
- function toJSON(message: CommunityMemberConnectivityUpdate): unknown;
1107
- function create<I extends Exact<DeepPartial<CommunityMemberConnectivityUpdate>, I>>(base?: I): CommunityMemberConnectivityUpdate;
1108
- function fromPartial<I extends Exact<DeepPartial<CommunityMemberConnectivityUpdate>, I>>(object: I): CommunityMemberConnectivityUpdate;
1109
- }
1110
- export declare namespace StartPrivateVoiceChatPayload {
1111
- function encode(message: StartPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1112
- function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatPayload;
1113
- function fromJSON(object: any): StartPrivateVoiceChatPayload;
1114
- function toJSON(message: StartPrivateVoiceChatPayload): unknown;
1115
- function create<I extends Exact<DeepPartial<StartPrivateVoiceChatPayload>, I>>(base?: I): StartPrivateVoiceChatPayload;
1116
- function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatPayload>, I>>(object: I): StartPrivateVoiceChatPayload;
1117
- }
1118
- export declare namespace StartPrivateVoiceChatResponse {
1119
- function encode(message: StartPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1120
- function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatResponse;
1121
- function fromJSON(object: any): StartPrivateVoiceChatResponse;
1122
- function toJSON(message: StartPrivateVoiceChatResponse): unknown;
1123
- function create<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse>, I>>(base?: I): StartPrivateVoiceChatResponse;
1124
- function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse>, I>>(object: I): StartPrivateVoiceChatResponse;
1125
- }
1126
- export declare namespace StartPrivateVoiceChatResponse_Ok {
1127
- function encode(message: StartPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1128
- function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatResponse_Ok;
1129
- function fromJSON(object: any): StartPrivateVoiceChatResponse_Ok;
1130
- function toJSON(message: StartPrivateVoiceChatResponse_Ok): unknown;
1131
- function create<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse_Ok>, I>>(base?: I): StartPrivateVoiceChatResponse_Ok;
1132
- function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse_Ok>, I>>(object: I): StartPrivateVoiceChatResponse_Ok;
1133
- }
1134
- export declare namespace AcceptPrivateVoiceChatPayload {
1135
- function encode(message: AcceptPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1136
- function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatPayload;
1137
- function fromJSON(object: any): AcceptPrivateVoiceChatPayload;
1138
- function toJSON(message: AcceptPrivateVoiceChatPayload): unknown;
1139
- function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatPayload>, I>>(base?: I): AcceptPrivateVoiceChatPayload;
1140
- function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatPayload>, I>>(object: I): AcceptPrivateVoiceChatPayload;
1141
- }
1142
- export declare namespace AcceptPrivateVoiceChatResponse {
1143
- function encode(message: AcceptPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1144
- function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatResponse;
1145
- function fromJSON(object: any): AcceptPrivateVoiceChatResponse;
1146
- function toJSON(message: AcceptPrivateVoiceChatResponse): unknown;
1147
- function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse>, I>>(base?: I): AcceptPrivateVoiceChatResponse;
1148
- function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse>, I>>(object: I): AcceptPrivateVoiceChatResponse;
1149
- }
1150
- export declare namespace AcceptPrivateVoiceChatResponse_Ok {
1151
- function encode(message: AcceptPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1152
- function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatResponse_Ok;
1153
- function fromJSON(object: any): AcceptPrivateVoiceChatResponse_Ok;
1154
- function toJSON(message: AcceptPrivateVoiceChatResponse_Ok): unknown;
1155
- function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse_Ok>, I>>(base?: I): AcceptPrivateVoiceChatResponse_Ok;
1156
- function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse_Ok>, I>>(object: I): AcceptPrivateVoiceChatResponse_Ok;
1157
- }
1158
- export declare namespace RejectPrivateVoiceChatPayload {
1159
- function encode(message: RejectPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1160
- function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatPayload;
1161
- function fromJSON(object: any): RejectPrivateVoiceChatPayload;
1162
- function toJSON(message: RejectPrivateVoiceChatPayload): unknown;
1163
- function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatPayload>, I>>(base?: I): RejectPrivateVoiceChatPayload;
1164
- function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatPayload>, I>>(object: I): RejectPrivateVoiceChatPayload;
1165
- }
1166
- export declare namespace RejectPrivateVoiceChatResponse {
1167
- function encode(message: RejectPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1168
- function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatResponse;
1169
- function fromJSON(object: any): RejectPrivateVoiceChatResponse;
1170
- function toJSON(message: RejectPrivateVoiceChatResponse): unknown;
1171
- function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse>, I>>(base?: I): RejectPrivateVoiceChatResponse;
1172
- function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse>, I>>(object: I): RejectPrivateVoiceChatResponse;
1173
- }
1174
- export declare namespace RejectPrivateVoiceChatResponse_Ok {
1175
- function encode(message: RejectPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1176
- function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatResponse_Ok;
1177
- function fromJSON(object: any): RejectPrivateVoiceChatResponse_Ok;
1178
- function toJSON(message: RejectPrivateVoiceChatResponse_Ok): unknown;
1179
- function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse_Ok>, I>>(base?: I): RejectPrivateVoiceChatResponse_Ok;
1180
- function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse_Ok>, I>>(object: I): RejectPrivateVoiceChatResponse_Ok;
1181
- }
1182
- export declare namespace PrivateVoiceChatCredentials {
1183
- function encode(message: PrivateVoiceChatCredentials, writer?: _m0.Writer): _m0.Writer;
1184
- function decode(input: _m0.Reader | Uint8Array, length?: number): PrivateVoiceChatCredentials;
1185
- function fromJSON(object: any): PrivateVoiceChatCredentials;
1186
- function toJSON(message: PrivateVoiceChatCredentials): unknown;
1187
- function create<I extends Exact<DeepPartial<PrivateVoiceChatCredentials>, I>>(base?: I): PrivateVoiceChatCredentials;
1188
- function fromPartial<I extends Exact<DeepPartial<PrivateVoiceChatCredentials>, I>>(object: I): PrivateVoiceChatCredentials;
1189
- }
1190
- export declare namespace PrivateVoiceChatUpdate {
1191
- function encode(message: PrivateVoiceChatUpdate, writer?: _m0.Writer): _m0.Writer;
1192
- function decode(input: _m0.Reader | Uint8Array, length?: number): PrivateVoiceChatUpdate;
1193
- function fromJSON(object: any): PrivateVoiceChatUpdate;
1194
- function toJSON(message: PrivateVoiceChatUpdate): unknown;
1195
- function create<I extends Exact<DeepPartial<PrivateVoiceChatUpdate>, I>>(base?: I): PrivateVoiceChatUpdate;
1196
- function fromPartial<I extends Exact<DeepPartial<PrivateVoiceChatUpdate>, I>>(object: I): PrivateVoiceChatUpdate;
1197
- }
1198
- export declare namespace EndPrivateVoiceChatPayload {
1199
- function encode(message: EndPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1200
- function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatPayload;
1201
- function fromJSON(object: any): EndPrivateVoiceChatPayload;
1202
- function toJSON(message: EndPrivateVoiceChatPayload): unknown;
1203
- function create<I extends Exact<DeepPartial<EndPrivateVoiceChatPayload>, I>>(base?: I): EndPrivateVoiceChatPayload;
1204
- function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatPayload>, I>>(object: I): EndPrivateVoiceChatPayload;
1205
- }
1206
- export declare namespace EndPrivateVoiceChatResponse {
1207
- function encode(message: EndPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1208
- function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatResponse;
1209
- function fromJSON(object: any): EndPrivateVoiceChatResponse;
1210
- function toJSON(message: EndPrivateVoiceChatResponse): unknown;
1211
- function create<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse>, I>>(base?: I): EndPrivateVoiceChatResponse;
1212
- function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse>, I>>(object: I): EndPrivateVoiceChatResponse;
1213
- }
1214
- export declare namespace EndPrivateVoiceChatResponse_Ok {
1215
- function encode(message: EndPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1216
- function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatResponse_Ok;
1217
- function fromJSON(object: any): EndPrivateVoiceChatResponse_Ok;
1218
- function toJSON(message: EndPrivateVoiceChatResponse_Ok): unknown;
1219
- function create<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse_Ok>, I>>(base?: I): EndPrivateVoiceChatResponse_Ok;
1220
- function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse_Ok>, I>>(object: I): EndPrivateVoiceChatResponse_Ok;
1221
- }
1222
- export declare namespace GetIncomingPrivateVoiceChatRequestResponse {
1223
- function encode(message: GetIncomingPrivateVoiceChatRequestResponse, writer?: _m0.Writer): _m0.Writer;
1224
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetIncomingPrivateVoiceChatRequestResponse;
1225
- function fromJSON(object: any): GetIncomingPrivateVoiceChatRequestResponse;
1226
- function toJSON(message: GetIncomingPrivateVoiceChatRequestResponse): unknown;
1227
- function create<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse>, I>>(base?: I): GetIncomingPrivateVoiceChatRequestResponse;
1228
- function fromPartial<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse>, I>>(object: I): GetIncomingPrivateVoiceChatRequestResponse;
1229
- }
1230
- export declare namespace GetIncomingPrivateVoiceChatRequestResponse_Ok {
1231
- function encode(message: GetIncomingPrivateVoiceChatRequestResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1232
- function decode(input: _m0.Reader | Uint8Array, length?: number): GetIncomingPrivateVoiceChatRequestResponse_Ok;
1233
- function fromJSON(object: any): GetIncomingPrivateVoiceChatRequestResponse_Ok;
1234
- function toJSON(message: GetIncomingPrivateVoiceChatRequestResponse_Ok): unknown;
1235
- function create<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse_Ok>, I>>(base?: I): GetIncomingPrivateVoiceChatRequestResponse_Ok;
1236
- function fromPartial<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse_Ok>, I>>(object: I): GetIncomingPrivateVoiceChatRequestResponse_Ok;
1237
- }
1238
- export declare namespace CommunityVoiceChatCredentials {
1239
- function encode(message: CommunityVoiceChatCredentials, writer?: _m0.Writer): _m0.Writer;
1240
- function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityVoiceChatCredentials;
1241
- function fromJSON(object: any): CommunityVoiceChatCredentials;
1242
- function toJSON(message: CommunityVoiceChatCredentials): unknown;
1243
- function create<I extends Exact<DeepPartial<CommunityVoiceChatCredentials>, I>>(base?: I): CommunityVoiceChatCredentials;
1244
- function fromPartial<I extends Exact<DeepPartial<CommunityVoiceChatCredentials>, I>>(object: I): CommunityVoiceChatCredentials;
1245
- }
1246
- export declare namespace StartCommunityVoiceChatPayload {
1247
- function encode(message: StartCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1248
- function decode(input: _m0.Reader | Uint8Array, length?: number): StartCommunityVoiceChatPayload;
1249
- function fromJSON(object: any): StartCommunityVoiceChatPayload;
1250
- function toJSON(message: StartCommunityVoiceChatPayload): unknown;
1251
- function create<I extends Exact<DeepPartial<StartCommunityVoiceChatPayload>, I>>(base?: I): StartCommunityVoiceChatPayload;
1252
- function fromPartial<I extends Exact<DeepPartial<StartCommunityVoiceChatPayload>, I>>(object: I): StartCommunityVoiceChatPayload;
1253
- }
1254
- export declare namespace StartCommunityVoiceChatResponse {
1255
- function encode(message: StartCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1256
- function decode(input: _m0.Reader | Uint8Array, length?: number): StartCommunityVoiceChatResponse;
1257
- function fromJSON(object: any): StartCommunityVoiceChatResponse;
1258
- function toJSON(message: StartCommunityVoiceChatResponse): unknown;
1259
- function create<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse>, I>>(base?: I): StartCommunityVoiceChatResponse;
1260
- function fromPartial<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse>, I>>(object: I): StartCommunityVoiceChatResponse;
1261
- }
1262
- export declare namespace StartCommunityVoiceChatResponse_Ok {
1263
- function encode(message: StartCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1264
- function decode(input: _m0.Reader | Uint8Array, length?: number): StartCommunityVoiceChatResponse_Ok;
1265
- function fromJSON(object: any): StartCommunityVoiceChatResponse_Ok;
1266
- function toJSON(message: StartCommunityVoiceChatResponse_Ok): unknown;
1267
- function create<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse_Ok>, I>>(base?: I): StartCommunityVoiceChatResponse_Ok;
1268
- function fromPartial<I extends Exact<DeepPartial<StartCommunityVoiceChatResponse_Ok>, I>>(object: I): StartCommunityVoiceChatResponse_Ok;
1269
- }
1270
- export declare namespace JoinCommunityVoiceChatPayload {
1271
- function encode(message: JoinCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1272
- function decode(input: _m0.Reader | Uint8Array, length?: number): JoinCommunityVoiceChatPayload;
1273
- function fromJSON(object: any): JoinCommunityVoiceChatPayload;
1274
- function toJSON(message: JoinCommunityVoiceChatPayload): unknown;
1275
- function create<I extends Exact<DeepPartial<JoinCommunityVoiceChatPayload>, I>>(base?: I): JoinCommunityVoiceChatPayload;
1276
- function fromPartial<I extends Exact<DeepPartial<JoinCommunityVoiceChatPayload>, I>>(object: I): JoinCommunityVoiceChatPayload;
1277
- }
1278
- export declare namespace JoinCommunityVoiceChatResponse {
1279
- function encode(message: JoinCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1280
- function decode(input: _m0.Reader | Uint8Array, length?: number): JoinCommunityVoiceChatResponse;
1281
- function fromJSON(object: any): JoinCommunityVoiceChatResponse;
1282
- function toJSON(message: JoinCommunityVoiceChatResponse): unknown;
1283
- function create<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse>, I>>(base?: I): JoinCommunityVoiceChatResponse;
1284
- function fromPartial<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse>, I>>(object: I): JoinCommunityVoiceChatResponse;
1285
- }
1286
- export declare namespace JoinCommunityVoiceChatResponse_Ok {
1287
- function encode(message: JoinCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1288
- function decode(input: _m0.Reader | Uint8Array, length?: number): JoinCommunityVoiceChatResponse_Ok;
1289
- function fromJSON(object: any): JoinCommunityVoiceChatResponse_Ok;
1290
- function toJSON(message: JoinCommunityVoiceChatResponse_Ok): unknown;
1291
- function create<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse_Ok>, I>>(base?: I): JoinCommunityVoiceChatResponse_Ok;
1292
- function fromPartial<I extends Exact<DeepPartial<JoinCommunityVoiceChatResponse_Ok>, I>>(object: I): JoinCommunityVoiceChatResponse_Ok;
1293
- }
1294
- export declare namespace RequestToSpeakInCommunityVoiceChatPayload {
1295
- function encode(message: RequestToSpeakInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1296
- function decode(input: _m0.Reader | Uint8Array, length?: number): RequestToSpeakInCommunityVoiceChatPayload;
1297
- function fromJSON(object: any): RequestToSpeakInCommunityVoiceChatPayload;
1298
- function toJSON(message: RequestToSpeakInCommunityVoiceChatPayload): unknown;
1299
- function create<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatPayload>, I>>(base?: I): RequestToSpeakInCommunityVoiceChatPayload;
1300
- function fromPartial<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatPayload>, I>>(object: I): RequestToSpeakInCommunityVoiceChatPayload;
1301
- }
1302
- export declare namespace RequestToSpeakInCommunityVoiceChatResponse {
1303
- function encode(message: RequestToSpeakInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1304
- function decode(input: _m0.Reader | Uint8Array, length?: number): RequestToSpeakInCommunityVoiceChatResponse;
1305
- function fromJSON(object: any): RequestToSpeakInCommunityVoiceChatResponse;
1306
- function toJSON(message: RequestToSpeakInCommunityVoiceChatResponse): unknown;
1307
- function create<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse>, I>>(base?: I): RequestToSpeakInCommunityVoiceChatResponse;
1308
- function fromPartial<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse>, I>>(object: I): RequestToSpeakInCommunityVoiceChatResponse;
1309
- }
1310
- export declare namespace RequestToSpeakInCommunityVoiceChatResponse_Ok {
1311
- function encode(message: RequestToSpeakInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1312
- function decode(input: _m0.Reader | Uint8Array, length?: number): RequestToSpeakInCommunityVoiceChatResponse_Ok;
1313
- function fromJSON(object: any): RequestToSpeakInCommunityVoiceChatResponse_Ok;
1314
- function toJSON(message: RequestToSpeakInCommunityVoiceChatResponse_Ok): unknown;
1315
- function create<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse_Ok>, I>>(base?: I): RequestToSpeakInCommunityVoiceChatResponse_Ok;
1316
- function fromPartial<I extends Exact<DeepPartial<RequestToSpeakInCommunityVoiceChatResponse_Ok>, I>>(object: I): RequestToSpeakInCommunityVoiceChatResponse_Ok;
1317
- }
1318
- export declare namespace PromoteSpeakerInCommunityVoiceChatPayload {
1319
- function encode(message: PromoteSpeakerInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1320
- function decode(input: _m0.Reader | Uint8Array, length?: number): PromoteSpeakerInCommunityVoiceChatPayload;
1321
- function fromJSON(object: any): PromoteSpeakerInCommunityVoiceChatPayload;
1322
- function toJSON(message: PromoteSpeakerInCommunityVoiceChatPayload): unknown;
1323
- function create<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatPayload>, I>>(base?: I): PromoteSpeakerInCommunityVoiceChatPayload;
1324
- function fromPartial<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatPayload>, I>>(object: I): PromoteSpeakerInCommunityVoiceChatPayload;
1325
- }
1326
- export declare namespace PromoteSpeakerInCommunityVoiceChatResponse {
1327
- function encode(message: PromoteSpeakerInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1328
- function decode(input: _m0.Reader | Uint8Array, length?: number): PromoteSpeakerInCommunityVoiceChatResponse;
1329
- function fromJSON(object: any): PromoteSpeakerInCommunityVoiceChatResponse;
1330
- function toJSON(message: PromoteSpeakerInCommunityVoiceChatResponse): unknown;
1331
- function create<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse>, I>>(base?: I): PromoteSpeakerInCommunityVoiceChatResponse;
1332
- function fromPartial<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse>, I>>(object: I): PromoteSpeakerInCommunityVoiceChatResponse;
1333
- }
1334
- export declare namespace PromoteSpeakerInCommunityVoiceChatResponse_Ok {
1335
- function encode(message: PromoteSpeakerInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1336
- function decode(input: _m0.Reader | Uint8Array, length?: number): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
1337
- function fromJSON(object: any): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
1338
- function toJSON(message: PromoteSpeakerInCommunityVoiceChatResponse_Ok): unknown;
1339
- function create<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(base?: I): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
1340
- function fromPartial<I extends Exact<DeepPartial<PromoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(object: I): PromoteSpeakerInCommunityVoiceChatResponse_Ok;
1341
- }
1342
- export declare namespace DemoteSpeakerInCommunityVoiceChatPayload {
1343
- function encode(message: DemoteSpeakerInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1344
- function decode(input: _m0.Reader | Uint8Array, length?: number): DemoteSpeakerInCommunityVoiceChatPayload;
1345
- function fromJSON(object: any): DemoteSpeakerInCommunityVoiceChatPayload;
1346
- function toJSON(message: DemoteSpeakerInCommunityVoiceChatPayload): unknown;
1347
- function create<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatPayload>, I>>(base?: I): DemoteSpeakerInCommunityVoiceChatPayload;
1348
- function fromPartial<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatPayload>, I>>(object: I): DemoteSpeakerInCommunityVoiceChatPayload;
1349
- }
1350
- export declare namespace DemoteSpeakerInCommunityVoiceChatResponse {
1351
- function encode(message: DemoteSpeakerInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1352
- function decode(input: _m0.Reader | Uint8Array, length?: number): DemoteSpeakerInCommunityVoiceChatResponse;
1353
- function fromJSON(object: any): DemoteSpeakerInCommunityVoiceChatResponse;
1354
- function toJSON(message: DemoteSpeakerInCommunityVoiceChatResponse): unknown;
1355
- function create<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse>, I>>(base?: I): DemoteSpeakerInCommunityVoiceChatResponse;
1356
- function fromPartial<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse>, I>>(object: I): DemoteSpeakerInCommunityVoiceChatResponse;
1357
- }
1358
- export declare namespace DemoteSpeakerInCommunityVoiceChatResponse_Ok {
1359
- function encode(message: DemoteSpeakerInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1360
- function decode(input: _m0.Reader | Uint8Array, length?: number): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
1361
- function fromJSON(object: any): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
1362
- function toJSON(message: DemoteSpeakerInCommunityVoiceChatResponse_Ok): unknown;
1363
- function create<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(base?: I): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
1364
- function fromPartial<I extends Exact<DeepPartial<DemoteSpeakerInCommunityVoiceChatResponse_Ok>, I>>(object: I): DemoteSpeakerInCommunityVoiceChatResponse_Ok;
1365
- }
1366
- export declare namespace KickPlayerFromCommunityVoiceChatPayload {
1367
- function encode(message: KickPlayerFromCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1368
- function decode(input: _m0.Reader | Uint8Array, length?: number): KickPlayerFromCommunityVoiceChatPayload;
1369
- function fromJSON(object: any): KickPlayerFromCommunityVoiceChatPayload;
1370
- function toJSON(message: KickPlayerFromCommunityVoiceChatPayload): unknown;
1371
- function create<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatPayload>, I>>(base?: I): KickPlayerFromCommunityVoiceChatPayload;
1372
- function fromPartial<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatPayload>, I>>(object: I): KickPlayerFromCommunityVoiceChatPayload;
1373
- }
1374
- export declare namespace KickPlayerFromCommunityVoiceChatResponse {
1375
- function encode(message: KickPlayerFromCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1376
- function decode(input: _m0.Reader | Uint8Array, length?: number): KickPlayerFromCommunityVoiceChatResponse;
1377
- function fromJSON(object: any): KickPlayerFromCommunityVoiceChatResponse;
1378
- function toJSON(message: KickPlayerFromCommunityVoiceChatResponse): unknown;
1379
- function create<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse>, I>>(base?: I): KickPlayerFromCommunityVoiceChatResponse;
1380
- function fromPartial<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse>, I>>(object: I): KickPlayerFromCommunityVoiceChatResponse;
1381
- }
1382
- export declare namespace KickPlayerFromCommunityVoiceChatResponse_Ok {
1383
- function encode(message: KickPlayerFromCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1384
- function decode(input: _m0.Reader | Uint8Array, length?: number): KickPlayerFromCommunityVoiceChatResponse_Ok;
1385
- function fromJSON(object: any): KickPlayerFromCommunityVoiceChatResponse_Ok;
1386
- function toJSON(message: KickPlayerFromCommunityVoiceChatResponse_Ok): unknown;
1387
- function create<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse_Ok>, I>>(base?: I): KickPlayerFromCommunityVoiceChatResponse_Ok;
1388
- function fromPartial<I extends Exact<DeepPartial<KickPlayerFromCommunityVoiceChatResponse_Ok>, I>>(object: I): KickPlayerFromCommunityVoiceChatResponse_Ok;
1389
- }
1390
- export declare namespace RejectSpeakRequestInCommunityVoiceChatPayload {
1391
- function encode(message: RejectSpeakRequestInCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1392
- function decode(input: _m0.Reader | Uint8Array, length?: number): RejectSpeakRequestInCommunityVoiceChatPayload;
1393
- function fromJSON(object: any): RejectSpeakRequestInCommunityVoiceChatPayload;
1394
- function toJSON(message: RejectSpeakRequestInCommunityVoiceChatPayload): unknown;
1395
- function create<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatPayload>, I>>(base?: I): RejectSpeakRequestInCommunityVoiceChatPayload;
1396
- function fromPartial<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatPayload>, I>>(object: I): RejectSpeakRequestInCommunityVoiceChatPayload;
1397
- }
1398
- export declare namespace RejectSpeakRequestInCommunityVoiceChatResponse {
1399
- function encode(message: RejectSpeakRequestInCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1400
- function decode(input: _m0.Reader | Uint8Array, length?: number): RejectSpeakRequestInCommunityVoiceChatResponse;
1401
- function fromJSON(object: any): RejectSpeakRequestInCommunityVoiceChatResponse;
1402
- function toJSON(message: RejectSpeakRequestInCommunityVoiceChatResponse): unknown;
1403
- function create<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse>, I>>(base?: I): RejectSpeakRequestInCommunityVoiceChatResponse;
1404
- function fromPartial<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse>, I>>(object: I): RejectSpeakRequestInCommunityVoiceChatResponse;
1405
- }
1406
- export declare namespace RejectSpeakRequestInCommunityVoiceChatResponse_Ok {
1407
- function encode(message: RejectSpeakRequestInCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1408
- function decode(input: _m0.Reader | Uint8Array, length?: number): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
1409
- function fromJSON(object: any): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
1410
- function toJSON(message: RejectSpeakRequestInCommunityVoiceChatResponse_Ok): unknown;
1411
- function create<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse_Ok>, I>>(base?: I): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
1412
- function fromPartial<I extends Exact<DeepPartial<RejectSpeakRequestInCommunityVoiceChatResponse_Ok>, I>>(object: I): RejectSpeakRequestInCommunityVoiceChatResponse_Ok;
1413
- }
1414
- export declare namespace EndCommunityVoiceChatPayload {
1415
- function encode(message: EndCommunityVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
1416
- function decode(input: _m0.Reader | Uint8Array, length?: number): EndCommunityVoiceChatPayload;
1417
- function fromJSON(object: any): EndCommunityVoiceChatPayload;
1418
- function toJSON(message: EndCommunityVoiceChatPayload): unknown;
1419
- function create<I extends Exact<DeepPartial<EndCommunityVoiceChatPayload>, I>>(base?: I): EndCommunityVoiceChatPayload;
1420
- function fromPartial<I extends Exact<DeepPartial<EndCommunityVoiceChatPayload>, I>>(object: I): EndCommunityVoiceChatPayload;
1421
- }
1422
- export declare namespace EndCommunityVoiceChatResponse {
1423
- function encode(message: EndCommunityVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
1424
- function decode(input: _m0.Reader | Uint8Array, length?: number): EndCommunityVoiceChatResponse;
1425
- function fromJSON(object: any): EndCommunityVoiceChatResponse;
1426
- function toJSON(message: EndCommunityVoiceChatResponse): unknown;
1427
- function create<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse>, I>>(base?: I): EndCommunityVoiceChatResponse;
1428
- function fromPartial<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse>, I>>(object: I): EndCommunityVoiceChatResponse;
1429
- }
1430
- export declare namespace EndCommunityVoiceChatResponse_Ok {
1431
- function encode(message: EndCommunityVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
1432
- function decode(input: _m0.Reader | Uint8Array, length?: number): EndCommunityVoiceChatResponse_Ok;
1433
- function fromJSON(object: any): EndCommunityVoiceChatResponse_Ok;
1434
- function toJSON(message: EndCommunityVoiceChatResponse_Ok): unknown;
1435
- function create<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse_Ok>, I>>(base?: I): EndCommunityVoiceChatResponse_Ok;
1436
- function fromPartial<I extends Exact<DeepPartial<EndCommunityVoiceChatResponse_Ok>, I>>(object: I): EndCommunityVoiceChatResponse_Ok;
1437
- }
1438
- export declare namespace CommunityVoiceChatUpdate {
1439
- function encode(message: CommunityVoiceChatUpdate, writer?: _m0.Writer): _m0.Writer;
1440
- function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityVoiceChatUpdate;
1441
- function fromJSON(object: any): CommunityVoiceChatUpdate;
1442
- function toJSON(message: CommunityVoiceChatUpdate): unknown;
1443
- function create<I extends Exact<DeepPartial<CommunityVoiceChatUpdate>, I>>(base?: I): CommunityVoiceChatUpdate;
1444
- function fromPartial<I extends Exact<DeepPartial<CommunityVoiceChatUpdate>, I>>(object: I): CommunityVoiceChatUpdate;
1445
- }
1446
394
  export type SocialServiceDefinition = typeof SocialServiceDefinition;
1447
395
  export declare const SocialServiceDefinition: {
1448
396
  readonly name: "SocialService";
@@ -1453,7 +401,7 @@ export declare const SocialServiceDefinition: {
1453
401
  readonly name: "GetFriends";
1454
402
  readonly requestType: typeof GetFriendsPayload;
1455
403
  readonly requestStream: false;
1456
- readonly responseType: typeof PaginatedFriendsProfilesResponse;
404
+ readonly responseType: typeof PaginatedUsersResponse;
1457
405
  readonly responseStream: false;
1458
406
  readonly options: {};
1459
407
  };
@@ -1462,7 +410,7 @@ export declare const SocialServiceDefinition: {
1462
410
  readonly name: "GetMutualFriends";
1463
411
  readonly requestType: typeof GetMutualFriendsPayload;
1464
412
  readonly requestStream: false;
1465
- readonly responseType: typeof PaginatedFriendsProfilesResponse;
413
+ readonly responseType: typeof PaginatedUsersResponse;
1466
414
  readonly responseStream: false;
1467
415
  readonly options: {};
1468
416
  };
@@ -1502,7 +450,6 @@ export declare const SocialServiceDefinition: {
1502
450
  readonly responseStream: true;
1503
451
  readonly options: {};
1504
452
  };
1505
- /** Get the friendship status between the authenticated user and the one in the parameter */
1506
453
  readonly getFriendshipStatus: {
1507
454
  readonly name: "GetFriendshipStatus";
1508
455
  readonly requestType: typeof GetFriendshipStatusPayload;
@@ -1511,226 +458,6 @@ export declare const SocialServiceDefinition: {
1511
458
  readonly responseStream: false;
1512
459
  readonly options: {};
1513
460
  };
1514
- /** Subscribe to connectivity updates of friends: ONLINE, OFFLINE, AWAY */
1515
- readonly subscribeToFriendConnectivityUpdates: {
1516
- readonly name: "SubscribeToFriendConnectivityUpdates";
1517
- readonly requestType: typeof Empty;
1518
- readonly requestStream: false;
1519
- readonly responseType: typeof FriendConnectivityUpdate;
1520
- readonly responseStream: true;
1521
- readonly options: {};
1522
- };
1523
- readonly blockUser: {
1524
- readonly name: "BlockUser";
1525
- readonly requestType: typeof BlockUserPayload;
1526
- readonly requestStream: false;
1527
- readonly responseType: typeof BlockUserResponse;
1528
- readonly responseStream: false;
1529
- readonly options: {};
1530
- };
1531
- readonly unblockUser: {
1532
- readonly name: "UnblockUser";
1533
- readonly requestType: typeof UnblockUserPayload;
1534
- readonly requestStream: false;
1535
- readonly responseType: typeof UnblockUserResponse;
1536
- readonly responseStream: false;
1537
- readonly options: {};
1538
- };
1539
- readonly getBlockedUsers: {
1540
- readonly name: "GetBlockedUsers";
1541
- readonly requestType: typeof GetBlockedUsersPayload;
1542
- readonly requestStream: false;
1543
- readonly responseType: typeof GetBlockedUsersResponse;
1544
- readonly responseStream: false;
1545
- readonly options: {};
1546
- };
1547
- readonly getBlockingStatus: {
1548
- readonly name: "GetBlockingStatus";
1549
- readonly requestType: typeof Empty;
1550
- readonly requestStream: false;
1551
- readonly responseType: typeof GetBlockingStatusResponse;
1552
- readonly responseStream: false;
1553
- readonly options: {};
1554
- };
1555
- readonly subscribeToBlockUpdates: {
1556
- readonly name: "SubscribeToBlockUpdates";
1557
- readonly requestType: typeof Empty;
1558
- readonly requestStream: false;
1559
- readonly responseType: typeof BlockUpdate;
1560
- readonly responseStream: true;
1561
- readonly options: {};
1562
- };
1563
- /** Get all the social settings for the authenticated user */
1564
- readonly getSocialSettings: {
1565
- readonly name: "GetSocialSettings";
1566
- readonly requestType: typeof Empty;
1567
- readonly requestStream: false;
1568
- readonly responseType: typeof GetSocialSettingsResponse;
1569
- readonly responseStream: false;
1570
- readonly options: {};
1571
- };
1572
- /** Insert or update the social settings for the authenticated user */
1573
- readonly upsertSocialSettings: {
1574
- readonly name: "UpsertSocialSettings";
1575
- readonly requestType: typeof UpsertSocialSettingsPayload;
1576
- readonly requestStream: false;
1577
- readonly responseType: typeof UpsertSocialSettingsResponse;
1578
- readonly responseStream: false;
1579
- readonly options: {};
1580
- };
1581
- /** Get the private messages privacy settings for the requested users */
1582
- readonly getPrivateMessagesSettings: {
1583
- readonly name: "GetPrivateMessagesSettings";
1584
- readonly requestType: typeof GetPrivateMessagesSettingsPayload;
1585
- readonly requestStream: false;
1586
- readonly responseType: typeof GetPrivateMessagesSettingsResponse;
1587
- readonly responseStream: false;
1588
- readonly options: {};
1589
- };
1590
- /** Subscribe to community member connectivity updates: ONLINE, OFFLINE */
1591
- readonly subscribeToCommunityMemberConnectivityUpdates: {
1592
- readonly name: "SubscribeToCommunityMemberConnectivityUpdates";
1593
- readonly requestType: typeof Empty;
1594
- readonly requestStream: false;
1595
- readonly responseType: typeof CommunityMemberConnectivityUpdate;
1596
- readonly responseStream: true;
1597
- readonly options: {};
1598
- };
1599
- /** Start a private voice chat */
1600
- readonly startPrivateVoiceChat: {
1601
- readonly name: "StartPrivateVoiceChat";
1602
- readonly requestType: typeof StartPrivateVoiceChatPayload;
1603
- readonly requestStream: false;
1604
- readonly responseType: typeof StartPrivateVoiceChatResponse;
1605
- readonly responseStream: false;
1606
- readonly options: {};
1607
- };
1608
- /** Accept a private voice chat */
1609
- readonly acceptPrivateVoiceChat: {
1610
- readonly name: "AcceptPrivateVoiceChat";
1611
- readonly requestType: typeof AcceptPrivateVoiceChatPayload;
1612
- readonly requestStream: false;
1613
- readonly responseType: typeof AcceptPrivateVoiceChatResponse;
1614
- readonly responseStream: false;
1615
- readonly options: {};
1616
- };
1617
- /** Reject a private voice chat */
1618
- readonly rejectPrivateVoiceChat: {
1619
- readonly name: "RejectPrivateVoiceChat";
1620
- readonly requestType: typeof RejectPrivateVoiceChatPayload;
1621
- readonly requestStream: false;
1622
- readonly responseType: typeof RejectPrivateVoiceChatResponse;
1623
- readonly responseStream: false;
1624
- readonly options: {};
1625
- };
1626
- /** End a private voice chat */
1627
- readonly endPrivateVoiceChat: {
1628
- readonly name: "EndPrivateVoiceChat";
1629
- readonly requestType: typeof EndPrivateVoiceChatPayload;
1630
- readonly requestStream: false;
1631
- readonly responseType: typeof EndPrivateVoiceChatResponse;
1632
- readonly responseStream: false;
1633
- readonly options: {};
1634
- };
1635
- /** Get the incoming private voice chat request */
1636
- readonly getIncomingPrivateVoiceChatRequest: {
1637
- readonly name: "GetIncomingPrivateVoiceChatRequest";
1638
- readonly requestType: typeof Empty;
1639
- readonly requestStream: false;
1640
- readonly responseType: typeof GetIncomingPrivateVoiceChatRequestResponse;
1641
- readonly responseStream: false;
1642
- readonly options: {};
1643
- };
1644
- /** Subscribe to private voice chat updates */
1645
- readonly subscribeToPrivateVoiceChatUpdates: {
1646
- readonly name: "SubscribeToPrivateVoiceChatUpdates";
1647
- readonly requestType: typeof Empty;
1648
- readonly requestStream: false;
1649
- readonly responseType: typeof PrivateVoiceChatUpdate;
1650
- readonly responseStream: true;
1651
- readonly options: {};
1652
- };
1653
- /** Start a community voice chat (moderator/owner only) */
1654
- readonly startCommunityVoiceChat: {
1655
- readonly name: "StartCommunityVoiceChat";
1656
- readonly requestType: typeof StartCommunityVoiceChatPayload;
1657
- readonly requestStream: false;
1658
- readonly responseType: typeof StartCommunityVoiceChatResponse;
1659
- readonly responseStream: false;
1660
- readonly options: {};
1661
- };
1662
- /** Join a community voice chat */
1663
- readonly joinCommunityVoiceChat: {
1664
- readonly name: "JoinCommunityVoiceChat";
1665
- readonly requestType: typeof JoinCommunityVoiceChatPayload;
1666
- readonly requestStream: false;
1667
- readonly responseType: typeof JoinCommunityVoiceChatResponse;
1668
- readonly responseStream: false;
1669
- readonly options: {};
1670
- };
1671
- /** Request to speak in community voice chat */
1672
- readonly requestToSpeakInCommunityVoiceChat: {
1673
- readonly name: "RequestToSpeakInCommunityVoiceChat";
1674
- readonly requestType: typeof RequestToSpeakInCommunityVoiceChatPayload;
1675
- readonly requestStream: false;
1676
- readonly responseType: typeof RequestToSpeakInCommunityVoiceChatResponse;
1677
- readonly responseStream: false;
1678
- readonly options: {};
1679
- };
1680
- /** Promote speaker in community voice chat (moderator only) */
1681
- readonly promoteSpeakerInCommunityVoiceChat: {
1682
- readonly name: "PromoteSpeakerInCommunityVoiceChat";
1683
- readonly requestType: typeof PromoteSpeakerInCommunityVoiceChatPayload;
1684
- readonly requestStream: false;
1685
- readonly responseType: typeof PromoteSpeakerInCommunityVoiceChatResponse;
1686
- readonly responseStream: false;
1687
- readonly options: {};
1688
- };
1689
- /** Demote speaker in community voice chat (moderator only) */
1690
- readonly demoteSpeakerInCommunityVoiceChat: {
1691
- readonly name: "DemoteSpeakerInCommunityVoiceChat";
1692
- readonly requestType: typeof DemoteSpeakerInCommunityVoiceChatPayload;
1693
- readonly requestStream: false;
1694
- readonly responseType: typeof DemoteSpeakerInCommunityVoiceChatResponse;
1695
- readonly responseStream: false;
1696
- readonly options: {};
1697
- };
1698
- /** Kick player from community voice chat (moderator only) */
1699
- readonly kickPlayerFromCommunityVoiceChat: {
1700
- readonly name: "KickPlayerFromCommunityVoiceChat";
1701
- readonly requestType: typeof KickPlayerFromCommunityVoiceChatPayload;
1702
- readonly requestStream: false;
1703
- readonly responseType: typeof KickPlayerFromCommunityVoiceChatResponse;
1704
- readonly responseStream: false;
1705
- readonly options: {};
1706
- };
1707
- /** Reject speak request in community voice chat (moderator only) */
1708
- readonly rejectSpeakRequestInCommunityVoiceChat: {
1709
- readonly name: "RejectSpeakRequestInCommunityVoiceChat";
1710
- readonly requestType: typeof RejectSpeakRequestInCommunityVoiceChatPayload;
1711
- readonly requestStream: false;
1712
- readonly responseType: typeof RejectSpeakRequestInCommunityVoiceChatResponse;
1713
- readonly responseStream: false;
1714
- readonly options: {};
1715
- };
1716
- /** End community voice chat (moderator/owner only) */
1717
- readonly endCommunityVoiceChat: {
1718
- readonly name: "EndCommunityVoiceChat";
1719
- readonly requestType: typeof EndCommunityVoiceChatPayload;
1720
- readonly requestStream: false;
1721
- readonly responseType: typeof EndCommunityVoiceChatResponse;
1722
- readonly responseStream: false;
1723
- readonly options: {};
1724
- };
1725
- /** Subscribe to community voice chat updates (only 'started' events) */
1726
- readonly subscribeToCommunityVoiceChatUpdates: {
1727
- readonly name: "SubscribeToCommunityVoiceChatUpdates";
1728
- readonly requestType: typeof Empty;
1729
- readonly requestStream: false;
1730
- readonly responseType: typeof CommunityVoiceChatUpdate;
1731
- readonly responseStream: true;
1732
- readonly options: {};
1733
- };
1734
461
  };
1735
462
  };
1736
463
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;