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,641 @@
1
+ import { z } from 'zod';
2
+ export declare const getV1badgesBadgeId: {
3
+ method: "get";
4
+ path: string;
5
+ baseUrl: string;
6
+ requestFormat: "json";
7
+ parameters: {
8
+ badgeId: z.ZodNumber;
9
+ };
10
+ response: z.ZodObject<{
11
+ id: z.ZodOptional<z.ZodNumber>;
12
+ name: z.ZodOptional<z.ZodString>;
13
+ description: z.ZodOptional<z.ZodString>;
14
+ displayName: z.ZodOptional<z.ZodString>;
15
+ displayDescription: z.ZodOptional<z.ZodString>;
16
+ enabled: z.ZodOptional<z.ZodBoolean>;
17
+ iconImageId: z.ZodOptional<z.ZodNumber>;
18
+ displayIconImageId: z.ZodOptional<z.ZodNumber>;
19
+ created: z.ZodOptional<z.ZodString>;
20
+ updated: z.ZodOptional<z.ZodString>;
21
+ statistics: z.ZodOptional<z.ZodObject<{
22
+ pastDayAwardedCount: z.ZodOptional<z.ZodNumber>;
23
+ awardedCount: z.ZodOptional<z.ZodNumber>;
24
+ winRatePercentage: z.ZodOptional<z.ZodNumber>;
25
+ }, "strip", z.ZodTypeAny, {
26
+ pastDayAwardedCount?: number | undefined;
27
+ awardedCount?: number | undefined;
28
+ winRatePercentage?: number | undefined;
29
+ }, {
30
+ pastDayAwardedCount?: number | undefined;
31
+ awardedCount?: number | undefined;
32
+ winRatePercentage?: number | undefined;
33
+ }>>;
34
+ awardingUniverse: z.ZodOptional<z.ZodObject<{
35
+ id: z.ZodOptional<z.ZodNumber>;
36
+ name: z.ZodOptional<z.ZodString>;
37
+ rootPlaceId: z.ZodOptional<z.ZodNumber>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ id?: number | undefined;
40
+ name?: string | undefined;
41
+ rootPlaceId?: number | undefined;
42
+ }, {
43
+ id?: number | undefined;
44
+ name?: string | undefined;
45
+ rootPlaceId?: number | undefined;
46
+ }>>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ id?: number | undefined;
49
+ name?: string | undefined;
50
+ description?: string | undefined;
51
+ displayName?: string | undefined;
52
+ displayDescription?: string | undefined;
53
+ enabled?: boolean | undefined;
54
+ iconImageId?: number | undefined;
55
+ displayIconImageId?: number | undefined;
56
+ created?: string | undefined;
57
+ updated?: string | undefined;
58
+ statistics?: {
59
+ pastDayAwardedCount?: number | undefined;
60
+ awardedCount?: number | undefined;
61
+ winRatePercentage?: number | undefined;
62
+ } | undefined;
63
+ awardingUniverse?: {
64
+ id?: number | undefined;
65
+ name?: string | undefined;
66
+ rootPlaceId?: number | undefined;
67
+ } | undefined;
68
+ }, {
69
+ id?: number | undefined;
70
+ name?: string | undefined;
71
+ description?: string | undefined;
72
+ displayName?: string | undefined;
73
+ displayDescription?: string | undefined;
74
+ enabled?: boolean | undefined;
75
+ iconImageId?: number | undefined;
76
+ displayIconImageId?: number | undefined;
77
+ created?: string | undefined;
78
+ updated?: string | undefined;
79
+ statistics?: {
80
+ pastDayAwardedCount?: number | undefined;
81
+ awardedCount?: number | undefined;
82
+ winRatePercentage?: number | undefined;
83
+ } | undefined;
84
+ awardingUniverse?: {
85
+ id?: number | undefined;
86
+ name?: string | undefined;
87
+ rootPlaceId?: number | undefined;
88
+ } | undefined;
89
+ }>;
90
+ errors: {
91
+ status: number;
92
+ description: string;
93
+ schema: z.ZodVoid;
94
+ }[];
95
+ };
96
+ export declare const patchV1badgesBadgeId: {
97
+ method: "patch";
98
+ path: string;
99
+ baseUrl: string;
100
+ requestFormat: "json";
101
+ parameters: {
102
+ body: z.ZodObject<{
103
+ name: z.ZodOptional<z.ZodString>;
104
+ description: z.ZodOptional<z.ZodString>;
105
+ enabled: z.ZodOptional<z.ZodBoolean>;
106
+ }, "strip", z.ZodTypeAny, {
107
+ name?: string | undefined;
108
+ description?: string | undefined;
109
+ enabled?: boolean | undefined;
110
+ }, {
111
+ name?: string | undefined;
112
+ description?: string | undefined;
113
+ enabled?: boolean | undefined;
114
+ }>;
115
+ badgeId: z.ZodNumber;
116
+ };
117
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
118
+ errors: {
119
+ status: number;
120
+ description: string;
121
+ schema: z.ZodVoid;
122
+ }[];
123
+ };
124
+ export declare const getV1badgesmetadata: {
125
+ method: "get";
126
+ path: string;
127
+ baseUrl: string;
128
+ requestFormat: "json";
129
+ response: z.ZodObject<{
130
+ badgeCreationPrice: z.ZodOptional<z.ZodNumber>;
131
+ maxBadgeNameLength: z.ZodOptional<z.ZodNumber>;
132
+ maxBadgeDescriptionLength: z.ZodOptional<z.ZodNumber>;
133
+ }, "strip", z.ZodTypeAny, {
134
+ badgeCreationPrice?: number | undefined;
135
+ maxBadgeNameLength?: number | undefined;
136
+ maxBadgeDescriptionLength?: number | undefined;
137
+ }, {
138
+ badgeCreationPrice?: number | undefined;
139
+ maxBadgeNameLength?: number | undefined;
140
+ maxBadgeDescriptionLength?: number | undefined;
141
+ }>;
142
+ errors: never[];
143
+ };
144
+ export declare const getV1universesUniverseIdbadges: {
145
+ method: "get";
146
+ path: string;
147
+ baseUrl: string;
148
+ requestFormat: "json";
149
+ parameters: {
150
+ universeId: z.ZodNumber;
151
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
152
+ cursor: z.ZodOptional<z.ZodString>;
153
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
154
+ };
155
+ response: z.ZodObject<{
156
+ previousPageCursor: z.ZodOptional<z.ZodString>;
157
+ nextPageCursor: z.ZodOptional<z.ZodString>;
158
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
159
+ id: z.ZodOptional<z.ZodNumber>;
160
+ name: z.ZodOptional<z.ZodString>;
161
+ description: z.ZodOptional<z.ZodString>;
162
+ displayName: z.ZodOptional<z.ZodString>;
163
+ displayDescription: z.ZodOptional<z.ZodString>;
164
+ enabled: z.ZodOptional<z.ZodBoolean>;
165
+ iconImageId: z.ZodOptional<z.ZodNumber>;
166
+ displayIconImageId: z.ZodOptional<z.ZodNumber>;
167
+ created: z.ZodOptional<z.ZodString>;
168
+ updated: z.ZodOptional<z.ZodString>;
169
+ statistics: z.ZodOptional<z.ZodObject<{
170
+ pastDayAwardedCount: z.ZodOptional<z.ZodNumber>;
171
+ awardedCount: z.ZodOptional<z.ZodNumber>;
172
+ winRatePercentage: z.ZodOptional<z.ZodNumber>;
173
+ }, "strip", z.ZodTypeAny, {
174
+ pastDayAwardedCount?: number | undefined;
175
+ awardedCount?: number | undefined;
176
+ winRatePercentage?: number | undefined;
177
+ }, {
178
+ pastDayAwardedCount?: number | undefined;
179
+ awardedCount?: number | undefined;
180
+ winRatePercentage?: number | undefined;
181
+ }>>;
182
+ awardingUniverse: z.ZodOptional<z.ZodObject<{
183
+ id: z.ZodOptional<z.ZodNumber>;
184
+ name: z.ZodOptional<z.ZodString>;
185
+ rootPlaceId: z.ZodOptional<z.ZodNumber>;
186
+ }, "strip", z.ZodTypeAny, {
187
+ id?: number | undefined;
188
+ name?: string | undefined;
189
+ rootPlaceId?: number | undefined;
190
+ }, {
191
+ id?: number | undefined;
192
+ name?: string | undefined;
193
+ rootPlaceId?: number | undefined;
194
+ }>>;
195
+ }, "strip", z.ZodTypeAny, {
196
+ id?: number | undefined;
197
+ name?: string | undefined;
198
+ description?: string | undefined;
199
+ displayName?: string | undefined;
200
+ displayDescription?: string | undefined;
201
+ enabled?: boolean | undefined;
202
+ iconImageId?: number | undefined;
203
+ displayIconImageId?: number | undefined;
204
+ created?: string | undefined;
205
+ updated?: string | undefined;
206
+ statistics?: {
207
+ pastDayAwardedCount?: number | undefined;
208
+ awardedCount?: number | undefined;
209
+ winRatePercentage?: number | undefined;
210
+ } | undefined;
211
+ awardingUniverse?: {
212
+ id?: number | undefined;
213
+ name?: string | undefined;
214
+ rootPlaceId?: number | undefined;
215
+ } | undefined;
216
+ }, {
217
+ id?: number | undefined;
218
+ name?: string | undefined;
219
+ description?: string | undefined;
220
+ displayName?: string | undefined;
221
+ displayDescription?: string | undefined;
222
+ enabled?: boolean | undefined;
223
+ iconImageId?: number | undefined;
224
+ displayIconImageId?: number | undefined;
225
+ created?: string | undefined;
226
+ updated?: string | undefined;
227
+ statistics?: {
228
+ pastDayAwardedCount?: number | undefined;
229
+ awardedCount?: number | undefined;
230
+ winRatePercentage?: number | undefined;
231
+ } | undefined;
232
+ awardingUniverse?: {
233
+ id?: number | undefined;
234
+ name?: string | undefined;
235
+ rootPlaceId?: number | undefined;
236
+ } | undefined;
237
+ }>, "many">>;
238
+ }, "strip", z.ZodTypeAny, {
239
+ previousPageCursor?: string | undefined;
240
+ nextPageCursor?: string | undefined;
241
+ data?: {
242
+ id?: number | undefined;
243
+ name?: string | undefined;
244
+ description?: string | undefined;
245
+ displayName?: string | undefined;
246
+ displayDescription?: string | undefined;
247
+ enabled?: boolean | undefined;
248
+ iconImageId?: number | undefined;
249
+ displayIconImageId?: number | undefined;
250
+ created?: string | undefined;
251
+ updated?: string | undefined;
252
+ statistics?: {
253
+ pastDayAwardedCount?: number | undefined;
254
+ awardedCount?: number | undefined;
255
+ winRatePercentage?: number | undefined;
256
+ } | undefined;
257
+ awardingUniverse?: {
258
+ id?: number | undefined;
259
+ name?: string | undefined;
260
+ rootPlaceId?: number | undefined;
261
+ } | undefined;
262
+ }[] | undefined;
263
+ }, {
264
+ previousPageCursor?: string | undefined;
265
+ nextPageCursor?: string | undefined;
266
+ data?: {
267
+ id?: number | undefined;
268
+ name?: string | undefined;
269
+ description?: string | undefined;
270
+ displayName?: string | undefined;
271
+ displayDescription?: string | undefined;
272
+ enabled?: boolean | undefined;
273
+ iconImageId?: number | undefined;
274
+ displayIconImageId?: number | undefined;
275
+ created?: string | undefined;
276
+ updated?: string | undefined;
277
+ statistics?: {
278
+ pastDayAwardedCount?: number | undefined;
279
+ awardedCount?: number | undefined;
280
+ winRatePercentage?: number | undefined;
281
+ } | undefined;
282
+ awardingUniverse?: {
283
+ id?: number | undefined;
284
+ name?: string | undefined;
285
+ rootPlaceId?: number | undefined;
286
+ } | undefined;
287
+ }[] | undefined;
288
+ }>;
289
+ errors: {
290
+ status: number;
291
+ description: string;
292
+ schema: z.ZodVoid;
293
+ }[];
294
+ };
295
+ export declare const postV1universesUniverseIdbadges: {
296
+ method: "post";
297
+ path: string;
298
+ baseUrl: string;
299
+ requestFormat: "form-data";
300
+ parameters: {
301
+ body: z.ZodObject<{
302
+ name: z.ZodOptional<z.ZodString>;
303
+ description: z.ZodOptional<z.ZodString>;
304
+ paymentSourceType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
305
+ files: z.ZodOptional<z.ZodType<File, z.ZodTypeDef, File>>;
306
+ expectedCost: z.ZodOptional<z.ZodNumber>;
307
+ }, "strip", z.ZodTypeAny, {
308
+ name?: string | undefined;
309
+ description?: string | undefined;
310
+ paymentSourceType?: 2 | 1 | undefined;
311
+ files?: File | undefined;
312
+ expectedCost?: number | undefined;
313
+ }, {
314
+ name?: string | undefined;
315
+ description?: string | undefined;
316
+ paymentSourceType?: 2 | 1 | undefined;
317
+ files?: File | undefined;
318
+ expectedCost?: number | undefined;
319
+ }>;
320
+ universeId: z.ZodNumber;
321
+ };
322
+ response: z.ZodObject<{
323
+ id: z.ZodOptional<z.ZodNumber>;
324
+ name: z.ZodOptional<z.ZodString>;
325
+ description: z.ZodOptional<z.ZodString>;
326
+ displayName: z.ZodOptional<z.ZodString>;
327
+ displayDescription: z.ZodOptional<z.ZodString>;
328
+ enabled: z.ZodOptional<z.ZodBoolean>;
329
+ iconImageId: z.ZodOptional<z.ZodNumber>;
330
+ displayIconImageId: z.ZodOptional<z.ZodNumber>;
331
+ awarder: z.ZodOptional<z.ZodObject<{
332
+ id: z.ZodOptional<z.ZodNumber>;
333
+ type: z.ZodOptional<z.ZodLiteral<1>>;
334
+ name: z.ZodOptional<z.ZodString>;
335
+ }, "strip", z.ZodTypeAny, {
336
+ id?: number | undefined;
337
+ type?: 1 | undefined;
338
+ name?: string | undefined;
339
+ }, {
340
+ id?: number | undefined;
341
+ type?: 1 | undefined;
342
+ name?: string | undefined;
343
+ }>>;
344
+ statistics: z.ZodOptional<z.ZodObject<{
345
+ pastDayAwardedCount: z.ZodOptional<z.ZodNumber>;
346
+ awardedCount: z.ZodOptional<z.ZodNumber>;
347
+ winRatePercentage: z.ZodOptional<z.ZodNumber>;
348
+ }, "strip", z.ZodTypeAny, {
349
+ pastDayAwardedCount?: number | undefined;
350
+ awardedCount?: number | undefined;
351
+ winRatePercentage?: number | undefined;
352
+ }, {
353
+ pastDayAwardedCount?: number | undefined;
354
+ awardedCount?: number | undefined;
355
+ winRatePercentage?: number | undefined;
356
+ }>>;
357
+ created: z.ZodOptional<z.ZodString>;
358
+ updated: z.ZodOptional<z.ZodString>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ id?: number | undefined;
361
+ name?: string | undefined;
362
+ description?: string | undefined;
363
+ displayName?: string | undefined;
364
+ displayDescription?: string | undefined;
365
+ enabled?: boolean | undefined;
366
+ iconImageId?: number | undefined;
367
+ displayIconImageId?: number | undefined;
368
+ awarder?: {
369
+ id?: number | undefined;
370
+ type?: 1 | undefined;
371
+ name?: string | undefined;
372
+ } | undefined;
373
+ statistics?: {
374
+ pastDayAwardedCount?: number | undefined;
375
+ awardedCount?: number | undefined;
376
+ winRatePercentage?: number | undefined;
377
+ } | undefined;
378
+ created?: string | undefined;
379
+ updated?: string | undefined;
380
+ }, {
381
+ id?: number | undefined;
382
+ name?: string | undefined;
383
+ description?: string | undefined;
384
+ displayName?: string | undefined;
385
+ displayDescription?: string | undefined;
386
+ enabled?: boolean | undefined;
387
+ iconImageId?: number | undefined;
388
+ displayIconImageId?: number | undefined;
389
+ awarder?: {
390
+ id?: number | undefined;
391
+ type?: 1 | undefined;
392
+ name?: string | undefined;
393
+ } | undefined;
394
+ statistics?: {
395
+ pastDayAwardedCount?: number | undefined;
396
+ awardedCount?: number | undefined;
397
+ winRatePercentage?: number | undefined;
398
+ } | undefined;
399
+ created?: string | undefined;
400
+ updated?: string | undefined;
401
+ }>;
402
+ errors: {
403
+ status: number;
404
+ description: string;
405
+ schema: z.ZodVoid;
406
+ }[];
407
+ };
408
+ export declare const getV1universesUniverseIdfreeBadgesQuota: {
409
+ method: "get";
410
+ path: string;
411
+ baseUrl: string;
412
+ requestFormat: "json";
413
+ parameters: {
414
+ universeId: z.ZodNumber;
415
+ };
416
+ response: z.ZodNumber;
417
+ errors: {
418
+ status: number;
419
+ description: string;
420
+ schema: z.ZodVoid;
421
+ }[];
422
+ };
423
+ export declare const deleteV1userUserIdbadgesBadgeId: {
424
+ method: "delete";
425
+ path: string;
426
+ baseUrl: string;
427
+ requestFormat: "json";
428
+ parameters: {
429
+ userId: z.ZodNumber;
430
+ badgeId: z.ZodNumber;
431
+ };
432
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
433
+ errors: {
434
+ status: number;
435
+ description: string;
436
+ schema: z.ZodVoid;
437
+ }[];
438
+ };
439
+ export declare const deleteV1userbadgesBadgeId: {
440
+ method: "delete";
441
+ path: string;
442
+ baseUrl: string;
443
+ requestFormat: "json";
444
+ parameters: {
445
+ badgeId: z.ZodNumber;
446
+ };
447
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
448
+ errors: {
449
+ status: number;
450
+ description: string;
451
+ schema: z.ZodVoid;
452
+ }[];
453
+ };
454
+ export declare const getV1usersUserIdbadges: {
455
+ method: "get";
456
+ path: string;
457
+ baseUrl: string;
458
+ requestFormat: "json";
459
+ parameters: {
460
+ userId: z.ZodNumber;
461
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
462
+ cursor: z.ZodOptional<z.ZodString>;
463
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
464
+ };
465
+ response: z.ZodObject<{
466
+ previousPageCursor: z.ZodOptional<z.ZodString>;
467
+ nextPageCursor: z.ZodOptional<z.ZodString>;
468
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
469
+ id: z.ZodOptional<z.ZodNumber>;
470
+ name: z.ZodOptional<z.ZodString>;
471
+ description: z.ZodOptional<z.ZodString>;
472
+ displayName: z.ZodOptional<z.ZodString>;
473
+ displayDescription: z.ZodOptional<z.ZodString>;
474
+ enabled: z.ZodOptional<z.ZodBoolean>;
475
+ iconImageId: z.ZodOptional<z.ZodNumber>;
476
+ displayIconImageId: z.ZodOptional<z.ZodNumber>;
477
+ awarder: z.ZodOptional<z.ZodObject<{
478
+ id: z.ZodOptional<z.ZodNumber>;
479
+ type: z.ZodOptional<z.ZodLiteral<1>>;
480
+ name: z.ZodOptional<z.ZodString>;
481
+ }, "strip", z.ZodTypeAny, {
482
+ id?: number | undefined;
483
+ type?: 1 | undefined;
484
+ name?: string | undefined;
485
+ }, {
486
+ id?: number | undefined;
487
+ type?: 1 | undefined;
488
+ name?: string | undefined;
489
+ }>>;
490
+ statistics: z.ZodOptional<z.ZodObject<{
491
+ pastDayAwardedCount: z.ZodOptional<z.ZodNumber>;
492
+ awardedCount: z.ZodOptional<z.ZodNumber>;
493
+ winRatePercentage: z.ZodOptional<z.ZodNumber>;
494
+ }, "strip", z.ZodTypeAny, {
495
+ pastDayAwardedCount?: number | undefined;
496
+ awardedCount?: number | undefined;
497
+ winRatePercentage?: number | undefined;
498
+ }, {
499
+ pastDayAwardedCount?: number | undefined;
500
+ awardedCount?: number | undefined;
501
+ winRatePercentage?: number | undefined;
502
+ }>>;
503
+ created: z.ZodOptional<z.ZodString>;
504
+ updated: z.ZodOptional<z.ZodString>;
505
+ }, "strip", z.ZodTypeAny, {
506
+ id?: number | undefined;
507
+ name?: string | undefined;
508
+ description?: string | undefined;
509
+ displayName?: string | undefined;
510
+ displayDescription?: string | undefined;
511
+ enabled?: boolean | undefined;
512
+ iconImageId?: number | undefined;
513
+ displayIconImageId?: number | undefined;
514
+ awarder?: {
515
+ id?: number | undefined;
516
+ type?: 1 | undefined;
517
+ name?: string | undefined;
518
+ } | undefined;
519
+ statistics?: {
520
+ pastDayAwardedCount?: number | undefined;
521
+ awardedCount?: number | undefined;
522
+ winRatePercentage?: number | undefined;
523
+ } | undefined;
524
+ created?: string | undefined;
525
+ updated?: string | undefined;
526
+ }, {
527
+ id?: number | undefined;
528
+ name?: string | undefined;
529
+ description?: string | undefined;
530
+ displayName?: string | undefined;
531
+ displayDescription?: string | undefined;
532
+ enabled?: boolean | undefined;
533
+ iconImageId?: number | undefined;
534
+ displayIconImageId?: number | undefined;
535
+ awarder?: {
536
+ id?: number | undefined;
537
+ type?: 1 | undefined;
538
+ name?: string | undefined;
539
+ } | undefined;
540
+ statistics?: {
541
+ pastDayAwardedCount?: number | undefined;
542
+ awardedCount?: number | undefined;
543
+ winRatePercentage?: number | undefined;
544
+ } | undefined;
545
+ created?: string | undefined;
546
+ updated?: string | undefined;
547
+ }>, "many">>;
548
+ }, "strip", z.ZodTypeAny, {
549
+ previousPageCursor?: string | undefined;
550
+ nextPageCursor?: string | undefined;
551
+ data?: {
552
+ id?: number | undefined;
553
+ name?: string | undefined;
554
+ description?: string | undefined;
555
+ displayName?: string | undefined;
556
+ displayDescription?: string | undefined;
557
+ enabled?: boolean | undefined;
558
+ iconImageId?: number | undefined;
559
+ displayIconImageId?: number | undefined;
560
+ awarder?: {
561
+ id?: number | undefined;
562
+ type?: 1 | undefined;
563
+ name?: string | undefined;
564
+ } | undefined;
565
+ statistics?: {
566
+ pastDayAwardedCount?: number | undefined;
567
+ awardedCount?: number | undefined;
568
+ winRatePercentage?: number | undefined;
569
+ } | undefined;
570
+ created?: string | undefined;
571
+ updated?: string | undefined;
572
+ }[] | undefined;
573
+ }, {
574
+ previousPageCursor?: string | undefined;
575
+ nextPageCursor?: string | undefined;
576
+ data?: {
577
+ id?: number | undefined;
578
+ name?: string | undefined;
579
+ description?: string | undefined;
580
+ displayName?: string | undefined;
581
+ displayDescription?: string | undefined;
582
+ enabled?: boolean | undefined;
583
+ iconImageId?: number | undefined;
584
+ displayIconImageId?: number | undefined;
585
+ awarder?: {
586
+ id?: number | undefined;
587
+ type?: 1 | undefined;
588
+ name?: string | undefined;
589
+ } | undefined;
590
+ statistics?: {
591
+ pastDayAwardedCount?: number | undefined;
592
+ awardedCount?: number | undefined;
593
+ winRatePercentage?: number | undefined;
594
+ } | undefined;
595
+ created?: string | undefined;
596
+ updated?: string | undefined;
597
+ }[] | undefined;
598
+ }>;
599
+ errors: {
600
+ status: number;
601
+ description: string;
602
+ schema: z.ZodVoid;
603
+ }[];
604
+ };
605
+ export declare const getV1usersUserIdbadgesawardedDates: {
606
+ method: "get";
607
+ path: string;
608
+ baseUrl: string;
609
+ requestFormat: "json";
610
+ parameters: {
611
+ userId: z.ZodNumber;
612
+ badgeIds: z.ZodArray<z.ZodNumber, "many">;
613
+ };
614
+ response: z.ZodObject<{
615
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
616
+ badgeId: z.ZodOptional<z.ZodNumber>;
617
+ awardedDate: z.ZodOptional<z.ZodString>;
618
+ }, "strip", z.ZodTypeAny, {
619
+ badgeId?: number | undefined;
620
+ awardedDate?: string | undefined;
621
+ }, {
622
+ badgeId?: number | undefined;
623
+ awardedDate?: string | undefined;
624
+ }>, "many">>;
625
+ }, "strip", z.ZodTypeAny, {
626
+ data?: {
627
+ badgeId?: number | undefined;
628
+ awardedDate?: string | undefined;
629
+ }[] | undefined;
630
+ }, {
631
+ data?: {
632
+ badgeId?: number | undefined;
633
+ awardedDate?: string | undefined;
634
+ }[] | undefined;
635
+ }>;
636
+ errors: {
637
+ status: number;
638
+ description: string;
639
+ schema: z.ZodVoid;
640
+ }[];
641
+ };