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,1715 @@
1
+ import { z } from 'zod';
2
+ export declare const getV1assetToCategory: {
3
+ method: "get";
4
+ path: string;
5
+ baseUrl: string;
6
+ requestFormat: "json";
7
+ response: z.ZodRecord<z.ZodString, z.ZodNumber>;
8
+ errors: never[];
9
+ };
10
+ export declare const getV1assetToSubcategory: {
11
+ method: "get";
12
+ path: string;
13
+ baseUrl: string;
14
+ requestFormat: "json";
15
+ response: z.ZodRecord<z.ZodString, z.ZodNumber>;
16
+ errors: never[];
17
+ };
18
+ export declare const getV1assetsAssetIdbundles: {
19
+ method: "get";
20
+ path: string;
21
+ baseUrl: string;
22
+ requestFormat: "json";
23
+ parameters: {
24
+ assetId: z.ZodNumber;
25
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
26
+ cursor: z.ZodOptional<z.ZodString>;
27
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
28
+ };
29
+ response: z.ZodObject<{
30
+ previousPageCursor: z.ZodOptional<z.ZodString>;
31
+ nextPageCursor: z.ZodOptional<z.ZodString>;
32
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
33
+ id: z.ZodOptional<z.ZodNumber>;
34
+ name: z.ZodOptional<z.ZodString>;
35
+ description: z.ZodOptional<z.ZodString>;
36
+ bundleType: z.ZodOptional<z.ZodString>;
37
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
38
+ owned: z.ZodOptional<z.ZodBoolean>;
39
+ id: z.ZodOptional<z.ZodNumber>;
40
+ name: z.ZodOptional<z.ZodString>;
41
+ type: z.ZodOptional<z.ZodString>;
42
+ }, "strip", z.ZodTypeAny, {
43
+ owned?: boolean | undefined;
44
+ id?: number | undefined;
45
+ name?: string | undefined;
46
+ type?: string | undefined;
47
+ }, {
48
+ owned?: boolean | undefined;
49
+ id?: number | undefined;
50
+ name?: string | undefined;
51
+ type?: string | undefined;
52
+ }>, "many">>;
53
+ creator: z.ZodOptional<z.ZodObject<{
54
+ id: z.ZodOptional<z.ZodNumber>;
55
+ name: z.ZodOptional<z.ZodString>;
56
+ type: z.ZodOptional<z.ZodString>;
57
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
58
+ }, "strip", z.ZodTypeAny, {
59
+ id?: number | undefined;
60
+ name?: string | undefined;
61
+ type?: string | undefined;
62
+ hasVerifiedBadge?: boolean | undefined;
63
+ }, {
64
+ id?: number | undefined;
65
+ name?: string | undefined;
66
+ type?: string | undefined;
67
+ hasVerifiedBadge?: boolean | undefined;
68
+ }>>;
69
+ product: z.ZodOptional<z.ZodObject<{
70
+ id: z.ZodOptional<z.ZodNumber>;
71
+ type: z.ZodOptional<z.ZodString>;
72
+ isPublicDomain: z.ZodOptional<z.ZodBoolean>;
73
+ isForSale: z.ZodOptional<z.ZodBoolean>;
74
+ priceInRobux: z.ZodOptional<z.ZodNumber>;
75
+ isFree: z.ZodOptional<z.ZodBoolean>;
76
+ noPriceText: z.ZodOptional<z.ZodString>;
77
+ premiumPricing: z.ZodOptional<z.ZodObject<{
78
+ premiumDiscountPercentage: z.ZodOptional<z.ZodNumber>;
79
+ premiumPriceInRobux: z.ZodOptional<z.ZodNumber>;
80
+ }, "strip", z.ZodTypeAny, {
81
+ premiumDiscountPercentage?: number | undefined;
82
+ premiumPriceInRobux?: number | undefined;
83
+ }, {
84
+ premiumDiscountPercentage?: number | undefined;
85
+ premiumPriceInRobux?: number | undefined;
86
+ }>>;
87
+ }, "strip", z.ZodTypeAny, {
88
+ id?: number | undefined;
89
+ type?: string | undefined;
90
+ isPublicDomain?: boolean | undefined;
91
+ isForSale?: boolean | undefined;
92
+ priceInRobux?: number | undefined;
93
+ isFree?: boolean | undefined;
94
+ noPriceText?: string | undefined;
95
+ premiumPricing?: {
96
+ premiumDiscountPercentage?: number | undefined;
97
+ premiumPriceInRobux?: number | undefined;
98
+ } | undefined;
99
+ }, {
100
+ id?: number | undefined;
101
+ type?: string | undefined;
102
+ isPublicDomain?: boolean | undefined;
103
+ isForSale?: boolean | undefined;
104
+ priceInRobux?: number | undefined;
105
+ isFree?: boolean | undefined;
106
+ noPriceText?: string | undefined;
107
+ premiumPricing?: {
108
+ premiumDiscountPercentage?: number | undefined;
109
+ premiumPriceInRobux?: number | undefined;
110
+ } | undefined;
111
+ }>>;
112
+ itemRestrictions: z.ZodOptional<z.ZodArray<z.ZodUnion<[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>]>, "many">>;
113
+ }, "strip", z.ZodTypeAny, {
114
+ id?: number | undefined;
115
+ name?: string | undefined;
116
+ description?: string | undefined;
117
+ bundleType?: string | undefined;
118
+ items?: {
119
+ owned?: boolean | undefined;
120
+ id?: number | undefined;
121
+ name?: string | undefined;
122
+ type?: string | undefined;
123
+ }[] | undefined;
124
+ creator?: {
125
+ id?: number | undefined;
126
+ name?: string | undefined;
127
+ type?: string | undefined;
128
+ hasVerifiedBadge?: boolean | undefined;
129
+ } | undefined;
130
+ product?: {
131
+ id?: number | undefined;
132
+ type?: string | undefined;
133
+ isPublicDomain?: boolean | undefined;
134
+ isForSale?: boolean | undefined;
135
+ priceInRobux?: number | undefined;
136
+ isFree?: boolean | undefined;
137
+ noPriceText?: string | undefined;
138
+ premiumPricing?: {
139
+ premiumDiscountPercentage?: number | undefined;
140
+ premiumPriceInRobux?: number | undefined;
141
+ } | undefined;
142
+ } | undefined;
143
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
144
+ }, {
145
+ id?: number | undefined;
146
+ name?: string | undefined;
147
+ description?: string | undefined;
148
+ bundleType?: string | undefined;
149
+ items?: {
150
+ owned?: boolean | undefined;
151
+ id?: number | undefined;
152
+ name?: string | undefined;
153
+ type?: string | undefined;
154
+ }[] | undefined;
155
+ creator?: {
156
+ id?: number | undefined;
157
+ name?: string | undefined;
158
+ type?: string | undefined;
159
+ hasVerifiedBadge?: boolean | undefined;
160
+ } | undefined;
161
+ product?: {
162
+ id?: number | undefined;
163
+ type?: string | undefined;
164
+ isPublicDomain?: boolean | undefined;
165
+ isForSale?: boolean | undefined;
166
+ priceInRobux?: number | undefined;
167
+ isFree?: boolean | undefined;
168
+ noPriceText?: string | undefined;
169
+ premiumPricing?: {
170
+ premiumDiscountPercentage?: number | undefined;
171
+ premiumPriceInRobux?: number | undefined;
172
+ } | undefined;
173
+ } | undefined;
174
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
175
+ }>, "many">>;
176
+ }, "strip", z.ZodTypeAny, {
177
+ previousPageCursor?: string | undefined;
178
+ nextPageCursor?: string | undefined;
179
+ data?: {
180
+ id?: number | undefined;
181
+ name?: string | undefined;
182
+ description?: string | undefined;
183
+ bundleType?: string | undefined;
184
+ items?: {
185
+ owned?: boolean | undefined;
186
+ id?: number | undefined;
187
+ name?: string | undefined;
188
+ type?: string | undefined;
189
+ }[] | undefined;
190
+ creator?: {
191
+ id?: number | undefined;
192
+ name?: string | undefined;
193
+ type?: string | undefined;
194
+ hasVerifiedBadge?: boolean | undefined;
195
+ } | undefined;
196
+ product?: {
197
+ id?: number | undefined;
198
+ type?: string | undefined;
199
+ isPublicDomain?: boolean | undefined;
200
+ isForSale?: boolean | undefined;
201
+ priceInRobux?: number | undefined;
202
+ isFree?: boolean | undefined;
203
+ noPriceText?: string | undefined;
204
+ premiumPricing?: {
205
+ premiumDiscountPercentage?: number | undefined;
206
+ premiumPriceInRobux?: number | undefined;
207
+ } | undefined;
208
+ } | undefined;
209
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
210
+ }[] | undefined;
211
+ }, {
212
+ previousPageCursor?: string | undefined;
213
+ nextPageCursor?: string | undefined;
214
+ data?: {
215
+ id?: number | undefined;
216
+ name?: string | undefined;
217
+ description?: string | undefined;
218
+ bundleType?: string | undefined;
219
+ items?: {
220
+ owned?: boolean | undefined;
221
+ id?: number | undefined;
222
+ name?: string | undefined;
223
+ type?: string | undefined;
224
+ }[] | undefined;
225
+ creator?: {
226
+ id?: number | undefined;
227
+ name?: string | undefined;
228
+ type?: string | undefined;
229
+ hasVerifiedBadge?: boolean | undefined;
230
+ } | undefined;
231
+ product?: {
232
+ id?: number | undefined;
233
+ type?: string | undefined;
234
+ isPublicDomain?: boolean | undefined;
235
+ isForSale?: boolean | undefined;
236
+ priceInRobux?: number | undefined;
237
+ isFree?: boolean | undefined;
238
+ noPriceText?: string | undefined;
239
+ premiumPricing?: {
240
+ premiumDiscountPercentage?: number | undefined;
241
+ premiumPriceInRobux?: number | undefined;
242
+ } | undefined;
243
+ } | undefined;
244
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
245
+ }[] | undefined;
246
+ }>;
247
+ errors: {
248
+ status: number;
249
+ description: string;
250
+ schema: z.ZodVoid;
251
+ }[];
252
+ };
253
+ export declare const getV1bundlesBundleIddetails: {
254
+ method: "get";
255
+ path: string;
256
+ baseUrl: string;
257
+ requestFormat: "json";
258
+ parameters: {
259
+ bundleId: z.ZodNumber;
260
+ };
261
+ response: z.ZodObject<{
262
+ id: z.ZodOptional<z.ZodNumber>;
263
+ name: z.ZodOptional<z.ZodString>;
264
+ description: z.ZodOptional<z.ZodString>;
265
+ bundleType: z.ZodOptional<z.ZodString>;
266
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
267
+ owned: z.ZodOptional<z.ZodBoolean>;
268
+ id: z.ZodOptional<z.ZodNumber>;
269
+ name: z.ZodOptional<z.ZodString>;
270
+ type: z.ZodOptional<z.ZodString>;
271
+ }, "strip", z.ZodTypeAny, {
272
+ owned?: boolean | undefined;
273
+ id?: number | undefined;
274
+ name?: string | undefined;
275
+ type?: string | undefined;
276
+ }, {
277
+ owned?: boolean | undefined;
278
+ id?: number | undefined;
279
+ name?: string | undefined;
280
+ type?: string | undefined;
281
+ }>, "many">>;
282
+ creator: z.ZodOptional<z.ZodObject<{
283
+ id: z.ZodOptional<z.ZodNumber>;
284
+ name: z.ZodOptional<z.ZodString>;
285
+ type: z.ZodOptional<z.ZodString>;
286
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ id?: number | undefined;
289
+ name?: string | undefined;
290
+ type?: string | undefined;
291
+ hasVerifiedBadge?: boolean | undefined;
292
+ }, {
293
+ id?: number | undefined;
294
+ name?: string | undefined;
295
+ type?: string | undefined;
296
+ hasVerifiedBadge?: boolean | undefined;
297
+ }>>;
298
+ product: z.ZodOptional<z.ZodObject<{
299
+ id: z.ZodOptional<z.ZodNumber>;
300
+ type: z.ZodOptional<z.ZodString>;
301
+ isPublicDomain: z.ZodOptional<z.ZodBoolean>;
302
+ isForSale: z.ZodOptional<z.ZodBoolean>;
303
+ priceInRobux: z.ZodOptional<z.ZodNumber>;
304
+ isFree: z.ZodOptional<z.ZodBoolean>;
305
+ noPriceText: z.ZodOptional<z.ZodString>;
306
+ premiumPricing: z.ZodOptional<z.ZodObject<{
307
+ premiumDiscountPercentage: z.ZodOptional<z.ZodNumber>;
308
+ premiumPriceInRobux: z.ZodOptional<z.ZodNumber>;
309
+ }, "strip", z.ZodTypeAny, {
310
+ premiumDiscountPercentage?: number | undefined;
311
+ premiumPriceInRobux?: number | undefined;
312
+ }, {
313
+ premiumDiscountPercentage?: number | undefined;
314
+ premiumPriceInRobux?: number | undefined;
315
+ }>>;
316
+ }, "strip", z.ZodTypeAny, {
317
+ id?: number | undefined;
318
+ type?: string | undefined;
319
+ isPublicDomain?: boolean | undefined;
320
+ isForSale?: boolean | undefined;
321
+ priceInRobux?: number | undefined;
322
+ isFree?: boolean | undefined;
323
+ noPriceText?: string | undefined;
324
+ premiumPricing?: {
325
+ premiumDiscountPercentage?: number | undefined;
326
+ premiumPriceInRobux?: number | undefined;
327
+ } | undefined;
328
+ }, {
329
+ id?: number | undefined;
330
+ type?: string | undefined;
331
+ isPublicDomain?: boolean | undefined;
332
+ isForSale?: boolean | undefined;
333
+ priceInRobux?: number | undefined;
334
+ isFree?: boolean | undefined;
335
+ noPriceText?: string | undefined;
336
+ premiumPricing?: {
337
+ premiumDiscountPercentage?: number | undefined;
338
+ premiumPriceInRobux?: number | undefined;
339
+ } | undefined;
340
+ }>>;
341
+ itemRestrictions: z.ZodOptional<z.ZodArray<z.ZodUnion<[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>]>, "many">>;
342
+ }, "strip", z.ZodTypeAny, {
343
+ id?: number | undefined;
344
+ name?: string | undefined;
345
+ description?: string | undefined;
346
+ bundleType?: string | undefined;
347
+ items?: {
348
+ owned?: boolean | undefined;
349
+ id?: number | undefined;
350
+ name?: string | undefined;
351
+ type?: string | undefined;
352
+ }[] | undefined;
353
+ creator?: {
354
+ id?: number | undefined;
355
+ name?: string | undefined;
356
+ type?: string | undefined;
357
+ hasVerifiedBadge?: boolean | undefined;
358
+ } | undefined;
359
+ product?: {
360
+ id?: number | undefined;
361
+ type?: string | undefined;
362
+ isPublicDomain?: boolean | undefined;
363
+ isForSale?: boolean | undefined;
364
+ priceInRobux?: number | undefined;
365
+ isFree?: boolean | undefined;
366
+ noPriceText?: string | undefined;
367
+ premiumPricing?: {
368
+ premiumDiscountPercentage?: number | undefined;
369
+ premiumPriceInRobux?: number | undefined;
370
+ } | undefined;
371
+ } | undefined;
372
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
373
+ }, {
374
+ id?: number | undefined;
375
+ name?: string | undefined;
376
+ description?: string | undefined;
377
+ bundleType?: string | undefined;
378
+ items?: {
379
+ owned?: boolean | undefined;
380
+ id?: number | undefined;
381
+ name?: string | undefined;
382
+ type?: string | undefined;
383
+ }[] | undefined;
384
+ creator?: {
385
+ id?: number | undefined;
386
+ name?: string | undefined;
387
+ type?: string | undefined;
388
+ hasVerifiedBadge?: boolean | undefined;
389
+ } | undefined;
390
+ product?: {
391
+ id?: number | undefined;
392
+ type?: string | undefined;
393
+ isPublicDomain?: boolean | undefined;
394
+ isForSale?: boolean | undefined;
395
+ priceInRobux?: number | undefined;
396
+ isFree?: boolean | undefined;
397
+ noPriceText?: string | undefined;
398
+ premiumPricing?: {
399
+ premiumDiscountPercentage?: number | undefined;
400
+ premiumPriceInRobux?: number | undefined;
401
+ } | undefined;
402
+ } | undefined;
403
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
404
+ }>;
405
+ errors: {
406
+ status: number;
407
+ description: string;
408
+ schema: z.ZodVoid;
409
+ }[];
410
+ };
411
+ export declare const getV1bundlesBundleIdrecommendations: {
412
+ method: "get";
413
+ path: string;
414
+ baseUrl: string;
415
+ requestFormat: "json";
416
+ parameters: {
417
+ bundleId: z.ZodNumber;
418
+ numItems: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
419
+ };
420
+ response: z.ZodObject<{
421
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
422
+ id: z.ZodOptional<z.ZodNumber>;
423
+ name: z.ZodOptional<z.ZodString>;
424
+ description: z.ZodOptional<z.ZodString>;
425
+ bundleType: z.ZodOptional<z.ZodString>;
426
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
427
+ owned: z.ZodOptional<z.ZodBoolean>;
428
+ id: z.ZodOptional<z.ZodNumber>;
429
+ name: z.ZodOptional<z.ZodString>;
430
+ type: z.ZodOptional<z.ZodString>;
431
+ }, "strip", z.ZodTypeAny, {
432
+ owned?: boolean | undefined;
433
+ id?: number | undefined;
434
+ name?: string | undefined;
435
+ type?: string | undefined;
436
+ }, {
437
+ owned?: boolean | undefined;
438
+ id?: number | undefined;
439
+ name?: string | undefined;
440
+ type?: string | undefined;
441
+ }>, "many">>;
442
+ creator: z.ZodOptional<z.ZodObject<{
443
+ id: z.ZodOptional<z.ZodNumber>;
444
+ name: z.ZodOptional<z.ZodString>;
445
+ type: z.ZodOptional<z.ZodString>;
446
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
447
+ }, "strip", z.ZodTypeAny, {
448
+ id?: number | undefined;
449
+ name?: string | undefined;
450
+ type?: string | undefined;
451
+ hasVerifiedBadge?: boolean | undefined;
452
+ }, {
453
+ id?: number | undefined;
454
+ name?: string | undefined;
455
+ type?: string | undefined;
456
+ hasVerifiedBadge?: boolean | undefined;
457
+ }>>;
458
+ product: z.ZodOptional<z.ZodObject<{
459
+ id: z.ZodOptional<z.ZodNumber>;
460
+ type: z.ZodOptional<z.ZodString>;
461
+ isPublicDomain: z.ZodOptional<z.ZodBoolean>;
462
+ isForSale: z.ZodOptional<z.ZodBoolean>;
463
+ priceInRobux: z.ZodOptional<z.ZodNumber>;
464
+ isFree: z.ZodOptional<z.ZodBoolean>;
465
+ noPriceText: z.ZodOptional<z.ZodString>;
466
+ premiumPricing: z.ZodOptional<z.ZodObject<{
467
+ premiumDiscountPercentage: z.ZodOptional<z.ZodNumber>;
468
+ premiumPriceInRobux: z.ZodOptional<z.ZodNumber>;
469
+ }, "strip", z.ZodTypeAny, {
470
+ premiumDiscountPercentage?: number | undefined;
471
+ premiumPriceInRobux?: number | undefined;
472
+ }, {
473
+ premiumDiscountPercentage?: number | undefined;
474
+ premiumPriceInRobux?: number | undefined;
475
+ }>>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ id?: number | undefined;
478
+ type?: string | undefined;
479
+ isPublicDomain?: boolean | undefined;
480
+ isForSale?: boolean | undefined;
481
+ priceInRobux?: number | undefined;
482
+ isFree?: boolean | undefined;
483
+ noPriceText?: string | undefined;
484
+ premiumPricing?: {
485
+ premiumDiscountPercentage?: number | undefined;
486
+ premiumPriceInRobux?: number | undefined;
487
+ } | undefined;
488
+ }, {
489
+ id?: number | undefined;
490
+ type?: string | undefined;
491
+ isPublicDomain?: boolean | undefined;
492
+ isForSale?: boolean | undefined;
493
+ priceInRobux?: number | undefined;
494
+ isFree?: boolean | undefined;
495
+ noPriceText?: string | undefined;
496
+ premiumPricing?: {
497
+ premiumDiscountPercentage?: number | undefined;
498
+ premiumPriceInRobux?: number | undefined;
499
+ } | undefined;
500
+ }>>;
501
+ itemRestrictions: z.ZodOptional<z.ZodArray<z.ZodUnion<[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>]>, "many">>;
502
+ }, "strip", z.ZodTypeAny, {
503
+ id?: number | undefined;
504
+ name?: string | undefined;
505
+ description?: string | undefined;
506
+ bundleType?: string | undefined;
507
+ items?: {
508
+ owned?: boolean | undefined;
509
+ id?: number | undefined;
510
+ name?: string | undefined;
511
+ type?: string | undefined;
512
+ }[] | undefined;
513
+ creator?: {
514
+ id?: number | undefined;
515
+ name?: string | undefined;
516
+ type?: string | undefined;
517
+ hasVerifiedBadge?: boolean | undefined;
518
+ } | undefined;
519
+ product?: {
520
+ id?: number | undefined;
521
+ type?: string | undefined;
522
+ isPublicDomain?: boolean | undefined;
523
+ isForSale?: boolean | undefined;
524
+ priceInRobux?: number | undefined;
525
+ isFree?: boolean | undefined;
526
+ noPriceText?: string | undefined;
527
+ premiumPricing?: {
528
+ premiumDiscountPercentage?: number | undefined;
529
+ premiumPriceInRobux?: number | undefined;
530
+ } | undefined;
531
+ } | undefined;
532
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
533
+ }, {
534
+ id?: number | undefined;
535
+ name?: string | undefined;
536
+ description?: string | undefined;
537
+ bundleType?: string | undefined;
538
+ items?: {
539
+ owned?: boolean | undefined;
540
+ id?: number | undefined;
541
+ name?: string | undefined;
542
+ type?: string | undefined;
543
+ }[] | undefined;
544
+ creator?: {
545
+ id?: number | undefined;
546
+ name?: string | undefined;
547
+ type?: string | undefined;
548
+ hasVerifiedBadge?: boolean | undefined;
549
+ } | undefined;
550
+ product?: {
551
+ id?: number | undefined;
552
+ type?: string | undefined;
553
+ isPublicDomain?: boolean | undefined;
554
+ isForSale?: boolean | undefined;
555
+ priceInRobux?: number | undefined;
556
+ isFree?: boolean | undefined;
557
+ noPriceText?: string | undefined;
558
+ premiumPricing?: {
559
+ premiumDiscountPercentage?: number | undefined;
560
+ premiumPriceInRobux?: number | undefined;
561
+ } | undefined;
562
+ } | undefined;
563
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
564
+ }>, "many">>;
565
+ }, "strip", z.ZodTypeAny, {
566
+ data?: {
567
+ id?: number | undefined;
568
+ name?: string | undefined;
569
+ description?: string | undefined;
570
+ bundleType?: string | undefined;
571
+ items?: {
572
+ owned?: boolean | undefined;
573
+ id?: number | undefined;
574
+ name?: string | undefined;
575
+ type?: string | undefined;
576
+ }[] | undefined;
577
+ creator?: {
578
+ id?: number | undefined;
579
+ name?: string | undefined;
580
+ type?: string | undefined;
581
+ hasVerifiedBadge?: boolean | undefined;
582
+ } | undefined;
583
+ product?: {
584
+ id?: number | undefined;
585
+ type?: string | undefined;
586
+ isPublicDomain?: boolean | undefined;
587
+ isForSale?: boolean | undefined;
588
+ priceInRobux?: number | undefined;
589
+ isFree?: boolean | undefined;
590
+ noPriceText?: string | undefined;
591
+ premiumPricing?: {
592
+ premiumDiscountPercentage?: number | undefined;
593
+ premiumPriceInRobux?: number | undefined;
594
+ } | undefined;
595
+ } | undefined;
596
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
597
+ }[] | undefined;
598
+ }, {
599
+ data?: {
600
+ id?: number | undefined;
601
+ name?: string | undefined;
602
+ description?: string | undefined;
603
+ bundleType?: string | undefined;
604
+ items?: {
605
+ owned?: boolean | undefined;
606
+ id?: number | undefined;
607
+ name?: string | undefined;
608
+ type?: string | undefined;
609
+ }[] | undefined;
610
+ creator?: {
611
+ id?: number | undefined;
612
+ name?: string | undefined;
613
+ type?: string | undefined;
614
+ hasVerifiedBadge?: boolean | undefined;
615
+ } | undefined;
616
+ product?: {
617
+ id?: number | undefined;
618
+ type?: string | undefined;
619
+ isPublicDomain?: boolean | undefined;
620
+ isForSale?: boolean | undefined;
621
+ priceInRobux?: number | undefined;
622
+ isFree?: boolean | undefined;
623
+ noPriceText?: string | undefined;
624
+ premiumPricing?: {
625
+ premiumDiscountPercentage?: number | undefined;
626
+ premiumPriceInRobux?: number | undefined;
627
+ } | undefined;
628
+ } | undefined;
629
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
630
+ }[] | undefined;
631
+ }>;
632
+ errors: {
633
+ status: number;
634
+ description: string;
635
+ schema: z.ZodVoid;
636
+ }[];
637
+ };
638
+ export declare const postV1bundlesBundleIdunpack: {
639
+ method: "post";
640
+ path: string;
641
+ baseUrl: string;
642
+ requestFormat: "json";
643
+ parameters: {
644
+ bundleId: z.ZodNumber;
645
+ };
646
+ response: z.ZodVoid;
647
+ errors: {
648
+ status: number;
649
+ description: string;
650
+ schema: z.ZodVoid;
651
+ }[];
652
+ };
653
+ export declare const getV1bundlesdetails: {
654
+ method: "get";
655
+ path: string;
656
+ baseUrl: string;
657
+ requestFormat: "json";
658
+ parameters: {
659
+ bundleIds: z.ZodArray<z.ZodNumber, "many">;
660
+ };
661
+ response: z.ZodArray<z.ZodObject<{
662
+ id: z.ZodOptional<z.ZodNumber>;
663
+ name: z.ZodOptional<z.ZodString>;
664
+ description: z.ZodOptional<z.ZodString>;
665
+ bundleType: z.ZodOptional<z.ZodString>;
666
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
667
+ owned: z.ZodOptional<z.ZodBoolean>;
668
+ id: z.ZodOptional<z.ZodNumber>;
669
+ name: z.ZodOptional<z.ZodString>;
670
+ type: z.ZodOptional<z.ZodString>;
671
+ }, "strip", z.ZodTypeAny, {
672
+ owned?: boolean | undefined;
673
+ id?: number | undefined;
674
+ name?: string | undefined;
675
+ type?: string | undefined;
676
+ }, {
677
+ owned?: boolean | undefined;
678
+ id?: number | undefined;
679
+ name?: string | undefined;
680
+ type?: string | undefined;
681
+ }>, "many">>;
682
+ creator: z.ZodOptional<z.ZodObject<{
683
+ id: z.ZodOptional<z.ZodNumber>;
684
+ name: z.ZodOptional<z.ZodString>;
685
+ type: z.ZodOptional<z.ZodString>;
686
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
687
+ }, "strip", z.ZodTypeAny, {
688
+ id?: number | undefined;
689
+ name?: string | undefined;
690
+ type?: string | undefined;
691
+ hasVerifiedBadge?: boolean | undefined;
692
+ }, {
693
+ id?: number | undefined;
694
+ name?: string | undefined;
695
+ type?: string | undefined;
696
+ hasVerifiedBadge?: boolean | undefined;
697
+ }>>;
698
+ product: z.ZodOptional<z.ZodObject<{
699
+ id: z.ZodOptional<z.ZodNumber>;
700
+ type: z.ZodOptional<z.ZodString>;
701
+ isPublicDomain: z.ZodOptional<z.ZodBoolean>;
702
+ isForSale: z.ZodOptional<z.ZodBoolean>;
703
+ priceInRobux: z.ZodOptional<z.ZodNumber>;
704
+ isFree: z.ZodOptional<z.ZodBoolean>;
705
+ noPriceText: z.ZodOptional<z.ZodString>;
706
+ premiumPricing: z.ZodOptional<z.ZodObject<{
707
+ premiumDiscountPercentage: z.ZodOptional<z.ZodNumber>;
708
+ premiumPriceInRobux: z.ZodOptional<z.ZodNumber>;
709
+ }, "strip", z.ZodTypeAny, {
710
+ premiumDiscountPercentage?: number | undefined;
711
+ premiumPriceInRobux?: number | undefined;
712
+ }, {
713
+ premiumDiscountPercentage?: number | undefined;
714
+ premiumPriceInRobux?: number | undefined;
715
+ }>>;
716
+ }, "strip", z.ZodTypeAny, {
717
+ id?: number | undefined;
718
+ type?: string | undefined;
719
+ isPublicDomain?: boolean | undefined;
720
+ isForSale?: boolean | undefined;
721
+ priceInRobux?: number | undefined;
722
+ isFree?: boolean | undefined;
723
+ noPriceText?: string | undefined;
724
+ premiumPricing?: {
725
+ premiumDiscountPercentage?: number | undefined;
726
+ premiumPriceInRobux?: number | undefined;
727
+ } | undefined;
728
+ }, {
729
+ id?: number | undefined;
730
+ type?: string | undefined;
731
+ isPublicDomain?: boolean | undefined;
732
+ isForSale?: boolean | undefined;
733
+ priceInRobux?: number | undefined;
734
+ isFree?: boolean | undefined;
735
+ noPriceText?: string | undefined;
736
+ premiumPricing?: {
737
+ premiumDiscountPercentage?: number | undefined;
738
+ premiumPriceInRobux?: number | undefined;
739
+ } | undefined;
740
+ }>>;
741
+ itemRestrictions: z.ZodOptional<z.ZodArray<z.ZodUnion<[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>]>, "many">>;
742
+ }, "strip", z.ZodTypeAny, {
743
+ id?: number | undefined;
744
+ name?: string | undefined;
745
+ description?: string | undefined;
746
+ bundleType?: string | undefined;
747
+ items?: {
748
+ owned?: boolean | undefined;
749
+ id?: number | undefined;
750
+ name?: string | undefined;
751
+ type?: string | undefined;
752
+ }[] | undefined;
753
+ creator?: {
754
+ id?: number | undefined;
755
+ name?: string | undefined;
756
+ type?: string | undefined;
757
+ hasVerifiedBadge?: boolean | undefined;
758
+ } | undefined;
759
+ product?: {
760
+ id?: number | undefined;
761
+ type?: string | undefined;
762
+ isPublicDomain?: boolean | undefined;
763
+ isForSale?: boolean | undefined;
764
+ priceInRobux?: number | undefined;
765
+ isFree?: boolean | undefined;
766
+ noPriceText?: string | undefined;
767
+ premiumPricing?: {
768
+ premiumDiscountPercentage?: number | undefined;
769
+ premiumPriceInRobux?: number | undefined;
770
+ } | undefined;
771
+ } | undefined;
772
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
773
+ }, {
774
+ id?: number | undefined;
775
+ name?: string | undefined;
776
+ description?: string | undefined;
777
+ bundleType?: string | undefined;
778
+ items?: {
779
+ owned?: boolean | undefined;
780
+ id?: number | undefined;
781
+ name?: string | undefined;
782
+ type?: string | undefined;
783
+ }[] | undefined;
784
+ creator?: {
785
+ id?: number | undefined;
786
+ name?: string | undefined;
787
+ type?: string | undefined;
788
+ hasVerifiedBadge?: boolean | undefined;
789
+ } | undefined;
790
+ product?: {
791
+ id?: number | undefined;
792
+ type?: string | undefined;
793
+ isPublicDomain?: boolean | undefined;
794
+ isForSale?: boolean | undefined;
795
+ priceInRobux?: number | undefined;
796
+ isFree?: boolean | undefined;
797
+ noPriceText?: string | undefined;
798
+ premiumPricing?: {
799
+ premiumDiscountPercentage?: number | undefined;
800
+ premiumPriceInRobux?: number | undefined;
801
+ } | undefined;
802
+ } | undefined;
803
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
804
+ }>, "many">;
805
+ errors: {
806
+ status: number;
807
+ description: string;
808
+ schema: z.ZodVoid;
809
+ }[];
810
+ };
811
+ export declare const postV1catalogitemsdetails: {
812
+ method: "post";
813
+ path: string;
814
+ baseUrl: string;
815
+ requestFormat: "json";
816
+ parameters: {
817
+ body: z.ZodObject<{
818
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
819
+ itemType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
820
+ id: z.ZodOptional<z.ZodNumber>;
821
+ }, "strip", z.ZodTypeAny, {
822
+ itemType?: 2 | 1 | undefined;
823
+ id?: number | undefined;
824
+ }, {
825
+ itemType?: 2 | 1 | undefined;
826
+ id?: number | undefined;
827
+ }>, "many">>;
828
+ }, "strip", z.ZodTypeAny, {
829
+ items?: {
830
+ itemType?: 2 | 1 | undefined;
831
+ id?: number | undefined;
832
+ }[] | undefined;
833
+ }, {
834
+ items?: {
835
+ itemType?: 2 | 1 | undefined;
836
+ id?: number | undefined;
837
+ }[] | undefined;
838
+ }>;
839
+ };
840
+ response: z.ZodObject<{
841
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
842
+ id: z.ZodOptional<z.ZodNumber>;
843
+ itemType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
844
+ assetType: z.ZodOptional<z.ZodUnion<[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>, z.ZodLiteral<10>, z.ZodLiteral<11>, z.ZodLiteral<12>, z.ZodLiteral<13>, z.ZodLiteral<16>, z.ZodLiteral<17>, z.ZodLiteral<18>, z.ZodLiteral<19>, z.ZodLiteral<21>, z.ZodLiteral<22>, z.ZodLiteral<24>, z.ZodLiteral<25>, z.ZodLiteral<26>, z.ZodLiteral<27>, z.ZodLiteral<28>, z.ZodLiteral<29>, z.ZodLiteral<30>, z.ZodLiteral<31>, z.ZodLiteral<32>, z.ZodLiteral<33>, z.ZodLiteral<34>, z.ZodLiteral<35>, z.ZodLiteral<37>, z.ZodLiteral<38>, z.ZodLiteral<39>, z.ZodLiteral<40>, z.ZodLiteral<41>, z.ZodLiteral<42>, z.ZodLiteral<43>, z.ZodLiteral<44>, z.ZodLiteral<45>, z.ZodLiteral<46>, z.ZodLiteral<47>, z.ZodLiteral<48>, z.ZodLiteral<49>, z.ZodLiteral<50>, z.ZodLiteral<51>, z.ZodLiteral<52>, z.ZodLiteral<53>, z.ZodLiteral<54>, z.ZodLiteral<55>, z.ZodLiteral<56>, z.ZodLiteral<59>, z.ZodLiteral<60>, z.ZodLiteral<61>, z.ZodLiteral<62>, z.ZodLiteral<63>, z.ZodLiteral<64>, z.ZodLiteral<65>, z.ZodLiteral<66>, z.ZodLiteral<67>, z.ZodLiteral<68>, z.ZodLiteral<69>, z.ZodLiteral<70>, z.ZodLiteral<71>, z.ZodLiteral<72>, z.ZodLiteral<73>, z.ZodLiteral<74>, z.ZodLiteral<75>, z.ZodLiteral<76>, z.ZodLiteral<77>, z.ZodLiteral<78>, z.ZodLiteral<79>, z.ZodLiteral<80>]>>;
845
+ bundleType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>]>>;
846
+ name: z.ZodOptional<z.ZodString>;
847
+ description: z.ZodOptional<z.ZodString>;
848
+ productId: z.ZodOptional<z.ZodNumber>;
849
+ genres: z.ZodOptional<z.ZodArray<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>, z.ZodLiteral<10>, z.ZodLiteral<11>, z.ZodLiteral<12>, z.ZodLiteral<13>, z.ZodLiteral<14>]>, "many">>;
850
+ bundledItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
851
+ owned: z.ZodOptional<z.ZodBoolean>;
852
+ id: z.ZodOptional<z.ZodNumber>;
853
+ name: z.ZodOptional<z.ZodString>;
854
+ type: z.ZodOptional<z.ZodString>;
855
+ }, "strip", z.ZodTypeAny, {
856
+ owned?: boolean | undefined;
857
+ id?: number | undefined;
858
+ name?: string | undefined;
859
+ type?: string | undefined;
860
+ }, {
861
+ owned?: boolean | undefined;
862
+ id?: number | undefined;
863
+ name?: string | undefined;
864
+ type?: string | undefined;
865
+ }>, "many">>;
866
+ itemStatus: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<7>]>, "many">>;
867
+ itemRestrictions: z.ZodOptional<z.ZodArray<z.ZodUnion<[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>]>, "many">>;
868
+ creatorHasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
869
+ creatorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
870
+ creatorTargetId: z.ZodOptional<z.ZodNumber>;
871
+ creatorName: z.ZodOptional<z.ZodString>;
872
+ price: z.ZodOptional<z.ZodNumber>;
873
+ premiumPricing: z.ZodOptional<z.ZodObject<{
874
+ premiumDiscountPercentage: z.ZodOptional<z.ZodNumber>;
875
+ premiumPriceInRobux: z.ZodOptional<z.ZodNumber>;
876
+ }, "strip", z.ZodTypeAny, {
877
+ premiumDiscountPercentage?: number | undefined;
878
+ premiumPriceInRobux?: number | undefined;
879
+ }, {
880
+ premiumDiscountPercentage?: number | undefined;
881
+ premiumPriceInRobux?: number | undefined;
882
+ }>>;
883
+ lowestPrice: z.ZodOptional<z.ZodNumber>;
884
+ priceStatus: z.ZodOptional<z.ZodString>;
885
+ unitsAvailableForConsumption: z.ZodOptional<z.ZodNumber>;
886
+ purchaseCount: z.ZodOptional<z.ZodNumber>;
887
+ favoriteCount: z.ZodOptional<z.ZodNumber>;
888
+ offSaleDeadline: z.ZodOptional<z.ZodString>;
889
+ collectibleItemId: z.ZodOptional<z.ZodString>;
890
+ totalQuantity: z.ZodOptional<z.ZodNumber>;
891
+ saleLocationType: 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>]>>;
892
+ hasResellers: z.ZodOptional<z.ZodBoolean>;
893
+ isOffSale: z.ZodOptional<z.ZodBoolean>;
894
+ }, "strip", z.ZodTypeAny, {
895
+ id?: number | undefined;
896
+ itemType?: 2 | 1 | undefined;
897
+ assetType?: 2 | 1 | 3 | 4 | 8 | 16 | 32 | 64 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 50 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | undefined;
898
+ bundleType?: 2 | 1 | 3 | 4 | undefined;
899
+ name?: string | undefined;
900
+ description?: string | undefined;
901
+ productId?: number | undefined;
902
+ genres?: (0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 14)[] | undefined;
903
+ bundledItems?: {
904
+ owned?: boolean | undefined;
905
+ id?: number | undefined;
906
+ name?: string | undefined;
907
+ type?: string | undefined;
908
+ }[] | undefined;
909
+ itemStatus?: (2 | 1 | 7)[] | undefined;
910
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
911
+ creatorHasVerifiedBadge?: boolean | undefined;
912
+ creatorType?: 2 | 1 | undefined;
913
+ creatorTargetId?: number | undefined;
914
+ creatorName?: string | undefined;
915
+ price?: number | undefined;
916
+ premiumPricing?: {
917
+ premiumDiscountPercentage?: number | undefined;
918
+ premiumPriceInRobux?: number | undefined;
919
+ } | undefined;
920
+ lowestPrice?: number | undefined;
921
+ priceStatus?: string | undefined;
922
+ unitsAvailableForConsumption?: number | undefined;
923
+ purchaseCount?: number | undefined;
924
+ favoriteCount?: number | undefined;
925
+ offSaleDeadline?: string | undefined;
926
+ collectibleItemId?: string | undefined;
927
+ totalQuantity?: number | undefined;
928
+ saleLocationType?: 0 | 2 | 1 | 3 | 4 | 5 | 6 | undefined;
929
+ hasResellers?: boolean | undefined;
930
+ isOffSale?: boolean | undefined;
931
+ }, {
932
+ id?: number | undefined;
933
+ itemType?: 2 | 1 | undefined;
934
+ assetType?: 2 | 1 | 3 | 4 | 8 | 16 | 32 | 64 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 50 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | undefined;
935
+ bundleType?: 2 | 1 | 3 | 4 | undefined;
936
+ name?: string | undefined;
937
+ description?: string | undefined;
938
+ productId?: number | undefined;
939
+ genres?: (0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 14)[] | undefined;
940
+ bundledItems?: {
941
+ owned?: boolean | undefined;
942
+ id?: number | undefined;
943
+ name?: string | undefined;
944
+ type?: string | undefined;
945
+ }[] | undefined;
946
+ itemStatus?: (2 | 1 | 7)[] | undefined;
947
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
948
+ creatorHasVerifiedBadge?: boolean | undefined;
949
+ creatorType?: 2 | 1 | undefined;
950
+ creatorTargetId?: number | undefined;
951
+ creatorName?: string | undefined;
952
+ price?: number | undefined;
953
+ premiumPricing?: {
954
+ premiumDiscountPercentage?: number | undefined;
955
+ premiumPriceInRobux?: number | undefined;
956
+ } | undefined;
957
+ lowestPrice?: number | undefined;
958
+ priceStatus?: string | undefined;
959
+ unitsAvailableForConsumption?: number | undefined;
960
+ purchaseCount?: number | undefined;
961
+ favoriteCount?: number | undefined;
962
+ offSaleDeadline?: string | undefined;
963
+ collectibleItemId?: string | undefined;
964
+ totalQuantity?: number | undefined;
965
+ saleLocationType?: 0 | 2 | 1 | 3 | 4 | 5 | 6 | undefined;
966
+ hasResellers?: boolean | undefined;
967
+ isOffSale?: boolean | undefined;
968
+ }>, "many">>;
969
+ }, "strip", z.ZodTypeAny, {
970
+ data?: {
971
+ id?: number | undefined;
972
+ itemType?: 2 | 1 | undefined;
973
+ assetType?: 2 | 1 | 3 | 4 | 8 | 16 | 32 | 64 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 50 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | undefined;
974
+ bundleType?: 2 | 1 | 3 | 4 | undefined;
975
+ name?: string | undefined;
976
+ description?: string | undefined;
977
+ productId?: number | undefined;
978
+ genres?: (0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 14)[] | undefined;
979
+ bundledItems?: {
980
+ owned?: boolean | undefined;
981
+ id?: number | undefined;
982
+ name?: string | undefined;
983
+ type?: string | undefined;
984
+ }[] | undefined;
985
+ itemStatus?: (2 | 1 | 7)[] | undefined;
986
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
987
+ creatorHasVerifiedBadge?: boolean | undefined;
988
+ creatorType?: 2 | 1 | undefined;
989
+ creatorTargetId?: number | undefined;
990
+ creatorName?: string | undefined;
991
+ price?: number | undefined;
992
+ premiumPricing?: {
993
+ premiumDiscountPercentage?: number | undefined;
994
+ premiumPriceInRobux?: number | undefined;
995
+ } | undefined;
996
+ lowestPrice?: number | undefined;
997
+ priceStatus?: string | undefined;
998
+ unitsAvailableForConsumption?: number | undefined;
999
+ purchaseCount?: number | undefined;
1000
+ favoriteCount?: number | undefined;
1001
+ offSaleDeadline?: string | undefined;
1002
+ collectibleItemId?: string | undefined;
1003
+ totalQuantity?: number | undefined;
1004
+ saleLocationType?: 0 | 2 | 1 | 3 | 4 | 5 | 6 | undefined;
1005
+ hasResellers?: boolean | undefined;
1006
+ isOffSale?: boolean | undefined;
1007
+ }[] | undefined;
1008
+ }, {
1009
+ data?: {
1010
+ id?: number | undefined;
1011
+ itemType?: 2 | 1 | undefined;
1012
+ assetType?: 2 | 1 | 3 | 4 | 8 | 16 | 32 | 64 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 50 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | undefined;
1013
+ bundleType?: 2 | 1 | 3 | 4 | undefined;
1014
+ name?: string | undefined;
1015
+ description?: string | undefined;
1016
+ productId?: number | undefined;
1017
+ genres?: (0 | 2 | 1 | 3 | 4 | 8 | 5 | 6 | 10 | 7 | 12 | 9 | 11 | 13 | 14)[] | undefined;
1018
+ bundledItems?: {
1019
+ owned?: boolean | undefined;
1020
+ id?: number | undefined;
1021
+ name?: string | undefined;
1022
+ type?: string | undefined;
1023
+ }[] | undefined;
1024
+ itemStatus?: (2 | 1 | 7)[] | undefined;
1025
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
1026
+ creatorHasVerifiedBadge?: boolean | undefined;
1027
+ creatorType?: 2 | 1 | undefined;
1028
+ creatorTargetId?: number | undefined;
1029
+ creatorName?: string | undefined;
1030
+ price?: number | undefined;
1031
+ premiumPricing?: {
1032
+ premiumDiscountPercentage?: number | undefined;
1033
+ premiumPriceInRobux?: number | undefined;
1034
+ } | undefined;
1035
+ lowestPrice?: number | undefined;
1036
+ priceStatus?: string | undefined;
1037
+ unitsAvailableForConsumption?: number | undefined;
1038
+ purchaseCount?: number | undefined;
1039
+ favoriteCount?: number | undefined;
1040
+ offSaleDeadline?: string | undefined;
1041
+ collectibleItemId?: string | undefined;
1042
+ totalQuantity?: number | undefined;
1043
+ saleLocationType?: 0 | 2 | 1 | 3 | 4 | 5 | 6 | undefined;
1044
+ hasResellers?: boolean | undefined;
1045
+ isOffSale?: boolean | undefined;
1046
+ }[] | undefined;
1047
+ }>;
1048
+ errors: {
1049
+ status: number;
1050
+ description: string;
1051
+ schema: z.ZodVoid;
1052
+ }[];
1053
+ };
1054
+ export declare const getV1categories: {
1055
+ method: "get";
1056
+ path: string;
1057
+ baseUrl: string;
1058
+ requestFormat: "json";
1059
+ response: z.ZodRecord<z.ZodString, z.ZodNumber>;
1060
+ errors: never[];
1061
+ };
1062
+ export declare const getV1favoritesassetsAssetIdcount: {
1063
+ method: "get";
1064
+ path: string;
1065
+ baseUrl: string;
1066
+ requestFormat: "json";
1067
+ parameters: {
1068
+ assetId: z.ZodNumber;
1069
+ };
1070
+ response: z.ZodNumber;
1071
+ errors: {
1072
+ status: number;
1073
+ description: string;
1074
+ schema: z.ZodVoid;
1075
+ }[];
1076
+ };
1077
+ export declare const getV1favoritesbundlesBundleIdcount: {
1078
+ method: "get";
1079
+ path: string;
1080
+ baseUrl: string;
1081
+ requestFormat: "json";
1082
+ parameters: {
1083
+ bundleId: z.ZodNumber;
1084
+ };
1085
+ response: z.ZodNumber;
1086
+ errors: {
1087
+ status: number;
1088
+ description: string;
1089
+ schema: z.ZodVoid;
1090
+ }[];
1091
+ };
1092
+ export declare const deleteV1favoritesusersUserIdassetsAssetIdfavorite: {
1093
+ method: "delete";
1094
+ path: string;
1095
+ baseUrl: string;
1096
+ requestFormat: "json";
1097
+ parameters: {
1098
+ userId: z.ZodNumber;
1099
+ assetId: z.ZodNumber;
1100
+ };
1101
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1102
+ errors: {
1103
+ status: number;
1104
+ description: string;
1105
+ schema: z.ZodVoid;
1106
+ }[];
1107
+ };
1108
+ export declare const getV1favoritesusersUserIdassetsAssetIdfavorite: {
1109
+ method: "get";
1110
+ path: string;
1111
+ baseUrl: string;
1112
+ requestFormat: "json";
1113
+ parameters: {
1114
+ userId: z.ZodNumber;
1115
+ assetId: z.ZodNumber;
1116
+ };
1117
+ response: z.ZodObject<{
1118
+ assetId: z.ZodOptional<z.ZodNumber>;
1119
+ userId: z.ZodOptional<z.ZodNumber>;
1120
+ created: z.ZodOptional<z.ZodString>;
1121
+ }, "strip", z.ZodTypeAny, {
1122
+ assetId?: number | undefined;
1123
+ userId?: number | undefined;
1124
+ created?: string | undefined;
1125
+ }, {
1126
+ assetId?: number | undefined;
1127
+ userId?: number | undefined;
1128
+ created?: string | undefined;
1129
+ }>;
1130
+ errors: {
1131
+ status: number;
1132
+ description: string;
1133
+ schema: z.ZodVoid;
1134
+ }[];
1135
+ };
1136
+ export declare const postV1favoritesusersUserIdassetsAssetIdfavorite: {
1137
+ method: "post";
1138
+ path: string;
1139
+ baseUrl: string;
1140
+ requestFormat: "json";
1141
+ parameters: {
1142
+ userId: z.ZodNumber;
1143
+ assetId: z.ZodNumber;
1144
+ };
1145
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1146
+ errors: {
1147
+ status: number;
1148
+ description: string;
1149
+ schema: z.ZodVoid;
1150
+ }[];
1151
+ };
1152
+ export declare const deleteV1favoritesusersUserIdbundlesBundleIdfavorite: {
1153
+ method: "delete";
1154
+ path: string;
1155
+ baseUrl: string;
1156
+ requestFormat: "json";
1157
+ parameters: {
1158
+ userId: z.ZodNumber;
1159
+ bundleId: z.ZodNumber;
1160
+ };
1161
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1162
+ errors: {
1163
+ status: number;
1164
+ description: string;
1165
+ schema: z.ZodVoid;
1166
+ }[];
1167
+ };
1168
+ export declare const getV1favoritesusersUserIdbundlesBundleIdfavorite: {
1169
+ method: "get";
1170
+ path: string;
1171
+ baseUrl: string;
1172
+ requestFormat: "json";
1173
+ parameters: {
1174
+ userId: z.ZodNumber;
1175
+ bundleId: z.ZodNumber;
1176
+ };
1177
+ response: z.ZodObject<{
1178
+ bundleId: z.ZodOptional<z.ZodNumber>;
1179
+ userId: z.ZodOptional<z.ZodNumber>;
1180
+ created: z.ZodOptional<z.ZodString>;
1181
+ }, "strip", z.ZodTypeAny, {
1182
+ bundleId?: number | undefined;
1183
+ userId?: number | undefined;
1184
+ created?: string | undefined;
1185
+ }, {
1186
+ bundleId?: number | undefined;
1187
+ userId?: number | undefined;
1188
+ created?: string | undefined;
1189
+ }>;
1190
+ errors: {
1191
+ status: number;
1192
+ description: string;
1193
+ schema: z.ZodVoid;
1194
+ }[];
1195
+ };
1196
+ export declare const postV1favoritesusersUserIdbundlesBundleIdfavorite: {
1197
+ method: "post";
1198
+ path: string;
1199
+ baseUrl: string;
1200
+ requestFormat: "json";
1201
+ parameters: {
1202
+ userId: z.ZodNumber;
1203
+ bundleId: z.ZodNumber;
1204
+ };
1205
+ response: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1206
+ errors: {
1207
+ status: number;
1208
+ description: string;
1209
+ schema: z.ZodVoid;
1210
+ }[];
1211
+ };
1212
+ export declare const getV1favoritesusersUserIdfavoritesSubtypeIdbundles: {
1213
+ method: "get";
1214
+ path: string;
1215
+ baseUrl: string;
1216
+ requestFormat: "json";
1217
+ parameters: {
1218
+ userId: z.ZodNumber;
1219
+ subtypeId: z.ZodNumber;
1220
+ pageNumber: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1221
+ itemsPerPage: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1222
+ };
1223
+ response: z.ZodObject<{
1224
+ favorites: z.ZodOptional<z.ZodArray<z.ZodObject<{
1225
+ id: z.ZodOptional<z.ZodNumber>;
1226
+ name: z.ZodOptional<z.ZodString>;
1227
+ description: z.ZodOptional<z.ZodString>;
1228
+ bundleType: z.ZodOptional<z.ZodString>;
1229
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1230
+ owned: z.ZodOptional<z.ZodBoolean>;
1231
+ id: z.ZodOptional<z.ZodNumber>;
1232
+ name: z.ZodOptional<z.ZodString>;
1233
+ type: z.ZodOptional<z.ZodString>;
1234
+ }, "strip", z.ZodTypeAny, {
1235
+ owned?: boolean | undefined;
1236
+ id?: number | undefined;
1237
+ name?: string | undefined;
1238
+ type?: string | undefined;
1239
+ }, {
1240
+ owned?: boolean | undefined;
1241
+ id?: number | undefined;
1242
+ name?: string | undefined;
1243
+ type?: string | undefined;
1244
+ }>, "many">>;
1245
+ creator: z.ZodOptional<z.ZodObject<{
1246
+ id: z.ZodOptional<z.ZodNumber>;
1247
+ name: z.ZodOptional<z.ZodString>;
1248
+ type: z.ZodOptional<z.ZodString>;
1249
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
1250
+ }, "strip", z.ZodTypeAny, {
1251
+ id?: number | undefined;
1252
+ name?: string | undefined;
1253
+ type?: string | undefined;
1254
+ hasVerifiedBadge?: boolean | undefined;
1255
+ }, {
1256
+ id?: number | undefined;
1257
+ name?: string | undefined;
1258
+ type?: string | undefined;
1259
+ hasVerifiedBadge?: boolean | undefined;
1260
+ }>>;
1261
+ product: z.ZodOptional<z.ZodObject<{
1262
+ id: z.ZodOptional<z.ZodNumber>;
1263
+ type: z.ZodOptional<z.ZodString>;
1264
+ isPublicDomain: z.ZodOptional<z.ZodBoolean>;
1265
+ isForSale: z.ZodOptional<z.ZodBoolean>;
1266
+ priceInRobux: z.ZodOptional<z.ZodNumber>;
1267
+ isFree: z.ZodOptional<z.ZodBoolean>;
1268
+ noPriceText: z.ZodOptional<z.ZodString>;
1269
+ premiumPricing: z.ZodOptional<z.ZodObject<{
1270
+ premiumDiscountPercentage: z.ZodOptional<z.ZodNumber>;
1271
+ premiumPriceInRobux: z.ZodOptional<z.ZodNumber>;
1272
+ }, "strip", z.ZodTypeAny, {
1273
+ premiumDiscountPercentage?: number | undefined;
1274
+ premiumPriceInRobux?: number | undefined;
1275
+ }, {
1276
+ premiumDiscountPercentage?: number | undefined;
1277
+ premiumPriceInRobux?: number | undefined;
1278
+ }>>;
1279
+ }, "strip", z.ZodTypeAny, {
1280
+ id?: number | undefined;
1281
+ type?: string | undefined;
1282
+ isPublicDomain?: boolean | undefined;
1283
+ isForSale?: boolean | undefined;
1284
+ priceInRobux?: number | undefined;
1285
+ isFree?: boolean | undefined;
1286
+ noPriceText?: string | undefined;
1287
+ premiumPricing?: {
1288
+ premiumDiscountPercentage?: number | undefined;
1289
+ premiumPriceInRobux?: number | undefined;
1290
+ } | undefined;
1291
+ }, {
1292
+ id?: number | undefined;
1293
+ type?: string | undefined;
1294
+ isPublicDomain?: boolean | undefined;
1295
+ isForSale?: boolean | undefined;
1296
+ priceInRobux?: number | undefined;
1297
+ isFree?: boolean | undefined;
1298
+ noPriceText?: string | undefined;
1299
+ premiumPricing?: {
1300
+ premiumDiscountPercentage?: number | undefined;
1301
+ premiumPriceInRobux?: number | undefined;
1302
+ } | undefined;
1303
+ }>>;
1304
+ itemRestrictions: z.ZodOptional<z.ZodArray<z.ZodUnion<[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>]>, "many">>;
1305
+ }, "strip", z.ZodTypeAny, {
1306
+ id?: number | undefined;
1307
+ name?: string | undefined;
1308
+ description?: string | undefined;
1309
+ bundleType?: string | undefined;
1310
+ items?: {
1311
+ owned?: boolean | undefined;
1312
+ id?: number | undefined;
1313
+ name?: string | undefined;
1314
+ type?: string | undefined;
1315
+ }[] | undefined;
1316
+ creator?: {
1317
+ id?: number | undefined;
1318
+ name?: string | undefined;
1319
+ type?: string | undefined;
1320
+ hasVerifiedBadge?: boolean | undefined;
1321
+ } | undefined;
1322
+ product?: {
1323
+ id?: number | undefined;
1324
+ type?: string | undefined;
1325
+ isPublicDomain?: boolean | undefined;
1326
+ isForSale?: boolean | undefined;
1327
+ priceInRobux?: number | undefined;
1328
+ isFree?: boolean | undefined;
1329
+ noPriceText?: string | undefined;
1330
+ premiumPricing?: {
1331
+ premiumDiscountPercentage?: number | undefined;
1332
+ premiumPriceInRobux?: number | undefined;
1333
+ } | undefined;
1334
+ } | undefined;
1335
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
1336
+ }, {
1337
+ id?: number | undefined;
1338
+ name?: string | undefined;
1339
+ description?: string | undefined;
1340
+ bundleType?: string | undefined;
1341
+ items?: {
1342
+ owned?: boolean | undefined;
1343
+ id?: number | undefined;
1344
+ name?: string | undefined;
1345
+ type?: string | undefined;
1346
+ }[] | undefined;
1347
+ creator?: {
1348
+ id?: number | undefined;
1349
+ name?: string | undefined;
1350
+ type?: string | undefined;
1351
+ hasVerifiedBadge?: boolean | undefined;
1352
+ } | undefined;
1353
+ product?: {
1354
+ id?: number | undefined;
1355
+ type?: string | undefined;
1356
+ isPublicDomain?: boolean | undefined;
1357
+ isForSale?: boolean | undefined;
1358
+ priceInRobux?: number | undefined;
1359
+ isFree?: boolean | undefined;
1360
+ noPriceText?: string | undefined;
1361
+ premiumPricing?: {
1362
+ premiumDiscountPercentage?: number | undefined;
1363
+ premiumPriceInRobux?: number | undefined;
1364
+ } | undefined;
1365
+ } | undefined;
1366
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
1367
+ }>, "many">>;
1368
+ moreFavorites: z.ZodOptional<z.ZodBoolean>;
1369
+ }, "strip", z.ZodTypeAny, {
1370
+ favorites?: {
1371
+ id?: number | undefined;
1372
+ name?: string | undefined;
1373
+ description?: string | undefined;
1374
+ bundleType?: string | undefined;
1375
+ items?: {
1376
+ owned?: boolean | undefined;
1377
+ id?: number | undefined;
1378
+ name?: string | undefined;
1379
+ type?: string | undefined;
1380
+ }[] | undefined;
1381
+ creator?: {
1382
+ id?: number | undefined;
1383
+ name?: string | undefined;
1384
+ type?: string | undefined;
1385
+ hasVerifiedBadge?: boolean | undefined;
1386
+ } | undefined;
1387
+ product?: {
1388
+ id?: number | undefined;
1389
+ type?: string | undefined;
1390
+ isPublicDomain?: boolean | undefined;
1391
+ isForSale?: boolean | undefined;
1392
+ priceInRobux?: number | undefined;
1393
+ isFree?: boolean | undefined;
1394
+ noPriceText?: string | undefined;
1395
+ premiumPricing?: {
1396
+ premiumDiscountPercentage?: number | undefined;
1397
+ premiumPriceInRobux?: number | undefined;
1398
+ } | undefined;
1399
+ } | undefined;
1400
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
1401
+ }[] | undefined;
1402
+ moreFavorites?: boolean | undefined;
1403
+ }, {
1404
+ favorites?: {
1405
+ id?: number | undefined;
1406
+ name?: string | undefined;
1407
+ description?: string | undefined;
1408
+ bundleType?: string | undefined;
1409
+ items?: {
1410
+ owned?: boolean | undefined;
1411
+ id?: number | undefined;
1412
+ name?: string | undefined;
1413
+ type?: string | undefined;
1414
+ }[] | undefined;
1415
+ creator?: {
1416
+ id?: number | undefined;
1417
+ name?: string | undefined;
1418
+ type?: string | undefined;
1419
+ hasVerifiedBadge?: boolean | undefined;
1420
+ } | undefined;
1421
+ product?: {
1422
+ id?: number | undefined;
1423
+ type?: string | undefined;
1424
+ isPublicDomain?: boolean | undefined;
1425
+ isForSale?: boolean | undefined;
1426
+ priceInRobux?: number | undefined;
1427
+ isFree?: boolean | undefined;
1428
+ noPriceText?: string | undefined;
1429
+ premiumPricing?: {
1430
+ premiumDiscountPercentage?: number | undefined;
1431
+ premiumPriceInRobux?: number | undefined;
1432
+ } | undefined;
1433
+ } | undefined;
1434
+ itemRestrictions?: (2 | 1 | 3 | 4 | 8 | 5 | 6 | 7 | 9)[] | undefined;
1435
+ }[] | undefined;
1436
+ moreFavorites?: boolean | undefined;
1437
+ }>;
1438
+ errors: {
1439
+ status: number;
1440
+ description: string;
1441
+ schema: z.ZodVoid;
1442
+ }[];
1443
+ };
1444
+ export declare const getV1subcategories: {
1445
+ method: "get";
1446
+ path: string;
1447
+ baseUrl: string;
1448
+ requestFormat: "json";
1449
+ response: z.ZodRecord<z.ZodString, z.ZodNumber>;
1450
+ errors: never[];
1451
+ };
1452
+ export declare const postV1topicgetTopics: {
1453
+ method: "post";
1454
+ path: string;
1455
+ baseUrl: string;
1456
+ requestFormat: "json";
1457
+ parameters: {
1458
+ body: z.ZodObject<{
1459
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1460
+ TargetId: z.ZodOptional<z.ZodNumber>;
1461
+ ItemType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
1462
+ }, "strip", z.ZodTypeAny, {
1463
+ TargetId?: number | undefined;
1464
+ ItemType?: 0 | 2 | 1 | undefined;
1465
+ }, {
1466
+ TargetId?: number | undefined;
1467
+ ItemType?: 0 | 2 | 1 | undefined;
1468
+ }>, "many">>;
1469
+ selectTopics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1470
+ inputQuery: z.ZodOptional<z.ZodString>;
1471
+ maxResult: z.ZodOptional<z.ZodNumber>;
1472
+ genderType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
1473
+ }, "strip", z.ZodTypeAny, {
1474
+ items?: {
1475
+ TargetId?: number | undefined;
1476
+ ItemType?: 0 | 2 | 1 | undefined;
1477
+ }[] | undefined;
1478
+ selectTopics?: string[] | undefined;
1479
+ inputQuery?: string | undefined;
1480
+ maxResult?: number | undefined;
1481
+ genderType?: 2 | 1 | 3 | undefined;
1482
+ }, {
1483
+ items?: {
1484
+ TargetId?: number | undefined;
1485
+ ItemType?: 0 | 2 | 1 | undefined;
1486
+ }[] | undefined;
1487
+ selectTopics?: string[] | undefined;
1488
+ inputQuery?: string | undefined;
1489
+ maxResult?: number | undefined;
1490
+ genderType?: 2 | 1 | 3 | undefined;
1491
+ }>;
1492
+ };
1493
+ response: z.ZodObject<{
1494
+ topics: z.ZodOptional<z.ZodArray<z.ZodObject<{
1495
+ displayName: z.ZodOptional<z.ZodString>;
1496
+ originalTopicName: z.ZodOptional<z.ZodString>;
1497
+ }, "strip", z.ZodTypeAny, {
1498
+ displayName?: string | undefined;
1499
+ originalTopicName?: string | undefined;
1500
+ }, {
1501
+ displayName?: string | undefined;
1502
+ originalTopicName?: string | undefined;
1503
+ }>, "many">>;
1504
+ error: z.ZodOptional<z.ZodObject<{
1505
+ Message: z.ZodOptional<z.ZodString>;
1506
+ Code: z.ZodOptional<z.ZodNumber>;
1507
+ }, "strip", z.ZodTypeAny, {
1508
+ Message?: string | undefined;
1509
+ Code?: number | undefined;
1510
+ }, {
1511
+ Message?: string | undefined;
1512
+ Code?: number | undefined;
1513
+ }>>;
1514
+ }, "strip", z.ZodTypeAny, {
1515
+ topics?: {
1516
+ displayName?: string | undefined;
1517
+ originalTopicName?: string | undefined;
1518
+ }[] | undefined;
1519
+ error?: {
1520
+ Message?: string | undefined;
1521
+ Code?: number | undefined;
1522
+ } | undefined;
1523
+ }, {
1524
+ topics?: {
1525
+ displayName?: string | undefined;
1526
+ originalTopicName?: string | undefined;
1527
+ }[] | undefined;
1528
+ error?: {
1529
+ Message?: string | undefined;
1530
+ Code?: number | undefined;
1531
+ } | undefined;
1532
+ }>;
1533
+ errors: {
1534
+ status: number;
1535
+ description: string;
1536
+ schema: z.ZodVoid;
1537
+ }[];
1538
+ };
1539
+ export declare const getV1usersUserIdbundles: {
1540
+ method: "get";
1541
+ path: string;
1542
+ baseUrl: string;
1543
+ requestFormat: "json";
1544
+ parameters: {
1545
+ userId: z.ZodNumber;
1546
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
1547
+ cursor: z.ZodOptional<z.ZodString>;
1548
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
1549
+ };
1550
+ response: z.ZodObject<{
1551
+ previousPageCursor: z.ZodOptional<z.ZodString>;
1552
+ nextPageCursor: z.ZodOptional<z.ZodString>;
1553
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
1554
+ id: z.ZodOptional<z.ZodNumber>;
1555
+ name: z.ZodOptional<z.ZodString>;
1556
+ bundleType: z.ZodOptional<z.ZodString>;
1557
+ creator: z.ZodOptional<z.ZodObject<{
1558
+ id: z.ZodOptional<z.ZodNumber>;
1559
+ name: z.ZodOptional<z.ZodString>;
1560
+ type: z.ZodOptional<z.ZodString>;
1561
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
1562
+ }, "strip", z.ZodTypeAny, {
1563
+ id?: number | undefined;
1564
+ name?: string | undefined;
1565
+ type?: string | undefined;
1566
+ hasVerifiedBadge?: boolean | undefined;
1567
+ }, {
1568
+ id?: number | undefined;
1569
+ name?: string | undefined;
1570
+ type?: string | undefined;
1571
+ hasVerifiedBadge?: boolean | undefined;
1572
+ }>>;
1573
+ }, "strip", z.ZodTypeAny, {
1574
+ id?: number | undefined;
1575
+ name?: string | undefined;
1576
+ bundleType?: string | undefined;
1577
+ creator?: {
1578
+ id?: number | undefined;
1579
+ name?: string | undefined;
1580
+ type?: string | undefined;
1581
+ hasVerifiedBadge?: boolean | undefined;
1582
+ } | undefined;
1583
+ }, {
1584
+ id?: number | undefined;
1585
+ name?: string | undefined;
1586
+ bundleType?: string | undefined;
1587
+ creator?: {
1588
+ id?: number | undefined;
1589
+ name?: string | undefined;
1590
+ type?: string | undefined;
1591
+ hasVerifiedBadge?: boolean | undefined;
1592
+ } | undefined;
1593
+ }>, "many">>;
1594
+ }, "strip", z.ZodTypeAny, {
1595
+ previousPageCursor?: string | undefined;
1596
+ nextPageCursor?: string | undefined;
1597
+ data?: {
1598
+ id?: number | undefined;
1599
+ name?: string | undefined;
1600
+ bundleType?: string | undefined;
1601
+ creator?: {
1602
+ id?: number | undefined;
1603
+ name?: string | undefined;
1604
+ type?: string | undefined;
1605
+ hasVerifiedBadge?: boolean | undefined;
1606
+ } | undefined;
1607
+ }[] | undefined;
1608
+ }, {
1609
+ previousPageCursor?: string | undefined;
1610
+ nextPageCursor?: string | undefined;
1611
+ data?: {
1612
+ id?: number | undefined;
1613
+ name?: string | undefined;
1614
+ bundleType?: string | undefined;
1615
+ creator?: {
1616
+ id?: number | undefined;
1617
+ name?: string | undefined;
1618
+ type?: string | undefined;
1619
+ hasVerifiedBadge?: boolean | undefined;
1620
+ } | undefined;
1621
+ }[] | undefined;
1622
+ }>;
1623
+ errors: {
1624
+ status: number;
1625
+ description: string;
1626
+ schema: z.ZodVoid;
1627
+ }[];
1628
+ };
1629
+ export declare const getV1usersUserIdbundlesBundleType: {
1630
+ method: "get";
1631
+ path: string;
1632
+ baseUrl: string;
1633
+ requestFormat: "json";
1634
+ parameters: {
1635
+ userId: z.ZodNumber;
1636
+ bundleType: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>]>;
1637
+ limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
1638
+ cursor: z.ZodOptional<z.ZodString>;
1639
+ sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
1640
+ };
1641
+ response: z.ZodObject<{
1642
+ previousPageCursor: z.ZodOptional<z.ZodString>;
1643
+ nextPageCursor: z.ZodOptional<z.ZodString>;
1644
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
1645
+ id: z.ZodOptional<z.ZodNumber>;
1646
+ name: z.ZodOptional<z.ZodString>;
1647
+ bundleType: z.ZodOptional<z.ZodString>;
1648
+ creator: z.ZodOptional<z.ZodObject<{
1649
+ id: z.ZodOptional<z.ZodNumber>;
1650
+ name: z.ZodOptional<z.ZodString>;
1651
+ type: z.ZodOptional<z.ZodString>;
1652
+ hasVerifiedBadge: z.ZodOptional<z.ZodBoolean>;
1653
+ }, "strip", z.ZodTypeAny, {
1654
+ id?: number | undefined;
1655
+ name?: string | undefined;
1656
+ type?: string | undefined;
1657
+ hasVerifiedBadge?: boolean | undefined;
1658
+ }, {
1659
+ id?: number | undefined;
1660
+ name?: string | undefined;
1661
+ type?: string | undefined;
1662
+ hasVerifiedBadge?: boolean | undefined;
1663
+ }>>;
1664
+ }, "strip", z.ZodTypeAny, {
1665
+ id?: number | undefined;
1666
+ name?: string | undefined;
1667
+ bundleType?: string | undefined;
1668
+ creator?: {
1669
+ id?: number | undefined;
1670
+ name?: string | undefined;
1671
+ type?: string | undefined;
1672
+ hasVerifiedBadge?: boolean | undefined;
1673
+ } | undefined;
1674
+ }, {
1675
+ id?: number | undefined;
1676
+ name?: string | undefined;
1677
+ bundleType?: string | undefined;
1678
+ creator?: {
1679
+ id?: number | undefined;
1680
+ name?: string | undefined;
1681
+ type?: string | undefined;
1682
+ hasVerifiedBadge?: boolean | undefined;
1683
+ } | undefined;
1684
+ }>, "many">>;
1685
+ }, "strip", z.ZodTypeAny, {
1686
+ previousPageCursor?: string | undefined;
1687
+ nextPageCursor?: string | undefined;
1688
+ data?: {
1689
+ id?: number | undefined;
1690
+ name?: string | undefined;
1691
+ bundleType?: string | undefined;
1692
+ creator?: {
1693
+ id?: number | undefined;
1694
+ name?: string | undefined;
1695
+ type?: string | undefined;
1696
+ hasVerifiedBadge?: boolean | undefined;
1697
+ } | undefined;
1698
+ }[] | undefined;
1699
+ }, {
1700
+ previousPageCursor?: string | undefined;
1701
+ nextPageCursor?: string | undefined;
1702
+ data?: {
1703
+ id?: number | undefined;
1704
+ name?: string | undefined;
1705
+ bundleType?: string | undefined;
1706
+ creator?: {
1707
+ id?: number | undefined;
1708
+ name?: string | undefined;
1709
+ type?: string | undefined;
1710
+ hasVerifiedBadge?: boolean | undefined;
1711
+ } | undefined;
1712
+ }[] | undefined;
1713
+ }>;
1714
+ errors: never[];
1715
+ };