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.
- package/lib/endpoints/accountinformationv1.d.ts +551 -0
- package/lib/endpoints/accountinformationv1.js +652 -0
- package/lib/endpoints/accountsettingsv1.d.ts +548 -0
- package/lib/endpoints/accountsettingsv1.js +712 -0
- package/lib/endpoints/assetdeliveryv1.d.ts +599 -0
- package/lib/endpoints/assetdeliveryv1.js +268 -0
- package/lib/endpoints/assetdeliveryv2.d.ts +780 -0
- package/lib/endpoints/assetdeliveryv2.js +271 -0
- package/lib/endpoints/authv1.d.ts +1328 -0
- package/lib/endpoints/authv1.js +1168 -0
- package/lib/endpoints/authv2.d.ts +1239 -0
- package/lib/endpoints/authv2.js +1057 -0
- package/lib/endpoints/authv3.d.ts +35 -0
- package/lib/endpoints/authv3.js +41 -0
- package/lib/endpoints/avatarv1.d.ts +1841 -0
- package/lib/endpoints/avatarv1.js +726 -0
- package/lib/endpoints/avatarv2.d.ts +1077 -0
- package/lib/endpoints/avatarv2.js +316 -0
- package/lib/endpoints/avatarv3.d.ts +656 -0
- package/lib/endpoints/avatarv3.js +219 -0
- package/lib/endpoints/badgesv1.d.ts +641 -0
- package/lib/endpoints/badgesv1.js +345 -0
- package/lib/endpoints/catalogv1.d.ts +1715 -0
- package/lib/endpoints/catalogv1.js +792 -0
- package/lib/endpoints/chatv2.d.ts +2179 -0
- package/lib/endpoints/chatv2.js +721 -0
- package/lib/endpoints/developv1.d.ts +2097 -0
- package/lib/endpoints/developv1.js +1537 -0
- package/lib/endpoints/developv2.d.ts +619 -0
- package/lib/endpoints/developv2.js +316 -0
- package/lib/endpoints/economyv1.d.ts +20 -0
- package/lib/endpoints/economyv1.js +28 -0
- package/lib/endpoints/friendsv1.d.ts +1093 -0
- package/lib/endpoints/friendsv1.js +818 -0
- package/lib/endpoints/gamesv1.d.ts +2749 -0
- package/lib/endpoints/gamesv1.js +1294 -0
- package/lib/endpoints/gamesv2.d.ts +582 -0
- package/lib/endpoints/gamesv2.js +258 -0
- package/lib/endpoints/groupsv1.d.ts +5528 -0
- package/lib/endpoints/groupsv1.js +2434 -0
- package/lib/endpoints/groupsv2.d.ts +530 -0
- package/lib/endpoints/groupsv2.js +201 -0
- package/lib/endpoints/inventoryv1.d.ts +436 -0
- package/lib/endpoints/inventoryv1.js +434 -0
- package/lib/endpoints/inventoryv2.d.ts +256 -0
- package/lib/endpoints/inventoryv2.js +241 -0
- package/lib/endpoints/presencev1.d.ts +134 -0
- package/lib/endpoints/presencev1.js +93 -0
- package/lib/endpoints/privatemessagesv1.d.ts +620 -0
- package/lib/endpoints/privatemessagesv1.js +338 -0
- package/lib/endpoints/thumbnailsv1.d.ts +897 -0
- package/lib/endpoints/thumbnailsv1.js +560 -0
- package/lib/endpoints/tradesv1.d.ts +473 -0
- package/lib/endpoints/tradesv1.js +403 -0
- package/lib/endpoints/translationsv1.d.ts +80 -0
- package/lib/endpoints/translationsv1.js +122 -0
- package/lib/endpoints/usersv1.d.ts +391 -0
- package/lib/endpoints/usersv1.js +344 -0
- package/lib/index.d.ts +85 -0
- package/lib/index.js +293 -0
- package/package.json +39 -0
- package/readme.md +99 -0
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getV1usersUserIditemsItemTypeItemTargetIdisOwned = exports.getV1usersUserIditemsItemTypeItemTargetId = exports.getV1usersUserIdinventoryAssetType = exports.getV1usersUserIdcategoriesfavorites = exports.getV1usersUserIdcategories = exports.getV1usersUserIdcanViewInventory = exports.getV1usersUserIdassetscollectibles = exports.getV1packagesPackageIdassets = exports.postV1collectionsitemsItemTypeItemTargetId = exports.deleteV1collectionsitemsItemTypeItemTargetId = void 0;
|
|
4
|
+
var zod_1 = require("zod");
|
|
5
|
+
var Roblox_Inventory_Api_Models_AssetIdListModel = zod_1.z.object({ assetIds: zod_1.z.array(zod_1.z.number()) }).partial();
|
|
6
|
+
var Roblox_Inventory_Api_Models_CollectibleUserAssetModel = zod_1.z
|
|
7
|
+
.object({
|
|
8
|
+
userAssetId: zod_1.z.number().int(),
|
|
9
|
+
serialNumber: zod_1.z.number().int(),
|
|
10
|
+
assetId: zod_1.z.number().int(),
|
|
11
|
+
name: zod_1.z.string(),
|
|
12
|
+
recentAveragePrice: zod_1.z.number().int(),
|
|
13
|
+
originalPrice: zod_1.z.number().int(),
|
|
14
|
+
assetStock: zod_1.z.number().int(),
|
|
15
|
+
buildersClubMembershipType: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3), zod_1.z.literal(4)]),
|
|
16
|
+
isOnHold: zod_1.z.boolean(),
|
|
17
|
+
})
|
|
18
|
+
.partial();
|
|
19
|
+
var Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_CollectibleUserAssetModel_ = zod_1.z
|
|
20
|
+
.object({
|
|
21
|
+
previousPageCursor: zod_1.z.string(),
|
|
22
|
+
nextPageCursor: zod_1.z.string(),
|
|
23
|
+
data: zod_1.z.array(Roblox_Inventory_Api_Models_CollectibleUserAssetModel),
|
|
24
|
+
})
|
|
25
|
+
.partial();
|
|
26
|
+
var Roblox_Inventory_Api_Models_CanViewInventoryResponse = zod_1.z.object({ canView: zod_1.z.boolean() }).partial();
|
|
27
|
+
var Roblox_Inventory_Api_AssetsExplorerCategoryItemModel = zod_1.z
|
|
28
|
+
.object({
|
|
29
|
+
name: zod_1.z.string(),
|
|
30
|
+
displayName: zod_1.z.string(),
|
|
31
|
+
filter: zod_1.z.string(),
|
|
32
|
+
id: zod_1.z.number().int(),
|
|
33
|
+
type: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3)]),
|
|
34
|
+
categoryType: zod_1.z.string(),
|
|
35
|
+
})
|
|
36
|
+
.partial();
|
|
37
|
+
var Roblox_Inventory_Api_AssetsExplorerCategoryModel = zod_1.z
|
|
38
|
+
.object({
|
|
39
|
+
name: zod_1.z.string(),
|
|
40
|
+
displayName: zod_1.z.string(),
|
|
41
|
+
categoryType: zod_1.z.string(),
|
|
42
|
+
items: zod_1.z.array(Roblox_Inventory_Api_AssetsExplorerCategoryItemModel),
|
|
43
|
+
})
|
|
44
|
+
.partial();
|
|
45
|
+
var Roblox_Inventory_Api_CategoriesModel = zod_1.z
|
|
46
|
+
.object({
|
|
47
|
+
categories: zod_1.z.array(Roblox_Inventory_Api_AssetsExplorerCategoryModel),
|
|
48
|
+
})
|
|
49
|
+
.partial();
|
|
50
|
+
var Roblox_Inventory_Api_Models_InventoryPageResponse = zod_1.z
|
|
51
|
+
.object({
|
|
52
|
+
data: zod_1.z.array(zod_1.z.unknown()),
|
|
53
|
+
total: zod_1.z.number().int(),
|
|
54
|
+
includesAccessories: zod_1.z.boolean(),
|
|
55
|
+
})
|
|
56
|
+
.partial();
|
|
57
|
+
var Roblox_Inventory_Api_Models_IItemModel = zod_1.z
|
|
58
|
+
.object({
|
|
59
|
+
Id: zod_1.z.number().int(),
|
|
60
|
+
Name: zod_1.z.string(),
|
|
61
|
+
Type: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3)]),
|
|
62
|
+
InstanceId: zod_1.z.number().int(),
|
|
63
|
+
})
|
|
64
|
+
.partial();
|
|
65
|
+
var Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_IItemModel_ = zod_1.z
|
|
66
|
+
.object({
|
|
67
|
+
previousPageCursor: zod_1.z.string(),
|
|
68
|
+
nextPageCursor: zod_1.z.string(),
|
|
69
|
+
data: zod_1.z.array(Roblox_Inventory_Api_Models_IItemModel),
|
|
70
|
+
})
|
|
71
|
+
.partial();
|
|
72
|
+
var Roblox_Web_WebAPI_ApiEmptyResponseModel = zod_1.z.object({}).partial();
|
|
73
|
+
var schemas = {
|
|
74
|
+
Roblox_Inventory_Api_Models_AssetIdListModel: Roblox_Inventory_Api_Models_AssetIdListModel,
|
|
75
|
+
Roblox_Inventory_Api_Models_CollectibleUserAssetModel: Roblox_Inventory_Api_Models_CollectibleUserAssetModel,
|
|
76
|
+
Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_CollectibleUserAssetModel_: Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_CollectibleUserAssetModel_,
|
|
77
|
+
Roblox_Inventory_Api_Models_CanViewInventoryResponse: Roblox_Inventory_Api_Models_CanViewInventoryResponse,
|
|
78
|
+
Roblox_Inventory_Api_AssetsExplorerCategoryItemModel: Roblox_Inventory_Api_AssetsExplorerCategoryItemModel,
|
|
79
|
+
Roblox_Inventory_Api_AssetsExplorerCategoryModel: Roblox_Inventory_Api_AssetsExplorerCategoryModel,
|
|
80
|
+
Roblox_Inventory_Api_CategoriesModel: Roblox_Inventory_Api_CategoriesModel,
|
|
81
|
+
Roblox_Inventory_Api_Models_InventoryPageResponse: Roblox_Inventory_Api_Models_InventoryPageResponse,
|
|
82
|
+
Roblox_Inventory_Api_Models_IItemModel: Roblox_Inventory_Api_Models_IItemModel,
|
|
83
|
+
Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_IItemModel_: Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_IItemModel_,
|
|
84
|
+
Roblox_Web_WebAPI_ApiEmptyResponseModel: Roblox_Web_WebAPI_ApiEmptyResponseModel,
|
|
85
|
+
};
|
|
86
|
+
exports.deleteV1collectionsitemsItemTypeItemTargetId = {
|
|
87
|
+
method: 'delete',
|
|
88
|
+
path: '/v1/collections/items/:itemType/:itemTargetId',
|
|
89
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
90
|
+
requestFormat: 'json',
|
|
91
|
+
parameters: {
|
|
92
|
+
itemType: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3)]),
|
|
93
|
+
itemTargetId: zod_1.z.number().int(),
|
|
94
|
+
},
|
|
95
|
+
response: zod_1.z.object({}).partial(),
|
|
96
|
+
errors: [
|
|
97
|
+
{
|
|
98
|
+
status: 400,
|
|
99
|
+
description: "1: The item type does not exist.\n2: The asset does not exist.\n3: The bundle does not exist.",
|
|
100
|
+
schema: zod_1.z.void(),
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
status: 401,
|
|
104
|
+
description: "0: Authorization has been denied for this request.",
|
|
105
|
+
schema: zod_1.z.void(),
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
status: 403,
|
|
109
|
+
description: "0: Token Validation Failed\n8: The item is not in the collection.",
|
|
110
|
+
schema: zod_1.z.void(),
|
|
111
|
+
},
|
|
112
|
+
],
|
|
113
|
+
};
|
|
114
|
+
exports.postV1collectionsitemsItemTypeItemTargetId = {
|
|
115
|
+
method: 'post',
|
|
116
|
+
path: '/v1/collections/items/:itemType/:itemTargetId',
|
|
117
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
118
|
+
requestFormat: 'json',
|
|
119
|
+
parameters: {
|
|
120
|
+
itemType: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3)]),
|
|
121
|
+
itemTargetId: zod_1.z.number().int(),
|
|
122
|
+
},
|
|
123
|
+
response: zod_1.z.object({}).partial(),
|
|
124
|
+
errors: [
|
|
125
|
+
{
|
|
126
|
+
status: 400,
|
|
127
|
+
description: "1: The item type does not exist.\n2: The asset does not exist.\n3: The bundle does not exist.",
|
|
128
|
+
schema: zod_1.z.void(),
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
status: 401,
|
|
132
|
+
description: "0: Authorization has been denied for this request.",
|
|
133
|
+
schema: zod_1.z.void(),
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
status: 403,
|
|
137
|
+
description: "0: Token Validation Failed\n4: You don't own the specified item.\n5: Assets of this type are not allowed in collections.\n6: Items of this type are not allowed in collections.\n7: The item is already in the collection.\n9: The collection is full.",
|
|
138
|
+
schema: zod_1.z.void(),
|
|
139
|
+
},
|
|
140
|
+
],
|
|
141
|
+
};
|
|
142
|
+
exports.getV1packagesPackageIdassets = {
|
|
143
|
+
method: 'get',
|
|
144
|
+
path: '/v1/packages/:packageId/assets',
|
|
145
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
146
|
+
requestFormat: 'json',
|
|
147
|
+
parameters: {
|
|
148
|
+
packageID: zod_1.z.number().int(),
|
|
149
|
+
},
|
|
150
|
+
response: Roblox_Inventory_Api_Models_AssetIdListModel,
|
|
151
|
+
errors: [],
|
|
152
|
+
};
|
|
153
|
+
exports.getV1usersUserIdassetscollectibles = {
|
|
154
|
+
method: 'get',
|
|
155
|
+
path: '/v1/users/:userId/assets/collectibles',
|
|
156
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
157
|
+
requestFormat: 'json',
|
|
158
|
+
parameters: {
|
|
159
|
+
userId: zod_1.z.number().int(),
|
|
160
|
+
assetType: zod_1.z
|
|
161
|
+
.union([
|
|
162
|
+
zod_1.z.literal(1),
|
|
163
|
+
zod_1.z.literal(2),
|
|
164
|
+
zod_1.z.literal(3),
|
|
165
|
+
zod_1.z.literal(4),
|
|
166
|
+
zod_1.z.literal(5),
|
|
167
|
+
zod_1.z.literal(6),
|
|
168
|
+
zod_1.z.literal(7),
|
|
169
|
+
zod_1.z.literal(8),
|
|
170
|
+
zod_1.z.literal(9),
|
|
171
|
+
zod_1.z.literal(10),
|
|
172
|
+
zod_1.z.literal(11),
|
|
173
|
+
zod_1.z.literal(12),
|
|
174
|
+
zod_1.z.literal(13),
|
|
175
|
+
zod_1.z.literal(16),
|
|
176
|
+
zod_1.z.literal(17),
|
|
177
|
+
zod_1.z.literal(18),
|
|
178
|
+
zod_1.z.literal(19),
|
|
179
|
+
zod_1.z.literal(21),
|
|
180
|
+
zod_1.z.literal(22),
|
|
181
|
+
zod_1.z.literal(24),
|
|
182
|
+
zod_1.z.literal(25),
|
|
183
|
+
zod_1.z.literal(26),
|
|
184
|
+
zod_1.z.literal(27),
|
|
185
|
+
zod_1.z.literal(28),
|
|
186
|
+
zod_1.z.literal(29),
|
|
187
|
+
zod_1.z.literal(30),
|
|
188
|
+
zod_1.z.literal(31),
|
|
189
|
+
zod_1.z.literal(32),
|
|
190
|
+
zod_1.z.literal(33),
|
|
191
|
+
zod_1.z.literal(34),
|
|
192
|
+
zod_1.z.literal(35),
|
|
193
|
+
zod_1.z.literal(37),
|
|
194
|
+
zod_1.z.literal(38),
|
|
195
|
+
zod_1.z.literal(39),
|
|
196
|
+
zod_1.z.literal(40),
|
|
197
|
+
zod_1.z.literal(41),
|
|
198
|
+
zod_1.z.literal(42),
|
|
199
|
+
zod_1.z.literal(43),
|
|
200
|
+
zod_1.z.literal(44),
|
|
201
|
+
zod_1.z.literal(45),
|
|
202
|
+
zod_1.z.literal(46),
|
|
203
|
+
zod_1.z.literal(47),
|
|
204
|
+
zod_1.z.literal(48),
|
|
205
|
+
zod_1.z.literal(49),
|
|
206
|
+
zod_1.z.literal(50),
|
|
207
|
+
zod_1.z.literal(51),
|
|
208
|
+
zod_1.z.literal(52),
|
|
209
|
+
zod_1.z.literal(53),
|
|
210
|
+
zod_1.z.literal(54),
|
|
211
|
+
zod_1.z.literal(55),
|
|
212
|
+
zod_1.z.literal(56),
|
|
213
|
+
zod_1.z.literal(59),
|
|
214
|
+
zod_1.z.literal(60),
|
|
215
|
+
zod_1.z.literal(61),
|
|
216
|
+
zod_1.z.literal(62),
|
|
217
|
+
zod_1.z.literal(63),
|
|
218
|
+
zod_1.z.literal(64),
|
|
219
|
+
zod_1.z.literal(65),
|
|
220
|
+
zod_1.z.literal(66),
|
|
221
|
+
zod_1.z.literal(67),
|
|
222
|
+
zod_1.z.literal(68),
|
|
223
|
+
zod_1.z.literal(69),
|
|
224
|
+
zod_1.z.literal(70),
|
|
225
|
+
zod_1.z.literal(71),
|
|
226
|
+
zod_1.z.literal(72),
|
|
227
|
+
zod_1.z.literal(73),
|
|
228
|
+
zod_1.z.literal(74),
|
|
229
|
+
zod_1.z.literal(75),
|
|
230
|
+
zod_1.z.literal(76),
|
|
231
|
+
zod_1.z.literal(77),
|
|
232
|
+
zod_1.z.literal(78),
|
|
233
|
+
zod_1.z.literal(79),
|
|
234
|
+
zod_1.z.literal(80),
|
|
235
|
+
])
|
|
236
|
+
.optional(),
|
|
237
|
+
limit: zod_1.z
|
|
238
|
+
.union([zod_1.z.literal(10), zod_1.z.literal(25), zod_1.z.literal(50), zod_1.z.literal(100)])
|
|
239
|
+
.optional()
|
|
240
|
+
.default(10),
|
|
241
|
+
cursor: zod_1.z.string().optional(),
|
|
242
|
+
sortOrder: zod_1.z.enum(['Asc', 'Desc']).optional().default('Asc'),
|
|
243
|
+
},
|
|
244
|
+
response: Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_CollectibleUserAssetModel_,
|
|
245
|
+
errors: [
|
|
246
|
+
{
|
|
247
|
+
status: 400,
|
|
248
|
+
description: "The specified asset type(s) are invalid.",
|
|
249
|
+
schema: zod_1.z.void(),
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
status: 403,
|
|
253
|
+
description: "The specified user's inventory is hidden.",
|
|
254
|
+
schema: zod_1.z.void(),
|
|
255
|
+
},
|
|
256
|
+
],
|
|
257
|
+
};
|
|
258
|
+
exports.getV1usersUserIdcanViewInventory = {
|
|
259
|
+
method: 'get',
|
|
260
|
+
path: '/v1/users/:userId/can-view-inventory',
|
|
261
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
262
|
+
requestFormat: 'json',
|
|
263
|
+
parameters: {
|
|
264
|
+
userId: zod_1.z.number().int(),
|
|
265
|
+
},
|
|
266
|
+
response: zod_1.z.object({ canView: zod_1.z.boolean() }).partial(),
|
|
267
|
+
errors: [
|
|
268
|
+
{
|
|
269
|
+
status: 400,
|
|
270
|
+
description: "1: The specified user does not exist!",
|
|
271
|
+
schema: zod_1.z.void(),
|
|
272
|
+
},
|
|
273
|
+
],
|
|
274
|
+
};
|
|
275
|
+
exports.getV1usersUserIdcategories = {
|
|
276
|
+
method: 'get',
|
|
277
|
+
path: '/v1/users/:userId/categories',
|
|
278
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
279
|
+
requestFormat: 'json',
|
|
280
|
+
parameters: {
|
|
281
|
+
userId: zod_1.z.number().int(),
|
|
282
|
+
},
|
|
283
|
+
response: Roblox_Inventory_Api_CategoriesModel,
|
|
284
|
+
errors: [],
|
|
285
|
+
};
|
|
286
|
+
exports.getV1usersUserIdcategoriesfavorites = {
|
|
287
|
+
method: 'get',
|
|
288
|
+
path: '/v1/users/:userId/categories/favorites',
|
|
289
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
290
|
+
requestFormat: 'json',
|
|
291
|
+
parameters: {
|
|
292
|
+
userId: zod_1.z.number().int(),
|
|
293
|
+
},
|
|
294
|
+
response: Roblox_Inventory_Api_CategoriesModel,
|
|
295
|
+
errors: [],
|
|
296
|
+
};
|
|
297
|
+
exports.getV1usersUserIdinventoryAssetType = {
|
|
298
|
+
method: 'get',
|
|
299
|
+
path: '/v1/users/:userId/inventory/:assetType',
|
|
300
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
301
|
+
requestFormat: 'json',
|
|
302
|
+
parameters: {
|
|
303
|
+
userId: zod_1.z.number().int(),
|
|
304
|
+
assetType: zod_1.z.union([
|
|
305
|
+
zod_1.z.literal(1),
|
|
306
|
+
zod_1.z.literal(2),
|
|
307
|
+
zod_1.z.literal(3),
|
|
308
|
+
zod_1.z.literal(4),
|
|
309
|
+
zod_1.z.literal(5),
|
|
310
|
+
zod_1.z.literal(6),
|
|
311
|
+
zod_1.z.literal(7),
|
|
312
|
+
zod_1.z.literal(8),
|
|
313
|
+
zod_1.z.literal(9),
|
|
314
|
+
zod_1.z.literal(10),
|
|
315
|
+
zod_1.z.literal(11),
|
|
316
|
+
zod_1.z.literal(12),
|
|
317
|
+
zod_1.z.literal(13),
|
|
318
|
+
zod_1.z.literal(16),
|
|
319
|
+
zod_1.z.literal(17),
|
|
320
|
+
zod_1.z.literal(18),
|
|
321
|
+
zod_1.z.literal(19),
|
|
322
|
+
zod_1.z.literal(21),
|
|
323
|
+
zod_1.z.literal(22),
|
|
324
|
+
zod_1.z.literal(24),
|
|
325
|
+
zod_1.z.literal(25),
|
|
326
|
+
zod_1.z.literal(26),
|
|
327
|
+
zod_1.z.literal(27),
|
|
328
|
+
zod_1.z.literal(28),
|
|
329
|
+
zod_1.z.literal(29),
|
|
330
|
+
zod_1.z.literal(30),
|
|
331
|
+
zod_1.z.literal(31),
|
|
332
|
+
zod_1.z.literal(32),
|
|
333
|
+
zod_1.z.literal(33),
|
|
334
|
+
zod_1.z.literal(34),
|
|
335
|
+
zod_1.z.literal(35),
|
|
336
|
+
zod_1.z.literal(37),
|
|
337
|
+
zod_1.z.literal(38),
|
|
338
|
+
zod_1.z.literal(39),
|
|
339
|
+
zod_1.z.literal(40),
|
|
340
|
+
zod_1.z.literal(41),
|
|
341
|
+
zod_1.z.literal(42),
|
|
342
|
+
zod_1.z.literal(43),
|
|
343
|
+
zod_1.z.literal(44),
|
|
344
|
+
zod_1.z.literal(45),
|
|
345
|
+
zod_1.z.literal(46),
|
|
346
|
+
zod_1.z.literal(47),
|
|
347
|
+
zod_1.z.literal(48),
|
|
348
|
+
zod_1.z.literal(49),
|
|
349
|
+
zod_1.z.literal(50),
|
|
350
|
+
zod_1.z.literal(51),
|
|
351
|
+
zod_1.z.literal(52),
|
|
352
|
+
zod_1.z.literal(53),
|
|
353
|
+
zod_1.z.literal(54),
|
|
354
|
+
zod_1.z.literal(55),
|
|
355
|
+
zod_1.z.literal(56),
|
|
356
|
+
zod_1.z.literal(59),
|
|
357
|
+
zod_1.z.literal(60),
|
|
358
|
+
zod_1.z.literal(61),
|
|
359
|
+
zod_1.z.literal(62),
|
|
360
|
+
zod_1.z.literal(63),
|
|
361
|
+
zod_1.z.literal(64),
|
|
362
|
+
zod_1.z.literal(65),
|
|
363
|
+
zod_1.z.literal(66),
|
|
364
|
+
zod_1.z.literal(67),
|
|
365
|
+
zod_1.z.literal(68),
|
|
366
|
+
zod_1.z.literal(69),
|
|
367
|
+
zod_1.z.literal(70),
|
|
368
|
+
zod_1.z.literal(71),
|
|
369
|
+
zod_1.z.literal(72),
|
|
370
|
+
zod_1.z.literal(73),
|
|
371
|
+
zod_1.z.literal(74),
|
|
372
|
+
zod_1.z.literal(75),
|
|
373
|
+
zod_1.z.literal(76),
|
|
374
|
+
zod_1.z.literal(77),
|
|
375
|
+
zod_1.z.literal(78),
|
|
376
|
+
zod_1.z.literal(79),
|
|
377
|
+
zod_1.z.literal(80),
|
|
378
|
+
]),
|
|
379
|
+
pageNumber: zod_1.z.number().int().optional().default(1),
|
|
380
|
+
itemsPerPage: zod_1.z.number().int().optional().default(25),
|
|
381
|
+
keyword: zod_1.z.string().optional(),
|
|
382
|
+
},
|
|
383
|
+
response: Roblox_Inventory_Api_Models_InventoryPageResponse,
|
|
384
|
+
errors: [
|
|
385
|
+
{
|
|
386
|
+
status: 400,
|
|
387
|
+
description: "1: The specified user does not exist!\n3: Specified asset type is invalid!",
|
|
388
|
+
schema: zod_1.z.void(),
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
status: 403,
|
|
392
|
+
description: "1: The specified user does not exist!\n11: You don't have permissions to view the specified user's inventory.",
|
|
393
|
+
schema: zod_1.z.void(),
|
|
394
|
+
},
|
|
395
|
+
],
|
|
396
|
+
};
|
|
397
|
+
exports.getV1usersUserIditemsItemTypeItemTargetId = {
|
|
398
|
+
method: 'get',
|
|
399
|
+
path: '/v1/users/:userId/items/:itemType/:itemTargetId',
|
|
400
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
401
|
+
requestFormat: 'json',
|
|
402
|
+
parameters: {
|
|
403
|
+
userId: zod_1.z.number().int(),
|
|
404
|
+
itemType: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3)]),
|
|
405
|
+
itemTargetId: zod_1.z.number().int(),
|
|
406
|
+
},
|
|
407
|
+
response: Roblox_Web_WebAPI_Models_ApiPageResponse_Roblox_Inventory_Api_Models_IItemModel_,
|
|
408
|
+
errors: [
|
|
409
|
+
{
|
|
410
|
+
status: 400,
|
|
411
|
+
description: "1: The specified user does not exist!\n5: The specified game pass does not exist! Are you using the new game pass ID?\n6: The specified item type does not exist.\n7: The specified Asset does not exist!\n10: The specified asset is not a badge!\n12: The specified bundle does not exist!",
|
|
412
|
+
schema: zod_1.z.void(),
|
|
413
|
+
},
|
|
414
|
+
],
|
|
415
|
+
};
|
|
416
|
+
exports.getV1usersUserIditemsItemTypeItemTargetIdisOwned = {
|
|
417
|
+
method: 'get',
|
|
418
|
+
path: '/v1/users/:userId/items/:itemType/:itemTargetId/is-owned',
|
|
419
|
+
baseUrl: 'https://inventory.roblox.com',
|
|
420
|
+
requestFormat: 'json',
|
|
421
|
+
parameters: {
|
|
422
|
+
userId: zod_1.z.number().int(),
|
|
423
|
+
itemType: zod_1.z.union([zod_1.z.literal(0), zod_1.z.literal(1), zod_1.z.literal(2), zod_1.z.literal(3)]),
|
|
424
|
+
itemTargetId: zod_1.z.number().int(),
|
|
425
|
+
},
|
|
426
|
+
response: zod_1.z.boolean(),
|
|
427
|
+
errors: [
|
|
428
|
+
{
|
|
429
|
+
status: 400,
|
|
430
|
+
description: "1: The specified user does not exist!\n5: The specified game pass does not exist! Are you using the new game pass ID?\n6: The specified item type does not exist.\n7: The specified Asset does not exist!\n10: The specified asset is not a badge!\n12: The specified bundle does not exist!",
|
|
431
|
+
schema: zod_1.z.void(),
|
|
432
|
+
},
|
|
433
|
+
],
|
|
434
|
+
};
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const getV2assetsAssetIdowners: {
|
|
3
|
+
method: "get";
|
|
4
|
+
path: string;
|
|
5
|
+
baseUrl: string;
|
|
6
|
+
requestFormat: "json";
|
|
7
|
+
parameters: {
|
|
8
|
+
assetId: z.ZodNumber;
|
|
9
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
|
|
10
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
11
|
+
sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
|
|
12
|
+
};
|
|
13
|
+
response: z.ZodObject<{
|
|
14
|
+
previousPageCursor: z.ZodOptional<z.ZodString>;
|
|
15
|
+
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
16
|
+
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
serialNumber: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
owner: z.ZodOptional<z.ZodObject<{
|
|
20
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
21
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>]>>;
|
|
22
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
id?: number | undefined;
|
|
25
|
+
type?: 2 | 1 | undefined;
|
|
26
|
+
name?: string | undefined;
|
|
27
|
+
}, {
|
|
28
|
+
id?: number | undefined;
|
|
29
|
+
type?: 2 | 1 | undefined;
|
|
30
|
+
name?: string | undefined;
|
|
31
|
+
}>>;
|
|
32
|
+
created: z.ZodOptional<z.ZodString>;
|
|
33
|
+
updated: z.ZodOptional<z.ZodString>;
|
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
|
35
|
+
id?: number | undefined;
|
|
36
|
+
serialNumber?: number | undefined;
|
|
37
|
+
owner?: {
|
|
38
|
+
id?: number | undefined;
|
|
39
|
+
type?: 2 | 1 | undefined;
|
|
40
|
+
name?: string | undefined;
|
|
41
|
+
} | undefined;
|
|
42
|
+
created?: string | undefined;
|
|
43
|
+
updated?: string | undefined;
|
|
44
|
+
}, {
|
|
45
|
+
id?: number | undefined;
|
|
46
|
+
serialNumber?: number | undefined;
|
|
47
|
+
owner?: {
|
|
48
|
+
id?: number | undefined;
|
|
49
|
+
type?: 2 | 1 | undefined;
|
|
50
|
+
name?: string | undefined;
|
|
51
|
+
} | undefined;
|
|
52
|
+
created?: string | undefined;
|
|
53
|
+
updated?: string | undefined;
|
|
54
|
+
}>, "many">>;
|
|
55
|
+
}, "strip", z.ZodTypeAny, {
|
|
56
|
+
previousPageCursor?: string | undefined;
|
|
57
|
+
nextPageCursor?: string | undefined;
|
|
58
|
+
data?: {
|
|
59
|
+
id?: number | undefined;
|
|
60
|
+
serialNumber?: number | undefined;
|
|
61
|
+
owner?: {
|
|
62
|
+
id?: number | undefined;
|
|
63
|
+
type?: 2 | 1 | undefined;
|
|
64
|
+
name?: string | undefined;
|
|
65
|
+
} | undefined;
|
|
66
|
+
created?: string | undefined;
|
|
67
|
+
updated?: string | undefined;
|
|
68
|
+
}[] | undefined;
|
|
69
|
+
}, {
|
|
70
|
+
previousPageCursor?: string | undefined;
|
|
71
|
+
nextPageCursor?: string | undefined;
|
|
72
|
+
data?: {
|
|
73
|
+
id?: number | undefined;
|
|
74
|
+
serialNumber?: number | undefined;
|
|
75
|
+
owner?: {
|
|
76
|
+
id?: number | undefined;
|
|
77
|
+
type?: 2 | 1 | undefined;
|
|
78
|
+
name?: string | undefined;
|
|
79
|
+
} | undefined;
|
|
80
|
+
created?: string | undefined;
|
|
81
|
+
updated?: string | undefined;
|
|
82
|
+
}[] | undefined;
|
|
83
|
+
}>;
|
|
84
|
+
errors: {
|
|
85
|
+
status: number;
|
|
86
|
+
description: string;
|
|
87
|
+
schema: z.ZodVoid;
|
|
88
|
+
}[];
|
|
89
|
+
};
|
|
90
|
+
export declare const getV2usersUserIdinventory: {
|
|
91
|
+
method: "get";
|
|
92
|
+
path: string;
|
|
93
|
+
baseUrl: string;
|
|
94
|
+
description: string;
|
|
95
|
+
requestFormat: "json";
|
|
96
|
+
parameters: {
|
|
97
|
+
userId: z.ZodNumber;
|
|
98
|
+
assetTypes: z.ZodArray<z.ZodUnknown, "many">;
|
|
99
|
+
filterDisapprovedAssets: z.ZodOptional<z.ZodBoolean>;
|
|
100
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
|
|
101
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
102
|
+
sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
|
|
103
|
+
};
|
|
104
|
+
response: z.ZodObject<{
|
|
105
|
+
previousPageCursor: z.ZodOptional<z.ZodString>;
|
|
106
|
+
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
107
|
+
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
108
|
+
assetId: z.ZodOptional<z.ZodNumber>;
|
|
109
|
+
name: z.ZodOptional<z.ZodString>;
|
|
110
|
+
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>]>>;
|
|
111
|
+
created: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, "strip", z.ZodTypeAny, {
|
|
113
|
+
assetId?: number | undefined;
|
|
114
|
+
name?: string | undefined;
|
|
115
|
+
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;
|
|
116
|
+
created?: string | undefined;
|
|
117
|
+
}, {
|
|
118
|
+
assetId?: number | undefined;
|
|
119
|
+
name?: string | undefined;
|
|
120
|
+
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;
|
|
121
|
+
created?: string | undefined;
|
|
122
|
+
}>, "many">>;
|
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
previousPageCursor?: string | undefined;
|
|
125
|
+
nextPageCursor?: string | undefined;
|
|
126
|
+
data?: {
|
|
127
|
+
assetId?: number | undefined;
|
|
128
|
+
name?: string | undefined;
|
|
129
|
+
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;
|
|
130
|
+
created?: string | undefined;
|
|
131
|
+
}[] | undefined;
|
|
132
|
+
}, {
|
|
133
|
+
previousPageCursor?: string | undefined;
|
|
134
|
+
nextPageCursor?: string | undefined;
|
|
135
|
+
data?: {
|
|
136
|
+
assetId?: number | undefined;
|
|
137
|
+
name?: string | undefined;
|
|
138
|
+
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;
|
|
139
|
+
created?: string | undefined;
|
|
140
|
+
}[] | undefined;
|
|
141
|
+
}>;
|
|
142
|
+
errors: {
|
|
143
|
+
status: number;
|
|
144
|
+
description: string;
|
|
145
|
+
schema: z.ZodVoid;
|
|
146
|
+
}[];
|
|
147
|
+
};
|
|
148
|
+
export declare const getV2usersUserIdinventoryAssetTypeId: {
|
|
149
|
+
method: "get";
|
|
150
|
+
path: string;
|
|
151
|
+
baseUrl: string;
|
|
152
|
+
requestFormat: "json";
|
|
153
|
+
parameters: {
|
|
154
|
+
userId: z.ZodNumber;
|
|
155
|
+
assetTypeId: z.ZodNumber;
|
|
156
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<10>, z.ZodLiteral<25>, z.ZodLiteral<50>, z.ZodLiteral<100>]>>>;
|
|
157
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
158
|
+
sortOrder: z.ZodDefault<z.ZodOptional<z.ZodEnum<["Asc", "Desc"]>>>;
|
|
159
|
+
};
|
|
160
|
+
response: z.ZodObject<{
|
|
161
|
+
previousPageCursor: z.ZodOptional<z.ZodString>;
|
|
162
|
+
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
163
|
+
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
164
|
+
userAssetId: z.ZodOptional<z.ZodNumber>;
|
|
165
|
+
assetId: z.ZodOptional<z.ZodNumber>;
|
|
166
|
+
assetName: z.ZodOptional<z.ZodString>;
|
|
167
|
+
collectibleItemId: z.ZodOptional<z.ZodString>;
|
|
168
|
+
collectibleItemInstanceId: z.ZodOptional<z.ZodString>;
|
|
169
|
+
serialNumber: z.ZodOptional<z.ZodNumber>;
|
|
170
|
+
owner: z.ZodOptional<z.ZodObject<{
|
|
171
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
172
|
+
username: z.ZodOptional<z.ZodString>;
|
|
173
|
+
buildersClubMembershipType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>]>>;
|
|
174
|
+
}, "strip", z.ZodTypeAny, {
|
|
175
|
+
userId?: number | undefined;
|
|
176
|
+
username?: string | undefined;
|
|
177
|
+
buildersClubMembershipType?: 0 | 2 | 1 | 3 | 4 | undefined;
|
|
178
|
+
}, {
|
|
179
|
+
userId?: number | undefined;
|
|
180
|
+
username?: string | undefined;
|
|
181
|
+
buildersClubMembershipType?: 0 | 2 | 1 | 3 | 4 | undefined;
|
|
182
|
+
}>>;
|
|
183
|
+
created: z.ZodOptional<z.ZodString>;
|
|
184
|
+
updated: z.ZodOptional<z.ZodString>;
|
|
185
|
+
}, "strip", z.ZodTypeAny, {
|
|
186
|
+
userAssetId?: number | undefined;
|
|
187
|
+
assetId?: number | undefined;
|
|
188
|
+
assetName?: string | undefined;
|
|
189
|
+
collectibleItemId?: string | undefined;
|
|
190
|
+
collectibleItemInstanceId?: string | undefined;
|
|
191
|
+
serialNumber?: number | undefined;
|
|
192
|
+
owner?: {
|
|
193
|
+
userId?: number | undefined;
|
|
194
|
+
username?: string | undefined;
|
|
195
|
+
buildersClubMembershipType?: 0 | 2 | 1 | 3 | 4 | undefined;
|
|
196
|
+
} | undefined;
|
|
197
|
+
created?: string | undefined;
|
|
198
|
+
updated?: string | undefined;
|
|
199
|
+
}, {
|
|
200
|
+
userAssetId?: number | undefined;
|
|
201
|
+
assetId?: number | undefined;
|
|
202
|
+
assetName?: string | undefined;
|
|
203
|
+
collectibleItemId?: string | undefined;
|
|
204
|
+
collectibleItemInstanceId?: string | undefined;
|
|
205
|
+
serialNumber?: number | undefined;
|
|
206
|
+
owner?: {
|
|
207
|
+
userId?: number | undefined;
|
|
208
|
+
username?: string | undefined;
|
|
209
|
+
buildersClubMembershipType?: 0 | 2 | 1 | 3 | 4 | undefined;
|
|
210
|
+
} | undefined;
|
|
211
|
+
created?: string | undefined;
|
|
212
|
+
updated?: string | undefined;
|
|
213
|
+
}>, "many">>;
|
|
214
|
+
}, "strip", z.ZodTypeAny, {
|
|
215
|
+
previousPageCursor?: string | undefined;
|
|
216
|
+
nextPageCursor?: string | undefined;
|
|
217
|
+
data?: {
|
|
218
|
+
userAssetId?: number | undefined;
|
|
219
|
+
assetId?: number | undefined;
|
|
220
|
+
assetName?: string | undefined;
|
|
221
|
+
collectibleItemId?: string | undefined;
|
|
222
|
+
collectibleItemInstanceId?: string | undefined;
|
|
223
|
+
serialNumber?: number | undefined;
|
|
224
|
+
owner?: {
|
|
225
|
+
userId?: number | undefined;
|
|
226
|
+
username?: string | undefined;
|
|
227
|
+
buildersClubMembershipType?: 0 | 2 | 1 | 3 | 4 | undefined;
|
|
228
|
+
} | undefined;
|
|
229
|
+
created?: string | undefined;
|
|
230
|
+
updated?: string | undefined;
|
|
231
|
+
}[] | undefined;
|
|
232
|
+
}, {
|
|
233
|
+
previousPageCursor?: string | undefined;
|
|
234
|
+
nextPageCursor?: string | undefined;
|
|
235
|
+
data?: {
|
|
236
|
+
userAssetId?: number | undefined;
|
|
237
|
+
assetId?: number | undefined;
|
|
238
|
+
assetName?: string | undefined;
|
|
239
|
+
collectibleItemId?: string | undefined;
|
|
240
|
+
collectibleItemInstanceId?: string | undefined;
|
|
241
|
+
serialNumber?: number | undefined;
|
|
242
|
+
owner?: {
|
|
243
|
+
userId?: number | undefined;
|
|
244
|
+
username?: string | undefined;
|
|
245
|
+
buildersClubMembershipType?: 0 | 2 | 1 | 3 | 4 | undefined;
|
|
246
|
+
} | undefined;
|
|
247
|
+
created?: string | undefined;
|
|
248
|
+
updated?: string | undefined;
|
|
249
|
+
}[] | undefined;
|
|
250
|
+
}>;
|
|
251
|
+
errors: {
|
|
252
|
+
status: number;
|
|
253
|
+
description: string;
|
|
254
|
+
schema: z.ZodVoid;
|
|
255
|
+
}[];
|
|
256
|
+
};
|