@dcl/protocol 1.0.0-16294849865.commit-346fe2d → 1.0.0-16428499484.commit-7aab7c2
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 +1 -9
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +11 -49
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/gltf_node_modifiers.gen.d.ts +57 -0
- package/out-js/decentraland/sdk/components/gltf_node_modifiers.gen.js +164 -0
- package/out-js/decentraland/sdk/components/gltf_node_modifiers.gen.js.map +1 -0
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.d.ts +22 -838
- package/out-js/decentraland/social_service/v2/social_service_v2.gen.js +943 -5095
- 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 +10 -59
- package/out-ts/decentraland/sdk/components/gltf_node_modifiers.gen.ts +204 -0
- package/out-ts/decentraland/social_service/v2/social_service_v2.gen.ts +948 -5639
- package/package.json +3 -3
- package/proto/decentraland/kernel/comms/rfc4/comms.proto +3 -8
- package/proto/decentraland/sdk/components/gltf_node_modifiers.proto +25 -0
- package/proto/decentraland/sdk/components/virtual_camera.proto +0 -2
- package/proto/decentraland/social_service/v2/social_service_v2.proto +9 -347
- package/public/sdk-components.proto +1 -0
- package/proto/decentraland/sdk/components/light_source.proto +0 -35
|
@@ -17,90 +17,34 @@ export declare enum FriendshipStatus {
|
|
|
17
17
|
REJECTED = 4,
|
|
18
18
|
DELETED = 5,
|
|
19
19
|
BLOCKED = 6,
|
|
20
|
-
NONE = 7,
|
|
21
|
-
BLOCKED_BY = 8,
|
|
22
20
|
UNRECOGNIZED = -1
|
|
23
21
|
}
|
|
24
22
|
export declare function friendshipStatusFromJSON(object: any): FriendshipStatus;
|
|
25
23
|
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;
|
|
50
24
|
/** Errors */
|
|
51
25
|
export interface InvalidFriendshipAction {
|
|
52
|
-
message?: string | undefined;
|
|
53
26
|
}
|
|
54
27
|
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;
|
|
71
28
|
}
|
|
72
29
|
/** Types */
|
|
73
30
|
export interface User {
|
|
74
31
|
address: string;
|
|
75
32
|
}
|
|
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
|
-
}
|
|
89
33
|
export interface Pagination {
|
|
90
34
|
limit: number;
|
|
91
35
|
offset: number;
|
|
92
36
|
}
|
|
93
37
|
export interface FriendshipRequestResponse {
|
|
94
|
-
|
|
38
|
+
user: User | undefined;
|
|
95
39
|
createdAt: number;
|
|
96
40
|
message?: string | undefined;
|
|
97
|
-
id: string;
|
|
98
41
|
}
|
|
99
42
|
export interface FriendshipRequests {
|
|
100
43
|
requests: FriendshipRequestResponse[];
|
|
101
44
|
}
|
|
102
45
|
export interface GetFriendsPayload {
|
|
103
46
|
pagination?: Pagination | undefined;
|
|
47
|
+
status?: ConnectivityStatus | undefined;
|
|
104
48
|
}
|
|
105
49
|
export interface GetFriendshipRequestsPayload {
|
|
106
50
|
pagination?: Pagination | undefined;
|
|
@@ -147,8 +91,8 @@ export interface PaginatedResponse {
|
|
|
147
91
|
total: number;
|
|
148
92
|
page: number;
|
|
149
93
|
}
|
|
150
|
-
export interface
|
|
151
|
-
|
|
94
|
+
export interface PaginatedUsersResponse {
|
|
95
|
+
users: User[];
|
|
152
96
|
paginationData: PaginatedResponse | undefined;
|
|
153
97
|
}
|
|
154
98
|
export interface PaginatedFriendshipRequestsResponse {
|
|
@@ -176,13 +120,11 @@ export interface UpsertFriendshipResponse {
|
|
|
176
120
|
export interface UpsertFriendshipResponse_Accepted {
|
|
177
121
|
id: string;
|
|
178
122
|
createdAt: number;
|
|
179
|
-
friend: FriendProfile | undefined;
|
|
180
|
-
message?: string | undefined;
|
|
181
123
|
}
|
|
182
124
|
export interface FriendshipUpdate {
|
|
183
125
|
update?: {
|
|
184
126
|
$case: "request";
|
|
185
|
-
request:
|
|
127
|
+
request: FriendshipRequestResponse;
|
|
186
128
|
} | {
|
|
187
129
|
$case: "accept";
|
|
188
130
|
accept: FriendshipUpdate_AcceptResponse;
|
|
@@ -195,17 +137,8 @@ export interface FriendshipUpdate {
|
|
|
195
137
|
} | {
|
|
196
138
|
$case: "cancel";
|
|
197
139
|
cancel: FriendshipUpdate_CancelResponse;
|
|
198
|
-
} | {
|
|
199
|
-
$case: "block";
|
|
200
|
-
block: FriendshipUpdate_BlockResponse;
|
|
201
140
|
} | undefined;
|
|
202
141
|
}
|
|
203
|
-
export interface FriendshipUpdate_RequestResponse {
|
|
204
|
-
friend: FriendProfile | undefined;
|
|
205
|
-
createdAt: number;
|
|
206
|
-
message?: string | undefined;
|
|
207
|
-
id: string;
|
|
208
|
-
}
|
|
209
142
|
export interface FriendshipUpdate_AcceptResponse {
|
|
210
143
|
user: User | undefined;
|
|
211
144
|
}
|
|
@@ -218,13 +151,6 @@ export interface FriendshipUpdate_DeleteResponse {
|
|
|
218
151
|
export interface FriendshipUpdate_CancelResponse {
|
|
219
152
|
user: User | undefined;
|
|
220
153
|
}
|
|
221
|
-
export interface FriendshipUpdate_BlockResponse {
|
|
222
|
-
user: User | undefined;
|
|
223
|
-
}
|
|
224
|
-
export interface FriendConnectivityUpdate {
|
|
225
|
-
friend: FriendProfile | undefined;
|
|
226
|
-
status: ConnectivityStatus;
|
|
227
|
-
}
|
|
228
154
|
export interface GetFriendshipStatusPayload {
|
|
229
155
|
user: User | undefined;
|
|
230
156
|
}
|
|
@@ -241,295 +167,21 @@ export interface GetFriendshipStatusResponse_Ok {
|
|
|
241
167
|
status: FriendshipStatus;
|
|
242
168
|
message?: string | undefined;
|
|
243
169
|
}
|
|
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
|
-
}
|
|
478
170
|
export declare namespace InvalidFriendshipAction {
|
|
479
|
-
function encode(
|
|
171
|
+
function encode(_: InvalidFriendshipAction, writer?: _m0.Writer): _m0.Writer;
|
|
480
172
|
function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidFriendshipAction;
|
|
481
|
-
function fromJSON(
|
|
482
|
-
function toJSON(
|
|
173
|
+
function fromJSON(_: any): InvalidFriendshipAction;
|
|
174
|
+
function toJSON(_: InvalidFriendshipAction): unknown;
|
|
483
175
|
function create<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(base?: I): InvalidFriendshipAction;
|
|
484
|
-
function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(
|
|
176
|
+
function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(_: I): InvalidFriendshipAction;
|
|
485
177
|
}
|
|
486
178
|
export declare namespace InternalServerError {
|
|
487
|
-
function encode(
|
|
179
|
+
function encode(_: InternalServerError, writer?: _m0.Writer): _m0.Writer;
|
|
488
180
|
function decode(input: _m0.Reader | Uint8Array, length?: number): InternalServerError;
|
|
489
|
-
function fromJSON(
|
|
490
|
-
function toJSON(
|
|
181
|
+
function fromJSON(_: any): InternalServerError;
|
|
182
|
+
function toJSON(_: InternalServerError): unknown;
|
|
491
183
|
function create<I extends Exact<DeepPartial<InternalServerError>, I>>(base?: I): InternalServerError;
|
|
492
|
-
function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(
|
|
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;
|
|
184
|
+
function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(_: I): InternalServerError;
|
|
533
185
|
}
|
|
534
186
|
export declare namespace User {
|
|
535
187
|
function encode(message: User, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -539,22 +191,6 @@ export declare namespace User {
|
|
|
539
191
|
function create<I extends Exact<DeepPartial<User>, I>>(base?: I): User;
|
|
540
192
|
function fromPartial<I extends Exact<DeepPartial<User>, I>>(object: I): User;
|
|
541
193
|
}
|
|
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
|
-
}
|
|
558
194
|
export declare namespace Pagination {
|
|
559
195
|
function encode(message: Pagination, writer?: _m0.Writer): _m0.Writer;
|
|
560
196
|
function decode(input: _m0.Reader | Uint8Array, length?: number): Pagination;
|
|
@@ -659,13 +295,13 @@ export declare namespace PaginatedResponse {
|
|
|
659
295
|
function create<I extends Exact<DeepPartial<PaginatedResponse>, I>>(base?: I): PaginatedResponse;
|
|
660
296
|
function fromPartial<I extends Exact<DeepPartial<PaginatedResponse>, I>>(object: I): PaginatedResponse;
|
|
661
297
|
}
|
|
662
|
-
export declare namespace
|
|
663
|
-
function encode(message:
|
|
664
|
-
function decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
665
|
-
function fromJSON(object: any):
|
|
666
|
-
function toJSON(message:
|
|
667
|
-
function create<I extends Exact<DeepPartial<
|
|
668
|
-
function fromPartial<I extends Exact<DeepPartial<
|
|
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;
|
|
669
305
|
}
|
|
670
306
|
export declare namespace PaginatedFriendshipRequestsResponse {
|
|
671
307
|
function encode(message: PaginatedFriendshipRequestsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -699,14 +335,6 @@ export declare namespace FriendshipUpdate {
|
|
|
699
335
|
function create<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(base?: I): FriendshipUpdate;
|
|
700
336
|
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate>, I>>(object: I): FriendshipUpdate;
|
|
701
337
|
}
|
|
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
|
-
}
|
|
710
338
|
export declare namespace FriendshipUpdate_AcceptResponse {
|
|
711
339
|
function encode(message: FriendshipUpdate_AcceptResponse, writer?: _m0.Writer): _m0.Writer;
|
|
712
340
|
function decode(input: _m0.Reader | Uint8Array, length?: number): FriendshipUpdate_AcceptResponse;
|
|
@@ -739,22 +367,6 @@ export declare namespace FriendshipUpdate_CancelResponse {
|
|
|
739
367
|
function create<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(base?: I): FriendshipUpdate_CancelResponse;
|
|
740
368
|
function fromPartial<I extends Exact<DeepPartial<FriendshipUpdate_CancelResponse>, I>>(object: I): FriendshipUpdate_CancelResponse;
|
|
741
369
|
}
|
|
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
|
-
}
|
|
758
370
|
export declare namespace GetFriendshipStatusPayload {
|
|
759
371
|
function encode(message: GetFriendshipStatusPayload, writer?: _m0.Writer): _m0.Writer;
|
|
760
372
|
function decode(input: _m0.Reader | Uint8Array, length?: number): GetFriendshipStatusPayload;
|
|
@@ -779,294 +391,6 @@ export declare namespace GetFriendshipStatusResponse_Ok {
|
|
|
779
391
|
function create<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(base?: I): GetFriendshipStatusResponse_Ok;
|
|
780
392
|
function fromPartial<I extends Exact<DeepPartial<GetFriendshipStatusResponse_Ok>, I>>(object: I): GetFriendshipStatusResponse_Ok;
|
|
781
393
|
}
|
|
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
|
-
}
|
|
1070
394
|
export type SocialServiceDefinition = typeof SocialServiceDefinition;
|
|
1071
395
|
export declare const SocialServiceDefinition: {
|
|
1072
396
|
readonly name: "SocialService";
|
|
@@ -1077,7 +401,7 @@ export declare const SocialServiceDefinition: {
|
|
|
1077
401
|
readonly name: "GetFriends";
|
|
1078
402
|
readonly requestType: typeof GetFriendsPayload;
|
|
1079
403
|
readonly requestStream: false;
|
|
1080
|
-
readonly responseType: typeof
|
|
404
|
+
readonly responseType: typeof PaginatedUsersResponse;
|
|
1081
405
|
readonly responseStream: false;
|
|
1082
406
|
readonly options: {};
|
|
1083
407
|
};
|
|
@@ -1086,7 +410,7 @@ export declare const SocialServiceDefinition: {
|
|
|
1086
410
|
readonly name: "GetMutualFriends";
|
|
1087
411
|
readonly requestType: typeof GetMutualFriendsPayload;
|
|
1088
412
|
readonly requestStream: false;
|
|
1089
|
-
readonly responseType: typeof
|
|
413
|
+
readonly responseType: typeof PaginatedUsersResponse;
|
|
1090
414
|
readonly responseStream: false;
|
|
1091
415
|
readonly options: {};
|
|
1092
416
|
};
|
|
@@ -1126,7 +450,6 @@ export declare const SocialServiceDefinition: {
|
|
|
1126
450
|
readonly responseStream: true;
|
|
1127
451
|
readonly options: {};
|
|
1128
452
|
};
|
|
1129
|
-
/** Get the friendship status between the authenticated user and the one in the parameter */
|
|
1130
453
|
readonly getFriendshipStatus: {
|
|
1131
454
|
readonly name: "GetFriendshipStatus";
|
|
1132
455
|
readonly requestType: typeof GetFriendshipStatusPayload;
|
|
@@ -1135,145 +458,6 @@ export declare const SocialServiceDefinition: {
|
|
|
1135
458
|
readonly responseStream: false;
|
|
1136
459
|
readonly options: {};
|
|
1137
460
|
};
|
|
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
|
-
};
|
|
1277
461
|
};
|
|
1278
462
|
};
|
|
1279
463
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|