rozod 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/lib/endpoints/accountinformationv1.d.ts +551 -0
  2. package/lib/endpoints/accountinformationv1.js +652 -0
  3. package/lib/endpoints/accountsettingsv1.d.ts +548 -0
  4. package/lib/endpoints/accountsettingsv1.js +712 -0
  5. package/lib/endpoints/assetdeliveryv1.d.ts +599 -0
  6. package/lib/endpoints/assetdeliveryv1.js +268 -0
  7. package/lib/endpoints/assetdeliveryv2.d.ts +780 -0
  8. package/lib/endpoints/assetdeliveryv2.js +271 -0
  9. package/lib/endpoints/authv1.d.ts +1328 -0
  10. package/lib/endpoints/authv1.js +1168 -0
  11. package/lib/endpoints/authv2.d.ts +1239 -0
  12. package/lib/endpoints/authv2.js +1057 -0
  13. package/lib/endpoints/authv3.d.ts +35 -0
  14. package/lib/endpoints/authv3.js +41 -0
  15. package/lib/endpoints/avatarv1.d.ts +1841 -0
  16. package/lib/endpoints/avatarv1.js +726 -0
  17. package/lib/endpoints/avatarv2.d.ts +1077 -0
  18. package/lib/endpoints/avatarv2.js +316 -0
  19. package/lib/endpoints/avatarv3.d.ts +656 -0
  20. package/lib/endpoints/avatarv3.js +219 -0
  21. package/lib/endpoints/badgesv1.d.ts +641 -0
  22. package/lib/endpoints/badgesv1.js +345 -0
  23. package/lib/endpoints/catalogv1.d.ts +1715 -0
  24. package/lib/endpoints/catalogv1.js +792 -0
  25. package/lib/endpoints/chatv2.d.ts +2179 -0
  26. package/lib/endpoints/chatv2.js +721 -0
  27. package/lib/endpoints/developv1.d.ts +2097 -0
  28. package/lib/endpoints/developv1.js +1537 -0
  29. package/lib/endpoints/developv2.d.ts +619 -0
  30. package/lib/endpoints/developv2.js +316 -0
  31. package/lib/endpoints/economyv1.d.ts +20 -0
  32. package/lib/endpoints/economyv1.js +28 -0
  33. package/lib/endpoints/friendsv1.d.ts +1093 -0
  34. package/lib/endpoints/friendsv1.js +818 -0
  35. package/lib/endpoints/gamesv1.d.ts +2749 -0
  36. package/lib/endpoints/gamesv1.js +1294 -0
  37. package/lib/endpoints/gamesv2.d.ts +582 -0
  38. package/lib/endpoints/gamesv2.js +258 -0
  39. package/lib/endpoints/groupsv1.d.ts +5528 -0
  40. package/lib/endpoints/groupsv1.js +2434 -0
  41. package/lib/endpoints/groupsv2.d.ts +530 -0
  42. package/lib/endpoints/groupsv2.js +201 -0
  43. package/lib/endpoints/inventoryv1.d.ts +436 -0
  44. package/lib/endpoints/inventoryv1.js +434 -0
  45. package/lib/endpoints/inventoryv2.d.ts +256 -0
  46. package/lib/endpoints/inventoryv2.js +241 -0
  47. package/lib/endpoints/presencev1.d.ts +134 -0
  48. package/lib/endpoints/presencev1.js +93 -0
  49. package/lib/endpoints/privatemessagesv1.d.ts +620 -0
  50. package/lib/endpoints/privatemessagesv1.js +338 -0
  51. package/lib/endpoints/thumbnailsv1.d.ts +897 -0
  52. package/lib/endpoints/thumbnailsv1.js +560 -0
  53. package/lib/endpoints/tradesv1.d.ts +473 -0
  54. package/lib/endpoints/tradesv1.js +403 -0
  55. package/lib/endpoints/translationsv1.d.ts +80 -0
  56. package/lib/endpoints/translationsv1.js +122 -0
  57. package/lib/endpoints/usersv1.d.ts +391 -0
  58. package/lib/endpoints/usersv1.js +344 -0
  59. package/lib/index.d.ts +85 -0
  60. package/lib/index.js +293 -0
  61. package/package.json +39 -0
  62. package/readme.md +99 -0
@@ -0,0 +1,1093 @@
1
+ import { z } from 'zod';
2
+ export declare const postV1contactsTargetContactIdrequestFriendship: {
3
+ method: "post";
4
+ path: string;
5
+ baseUrl: string;
6
+ requestFormat: "json";
7
+ parameters: {
8
+ targetContactId: z.ZodString;
9
+ };
10
+ response: z.ZodObject<{
11
+ success: z.ZodOptional<z.ZodBoolean>;
12
+ isCaptchaRequired: z.ZodOptional<z.ZodBoolean>;
13
+ }, "strip", z.ZodTypeAny, {
14
+ success?: boolean | undefined;
15
+ isCaptchaRequired?: boolean | undefined;
16
+ }, {
17
+ success?: boolean | undefined;
18
+ isCaptchaRequired?: boolean | undefined;
19
+ }>;
20
+ errors: {
21
+ status: number;
22
+ description: string;
23
+ schema: z.ZodVoid;
24
+ }[];
25
+ };
26
+ export declare const getV1metadata: {
27
+ method: "get";
28
+ path: string;
29
+ baseUrl: string;
30
+ requestFormat: "json";
31
+ parameters: {
32
+ targetUserId: z.ZodOptional<z.ZodNumber>;
33
+ };
34
+ response: z.ZodObject<{
35
+ isFriendsFilterBarEnabled: z.ZodOptional<z.ZodBoolean>;
36
+ isFriendsPageSortExperimentEnabled: z.ZodOptional<z.ZodBoolean>;
37
+ isFriendsUserDataStoreCacheEnabled: z.ZodOptional<z.ZodBoolean>;
38
+ frequentFriendSortRollout: z.ZodOptional<z.ZodNumber>;
39
+ userName: z.ZodOptional<z.ZodString>;
40
+ displayName: z.ZodOptional<z.ZodString>;
41
+ }, "strip", z.ZodTypeAny, {
42
+ isFriendsFilterBarEnabled?: boolean | undefined;
43
+ isFriendsPageSortExperimentEnabled?: boolean | undefined;
44
+ isFriendsUserDataStoreCacheEnabled?: boolean | undefined;
45
+ frequentFriendSortRollout?: number | undefined;
46
+ userName?: string | undefined;
47
+ displayName?: string | undefined;
48
+ }, {
49
+ isFriendsFilterBarEnabled?: boolean | undefined;
50
+ isFriendsPageSortExperimentEnabled?: boolean | undefined;
51
+ isFriendsUserDataStoreCacheEnabled?: boolean | undefined;
52
+ frequentFriendSortRollout?: number | undefined;
53
+ userName?: string | undefined;
54
+ displayName?: string | undefined;
55
+ }>;
56
+ errors: never[];
57
+ };
58
+ export declare const getV1myfriendscount: {
59
+ method: "get";
60
+ path: string;
61
+ baseUrl: string;
62
+ requestFormat: "json";
63
+ response: z.ZodObject<{
64
+ count: z.ZodOptional<z.ZodNumber>;
65
+ }, "strip", z.ZodTypeAny, {
66
+ count?: number | undefined;
67
+ }, {
68
+ count?: number | undefined;
69
+ }>;
70
+ errors: {
71
+ status: number;
72
+ description: string;
73
+ schema: z.ZodVoid;
74
+ }[];
75
+ };
76
+ export declare const getV1myfriendsrequests: {
77
+ method: "get";
78
+ path: string;
79
+ baseUrl: string;
80
+ requestFormat: "json";
81
+ parameters: {
82
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
83
+ cursor: z.ZodOptional<z.ZodString>;
84
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
85
+ };
86
+ response: z.ZodObject<{
87
+ previousPageCursor: z.ZodOptional<z.ZodString>;
88
+ nextPageCursor: z.ZodOptional<z.ZodString>;
89
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
90
+ friendRequest: z.ZodOptional<z.ZodObject<{
91
+ sentAt: z.ZodOptional<z.ZodString>;
92
+ senderId: z.ZodOptional<z.ZodNumber>;
93
+ sourceUniverseId: z.ZodOptional<z.ZodNumber>;
94
+ originSourceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>]>>;
95
+ contactName: z.ZodOptional<z.ZodString>;
96
+ }, "strip", z.ZodTypeAny, {
97
+ sentAt?: string | undefined;
98
+ senderId?: number | undefined;
99
+ sourceUniverseId?: number | undefined;
100
+ originSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
101
+ contactName?: string | undefined;
102
+ }, {
103
+ sentAt?: string | undefined;
104
+ senderId?: number | undefined;
105
+ sourceUniverseId?: number | undefined;
106
+ originSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
107
+ contactName?: string | undefined;
108
+ }>>;
109
+ mutualFriendsList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
110
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
111
+ description: z.ZodOptional<z.ZodString>;
112
+ created: z.ZodOptional<z.ZodString>;
113
+ isBanned: z.ZodOptional<z.ZodBoolean>;
114
+ externalAppDisplayName: z.ZodOptional<z.ZodString>;
115
+ id: z.ZodOptional<z.ZodNumber>;
116
+ name: z.ZodOptional<z.ZodString>;
117
+ displayName: z.ZodOptional<z.ZodString>;
118
+ }, "strip", z.ZodTypeAny, {
119
+ friendRequest?: {
120
+ sentAt?: string | undefined;
121
+ senderId?: number | undefined;
122
+ sourceUniverseId?: number | undefined;
123
+ originSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
124
+ contactName?: string | undefined;
125
+ } | undefined;
126
+ mutualFriendsList?: string[] | undefined;
127
+ hasVerifiedBadge?: boolean | undefined;
128
+ description?: string | undefined;
129
+ created?: string | undefined;
130
+ isBanned?: boolean | undefined;
131
+ externalAppDisplayName?: string | undefined;
132
+ id?: number | undefined;
133
+ name?: string | undefined;
134
+ displayName?: string | undefined;
135
+ }, {
136
+ friendRequest?: {
137
+ sentAt?: string | undefined;
138
+ senderId?: number | undefined;
139
+ sourceUniverseId?: number | undefined;
140
+ originSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
141
+ contactName?: string | undefined;
142
+ } | undefined;
143
+ mutualFriendsList?: string[] | undefined;
144
+ hasVerifiedBadge?: boolean | undefined;
145
+ description?: string | undefined;
146
+ created?: string | undefined;
147
+ isBanned?: boolean | undefined;
148
+ externalAppDisplayName?: string | undefined;
149
+ id?: number | undefined;
150
+ name?: string | undefined;
151
+ displayName?: string | undefined;
152
+ }>, "many">>;
153
+ }, "strip", z.ZodTypeAny, {
154
+ previousPageCursor?: string | undefined;
155
+ nextPageCursor?: string | undefined;
156
+ data?: {
157
+ friendRequest?: {
158
+ sentAt?: string | undefined;
159
+ senderId?: number | undefined;
160
+ sourceUniverseId?: number | undefined;
161
+ originSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
162
+ contactName?: string | undefined;
163
+ } | undefined;
164
+ mutualFriendsList?: string[] | undefined;
165
+ hasVerifiedBadge?: boolean | undefined;
166
+ description?: string | undefined;
167
+ created?: string | undefined;
168
+ isBanned?: boolean | undefined;
169
+ externalAppDisplayName?: string | undefined;
170
+ id?: number | undefined;
171
+ name?: string | undefined;
172
+ displayName?: string | undefined;
173
+ }[] | undefined;
174
+ }, {
175
+ previousPageCursor?: string | undefined;
176
+ nextPageCursor?: string | undefined;
177
+ data?: {
178
+ friendRequest?: {
179
+ sentAt?: string | undefined;
180
+ senderId?: number | undefined;
181
+ sourceUniverseId?: number | undefined;
182
+ originSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
183
+ contactName?: string | undefined;
184
+ } | undefined;
185
+ mutualFriendsList?: string[] | undefined;
186
+ hasVerifiedBadge?: boolean | undefined;
187
+ description?: string | undefined;
188
+ created?: string | undefined;
189
+ isBanned?: boolean | undefined;
190
+ externalAppDisplayName?: string | undefined;
191
+ id?: number | undefined;
192
+ name?: string | undefined;
193
+ displayName?: string | undefined;
194
+ }[] | undefined;
195
+ }>;
196
+ errors: {
197
+ status: number;
198
+ description: string;
199
+ schema: z.ZodVoid;
200
+ }[];
201
+ };
202
+ export declare const getV1recommendedUsers: {
203
+ method: "get";
204
+ path: string;
205
+ baseUrl: string;
206
+ requestFormat: "json";
207
+ response: z.ZodObject<{
208
+ recommendedUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
209
+ userId: z.ZodOptional<z.ZodNumber>;
210
+ userName: z.ZodOptional<z.ZodString>;
211
+ userProfilePageUrl: z.ZodOptional<z.ZodString>;
212
+ userPresenceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
213
+ }, "strip", z.ZodTypeAny, {
214
+ userId?: number | undefined;
215
+ userName?: string | undefined;
216
+ userProfilePageUrl?: string | undefined;
217
+ userPresenceType?: 0 | 2 | 1 | 3 | undefined;
218
+ }, {
219
+ userId?: number | undefined;
220
+ userName?: string | undefined;
221
+ userProfilePageUrl?: string | undefined;
222
+ userPresenceType?: 0 | 2 | 1 | 3 | undefined;
223
+ }>, "many">>;
224
+ }, "strip", z.ZodTypeAny, {
225
+ recommendedUsers?: {
226
+ userId?: number | undefined;
227
+ userName?: string | undefined;
228
+ userProfilePageUrl?: string | undefined;
229
+ userPresenceType?: 0 | 2 | 1 | 3 | undefined;
230
+ }[] | undefined;
231
+ }, {
232
+ recommendedUsers?: {
233
+ userId?: number | undefined;
234
+ userName?: string | undefined;
235
+ userProfilePageUrl?: string | undefined;
236
+ userPresenceType?: 0 | 2 | 1 | 3 | undefined;
237
+ }[] | undefined;
238
+ }>;
239
+ errors: {
240
+ status: number;
241
+ description: string;
242
+ schema: z.ZodVoid;
243
+ }[];
244
+ };
245
+ export declare const postV1userfollowingExists: {
246
+ method: "post";
247
+ path: string;
248
+ baseUrl: string;
249
+ requestFormat: "json";
250
+ parameters: {
251
+ body: z.ZodObject<{
252
+ targetUserIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
253
+ }, "strip", z.ZodTypeAny, {
254
+ targetUserIds?: number[] | undefined;
255
+ }, {
256
+ targetUserIds?: number[] | undefined;
257
+ }>;
258
+ };
259
+ response: z.ZodObject<{
260
+ followings: z.ZodOptional<z.ZodArray<z.ZodObject<{
261
+ isFollowing: z.ZodOptional<z.ZodBoolean>;
262
+ isFollowed: z.ZodOptional<z.ZodBoolean>;
263
+ userId: z.ZodOptional<z.ZodNumber>;
264
+ }, "strip", z.ZodTypeAny, {
265
+ isFollowing?: boolean | undefined;
266
+ isFollowed?: boolean | undefined;
267
+ userId?: number | undefined;
268
+ }, {
269
+ isFollowing?: boolean | undefined;
270
+ isFollowed?: boolean | undefined;
271
+ userId?: number | undefined;
272
+ }>, "many">>;
273
+ }, "strip", z.ZodTypeAny, {
274
+ followings?: {
275
+ isFollowing?: boolean | undefined;
276
+ isFollowed?: boolean | undefined;
277
+ userId?: number | undefined;
278
+ }[] | undefined;
279
+ }, {
280
+ followings?: {
281
+ isFollowing?: boolean | undefined;
282
+ isFollowed?: boolean | undefined;
283
+ userId?: number | undefined;
284
+ }[] | undefined;
285
+ }>;
286
+ errors: {
287
+ status: number;
288
+ description: string;
289
+ schema: z.ZodVoid;
290
+ }[];
291
+ };
292
+ export declare const getV1userfriendRequestscount: {
293
+ method: "get";
294
+ path: string;
295
+ baseUrl: string;
296
+ requestFormat: "json";
297
+ response: z.ZodObject<{
298
+ count: z.ZodOptional<z.ZodNumber>;
299
+ }, "strip", z.ZodTypeAny, {
300
+ count?: number | undefined;
301
+ }, {
302
+ count?: number | undefined;
303
+ }>;
304
+ errors: {
305
+ status: number;
306
+ description: string;
307
+ schema: z.ZodVoid;
308
+ }[];
309
+ };
310
+ export declare const postV1userfriendRequestsdeclineAll: {
311
+ method: "post";
312
+ path: string;
313
+ baseUrl: string;
314
+ requestFormat: "json";
315
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
316
+ errors: {
317
+ status: number;
318
+ description: string;
319
+ schema: z.ZodVoid;
320
+ }[];
321
+ };
322
+ export declare const postV1usersRequesterUserIdacceptFriendRequest: {
323
+ method: "post";
324
+ path: string;
325
+ baseUrl: string;
326
+ requestFormat: "json";
327
+ parameters: {
328
+ requesterUserId: z.ZodNumber;
329
+ };
330
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
331
+ errors: {
332
+ status: number;
333
+ description: string;
334
+ schema: z.ZodVoid;
335
+ }[];
336
+ };
337
+ export declare const postV1usersRequesterUserIddeclineFriendRequest: {
338
+ method: "post";
339
+ path: string;
340
+ baseUrl: string;
341
+ requestFormat: "json";
342
+ parameters: {
343
+ requesterUserId: z.ZodNumber;
344
+ };
345
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
346
+ errors: {
347
+ status: number;
348
+ description: string;
349
+ schema: z.ZodVoid;
350
+ }[];
351
+ };
352
+ export declare const postV1usersSenderUserIdacceptFriendRequestWithToken: {
353
+ method: "post";
354
+ path: string;
355
+ baseUrl: string;
356
+ requestFormat: "json";
357
+ parameters: {
358
+ body: z.ZodObject<{
359
+ friendingToken: z.ZodOptional<z.ZodString>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ friendingToken?: string | undefined;
362
+ }, {
363
+ friendingToken?: string | undefined;
364
+ }>;
365
+ senderUserId: z.ZodNumber;
366
+ };
367
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
368
+ errors: {
369
+ status: number;
370
+ description: string;
371
+ schema: z.ZodVoid;
372
+ }[];
373
+ };
374
+ export declare const postV1usersTargetUserIdfollow: {
375
+ method: "post";
376
+ path: string;
377
+ baseUrl: string;
378
+ requestFormat: "json";
379
+ parameters: {
380
+ body: z.ZodObject<{
381
+ captchaId: z.ZodOptional<z.ZodString>;
382
+ captchaToken: z.ZodOptional<z.ZodString>;
383
+ captchaProvider: z.ZodOptional<z.ZodString>;
384
+ challengeId: z.ZodOptional<z.ZodString>;
385
+ }, "strip", z.ZodTypeAny, {
386
+ captchaId?: string | undefined;
387
+ captchaToken?: string | undefined;
388
+ captchaProvider?: string | undefined;
389
+ challengeId?: string | undefined;
390
+ }, {
391
+ captchaId?: string | undefined;
392
+ captchaToken?: string | undefined;
393
+ captchaProvider?: string | undefined;
394
+ challengeId?: string | undefined;
395
+ }>;
396
+ targetUserId: z.ZodNumber;
397
+ };
398
+ response: z.ZodObject<{
399
+ success: z.ZodOptional<z.ZodBoolean>;
400
+ isCaptchaRequired: z.ZodOptional<z.ZodBoolean>;
401
+ }, "strip", z.ZodTypeAny, {
402
+ success?: boolean | undefined;
403
+ isCaptchaRequired?: boolean | undefined;
404
+ }, {
405
+ success?: boolean | undefined;
406
+ isCaptchaRequired?: boolean | undefined;
407
+ }>;
408
+ errors: {
409
+ status: number;
410
+ description: string;
411
+ schema: z.ZodVoid;
412
+ }[];
413
+ };
414
+ export declare const getV1usersTargetUserIdfollowers: {
415
+ method: "get";
416
+ path: string;
417
+ baseUrl: string;
418
+ requestFormat: "json";
419
+ parameters: {
420
+ targetUserId: z.ZodNumber;
421
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
422
+ cursor: z.ZodOptional<z.ZodString>;
423
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
424
+ };
425
+ response: z.ZodObject<{
426
+ previousPageCursor: z.ZodOptional<z.ZodString>;
427
+ nextPageCursor: z.ZodOptional<z.ZodString>;
428
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
429
+ isOnline: z.ZodOptional<z.ZodBoolean>;
430
+ presenceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
431
+ isDeleted: z.ZodOptional<z.ZodBoolean>;
432
+ friendFrequentScore: z.ZodOptional<z.ZodNumber>;
433
+ friendFrequentRank: z.ZodOptional<z.ZodNumber>;
434
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
435
+ description: z.ZodOptional<z.ZodString>;
436
+ created: z.ZodOptional<z.ZodString>;
437
+ isBanned: z.ZodOptional<z.ZodBoolean>;
438
+ externalAppDisplayName: z.ZodOptional<z.ZodString>;
439
+ id: z.ZodOptional<z.ZodNumber>;
440
+ name: z.ZodOptional<z.ZodString>;
441
+ displayName: z.ZodOptional<z.ZodString>;
442
+ }, "strip", z.ZodTypeAny, {
443
+ isOnline?: boolean | undefined;
444
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
445
+ isDeleted?: boolean | undefined;
446
+ friendFrequentScore?: number | undefined;
447
+ friendFrequentRank?: number | undefined;
448
+ hasVerifiedBadge?: boolean | undefined;
449
+ description?: string | undefined;
450
+ created?: string | undefined;
451
+ isBanned?: boolean | undefined;
452
+ externalAppDisplayName?: string | undefined;
453
+ id?: number | undefined;
454
+ name?: string | undefined;
455
+ displayName?: string | undefined;
456
+ }, {
457
+ isOnline?: boolean | undefined;
458
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
459
+ isDeleted?: boolean | undefined;
460
+ friendFrequentScore?: number | undefined;
461
+ friendFrequentRank?: number | undefined;
462
+ hasVerifiedBadge?: boolean | undefined;
463
+ description?: string | undefined;
464
+ created?: string | undefined;
465
+ isBanned?: boolean | undefined;
466
+ externalAppDisplayName?: string | undefined;
467
+ id?: number | undefined;
468
+ name?: string | undefined;
469
+ displayName?: string | undefined;
470
+ }>, "many">>;
471
+ }, "strip", z.ZodTypeAny, {
472
+ previousPageCursor?: string | undefined;
473
+ nextPageCursor?: string | undefined;
474
+ data?: {
475
+ isOnline?: boolean | undefined;
476
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
477
+ isDeleted?: boolean | undefined;
478
+ friendFrequentScore?: number | undefined;
479
+ friendFrequentRank?: number | undefined;
480
+ hasVerifiedBadge?: boolean | undefined;
481
+ description?: string | undefined;
482
+ created?: string | undefined;
483
+ isBanned?: boolean | undefined;
484
+ externalAppDisplayName?: string | undefined;
485
+ id?: number | undefined;
486
+ name?: string | undefined;
487
+ displayName?: string | undefined;
488
+ }[] | undefined;
489
+ }, {
490
+ previousPageCursor?: string | undefined;
491
+ nextPageCursor?: string | undefined;
492
+ data?: {
493
+ isOnline?: boolean | undefined;
494
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
495
+ isDeleted?: boolean | undefined;
496
+ friendFrequentScore?: number | undefined;
497
+ friendFrequentRank?: number | undefined;
498
+ hasVerifiedBadge?: boolean | undefined;
499
+ description?: string | undefined;
500
+ created?: string | undefined;
501
+ isBanned?: boolean | undefined;
502
+ externalAppDisplayName?: string | undefined;
503
+ id?: number | undefined;
504
+ name?: string | undefined;
505
+ displayName?: string | undefined;
506
+ }[] | undefined;
507
+ }>;
508
+ errors: {
509
+ status: number;
510
+ description: string;
511
+ schema: z.ZodVoid;
512
+ }[];
513
+ };
514
+ export declare const getV1usersTargetUserIdfollowerscount: {
515
+ method: "get";
516
+ path: string;
517
+ baseUrl: string;
518
+ requestFormat: "json";
519
+ parameters: {
520
+ targetUserId: z.ZodNumber;
521
+ };
522
+ response: z.ZodObject<{
523
+ count: z.ZodOptional<z.ZodNumber>;
524
+ }, "strip", z.ZodTypeAny, {
525
+ count?: number | undefined;
526
+ }, {
527
+ count?: number | undefined;
528
+ }>;
529
+ errors: {
530
+ status: number;
531
+ description: string;
532
+ schema: z.ZodVoid;
533
+ }[];
534
+ };
535
+ export declare const getV1usersTargetUserIdfollowings: {
536
+ method: "get";
537
+ path: string;
538
+ baseUrl: string;
539
+ requestFormat: "json";
540
+ parameters: {
541
+ targetUserId: z.ZodNumber;
542
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
543
+ cursor: z.ZodOptional<z.ZodString>;
544
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
545
+ };
546
+ response: z.ZodObject<{
547
+ previousPageCursor: z.ZodOptional<z.ZodString>;
548
+ nextPageCursor: z.ZodOptional<z.ZodString>;
549
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
550
+ isOnline: z.ZodOptional<z.ZodBoolean>;
551
+ presenceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
552
+ isDeleted: z.ZodOptional<z.ZodBoolean>;
553
+ friendFrequentScore: z.ZodOptional<z.ZodNumber>;
554
+ friendFrequentRank: z.ZodOptional<z.ZodNumber>;
555
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
556
+ description: z.ZodOptional<z.ZodString>;
557
+ created: z.ZodOptional<z.ZodString>;
558
+ isBanned: z.ZodOptional<z.ZodBoolean>;
559
+ externalAppDisplayName: z.ZodOptional<z.ZodString>;
560
+ id: z.ZodOptional<z.ZodNumber>;
561
+ name: z.ZodOptional<z.ZodString>;
562
+ displayName: z.ZodOptional<z.ZodString>;
563
+ }, "strip", z.ZodTypeAny, {
564
+ isOnline?: boolean | undefined;
565
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
566
+ isDeleted?: boolean | undefined;
567
+ friendFrequentScore?: number | undefined;
568
+ friendFrequentRank?: number | undefined;
569
+ hasVerifiedBadge?: boolean | undefined;
570
+ description?: string | undefined;
571
+ created?: string | undefined;
572
+ isBanned?: boolean | undefined;
573
+ externalAppDisplayName?: string | undefined;
574
+ id?: number | undefined;
575
+ name?: string | undefined;
576
+ displayName?: string | undefined;
577
+ }, {
578
+ isOnline?: boolean | undefined;
579
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
580
+ isDeleted?: boolean | undefined;
581
+ friendFrequentScore?: number | undefined;
582
+ friendFrequentRank?: number | undefined;
583
+ hasVerifiedBadge?: boolean | undefined;
584
+ description?: string | undefined;
585
+ created?: string | undefined;
586
+ isBanned?: boolean | undefined;
587
+ externalAppDisplayName?: string | undefined;
588
+ id?: number | undefined;
589
+ name?: string | undefined;
590
+ displayName?: string | undefined;
591
+ }>, "many">>;
592
+ }, "strip", z.ZodTypeAny, {
593
+ previousPageCursor?: string | undefined;
594
+ nextPageCursor?: string | undefined;
595
+ data?: {
596
+ isOnline?: boolean | undefined;
597
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
598
+ isDeleted?: boolean | undefined;
599
+ friendFrequentScore?: number | undefined;
600
+ friendFrequentRank?: number | undefined;
601
+ hasVerifiedBadge?: boolean | undefined;
602
+ description?: string | undefined;
603
+ created?: string | undefined;
604
+ isBanned?: boolean | undefined;
605
+ externalAppDisplayName?: string | undefined;
606
+ id?: number | undefined;
607
+ name?: string | undefined;
608
+ displayName?: string | undefined;
609
+ }[] | undefined;
610
+ }, {
611
+ previousPageCursor?: string | undefined;
612
+ nextPageCursor?: string | undefined;
613
+ data?: {
614
+ isOnline?: boolean | undefined;
615
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
616
+ isDeleted?: boolean | undefined;
617
+ friendFrequentScore?: number | undefined;
618
+ friendFrequentRank?: number | undefined;
619
+ hasVerifiedBadge?: boolean | undefined;
620
+ description?: string | undefined;
621
+ created?: string | undefined;
622
+ isBanned?: boolean | undefined;
623
+ externalAppDisplayName?: string | undefined;
624
+ id?: number | undefined;
625
+ name?: string | undefined;
626
+ displayName?: string | undefined;
627
+ }[] | undefined;
628
+ }>;
629
+ errors: {
630
+ status: number;
631
+ description: string;
632
+ schema: z.ZodVoid;
633
+ }[];
634
+ };
635
+ export declare const getV1usersTargetUserIdfollowingscount: {
636
+ method: "get";
637
+ path: string;
638
+ baseUrl: string;
639
+ requestFormat: "json";
640
+ parameters: {
641
+ targetUserId: z.ZodNumber;
642
+ };
643
+ response: z.ZodObject<{
644
+ count: z.ZodOptional<z.ZodNumber>;
645
+ }, "strip", z.ZodTypeAny, {
646
+ count?: number | undefined;
647
+ }, {
648
+ count?: number | undefined;
649
+ }>;
650
+ errors: {
651
+ status: number;
652
+ description: string;
653
+ schema: z.ZodVoid;
654
+ }[];
655
+ };
656
+ export declare const postV1usersTargetUserIdfollowingsrecount: {
657
+ method: "post";
658
+ path: string;
659
+ baseUrl: string;
660
+ requestFormat: "json";
661
+ parameters: {
662
+ targetUserId: z.ZodNumber;
663
+ };
664
+ response: z.ZodObject<{
665
+ existingCount: z.ZodOptional<z.ZodNumber>;
666
+ computedCount: z.ZodOptional<z.ZodNumber>;
667
+ updated: z.ZodOptional<z.ZodBoolean>;
668
+ }, "strip", z.ZodTypeAny, {
669
+ existingCount?: number | undefined;
670
+ computedCount?: number | undefined;
671
+ updated?: boolean | undefined;
672
+ }, {
673
+ existingCount?: number | undefined;
674
+ computedCount?: number | undefined;
675
+ updated?: boolean | undefined;
676
+ }>;
677
+ errors: {
678
+ status: number;
679
+ description: string;
680
+ schema: z.ZodVoid;
681
+ }[];
682
+ };
683
+ export declare const postV1usersTargetUserIdrequestFriendship: {
684
+ method: "post";
685
+ path: string;
686
+ baseUrl: string;
687
+ requestFormat: "json";
688
+ parameters: {
689
+ body: z.ZodObject<{
690
+ friendshipOriginSourceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>]>>;
691
+ }, "strip", z.ZodTypeAny, {
692
+ friendshipOriginSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
693
+ }, {
694
+ friendshipOriginSourceType?: 0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | undefined;
695
+ }>;
696
+ targetUserId: z.ZodNumber;
697
+ };
698
+ response: z.ZodObject<{
699
+ success: z.ZodOptional<z.ZodBoolean>;
700
+ isCaptchaRequired: z.ZodOptional<z.ZodBoolean>;
701
+ }, "strip", z.ZodTypeAny, {
702
+ success?: boolean | undefined;
703
+ isCaptchaRequired?: boolean | undefined;
704
+ }, {
705
+ success?: boolean | undefined;
706
+ isCaptchaRequired?: boolean | undefined;
707
+ }>;
708
+ errors: {
709
+ status: number;
710
+ description: string;
711
+ schema: z.ZodVoid;
712
+ }[];
713
+ };
714
+ export declare const postV1usersTargetUserIdunfollow: {
715
+ method: "post";
716
+ path: string;
717
+ baseUrl: string;
718
+ requestFormat: "json";
719
+ parameters: {
720
+ targetUserId: z.ZodNumber;
721
+ };
722
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
723
+ errors: {
724
+ status: number;
725
+ description: string;
726
+ schema: z.ZodVoid;
727
+ }[];
728
+ };
729
+ export declare const postV1usersTargetUserIdunfriend: {
730
+ method: "post";
731
+ path: string;
732
+ baseUrl: string;
733
+ requestFormat: "json";
734
+ parameters: {
735
+ targetUserId: z.ZodNumber;
736
+ };
737
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
738
+ errors: {
739
+ status: number;
740
+ description: string;
741
+ schema: z.ZodVoid;
742
+ }[];
743
+ };
744
+ export declare const getV1usersUserIdfriends: {
745
+ method: "get";
746
+ path: string;
747
+ baseUrl: string;
748
+ requestFormat: "json";
749
+ parameters: {
750
+ userId: z.ZodNumber;
751
+ userSort: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
752
+ };
753
+ response: z.ZodObject<{
754
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
755
+ isOnline: z.ZodOptional<z.ZodBoolean>;
756
+ presenceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
757
+ isDeleted: z.ZodOptional<z.ZodBoolean>;
758
+ friendFrequentScore: z.ZodOptional<z.ZodNumber>;
759
+ friendFrequentRank: z.ZodOptional<z.ZodNumber>;
760
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
761
+ description: z.ZodOptional<z.ZodString>;
762
+ created: z.ZodOptional<z.ZodString>;
763
+ isBanned: z.ZodOptional<z.ZodBoolean>;
764
+ externalAppDisplayName: z.ZodOptional<z.ZodString>;
765
+ id: z.ZodOptional<z.ZodNumber>;
766
+ name: z.ZodOptional<z.ZodString>;
767
+ displayName: z.ZodOptional<z.ZodString>;
768
+ }, "strip", z.ZodTypeAny, {
769
+ isOnline?: boolean | undefined;
770
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
771
+ isDeleted?: boolean | undefined;
772
+ friendFrequentScore?: number | undefined;
773
+ friendFrequentRank?: number | undefined;
774
+ hasVerifiedBadge?: boolean | undefined;
775
+ description?: string | undefined;
776
+ created?: string | undefined;
777
+ isBanned?: boolean | undefined;
778
+ externalAppDisplayName?: string | undefined;
779
+ id?: number | undefined;
780
+ name?: string | undefined;
781
+ displayName?: string | undefined;
782
+ }, {
783
+ isOnline?: boolean | undefined;
784
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
785
+ isDeleted?: boolean | undefined;
786
+ friendFrequentScore?: number | undefined;
787
+ friendFrequentRank?: number | undefined;
788
+ hasVerifiedBadge?: boolean | undefined;
789
+ description?: string | undefined;
790
+ created?: string | undefined;
791
+ isBanned?: boolean | undefined;
792
+ externalAppDisplayName?: string | undefined;
793
+ id?: number | undefined;
794
+ name?: string | undefined;
795
+ displayName?: string | undefined;
796
+ }>, "many">>;
797
+ }, "strip", z.ZodTypeAny, {
798
+ data?: {
799
+ isOnline?: boolean | undefined;
800
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
801
+ isDeleted?: boolean | undefined;
802
+ friendFrequentScore?: number | undefined;
803
+ friendFrequentRank?: number | undefined;
804
+ hasVerifiedBadge?: boolean | undefined;
805
+ description?: string | undefined;
806
+ created?: string | undefined;
807
+ isBanned?: boolean | undefined;
808
+ externalAppDisplayName?: string | undefined;
809
+ id?: number | undefined;
810
+ name?: string | undefined;
811
+ displayName?: string | undefined;
812
+ }[] | undefined;
813
+ }, {
814
+ data?: {
815
+ isOnline?: boolean | undefined;
816
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
817
+ isDeleted?: boolean | undefined;
818
+ friendFrequentScore?: number | undefined;
819
+ friendFrequentRank?: number | undefined;
820
+ hasVerifiedBadge?: boolean | undefined;
821
+ description?: string | undefined;
822
+ created?: string | undefined;
823
+ isBanned?: boolean | undefined;
824
+ externalAppDisplayName?: string | undefined;
825
+ id?: number | undefined;
826
+ name?: string | undefined;
827
+ displayName?: string | undefined;
828
+ }[] | undefined;
829
+ }>;
830
+ errors: {
831
+ status: number;
832
+ description: string;
833
+ schema: z.ZodVoid;
834
+ }[];
835
+ };
836
+ export declare const getV1usersUserIdfriendscount: {
837
+ method: "get";
838
+ path: string;
839
+ baseUrl: string;
840
+ requestFormat: "json";
841
+ parameters: {
842
+ userId: z.ZodNumber;
843
+ };
844
+ response: z.ZodObject<{
845
+ count: z.ZodOptional<z.ZodNumber>;
846
+ }, "strip", z.ZodTypeAny, {
847
+ count?: number | undefined;
848
+ }, {
849
+ count?: number | undefined;
850
+ }>;
851
+ errors: {
852
+ status: number;
853
+ description: string;
854
+ schema: z.ZodVoid;
855
+ }[];
856
+ };
857
+ export declare const getV1usersUserIdfriendsinactive: {
858
+ method: "get";
859
+ path: string;
860
+ baseUrl: string;
861
+ requestFormat: "json";
862
+ parameters: {
863
+ userId: z.ZodNumber;
864
+ };
865
+ response: z.ZodObject<{
866
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
867
+ isOnline: z.ZodOptional<z.ZodBoolean>;
868
+ presenceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
869
+ isDeleted: z.ZodOptional<z.ZodBoolean>;
870
+ friendFrequentScore: z.ZodOptional<z.ZodNumber>;
871
+ friendFrequentRank: z.ZodOptional<z.ZodNumber>;
872
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
873
+ description: z.ZodOptional<z.ZodString>;
874
+ created: z.ZodOptional<z.ZodString>;
875
+ isBanned: z.ZodOptional<z.ZodBoolean>;
876
+ externalAppDisplayName: z.ZodOptional<z.ZodString>;
877
+ id: z.ZodOptional<z.ZodNumber>;
878
+ name: z.ZodOptional<z.ZodString>;
879
+ displayName: z.ZodOptional<z.ZodString>;
880
+ }, "strip", z.ZodTypeAny, {
881
+ isOnline?: boolean | undefined;
882
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
883
+ isDeleted?: boolean | undefined;
884
+ friendFrequentScore?: number | undefined;
885
+ friendFrequentRank?: number | undefined;
886
+ hasVerifiedBadge?: boolean | undefined;
887
+ description?: string | undefined;
888
+ created?: string | undefined;
889
+ isBanned?: boolean | undefined;
890
+ externalAppDisplayName?: string | undefined;
891
+ id?: number | undefined;
892
+ name?: string | undefined;
893
+ displayName?: string | undefined;
894
+ }, {
895
+ isOnline?: boolean | undefined;
896
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
897
+ isDeleted?: boolean | undefined;
898
+ friendFrequentScore?: number | undefined;
899
+ friendFrequentRank?: number | undefined;
900
+ hasVerifiedBadge?: boolean | undefined;
901
+ description?: string | undefined;
902
+ created?: string | undefined;
903
+ isBanned?: boolean | undefined;
904
+ externalAppDisplayName?: string | undefined;
905
+ id?: number | undefined;
906
+ name?: string | undefined;
907
+ displayName?: string | undefined;
908
+ }>, "many">>;
909
+ }, "strip", z.ZodTypeAny, {
910
+ data?: {
911
+ isOnline?: boolean | undefined;
912
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
913
+ isDeleted?: boolean | undefined;
914
+ friendFrequentScore?: number | undefined;
915
+ friendFrequentRank?: number | undefined;
916
+ hasVerifiedBadge?: boolean | undefined;
917
+ description?: string | undefined;
918
+ created?: string | undefined;
919
+ isBanned?: boolean | undefined;
920
+ externalAppDisplayName?: string | undefined;
921
+ id?: number | undefined;
922
+ name?: string | undefined;
923
+ displayName?: string | undefined;
924
+ }[] | undefined;
925
+ }, {
926
+ data?: {
927
+ isOnline?: boolean | undefined;
928
+ presenceType?: 0 | 2 | 1 | 3 | undefined;
929
+ isDeleted?: boolean | undefined;
930
+ friendFrequentScore?: number | undefined;
931
+ friendFrequentRank?: number | undefined;
932
+ hasVerifiedBadge?: boolean | undefined;
933
+ description?: string | undefined;
934
+ created?: string | undefined;
935
+ isBanned?: boolean | undefined;
936
+ externalAppDisplayName?: string | undefined;
937
+ id?: number | undefined;
938
+ name?: string | undefined;
939
+ displayName?: string | undefined;
940
+ }[] | undefined;
941
+ }>;
942
+ errors: {
943
+ status: number;
944
+ description: string;
945
+ schema: z.ZodVoid;
946
+ }[];
947
+ };
948
+ export declare const getV1usersUserIdfriendsonline: {
949
+ method: "get";
950
+ path: string;
951
+ baseUrl: string;
952
+ requestFormat: "json";
953
+ parameters: {
954
+ userId: z.ZodNumber;
955
+ };
956
+ response: z.ZodObject<{
957
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
958
+ userPresence: z.ZodOptional<z.ZodObject<{
959
+ UserPresenceType: z.ZodOptional<z.ZodString>;
960
+ UserLocationType: z.ZodOptional<z.ZodString>;
961
+ lastLocation: z.ZodOptional<z.ZodString>;
962
+ placeId: z.ZodOptional<z.ZodNumber>;
963
+ rootPlaceId: z.ZodOptional<z.ZodNumber>;
964
+ gameInstanceId: z.ZodOptional<z.ZodString>;
965
+ universeId: z.ZodOptional<z.ZodNumber>;
966
+ lastOnline: z.ZodOptional<z.ZodString>;
967
+ }, "strip", z.ZodTypeAny, {
968
+ UserPresenceType?: string | undefined;
969
+ UserLocationType?: string | undefined;
970
+ lastLocation?: string | undefined;
971
+ placeId?: number | undefined;
972
+ rootPlaceId?: number | undefined;
973
+ gameInstanceId?: string | undefined;
974
+ universeId?: number | undefined;
975
+ lastOnline?: string | undefined;
976
+ }, {
977
+ UserPresenceType?: string | undefined;
978
+ UserLocationType?: string | undefined;
979
+ lastLocation?: string | undefined;
980
+ placeId?: number | undefined;
981
+ rootPlaceId?: number | undefined;
982
+ gameInstanceId?: string | undefined;
983
+ universeId?: number | undefined;
984
+ lastOnline?: string | undefined;
985
+ }>>;
986
+ id: z.ZodOptional<z.ZodNumber>;
987
+ name: z.ZodOptional<z.ZodString>;
988
+ displayName: z.ZodOptional<z.ZodString>;
989
+ }, "strip", z.ZodTypeAny, {
990
+ userPresence?: {
991
+ UserPresenceType?: string | undefined;
992
+ UserLocationType?: string | undefined;
993
+ lastLocation?: string | undefined;
994
+ placeId?: number | undefined;
995
+ rootPlaceId?: number | undefined;
996
+ gameInstanceId?: string | undefined;
997
+ universeId?: number | undefined;
998
+ lastOnline?: string | undefined;
999
+ } | undefined;
1000
+ id?: number | undefined;
1001
+ name?: string | undefined;
1002
+ displayName?: string | undefined;
1003
+ }, {
1004
+ userPresence?: {
1005
+ UserPresenceType?: string | undefined;
1006
+ UserLocationType?: string | undefined;
1007
+ lastLocation?: string | undefined;
1008
+ placeId?: number | undefined;
1009
+ rootPlaceId?: number | undefined;
1010
+ gameInstanceId?: string | undefined;
1011
+ universeId?: number | undefined;
1012
+ lastOnline?: string | undefined;
1013
+ } | undefined;
1014
+ id?: number | undefined;
1015
+ name?: string | undefined;
1016
+ displayName?: string | undefined;
1017
+ }>, "many">>;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ data?: {
1020
+ userPresence?: {
1021
+ UserPresenceType?: string | undefined;
1022
+ UserLocationType?: string | undefined;
1023
+ lastLocation?: string | undefined;
1024
+ placeId?: number | undefined;
1025
+ rootPlaceId?: number | undefined;
1026
+ gameInstanceId?: string | undefined;
1027
+ universeId?: number | undefined;
1028
+ lastOnline?: string | undefined;
1029
+ } | undefined;
1030
+ id?: number | undefined;
1031
+ name?: string | undefined;
1032
+ displayName?: string | undefined;
1033
+ }[] | undefined;
1034
+ }, {
1035
+ data?: {
1036
+ userPresence?: {
1037
+ UserPresenceType?: string | undefined;
1038
+ UserLocationType?: string | undefined;
1039
+ lastLocation?: string | undefined;
1040
+ placeId?: number | undefined;
1041
+ rootPlaceId?: number | undefined;
1042
+ gameInstanceId?: string | undefined;
1043
+ universeId?: number | undefined;
1044
+ lastOnline?: string | undefined;
1045
+ } | undefined;
1046
+ id?: number | undefined;
1047
+ name?: string | undefined;
1048
+ displayName?: string | undefined;
1049
+ }[] | undefined;
1050
+ }>;
1051
+ errors: {
1052
+ status: number;
1053
+ description: string;
1054
+ schema: z.ZodVoid;
1055
+ }[];
1056
+ };
1057
+ export declare const getV1usersUserIdfriendsstatuses: {
1058
+ method: "get";
1059
+ path: string;
1060
+ baseUrl: string;
1061
+ requestFormat: "json";
1062
+ parameters: {
1063
+ userId: z.ZodNumber;
1064
+ userIds: z.ZodArray<z.ZodNumber, "many">;
1065
+ };
1066
+ response: z.ZodObject<{
1067
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
1068
+ id: z.ZodOptional<z.ZodNumber>;
1069
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
1070
+ }, "strip", z.ZodTypeAny, {
1071
+ id?: number | undefined;
1072
+ status?: 0 | 2 | 1 | 3 | undefined;
1073
+ }, {
1074
+ id?: number | undefined;
1075
+ status?: 0 | 2 | 1 | 3 | undefined;
1076
+ }>, "many">>;
1077
+ }, "strip", z.ZodTypeAny, {
1078
+ data?: {
1079
+ id?: number | undefined;
1080
+ status?: 0 | 2 | 1 | 3 | undefined;
1081
+ }[] | undefined;
1082
+ }, {
1083
+ data?: {
1084
+ id?: number | undefined;
1085
+ status?: 0 | 2 | 1 | 3 | undefined;
1086
+ }[] | undefined;
1087
+ }>;
1088
+ errors: {
1089
+ status: number;
1090
+ description: string;
1091
+ schema: z.ZodVoid;
1092
+ }[];
1093
+ };