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,551 @@
1
+ import { z } from 'zod';
2
+ export declare const getV1birthdate: {
3
+ method: "get";
4
+ path: string;
5
+ baseUrl: string;
6
+ requestFormat: "json";
7
+ response: z.ZodObject<{
8
+ birthMonth: z.ZodOptional<z.ZodNumber>;
9
+ birthDay: z.ZodOptional<z.ZodNumber>;
10
+ birthYear: z.ZodOptional<z.ZodNumber>;
11
+ }, "strip", z.ZodTypeAny, {
12
+ birthMonth?: number | undefined;
13
+ birthDay?: number | undefined;
14
+ birthYear?: number | undefined;
15
+ }, {
16
+ birthMonth?: number | undefined;
17
+ birthDay?: number | undefined;
18
+ birthYear?: number | undefined;
19
+ }>;
20
+ errors: {
21
+ status: number;
22
+ description: string;
23
+ schema: z.ZodVoid;
24
+ }[];
25
+ };
26
+ export declare const postV1birthdate: {
27
+ method: "post";
28
+ path: string;
29
+ baseUrl: string;
30
+ requestFormat: "json";
31
+ parameters: {
32
+ body: z.ZodObject<{
33
+ birthMonth: z.ZodOptional<z.ZodNumber>;
34
+ birthDay: z.ZodOptional<z.ZodNumber>;
35
+ birthYear: z.ZodOptional<z.ZodNumber>;
36
+ password: z.ZodOptional<z.ZodString>;
37
+ }, "strip", z.ZodTypeAny, {
38
+ birthMonth?: number | undefined;
39
+ birthDay?: number | undefined;
40
+ birthYear?: number | undefined;
41
+ password?: string | undefined;
42
+ }, {
43
+ birthMonth?: number | undefined;
44
+ birthDay?: number | undefined;
45
+ birthYear?: number | undefined;
46
+ password?: string | undefined;
47
+ }>;
48
+ };
49
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
50
+ errors: {
51
+ status: number;
52
+ description: string;
53
+ schema: z.ZodVoid;
54
+ }[];
55
+ };
56
+ export declare const getV1description: {
57
+ method: "get";
58
+ path: string;
59
+ baseUrl: string;
60
+ requestFormat: "json";
61
+ response: z.ZodObject<{
62
+ description: z.ZodOptional<z.ZodString>;
63
+ }, "strip", z.ZodTypeAny, {
64
+ description?: string | undefined;
65
+ }, {
66
+ description?: string | undefined;
67
+ }>;
68
+ errors: {
69
+ status: number;
70
+ description: string;
71
+ schema: z.ZodVoid;
72
+ }[];
73
+ };
74
+ export declare const postV1description: {
75
+ method: "post";
76
+ path: string;
77
+ baseUrl: string;
78
+ requestFormat: "json";
79
+ parameters: {
80
+ body: z.ZodObject<{
81
+ description: z.ZodOptional<z.ZodString>;
82
+ }, "strip", z.ZodTypeAny, {
83
+ description?: string | undefined;
84
+ }, {
85
+ description?: string | undefined;
86
+ }>;
87
+ };
88
+ response: z.ZodObject<{
89
+ description: z.ZodOptional<z.ZodString>;
90
+ }, "strip", z.ZodTypeAny, {
91
+ description?: string | undefined;
92
+ }, {
93
+ description?: string | undefined;
94
+ }>;
95
+ errors: {
96
+ status: number;
97
+ description: string;
98
+ schema: z.ZodVoid;
99
+ }[];
100
+ };
101
+ export declare const postV1emailverify: {
102
+ method: "post";
103
+ path: string;
104
+ baseUrl: string;
105
+ requestFormat: "json";
106
+ parameters: {
107
+ body: z.ZodObject<{
108
+ ticket: z.ZodOptional<z.ZodString>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ ticket?: string | undefined;
111
+ }, {
112
+ ticket?: string | undefined;
113
+ }>;
114
+ };
115
+ response: z.ZodObject<{
116
+ verifiedUserHatAssetId: z.ZodOptional<z.ZodNumber>;
117
+ }, "strip", z.ZodTypeAny, {
118
+ verifiedUserHatAssetId?: number | undefined;
119
+ }, {
120
+ verifiedUserHatAssetId?: number | undefined;
121
+ }>;
122
+ errors: {
123
+ status: number;
124
+ description: string;
125
+ schema: z.ZodVoid;
126
+ }[];
127
+ };
128
+ export declare const getV1gender: {
129
+ method: "get";
130
+ path: string;
131
+ baseUrl: string;
132
+ requestFormat: "json";
133
+ response: z.ZodObject<{
134
+ gender: z.ZodOptional<z.ZodNumber>;
135
+ }, "strip", z.ZodTypeAny, {
136
+ gender?: number | undefined;
137
+ }, {
138
+ gender?: number | undefined;
139
+ }>;
140
+ errors: {
141
+ status: number;
142
+ description: string;
143
+ schema: z.ZodVoid;
144
+ }[];
145
+ };
146
+ export declare const postV1gender: {
147
+ method: "post";
148
+ path: string;
149
+ baseUrl: string;
150
+ requestFormat: "json";
151
+ parameters: {
152
+ body: z.ZodObject<{
153
+ gender: z.ZodOptional<z.ZodString>;
154
+ }, "strip", z.ZodTypeAny, {
155
+ gender?: string | undefined;
156
+ }, {
157
+ gender?: string | undefined;
158
+ }>;
159
+ };
160
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
161
+ errors: {
162
+ status: number;
163
+ description: string;
164
+ schema: z.ZodVoid;
165
+ }[];
166
+ };
167
+ export declare const getV1metadata: {
168
+ method: "get";
169
+ path: string;
170
+ baseUrl: string;
171
+ requestFormat: "json";
172
+ response: z.ZodObject<{
173
+ isAllowedNotificationsEndpointDisabled: z.ZodOptional<z.ZodBoolean>;
174
+ isAccountSettingsPolicyEnabled: z.ZodOptional<z.ZodBoolean>;
175
+ isPhoneNumberEnabled: z.ZodOptional<z.ZodBoolean>;
176
+ MaxUserDescriptionLength: z.ZodOptional<z.ZodNumber>;
177
+ isUserDescriptionEnabled: z.ZodOptional<z.ZodBoolean>;
178
+ isUserBlockEndpointsUpdated: z.ZodOptional<z.ZodBoolean>;
179
+ isPasswordRequiredForAgingDown: z.ZodOptional<z.ZodBoolean>;
180
+ shouldUsePersonaForIdVerification: z.ZodOptional<z.ZodBoolean>;
181
+ shouldDisplaySessionManagement: z.ZodOptional<z.ZodBoolean>;
182
+ shouldUseSecurityReactUI: z.ZodOptional<z.ZodBoolean>;
183
+ }, "strip", z.ZodTypeAny, {
184
+ isAllowedNotificationsEndpointDisabled?: boolean | undefined;
185
+ isAccountSettingsPolicyEnabled?: boolean | undefined;
186
+ isPhoneNumberEnabled?: boolean | undefined;
187
+ MaxUserDescriptionLength?: number | undefined;
188
+ isUserDescriptionEnabled?: boolean | undefined;
189
+ isUserBlockEndpointsUpdated?: boolean | undefined;
190
+ isPasswordRequiredForAgingDown?: boolean | undefined;
191
+ shouldUsePersonaForIdVerification?: boolean | undefined;
192
+ shouldDisplaySessionManagement?: boolean | undefined;
193
+ shouldUseSecurityReactUI?: boolean | undefined;
194
+ }, {
195
+ isAllowedNotificationsEndpointDisabled?: boolean | undefined;
196
+ isAccountSettingsPolicyEnabled?: boolean | undefined;
197
+ isPhoneNumberEnabled?: boolean | undefined;
198
+ MaxUserDescriptionLength?: number | undefined;
199
+ isUserDescriptionEnabled?: boolean | undefined;
200
+ isUserBlockEndpointsUpdated?: boolean | undefined;
201
+ isPasswordRequiredForAgingDown?: boolean | undefined;
202
+ shouldUsePersonaForIdVerification?: boolean | undefined;
203
+ shouldDisplaySessionManagement?: boolean | undefined;
204
+ shouldUseSecurityReactUI?: boolean | undefined;
205
+ }>;
206
+ errors: never[];
207
+ };
208
+ export declare const getV1phone: {
209
+ method: "get";
210
+ path: string;
211
+ baseUrl: string;
212
+ requestFormat: "json";
213
+ response: z.ZodObject<{
214
+ countryCode: z.ZodOptional<z.ZodString>;
215
+ prefix: z.ZodOptional<z.ZodString>;
216
+ phone: z.ZodOptional<z.ZodString>;
217
+ isVerified: z.ZodOptional<z.ZodBoolean>;
218
+ verificationCodeLength: z.ZodOptional<z.ZodNumber>;
219
+ canBypassPasswordForPhoneUpdate: z.ZodOptional<z.ZodBoolean>;
220
+ }, "strip", z.ZodTypeAny, {
221
+ countryCode?: string | undefined;
222
+ prefix?: string | undefined;
223
+ phone?: string | undefined;
224
+ isVerified?: boolean | undefined;
225
+ verificationCodeLength?: number | undefined;
226
+ canBypassPasswordForPhoneUpdate?: boolean | undefined;
227
+ }, {
228
+ countryCode?: string | undefined;
229
+ prefix?: string | undefined;
230
+ phone?: string | undefined;
231
+ isVerified?: boolean | undefined;
232
+ verificationCodeLength?: number | undefined;
233
+ canBypassPasswordForPhoneUpdate?: boolean | undefined;
234
+ }>;
235
+ errors: {
236
+ status: number;
237
+ description: string;
238
+ schema: z.ZodVoid;
239
+ }[];
240
+ };
241
+ export declare const postV1phone: {
242
+ method: "post";
243
+ path: string;
244
+ baseUrl: string;
245
+ requestFormat: "json";
246
+ parameters: {
247
+ body: z.ZodObject<{
248
+ countryCode: z.ZodOptional<z.ZodString>;
249
+ prefix: z.ZodOptional<z.ZodString>;
250
+ phone: z.ZodOptional<z.ZodString>;
251
+ password: z.ZodOptional<z.ZodString>;
252
+ }, "strip", z.ZodTypeAny, {
253
+ countryCode?: string | undefined;
254
+ prefix?: string | undefined;
255
+ phone?: string | undefined;
256
+ password?: string | undefined;
257
+ }, {
258
+ countryCode?: string | undefined;
259
+ prefix?: string | undefined;
260
+ phone?: string | undefined;
261
+ password?: string | undefined;
262
+ }>;
263
+ };
264
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
265
+ errors: {
266
+ status: number;
267
+ description: string;
268
+ schema: z.ZodVoid;
269
+ }[];
270
+ };
271
+ export declare const postV1phonedelete: {
272
+ method: "post";
273
+ path: string;
274
+ baseUrl: string;
275
+ requestFormat: "json";
276
+ parameters: {
277
+ body: z.ZodObject<{
278
+ countryCode: z.ZodOptional<z.ZodString>;
279
+ prefix: z.ZodOptional<z.ZodString>;
280
+ phone: z.ZodOptional<z.ZodString>;
281
+ password: z.ZodOptional<z.ZodString>;
282
+ }, "strip", z.ZodTypeAny, {
283
+ countryCode?: string | undefined;
284
+ prefix?: string | undefined;
285
+ phone?: string | undefined;
286
+ password?: string | undefined;
287
+ }, {
288
+ countryCode?: string | undefined;
289
+ prefix?: string | undefined;
290
+ phone?: string | undefined;
291
+ password?: string | undefined;
292
+ }>;
293
+ };
294
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
295
+ errors: {
296
+ status: number;
297
+ description: string;
298
+ schema: z.ZodVoid;
299
+ }[];
300
+ };
301
+ export declare const postV1phoneresend: {
302
+ method: "post";
303
+ path: string;
304
+ baseUrl: string;
305
+ requestFormat: "json";
306
+ parameters: {
307
+ body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
308
+ };
309
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
310
+ errors: {
311
+ status: number;
312
+ description: string;
313
+ schema: z.ZodVoid;
314
+ }[];
315
+ };
316
+ export declare const postV1phoneverify: {
317
+ method: "post";
318
+ path: string;
319
+ baseUrl: string;
320
+ requestFormat: "json";
321
+ parameters: {
322
+ body: z.ZodObject<{
323
+ code: z.ZodOptional<z.ZodString>;
324
+ }, "strip", z.ZodTypeAny, {
325
+ code?: string | undefined;
326
+ }, {
327
+ code?: string | undefined;
328
+ }>;
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 getV1promotionChannels: {
338
+ method: "get";
339
+ path: string;
340
+ baseUrl: string;
341
+ requestFormat: "json";
342
+ response: z.ZodObject<{
343
+ promotionChannelsVisibilityPrivacy: z.ZodOptional<z.ZodString>;
344
+ facebook: z.ZodOptional<z.ZodString>;
345
+ twitter: z.ZodOptional<z.ZodString>;
346
+ youtube: z.ZodOptional<z.ZodString>;
347
+ twitch: z.ZodOptional<z.ZodString>;
348
+ guilded: z.ZodOptional<z.ZodString>;
349
+ }, "strip", z.ZodTypeAny, {
350
+ promotionChannelsVisibilityPrivacy?: string | undefined;
351
+ facebook?: string | undefined;
352
+ twitter?: string | undefined;
353
+ youtube?: string | undefined;
354
+ twitch?: string | undefined;
355
+ guilded?: string | undefined;
356
+ }, {
357
+ promotionChannelsVisibilityPrivacy?: string | undefined;
358
+ facebook?: string | undefined;
359
+ twitter?: string | undefined;
360
+ youtube?: string | undefined;
361
+ twitch?: string | undefined;
362
+ guilded?: string | undefined;
363
+ }>;
364
+ errors: {
365
+ status: number;
366
+ description: string;
367
+ schema: z.ZodVoid;
368
+ }[];
369
+ };
370
+ export declare const postV1promotionChannels: {
371
+ method: "post";
372
+ path: string;
373
+ baseUrl: string;
374
+ requestFormat: "json";
375
+ parameters: {
376
+ body: z.ZodObject<{
377
+ facebook: z.ZodOptional<z.ZodString>;
378
+ twitter: z.ZodOptional<z.ZodString>;
379
+ youtube: z.ZodOptional<z.ZodString>;
380
+ twitch: z.ZodOptional<z.ZodString>;
381
+ guilded: z.ZodOptional<z.ZodString>;
382
+ promotionChannelsVisibilityPrivacy: z.ZodOptional<z.ZodString>;
383
+ }, "strip", z.ZodTypeAny, {
384
+ facebook?: string | undefined;
385
+ twitter?: string | undefined;
386
+ youtube?: string | undefined;
387
+ twitch?: string | undefined;
388
+ guilded?: string | undefined;
389
+ promotionChannelsVisibilityPrivacy?: string | undefined;
390
+ }, {
391
+ facebook?: string | undefined;
392
+ twitter?: string | undefined;
393
+ youtube?: string | undefined;
394
+ twitch?: string | undefined;
395
+ guilded?: string | undefined;
396
+ promotionChannelsVisibilityPrivacy?: string | undefined;
397
+ }>;
398
+ };
399
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
400
+ errors: {
401
+ status: number;
402
+ description: string;
403
+ schema: z.ZodVoid;
404
+ }[];
405
+ };
406
+ export declare const deleteV1starCodeAffiliates: {
407
+ method: "delete";
408
+ path: string;
409
+ baseUrl: string;
410
+ requestFormat: "json";
411
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
412
+ errors: {
413
+ status: number;
414
+ description: string;
415
+ schema: z.ZodVoid;
416
+ }[];
417
+ };
418
+ export declare const getV1starCodeAffiliates: {
419
+ method: "get";
420
+ path: string;
421
+ baseUrl: string;
422
+ requestFormat: "json";
423
+ response: z.ZodObject<{
424
+ userId: z.ZodOptional<z.ZodNumber>;
425
+ name: z.ZodOptional<z.ZodString>;
426
+ code: z.ZodOptional<z.ZodString>;
427
+ }, "strip", z.ZodTypeAny, {
428
+ userId?: number | undefined;
429
+ name?: string | undefined;
430
+ code?: string | undefined;
431
+ }, {
432
+ userId?: number | undefined;
433
+ name?: string | undefined;
434
+ code?: string | undefined;
435
+ }>;
436
+ errors: {
437
+ status: number;
438
+ description: string;
439
+ schema: z.ZodVoid;
440
+ }[];
441
+ };
442
+ export declare const postV1starCodeAffiliates: {
443
+ method: "post";
444
+ path: string;
445
+ baseUrl: string;
446
+ requestFormat: "json";
447
+ parameters: {
448
+ body: z.ZodObject<{
449
+ code: z.ZodOptional<z.ZodString>;
450
+ }, "strip", z.ZodTypeAny, {
451
+ code?: string | undefined;
452
+ }, {
453
+ code?: string | undefined;
454
+ }>;
455
+ };
456
+ response: z.ZodObject<{
457
+ userId: z.ZodOptional<z.ZodNumber>;
458
+ name: z.ZodOptional<z.ZodString>;
459
+ code: z.ZodOptional<z.ZodString>;
460
+ }, "strip", z.ZodTypeAny, {
461
+ userId?: number | undefined;
462
+ name?: string | undefined;
463
+ code?: string | undefined;
464
+ }, {
465
+ userId?: number | undefined;
466
+ name?: string | undefined;
467
+ code?: string | undefined;
468
+ }>;
469
+ errors: {
470
+ status: number;
471
+ description: string;
472
+ schema: z.ZodVoid;
473
+ }[];
474
+ };
475
+ export declare const getV1usersUserIdpromotionChannels: {
476
+ method: "get";
477
+ path: string;
478
+ baseUrl: string;
479
+ requestFormat: "json";
480
+ parameters: {
481
+ userId: z.ZodNumber;
482
+ };
483
+ response: z.ZodObject<{
484
+ facebook: z.ZodOptional<z.ZodString>;
485
+ twitter: z.ZodOptional<z.ZodString>;
486
+ youtube: z.ZodOptional<z.ZodString>;
487
+ twitch: z.ZodOptional<z.ZodString>;
488
+ guilded: z.ZodOptional<z.ZodString>;
489
+ }, "strip", z.ZodTypeAny, {
490
+ facebook?: string | undefined;
491
+ twitter?: string | undefined;
492
+ youtube?: string | undefined;
493
+ twitch?: string | undefined;
494
+ guilded?: string | undefined;
495
+ }, {
496
+ facebook?: string | undefined;
497
+ twitter?: string | undefined;
498
+ youtube?: string | undefined;
499
+ twitch?: string | undefined;
500
+ guilded?: string | undefined;
501
+ }>;
502
+ errors: {
503
+ status: number;
504
+ description: string;
505
+ schema: z.ZodVoid;
506
+ }[];
507
+ };
508
+ export declare const getV1usersUserIdrobloxBadges: {
509
+ method: "get";
510
+ path: string;
511
+ baseUrl: string;
512
+ requestFormat: "json";
513
+ parameters: {
514
+ userId: z.ZodNumber;
515
+ };
516
+ response: z.ZodArray<z.ZodObject<{
517
+ id: z.ZodOptional<z.ZodNumber>;
518
+ name: z.ZodOptional<z.ZodString>;
519
+ description: z.ZodOptional<z.ZodString>;
520
+ imageUrl: z.ZodOptional<z.ZodString>;
521
+ }, "strip", z.ZodTypeAny, {
522
+ id?: number | undefined;
523
+ name?: string | undefined;
524
+ description?: string | undefined;
525
+ imageUrl?: string | undefined;
526
+ }, {
527
+ id?: number | undefined;
528
+ name?: string | undefined;
529
+ description?: string | undefined;
530
+ imageUrl?: string | undefined;
531
+ }>, "many">;
532
+ errors: never[];
533
+ };
534
+ export declare const getV1xboxLiveconsecutiveLoginDays: {
535
+ method: "get";
536
+ path: string;
537
+ baseUrl: string;
538
+ requestFormat: "json";
539
+ response: z.ZodObject<{
540
+ count: z.ZodOptional<z.ZodNumber>;
541
+ }, "strip", z.ZodTypeAny, {
542
+ count?: number | undefined;
543
+ }, {
544
+ count?: number | undefined;
545
+ }>;
546
+ errors: {
547
+ status: number;
548
+ description: string;
549
+ schema: z.ZodVoid;
550
+ }[];
551
+ };