@dcl/protocol 1.0.0-16428499484.commit-7aab7c2 → 1.0.0-16429465125.commit-bac58dd
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/kernel/comms/rfc4/comms.gen.d.ts +9 -1
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +49 -11
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.d.ts +838 -22
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js +5093 -941
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js.map +1 -1
- package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +59 -10
- package/out-ts/decentraland/social_service/v2/social_service_v2.gen.ts +5630 -939
- package/package.json +3 -3
- package/proto/decentraland/kernel/comms/rfc4/comms.proto +8 -3
- package/proto/decentraland/sdk/components/light_source.proto +35 -0
- package/proto/decentraland/sdk/components/virtual_camera.proto +2 -0
- package/proto/decentraland/social_service/v2/social_service_v2.proto +347 -9
|
@@ -17,34 +17,90 @@ export declare enum FriendshipStatus {
|
|
|
17
17
|
REJECTED = 4,
|
|
18
18
|
DELETED = 5,
|
|
19
19
|
BLOCKED = 6,
|
|
20
|
+
NONE = 7,
|
|
21
|
+
BLOCKED_BY = 8,
|
|
20
22
|
UNRECOGNIZED = -1
|
|
21
23
|
}
|
|
22
24
|
export declare function friendshipStatusFromJSON(object: any): FriendshipStatus;
|
|
23
25
|
export declare function friendshipStatusToJSON(object: FriendshipStatus): string;
|
|
26
|
+
export declare enum PrivateMessagePrivacySetting {
|
|
27
|
+
ALL = 0,
|
|
28
|
+
ONLY_FRIENDS = 1,
|
|
29
|
+
UNRECOGNIZED = -1
|
|
30
|
+
}
|
|
31
|
+
export declare function privateMessagePrivacySettingFromJSON(object: any): PrivateMessagePrivacySetting;
|
|
32
|
+
export declare function privateMessagePrivacySettingToJSON(object: PrivateMessagePrivacySetting): string;
|
|
33
|
+
export declare enum BlockedUsersMessagesVisibilitySetting {
|
|
34
|
+
SHOW_MESSAGES = 0,
|
|
35
|
+
DO_NOT_SHOW_MESSAGES = 1,
|
|
36
|
+
UNRECOGNIZED = -1
|
|
37
|
+
}
|
|
38
|
+
export declare function blockedUsersMessagesVisibilitySettingFromJSON(object: any): BlockedUsersMessagesVisibilitySetting;
|
|
39
|
+
export declare function blockedUsersMessagesVisibilitySettingToJSON(object: BlockedUsersMessagesVisibilitySetting): string;
|
|
40
|
+
export declare enum PrivateVoiceChatStatus {
|
|
41
|
+
VOICE_CHAT_REQUESTED = 0,
|
|
42
|
+
VOICE_CHAT_ACCEPTED = 1,
|
|
43
|
+
VOICE_CHAT_REJECTED = 2,
|
|
44
|
+
VOICE_CHAT_ENDED = 3,
|
|
45
|
+
VOICE_CHAT_EXPIRED = 4,
|
|
46
|
+
UNRECOGNIZED = -1
|
|
47
|
+
}
|
|
48
|
+
export declare function privateVoiceChatStatusFromJSON(object: any): PrivateVoiceChatStatus;
|
|
49
|
+
export declare function privateVoiceChatStatusToJSON(object: PrivateVoiceChatStatus): string;
|
|
24
50
|
/** Errors */
|
|
25
51
|
export interface InvalidFriendshipAction {
|
|
52
|
+
message?: string | undefined;
|
|
26
53
|
}
|
|
27
54
|
export interface InternalServerError {
|
|
55
|
+
message?: string | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface InvalidRequest {
|
|
58
|
+
message?: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface ProfileNotFound {
|
|
61
|
+
message?: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface ConflictingError {
|
|
64
|
+
message?: string | undefined;
|
|
65
|
+
}
|
|
66
|
+
export interface ForbiddenError {
|
|
67
|
+
message?: string | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface NotFoundError {
|
|
70
|
+
message?: string | undefined;
|
|
28
71
|
}
|
|
29
72
|
/** Types */
|
|
30
73
|
export interface User {
|
|
31
74
|
address: string;
|
|
32
75
|
}
|
|
76
|
+
export interface FriendProfile {
|
|
77
|
+
address: string;
|
|
78
|
+
name: string;
|
|
79
|
+
hasClaimedName: boolean;
|
|
80
|
+
profilePictureUrl: string;
|
|
81
|
+
}
|
|
82
|
+
export interface BlockedUserProfile {
|
|
83
|
+
address: string;
|
|
84
|
+
name: string;
|
|
85
|
+
hasClaimedName: boolean;
|
|
86
|
+
profilePictureUrl: string;
|
|
87
|
+
blockedAt?: number | undefined;
|
|
88
|
+
}
|
|
33
89
|
export interface Pagination {
|
|
34
90
|
limit: number;
|
|
35
91
|
offset: number;
|
|
36
92
|
}
|
|
37
93
|
export interface FriendshipRequestResponse {
|
|
38
|
-
|
|
94
|
+
friend: FriendProfile | undefined;
|
|
39
95
|
createdAt: number;
|
|
40
96
|
message?: string | undefined;
|
|
97
|
+
id: string;
|
|
41
98
|
}
|
|
42
99
|
export interface FriendshipRequests {
|
|
43
100
|
requests: FriendshipRequestResponse[];
|
|
44
101
|
}
|
|
45
102
|
export interface GetFriendsPayload {
|
|
46
103
|
pagination?: Pagination | undefined;
|
|
47
|
-
status?: ConnectivityStatus | undefined;
|
|
48
104
|
}
|
|
49
105
|
export interface GetFriendshipRequestsPayload {
|
|
50
106
|
pagination?: Pagination | undefined;
|
|
@@ -91,8 +147,8 @@ export interface PaginatedResponse {
|
|
|
91
147
|
total: number;
|
|
92
148
|
page: number;
|
|
93
149
|
}
|
|
94
|
-
export interface
|
|
95
|
-
|
|
150
|
+
export interface PaginatedFriendsProfilesResponse {
|
|
151
|
+
friends: FriendProfile[];
|
|
96
152
|
paginationData: PaginatedResponse | undefined;
|
|
97
153
|
}
|
|
98
154
|
export interface PaginatedFriendshipRequestsResponse {
|
|
@@ -120,11 +176,13 @@ export interface UpsertFriendshipResponse {
|
|
|
120
176
|
export interface UpsertFriendshipResponse_Accepted {
|
|
121
177
|
id: string;
|
|
122
178
|
createdAt: number;
|
|
179
|
+
friend: FriendProfile | undefined;
|
|
180
|
+
message?: string | undefined;
|
|
123
181
|
}
|
|
124
182
|
export interface FriendshipUpdate {
|
|
125
183
|
update?: {
|
|
126
184
|
$case: "request";
|
|
127
|
-
request:
|
|
185
|
+
request: FriendshipUpdate_RequestResponse;
|
|
128
186
|
} | {
|
|
129
187
|
$case: "accept";
|
|
130
188
|
accept: FriendshipUpdate_AcceptResponse;
|
|
@@ -137,8 +195,17 @@ export interface FriendshipUpdate {
|
|
|
137
195
|
} | {
|
|
138
196
|
$case: "cancel";
|
|
139
197
|
cancel: FriendshipUpdate_CancelResponse;
|
|
198
|
+
} | {
|
|
199
|
+
$case: "block";
|
|
200
|
+
block: FriendshipUpdate_BlockResponse;
|
|
140
201
|
} | undefined;
|
|
141
202
|
}
|
|
203
|
+
export interface FriendshipUpdate_RequestResponse {
|
|
204
|
+
friend: FriendProfile | undefined;
|
|
205
|
+
createdAt: number;
|
|
206
|
+
message?: string | undefined;
|
|
207
|
+
id: string;
|
|
208
|
+
}
|
|
142
209
|
export interface FriendshipUpdate_AcceptResponse {
|
|
143
210
|
user: User | undefined;
|
|
144
211
|
}
|
|
@@ -151,6 +218,13 @@ export interface FriendshipUpdate_DeleteResponse {
|
|
|
151
218
|
export interface FriendshipUpdate_CancelResponse {
|
|
152
219
|
user: User | undefined;
|
|
153
220
|
}
|
|
221
|
+
export interface FriendshipUpdate_BlockResponse {
|
|
222
|
+
user: User | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface FriendConnectivityUpdate {
|
|
225
|
+
friend: FriendProfile | undefined;
|
|
226
|
+
status: ConnectivityStatus;
|
|
227
|
+
}
|
|
154
228
|
export interface GetFriendshipStatusPayload {
|
|
155
229
|
user: User | undefined;
|
|
156
230
|
}
|
|
@@ -167,21 +241,295 @@ export interface GetFriendshipStatusResponse_Ok {
|
|
|
167
241
|
status: FriendshipStatus;
|
|
168
242
|
message?: string | undefined;
|
|
169
243
|
}
|
|
244
|
+
export interface BlockUserPayload {
|
|
245
|
+
user: User | undefined;
|
|
246
|
+
}
|
|
247
|
+
export interface BlockUserResponse {
|
|
248
|
+
response?: {
|
|
249
|
+
$case: "ok";
|
|
250
|
+
ok: BlockUserResponse_Ok;
|
|
251
|
+
} | {
|
|
252
|
+
$case: "internalServerError";
|
|
253
|
+
internalServerError: InternalServerError;
|
|
254
|
+
} | {
|
|
255
|
+
$case: "invalidRequest";
|
|
256
|
+
invalidRequest: InvalidRequest;
|
|
257
|
+
} | {
|
|
258
|
+
$case: "profileNotFound";
|
|
259
|
+
profileNotFound: ProfileNotFound;
|
|
260
|
+
} | undefined;
|
|
261
|
+
}
|
|
262
|
+
export interface BlockUserResponse_Ok {
|
|
263
|
+
profile: BlockedUserProfile | undefined;
|
|
264
|
+
}
|
|
265
|
+
export interface UnblockUserPayload {
|
|
266
|
+
user: User | undefined;
|
|
267
|
+
}
|
|
268
|
+
export interface UnblockUserResponse {
|
|
269
|
+
response?: {
|
|
270
|
+
$case: "ok";
|
|
271
|
+
ok: UnblockUserResponse_Ok;
|
|
272
|
+
} | {
|
|
273
|
+
$case: "internalServerError";
|
|
274
|
+
internalServerError: InternalServerError;
|
|
275
|
+
} | {
|
|
276
|
+
$case: "invalidRequest";
|
|
277
|
+
invalidRequest: InvalidRequest;
|
|
278
|
+
} | {
|
|
279
|
+
$case: "profileNotFound";
|
|
280
|
+
profileNotFound: ProfileNotFound;
|
|
281
|
+
} | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface UnblockUserResponse_Ok {
|
|
284
|
+
profile: BlockedUserProfile | undefined;
|
|
285
|
+
}
|
|
286
|
+
export interface SocialSettings {
|
|
287
|
+
privateMessagesPrivacy: PrivateMessagePrivacySetting;
|
|
288
|
+
blockedUsersMessagesVisibility: BlockedUsersMessagesVisibilitySetting;
|
|
289
|
+
}
|
|
290
|
+
export interface GetSocialSettingsResponse {
|
|
291
|
+
response?: {
|
|
292
|
+
$case: "ok";
|
|
293
|
+
ok: GetSocialSettingsResponse_Ok;
|
|
294
|
+
} | {
|
|
295
|
+
$case: "internalServerError";
|
|
296
|
+
internalServerError: InternalServerError;
|
|
297
|
+
} | undefined;
|
|
298
|
+
}
|
|
299
|
+
export interface GetSocialSettingsResponse_Ok {
|
|
300
|
+
settings: SocialSettings | undefined;
|
|
301
|
+
}
|
|
302
|
+
export interface UpsertSocialSettingsPayload {
|
|
303
|
+
privateMessagesPrivacy?: PrivateMessagePrivacySetting | undefined;
|
|
304
|
+
blockedUsersMessagesVisibility?: BlockedUsersMessagesVisibilitySetting | undefined;
|
|
305
|
+
}
|
|
306
|
+
export interface UpsertSocialSettingsResponse {
|
|
307
|
+
response?: {
|
|
308
|
+
$case: "ok";
|
|
309
|
+
ok: SocialSettings;
|
|
310
|
+
} | {
|
|
311
|
+
$case: "internalServerError";
|
|
312
|
+
internalServerError: InternalServerError;
|
|
313
|
+
} | {
|
|
314
|
+
$case: "invalidRequest";
|
|
315
|
+
invalidRequest: InvalidRequest;
|
|
316
|
+
} | undefined;
|
|
317
|
+
}
|
|
318
|
+
export interface GetPrivateMessagesSettingsPayload {
|
|
319
|
+
user: User[];
|
|
320
|
+
}
|
|
321
|
+
export interface GetPrivateMessagesSettingsResponse {
|
|
322
|
+
response?: {
|
|
323
|
+
$case: "ok";
|
|
324
|
+
ok: GetPrivateMessagesSettingsResponse_Ok;
|
|
325
|
+
} | {
|
|
326
|
+
$case: "internalServerError";
|
|
327
|
+
internalServerError: InternalServerError;
|
|
328
|
+
} | {
|
|
329
|
+
$case: "invalidRequest";
|
|
330
|
+
invalidRequest: InvalidRequest;
|
|
331
|
+
} | {
|
|
332
|
+
$case: "profileNotFound";
|
|
333
|
+
profileNotFound: ProfileNotFound;
|
|
334
|
+
} | undefined;
|
|
335
|
+
}
|
|
336
|
+
export interface GetPrivateMessagesSettingsResponse_PrivateMessagesSettings {
|
|
337
|
+
user: User | undefined;
|
|
338
|
+
privateMessagesPrivacy: PrivateMessagePrivacySetting;
|
|
339
|
+
isFriend: boolean;
|
|
340
|
+
}
|
|
341
|
+
export interface GetPrivateMessagesSettingsResponse_Ok {
|
|
342
|
+
settings: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings[];
|
|
343
|
+
}
|
|
344
|
+
export interface GetBlockedUsersPayload {
|
|
345
|
+
pagination?: Pagination | undefined;
|
|
346
|
+
}
|
|
347
|
+
export interface GetBlockedUsersResponse {
|
|
348
|
+
profiles: BlockedUserProfile[];
|
|
349
|
+
paginationData: PaginatedResponse | undefined;
|
|
350
|
+
}
|
|
351
|
+
export interface GetBlockingStatusResponse {
|
|
352
|
+
blockedUsers: string[];
|
|
353
|
+
blockedByUsers: string[];
|
|
354
|
+
}
|
|
355
|
+
export interface BlockUpdate {
|
|
356
|
+
address: string;
|
|
357
|
+
isBlocked: boolean;
|
|
358
|
+
}
|
|
359
|
+
export interface CommunityMemberConnectivityUpdate {
|
|
360
|
+
communityId: string;
|
|
361
|
+
member: User | undefined;
|
|
362
|
+
status: ConnectivityStatus;
|
|
363
|
+
}
|
|
364
|
+
export interface StartPrivateVoiceChatPayload {
|
|
365
|
+
callee: User | undefined;
|
|
366
|
+
}
|
|
367
|
+
export interface StartPrivateVoiceChatResponse {
|
|
368
|
+
response?: {
|
|
369
|
+
$case: "ok";
|
|
370
|
+
ok: StartPrivateVoiceChatResponse_Ok;
|
|
371
|
+
} | {
|
|
372
|
+
$case: "internalServerError";
|
|
373
|
+
internalServerError: InternalServerError;
|
|
374
|
+
} | {
|
|
375
|
+
$case: "invalidRequest";
|
|
376
|
+
invalidRequest: InvalidRequest;
|
|
377
|
+
} | {
|
|
378
|
+
$case: "conflictingError";
|
|
379
|
+
conflictingError: ConflictingError;
|
|
380
|
+
} | {
|
|
381
|
+
$case: "forbiddenError";
|
|
382
|
+
forbiddenError: ForbiddenError;
|
|
383
|
+
} | undefined;
|
|
384
|
+
}
|
|
385
|
+
export interface StartPrivateVoiceChatResponse_Ok {
|
|
386
|
+
callId: string;
|
|
387
|
+
}
|
|
388
|
+
export interface AcceptPrivateVoiceChatPayload {
|
|
389
|
+
callId: string;
|
|
390
|
+
}
|
|
391
|
+
export interface AcceptPrivateVoiceChatResponse {
|
|
392
|
+
response?: {
|
|
393
|
+
$case: "ok";
|
|
394
|
+
ok: AcceptPrivateVoiceChatResponse_Ok;
|
|
395
|
+
} | {
|
|
396
|
+
$case: "internalServerError";
|
|
397
|
+
internalServerError: InternalServerError;
|
|
398
|
+
} | {
|
|
399
|
+
$case: "invalidRequest";
|
|
400
|
+
invalidRequest: InvalidRequest;
|
|
401
|
+
} | {
|
|
402
|
+
$case: "notFound";
|
|
403
|
+
notFound: NotFoundError;
|
|
404
|
+
} | {
|
|
405
|
+
$case: "forbiddenError";
|
|
406
|
+
forbiddenError: ForbiddenError;
|
|
407
|
+
} | undefined;
|
|
408
|
+
}
|
|
409
|
+
export interface AcceptPrivateVoiceChatResponse_Ok {
|
|
410
|
+
callId: string;
|
|
411
|
+
credentials: PrivateVoiceChatCredentials | undefined;
|
|
412
|
+
}
|
|
413
|
+
export interface RejectPrivateVoiceChatPayload {
|
|
414
|
+
callId: string;
|
|
415
|
+
}
|
|
416
|
+
export interface RejectPrivateVoiceChatResponse {
|
|
417
|
+
response?: {
|
|
418
|
+
$case: "ok";
|
|
419
|
+
ok: RejectPrivateVoiceChatResponse_Ok;
|
|
420
|
+
} | {
|
|
421
|
+
$case: "internalServerError";
|
|
422
|
+
internalServerError: InternalServerError;
|
|
423
|
+
} | {
|
|
424
|
+
$case: "invalidRequest";
|
|
425
|
+
invalidRequest: InvalidRequest;
|
|
426
|
+
} | {
|
|
427
|
+
$case: "notFound";
|
|
428
|
+
notFound: NotFoundError;
|
|
429
|
+
} | undefined;
|
|
430
|
+
}
|
|
431
|
+
export interface RejectPrivateVoiceChatResponse_Ok {
|
|
432
|
+
callId: string;
|
|
433
|
+
}
|
|
434
|
+
export interface PrivateVoiceChatCredentials {
|
|
435
|
+
connectionUrl: string;
|
|
436
|
+
}
|
|
437
|
+
export interface PrivateVoiceChatUpdate {
|
|
438
|
+
callId: string;
|
|
439
|
+
status: PrivateVoiceChatStatus;
|
|
440
|
+
caller?: User | undefined;
|
|
441
|
+
callee?: User | undefined;
|
|
442
|
+
credentials?: PrivateVoiceChatCredentials | undefined;
|
|
443
|
+
}
|
|
444
|
+
export interface EndPrivateVoiceChatPayload {
|
|
445
|
+
callId: string;
|
|
446
|
+
}
|
|
447
|
+
export interface EndPrivateVoiceChatResponse {
|
|
448
|
+
response?: {
|
|
449
|
+
$case: "ok";
|
|
450
|
+
ok: EndPrivateVoiceChatResponse_Ok;
|
|
451
|
+
} | {
|
|
452
|
+
$case: "internalServerError";
|
|
453
|
+
internalServerError: InternalServerError;
|
|
454
|
+
} | {
|
|
455
|
+
$case: "notFound";
|
|
456
|
+
notFound: NotFoundError;
|
|
457
|
+
} | undefined;
|
|
458
|
+
}
|
|
459
|
+
export interface EndPrivateVoiceChatResponse_Ok {
|
|
460
|
+
callId: string;
|
|
461
|
+
}
|
|
462
|
+
export interface GetIncomingPrivateVoiceChatRequestResponse {
|
|
463
|
+
response?: {
|
|
464
|
+
$case: "ok";
|
|
465
|
+
ok: GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
466
|
+
} | {
|
|
467
|
+
$case: "notFound";
|
|
468
|
+
notFound: NotFoundError;
|
|
469
|
+
} | {
|
|
470
|
+
$case: "internalServerError";
|
|
471
|
+
internalServerError: InternalServerError;
|
|
472
|
+
} | undefined;
|
|
473
|
+
}
|
|
474
|
+
export interface GetIncomingPrivateVoiceChatRequestResponse_Ok {
|
|
475
|
+
caller: User | undefined;
|
|
476
|
+
callId: string;
|
|
477
|
+
}
|
|
170
478
|
export declare namespace InvalidFriendshipAction {
|
|
171
|
-
function encode(
|
|
479
|
+
function encode(message: InvalidFriendshipAction, writer?: _m0.Writer): _m0.Writer;
|
|
172
480
|
function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidFriendshipAction;
|
|
173
|
-
function fromJSON(
|
|
174
|
-
function toJSON(
|
|
481
|
+
function fromJSON(object: any): InvalidFriendshipAction;
|
|
482
|
+
function toJSON(message: InvalidFriendshipAction): unknown;
|
|
175
483
|
function create<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(base?: I): InvalidFriendshipAction;
|
|
176
|
-
function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(
|
|
484
|
+
function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(object: I): InvalidFriendshipAction;
|
|
177
485
|
}
|
|
178
486
|
export declare namespace InternalServerError {
|
|
179
|
-
function encode(
|
|
487
|
+
function encode(message: InternalServerError, writer?: _m0.Writer): _m0.Writer;
|
|
180
488
|
function decode(input: _m0.Reader | Uint8Array, length?: number): InternalServerError;
|
|
181
|
-
function fromJSON(
|
|
182
|
-
function toJSON(
|
|
489
|
+
function fromJSON(object: any): InternalServerError;
|
|
490
|
+
function toJSON(message: InternalServerError): unknown;
|
|
183
491
|
function create<I extends Exact<DeepPartial<InternalServerError>, I>>(base?: I): InternalServerError;
|
|
184
|
-
function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(
|
|
492
|
+
function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(object: I): InternalServerError;
|
|
493
|
+
}
|
|
494
|
+
export declare namespace InvalidRequest {
|
|
495
|
+
function encode(message: InvalidRequest, writer?: _m0.Writer): _m0.Writer;
|
|
496
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidRequest;
|
|
497
|
+
function fromJSON(object: any): InvalidRequest;
|
|
498
|
+
function toJSON(message: InvalidRequest): unknown;
|
|
499
|
+
function create<I extends Exact<DeepPartial<InvalidRequest>, I>>(base?: I): InvalidRequest;
|
|
500
|
+
function fromPartial<I extends Exact<DeepPartial<InvalidRequest>, I>>(object: I): InvalidRequest;
|
|
501
|
+
}
|
|
502
|
+
export declare namespace ProfileNotFound {
|
|
503
|
+
function encode(message: ProfileNotFound, writer?: _m0.Writer): _m0.Writer;
|
|
504
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): ProfileNotFound;
|
|
505
|
+
function fromJSON(object: any): ProfileNotFound;
|
|
506
|
+
function toJSON(message: ProfileNotFound): unknown;
|
|
507
|
+
function create<I extends Exact<DeepPartial<ProfileNotFound>, I>>(base?: I): ProfileNotFound;
|
|
508
|
+
function fromPartial<I extends Exact<DeepPartial<ProfileNotFound>, I>>(object: I): ProfileNotFound;
|
|
509
|
+
}
|
|
510
|
+
export declare namespace ConflictingError {
|
|
511
|
+
function encode(message: ConflictingError, writer?: _m0.Writer): _m0.Writer;
|
|
512
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): ConflictingError;
|
|
513
|
+
function fromJSON(object: any): ConflictingError;
|
|
514
|
+
function toJSON(message: ConflictingError): unknown;
|
|
515
|
+
function create<I extends Exact<DeepPartial<ConflictingError>, I>>(base?: I): ConflictingError;
|
|
516
|
+
function fromPartial<I extends Exact<DeepPartial<ConflictingError>, I>>(object: I): ConflictingError;
|
|
517
|
+
}
|
|
518
|
+
export declare namespace ForbiddenError {
|
|
519
|
+
function encode(message: ForbiddenError, writer?: _m0.Writer): _m0.Writer;
|
|
520
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): ForbiddenError;
|
|
521
|
+
function fromJSON(object: any): ForbiddenError;
|
|
522
|
+
function toJSON(message: ForbiddenError): unknown;
|
|
523
|
+
function create<I extends Exact<DeepPartial<ForbiddenError>, I>>(base?: I): ForbiddenError;
|
|
524
|
+
function fromPartial<I extends Exact<DeepPartial<ForbiddenError>, I>>(object: I): ForbiddenError;
|
|
525
|
+
}
|
|
526
|
+
export declare namespace NotFoundError {
|
|
527
|
+
function encode(message: NotFoundError, writer?: _m0.Writer): _m0.Writer;
|
|
528
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): NotFoundError;
|
|
529
|
+
function fromJSON(object: any): NotFoundError;
|
|
530
|
+
function toJSON(message: NotFoundError): unknown;
|
|
531
|
+
function create<I extends Exact<DeepPartial<NotFoundError>, I>>(base?: I): NotFoundError;
|
|
532
|
+
function fromPartial<I extends Exact<DeepPartial<NotFoundError>, I>>(object: I): NotFoundError;
|
|
185
533
|
}
|
|
186
534
|
export declare namespace User {
|
|
187
535
|
function encode(message: User, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -191,6 +539,22 @@ export declare namespace User {
|
|
|
191
539
|
function create<I extends Exact<DeepPartial<User>, I>>(base?: I): User;
|
|
192
540
|
function fromPartial<I extends Exact<DeepPartial<User>, I>>(object: I): User;
|
|
193
541
|
}
|
|
542
|
+
export declare namespace FriendProfile {
|
|
543
|
+
function encode(message: FriendProfile, writer?: _m0.Writer): _m0.Writer;
|
|
544
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendProfile;
|
|
545
|
+
function fromJSON(object: any): FriendProfile;
|
|
546
|
+
function toJSON(message: FriendProfile): unknown;
|
|
547
|
+
function create<I extends Exact<DeepPartial<FriendProfile>, I>>(base?: I): FriendProfile;
|
|
548
|
+
function fromPartial<I extends Exact<DeepPartial<FriendProfile>, I>>(object: I): FriendProfile;
|
|
549
|
+
}
|
|
550
|
+
export declare namespace BlockedUserProfile {
|
|
551
|
+
function encode(message: BlockedUserProfile, writer?: _m0.Writer): _m0.Writer;
|
|
552
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockedUserProfile;
|
|
553
|
+
function fromJSON(object: any): BlockedUserProfile;
|
|
554
|
+
function toJSON(message: BlockedUserProfile): unknown;
|
|
555
|
+
function create<I extends Exact<DeepPartial<BlockedUserProfile>, I>>(base?: I): BlockedUserProfile;
|
|
556
|
+
function fromPartial<I extends Exact<DeepPartial<BlockedUserProfile>, I>>(object: I): BlockedUserProfile;
|
|
557
|
+
}
|
|
194
558
|
export declare namespace Pagination {
|
|
195
559
|
function encode(message: Pagination, writer?: _m0.Writer): _m0.Writer;
|
|
196
560
|
function decode(input: _m0.Reader | Uint8Array, length?: number): Pagination;
|
|
@@ -295,13 +659,13 @@ export declare namespace PaginatedResponse {
|
|
|
295
659
|
function create<I extends Exact<DeepPartial<PaginatedResponse>, I>>(base?: I): PaginatedResponse;
|
|
296
660
|
function fromPartial<I extends Exact<DeepPartial<PaginatedResponse>, I>>(object: I): PaginatedResponse;
|
|
297
661
|
}
|
|
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<
|
|
662
|
+
export declare namespace PaginatedFriendsProfilesResponse {
|
|
663
|
+
function encode(message: PaginatedFriendsProfilesResponse, writer?: _m0.Writer): _m0.Writer;
|
|
664
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PaginatedFriendsProfilesResponse;
|
|
665
|
+
function fromJSON(object: any): PaginatedFriendsProfilesResponse;
|
|
666
|
+
function toJSON(message: PaginatedFriendsProfilesResponse): unknown;
|
|
667
|
+
function create<I extends Exact<DeepPartial<PaginatedFriendsProfilesResponse>, I>>(base?: I): PaginatedFriendsProfilesResponse;
|
|
668
|
+
function fromPartial<I extends Exact<DeepPartial<PaginatedFriendsProfilesResponse>, I>>(object: I): PaginatedFriendsProfilesResponse;
|
|
305
669
|
}
|
|
306
670
|
export declare namespace PaginatedFriendshipRequestsResponse {
|
|
307
671
|
function encode(message: PaginatedFriendshipRequestsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -335,6 +699,14 @@ export declare namespace FriendshipUpdate {
|
|
|
335
699
|
function create<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(base?: I): FriendshipUpdate;
|
|
336
700
|
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(object: I): FriendshipUpdate;
|
|
337
701
|
}
|
|
702
|
+
export declare namespace FriendshipUpdate_RequestResponse {
|
|
703
|
+
function encode(message: FriendshipUpdate_RequestResponse, writer?: _m0.Writer): _m0.Writer;
|
|
704
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_RequestResponse;
|
|
705
|
+
function fromJSON(object: any): FriendshipUpdate_RequestResponse;
|
|
706
|
+
function toJSON(message: FriendshipUpdate_RequestResponse): unknown;
|
|
707
|
+
function create<I extends Exact<DeepPartial<FriendshipUpdate_RequestResponse>, I>>(base?: I): FriendshipUpdate_RequestResponse;
|
|
708
|
+
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_RequestResponse>, I>>(object: I): FriendshipUpdate_RequestResponse;
|
|
709
|
+
}
|
|
338
710
|
export declare namespace FriendshipUpdate_AcceptResponse {
|
|
339
711
|
function encode(message: FriendshipUpdate_AcceptResponse, writer?: _m0.Writer): _m0.Writer;
|
|
340
712
|
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_AcceptResponse;
|
|
@@ -367,6 +739,22 @@ export declare namespace FriendshipUpdate_CancelResponse {
|
|
|
367
739
|
function create<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(base?: I): FriendshipUpdate_CancelResponse;
|
|
368
740
|
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(object: I): FriendshipUpdate_CancelResponse;
|
|
369
741
|
}
|
|
742
|
+
export declare namespace FriendshipUpdate_BlockResponse {
|
|
743
|
+
function encode(message: FriendshipUpdate_BlockResponse, writer?: _m0.Writer): _m0.Writer;
|
|
744
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_BlockResponse;
|
|
745
|
+
function fromJSON(object: any): FriendshipUpdate_BlockResponse;
|
|
746
|
+
function toJSON(message: FriendshipUpdate_BlockResponse): unknown;
|
|
747
|
+
function create<I extends Exact<DeepPartial<FriendshipUpdate_BlockResponse>, I>>(base?: I): FriendshipUpdate_BlockResponse;
|
|
748
|
+
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_BlockResponse>, I>>(object: I): FriendshipUpdate_BlockResponse;
|
|
749
|
+
}
|
|
750
|
+
export declare namespace FriendConnectivityUpdate {
|
|
751
|
+
function encode(message: FriendConnectivityUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
752
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendConnectivityUpdate;
|
|
753
|
+
function fromJSON(object: any): FriendConnectivityUpdate;
|
|
754
|
+
function toJSON(message: FriendConnectivityUpdate): unknown;
|
|
755
|
+
function create<I extends Exact<DeepPartial<FriendConnectivityUpdate>, I>>(base?: I): FriendConnectivityUpdate;
|
|
756
|
+
function fromPartial<I extends Exact<DeepPartial<FriendConnectivityUpdate>, I>>(object: I): FriendConnectivityUpdate;
|
|
757
|
+
}
|
|
370
758
|
export declare namespace GetFriendshipStatusPayload {
|
|
371
759
|
function encode(message: GetFriendshipStatusPayload, writer?: _m0.Writer): _m0.Writer;
|
|
372
760
|
function decode(input: _m0.Reader | Uint8Array, length?: number): GetFriendshipStatusPayload;
|
|
@@ -391,6 +779,294 @@ export declare namespace GetFriendshipStatusResponse_Ok {
|
|
|
391
779
|
function create<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(base?: I): GetFriendshipStatusResponse_Ok;
|
|
392
780
|
function fromPartial<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(object: I): GetFriendshipStatusResponse_Ok;
|
|
393
781
|
}
|
|
782
|
+
export declare namespace BlockUserPayload {
|
|
783
|
+
function encode(message: BlockUserPayload, writer?: _m0.Writer): _m0.Writer;
|
|
784
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserPayload;
|
|
785
|
+
function fromJSON(object: any): BlockUserPayload;
|
|
786
|
+
function toJSON(message: BlockUserPayload): unknown;
|
|
787
|
+
function create<I extends Exact<DeepPartial<BlockUserPayload>, I>>(base?: I): BlockUserPayload;
|
|
788
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUserPayload>, I>>(object: I): BlockUserPayload;
|
|
789
|
+
}
|
|
790
|
+
export declare namespace BlockUserResponse {
|
|
791
|
+
function encode(message: BlockUserResponse, writer?: _m0.Writer): _m0.Writer;
|
|
792
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse;
|
|
793
|
+
function fromJSON(object: any): BlockUserResponse;
|
|
794
|
+
function toJSON(message: BlockUserResponse): unknown;
|
|
795
|
+
function create<I extends Exact<DeepPartial<BlockUserResponse>, I>>(base?: I): BlockUserResponse;
|
|
796
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUserResponse>, I>>(object: I): BlockUserResponse;
|
|
797
|
+
}
|
|
798
|
+
export declare namespace BlockUserResponse_Ok {
|
|
799
|
+
function encode(message: BlockUserResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
800
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse_Ok;
|
|
801
|
+
function fromJSON(object: any): BlockUserResponse_Ok;
|
|
802
|
+
function toJSON(message: BlockUserResponse_Ok): unknown;
|
|
803
|
+
function create<I extends Exact<DeepPartial<BlockUserResponse_Ok>, I>>(base?: I): BlockUserResponse_Ok;
|
|
804
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUserResponse_Ok>, I>>(object: I): BlockUserResponse_Ok;
|
|
805
|
+
}
|
|
806
|
+
export declare namespace UnblockUserPayload {
|
|
807
|
+
function encode(message: UnblockUserPayload, writer?: _m0.Writer): _m0.Writer;
|
|
808
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserPayload;
|
|
809
|
+
function fromJSON(object: any): UnblockUserPayload;
|
|
810
|
+
function toJSON(message: UnblockUserPayload): unknown;
|
|
811
|
+
function create<I extends Exact<DeepPartial<UnblockUserPayload>, I>>(base?: I): UnblockUserPayload;
|
|
812
|
+
function fromPartial<I extends Exact<DeepPartial<UnblockUserPayload>, I>>(object: I): UnblockUserPayload;
|
|
813
|
+
}
|
|
814
|
+
export declare namespace UnblockUserResponse {
|
|
815
|
+
function encode(message: UnblockUserResponse, writer?: _m0.Writer): _m0.Writer;
|
|
816
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserResponse;
|
|
817
|
+
function fromJSON(object: any): UnblockUserResponse;
|
|
818
|
+
function toJSON(message: UnblockUserResponse): unknown;
|
|
819
|
+
function create<I extends Exact<DeepPartial<UnblockUserResponse>, I>>(base?: I): UnblockUserResponse;
|
|
820
|
+
function fromPartial<I extends Exact<DeepPartial<UnblockUserResponse>, I>>(object: I): UnblockUserResponse;
|
|
821
|
+
}
|
|
822
|
+
export declare namespace UnblockUserResponse_Ok {
|
|
823
|
+
function encode(message: UnblockUserResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
824
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UnblockUserResponse_Ok;
|
|
825
|
+
function fromJSON(object: any): UnblockUserResponse_Ok;
|
|
826
|
+
function toJSON(message: UnblockUserResponse_Ok): unknown;
|
|
827
|
+
function create<I extends Exact<DeepPartial<UnblockUserResponse_Ok>, I>>(base?: I): UnblockUserResponse_Ok;
|
|
828
|
+
function fromPartial<I extends Exact<DeepPartial<UnblockUserResponse_Ok>, I>>(object: I): UnblockUserResponse_Ok;
|
|
829
|
+
}
|
|
830
|
+
export declare namespace SocialSettings {
|
|
831
|
+
function encode(message: SocialSettings, writer?: _m0.Writer): _m0.Writer;
|
|
832
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): SocialSettings;
|
|
833
|
+
function fromJSON(object: any): SocialSettings;
|
|
834
|
+
function toJSON(message: SocialSettings): unknown;
|
|
835
|
+
function create<I extends Exact<DeepPartial<SocialSettings>, I>>(base?: I): SocialSettings;
|
|
836
|
+
function fromPartial<I extends Exact<DeepPartial<SocialSettings>, I>>(object: I): SocialSettings;
|
|
837
|
+
}
|
|
838
|
+
export declare namespace GetSocialSettingsResponse {
|
|
839
|
+
function encode(message: GetSocialSettingsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
840
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetSocialSettingsResponse;
|
|
841
|
+
function fromJSON(object: any): GetSocialSettingsResponse;
|
|
842
|
+
function toJSON(message: GetSocialSettingsResponse): unknown;
|
|
843
|
+
function create<I extends Exact<DeepPartial<GetSocialSettingsResponse>, I>>(base?: I): GetSocialSettingsResponse;
|
|
844
|
+
function fromPartial<I extends Exact<DeepPartial<GetSocialSettingsResponse>, I>>(object: I): GetSocialSettingsResponse;
|
|
845
|
+
}
|
|
846
|
+
export declare namespace GetSocialSettingsResponse_Ok {
|
|
847
|
+
function encode(message: GetSocialSettingsResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
848
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetSocialSettingsResponse_Ok;
|
|
849
|
+
function fromJSON(object: any): GetSocialSettingsResponse_Ok;
|
|
850
|
+
function toJSON(message: GetSocialSettingsResponse_Ok): unknown;
|
|
851
|
+
function create<I extends Exact<DeepPartial<GetSocialSettingsResponse_Ok>, I>>(base?: I): GetSocialSettingsResponse_Ok;
|
|
852
|
+
function fromPartial<I extends Exact<DeepPartial<GetSocialSettingsResponse_Ok>, I>>(object: I): GetSocialSettingsResponse_Ok;
|
|
853
|
+
}
|
|
854
|
+
export declare namespace UpsertSocialSettingsPayload {
|
|
855
|
+
function encode(message: UpsertSocialSettingsPayload, writer?: _m0.Writer): _m0.Writer;
|
|
856
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UpsertSocialSettingsPayload;
|
|
857
|
+
function fromJSON(object: any): UpsertSocialSettingsPayload;
|
|
858
|
+
function toJSON(message: UpsertSocialSettingsPayload): unknown;
|
|
859
|
+
function create<I extends Exact<DeepPartial<UpsertSocialSettingsPayload>, I>>(base?: I): UpsertSocialSettingsPayload;
|
|
860
|
+
function fromPartial<I extends Exact<DeepPartial<UpsertSocialSettingsPayload>, I>>(object: I): UpsertSocialSettingsPayload;
|
|
861
|
+
}
|
|
862
|
+
export declare namespace UpsertSocialSettingsResponse {
|
|
863
|
+
function encode(message: UpsertSocialSettingsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
864
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): UpsertSocialSettingsResponse;
|
|
865
|
+
function fromJSON(object: any): UpsertSocialSettingsResponse;
|
|
866
|
+
function toJSON(message: UpsertSocialSettingsResponse): unknown;
|
|
867
|
+
function create<I extends Exact<DeepPartial<UpsertSocialSettingsResponse>, I>>(base?: I): UpsertSocialSettingsResponse;
|
|
868
|
+
function fromPartial<I extends Exact<DeepPartial<UpsertSocialSettingsResponse>, I>>(object: I): UpsertSocialSettingsResponse;
|
|
869
|
+
}
|
|
870
|
+
export declare namespace GetPrivateMessagesSettingsPayload {
|
|
871
|
+
function encode(message: GetPrivateMessagesSettingsPayload, writer?: _m0.Writer): _m0.Writer;
|
|
872
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsPayload;
|
|
873
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsPayload;
|
|
874
|
+
function toJSON(message: GetPrivateMessagesSettingsPayload): unknown;
|
|
875
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsPayload>, I>>(base?: I): GetPrivateMessagesSettingsPayload;
|
|
876
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsPayload>, I>>(object: I): GetPrivateMessagesSettingsPayload;
|
|
877
|
+
}
|
|
878
|
+
export declare namespace GetPrivateMessagesSettingsResponse {
|
|
879
|
+
function encode(message: GetPrivateMessagesSettingsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
880
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse;
|
|
881
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsResponse;
|
|
882
|
+
function toJSON(message: GetPrivateMessagesSettingsResponse): unknown;
|
|
883
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse>, I>>(base?: I): GetPrivateMessagesSettingsResponse;
|
|
884
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse>, I>>(object: I): GetPrivateMessagesSettingsResponse;
|
|
885
|
+
}
|
|
886
|
+
export declare namespace GetPrivateMessagesSettingsResponse_PrivateMessagesSettings {
|
|
887
|
+
function encode(message: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings, writer?: _m0.Writer): _m0.Writer;
|
|
888
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
889
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
890
|
+
function toJSON(message: GetPrivateMessagesSettingsResponse_PrivateMessagesSettings): unknown;
|
|
891
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_PrivateMessagesSettings>, I>>(base?: I): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
892
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_PrivateMessagesSettings>, I>>(object: I): GetPrivateMessagesSettingsResponse_PrivateMessagesSettings;
|
|
893
|
+
}
|
|
894
|
+
export declare namespace GetPrivateMessagesSettingsResponse_Ok {
|
|
895
|
+
function encode(message: GetPrivateMessagesSettingsResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
896
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetPrivateMessagesSettingsResponse_Ok;
|
|
897
|
+
function fromJSON(object: any): GetPrivateMessagesSettingsResponse_Ok;
|
|
898
|
+
function toJSON(message: GetPrivateMessagesSettingsResponse_Ok): unknown;
|
|
899
|
+
function create<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_Ok>, I>>(base?: I): GetPrivateMessagesSettingsResponse_Ok;
|
|
900
|
+
function fromPartial<I extends Exact<DeepPartial<GetPrivateMessagesSettingsResponse_Ok>, I>>(object: I): GetPrivateMessagesSettingsResponse_Ok;
|
|
901
|
+
}
|
|
902
|
+
export declare namespace GetBlockedUsersPayload {
|
|
903
|
+
function encode(message: GetBlockedUsersPayload, writer?: _m0.Writer): _m0.Writer;
|
|
904
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockedUsersPayload;
|
|
905
|
+
function fromJSON(object: any): GetBlockedUsersPayload;
|
|
906
|
+
function toJSON(message: GetBlockedUsersPayload): unknown;
|
|
907
|
+
function create<I extends Exact<DeepPartial<GetBlockedUsersPayload>, I>>(base?: I): GetBlockedUsersPayload;
|
|
908
|
+
function fromPartial<I extends Exact<DeepPartial<GetBlockedUsersPayload>, I>>(object: I): GetBlockedUsersPayload;
|
|
909
|
+
}
|
|
910
|
+
export declare namespace GetBlockedUsersResponse {
|
|
911
|
+
function encode(message: GetBlockedUsersResponse, writer?: _m0.Writer): _m0.Writer;
|
|
912
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockedUsersResponse;
|
|
913
|
+
function fromJSON(object: any): GetBlockedUsersResponse;
|
|
914
|
+
function toJSON(message: GetBlockedUsersResponse): unknown;
|
|
915
|
+
function create<I extends Exact<DeepPartial<GetBlockedUsersResponse>, I>>(base?: I): GetBlockedUsersResponse;
|
|
916
|
+
function fromPartial<I extends Exact<DeepPartial<GetBlockedUsersResponse>, I>>(object: I): GetBlockedUsersResponse;
|
|
917
|
+
}
|
|
918
|
+
export declare namespace GetBlockingStatusResponse {
|
|
919
|
+
function encode(message: GetBlockingStatusResponse, writer?: _m0.Writer): _m0.Writer;
|
|
920
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetBlockingStatusResponse;
|
|
921
|
+
function fromJSON(object: any): GetBlockingStatusResponse;
|
|
922
|
+
function toJSON(message: GetBlockingStatusResponse): unknown;
|
|
923
|
+
function create<I extends Exact<DeepPartial<GetBlockingStatusResponse>, I>>(base?: I): GetBlockingStatusResponse;
|
|
924
|
+
function fromPartial<I extends Exact<DeepPartial<GetBlockingStatusResponse>, I>>(object: I): GetBlockingStatusResponse;
|
|
925
|
+
}
|
|
926
|
+
export declare namespace BlockUpdate {
|
|
927
|
+
function encode(message: BlockUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
928
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): BlockUpdate;
|
|
929
|
+
function fromJSON(object: any): BlockUpdate;
|
|
930
|
+
function toJSON(message: BlockUpdate): unknown;
|
|
931
|
+
function create<I extends Exact<DeepPartial<BlockUpdate>, I>>(base?: I): BlockUpdate;
|
|
932
|
+
function fromPartial<I extends Exact<DeepPartial<BlockUpdate>, I>>(object: I): BlockUpdate;
|
|
933
|
+
}
|
|
934
|
+
export declare namespace CommunityMemberConnectivityUpdate {
|
|
935
|
+
function encode(message: CommunityMemberConnectivityUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
936
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): CommunityMemberConnectivityUpdate;
|
|
937
|
+
function fromJSON(object: any): CommunityMemberConnectivityUpdate;
|
|
938
|
+
function toJSON(message: CommunityMemberConnectivityUpdate): unknown;
|
|
939
|
+
function create<I extends Exact<DeepPartial<CommunityMemberConnectivityUpdate>, I>>(base?: I): CommunityMemberConnectivityUpdate;
|
|
940
|
+
function fromPartial<I extends Exact<DeepPartial<CommunityMemberConnectivityUpdate>, I>>(object: I): CommunityMemberConnectivityUpdate;
|
|
941
|
+
}
|
|
942
|
+
export declare namespace StartPrivateVoiceChatPayload {
|
|
943
|
+
function encode(message: StartPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
944
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatPayload;
|
|
945
|
+
function fromJSON(object: any): StartPrivateVoiceChatPayload;
|
|
946
|
+
function toJSON(message: StartPrivateVoiceChatPayload): unknown;
|
|
947
|
+
function create<I extends Exact<DeepPartial<StartPrivateVoiceChatPayload>, I>>(base?: I): StartPrivateVoiceChatPayload;
|
|
948
|
+
function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatPayload>, I>>(object: I): StartPrivateVoiceChatPayload;
|
|
949
|
+
}
|
|
950
|
+
export declare namespace StartPrivateVoiceChatResponse {
|
|
951
|
+
function encode(message: StartPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
952
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatResponse;
|
|
953
|
+
function fromJSON(object: any): StartPrivateVoiceChatResponse;
|
|
954
|
+
function toJSON(message: StartPrivateVoiceChatResponse): unknown;
|
|
955
|
+
function create<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse>, I>>(base?: I): StartPrivateVoiceChatResponse;
|
|
956
|
+
function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse>, I>>(object: I): StartPrivateVoiceChatResponse;
|
|
957
|
+
}
|
|
958
|
+
export declare namespace StartPrivateVoiceChatResponse_Ok {
|
|
959
|
+
function encode(message: StartPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
960
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): StartPrivateVoiceChatResponse_Ok;
|
|
961
|
+
function fromJSON(object: any): StartPrivateVoiceChatResponse_Ok;
|
|
962
|
+
function toJSON(message: StartPrivateVoiceChatResponse_Ok): unknown;
|
|
963
|
+
function create<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse_Ok>, I>>(base?: I): StartPrivateVoiceChatResponse_Ok;
|
|
964
|
+
function fromPartial<I extends Exact<DeepPartial<StartPrivateVoiceChatResponse_Ok>, I>>(object: I): StartPrivateVoiceChatResponse_Ok;
|
|
965
|
+
}
|
|
966
|
+
export declare namespace AcceptPrivateVoiceChatPayload {
|
|
967
|
+
function encode(message: AcceptPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
968
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatPayload;
|
|
969
|
+
function fromJSON(object: any): AcceptPrivateVoiceChatPayload;
|
|
970
|
+
function toJSON(message: AcceptPrivateVoiceChatPayload): unknown;
|
|
971
|
+
function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatPayload>, I>>(base?: I): AcceptPrivateVoiceChatPayload;
|
|
972
|
+
function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatPayload>, I>>(object: I): AcceptPrivateVoiceChatPayload;
|
|
973
|
+
}
|
|
974
|
+
export declare namespace AcceptPrivateVoiceChatResponse {
|
|
975
|
+
function encode(message: AcceptPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
976
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatResponse;
|
|
977
|
+
function fromJSON(object: any): AcceptPrivateVoiceChatResponse;
|
|
978
|
+
function toJSON(message: AcceptPrivateVoiceChatResponse): unknown;
|
|
979
|
+
function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse>, I>>(base?: I): AcceptPrivateVoiceChatResponse;
|
|
980
|
+
function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse>, I>>(object: I): AcceptPrivateVoiceChatResponse;
|
|
981
|
+
}
|
|
982
|
+
export declare namespace AcceptPrivateVoiceChatResponse_Ok {
|
|
983
|
+
function encode(message: AcceptPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
984
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): AcceptPrivateVoiceChatResponse_Ok;
|
|
985
|
+
function fromJSON(object: any): AcceptPrivateVoiceChatResponse_Ok;
|
|
986
|
+
function toJSON(message: AcceptPrivateVoiceChatResponse_Ok): unknown;
|
|
987
|
+
function create<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse_Ok>, I>>(base?: I): AcceptPrivateVoiceChatResponse_Ok;
|
|
988
|
+
function fromPartial<I extends Exact<DeepPartial<AcceptPrivateVoiceChatResponse_Ok>, I>>(object: I): AcceptPrivateVoiceChatResponse_Ok;
|
|
989
|
+
}
|
|
990
|
+
export declare namespace RejectPrivateVoiceChatPayload {
|
|
991
|
+
function encode(message: RejectPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
992
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatPayload;
|
|
993
|
+
function fromJSON(object: any): RejectPrivateVoiceChatPayload;
|
|
994
|
+
function toJSON(message: RejectPrivateVoiceChatPayload): unknown;
|
|
995
|
+
function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatPayload>, I>>(base?: I): RejectPrivateVoiceChatPayload;
|
|
996
|
+
function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatPayload>, I>>(object: I): RejectPrivateVoiceChatPayload;
|
|
997
|
+
}
|
|
998
|
+
export declare namespace RejectPrivateVoiceChatResponse {
|
|
999
|
+
function encode(message: RejectPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1000
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatResponse;
|
|
1001
|
+
function fromJSON(object: any): RejectPrivateVoiceChatResponse;
|
|
1002
|
+
function toJSON(message: RejectPrivateVoiceChatResponse): unknown;
|
|
1003
|
+
function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse>, I>>(base?: I): RejectPrivateVoiceChatResponse;
|
|
1004
|
+
function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse>, I>>(object: I): RejectPrivateVoiceChatResponse;
|
|
1005
|
+
}
|
|
1006
|
+
export declare namespace RejectPrivateVoiceChatResponse_Ok {
|
|
1007
|
+
function encode(message: RejectPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1008
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): RejectPrivateVoiceChatResponse_Ok;
|
|
1009
|
+
function fromJSON(object: any): RejectPrivateVoiceChatResponse_Ok;
|
|
1010
|
+
function toJSON(message: RejectPrivateVoiceChatResponse_Ok): unknown;
|
|
1011
|
+
function create<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse_Ok>, I>>(base?: I): RejectPrivateVoiceChatResponse_Ok;
|
|
1012
|
+
function fromPartial<I extends Exact<DeepPartial<RejectPrivateVoiceChatResponse_Ok>, I>>(object: I): RejectPrivateVoiceChatResponse_Ok;
|
|
1013
|
+
}
|
|
1014
|
+
export declare namespace PrivateVoiceChatCredentials {
|
|
1015
|
+
function encode(message: PrivateVoiceChatCredentials, writer?: _m0.Writer): _m0.Writer;
|
|
1016
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PrivateVoiceChatCredentials;
|
|
1017
|
+
function fromJSON(object: any): PrivateVoiceChatCredentials;
|
|
1018
|
+
function toJSON(message: PrivateVoiceChatCredentials): unknown;
|
|
1019
|
+
function create<I extends Exact<DeepPartial<PrivateVoiceChatCredentials>, I>>(base?: I): PrivateVoiceChatCredentials;
|
|
1020
|
+
function fromPartial<I extends Exact<DeepPartial<PrivateVoiceChatCredentials>, I>>(object: I): PrivateVoiceChatCredentials;
|
|
1021
|
+
}
|
|
1022
|
+
export declare namespace PrivateVoiceChatUpdate {
|
|
1023
|
+
function encode(message: PrivateVoiceChatUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
1024
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): PrivateVoiceChatUpdate;
|
|
1025
|
+
function fromJSON(object: any): PrivateVoiceChatUpdate;
|
|
1026
|
+
function toJSON(message: PrivateVoiceChatUpdate): unknown;
|
|
1027
|
+
function create<I extends Exact<DeepPartial<PrivateVoiceChatUpdate>, I>>(base?: I): PrivateVoiceChatUpdate;
|
|
1028
|
+
function fromPartial<I extends Exact<DeepPartial<PrivateVoiceChatUpdate>, I>>(object: I): PrivateVoiceChatUpdate;
|
|
1029
|
+
}
|
|
1030
|
+
export declare namespace EndPrivateVoiceChatPayload {
|
|
1031
|
+
function encode(message: EndPrivateVoiceChatPayload, writer?: _m0.Writer): _m0.Writer;
|
|
1032
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatPayload;
|
|
1033
|
+
function fromJSON(object: any): EndPrivateVoiceChatPayload;
|
|
1034
|
+
function toJSON(message: EndPrivateVoiceChatPayload): unknown;
|
|
1035
|
+
function create<I extends Exact<DeepPartial<EndPrivateVoiceChatPayload>, I>>(base?: I): EndPrivateVoiceChatPayload;
|
|
1036
|
+
function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatPayload>, I>>(object: I): EndPrivateVoiceChatPayload;
|
|
1037
|
+
}
|
|
1038
|
+
export declare namespace EndPrivateVoiceChatResponse {
|
|
1039
|
+
function encode(message: EndPrivateVoiceChatResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1040
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatResponse;
|
|
1041
|
+
function fromJSON(object: any): EndPrivateVoiceChatResponse;
|
|
1042
|
+
function toJSON(message: EndPrivateVoiceChatResponse): unknown;
|
|
1043
|
+
function create<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse>, I>>(base?: I): EndPrivateVoiceChatResponse;
|
|
1044
|
+
function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse>, I>>(object: I): EndPrivateVoiceChatResponse;
|
|
1045
|
+
}
|
|
1046
|
+
export declare namespace EndPrivateVoiceChatResponse_Ok {
|
|
1047
|
+
function encode(message: EndPrivateVoiceChatResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1048
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): EndPrivateVoiceChatResponse_Ok;
|
|
1049
|
+
function fromJSON(object: any): EndPrivateVoiceChatResponse_Ok;
|
|
1050
|
+
function toJSON(message: EndPrivateVoiceChatResponse_Ok): unknown;
|
|
1051
|
+
function create<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse_Ok>, I>>(base?: I): EndPrivateVoiceChatResponse_Ok;
|
|
1052
|
+
function fromPartial<I extends Exact<DeepPartial<EndPrivateVoiceChatResponse_Ok>, I>>(object: I): EndPrivateVoiceChatResponse_Ok;
|
|
1053
|
+
}
|
|
1054
|
+
export declare namespace GetIncomingPrivateVoiceChatRequestResponse {
|
|
1055
|
+
function encode(message: GetIncomingPrivateVoiceChatRequestResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1056
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1057
|
+
function fromJSON(object: any): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1058
|
+
function toJSON(message: GetIncomingPrivateVoiceChatRequestResponse): unknown;
|
|
1059
|
+
function create<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse>, I>>(base?: I): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1060
|
+
function fromPartial<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse>, I>>(object: I): GetIncomingPrivateVoiceChatRequestResponse;
|
|
1061
|
+
}
|
|
1062
|
+
export declare namespace GetIncomingPrivateVoiceChatRequestResponse_Ok {
|
|
1063
|
+
function encode(message: GetIncomingPrivateVoiceChatRequestResponse_Ok, writer?: _m0.Writer): _m0.Writer;
|
|
1064
|
+
function decode(input: _m0.Reader | Uint8Array, length?: number): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1065
|
+
function fromJSON(object: any): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1066
|
+
function toJSON(message: GetIncomingPrivateVoiceChatRequestResponse_Ok): unknown;
|
|
1067
|
+
function create<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse_Ok>, I>>(base?: I): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1068
|
+
function fromPartial<I extends Exact<DeepPartial<GetIncomingPrivateVoiceChatRequestResponse_Ok>, I>>(object: I): GetIncomingPrivateVoiceChatRequestResponse_Ok;
|
|
1069
|
+
}
|
|
394
1070
|
export type SocialServiceDefinition = typeof SocialServiceDefinition;
|
|
395
1071
|
export declare const SocialServiceDefinition: {
|
|
396
1072
|
readonly name: "SocialService";
|
|
@@ -401,7 +1077,7 @@ export declare const SocialServiceDefinition: {
|
|
|
401
1077
|
readonly name: "GetFriends";
|
|
402
1078
|
readonly requestType: typeof GetFriendsPayload;
|
|
403
1079
|
readonly requestStream: false;
|
|
404
|
-
readonly responseType: typeof
|
|
1080
|
+
readonly responseType: typeof PaginatedFriendsProfilesResponse;
|
|
405
1081
|
readonly responseStream: false;
|
|
406
1082
|
readonly options: {};
|
|
407
1083
|
};
|
|
@@ -410,7 +1086,7 @@ export declare const SocialServiceDefinition: {
|
|
|
410
1086
|
readonly name: "GetMutualFriends";
|
|
411
1087
|
readonly requestType: typeof GetMutualFriendsPayload;
|
|
412
1088
|
readonly requestStream: false;
|
|
413
|
-
readonly responseType: typeof
|
|
1089
|
+
readonly responseType: typeof PaginatedFriendsProfilesResponse;
|
|
414
1090
|
readonly responseStream: false;
|
|
415
1091
|
readonly options: {};
|
|
416
1092
|
};
|
|
@@ -450,6 +1126,7 @@ export declare const SocialServiceDefinition: {
|
|
|
450
1126
|
readonly responseStream: true;
|
|
451
1127
|
readonly options: {};
|
|
452
1128
|
};
|
|
1129
|
+
/** Get the friendship status between the authenticated user and the one in the parameter */
|
|
453
1130
|
readonly getFriendshipStatus: {
|
|
454
1131
|
readonly name: "GetFriendshipStatus";
|
|
455
1132
|
readonly requestType: typeof GetFriendshipStatusPayload;
|
|
@@ -458,6 +1135,145 @@ export declare const SocialServiceDefinition: {
|
|
|
458
1135
|
readonly responseStream: false;
|
|
459
1136
|
readonly options: {};
|
|
460
1137
|
};
|
|
1138
|
+
/** Subscribe to connectivity updates of friends: ONLINE, OFFLINE, AWAY */
|
|
1139
|
+
readonly subscribeToFriendConnectivityUpdates: {
|
|
1140
|
+
readonly name: "SubscribeToFriendConnectivityUpdates";
|
|
1141
|
+
readonly requestType: typeof Empty;
|
|
1142
|
+
readonly requestStream: false;
|
|
1143
|
+
readonly responseType: typeof FriendConnectivityUpdate;
|
|
1144
|
+
readonly responseStream: true;
|
|
1145
|
+
readonly options: {};
|
|
1146
|
+
};
|
|
1147
|
+
readonly blockUser: {
|
|
1148
|
+
readonly name: "BlockUser";
|
|
1149
|
+
readonly requestType: typeof BlockUserPayload;
|
|
1150
|
+
readonly requestStream: false;
|
|
1151
|
+
readonly responseType: typeof BlockUserResponse;
|
|
1152
|
+
readonly responseStream: false;
|
|
1153
|
+
readonly options: {};
|
|
1154
|
+
};
|
|
1155
|
+
readonly unblockUser: {
|
|
1156
|
+
readonly name: "UnblockUser";
|
|
1157
|
+
readonly requestType: typeof UnblockUserPayload;
|
|
1158
|
+
readonly requestStream: false;
|
|
1159
|
+
readonly responseType: typeof UnblockUserResponse;
|
|
1160
|
+
readonly responseStream: false;
|
|
1161
|
+
readonly options: {};
|
|
1162
|
+
};
|
|
1163
|
+
readonly getBlockedUsers: {
|
|
1164
|
+
readonly name: "GetBlockedUsers";
|
|
1165
|
+
readonly requestType: typeof GetBlockedUsersPayload;
|
|
1166
|
+
readonly requestStream: false;
|
|
1167
|
+
readonly responseType: typeof GetBlockedUsersResponse;
|
|
1168
|
+
readonly responseStream: false;
|
|
1169
|
+
readonly options: {};
|
|
1170
|
+
};
|
|
1171
|
+
readonly getBlockingStatus: {
|
|
1172
|
+
readonly name: "GetBlockingStatus";
|
|
1173
|
+
readonly requestType: typeof Empty;
|
|
1174
|
+
readonly requestStream: false;
|
|
1175
|
+
readonly responseType: typeof GetBlockingStatusResponse;
|
|
1176
|
+
readonly responseStream: false;
|
|
1177
|
+
readonly options: {};
|
|
1178
|
+
};
|
|
1179
|
+
readonly subscribeToBlockUpdates: {
|
|
1180
|
+
readonly name: "SubscribeToBlockUpdates";
|
|
1181
|
+
readonly requestType: typeof Empty;
|
|
1182
|
+
readonly requestStream: false;
|
|
1183
|
+
readonly responseType: typeof BlockUpdate;
|
|
1184
|
+
readonly responseStream: true;
|
|
1185
|
+
readonly options: {};
|
|
1186
|
+
};
|
|
1187
|
+
/** Get all the social settings for the authenticated user */
|
|
1188
|
+
readonly getSocialSettings: {
|
|
1189
|
+
readonly name: "GetSocialSettings";
|
|
1190
|
+
readonly requestType: typeof Empty;
|
|
1191
|
+
readonly requestStream: false;
|
|
1192
|
+
readonly responseType: typeof GetSocialSettingsResponse;
|
|
1193
|
+
readonly responseStream: false;
|
|
1194
|
+
readonly options: {};
|
|
1195
|
+
};
|
|
1196
|
+
/** Insert or update the social settings for the authenticated user */
|
|
1197
|
+
readonly upsertSocialSettings: {
|
|
1198
|
+
readonly name: "UpsertSocialSettings";
|
|
1199
|
+
readonly requestType: typeof UpsertSocialSettingsPayload;
|
|
1200
|
+
readonly requestStream: false;
|
|
1201
|
+
readonly responseType: typeof UpsertSocialSettingsResponse;
|
|
1202
|
+
readonly responseStream: false;
|
|
1203
|
+
readonly options: {};
|
|
1204
|
+
};
|
|
1205
|
+
/** Get the private messages privacy settings for the requested users */
|
|
1206
|
+
readonly getPrivateMessagesSettings: {
|
|
1207
|
+
readonly name: "GetPrivateMessagesSettings";
|
|
1208
|
+
readonly requestType: typeof GetPrivateMessagesSettingsPayload;
|
|
1209
|
+
readonly requestStream: false;
|
|
1210
|
+
readonly responseType: typeof GetPrivateMessagesSettingsResponse;
|
|
1211
|
+
readonly responseStream: false;
|
|
1212
|
+
readonly options: {};
|
|
1213
|
+
};
|
|
1214
|
+
/** Subscribe to community member connectivity updates: ONLINE, OFFLINE */
|
|
1215
|
+
readonly subscribeToCommunityMemberConnectivityUpdates: {
|
|
1216
|
+
readonly name: "SubscribeToCommunityMemberConnectivityUpdates";
|
|
1217
|
+
readonly requestType: typeof Empty;
|
|
1218
|
+
readonly requestStream: false;
|
|
1219
|
+
readonly responseType: typeof CommunityMemberConnectivityUpdate;
|
|
1220
|
+
readonly responseStream: true;
|
|
1221
|
+
readonly options: {};
|
|
1222
|
+
};
|
|
1223
|
+
/** Start a private voice chat */
|
|
1224
|
+
readonly startPrivateVoiceChat: {
|
|
1225
|
+
readonly name: "StartPrivateVoiceChat";
|
|
1226
|
+
readonly requestType: typeof StartPrivateVoiceChatPayload;
|
|
1227
|
+
readonly requestStream: false;
|
|
1228
|
+
readonly responseType: typeof StartPrivateVoiceChatResponse;
|
|
1229
|
+
readonly responseStream: false;
|
|
1230
|
+
readonly options: {};
|
|
1231
|
+
};
|
|
1232
|
+
/** Accept a private voice chat */
|
|
1233
|
+
readonly acceptPrivateVoiceChat: {
|
|
1234
|
+
readonly name: "AcceptPrivateVoiceChat";
|
|
1235
|
+
readonly requestType: typeof AcceptPrivateVoiceChatPayload;
|
|
1236
|
+
readonly requestStream: false;
|
|
1237
|
+
readonly responseType: typeof AcceptPrivateVoiceChatResponse;
|
|
1238
|
+
readonly responseStream: false;
|
|
1239
|
+
readonly options: {};
|
|
1240
|
+
};
|
|
1241
|
+
/** Reject a private voice chat */
|
|
1242
|
+
readonly rejectPrivateVoiceChat: {
|
|
1243
|
+
readonly name: "RejectPrivateVoiceChat";
|
|
1244
|
+
readonly requestType: typeof RejectPrivateVoiceChatPayload;
|
|
1245
|
+
readonly requestStream: false;
|
|
1246
|
+
readonly responseType: typeof RejectPrivateVoiceChatResponse;
|
|
1247
|
+
readonly responseStream: false;
|
|
1248
|
+
readonly options: {};
|
|
1249
|
+
};
|
|
1250
|
+
/** End a private voice chat */
|
|
1251
|
+
readonly endPrivateVoiceChat: {
|
|
1252
|
+
readonly name: "EndPrivateVoiceChat";
|
|
1253
|
+
readonly requestType: typeof EndPrivateVoiceChatPayload;
|
|
1254
|
+
readonly requestStream: false;
|
|
1255
|
+
readonly responseType: typeof EndPrivateVoiceChatResponse;
|
|
1256
|
+
readonly responseStream: false;
|
|
1257
|
+
readonly options: {};
|
|
1258
|
+
};
|
|
1259
|
+
/** Get the incoming private voice chat request */
|
|
1260
|
+
readonly getIncomingPrivateVoiceChatRequest: {
|
|
1261
|
+
readonly name: "GetIncomingPrivateVoiceChatRequest";
|
|
1262
|
+
readonly requestType: typeof Empty;
|
|
1263
|
+
readonly requestStream: false;
|
|
1264
|
+
readonly responseType: typeof GetIncomingPrivateVoiceChatRequestResponse;
|
|
1265
|
+
readonly responseStream: false;
|
|
1266
|
+
readonly options: {};
|
|
1267
|
+
};
|
|
1268
|
+
/** Subscribe to private voice chat updates */
|
|
1269
|
+
readonly subscribeToPrivateVoiceChatUpdates: {
|
|
1270
|
+
readonly name: "SubscribeToPrivateVoiceChatUpdates";
|
|
1271
|
+
readonly requestType: typeof Empty;
|
|
1272
|
+
readonly requestStream: false;
|
|
1273
|
+
readonly responseType: typeof PrivateVoiceChatUpdate;
|
|
1274
|
+
readonly responseStream: true;
|
|
1275
|
+
readonly options: {};
|
|
1276
|
+
};
|
|
461
1277
|
};
|
|
462
1278
|
};
|
|
463
1279
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|