@jacobhumston/roblox-openapi-ts 1.0.53 → 1.0.55
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/dist/types.d.ts +188 -2657
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1222,159 +1222,6 @@ export interface paths {
|
|
|
1222
1222
|
patch?: never;
|
|
1223
1223
|
trace?: never;
|
|
1224
1224
|
};
|
|
1225
|
-
"/asset-delivery-api/v1/assetId/{assetId}": {
|
|
1226
|
-
parameters: {
|
|
1227
|
-
query?: never;
|
|
1228
|
-
header?: never;
|
|
1229
|
-
path?: never;
|
|
1230
|
-
cookie?: never;
|
|
1231
|
-
};
|
|
1232
|
-
/**
|
|
1233
|
-
* Retrieves an asset by its ID with OpenCloud auth.
|
|
1234
|
-
* @description Returns an object containing a `location` property which is a temporary CDN URL for the asset content. All asset types are supported.
|
|
1235
|
-
* You should request that URL with the `Accept-Encoding: gzip` header and decompress the result if the response is gzipped. If you are using cURL, the `--compressed` flag will automate these steps for you.
|
|
1236
|
-
* This endpoint is expected to be called with API key authentication through `apis.roblox.com/asset-delivery-api/v1/assetId/{assetId}`.
|
|
1237
|
-
* While you are able to make requests to this endpoint with Cookie authentication via `assetdelivery.roblox.com/v1/openCloud/assetId/{assetId}`, we highly discourage use this way.
|
|
1238
|
-
* Expect unannounced removal of this second route in the future.
|
|
1239
|
-
*/
|
|
1240
|
-
get: {
|
|
1241
|
-
parameters: {
|
|
1242
|
-
query?: {
|
|
1243
|
-
/** @description Whether to skip script signing for the returned asset. Used for script assets that don't require signing. */
|
|
1244
|
-
skipSigningScripts?: boolean;
|
|
1245
|
-
/** @description Set to 1 to indicate this is a client insert request. */
|
|
1246
|
-
clientInsert?: number;
|
|
1247
|
-
/** @description Set to 1 to indicate this is a script insert request. */
|
|
1248
|
-
scriptinsert?: number;
|
|
1249
|
-
/** @description The place ID of the module making the request. */
|
|
1250
|
-
modulePlaceId?: number;
|
|
1251
|
-
/** @description The server place ID making the request. */
|
|
1252
|
-
serverplaceid?: number;
|
|
1253
|
-
/** @description The expected asset type as a fallback when assetType header is not provided. */
|
|
1254
|
-
expectedAssetType?: string;
|
|
1255
|
-
/** @description Whether to prevent fallback to baseline representation when specific content representations are not available. */
|
|
1256
|
-
doNotFallbackToBaselineRepresentation?: boolean;
|
|
1257
|
-
/** @description Base64URL-encoded JSON string specifying the priority list of desired content representations (format, version, fidelity). */
|
|
1258
|
-
contentRepresentationPriorityList?: string;
|
|
1259
|
-
accessContext?: string;
|
|
1260
|
-
usageContext?: number;
|
|
1261
|
-
};
|
|
1262
|
-
header?: {
|
|
1263
|
-
/** @description The Accept-Encoding header value specifying compression formats (e.g., "gzip, deflate"). Defaults to "gzip, deflate" if not provided. */
|
|
1264
|
-
"Accept-Encoding"?: string;
|
|
1265
|
-
/** @description The Roblox-Place-Id header value identifying the place making the request. */
|
|
1266
|
-
"Roblox-Place-Id"?: number;
|
|
1267
|
-
/** @description The AssetType header value specifying the expected asset type. */
|
|
1268
|
-
AssetType?: string;
|
|
1269
|
-
/** @description The Accept header value specifying the preferred response content type. */
|
|
1270
|
-
Accept?: string;
|
|
1271
|
-
/** @description The AssetFormat header value specifying the desired asset format. Overridden by robloxAssetFormat if both are provided. */
|
|
1272
|
-
AssetFormat?: string;
|
|
1273
|
-
/** @description The Roblox-AssetFormat header value specifying the preferred Roblox-specific asset format. Takes precedence over assetFormat. */
|
|
1274
|
-
"Roblox-AssetFormat"?: string;
|
|
1275
|
-
};
|
|
1276
|
-
path: {
|
|
1277
|
-
/** @description The ID of the asset to retrieve. */
|
|
1278
|
-
assetId: number;
|
|
1279
|
-
};
|
|
1280
|
-
cookie?: never;
|
|
1281
|
-
};
|
|
1282
|
-
requestBody?: never;
|
|
1283
|
-
responses: {
|
|
1284
|
-
/** @description OK */
|
|
1285
|
-
200: {
|
|
1286
|
-
headers: {
|
|
1287
|
-
[name: string]: unknown;
|
|
1288
|
-
};
|
|
1289
|
-
content?: never;
|
|
1290
|
-
};
|
|
1291
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
1292
|
-
401: {
|
|
1293
|
-
headers: {
|
|
1294
|
-
[name: string]: unknown;
|
|
1295
|
-
};
|
|
1296
|
-
content?: never;
|
|
1297
|
-
};
|
|
1298
|
-
};
|
|
1299
|
-
};
|
|
1300
|
-
put?: never;
|
|
1301
|
-
post?: never;
|
|
1302
|
-
delete?: never;
|
|
1303
|
-
options?: never;
|
|
1304
|
-
head?: never;
|
|
1305
|
-
patch?: never;
|
|
1306
|
-
trace?: never;
|
|
1307
|
-
};
|
|
1308
|
-
"/asset-delivery-api/v1/assetId/{assetId}/version/{versionNumber}": {
|
|
1309
|
-
parameters: {
|
|
1310
|
-
query?: never;
|
|
1311
|
-
header?: never;
|
|
1312
|
-
path?: never;
|
|
1313
|
-
cookie?: never;
|
|
1314
|
-
};
|
|
1315
|
-
/**
|
|
1316
|
-
* Retrieves an asset by its ID and version number with OpenCloud auth.
|
|
1317
|
-
* @description Refer to the assetId endpoint for details on usage.
|
|
1318
|
-
* This endpoint is expected to be called with API key authentication through `apis.roblox.com/asset-delivery-api/v1/assetId/{assetId}/version/{versionNumber}`.
|
|
1319
|
-
* While you are able to make requests to this endpoint with Cookie authentication via `assetdelivery.roblox.com/v1/openCloud/assetId/{assetId}/version/{versionNumber}`, we highly discourage use this way.
|
|
1320
|
-
* Expect unannounced removal of this second route in the future.
|
|
1321
|
-
*/
|
|
1322
|
-
get: {
|
|
1323
|
-
parameters: {
|
|
1324
|
-
query?: {
|
|
1325
|
-
skipSigningScripts?: boolean;
|
|
1326
|
-
clientInsert?: number;
|
|
1327
|
-
scriptinsert?: number;
|
|
1328
|
-
modulePlaceId?: number;
|
|
1329
|
-
serverplaceid?: number;
|
|
1330
|
-
expectedAssetType?: string;
|
|
1331
|
-
doNotFallbackToBaselineRepresentation?: boolean;
|
|
1332
|
-
contentRepresentationPriorityList?: string;
|
|
1333
|
-
accessContext?: string;
|
|
1334
|
-
usageContext?: number;
|
|
1335
|
-
};
|
|
1336
|
-
header?: {
|
|
1337
|
-
"Accept-Encoding"?: string;
|
|
1338
|
-
"Roblox-Place-Id"?: number;
|
|
1339
|
-
AssetType?: string;
|
|
1340
|
-
Accept?: string;
|
|
1341
|
-
AssetFormat?: string;
|
|
1342
|
-
"Roblox-AssetFormat"?: string;
|
|
1343
|
-
};
|
|
1344
|
-
path: {
|
|
1345
|
-
/** @description The ID of the asset to retrieve. */
|
|
1346
|
-
assetId: number;
|
|
1347
|
-
/** @description The version number of the asset to retrieve. */
|
|
1348
|
-
versionNumber: number;
|
|
1349
|
-
};
|
|
1350
|
-
cookie?: never;
|
|
1351
|
-
};
|
|
1352
|
-
requestBody?: never;
|
|
1353
|
-
responses: {
|
|
1354
|
-
/** @description OK */
|
|
1355
|
-
200: {
|
|
1356
|
-
headers: {
|
|
1357
|
-
[name: string]: unknown;
|
|
1358
|
-
};
|
|
1359
|
-
content?: never;
|
|
1360
|
-
};
|
|
1361
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
1362
|
-
401: {
|
|
1363
|
-
headers: {
|
|
1364
|
-
[name: string]: unknown;
|
|
1365
|
-
};
|
|
1366
|
-
content?: never;
|
|
1367
|
-
};
|
|
1368
|
-
};
|
|
1369
|
-
};
|
|
1370
|
-
put?: never;
|
|
1371
|
-
post?: never;
|
|
1372
|
-
delete?: never;
|
|
1373
|
-
options?: never;
|
|
1374
|
-
head?: never;
|
|
1375
|
-
patch?: never;
|
|
1376
|
-
trace?: never;
|
|
1377
|
-
};
|
|
1378
1225
|
"/asset-permissions-api/v1/assets/permissions": {
|
|
1379
1226
|
parameters: {
|
|
1380
1227
|
query?: never;
|
|
@@ -1844,9 +1691,8 @@ export interface paths {
|
|
|
1844
1691
|
* Update Group Membership
|
|
1845
1692
|
* @description **Deprecated.** Use AssignGroupRole and UnassignGroupRole instead.
|
|
1846
1693
|
* Updates the group membership for a particular group member. This action
|
|
1847
|
-
* requires the requester to be able to
|
|
1848
|
-
*
|
|
1849
|
-
* rank.
|
|
1694
|
+
* requires the requester to be able to assign or remove roles below their
|
|
1695
|
+
* highest role. The requester cannot change their own roles.
|
|
1850
1696
|
*/
|
|
1851
1697
|
patch: operations["Cloud_UpdateGroupMembership"];
|
|
1852
1698
|
trace?: never;
|
|
@@ -1904,6 +1750,10 @@ export interface paths {
|
|
|
1904
1750
|
* List Group Roles
|
|
1905
1751
|
* @description List roles in a group.
|
|
1906
1752
|
*
|
|
1753
|
+
* Roles can be public or private. The response includes private roles and
|
|
1754
|
+
* their fields only when the acting user is permitted to view them. The
|
|
1755
|
+
* endpoint does not provide a public-roles-only view.
|
|
1756
|
+
*
|
|
1907
1757
|
* The permissions field for roles is viewable based on the requester's access
|
|
1908
1758
|
* and scopes.
|
|
1909
1759
|
*
|
|
@@ -12051,10 +11901,9 @@ export interface paths {
|
|
|
12051
11901
|
"Accept-Encoding": string;
|
|
12052
11902
|
"Roblox-Place-Id": number;
|
|
12053
11903
|
AssetType: string;
|
|
12054
|
-
Accept: string;
|
|
12055
11904
|
AssetFormat: string;
|
|
12056
11905
|
"Roblox-AssetFormat": string;
|
|
12057
|
-
|
|
11906
|
+
"Roblox-Usage-Context"?: string;
|
|
12058
11907
|
};
|
|
12059
11908
|
path?: never;
|
|
12060
11909
|
cookie?: never;
|
|
@@ -12078,74 +11927,6 @@ export interface paths {
|
|
|
12078
11927
|
patch?: never;
|
|
12079
11928
|
trace?: never;
|
|
12080
11929
|
};
|
|
12081
|
-
"/v1/asset-quotas": {
|
|
12082
|
-
parameters: {
|
|
12083
|
-
query?: never;
|
|
12084
|
-
header?: never;
|
|
12085
|
-
path?: never;
|
|
12086
|
-
cookie?: never;
|
|
12087
|
-
};
|
|
12088
|
-
/** List asset quotas of the given resource type and asset type. */
|
|
12089
|
-
get: {
|
|
12090
|
-
parameters: {
|
|
12091
|
-
query: {
|
|
12092
|
-
/** @description Resource type of the asset quota */
|
|
12093
|
-
resourceType: string;
|
|
12094
|
-
/** @description Asset type of the asset quota */
|
|
12095
|
-
assetType: string;
|
|
12096
|
-
/** @description Use dummy data for testing. This is for internal use only */
|
|
12097
|
-
useDummyData?: boolean;
|
|
12098
|
-
};
|
|
12099
|
-
header?: never;
|
|
12100
|
-
path?: never;
|
|
12101
|
-
cookie?: never;
|
|
12102
|
-
};
|
|
12103
|
-
requestBody?: never;
|
|
12104
|
-
responses: {
|
|
12105
|
-
/** @description OK */
|
|
12106
|
-
200: {
|
|
12107
|
-
headers: {
|
|
12108
|
-
[name: string]: unknown;
|
|
12109
|
-
};
|
|
12110
|
-
content: {
|
|
12111
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.AssetQuotasResponse"];
|
|
12112
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.AssetQuotasResponse"];
|
|
12113
|
-
};
|
|
12114
|
-
};
|
|
12115
|
-
/**
|
|
12116
|
-
* @description 7: The asset type is not appropriate for this request.
|
|
12117
|
-
* 8: The resource type is not appropriate for this request.
|
|
12118
|
-
*/
|
|
12119
|
-
400: {
|
|
12120
|
-
headers: {
|
|
12121
|
-
[name: string]: unknown;
|
|
12122
|
-
};
|
|
12123
|
-
content?: never;
|
|
12124
|
-
};
|
|
12125
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
12126
|
-
401: {
|
|
12127
|
-
headers: {
|
|
12128
|
-
[name: string]: unknown;
|
|
12129
|
-
};
|
|
12130
|
-
content?: never;
|
|
12131
|
-
};
|
|
12132
|
-
/** @description 0: Reserved for base level errors. Do not use in your endpoint directly, do not document. */
|
|
12133
|
-
500: {
|
|
12134
|
-
headers: {
|
|
12135
|
-
[name: string]: unknown;
|
|
12136
|
-
};
|
|
12137
|
-
content?: never;
|
|
12138
|
-
};
|
|
12139
|
-
};
|
|
12140
|
-
};
|
|
12141
|
-
put?: never;
|
|
12142
|
-
post?: never;
|
|
12143
|
-
delete?: never;
|
|
12144
|
-
options?: never;
|
|
12145
|
-
head?: never;
|
|
12146
|
-
patch?: never;
|
|
12147
|
-
trace?: never;
|
|
12148
|
-
};
|
|
12149
11930
|
"/v1/asset-thumbnail-animated": {
|
|
12150
11931
|
parameters: {
|
|
12151
11932
|
query?: never;
|
|
@@ -12193,88 +11974,6 @@ export interface paths {
|
|
|
12193
11974
|
patch?: never;
|
|
12194
11975
|
trace?: never;
|
|
12195
11976
|
};
|
|
12196
|
-
"/v1/asset-to-category": {
|
|
12197
|
-
parameters: {
|
|
12198
|
-
query?: never;
|
|
12199
|
-
header?: never;
|
|
12200
|
-
path?: never;
|
|
12201
|
-
cookie?: never;
|
|
12202
|
-
};
|
|
12203
|
-
/** Lists a mapping for assets to category IDs to convert from inventory ID to catalog ID. Creates a mapping to link 'Get More' button in inventory page to the relevant catalog page. */
|
|
12204
|
-
get: {
|
|
12205
|
-
parameters: {
|
|
12206
|
-
query?: never;
|
|
12207
|
-
header?: never;
|
|
12208
|
-
path?: never;
|
|
12209
|
-
cookie?: never;
|
|
12210
|
-
};
|
|
12211
|
-
requestBody?: never;
|
|
12212
|
-
responses: {
|
|
12213
|
-
/** @description OK */
|
|
12214
|
-
200: {
|
|
12215
|
-
headers: {
|
|
12216
|
-
[name: string]: unknown;
|
|
12217
|
-
};
|
|
12218
|
-
content: {
|
|
12219
|
-
"application/json": {
|
|
12220
|
-
[key: string]: number;
|
|
12221
|
-
};
|
|
12222
|
-
"text/json": {
|
|
12223
|
-
[key: string]: number;
|
|
12224
|
-
};
|
|
12225
|
-
};
|
|
12226
|
-
};
|
|
12227
|
-
};
|
|
12228
|
-
};
|
|
12229
|
-
put?: never;
|
|
12230
|
-
post?: never;
|
|
12231
|
-
delete?: never;
|
|
12232
|
-
options?: never;
|
|
12233
|
-
head?: never;
|
|
12234
|
-
patch?: never;
|
|
12235
|
-
trace?: never;
|
|
12236
|
-
};
|
|
12237
|
-
"/v1/asset-to-subcategory": {
|
|
12238
|
-
parameters: {
|
|
12239
|
-
query?: never;
|
|
12240
|
-
header?: never;
|
|
12241
|
-
path?: never;
|
|
12242
|
-
cookie?: never;
|
|
12243
|
-
};
|
|
12244
|
-
/** Lists a mapping for assets to subcategory IDs to convert from inventory ID to catalog ID. Creates a mapping to link 'Get More' button in inventory page to the relevant catalog page. */
|
|
12245
|
-
get: {
|
|
12246
|
-
parameters: {
|
|
12247
|
-
query?: never;
|
|
12248
|
-
header?: never;
|
|
12249
|
-
path?: never;
|
|
12250
|
-
cookie?: never;
|
|
12251
|
-
};
|
|
12252
|
-
requestBody?: never;
|
|
12253
|
-
responses: {
|
|
12254
|
-
/** @description OK */
|
|
12255
|
-
200: {
|
|
12256
|
-
headers: {
|
|
12257
|
-
[name: string]: unknown;
|
|
12258
|
-
};
|
|
12259
|
-
content: {
|
|
12260
|
-
"application/json": {
|
|
12261
|
-
[key: string]: number;
|
|
12262
|
-
};
|
|
12263
|
-
"text/json": {
|
|
12264
|
-
[key: string]: number;
|
|
12265
|
-
};
|
|
12266
|
-
};
|
|
12267
|
-
};
|
|
12268
|
-
};
|
|
12269
|
-
};
|
|
12270
|
-
put?: never;
|
|
12271
|
-
post?: never;
|
|
12272
|
-
delete?: never;
|
|
12273
|
-
options?: never;
|
|
12274
|
-
head?: never;
|
|
12275
|
-
patch?: never;
|
|
12276
|
-
trace?: never;
|
|
12277
|
-
};
|
|
12278
11977
|
"/v1/assetId/{assetId}": {
|
|
12279
11978
|
parameters: {
|
|
12280
11979
|
query?: never;
|
|
@@ -12295,15 +11994,14 @@ export interface paths {
|
|
|
12295
11994
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
12296
11995
|
contentRepresentationPriorityList?: string;
|
|
12297
11996
|
accessContext?: string;
|
|
12298
|
-
usageContext?: number;
|
|
12299
11997
|
};
|
|
12300
11998
|
header: {
|
|
12301
11999
|
"Accept-Encoding": string;
|
|
12302
12000
|
"Roblox-Place-Id": number;
|
|
12303
12001
|
AssetType: string;
|
|
12304
|
-
Accept: string;
|
|
12305
12002
|
AssetFormat: string;
|
|
12306
12003
|
"Roblox-AssetFormat": string;
|
|
12004
|
+
"Roblox-Usage-Context"?: string;
|
|
12307
12005
|
};
|
|
12308
12006
|
path: {
|
|
12309
12007
|
/** @description The ID of the asset to retrieve. */
|
|
@@ -12350,15 +12048,14 @@ export interface paths {
|
|
|
12350
12048
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
12351
12049
|
contentRepresentationPriorityList?: string;
|
|
12352
12050
|
accessContext?: string;
|
|
12353
|
-
usageContext?: number;
|
|
12354
12051
|
};
|
|
12355
12052
|
header: {
|
|
12356
12053
|
"Accept-Encoding": string;
|
|
12357
12054
|
"Roblox-Place-Id": number;
|
|
12358
12055
|
AssetType: string;
|
|
12359
|
-
Accept: string;
|
|
12360
12056
|
AssetFormat: string;
|
|
12361
12057
|
"Roblox-AssetFormat": string;
|
|
12058
|
+
"Roblox-Usage-Context"?: string;
|
|
12362
12059
|
};
|
|
12363
12060
|
path: {
|
|
12364
12061
|
/** @description The ID of the asset to retrieve. */
|
|
@@ -12519,7 +12216,6 @@ export interface paths {
|
|
|
12519
12216
|
query?: never;
|
|
12520
12217
|
header: {
|
|
12521
12218
|
"Roblox-Place-Id": number;
|
|
12522
|
-
Accept: string;
|
|
12523
12219
|
"Roblox-Browser-Asset-Request": string;
|
|
12524
12220
|
};
|
|
12525
12221
|
path?: never;
|
|
@@ -12547,50 +12243,6 @@ export interface paths {
|
|
|
12547
12243
|
patch?: never;
|
|
12548
12244
|
trace?: never;
|
|
12549
12245
|
};
|
|
12550
|
-
"/v1/assets/voting": {
|
|
12551
|
-
parameters: {
|
|
12552
|
-
query?: never;
|
|
12553
|
-
header?: never;
|
|
12554
|
-
path?: never;
|
|
12555
|
-
cookie?: never;
|
|
12556
|
-
};
|
|
12557
|
-
/**
|
|
12558
|
-
* Gets the voting information of the given assets
|
|
12559
|
-
* @deprecated
|
|
12560
|
-
* @description Please use toolbox service to get asset voting information.
|
|
12561
|
-
*/
|
|
12562
|
-
get: {
|
|
12563
|
-
parameters: {
|
|
12564
|
-
query: {
|
|
12565
|
-
/** @description The ids of the Roblox.Platform.Assets.IAsset. */
|
|
12566
|
-
assetIds: number[];
|
|
12567
|
-
};
|
|
12568
|
-
header?: never;
|
|
12569
|
-
path?: never;
|
|
12570
|
-
cookie?: never;
|
|
12571
|
-
};
|
|
12572
|
-
requestBody?: never;
|
|
12573
|
-
responses: {
|
|
12574
|
-
/** @description OK */
|
|
12575
|
-
200: {
|
|
12576
|
-
headers: {
|
|
12577
|
-
[name: string]: unknown;
|
|
12578
|
-
};
|
|
12579
|
-
content: {
|
|
12580
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.Response.AssetVotingModel_"];
|
|
12581
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.Response.AssetVotingModel_"];
|
|
12582
|
-
};
|
|
12583
|
-
};
|
|
12584
|
-
};
|
|
12585
|
-
};
|
|
12586
|
-
put?: never;
|
|
12587
|
-
post?: never;
|
|
12588
|
-
delete?: never;
|
|
12589
|
-
options?: never;
|
|
12590
|
-
head?: never;
|
|
12591
|
-
patch?: never;
|
|
12592
|
-
trace?: never;
|
|
12593
|
-
};
|
|
12594
12246
|
"/v1/assets/{assetId}/bundles": {
|
|
12595
12247
|
parameters: {
|
|
12596
12248
|
query?: never;
|
|
@@ -12647,172 +12299,6 @@ export interface paths {
|
|
|
12647
12299
|
patch?: never;
|
|
12648
12300
|
trace?: never;
|
|
12649
12301
|
};
|
|
12650
|
-
"/v1/audio": {
|
|
12651
|
-
parameters: {
|
|
12652
|
-
query?: never;
|
|
12653
|
-
header?: never;
|
|
12654
|
-
path?: never;
|
|
12655
|
-
cookie?: never;
|
|
12656
|
-
};
|
|
12657
|
-
get?: never;
|
|
12658
|
-
put?: never;
|
|
12659
|
-
/** Published an audio file and returns the new asset info. */
|
|
12660
|
-
post: {
|
|
12661
|
-
parameters: {
|
|
12662
|
-
query?: never;
|
|
12663
|
-
header?: never;
|
|
12664
|
-
path?: never;
|
|
12665
|
-
cookie?: never;
|
|
12666
|
-
};
|
|
12667
|
-
/** @description The file upload request body. Roblox.Publish.Api.UploadAudioRequest */
|
|
12668
|
-
requestBody: {
|
|
12669
|
-
content: {
|
|
12670
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.UploadAudioRequest"];
|
|
12671
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.UploadAudioRequest"];
|
|
12672
|
-
};
|
|
12673
|
-
};
|
|
12674
|
-
responses: {
|
|
12675
|
-
/** @description OK */
|
|
12676
|
-
200: {
|
|
12677
|
-
headers: {
|
|
12678
|
-
[name: string]: unknown;
|
|
12679
|
-
};
|
|
12680
|
-
content: {
|
|
12681
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.PublishAudioResponse"];
|
|
12682
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.PublishAudioResponse"];
|
|
12683
|
-
};
|
|
12684
|
-
};
|
|
12685
|
-
/**
|
|
12686
|
-
* @description 3: The request did not contain a file to be uploaded.
|
|
12687
|
-
* 4: The file in the request is too large.
|
|
12688
|
-
* 5: The duration of the audio file is too long.
|
|
12689
|
-
* 7: Failed to parse the file.
|
|
12690
|
-
* 8: The file type is not supported.
|
|
12691
|
-
* 9: The file is corrupted
|
|
12692
|
-
* 11: Missing permissions to spend group funds.
|
|
12693
|
-
* 14: The user/group does not have suffiecient funds to publish.
|
|
12694
|
-
* 14: The user/group does not have suffiecient funds to publish.
|
|
12695
|
-
* 15: The audio file has already been reviewed and rejected.
|
|
12696
|
-
* 18: Too many requests. Try again later.
|
|
12697
|
-
* 20: Error while trying to purchase the product.
|
|
12698
|
-
* 22: The file size estimation error was greater than the acceptable margin of error.
|
|
12699
|
-
* 23: The duration estimation error was greater than the acceptable margin of error.
|
|
12700
|
-
* 24: Asset privacy is invalid.
|
|
12701
|
-
* 29: Invalid argument in the request.
|
|
12702
|
-
*/
|
|
12703
|
-
400: {
|
|
12704
|
-
headers: {
|
|
12705
|
-
[name: string]: unknown;
|
|
12706
|
-
};
|
|
12707
|
-
content?: never;
|
|
12708
|
-
};
|
|
12709
|
-
/**
|
|
12710
|
-
* @description 0: Authorization has been denied for this request.
|
|
12711
|
-
* 1: The request did not include an authorization.
|
|
12712
|
-
*/
|
|
12713
|
-
401: {
|
|
12714
|
-
headers: {
|
|
12715
|
-
[name: string]: unknown;
|
|
12716
|
-
};
|
|
12717
|
-
content?: never;
|
|
12718
|
-
};
|
|
12719
|
-
/** @description 0: Token Validation Failed */
|
|
12720
|
-
403: {
|
|
12721
|
-
headers: {
|
|
12722
|
-
[name: string]: unknown;
|
|
12723
|
-
};
|
|
12724
|
-
content?: never;
|
|
12725
|
-
};
|
|
12726
|
-
/** @description 19: Asset creation was unavailable. Please try again. */
|
|
12727
|
-
500: {
|
|
12728
|
-
headers: {
|
|
12729
|
-
[name: string]: unknown;
|
|
12730
|
-
};
|
|
12731
|
-
content?: never;
|
|
12732
|
-
};
|
|
12733
|
-
};
|
|
12734
|
-
};
|
|
12735
|
-
delete?: never;
|
|
12736
|
-
options?: never;
|
|
12737
|
-
head?: never;
|
|
12738
|
-
patch?: never;
|
|
12739
|
-
trace?: never;
|
|
12740
|
-
};
|
|
12741
|
-
"/v1/audio/verify": {
|
|
12742
|
-
parameters: {
|
|
12743
|
-
query?: never;
|
|
12744
|
-
header?: never;
|
|
12745
|
-
path?: never;
|
|
12746
|
-
cookie?: never;
|
|
12747
|
-
};
|
|
12748
|
-
get?: never;
|
|
12749
|
-
put?: never;
|
|
12750
|
-
/** Verifies an audio file and returns a product that you can purchase to publish the audio file. */
|
|
12751
|
-
post: {
|
|
12752
|
-
parameters: {
|
|
12753
|
-
query?: never;
|
|
12754
|
-
header?: never;
|
|
12755
|
-
path?: never;
|
|
12756
|
-
cookie?: never;
|
|
12757
|
-
};
|
|
12758
|
-
/** @description The verify audio request body. Roblox.Publish.Api.VerifyAudioRequest */
|
|
12759
|
-
requestBody: {
|
|
12760
|
-
content: {
|
|
12761
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioRequest"];
|
|
12762
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioRequest"];
|
|
12763
|
-
};
|
|
12764
|
-
};
|
|
12765
|
-
responses: {
|
|
12766
|
-
/** @description OK */
|
|
12767
|
-
200: {
|
|
12768
|
-
headers: {
|
|
12769
|
-
[name: string]: unknown;
|
|
12770
|
-
};
|
|
12771
|
-
content: {
|
|
12772
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioResponse"];
|
|
12773
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioResponse"];
|
|
12774
|
-
};
|
|
12775
|
-
};
|
|
12776
|
-
/**
|
|
12777
|
-
* @description 3: The request did not contain a file to be uploaded.
|
|
12778
|
-
* 4: The file in the request is too large.
|
|
12779
|
-
* 5: The duration of the audio file is too long.
|
|
12780
|
-
* 7: Failed to parse the file.
|
|
12781
|
-
* 8: The file type is not supported.
|
|
12782
|
-
* 9: The file is corrupted
|
|
12783
|
-
* 18: Too many requests. Try again later.
|
|
12784
|
-
*/
|
|
12785
|
-
400: {
|
|
12786
|
-
headers: {
|
|
12787
|
-
[name: string]: unknown;
|
|
12788
|
-
};
|
|
12789
|
-
content?: never;
|
|
12790
|
-
};
|
|
12791
|
-
/**
|
|
12792
|
-
* @description 0: Authorization has been denied for this request.
|
|
12793
|
-
* 1: The request did not include an authorization.
|
|
12794
|
-
*/
|
|
12795
|
-
401: {
|
|
12796
|
-
headers: {
|
|
12797
|
-
[name: string]: unknown;
|
|
12798
|
-
};
|
|
12799
|
-
content?: never;
|
|
12800
|
-
};
|
|
12801
|
-
/** @description 0: Token Validation Failed */
|
|
12802
|
-
403: {
|
|
12803
|
-
headers: {
|
|
12804
|
-
[name: string]: unknown;
|
|
12805
|
-
};
|
|
12806
|
-
content?: never;
|
|
12807
|
-
};
|
|
12808
|
-
};
|
|
12809
|
-
};
|
|
12810
|
-
delete?: never;
|
|
12811
|
-
options?: never;
|
|
12812
|
-
head?: never;
|
|
12813
|
-
patch?: never;
|
|
12814
|
-
trace?: never;
|
|
12815
|
-
};
|
|
12816
12302
|
"/v1/auth/metadata": {
|
|
12817
12303
|
parameters: {
|
|
12818
12304
|
query?: never;
|
|
@@ -15166,63 +14652,6 @@ export interface paths {
|
|
|
15166
14652
|
patch?: never;
|
|
15167
14653
|
trace?: never;
|
|
15168
14654
|
};
|
|
15169
|
-
"/v1/bundles/{bundleId}/recommendations": {
|
|
15170
|
-
parameters: {
|
|
15171
|
-
query?: never;
|
|
15172
|
-
header?: never;
|
|
15173
|
-
path?: never;
|
|
15174
|
-
cookie?: never;
|
|
15175
|
-
};
|
|
15176
|
-
/**
|
|
15177
|
-
* Gets recommendations for a given bundle, bundleId of 0 returns randomized bundles
|
|
15178
|
-
* - Accepts both public and authenticated users.
|
|
15179
|
-
*/
|
|
15180
|
-
get: {
|
|
15181
|
-
parameters: {
|
|
15182
|
-
query?: {
|
|
15183
|
-
/** @description The number of recommended items to return. */
|
|
15184
|
-
numItems?: number;
|
|
15185
|
-
};
|
|
15186
|
-
header?: never;
|
|
15187
|
-
path: {
|
|
15188
|
-
bundleId: number;
|
|
15189
|
-
};
|
|
15190
|
-
cookie?: never;
|
|
15191
|
-
};
|
|
15192
|
-
requestBody?: never;
|
|
15193
|
-
responses: {
|
|
15194
|
-
/** @description OK */
|
|
15195
|
-
200: {
|
|
15196
|
-
headers: {
|
|
15197
|
-
[name: string]: unknown;
|
|
15198
|
-
};
|
|
15199
|
-
content: {
|
|
15200
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_"];
|
|
15201
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_"];
|
|
15202
|
-
};
|
|
15203
|
-
};
|
|
15204
|
-
/**
|
|
15205
|
-
* @description 1: Invalid bundle
|
|
15206
|
-
* 2: Error retrieving bundles
|
|
15207
|
-
* 3: Error getting bundle recommendations
|
|
15208
|
-
* 4: NumItems exceed maximum
|
|
15209
|
-
*/
|
|
15210
|
-
400: {
|
|
15211
|
-
headers: {
|
|
15212
|
-
[name: string]: unknown;
|
|
15213
|
-
};
|
|
15214
|
-
content?: never;
|
|
15215
|
-
};
|
|
15216
|
-
};
|
|
15217
|
-
};
|
|
15218
|
-
put?: never;
|
|
15219
|
-
post?: never;
|
|
15220
|
-
delete?: never;
|
|
15221
|
-
options?: never;
|
|
15222
|
-
head?: never;
|
|
15223
|
-
patch?: never;
|
|
15224
|
-
trace?: never;
|
|
15225
|
-
};
|
|
15226
14655
|
"/v1/catalog/items/details": {
|
|
15227
14656
|
parameters: {
|
|
15228
14657
|
query?: never;
|
|
@@ -15293,43 +14722,6 @@ export interface paths {
|
|
|
15293
14722
|
patch?: never;
|
|
15294
14723
|
trace?: never;
|
|
15295
14724
|
};
|
|
15296
|
-
"/v1/categories": {
|
|
15297
|
-
parameters: {
|
|
15298
|
-
query?: never;
|
|
15299
|
-
header?: never;
|
|
15300
|
-
path?: never;
|
|
15301
|
-
cookie?: never;
|
|
15302
|
-
};
|
|
15303
|
-
/** Lists Category Names and their Ids. */
|
|
15304
|
-
get: {
|
|
15305
|
-
parameters: {
|
|
15306
|
-
query?: never;
|
|
15307
|
-
header?: never;
|
|
15308
|
-
path?: never;
|
|
15309
|
-
cookie?: never;
|
|
15310
|
-
};
|
|
15311
|
-
requestBody?: never;
|
|
15312
|
-
responses: {
|
|
15313
|
-
/** @description OK */
|
|
15314
|
-
200: {
|
|
15315
|
-
headers: {
|
|
15316
|
-
[name: string]: unknown;
|
|
15317
|
-
};
|
|
15318
|
-
content: {
|
|
15319
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.CategoryModel"][];
|
|
15320
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.CategoryModel"][];
|
|
15321
|
-
};
|
|
15322
|
-
};
|
|
15323
|
-
};
|
|
15324
|
-
};
|
|
15325
|
-
put?: never;
|
|
15326
|
-
post?: never;
|
|
15327
|
-
delete?: never;
|
|
15328
|
-
options?: never;
|
|
15329
|
-
head?: never;
|
|
15330
|
-
patch?: never;
|
|
15331
|
-
trace?: never;
|
|
15332
|
-
};
|
|
15333
14725
|
"/v1/client-assertion": {
|
|
15334
14726
|
parameters: {
|
|
15335
14727
|
query?: never;
|
|
@@ -15595,29 +14987,26 @@ export interface paths {
|
|
|
15595
14987
|
patch?: never;
|
|
15596
14988
|
trace?: never;
|
|
15597
14989
|
};
|
|
15598
|
-
"/v1/
|
|
14990
|
+
"/v1/description": {
|
|
15599
14991
|
parameters: {
|
|
15600
14992
|
query?: never;
|
|
15601
14993
|
header?: never;
|
|
15602
14994
|
path?: never;
|
|
15603
14995
|
cookie?: never;
|
|
15604
14996
|
};
|
|
15605
|
-
|
|
15606
|
-
|
|
15607
|
-
|
|
15608
|
-
|
|
14997
|
+
/**
|
|
14998
|
+
* Get the user's description
|
|
14999
|
+
* @deprecated
|
|
15000
|
+
* @description Replaced by users.roblox.com/v1/description
|
|
15001
|
+
*/
|
|
15002
|
+
get: {
|
|
15609
15003
|
parameters: {
|
|
15610
15004
|
query?: never;
|
|
15611
15005
|
header?: never;
|
|
15612
15006
|
path?: never;
|
|
15613
15007
|
cookie?: never;
|
|
15614
15008
|
};
|
|
15615
|
-
requestBody
|
|
15616
|
-
content: {
|
|
15617
|
-
"application/json": components["schemas"]["Roblox.ItemConfiguration.Api.AssetCreationsDetailsRequest"];
|
|
15618
|
-
"text/json": components["schemas"]["Roblox.ItemConfiguration.Api.AssetCreationsDetailsRequest"];
|
|
15619
|
-
};
|
|
15620
|
-
};
|
|
15009
|
+
requestBody?: never;
|
|
15621
15010
|
responses: {
|
|
15622
15011
|
/** @description OK */
|
|
15623
15012
|
200: {
|
|
@@ -15625,14 +15014,11 @@ export interface paths {
|
|
|
15625
15014
|
[name: string]: unknown;
|
|
15626
15015
|
};
|
|
15627
15016
|
content: {
|
|
15628
|
-
"application/json": components["schemas"]["Roblox.
|
|
15629
|
-
"text/json": components["schemas"]["Roblox.
|
|
15017
|
+
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.DescriptionResponse"];
|
|
15018
|
+
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.DescriptionResponse"];
|
|
15630
15019
|
};
|
|
15631
15020
|
};
|
|
15632
|
-
/**
|
|
15633
|
-
* @description 1: Missing AssetIds parameters
|
|
15634
|
-
* 2: Invalid asset Ids
|
|
15635
|
-
*/
|
|
15021
|
+
/** @description 1: User not found. */
|
|
15636
15022
|
400: {
|
|
15637
15023
|
headers: {
|
|
15638
15024
|
[name: string]: unknown;
|
|
@@ -15646,66 +15032,28 @@ export interface paths {
|
|
|
15646
15032
|
};
|
|
15647
15033
|
content?: never;
|
|
15648
15034
|
};
|
|
15649
|
-
/** @description 0: Token Validation Failed */
|
|
15650
|
-
403: {
|
|
15651
|
-
headers: {
|
|
15652
|
-
[name: string]: unknown;
|
|
15653
|
-
};
|
|
15654
|
-
content?: never;
|
|
15655
|
-
};
|
|
15656
|
-
/** @description 3: Too many asset Ids */
|
|
15657
|
-
414: {
|
|
15658
|
-
headers: {
|
|
15659
|
-
[name: string]: unknown;
|
|
15660
|
-
};
|
|
15661
|
-
content?: never;
|
|
15662
|
-
};
|
|
15663
|
-
/** @description 9: Flood Limit Exceeded */
|
|
15664
|
-
429: {
|
|
15665
|
-
headers: {
|
|
15666
|
-
[name: string]: unknown;
|
|
15667
|
-
};
|
|
15668
|
-
content?: never;
|
|
15669
|
-
};
|
|
15670
|
-
/** @description 6: Service Unavailable */
|
|
15671
|
-
503: {
|
|
15672
|
-
headers: {
|
|
15673
|
-
[name: string]: unknown;
|
|
15674
|
-
};
|
|
15675
|
-
content?: never;
|
|
15676
|
-
};
|
|
15677
15035
|
};
|
|
15678
15036
|
};
|
|
15679
|
-
|
|
15680
|
-
|
|
15681
|
-
|
|
15682
|
-
|
|
15683
|
-
|
|
15684
|
-
|
|
15685
|
-
|
|
15686
|
-
parameters: {
|
|
15687
|
-
query?: never;
|
|
15688
|
-
header?: never;
|
|
15689
|
-
path?: never;
|
|
15690
|
-
cookie?: never;
|
|
15691
|
-
};
|
|
15692
|
-
/** Gets the user created asset information filtered by the given asset type. */
|
|
15693
|
-
get: {
|
|
15037
|
+
put?: never;
|
|
15038
|
+
/**
|
|
15039
|
+
* Update the user's description
|
|
15040
|
+
* @deprecated
|
|
15041
|
+
* @description Replaced by users.roblox.com/v1/description
|
|
15042
|
+
*/
|
|
15043
|
+
post: {
|
|
15694
15044
|
parameters: {
|
|
15695
|
-
query
|
|
15696
|
-
assetType: string;
|
|
15697
|
-
isArchived?: boolean;
|
|
15698
|
-
groupId?: number;
|
|
15699
|
-
/** @description The number of results per request. */
|
|
15700
|
-
limit?: 10 | 25 | 50 | 100;
|
|
15701
|
-
/** @description The paging cursor for the previous or next page. */
|
|
15702
|
-
cursor?: string;
|
|
15703
|
-
};
|
|
15045
|
+
query?: never;
|
|
15704
15046
|
header?: never;
|
|
15705
15047
|
path?: never;
|
|
15706
15048
|
cookie?: never;
|
|
15707
15049
|
};
|
|
15708
|
-
|
|
15050
|
+
/** @description The Roblox.AccountInformation.Api.Models.DescriptionRequest */
|
|
15051
|
+
requestBody: {
|
|
15052
|
+
content: {
|
|
15053
|
+
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.DescriptionRequest"];
|
|
15054
|
+
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.DescriptionRequest"];
|
|
15055
|
+
};
|
|
15056
|
+
};
|
|
15709
15057
|
responses: {
|
|
15710
15058
|
/** @description OK */
|
|
15711
15059
|
200: {
|
|
@@ -15713,14 +15061,11 @@ export interface paths {
|
|
|
15713
15061
|
[name: string]: unknown;
|
|
15714
15062
|
};
|
|
15715
15063
|
content: {
|
|
15716
|
-
"application/json": components["schemas"]["Roblox.
|
|
15717
|
-
"text/json": components["schemas"]["Roblox.
|
|
15064
|
+
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.DescriptionResponse"];
|
|
15065
|
+
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.DescriptionResponse"];
|
|
15718
15066
|
};
|
|
15719
15067
|
};
|
|
15720
|
-
/**
|
|
15721
|
-
* @description 5: Invalid assetType
|
|
15722
|
-
* 10: Invalid Asset Category
|
|
15723
|
-
*/
|
|
15068
|
+
/** @description 1: User not found. */
|
|
15724
15069
|
400: {
|
|
15725
15070
|
headers: {
|
|
15726
15071
|
[name: string]: unknown;
|
|
@@ -15734,24 +15079,21 @@ export interface paths {
|
|
|
15734
15079
|
};
|
|
15735
15080
|
content?: never;
|
|
15736
15081
|
};
|
|
15737
|
-
/**
|
|
15738
|
-
* @description 7: User does not have necessary permissions for group
|
|
15739
|
-
* 8: Asset type does not have necessary permissions for group
|
|
15740
|
-
*/
|
|
15082
|
+
/** @description 0: Token Validation Failed */
|
|
15741
15083
|
403: {
|
|
15742
15084
|
headers: {
|
|
15743
15085
|
[name: string]: unknown;
|
|
15744
15086
|
};
|
|
15745
15087
|
content?: never;
|
|
15746
15088
|
};
|
|
15747
|
-
/** @description
|
|
15748
|
-
|
|
15089
|
+
/** @description 0: An unknown error occured. */
|
|
15090
|
+
500: {
|
|
15749
15091
|
headers: {
|
|
15750
15092
|
[name: string]: unknown;
|
|
15751
15093
|
};
|
|
15752
15094
|
content?: never;
|
|
15753
15095
|
};
|
|
15754
|
-
/** @description
|
|
15096
|
+
/** @description 3: This feature is currently disabled. Please try again later. */
|
|
15755
15097
|
503: {
|
|
15756
15098
|
headers: {
|
|
15757
15099
|
[name: string]: unknown;
|
|
@@ -15760,26 +15102,20 @@ export interface paths {
|
|
|
15760
15102
|
};
|
|
15761
15103
|
};
|
|
15762
15104
|
};
|
|
15763
|
-
put?: never;
|
|
15764
|
-
post?: never;
|
|
15765
15105
|
delete?: never;
|
|
15766
15106
|
options?: never;
|
|
15767
15107
|
head?: never;
|
|
15768
15108
|
patch?: never;
|
|
15769
15109
|
trace?: never;
|
|
15770
15110
|
};
|
|
15771
|
-
"/v1/description": {
|
|
15111
|
+
"/v1/description#users.roblox.com": {
|
|
15772
15112
|
parameters: {
|
|
15773
15113
|
query?: never;
|
|
15774
15114
|
header?: never;
|
|
15775
15115
|
path?: never;
|
|
15776
15116
|
cookie?: never;
|
|
15777
15117
|
};
|
|
15778
|
-
/**
|
|
15779
|
-
* Get the user's description
|
|
15780
|
-
* @deprecated
|
|
15781
|
-
* @description Replaced by users.roblox.com/v1/description
|
|
15782
|
-
*/
|
|
15118
|
+
/** Get the user's description */
|
|
15783
15119
|
get: {
|
|
15784
15120
|
parameters: {
|
|
15785
15121
|
query?: never;
|
|
@@ -15795,8 +15131,8 @@ export interface paths {
|
|
|
15795
15131
|
[name: string]: unknown;
|
|
15796
15132
|
};
|
|
15797
15133
|
content: {
|
|
15798
|
-
"application/json": components["schemas"]["Roblox.
|
|
15799
|
-
"text/json": components["schemas"]["Roblox.
|
|
15134
|
+
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15135
|
+
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15800
15136
|
};
|
|
15801
15137
|
};
|
|
15802
15138
|
/** @description 1: User not found. */
|
|
@@ -15816,11 +15152,7 @@ export interface paths {
|
|
|
15816
15152
|
};
|
|
15817
15153
|
};
|
|
15818
15154
|
put?: never;
|
|
15819
|
-
/**
|
|
15820
|
-
* Update the user's description
|
|
15821
|
-
* @deprecated
|
|
15822
|
-
* @description Replaced by users.roblox.com/v1/description
|
|
15823
|
-
*/
|
|
15155
|
+
/** Update the user's description */
|
|
15824
15156
|
post: {
|
|
15825
15157
|
parameters: {
|
|
15826
15158
|
query?: never;
|
|
@@ -15828,11 +15160,11 @@ export interface paths {
|
|
|
15828
15160
|
path?: never;
|
|
15829
15161
|
cookie?: never;
|
|
15830
15162
|
};
|
|
15831
|
-
/** @description The Roblox.
|
|
15163
|
+
/** @description The Roblox.Users.Api.DescriptionRequest */
|
|
15832
15164
|
requestBody: {
|
|
15833
15165
|
content: {
|
|
15834
|
-
"application/json": components["schemas"]["Roblox.
|
|
15835
|
-
"text/json": components["schemas"]["Roblox.
|
|
15166
|
+
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15167
|
+
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15836
15168
|
};
|
|
15837
15169
|
};
|
|
15838
15170
|
responses: {
|
|
@@ -15842,8 +15174,8 @@ export interface paths {
|
|
|
15842
15174
|
[name: string]: unknown;
|
|
15843
15175
|
};
|
|
15844
15176
|
content: {
|
|
15845
|
-
"application/json": components["schemas"]["Roblox.
|
|
15846
|
-
"text/json": components["schemas"]["Roblox.
|
|
15177
|
+
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15178
|
+
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15847
15179
|
};
|
|
15848
15180
|
};
|
|
15849
15181
|
/** @description 1: User not found. */
|
|
@@ -15860,123 +15192,10 @@ export interface paths {
|
|
|
15860
15192
|
};
|
|
15861
15193
|
content?: never;
|
|
15862
15194
|
};
|
|
15863
|
-
/**
|
|
15864
|
-
|
|
15865
|
-
|
|
15866
|
-
|
|
15867
|
-
};
|
|
15868
|
-
content?: never;
|
|
15869
|
-
};
|
|
15870
|
-
/** @description 0: An unknown error occured. */
|
|
15871
|
-
500: {
|
|
15872
|
-
headers: {
|
|
15873
|
-
[name: string]: unknown;
|
|
15874
|
-
};
|
|
15875
|
-
content?: never;
|
|
15876
|
-
};
|
|
15877
|
-
/** @description 3: This feature is currently disabled. Please try again later. */
|
|
15878
|
-
503: {
|
|
15879
|
-
headers: {
|
|
15880
|
-
[name: string]: unknown;
|
|
15881
|
-
};
|
|
15882
|
-
content?: never;
|
|
15883
|
-
};
|
|
15884
|
-
};
|
|
15885
|
-
};
|
|
15886
|
-
delete?: never;
|
|
15887
|
-
options?: never;
|
|
15888
|
-
head?: never;
|
|
15889
|
-
patch?: never;
|
|
15890
|
-
trace?: never;
|
|
15891
|
-
};
|
|
15892
|
-
"/v1/description#users.roblox.com": {
|
|
15893
|
-
parameters: {
|
|
15894
|
-
query?: never;
|
|
15895
|
-
header?: never;
|
|
15896
|
-
path?: never;
|
|
15897
|
-
cookie?: never;
|
|
15898
|
-
};
|
|
15899
|
-
/** Get the user's description */
|
|
15900
|
-
get: {
|
|
15901
|
-
parameters: {
|
|
15902
|
-
query?: never;
|
|
15903
|
-
header?: never;
|
|
15904
|
-
path?: never;
|
|
15905
|
-
cookie?: never;
|
|
15906
|
-
};
|
|
15907
|
-
requestBody?: never;
|
|
15908
|
-
responses: {
|
|
15909
|
-
/** @description OK */
|
|
15910
|
-
200: {
|
|
15911
|
-
headers: {
|
|
15912
|
-
[name: string]: unknown;
|
|
15913
|
-
};
|
|
15914
|
-
content: {
|
|
15915
|
-
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15916
|
-
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15917
|
-
};
|
|
15918
|
-
};
|
|
15919
|
-
/** @description 1: User not found. */
|
|
15920
|
-
400: {
|
|
15921
|
-
headers: {
|
|
15922
|
-
[name: string]: unknown;
|
|
15923
|
-
};
|
|
15924
|
-
content?: never;
|
|
15925
|
-
};
|
|
15926
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
15927
|
-
401: {
|
|
15928
|
-
headers: {
|
|
15929
|
-
[name: string]: unknown;
|
|
15930
|
-
};
|
|
15931
|
-
content?: never;
|
|
15932
|
-
};
|
|
15933
|
-
};
|
|
15934
|
-
};
|
|
15935
|
-
put?: never;
|
|
15936
|
-
/** Update the user's description */
|
|
15937
|
-
post: {
|
|
15938
|
-
parameters: {
|
|
15939
|
-
query?: never;
|
|
15940
|
-
header?: never;
|
|
15941
|
-
path?: never;
|
|
15942
|
-
cookie?: never;
|
|
15943
|
-
};
|
|
15944
|
-
/** @description The Roblox.Users.Api.DescriptionRequest */
|
|
15945
|
-
requestBody: {
|
|
15946
|
-
content: {
|
|
15947
|
-
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15948
|
-
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15949
|
-
};
|
|
15950
|
-
};
|
|
15951
|
-
responses: {
|
|
15952
|
-
/** @description OK */
|
|
15953
|
-
200: {
|
|
15954
|
-
headers: {
|
|
15955
|
-
[name: string]: unknown;
|
|
15956
|
-
};
|
|
15957
|
-
content: {
|
|
15958
|
-
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15959
|
-
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15960
|
-
};
|
|
15961
|
-
};
|
|
15962
|
-
/** @description 1: User not found. */
|
|
15963
|
-
400: {
|
|
15964
|
-
headers: {
|
|
15965
|
-
[name: string]: unknown;
|
|
15966
|
-
};
|
|
15967
|
-
content?: never;
|
|
15968
|
-
};
|
|
15969
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
15970
|
-
401: {
|
|
15971
|
-
headers: {
|
|
15972
|
-
[name: string]: unknown;
|
|
15973
|
-
};
|
|
15974
|
-
content?: never;
|
|
15975
|
-
};
|
|
15976
|
-
/**
|
|
15977
|
-
* @description 0: Token Validation Failed
|
|
15978
|
-
* 2: PIN is locked.
|
|
15979
|
-
*/
|
|
15195
|
+
/**
|
|
15196
|
+
* @description 0: Token Validation Failed
|
|
15197
|
+
* 2: PIN is locked.
|
|
15198
|
+
*/
|
|
15980
15199
|
403: {
|
|
15981
15200
|
headers: {
|
|
15982
15201
|
[name: string]: unknown;
|
|
@@ -17696,380 +16915,6 @@ export interface paths {
|
|
|
17696
16915
|
patch?: never;
|
|
17697
16916
|
trace?: never;
|
|
17698
16917
|
};
|
|
17699
|
-
"/v1/favorites/users/{userId}/assets/{assetId}/favorite": {
|
|
17700
|
-
parameters: {
|
|
17701
|
-
query?: never;
|
|
17702
|
-
header?: never;
|
|
17703
|
-
path?: never;
|
|
17704
|
-
cookie?: never;
|
|
17705
|
-
};
|
|
17706
|
-
/** Gets the favorite model for the asset and user. */
|
|
17707
|
-
get: {
|
|
17708
|
-
parameters: {
|
|
17709
|
-
query?: never;
|
|
17710
|
-
header?: never;
|
|
17711
|
-
path: {
|
|
17712
|
-
userId: number;
|
|
17713
|
-
assetId: number;
|
|
17714
|
-
};
|
|
17715
|
-
cookie?: never;
|
|
17716
|
-
};
|
|
17717
|
-
requestBody?: never;
|
|
17718
|
-
responses: {
|
|
17719
|
-
/** @description OK */
|
|
17720
|
-
200: {
|
|
17721
|
-
headers: {
|
|
17722
|
-
[name: string]: unknown;
|
|
17723
|
-
};
|
|
17724
|
-
content: {
|
|
17725
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.AssetFavoriteModel"];
|
|
17726
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.AssetFavoriteModel"];
|
|
17727
|
-
};
|
|
17728
|
-
};
|
|
17729
|
-
/**
|
|
17730
|
-
* @description 1: Invalid user Id.
|
|
17731
|
-
* 2: Invalid asset Id.
|
|
17732
|
-
*/
|
|
17733
|
-
400: {
|
|
17734
|
-
headers: {
|
|
17735
|
-
[name: string]: unknown;
|
|
17736
|
-
};
|
|
17737
|
-
content?: never;
|
|
17738
|
-
};
|
|
17739
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17740
|
-
401: {
|
|
17741
|
-
headers: {
|
|
17742
|
-
[name: string]: unknown;
|
|
17743
|
-
};
|
|
17744
|
-
content?: never;
|
|
17745
|
-
};
|
|
17746
|
-
};
|
|
17747
|
-
};
|
|
17748
|
-
put?: never;
|
|
17749
|
-
/** Create a favorite for an asset by the authenticated user. */
|
|
17750
|
-
post: {
|
|
17751
|
-
parameters: {
|
|
17752
|
-
query?: never;
|
|
17753
|
-
header?: never;
|
|
17754
|
-
path: {
|
|
17755
|
-
userId: number;
|
|
17756
|
-
assetId: number;
|
|
17757
|
-
};
|
|
17758
|
-
cookie?: never;
|
|
17759
|
-
};
|
|
17760
|
-
requestBody?: never;
|
|
17761
|
-
responses: {
|
|
17762
|
-
/** @description OK */
|
|
17763
|
-
200: {
|
|
17764
|
-
headers: {
|
|
17765
|
-
[name: string]: unknown;
|
|
17766
|
-
};
|
|
17767
|
-
content: {
|
|
17768
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17769
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17770
|
-
};
|
|
17771
|
-
};
|
|
17772
|
-
/**
|
|
17773
|
-
* @description 1: Invalid user Id.
|
|
17774
|
-
* 2: Invalid asset Id.
|
|
17775
|
-
*/
|
|
17776
|
-
400: {
|
|
17777
|
-
headers: {
|
|
17778
|
-
[name: string]: unknown;
|
|
17779
|
-
};
|
|
17780
|
-
content?: never;
|
|
17781
|
-
};
|
|
17782
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17783
|
-
401: {
|
|
17784
|
-
headers: {
|
|
17785
|
-
[name: string]: unknown;
|
|
17786
|
-
};
|
|
17787
|
-
content?: never;
|
|
17788
|
-
};
|
|
17789
|
-
/**
|
|
17790
|
-
* @description 0: Token Validation Failed
|
|
17791
|
-
* 6: You are not authorized to perform this action.
|
|
17792
|
-
*/
|
|
17793
|
-
403: {
|
|
17794
|
-
headers: {
|
|
17795
|
-
[name: string]: unknown;
|
|
17796
|
-
};
|
|
17797
|
-
content?: never;
|
|
17798
|
-
};
|
|
17799
|
-
/** @description 3: Asset is already favorited. */
|
|
17800
|
-
409: {
|
|
17801
|
-
headers: {
|
|
17802
|
-
[name: string]: unknown;
|
|
17803
|
-
};
|
|
17804
|
-
content?: never;
|
|
17805
|
-
};
|
|
17806
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
17807
|
-
429: {
|
|
17808
|
-
headers: {
|
|
17809
|
-
[name: string]: unknown;
|
|
17810
|
-
};
|
|
17811
|
-
content?: never;
|
|
17812
|
-
};
|
|
17813
|
-
};
|
|
17814
|
-
};
|
|
17815
|
-
/** Delete a favorite for an asset by the authenticated user. */
|
|
17816
|
-
delete: {
|
|
17817
|
-
parameters: {
|
|
17818
|
-
query?: never;
|
|
17819
|
-
header?: never;
|
|
17820
|
-
path: {
|
|
17821
|
-
userId: number;
|
|
17822
|
-
assetId: number;
|
|
17823
|
-
};
|
|
17824
|
-
cookie?: never;
|
|
17825
|
-
};
|
|
17826
|
-
requestBody?: never;
|
|
17827
|
-
responses: {
|
|
17828
|
-
/** @description OK */
|
|
17829
|
-
200: {
|
|
17830
|
-
headers: {
|
|
17831
|
-
[name: string]: unknown;
|
|
17832
|
-
};
|
|
17833
|
-
content: {
|
|
17834
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17835
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17836
|
-
};
|
|
17837
|
-
};
|
|
17838
|
-
/**
|
|
17839
|
-
* @description 1: Invalid user Id.
|
|
17840
|
-
* 2: Invalid asset Id.
|
|
17841
|
-
*/
|
|
17842
|
-
400: {
|
|
17843
|
-
headers: {
|
|
17844
|
-
[name: string]: unknown;
|
|
17845
|
-
};
|
|
17846
|
-
content?: never;
|
|
17847
|
-
};
|
|
17848
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17849
|
-
401: {
|
|
17850
|
-
headers: {
|
|
17851
|
-
[name: string]: unknown;
|
|
17852
|
-
};
|
|
17853
|
-
content?: never;
|
|
17854
|
-
};
|
|
17855
|
-
/**
|
|
17856
|
-
* @description 0: Token Validation Failed
|
|
17857
|
-
* 6: You are not authorized to perform this action.
|
|
17858
|
-
*/
|
|
17859
|
-
403: {
|
|
17860
|
-
headers: {
|
|
17861
|
-
[name: string]: unknown;
|
|
17862
|
-
};
|
|
17863
|
-
content?: never;
|
|
17864
|
-
};
|
|
17865
|
-
/** @description 4: Asset is already not favorited. */
|
|
17866
|
-
409: {
|
|
17867
|
-
headers: {
|
|
17868
|
-
[name: string]: unknown;
|
|
17869
|
-
};
|
|
17870
|
-
content?: never;
|
|
17871
|
-
};
|
|
17872
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
17873
|
-
429: {
|
|
17874
|
-
headers: {
|
|
17875
|
-
[name: string]: unknown;
|
|
17876
|
-
};
|
|
17877
|
-
content?: never;
|
|
17878
|
-
};
|
|
17879
|
-
};
|
|
17880
|
-
};
|
|
17881
|
-
options?: never;
|
|
17882
|
-
head?: never;
|
|
17883
|
-
patch?: never;
|
|
17884
|
-
trace?: never;
|
|
17885
|
-
};
|
|
17886
|
-
"/v1/favorites/users/{userId}/bundles/{bundleId}/favorite": {
|
|
17887
|
-
parameters: {
|
|
17888
|
-
query?: never;
|
|
17889
|
-
header?: never;
|
|
17890
|
-
path?: never;
|
|
17891
|
-
cookie?: never;
|
|
17892
|
-
};
|
|
17893
|
-
/** Gets the favorite model for the bundle and user. */
|
|
17894
|
-
get: {
|
|
17895
|
-
parameters: {
|
|
17896
|
-
query?: never;
|
|
17897
|
-
header?: never;
|
|
17898
|
-
path: {
|
|
17899
|
-
userId: number;
|
|
17900
|
-
bundleId: number;
|
|
17901
|
-
};
|
|
17902
|
-
cookie?: never;
|
|
17903
|
-
};
|
|
17904
|
-
requestBody?: never;
|
|
17905
|
-
responses: {
|
|
17906
|
-
/** @description OK */
|
|
17907
|
-
200: {
|
|
17908
|
-
headers: {
|
|
17909
|
-
[name: string]: unknown;
|
|
17910
|
-
};
|
|
17911
|
-
content: {
|
|
17912
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.BundleFavoriteModel"];
|
|
17913
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.BundleFavoriteModel"];
|
|
17914
|
-
};
|
|
17915
|
-
};
|
|
17916
|
-
/**
|
|
17917
|
-
* @description 1: Invalid user Id.
|
|
17918
|
-
* 2: Invalid bundle Id.
|
|
17919
|
-
*/
|
|
17920
|
-
400: {
|
|
17921
|
-
headers: {
|
|
17922
|
-
[name: string]: unknown;
|
|
17923
|
-
};
|
|
17924
|
-
content?: never;
|
|
17925
|
-
};
|
|
17926
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17927
|
-
401: {
|
|
17928
|
-
headers: {
|
|
17929
|
-
[name: string]: unknown;
|
|
17930
|
-
};
|
|
17931
|
-
content?: never;
|
|
17932
|
-
};
|
|
17933
|
-
};
|
|
17934
|
-
};
|
|
17935
|
-
put?: never;
|
|
17936
|
-
/** Create a favorite for the bundle by the authenticated user. */
|
|
17937
|
-
post: {
|
|
17938
|
-
parameters: {
|
|
17939
|
-
query?: never;
|
|
17940
|
-
header?: never;
|
|
17941
|
-
path: {
|
|
17942
|
-
userId: number;
|
|
17943
|
-
bundleId: number;
|
|
17944
|
-
};
|
|
17945
|
-
cookie?: never;
|
|
17946
|
-
};
|
|
17947
|
-
requestBody?: never;
|
|
17948
|
-
responses: {
|
|
17949
|
-
/** @description OK */
|
|
17950
|
-
200: {
|
|
17951
|
-
headers: {
|
|
17952
|
-
[name: string]: unknown;
|
|
17953
|
-
};
|
|
17954
|
-
content: {
|
|
17955
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17956
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17957
|
-
};
|
|
17958
|
-
};
|
|
17959
|
-
/**
|
|
17960
|
-
* @description 1: Invalid user Id.
|
|
17961
|
-
* 2: Invalid bundle Id.
|
|
17962
|
-
*/
|
|
17963
|
-
400: {
|
|
17964
|
-
headers: {
|
|
17965
|
-
[name: string]: unknown;
|
|
17966
|
-
};
|
|
17967
|
-
content?: never;
|
|
17968
|
-
};
|
|
17969
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17970
|
-
401: {
|
|
17971
|
-
headers: {
|
|
17972
|
-
[name: string]: unknown;
|
|
17973
|
-
};
|
|
17974
|
-
content?: never;
|
|
17975
|
-
};
|
|
17976
|
-
/**
|
|
17977
|
-
* @description 0: Token Validation Failed
|
|
17978
|
-
* 6: You are not authorized to perform this action.
|
|
17979
|
-
*/
|
|
17980
|
-
403: {
|
|
17981
|
-
headers: {
|
|
17982
|
-
[name: string]: unknown;
|
|
17983
|
-
};
|
|
17984
|
-
content?: never;
|
|
17985
|
-
};
|
|
17986
|
-
/** @description 3: Bundle is already favorited. */
|
|
17987
|
-
409: {
|
|
17988
|
-
headers: {
|
|
17989
|
-
[name: string]: unknown;
|
|
17990
|
-
};
|
|
17991
|
-
content?: never;
|
|
17992
|
-
};
|
|
17993
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
17994
|
-
429: {
|
|
17995
|
-
headers: {
|
|
17996
|
-
[name: string]: unknown;
|
|
17997
|
-
};
|
|
17998
|
-
content?: never;
|
|
17999
|
-
};
|
|
18000
|
-
};
|
|
18001
|
-
};
|
|
18002
|
-
/** Delete favorite for the bundle by the authenticated user. */
|
|
18003
|
-
delete: {
|
|
18004
|
-
parameters: {
|
|
18005
|
-
query?: never;
|
|
18006
|
-
header?: never;
|
|
18007
|
-
path: {
|
|
18008
|
-
userId: number;
|
|
18009
|
-
bundleId: number;
|
|
18010
|
-
};
|
|
18011
|
-
cookie?: never;
|
|
18012
|
-
};
|
|
18013
|
-
requestBody?: never;
|
|
18014
|
-
responses: {
|
|
18015
|
-
/** @description OK */
|
|
18016
|
-
200: {
|
|
18017
|
-
headers: {
|
|
18018
|
-
[name: string]: unknown;
|
|
18019
|
-
};
|
|
18020
|
-
content: {
|
|
18021
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
18022
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
18023
|
-
};
|
|
18024
|
-
};
|
|
18025
|
-
/**
|
|
18026
|
-
* @description 1: Invalid user Id.
|
|
18027
|
-
* 2: Invalid bundle Id.
|
|
18028
|
-
*/
|
|
18029
|
-
400: {
|
|
18030
|
-
headers: {
|
|
18031
|
-
[name: string]: unknown;
|
|
18032
|
-
};
|
|
18033
|
-
content?: never;
|
|
18034
|
-
};
|
|
18035
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
18036
|
-
401: {
|
|
18037
|
-
headers: {
|
|
18038
|
-
[name: string]: unknown;
|
|
18039
|
-
};
|
|
18040
|
-
content?: never;
|
|
18041
|
-
};
|
|
18042
|
-
/**
|
|
18043
|
-
* @description 0: Token Validation Failed
|
|
18044
|
-
* 6: You are not authorized to perform this action.
|
|
18045
|
-
*/
|
|
18046
|
-
403: {
|
|
18047
|
-
headers: {
|
|
18048
|
-
[name: string]: unknown;
|
|
18049
|
-
};
|
|
18050
|
-
content?: never;
|
|
18051
|
-
};
|
|
18052
|
-
/** @description 4: Bundle is already not favorited. */
|
|
18053
|
-
409: {
|
|
18054
|
-
headers: {
|
|
18055
|
-
[name: string]: unknown;
|
|
18056
|
-
};
|
|
18057
|
-
content?: never;
|
|
18058
|
-
};
|
|
18059
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
18060
|
-
429: {
|
|
18061
|
-
headers: {
|
|
18062
|
-
[name: string]: unknown;
|
|
18063
|
-
};
|
|
18064
|
-
content?: never;
|
|
18065
|
-
};
|
|
18066
|
-
};
|
|
18067
|
-
};
|
|
18068
|
-
options?: never;
|
|
18069
|
-
head?: never;
|
|
18070
|
-
patch?: never;
|
|
18071
|
-
trace?: never;
|
|
18072
|
-
};
|
|
18073
16918
|
"/v1/favorites/users/{userId}/favorites/{assetTypeId}/assets": {
|
|
18074
16919
|
parameters: {
|
|
18075
16920
|
query?: never;
|
|
@@ -18135,82 +16980,6 @@ export interface paths {
|
|
|
18135
16980
|
patch?: never;
|
|
18136
16981
|
trace?: never;
|
|
18137
16982
|
};
|
|
18138
|
-
"/v1/favorites/users/{userId}/favorites/{subtypeId}/bundles": {
|
|
18139
|
-
parameters: {
|
|
18140
|
-
query?: never;
|
|
18141
|
-
header?: never;
|
|
18142
|
-
path?: never;
|
|
18143
|
-
cookie?: never;
|
|
18144
|
-
};
|
|
18145
|
-
/** Lists the bundles favorited by a given user with the given bundle subtypeId.Switched to EAAS style pagination cursors since July 2024. */
|
|
18146
|
-
get: {
|
|
18147
|
-
parameters: {
|
|
18148
|
-
query?: {
|
|
18149
|
-
itemsPerPage?: number;
|
|
18150
|
-
cursor?: string;
|
|
18151
|
-
isPrevious?: boolean;
|
|
18152
|
-
};
|
|
18153
|
-
header?: never;
|
|
18154
|
-
path: {
|
|
18155
|
-
userId: number;
|
|
18156
|
-
subtypeId: number;
|
|
18157
|
-
};
|
|
18158
|
-
cookie?: never;
|
|
18159
|
-
};
|
|
18160
|
-
requestBody?: never;
|
|
18161
|
-
responses: {
|
|
18162
|
-
/** @description OK */
|
|
18163
|
-
200: {
|
|
18164
|
-
headers: {
|
|
18165
|
-
[name: string]: unknown;
|
|
18166
|
-
};
|
|
18167
|
-
content: {
|
|
18168
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.FavoriteBundlesResponse"];
|
|
18169
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.FavoriteBundlesResponse"];
|
|
18170
|
-
};
|
|
18171
|
-
};
|
|
18172
|
-
/**
|
|
18173
|
-
* @description 1: Invalid user Id.
|
|
18174
|
-
* 3: Cannot request so many bundles at once.
|
|
18175
|
-
* 10: Invalid previous pagination request. Please provide a cursor when isPrevious is true
|
|
18176
|
-
*/
|
|
18177
|
-
400: {
|
|
18178
|
-
headers: {
|
|
18179
|
-
[name: string]: unknown;
|
|
18180
|
-
};
|
|
18181
|
-
content?: never;
|
|
18182
|
-
};
|
|
18183
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
18184
|
-
401: {
|
|
18185
|
-
headers: {
|
|
18186
|
-
[name: string]: unknown;
|
|
18187
|
-
};
|
|
18188
|
-
content?: never;
|
|
18189
|
-
};
|
|
18190
|
-
/** @description 6: You are not authorized to perform this action. */
|
|
18191
|
-
403: {
|
|
18192
|
-
headers: {
|
|
18193
|
-
[name: string]: unknown;
|
|
18194
|
-
};
|
|
18195
|
-
content?: never;
|
|
18196
|
-
};
|
|
18197
|
-
/** @description 11: Internal server error. Please check if you have provided correct pagination cursor */
|
|
18198
|
-
500: {
|
|
18199
|
-
headers: {
|
|
18200
|
-
[name: string]: unknown;
|
|
18201
|
-
};
|
|
18202
|
-
content?: never;
|
|
18203
|
-
};
|
|
18204
|
-
};
|
|
18205
|
-
};
|
|
18206
|
-
put?: never;
|
|
18207
|
-
post?: never;
|
|
18208
|
-
delete?: never;
|
|
18209
|
-
options?: never;
|
|
18210
|
-
head?: never;
|
|
18211
|
-
patch?: never;
|
|
18212
|
-
trace?: never;
|
|
18213
|
-
};
|
|
18214
16983
|
"/v1/featured-content/event": {
|
|
18215
16984
|
parameters: {
|
|
18216
16985
|
query?: never;
|
|
@@ -20540,22 +19309,6 @@ export interface paths {
|
|
|
20540
19309
|
patch?: never;
|
|
20541
19310
|
trace?: never;
|
|
20542
19311
|
};
|
|
20543
|
-
"/v1/games/vip-servers/{universeId}": {
|
|
20544
|
-
parameters: {
|
|
20545
|
-
query?: never;
|
|
20546
|
-
header?: never;
|
|
20547
|
-
path?: never;
|
|
20548
|
-
cookie?: never;
|
|
20549
|
-
};
|
|
20550
|
-
get?: never;
|
|
20551
|
-
put?: never;
|
|
20552
|
-
post: operations["PrivateServers_CreatePrivateServer"];
|
|
20553
|
-
delete?: never;
|
|
20554
|
-
options?: never;
|
|
20555
|
-
head?: never;
|
|
20556
|
-
patch?: never;
|
|
20557
|
-
trace?: never;
|
|
20558
|
-
};
|
|
20559
19312
|
"/v1/games/votes": {
|
|
20560
19313
|
parameters: {
|
|
20561
19314
|
query?: never;
|
|
@@ -20572,87 +19325,6 @@ export interface paths {
|
|
|
20572
19325
|
patch?: never;
|
|
20573
19326
|
trace?: never;
|
|
20574
19327
|
};
|
|
20575
|
-
"/v1/games/{gameId}/thumbnail/image": {
|
|
20576
|
-
parameters: {
|
|
20577
|
-
query?: never;
|
|
20578
|
-
header?: never;
|
|
20579
|
-
path?: never;
|
|
20580
|
-
cookie?: never;
|
|
20581
|
-
};
|
|
20582
|
-
get?: never;
|
|
20583
|
-
put?: never;
|
|
20584
|
-
/** Uploads a game thumbnail. */
|
|
20585
|
-
post: {
|
|
20586
|
-
parameters: {
|
|
20587
|
-
query?: never;
|
|
20588
|
-
header?: never;
|
|
20589
|
-
path: {
|
|
20590
|
-
/** @description The universe Id. */
|
|
20591
|
-
gameId: number;
|
|
20592
|
-
};
|
|
20593
|
-
cookie?: never;
|
|
20594
|
-
};
|
|
20595
|
-
requestBody?: components["requestBodies"]["postV1Badges_badgeid_icon"];
|
|
20596
|
-
responses: {
|
|
20597
|
-
/** @description OK */
|
|
20598
|
-
200: {
|
|
20599
|
-
headers: {
|
|
20600
|
-
[name: string]: unknown;
|
|
20601
|
-
};
|
|
20602
|
-
content: {
|
|
20603
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
20604
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
20605
|
-
};
|
|
20606
|
-
};
|
|
20607
|
-
/**
|
|
20608
|
-
* @description 1: File uploaded does not match known image format. Try converting to png.
|
|
20609
|
-
* 2: File not present in request.
|
|
20610
|
-
*/
|
|
20611
|
-
400: {
|
|
20612
|
-
headers: {
|
|
20613
|
-
[name: string]: unknown;
|
|
20614
|
-
};
|
|
20615
|
-
content?: never;
|
|
20616
|
-
};
|
|
20617
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
20618
|
-
401: {
|
|
20619
|
-
headers: {
|
|
20620
|
-
[name: string]: unknown;
|
|
20621
|
-
};
|
|
20622
|
-
content?: never;
|
|
20623
|
-
};
|
|
20624
|
-
/**
|
|
20625
|
-
* @description 0: Token Validation Failed
|
|
20626
|
-
* 5: You do not have permission to manage this item.
|
|
20627
|
-
*/
|
|
20628
|
-
403: {
|
|
20629
|
-
headers: {
|
|
20630
|
-
[name: string]: unknown;
|
|
20631
|
-
};
|
|
20632
|
-
content?: never;
|
|
20633
|
-
};
|
|
20634
|
-
/** @description 4: Target item is invalid or does not exist. */
|
|
20635
|
-
404: {
|
|
20636
|
-
headers: {
|
|
20637
|
-
[name: string]: unknown;
|
|
20638
|
-
};
|
|
20639
|
-
content?: never;
|
|
20640
|
-
};
|
|
20641
|
-
/** @description 3: You're uploading too much, please wait and try again later. */
|
|
20642
|
-
429: {
|
|
20643
|
-
headers: {
|
|
20644
|
-
[name: string]: unknown;
|
|
20645
|
-
};
|
|
20646
|
-
content?: never;
|
|
20647
|
-
};
|
|
20648
|
-
};
|
|
20649
|
-
};
|
|
20650
|
-
delete?: never;
|
|
20651
|
-
options?: never;
|
|
20652
|
-
head?: never;
|
|
20653
|
-
patch?: never;
|
|
20654
|
-
trace?: never;
|
|
20655
|
-
};
|
|
20656
19328
|
"/v1/games/{placeId}/private-servers": {
|
|
20657
19329
|
parameters: {
|
|
20658
19330
|
query?: never;
|
|
@@ -25168,6 +23840,7 @@ export interface paths {
|
|
|
25168
23840
|
* 15: This role does not exist.
|
|
25169
23841
|
* 19: Cannot update Guest role.
|
|
25170
23842
|
* 20: Cannot update Owner role rank.
|
|
23843
|
+
* 30: Invalid role color.
|
|
25171
23844
|
*/
|
|
25172
23845
|
400: {
|
|
25173
23846
|
headers: {
|
|
@@ -27644,7 +26317,6 @@ export interface paths {
|
|
|
27644
26317
|
"Accept-Encoding": string;
|
|
27645
26318
|
"Roblox-Place-Id": number;
|
|
27646
26319
|
AssetType: string;
|
|
27647
|
-
Accept: string;
|
|
27648
26320
|
AssetFormat: string;
|
|
27649
26321
|
"Roblox-AssetFormat": string;
|
|
27650
26322
|
};
|
|
@@ -28412,6 +27084,7 @@ export interface paths {
|
|
|
28412
27084
|
/**
|
|
28413
27085
|
* @description 1: The target user is invalid or does not exist.
|
|
28414
27086
|
* 6: Invalid parameters.
|
|
27087
|
+
* 34: Invalid pagination cursor.
|
|
28415
27088
|
*/
|
|
28416
27089
|
400: {
|
|
28417
27090
|
headers: {
|
|
@@ -30685,84 +29358,6 @@ export interface paths {
|
|
|
30685
29358
|
};
|
|
30686
29359
|
trace?: never;
|
|
30687
29360
|
};
|
|
30688
|
-
"/v1/plugins/{pluginId}/icon": {
|
|
30689
|
-
parameters: {
|
|
30690
|
-
query?: never;
|
|
30691
|
-
header?: never;
|
|
30692
|
-
path?: never;
|
|
30693
|
-
cookie?: never;
|
|
30694
|
-
};
|
|
30695
|
-
get?: never;
|
|
30696
|
-
put?: never;
|
|
30697
|
-
/** Overwrites a plugin icon with a new one. */
|
|
30698
|
-
post: {
|
|
30699
|
-
parameters: {
|
|
30700
|
-
query?: never;
|
|
30701
|
-
header?: never;
|
|
30702
|
-
path: {
|
|
30703
|
-
/** @description The plugin Id. */
|
|
30704
|
-
pluginId: number;
|
|
30705
|
-
};
|
|
30706
|
-
cookie?: never;
|
|
30707
|
-
};
|
|
30708
|
-
requestBody?: components["requestBodies"]["postV1Badges_badgeid_icon"];
|
|
30709
|
-
responses: {
|
|
30710
|
-
/** @description OK */
|
|
30711
|
-
200: {
|
|
30712
|
-
headers: {
|
|
30713
|
-
[name: string]: unknown;
|
|
30714
|
-
};
|
|
30715
|
-
content: {
|
|
30716
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
30717
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
30718
|
-
};
|
|
30719
|
-
};
|
|
30720
|
-
/** @description 2: File not present in request. */
|
|
30721
|
-
400: {
|
|
30722
|
-
headers: {
|
|
30723
|
-
[name: string]: unknown;
|
|
30724
|
-
};
|
|
30725
|
-
content?: never;
|
|
30726
|
-
};
|
|
30727
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
30728
|
-
401: {
|
|
30729
|
-
headers: {
|
|
30730
|
-
[name: string]: unknown;
|
|
30731
|
-
};
|
|
30732
|
-
content?: never;
|
|
30733
|
-
};
|
|
30734
|
-
/**
|
|
30735
|
-
* @description 0: Token Validation Failed
|
|
30736
|
-
* 5: You do not have permission to manage this item.
|
|
30737
|
-
*/
|
|
30738
|
-
403: {
|
|
30739
|
-
headers: {
|
|
30740
|
-
[name: string]: unknown;
|
|
30741
|
-
};
|
|
30742
|
-
content?: never;
|
|
30743
|
-
};
|
|
30744
|
-
/** @description 4: Target item is invalid or does not exist. */
|
|
30745
|
-
404: {
|
|
30746
|
-
headers: {
|
|
30747
|
-
[name: string]: unknown;
|
|
30748
|
-
};
|
|
30749
|
-
content?: never;
|
|
30750
|
-
};
|
|
30751
|
-
/** @description 3: You're uploading too much, please wait and try again later. */
|
|
30752
|
-
429: {
|
|
30753
|
-
headers: {
|
|
30754
|
-
[name: string]: unknown;
|
|
30755
|
-
};
|
|
30756
|
-
content?: never;
|
|
30757
|
-
};
|
|
30758
|
-
};
|
|
30759
|
-
};
|
|
30760
|
-
delete?: never;
|
|
30761
|
-
options?: never;
|
|
30762
|
-
head?: never;
|
|
30763
|
-
patch?: never;
|
|
30764
|
-
trace?: never;
|
|
30765
|
-
};
|
|
30766
29361
|
"/v1/preferences/publishing": {
|
|
30767
29362
|
parameters: {
|
|
30768
29363
|
query?: never;
|
|
@@ -30935,38 +29530,6 @@ export interface paths {
|
|
|
30935
29530
|
patch?: never;
|
|
30936
29531
|
trace?: never;
|
|
30937
29532
|
};
|
|
30938
|
-
"/v1/private-servers/enabled-in-universe/{universeId}": {
|
|
30939
|
-
parameters: {
|
|
30940
|
-
query?: never;
|
|
30941
|
-
header?: never;
|
|
30942
|
-
path?: never;
|
|
30943
|
-
cookie?: never;
|
|
30944
|
-
};
|
|
30945
|
-
get: operations["PrivateServers_PrivateServersEnabledInUniverse"];
|
|
30946
|
-
put?: never;
|
|
30947
|
-
post?: never;
|
|
30948
|
-
delete?: never;
|
|
30949
|
-
options?: never;
|
|
30950
|
-
head?: never;
|
|
30951
|
-
patch?: never;
|
|
30952
|
-
trace?: never;
|
|
30953
|
-
};
|
|
30954
|
-
"/v1/private-servers/my-private-servers": {
|
|
30955
|
-
parameters: {
|
|
30956
|
-
query?: never;
|
|
30957
|
-
header?: never;
|
|
30958
|
-
path?: never;
|
|
30959
|
-
cookie?: never;
|
|
30960
|
-
};
|
|
30961
|
-
get: operations["PrivateServers_GetMyPrivateServers"];
|
|
30962
|
-
put?: never;
|
|
30963
|
-
post?: never;
|
|
30964
|
-
delete?: never;
|
|
30965
|
-
options?: never;
|
|
30966
|
-
head?: never;
|
|
30967
|
-
patch?: never;
|
|
30968
|
-
trace?: never;
|
|
30969
|
-
};
|
|
30970
29533
|
"/v1/promotion-channels": {
|
|
30971
29534
|
parameters: {
|
|
30972
29535
|
query?: never;
|
|
@@ -31988,47 +30551,6 @@ export interface paths {
|
|
|
31988
30551
|
patch?: never;
|
|
31989
30552
|
trace?: never;
|
|
31990
30553
|
};
|
|
31991
|
-
"/v1/subcategories": {
|
|
31992
|
-
parameters: {
|
|
31993
|
-
query?: never;
|
|
31994
|
-
header?: never;
|
|
31995
|
-
path?: never;
|
|
31996
|
-
cookie?: never;
|
|
31997
|
-
};
|
|
31998
|
-
/** Lists Subcategory Names and their Ids. */
|
|
31999
|
-
get: {
|
|
32000
|
-
parameters: {
|
|
32001
|
-
query?: never;
|
|
32002
|
-
header?: never;
|
|
32003
|
-
path?: never;
|
|
32004
|
-
cookie?: never;
|
|
32005
|
-
};
|
|
32006
|
-
requestBody?: never;
|
|
32007
|
-
responses: {
|
|
32008
|
-
/** @description OK */
|
|
32009
|
-
200: {
|
|
32010
|
-
headers: {
|
|
32011
|
-
[name: string]: unknown;
|
|
32012
|
-
};
|
|
32013
|
-
content: {
|
|
32014
|
-
"application/json": {
|
|
32015
|
-
[key: string]: number;
|
|
32016
|
-
};
|
|
32017
|
-
"text/json": {
|
|
32018
|
-
[key: string]: number;
|
|
32019
|
-
};
|
|
32020
|
-
};
|
|
32021
|
-
};
|
|
32022
|
-
};
|
|
32023
|
-
};
|
|
32024
|
-
put?: never;
|
|
32025
|
-
post?: never;
|
|
32026
|
-
delete?: never;
|
|
32027
|
-
options?: never;
|
|
32028
|
-
head?: never;
|
|
32029
|
-
patch?: never;
|
|
32030
|
-
trace?: never;
|
|
32031
|
-
};
|
|
32032
30554
|
"/v1/supported-languages/games/{gameId}": {
|
|
32033
30555
|
parameters: {
|
|
32034
30556
|
query?: never;
|
|
@@ -32790,58 +31312,6 @@ export interface paths {
|
|
|
32790
31312
|
};
|
|
32791
31313
|
trace?: never;
|
|
32792
31314
|
};
|
|
32793
|
-
"/v1/topic/get-topics": {
|
|
32794
|
-
parameters: {
|
|
32795
|
-
query?: never;
|
|
32796
|
-
header?: never;
|
|
32797
|
-
path?: never;
|
|
32798
|
-
cookie?: never;
|
|
32799
|
-
};
|
|
32800
|
-
get?: never;
|
|
32801
|
-
put?: never;
|
|
32802
|
-
/**
|
|
32803
|
-
* Gets topics for a populated request, or trending queries when the request has no topic inputs.
|
|
32804
|
-
* Topics and queries are mutually exclusive in the response.
|
|
32805
|
-
*/
|
|
32806
|
-
post: {
|
|
32807
|
-
parameters: {
|
|
32808
|
-
query?: never;
|
|
32809
|
-
header?: never;
|
|
32810
|
-
path?: never;
|
|
32811
|
-
cookie?: never;
|
|
32812
|
-
};
|
|
32813
|
-
requestBody: {
|
|
32814
|
-
content: {
|
|
32815
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.TopicRequestModel"];
|
|
32816
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.TopicRequestModel"];
|
|
32817
|
-
};
|
|
32818
|
-
};
|
|
32819
|
-
responses: {
|
|
32820
|
-
/** @description OK */
|
|
32821
|
-
200: {
|
|
32822
|
-
headers: {
|
|
32823
|
-
[name: string]: unknown;
|
|
32824
|
-
};
|
|
32825
|
-
content: {
|
|
32826
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.TopicResponse"];
|
|
32827
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.TopicResponse"];
|
|
32828
|
-
};
|
|
32829
|
-
};
|
|
32830
|
-
/** @description 0: Token Validation Failed */
|
|
32831
|
-
403: {
|
|
32832
|
-
headers: {
|
|
32833
|
-
[name: string]: unknown;
|
|
32834
|
-
};
|
|
32835
|
-
content?: never;
|
|
32836
|
-
};
|
|
32837
|
-
};
|
|
32838
|
-
};
|
|
32839
|
-
delete?: never;
|
|
32840
|
-
options?: never;
|
|
32841
|
-
head?: never;
|
|
32842
|
-
patch?: never;
|
|
32843
|
-
trace?: never;
|
|
32844
|
-
};
|
|
32845
31315
|
"/v1/trade-privacy": {
|
|
32846
31316
|
parameters: {
|
|
32847
31317
|
query?: never;
|
|
@@ -37849,7 +36319,7 @@ export interface paths {
|
|
|
37849
36319
|
parameters: {
|
|
37850
36320
|
query?: {
|
|
37851
36321
|
/** @description The asset type for the collectibles you're trying to get. */
|
|
37852
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95;
|
|
36322
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96;
|
|
37853
36323
|
/** @description The number of results per request. */
|
|
37854
36324
|
limit?: 10 | 25 | 50 | 100;
|
|
37855
36325
|
/** @description The paging cursor for the previous or next page. */
|
|
@@ -37954,56 +36424,6 @@ export interface paths {
|
|
|
37954
36424
|
patch?: never;
|
|
37955
36425
|
trace?: never;
|
|
37956
36426
|
};
|
|
37957
|
-
"/v1/users/{userId}/bundles": {
|
|
37958
|
-
parameters: {
|
|
37959
|
-
query?: never;
|
|
37960
|
-
header?: never;
|
|
37961
|
-
path?: never;
|
|
37962
|
-
cookie?: never;
|
|
37963
|
-
};
|
|
37964
|
-
/** Lists the bundles owned by a given user. */
|
|
37965
|
-
get: {
|
|
37966
|
-
parameters: {
|
|
37967
|
-
query?: {
|
|
37968
|
-
cursor?: string;
|
|
37969
|
-
limit?: number;
|
|
37970
|
-
sortOrder?: 1 | 2;
|
|
37971
|
-
};
|
|
37972
|
-
header?: never;
|
|
37973
|
-
path: {
|
|
37974
|
-
userId: number;
|
|
37975
|
-
};
|
|
37976
|
-
cookie?: never;
|
|
37977
|
-
};
|
|
37978
|
-
requestBody?: never;
|
|
37979
|
-
responses: {
|
|
37980
|
-
/** @description OK */
|
|
37981
|
-
200: {
|
|
37982
|
-
headers: {
|
|
37983
|
-
[name: string]: unknown;
|
|
37984
|
-
};
|
|
37985
|
-
content: {
|
|
37986
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.OwnedBundleModel_"];
|
|
37987
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.OwnedBundleModel_"];
|
|
37988
|
-
};
|
|
37989
|
-
};
|
|
37990
|
-
/** @description 1: Invalid bundle */
|
|
37991
|
-
400: {
|
|
37992
|
-
headers: {
|
|
37993
|
-
[name: string]: unknown;
|
|
37994
|
-
};
|
|
37995
|
-
content?: never;
|
|
37996
|
-
};
|
|
37997
|
-
};
|
|
37998
|
-
};
|
|
37999
|
-
put?: never;
|
|
38000
|
-
post?: never;
|
|
38001
|
-
delete?: never;
|
|
38002
|
-
options?: never;
|
|
38003
|
-
head?: never;
|
|
38004
|
-
patch?: never;
|
|
38005
|
-
trace?: never;
|
|
38006
|
-
};
|
|
38007
36427
|
"/v1/users/{userId}/bundles/{bundleType}": {
|
|
38008
36428
|
parameters: {
|
|
38009
36429
|
query?: never;
|
|
@@ -42023,86 +40443,6 @@ export interface paths {
|
|
|
42023
40443
|
patch?: never;
|
|
42024
40444
|
trace?: never;
|
|
42025
40445
|
};
|
|
42026
|
-
"/v1/vip-server/can-invite/{userId}": {
|
|
42027
|
-
parameters: {
|
|
42028
|
-
query?: never;
|
|
42029
|
-
header?: never;
|
|
42030
|
-
path?: never;
|
|
42031
|
-
cookie?: never;
|
|
42032
|
-
};
|
|
42033
|
-
get: operations["PrivateServers_CanInviteUser"];
|
|
42034
|
-
put?: never;
|
|
42035
|
-
post?: never;
|
|
42036
|
-
delete?: never;
|
|
42037
|
-
options?: never;
|
|
42038
|
-
head?: never;
|
|
42039
|
-
patch?: never;
|
|
42040
|
-
trace?: never;
|
|
42041
|
-
};
|
|
42042
|
-
"/v1/vip-servers/my-private-servers": {
|
|
42043
|
-
parameters: {
|
|
42044
|
-
query?: never;
|
|
42045
|
-
header?: never;
|
|
42046
|
-
path?: never;
|
|
42047
|
-
cookie?: never;
|
|
42048
|
-
};
|
|
42049
|
-
get: operations["PrivateServersApi.PrivateServers_GetMyPrivateServers"];
|
|
42050
|
-
put?: never;
|
|
42051
|
-
post?: never;
|
|
42052
|
-
delete?: never;
|
|
42053
|
-
options?: never;
|
|
42054
|
-
head?: never;
|
|
42055
|
-
patch?: never;
|
|
42056
|
-
trace?: never;
|
|
42057
|
-
};
|
|
42058
|
-
"/v1/vip-servers/{id}": {
|
|
42059
|
-
parameters: {
|
|
42060
|
-
query?: never;
|
|
42061
|
-
header?: never;
|
|
42062
|
-
path?: never;
|
|
42063
|
-
cookie?: never;
|
|
42064
|
-
};
|
|
42065
|
-
get: operations["PrivateServers_GetPrivateServer"];
|
|
42066
|
-
put?: never;
|
|
42067
|
-
post?: never;
|
|
42068
|
-
delete?: never;
|
|
42069
|
-
options?: never;
|
|
42070
|
-
head?: never;
|
|
42071
|
-
patch: operations["PrivateServers_UpdatePrivateServer"];
|
|
42072
|
-
trace?: never;
|
|
42073
|
-
};
|
|
42074
|
-
"/v1/vip-servers/{id}/permissions": {
|
|
42075
|
-
parameters: {
|
|
42076
|
-
query?: never;
|
|
42077
|
-
header?: never;
|
|
42078
|
-
path?: never;
|
|
42079
|
-
cookie?: never;
|
|
42080
|
-
};
|
|
42081
|
-
get?: never;
|
|
42082
|
-
put?: never;
|
|
42083
|
-
post?: never;
|
|
42084
|
-
delete?: never;
|
|
42085
|
-
options?: never;
|
|
42086
|
-
head?: never;
|
|
42087
|
-
patch: operations["PrivateServers_UpdatePrivateServerPermissions"];
|
|
42088
|
-
trace?: never;
|
|
42089
|
-
};
|
|
42090
|
-
"/v1/vip-servers/{id}/subscription": {
|
|
42091
|
-
parameters: {
|
|
42092
|
-
query?: never;
|
|
42093
|
-
header?: never;
|
|
42094
|
-
path?: never;
|
|
42095
|
-
cookie?: never;
|
|
42096
|
-
};
|
|
42097
|
-
get?: never;
|
|
42098
|
-
put?: never;
|
|
42099
|
-
post?: never;
|
|
42100
|
-
delete?: never;
|
|
42101
|
-
options?: never;
|
|
42102
|
-
head?: never;
|
|
42103
|
-
patch: operations["PrivateServers_UpdatePrivateServerSubscription"];
|
|
42104
|
-
trace?: never;
|
|
42105
|
-
};
|
|
42106
40446
|
"/v1/xbox/connection": {
|
|
42107
40447
|
parameters: {
|
|
42108
40448
|
query?: never;
|
|
@@ -42394,15 +40734,14 @@ export interface paths {
|
|
|
42394
40734
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
42395
40735
|
contentRepresentationPriorityList?: string;
|
|
42396
40736
|
accessContext?: string;
|
|
42397
|
-
usageContext?: number;
|
|
42398
40737
|
};
|
|
42399
40738
|
header: {
|
|
42400
40739
|
"Accept-Encoding": string;
|
|
42401
40740
|
"Roblox-Place-Id": number;
|
|
42402
40741
|
AssetType: string;
|
|
42403
|
-
Accept: string;
|
|
42404
40742
|
AssetFormat: string;
|
|
42405
40743
|
"Roblox-AssetFormat": string;
|
|
40744
|
+
"Roblox-Usage-Context"?: string;
|
|
42406
40745
|
};
|
|
42407
40746
|
path?: never;
|
|
42408
40747
|
cookie?: never;
|
|
@@ -42445,15 +40784,14 @@ export interface paths {
|
|
|
42445
40784
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
42446
40785
|
contentRepresentationPriorityList?: string;
|
|
42447
40786
|
accessContext?: string;
|
|
42448
|
-
usageContext?: number;
|
|
42449
40787
|
};
|
|
42450
40788
|
header: {
|
|
42451
40789
|
"Accept-Encoding": string;
|
|
42452
40790
|
"Roblox-Place-Id": number;
|
|
42453
40791
|
AssetType: string;
|
|
42454
|
-
Accept: string;
|
|
42455
40792
|
AssetFormat: string;
|
|
42456
40793
|
"Roblox-AssetFormat": string;
|
|
40794
|
+
"Roblox-Usage-Context"?: string;
|
|
42457
40795
|
};
|
|
42458
40796
|
path: {
|
|
42459
40797
|
assetId: number;
|
|
@@ -42498,15 +40836,14 @@ export interface paths {
|
|
|
42498
40836
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
42499
40837
|
contentRepresentationPriorityList?: string;
|
|
42500
40838
|
accessContext?: string;
|
|
42501
|
-
usageContext?: number;
|
|
42502
40839
|
};
|
|
42503
40840
|
header: {
|
|
42504
40841
|
"Accept-Encoding": string;
|
|
42505
40842
|
"Roblox-Place-Id": number;
|
|
42506
40843
|
AssetType: string;
|
|
42507
|
-
Accept: string;
|
|
42508
40844
|
AssetFormat: string;
|
|
42509
40845
|
"Roblox-AssetFormat": string;
|
|
40846
|
+
"Roblox-Usage-Context"?: string;
|
|
42510
40847
|
};
|
|
42511
40848
|
path: {
|
|
42512
40849
|
assetId: number;
|
|
@@ -42547,7 +40884,6 @@ export interface paths {
|
|
|
42547
40884
|
query?: never;
|
|
42548
40885
|
header: {
|
|
42549
40886
|
"Roblox-Place-Id": number;
|
|
42550
|
-
Accept: string;
|
|
42551
40887
|
"Roblox-Browser-Asset-Request": string;
|
|
42552
40888
|
};
|
|
42553
40889
|
path?: never;
|
|
@@ -42636,61 +40972,6 @@ export interface paths {
|
|
|
42636
40972
|
patch?: never;
|
|
42637
40973
|
trace?: never;
|
|
42638
40974
|
};
|
|
42639
|
-
"/v2/assets/{id}/versions": {
|
|
42640
|
-
parameters: {
|
|
42641
|
-
query?: never;
|
|
42642
|
-
header?: never;
|
|
42643
|
-
path?: never;
|
|
42644
|
-
cookie?: never;
|
|
42645
|
-
};
|
|
42646
|
-
/**
|
|
42647
|
-
* Retrieves asset information for the specified asset ID. The authenticated user must be able to manage the asset
|
|
42648
|
-
* or granted by package permission.
|
|
42649
|
-
* @deprecated
|
|
42650
|
-
* @description Use OpenCloud Assets API instead.
|
|
42651
|
-
*/
|
|
42652
|
-
get: {
|
|
42653
|
-
parameters: {
|
|
42654
|
-
query?: {
|
|
42655
|
-
/** @description The number of results per request. */
|
|
42656
|
-
limit?: 10 | 25 | 50 | 100;
|
|
42657
|
-
/** @description The paging cursor for the previous or next page. */
|
|
42658
|
-
cursor?: string;
|
|
42659
|
-
/** @description Sort by version number, default is desc. */
|
|
42660
|
-
sortOrder?: "Asc" | "Desc";
|
|
42661
|
-
};
|
|
42662
|
-
header: {
|
|
42663
|
-
/** @description The ID of the place.Roblox.Platform.Assets.IPlace */
|
|
42664
|
-
"Roblox-Place-Id": number;
|
|
42665
|
-
};
|
|
42666
|
-
path: {
|
|
42667
|
-
/** @description The ID of the asset.Roblox.Platform.Assets.IAsset */
|
|
42668
|
-
id: number;
|
|
42669
|
-
};
|
|
42670
|
-
cookie?: never;
|
|
42671
|
-
};
|
|
42672
|
-
requestBody?: never;
|
|
42673
|
-
responses: {
|
|
42674
|
-
/** @description OK */
|
|
42675
|
-
200: {
|
|
42676
|
-
headers: {
|
|
42677
|
-
[name: string]: unknown;
|
|
42678
|
-
};
|
|
42679
|
-
content: {
|
|
42680
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.AssetVersion_"];
|
|
42681
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.AssetVersion_"];
|
|
42682
|
-
};
|
|
42683
|
-
};
|
|
42684
|
-
};
|
|
42685
|
-
};
|
|
42686
|
-
put?: never;
|
|
42687
|
-
post?: never;
|
|
42688
|
-
delete?: never;
|
|
42689
|
-
options?: never;
|
|
42690
|
-
head?: never;
|
|
42691
|
-
patch?: never;
|
|
42692
|
-
trace?: never;
|
|
42693
|
-
};
|
|
42694
40975
|
"/v2/auth/metadata": {
|
|
42695
40976
|
parameters: {
|
|
42696
40977
|
query?: never;
|
|
@@ -44039,7 +42320,6 @@ export interface paths {
|
|
|
44039
42320
|
"Accept-Encoding": string;
|
|
44040
42321
|
"Roblox-Place-Id": number;
|
|
44041
42322
|
AssetType: string;
|
|
44042
|
-
Accept: string;
|
|
44043
42323
|
AssetFormat: string;
|
|
44044
42324
|
"Roblox-AssetFormat": string;
|
|
44045
42325
|
};
|
|
@@ -44166,6 +42446,13 @@ export interface paths {
|
|
|
44166
42446
|
};
|
|
44167
42447
|
content?: never;
|
|
44168
42448
|
};
|
|
42449
|
+
/** @description 9: The requested tag is not implemented. */
|
|
42450
|
+
501: {
|
|
42451
|
+
headers: {
|
|
42452
|
+
[name: string]: unknown;
|
|
42453
|
+
};
|
|
42454
|
+
content?: never;
|
|
42455
|
+
};
|
|
44169
42456
|
};
|
|
44170
42457
|
};
|
|
44171
42458
|
put?: never;
|
|
@@ -47403,6 +45690,7 @@ export interface paths {
|
|
|
47403
45690
|
* 28: OptIn/Out Regions Not Supported.
|
|
47404
45691
|
* 41: You cannot change the private server price again so soon after the previous change. Please try again later.
|
|
47405
45692
|
* 44: The provided audience configuration is invalid. Ensure the audience list contains only supported audience values.
|
|
45693
|
+
* 52: Promotional text has been rejected.
|
|
47406
45694
|
*/
|
|
47407
45695
|
400: {
|
|
47408
45696
|
headers: {
|
|
@@ -47445,6 +45733,13 @@ export interface paths {
|
|
|
47445
45733
|
};
|
|
47446
45734
|
content?: never;
|
|
47447
45735
|
};
|
|
45736
|
+
/** @description 53: Promotional text safety validation is temporarily unavailable. */
|
|
45737
|
+
503: {
|
|
45738
|
+
headers: {
|
|
45739
|
+
[name: string]: unknown;
|
|
45740
|
+
};
|
|
45741
|
+
content?: never;
|
|
45742
|
+
};
|
|
47448
45743
|
};
|
|
47449
45744
|
};
|
|
47450
45745
|
trace?: never;
|
|
@@ -48179,7 +46474,7 @@ export interface paths {
|
|
|
48179
46474
|
parameters: {
|
|
48180
46475
|
query: {
|
|
48181
46476
|
/** @description The asset types to query. */
|
|
48182
|
-
assetTypes: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95)[];
|
|
46477
|
+
assetTypes: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96)[];
|
|
48183
46478
|
/** @description Filters moderated assets when enabled. */
|
|
48184
46479
|
filterDisapprovedAssets?: boolean;
|
|
48185
46480
|
/** @description Filters moderated assets and assets pending review when enabled. */
|
|
@@ -49921,11 +48216,6 @@ export interface components {
|
|
|
49921
48216
|
/** @description The MDE async operation. */
|
|
49922
48217
|
operation?: components["schemas"]["MdeOperation"] | null;
|
|
49923
48218
|
};
|
|
49924
|
-
CanInviteUserResponse: {
|
|
49925
|
-
canInvite?: boolean;
|
|
49926
|
-
doesOwnerPrivacyRestrictJoins?: boolean;
|
|
49927
|
-
inviteResponseType?: components["schemas"]["PrivateServerInviteResponseType"];
|
|
49928
|
-
};
|
|
49929
48219
|
CategoryResponse: {
|
|
49930
48220
|
/**
|
|
49931
48221
|
* @description The event category type of an event.
|
|
@@ -50318,13 +48608,6 @@ export interface components {
|
|
|
50318
48608
|
CreateMatchmakingServerAttributeDefinitionResponse: {
|
|
50319
48609
|
playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
|
|
50320
48610
|
};
|
|
50321
|
-
CreatePrivateServerRequest: {
|
|
50322
|
-
name?: string | null;
|
|
50323
|
-
/** Format: int64 */
|
|
50324
|
-
expectedPrice?: number;
|
|
50325
|
-
isPurchaseConfirmed?: boolean | null;
|
|
50326
|
-
idempotencyKey?: string | null;
|
|
50327
|
-
};
|
|
50328
48611
|
/** @description Request model for creating a save */
|
|
50329
48612
|
CreateSaveRequest: {
|
|
50330
48613
|
/** @description The type of asset being saved */
|
|
@@ -51465,12 +49748,6 @@ export interface components {
|
|
|
51465
49748
|
* @enum {string}
|
|
51466
49749
|
*/
|
|
51467
49750
|
"GamePasses.PricingFeature": "Invalid" | "PriceOptimization" | "UserFixedPrice" | "RegionalPricing";
|
|
51468
|
-
GameResponse: {
|
|
51469
|
-
/** Format: int64 */
|
|
51470
|
-
id?: number;
|
|
51471
|
-
name?: string | null;
|
|
51472
|
-
rootPlace?: components["schemas"]["PlaceResponse"] | null;
|
|
51473
|
-
};
|
|
51474
49751
|
/** @description Response model for listing a game server log */
|
|
51475
49752
|
GameServerLog: {
|
|
51476
49753
|
/**
|
|
@@ -51509,6 +49786,11 @@ export interface components {
|
|
|
51509
49786
|
* @description How many more messages were present in the time window beyond our overall rate limits
|
|
51510
49787
|
*/
|
|
51511
49788
|
rateLimitedCount?: number;
|
|
49789
|
+
/**
|
|
49790
|
+
* @description A list of ServerManagementService.V2.Models.StructuredStackFrame metadata, identifying the script that errored when combined
|
|
49791
|
+
* with the ServerManagementService.V2.Models.GameServerLog.PlaceVersion
|
|
49792
|
+
*/
|
|
49793
|
+
structuredStackTrace?: components["schemas"]["StructuredStackFrame"][] | null;
|
|
51512
49794
|
};
|
|
51513
49795
|
GameUpdateStatus: {
|
|
51514
49796
|
/** Format: uuid */
|
|
@@ -52237,6 +50519,17 @@ export interface components {
|
|
|
52237
50519
|
type?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95;
|
|
52238
50520
|
name?: string;
|
|
52239
50521
|
};
|
|
50522
|
+
"GroupsApi.Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Core.CreatorType_": {
|
|
50523
|
+
/** Format: int64 */
|
|
50524
|
+
id?: number;
|
|
50525
|
+
/**
|
|
50526
|
+
* Format: int32
|
|
50527
|
+
* @description ['User' = 0, 'Group' = 1, 'Experience' = 2]
|
|
50528
|
+
* @enum {integer}
|
|
50529
|
+
*/
|
|
50530
|
+
type?: 0 | 1 | 2;
|
|
50531
|
+
name?: string;
|
|
50532
|
+
};
|
|
52240
50533
|
/** @description A homepage thumbnail associated with a universe. */
|
|
52241
50534
|
HomepageThumbnail: {
|
|
52242
50535
|
/** @description The unique identifier of the homepage thumbnail. */
|
|
@@ -52446,7 +50739,6 @@ export interface components {
|
|
|
52446
50739
|
* @description The resource path of the inventory item.
|
|
52447
50740
|
*
|
|
52448
50741
|
* Format: `users/{user_id}/inventory-items/{inventory_item_id}`
|
|
52449
|
-
* @example users/123/inventory-items/some-inventory-item-id
|
|
52450
50742
|
*/
|
|
52451
50743
|
path?: string;
|
|
52452
50744
|
/** @description Populated if this item is an asset. */
|
|
@@ -52463,86 +50755,21 @@ export interface components {
|
|
|
52463
50755
|
* time when the user purchased a private server or was awarded a badge.
|
|
52464
50756
|
*
|
|
52465
50757
|
* This field is currently not populated for passes.
|
|
52466
|
-
* @example 2023-07-05T12:34:56Z
|
|
52467
50758
|
*/
|
|
52468
|
-
|
|
50759
|
+
addTime?: string | null;
|
|
52469
50760
|
};
|
|
52470
50761
|
/** @description Specific fields only applicable to assets */
|
|
52471
50762
|
InventoryItem_AssetDetails: {
|
|
52472
|
-
/**
|
|
52473
|
-
* @description A unique ID that identifies an asset.
|
|
52474
|
-
* @example 12928981934
|
|
52475
|
-
*/
|
|
50763
|
+
/** @description A unique ID that identifies an asset. */
|
|
52476
50764
|
assetId?: string;
|
|
52477
50765
|
/**
|
|
52478
|
-
* Format: enum
|
|
52479
50766
|
* @description The specific asset type of this item.
|
|
52480
|
-
*
|
|
52481
|
-
* Possible values:
|
|
52482
|
-
*
|
|
52483
|
-
* | Value | Description |
|
|
52484
|
-
* | --- | --- |
|
|
52485
|
-
* | INVENTORY_ITEM_ASSET_TYPE_UNSPECIFIED | Default InventoryItemAssetType |
|
|
52486
|
-
* | CLASSIC_TSHIRT | Classic Tshirt |
|
|
52487
|
-
* | AUDIO | Audio |
|
|
52488
|
-
* | HAT | Hat |
|
|
52489
|
-
* | MODEL | Model |
|
|
52490
|
-
* | CLASSIC_SHIRT | Classic Shirt |
|
|
52491
|
-
* | CLASSIC_PANTS | Classic Pants |
|
|
52492
|
-
* | DECAL | Decal |
|
|
52493
|
-
* | CLASSIC_HEAD | Classic Head |
|
|
52494
|
-
* | FACE | Face |
|
|
52495
|
-
* | GEAR | Gear |
|
|
52496
|
-
* | ANIMATION | Animation |
|
|
52497
|
-
* | TORSO | Torso |
|
|
52498
|
-
* | RIGHT_ARM | Right Arm |
|
|
52499
|
-
* | LEFT_ARM | Left Arm |
|
|
52500
|
-
* | LEFT_LEG | Left Leg |
|
|
52501
|
-
* | RIGHT_LEG | Right Leg |
|
|
52502
|
-
* | PACKAGE | Package |
|
|
52503
|
-
* | PLUGIN | Plugin |
|
|
52504
|
-
* | MESH_PART | Mesh Part |
|
|
52505
|
-
* | HAIR_ACCESSORY | Hair Accessory |
|
|
52506
|
-
* | FACE_ACCESSORY | Face Accessory |
|
|
52507
|
-
* | NECK_ACCESSORY | Neck Accessory |
|
|
52508
|
-
* | SHOULDER_ACCESSORY | Shoulder Accessory |
|
|
52509
|
-
* | FRONT_ACCESSORY | Front Accessory |
|
|
52510
|
-
* | BACK_ACCESSORY | Back Accessory |
|
|
52511
|
-
* | WAIST_ACCESSORY | Waist Accessory |
|
|
52512
|
-
* | CLIMB_ANIMATION | Climb Animation |
|
|
52513
|
-
* | DEATH_ANIMATION | Death Animation |
|
|
52514
|
-
* | FALL_ANIMATION | Fall Animation |
|
|
52515
|
-
* | IDLE_ANIMATION | Idle Animation |
|
|
52516
|
-
* | JUMP_ANIMATION | Jump Animation |
|
|
52517
|
-
* | RUN_ANIMATION | Run Animation |
|
|
52518
|
-
* | SWIM_ANIMATION | Swim Animation |
|
|
52519
|
-
* | WALK_ANIMATION | Walk Animation |
|
|
52520
|
-
* | POSE_ANIMATION | Pose Animation |
|
|
52521
|
-
* | EMOTE_ANIMATION | Emote Animation |
|
|
52522
|
-
* | VIDEO | Video |
|
|
52523
|
-
* | TSHIRT_ACCESSORY | Tshirt Accessory |
|
|
52524
|
-
* | SHIRT_ACCESSORY | Shirt Accessory |
|
|
52525
|
-
* | PANTS_ACCESSORY | Pants Accessory |
|
|
52526
|
-
* | JACKET_ACCESSORY | Jacket Accessory |
|
|
52527
|
-
* | SWEATER_ACCESSORY | Sweater Accessory |
|
|
52528
|
-
* | SHORTS_ACCESSORY | Shorts Accessory |
|
|
52529
|
-
* | LEFT_SHOE_ACCESSORY | Left Shoe Accessory |
|
|
52530
|
-
* | RIGHT_SHOE_ACCESSORY | Right Shoe Accessory |
|
|
52531
|
-
* | DRESS_SKIRT_ACCESSORY | Dress Skirt Accessory |
|
|
52532
|
-
* | EYEBROW_ACCESSORY | Eyebrow Accessory |
|
|
52533
|
-
* | EYELASH_ACCESSORY | Eyelash Accessory |
|
|
52534
|
-
* | MOOD_ANIMATION | Mood Animation |
|
|
52535
|
-
* | DYNAMIC_HEAD | Dynamic Head |
|
|
52536
|
-
* | CREATED_PLACE | Created Place |
|
|
52537
|
-
* | PURCHASED_PLACE | Purchased Place |
|
|
52538
|
-
* @example INVENTORY_ITEM_ASSET_TYPE_UNSPECIFIED
|
|
52539
50767
|
* @enum {string}
|
|
52540
50768
|
*/
|
|
52541
50769
|
inventoryItemAssetType?: "INVENTORY_ITEM_ASSET_TYPE_UNSPECIFIED" | "CLASSIC_TSHIRT" | "AUDIO" | "HAT" | "MODEL" | "CLASSIC_SHIRT" | "CLASSIC_PANTS" | "DECAL" | "CLASSIC_HEAD" | "FACE" | "GEAR" | "ANIMATION" | "TORSO" | "RIGHT_ARM" | "LEFT_ARM" | "LEFT_LEG" | "RIGHT_LEG" | "PACKAGE" | "PLUGIN" | "MESH_PART" | "HAIR_ACCESSORY" | "FACE_ACCESSORY" | "NECK_ACCESSORY" | "SHOULDER_ACCESSORY" | "FRONT_ACCESSORY" | "BACK_ACCESSORY" | "WAIST_ACCESSORY" | "CLIMB_ANIMATION" | "DEATH_ANIMATION" | "FALL_ANIMATION" | "IDLE_ANIMATION" | "JUMP_ANIMATION" | "RUN_ANIMATION" | "SWIM_ANIMATION" | "WALK_ANIMATION" | "POSE_ANIMATION" | "EMOTE_ANIMATION" | "VIDEO" | "TSHIRT_ACCESSORY" | "SHIRT_ACCESSORY" | "PANTS_ACCESSORY" | "JACKET_ACCESSORY" | "SWEATER_ACCESSORY" | "SHORTS_ACCESSORY" | "LEFT_SHOE_ACCESSORY" | "RIGHT_SHOE_ACCESSORY" | "DRESS_SKIRT_ACCESSORY" | "EYEBROW_ACCESSORY" | "EYELASH_ACCESSORY" | "MOOD_ANIMATION" | "DYNAMIC_HEAD" | "CREATED_PLACE" | "PURCHASED_PLACE";
|
|
52542
50770
|
/**
|
|
52543
50771
|
* @description A unique ID that identifies an instance or "copy" of the asset that's
|
|
52544
50772
|
* owned by a user.
|
|
52545
|
-
* @example 173413781720
|
|
52546
50773
|
*/
|
|
52547
50774
|
instanceId?: string;
|
|
52548
50775
|
/**
|
|
@@ -52553,63 +50780,39 @@ export interface components {
|
|
|
52553
50780
|
};
|
|
52554
50781
|
/** @description Specific fields that are applicable to a badge. */
|
|
52555
50782
|
InventoryItem_BadgeDetails: {
|
|
52556
|
-
/**
|
|
52557
|
-
* @description A unique ID that identifies a badge.
|
|
52558
|
-
* @example 119925991
|
|
52559
|
-
*/
|
|
50783
|
+
/** @description A unique ID that identifies a badge. */
|
|
52560
50784
|
badgeId?: string;
|
|
52561
50785
|
};
|
|
52562
50786
|
/** @description Specific fields that are applicable to a collectible. */
|
|
52563
50787
|
InventoryItem_CollectibleDetails: {
|
|
52564
|
-
/**
|
|
52565
|
-
* @description A unique ID of a Roblox item that is a collectible.
|
|
52566
|
-
* @example 521cca19-75bb-4e05-a0af-633b1532c24d
|
|
52567
|
-
*/
|
|
50788
|
+
/** @description A unique ID of a Roblox item that is a collectible. */
|
|
52568
50789
|
itemId?: string;
|
|
52569
50790
|
/**
|
|
52570
50791
|
* @description A unique ID of an individual copy of a collectible with ownership tied
|
|
52571
50792
|
* to a group or user.
|
|
52572
|
-
* @example a8a27d38-ee51-4cf4-8b0a-485d0dfd8607
|
|
52573
50793
|
*/
|
|
52574
50794
|
instanceId?: string;
|
|
52575
50795
|
/**
|
|
52576
|
-
* Format: enum
|
|
52577
50796
|
* @description The instance state of this specific Collectible Item Instance which
|
|
52578
50797
|
* affects whether it can be resold or traded.
|
|
52579
|
-
*
|
|
52580
|
-
* Possible values:
|
|
52581
|
-
*
|
|
52582
|
-
* | Value | Description |
|
|
52583
|
-
* | --- | --- |
|
|
52584
|
-
* | COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED | Default CollectibleItemInstanceState |
|
|
52585
|
-
* | AVAILABLE | Collectible item is available for all actions |
|
|
52586
|
-
* | HOLD | Collectible item is on hold (can't be resold or traded) |
|
|
52587
|
-
* @example COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED
|
|
52588
|
-
* @enum {string}
|
|
50798
|
+
* @enum {string|null}
|
|
52589
50799
|
*/
|
|
52590
|
-
instanceState?: "COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED" | "AVAILABLE" | "HOLD";
|
|
50800
|
+
instanceState?: "COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED" | "AVAILABLE" | "HOLD" | null;
|
|
52591
50801
|
/**
|
|
52592
50802
|
* Format: int64
|
|
52593
50803
|
* @description If the asset is a Limited, a user-visible number that shows this item is
|
|
52594
50804
|
* the nth replica of the asset. Otherwise, this attribute will be omitted.
|
|
52595
|
-
* @example 160
|
|
52596
50805
|
*/
|
|
52597
|
-
serialNumber?: number;
|
|
50806
|
+
serialNumber?: number | null;
|
|
52598
50807
|
};
|
|
52599
50808
|
/** @description Specific fields that are applicable to a game pass. */
|
|
52600
50809
|
InventoryItem_GamePassDetails: {
|
|
52601
|
-
/**
|
|
52602
|
-
* @description A unique ID that identifies a game pass.
|
|
52603
|
-
* @example 83167572
|
|
52604
|
-
*/
|
|
50810
|
+
/** @description A unique ID that identifies a game pass. */
|
|
52605
50811
|
gamePassId?: string;
|
|
52606
50812
|
};
|
|
52607
50813
|
/** @description Specific fields that are applicable to a private server. */
|
|
52608
50814
|
InventoryItem_PrivateServerDetails: {
|
|
52609
|
-
/**
|
|
52610
|
-
* @description A unique ID that identifies a private server.
|
|
52611
|
-
* @example 175156
|
|
52612
|
-
*/
|
|
50815
|
+
/** @description A unique ID that identifies a private server. */
|
|
52613
50816
|
privateServerId?: string;
|
|
52614
50817
|
};
|
|
52615
50818
|
/** @enum {string} */
|
|
@@ -53750,35 +51953,6 @@ export interface components {
|
|
|
53750
51953
|
* @enum {string}
|
|
53751
51954
|
*/
|
|
53752
51955
|
MusicChartType: "None" | "Current" | "Week" | "Month" | "Year";
|
|
53753
|
-
MyPrivateServersData: {
|
|
53754
|
-
active?: boolean;
|
|
53755
|
-
/** Format: int64 */
|
|
53756
|
-
universeId?: number;
|
|
53757
|
-
/** Format: int64 */
|
|
53758
|
-
placeId?: number | null;
|
|
53759
|
-
name?: string | null;
|
|
53760
|
-
/** Format: int64 */
|
|
53761
|
-
ownerId?: number;
|
|
53762
|
-
ownerName?: string | null;
|
|
53763
|
-
/** Format: int64 */
|
|
53764
|
-
priceInRobux?: number | null;
|
|
53765
|
-
/** Format: int64 */
|
|
53766
|
-
privateServerId?: number;
|
|
53767
|
-
/** Format: date-time */
|
|
53768
|
-
expirationDate?: string;
|
|
53769
|
-
willRenew?: boolean;
|
|
53770
|
-
universeName?: string | null;
|
|
53771
|
-
/** Format: int64 */
|
|
53772
|
-
purchaseScheduleId?: number | null;
|
|
53773
|
-
/** Format: int64 */
|
|
53774
|
-
totalDiscountAmountInRobux?: number | null;
|
|
53775
|
-
metadata?: components["schemas"]["PrivateServerSubscriptionMetadata"] | null;
|
|
53776
|
-
};
|
|
53777
|
-
MyPrivateServersResponse: {
|
|
53778
|
-
nextPageCursor?: string | null;
|
|
53779
|
-
previousPageCursor?: string | null;
|
|
53780
|
-
data?: components["schemas"]["MyPrivateServersData"][] | null;
|
|
53781
|
-
};
|
|
53782
51956
|
/** @enum {string} */
|
|
53783
51957
|
O18EligibilityTag: "None" | "O18Eligible" | "O18EligibleAndPlus";
|
|
53784
51958
|
/** @description This resource represents a long-running operation that is the result of a network API call. */
|
|
@@ -54182,11 +52356,6 @@ export interface components {
|
|
|
54182
52356
|
*/
|
|
54183
52357
|
excludeCurrentVersion?: boolean | null;
|
|
54184
52358
|
};
|
|
54185
|
-
PlaceResponse: {
|
|
54186
|
-
/** Format: int64 */
|
|
54187
|
-
id?: number;
|
|
54188
|
-
name?: string | null;
|
|
54189
|
-
};
|
|
54190
52359
|
/** @description Per-place restart status. */
|
|
54191
52360
|
PlaceRestartStatus: {
|
|
54192
52361
|
/** @description Current state of the place restart. */
|
|
@@ -54467,15 +52636,6 @@ export interface components {
|
|
|
54467
52636
|
};
|
|
54468
52637
|
/** @enum {string} */
|
|
54469
52638
|
PricingFeature: "Invalid" | "PriceOptimization" | "UserFixedPrice" | "RegionalPricing";
|
|
54470
|
-
/** @enum {string} */
|
|
54471
|
-
PrivateServerInviteResponseType: "Invalid" | "CanInvite" | "UnableToAddAnyUser" | "UnableToAddNonFriends" | "UnableToAddSpecificUser";
|
|
54472
|
-
PrivateServerPermissionsResponse: {
|
|
54473
|
-
clanAllowed?: boolean;
|
|
54474
|
-
/** Format: int64 */
|
|
54475
|
-
enemyClanId?: number | null;
|
|
54476
|
-
friendsAllowed?: boolean;
|
|
54477
|
-
users?: components["schemas"]["SkinnyUserResponse"][] | null;
|
|
54478
|
-
};
|
|
54479
52639
|
PrivateServerPlayerResponse: {
|
|
54480
52640
|
/** Format: int64 */
|
|
54481
52641
|
id?: number;
|
|
@@ -54483,61 +52643,6 @@ export interface components {
|
|
|
54483
52643
|
displayName?: string | null;
|
|
54484
52644
|
playerToken?: string | null;
|
|
54485
52645
|
};
|
|
54486
|
-
PrivateServerResponse: {
|
|
54487
|
-
/** Format: int64 */
|
|
54488
|
-
id?: number;
|
|
54489
|
-
name?: string | null;
|
|
54490
|
-
game?: components["schemas"]["GameResponse"] | null;
|
|
54491
|
-
joinCode?: string | null;
|
|
54492
|
-
active?: boolean;
|
|
54493
|
-
subscription?: components["schemas"]["PrivateServerSubscriptionResponse"] | null;
|
|
54494
|
-
permissions?: components["schemas"]["PrivateServerPermissionsResponse"] | null;
|
|
54495
|
-
voiceSettings?: components["schemas"]["PrivateServerVoiceSettingsResponse"] | null;
|
|
54496
|
-
link?: string | null;
|
|
54497
|
-
};
|
|
54498
|
-
PrivateServerSubscriptionMetadata: {
|
|
54499
|
-
privateServerSubscriptionTags?: components["schemas"]["PrivateServerSubscriptionTag"][] | null;
|
|
54500
|
-
};
|
|
54501
|
-
PrivateServerSubscriptionResponse: {
|
|
54502
|
-
active?: boolean;
|
|
54503
|
-
expired?: boolean;
|
|
54504
|
-
/** Format: date-time */
|
|
54505
|
-
expirationDate?: string;
|
|
54506
|
-
/** Format: int64 */
|
|
54507
|
-
price?: number | null;
|
|
54508
|
-
canRenew?: boolean;
|
|
54509
|
-
hasInsufficientFunds?: boolean;
|
|
54510
|
-
hasRecurringProfile?: boolean;
|
|
54511
|
-
hasPriceChanged?: boolean;
|
|
54512
|
-
/** Format: int64 */
|
|
54513
|
-
purchaseScheduleId?: number | null;
|
|
54514
|
-
/** Format: int64 */
|
|
54515
|
-
totalDiscountAmountInRobux?: number | null;
|
|
54516
|
-
metadata?: components["schemas"]["PrivateServerSubscriptionMetadata"] | null;
|
|
54517
|
-
};
|
|
54518
|
-
/** @enum {string} */
|
|
54519
|
-
PrivateServerSubscriptionTag: "Invalid" | "RobloxSubscription" | "RobloxSubscriptionActiveBenefit";
|
|
54520
|
-
PrivateServerUpdatePermissionsRequest: {
|
|
54521
|
-
clanAllowed?: boolean | null;
|
|
54522
|
-
/** Format: int64 */
|
|
54523
|
-
enemyClanId?: number | null;
|
|
54524
|
-
friendsAllowed?: boolean | null;
|
|
54525
|
-
usersToAdd?: number[] | null;
|
|
54526
|
-
usersToRemove?: number[] | null;
|
|
54527
|
-
};
|
|
54528
|
-
PrivateServerUpdateRequest: {
|
|
54529
|
-
name?: string | null;
|
|
54530
|
-
newJoinCode?: boolean | null;
|
|
54531
|
-
active?: boolean | null;
|
|
54532
|
-
};
|
|
54533
|
-
PrivateServerUpdateSubscriptionRequest: {
|
|
54534
|
-
active?: boolean | null;
|
|
54535
|
-
/** Format: int64 */
|
|
54536
|
-
price?: number | null;
|
|
54537
|
-
};
|
|
54538
|
-
PrivateServerVoiceSettingsResponse: {
|
|
54539
|
-
enabled?: boolean;
|
|
54540
|
-
};
|
|
54541
52646
|
"PrivateServersApi.GameServerResponse": {
|
|
54542
52647
|
/** Format: uuid */
|
|
54543
52648
|
id?: string | null;
|
|
@@ -54560,11 +52665,6 @@ export interface components {
|
|
|
54560
52665
|
};
|
|
54561
52666
|
/** @enum {string} */
|
|
54562
52667
|
"PrivateServersApi.SortOrder": "Asc" | "Desc";
|
|
54563
|
-
PrivateServersEnabledInUniverseResponse: {
|
|
54564
|
-
privateServersEnabled?: boolean;
|
|
54565
|
-
};
|
|
54566
|
-
/** @enum {string} */
|
|
54567
|
-
PrivateServersTab: "MyPrivateServers" | "OtherPrivateServers";
|
|
54568
52668
|
ProblemDetails: ({
|
|
54569
52669
|
type?: string | null;
|
|
54570
52670
|
title?: string | null;
|
|
@@ -56651,52 +54751,6 @@ export interface components {
|
|
|
56651
54751
|
/** @description Whether or not all the outfit contents were successfully worn */
|
|
56652
54752
|
success?: boolean;
|
|
56653
54753
|
};
|
|
56654
|
-
/** @description Model of an asset version. */
|
|
56655
|
-
"Roblox.Api.Develop.AssetVersion": {
|
|
56656
|
-
/**
|
|
56657
|
-
* Format: int64
|
|
56658
|
-
* @description The VersionID of the asset version.
|
|
56659
|
-
*/
|
|
56660
|
-
Id?: number;
|
|
56661
|
-
/**
|
|
56662
|
-
* Format: int64
|
|
56663
|
-
* @description The ID of the asset.
|
|
56664
|
-
*/
|
|
56665
|
-
assetId?: number;
|
|
56666
|
-
/**
|
|
56667
|
-
* Format: int32
|
|
56668
|
-
* @description The version number.
|
|
56669
|
-
*/
|
|
56670
|
-
assetVersionNumber?: number;
|
|
56671
|
-
/** @description Type of the asset version creator. */
|
|
56672
|
-
creatorType?: string;
|
|
56673
|
-
/**
|
|
56674
|
-
* Format: int64
|
|
56675
|
-
* @description ID of the asset version creator.
|
|
56676
|
-
*/
|
|
56677
|
-
creatorTargetId?: number;
|
|
56678
|
-
/**
|
|
56679
|
-
* Format: int64
|
|
56680
|
-
* @description ID of the universe this asset version was created in.
|
|
56681
|
-
*/
|
|
56682
|
-
creatingUniverseId?: number;
|
|
56683
|
-
/**
|
|
56684
|
-
* Format: date-time
|
|
56685
|
-
* @description The created date of this asset version.
|
|
56686
|
-
*/
|
|
56687
|
-
created?: string;
|
|
56688
|
-
/**
|
|
56689
|
-
* @description Indicates if this version is same to current published version.
|
|
56690
|
-
* This property is available on /v1/{assetId}/published-versions and /v1/{assetId}/version/{versionNumber}.
|
|
56691
|
-
*/
|
|
56692
|
-
isEqualToCurrentPublishedVersion?: boolean;
|
|
56693
|
-
/**
|
|
56694
|
-
* @description Indicates if this version is / was published.
|
|
56695
|
-
* This property is available on /v1/{assetId}/saved-versions.
|
|
56696
|
-
* This should be true for all assets coming from GetAssetPublishedVersionsByAssetId
|
|
56697
|
-
*/
|
|
56698
|
-
isPublished?: boolean;
|
|
56699
|
-
};
|
|
56700
54754
|
/** @description The result of various checks for a user's eligibility to activate a given universe from private to public. */
|
|
56701
54755
|
"Roblox.Api.Develop.Models.ActivationEligibilityResponse": {
|
|
56702
54756
|
/**
|
|
@@ -56998,32 +55052,6 @@ export interface components {
|
|
|
56998
55052
|
*/
|
|
56999
55053
|
activeSubscriptionsCount?: number;
|
|
57000
55054
|
};
|
|
57001
|
-
/** @description Asset voting information */
|
|
57002
|
-
"Roblox.Api.Develop.Models.Response.AssetVotingModel": {
|
|
57003
|
-
/**
|
|
57004
|
-
* Format: int64
|
|
57005
|
-
* @description The !:IAsset's id.
|
|
57006
|
-
*/
|
|
57007
|
-
assetId?: number;
|
|
57008
|
-
/** @description Whether the user has voted on this !:IAsset. */
|
|
57009
|
-
hasUserVoted?: boolean;
|
|
57010
|
-
/** @description Whether the user can vote on this !:IAsset. */
|
|
57011
|
-
canUserVote?: boolean;
|
|
57012
|
-
/** @description Whether votes should be shown. */
|
|
57013
|
-
shouldShowVotes?: boolean;
|
|
57014
|
-
/**
|
|
57015
|
-
* Format: int64
|
|
57016
|
-
* @description The number of up votes.
|
|
57017
|
-
*/
|
|
57018
|
-
upVotes?: number;
|
|
57019
|
-
/**
|
|
57020
|
-
* Format: int64
|
|
57021
|
-
* @description The number of down votes.
|
|
57022
|
-
*/
|
|
57023
|
-
downVotes?: number;
|
|
57024
|
-
/** @description The reason this !:IAsset cannot be voted on. */
|
|
57025
|
-
reasonForNotAbleToVote?: string;
|
|
57026
|
-
};
|
|
57027
55055
|
/** @description Team create settings */
|
|
57028
55056
|
"Roblox.Api.Develop.Models.Response.TeamCreateSettingsResponse": {
|
|
57029
55057
|
/** @description Whether or not the universe should be enabled for team create */
|
|
@@ -57208,6 +55236,8 @@ export interface components {
|
|
|
57208
55236
|
name?: string;
|
|
57209
55237
|
/** @description The description of the universe. */
|
|
57210
55238
|
description?: string;
|
|
55239
|
+
/** @description Promotional text for the universe. Empty stores an empty value. */
|
|
55240
|
+
promotionalText?: string;
|
|
57211
55241
|
/**
|
|
57212
55242
|
* Format: int32
|
|
57213
55243
|
* @description Which avatar types are allowed in the universe.
|
|
@@ -57309,6 +55339,8 @@ export interface components {
|
|
|
57309
55339
|
id?: number;
|
|
57310
55340
|
/** @description The universe name. */
|
|
57311
55341
|
name?: string;
|
|
55342
|
+
/** @description Promotional Text for the universe. */
|
|
55343
|
+
promotionalText?: string;
|
|
57312
55344
|
/**
|
|
57313
55345
|
* Format: int32
|
|
57314
55346
|
* @description Which avatar types are allowed in the universe. ['MorphToR6' = 1, 'PlayerChoice' = 2, 'MorphToR15' = 3]
|
|
@@ -57416,6 +55448,8 @@ export interface components {
|
|
|
57416
55448
|
name?: string;
|
|
57417
55449
|
/** @description The universe description. */
|
|
57418
55450
|
description?: string;
|
|
55451
|
+
/** @description Promotional Text for the universe. */
|
|
55452
|
+
promotionalText?: string;
|
|
57419
55453
|
/**
|
|
57420
55454
|
* Format: int32
|
|
57421
55455
|
* @description Which avatar types are allowed in the universe. ['MorphToR6' = 1, 'PlayerChoice' = 2, 'MorphToR15' = 3]
|
|
@@ -58428,24 +56462,6 @@ export interface components {
|
|
|
58428
56462
|
/** @description The new enabled state of the badge. */
|
|
58429
56463
|
enabled?: boolean;
|
|
58430
56464
|
};
|
|
58431
|
-
/** @description A model to represent asset favorites. */
|
|
58432
|
-
"Roblox.Catalog.Api.AssetFavoriteModel": {
|
|
58433
|
-
/**
|
|
58434
|
-
* Format: int64
|
|
58435
|
-
* @description The Id of the asset being favorited.
|
|
58436
|
-
*/
|
|
58437
|
-
assetId?: number;
|
|
58438
|
-
/**
|
|
58439
|
-
* Format: int64
|
|
58440
|
-
* @description The Id of the user favoriting the asset.
|
|
58441
|
-
*/
|
|
58442
|
-
userId?: number;
|
|
58443
|
-
/**
|
|
58444
|
-
* Format: date-time
|
|
58445
|
-
* @description The time at which the user favorited the asset.
|
|
58446
|
-
*/
|
|
58447
|
-
created?: string;
|
|
58448
|
-
};
|
|
58449
56465
|
"Roblox.Catalog.Api.BundleCreatorModel": {
|
|
58450
56466
|
/** Format: int64 */
|
|
58451
56467
|
id?: number;
|
|
@@ -58472,24 +56488,6 @@ export interface components {
|
|
|
58472
56488
|
collectibleItemDetail?: components["schemas"]["Roblox.Catalog.Api.CollectibleItemDetail"];
|
|
58473
56489
|
discountInformation?: components["schemas"]["Roblox.Catalog.Api.DiscountInformation"];
|
|
58474
56490
|
};
|
|
58475
|
-
/** @description A model to represent bundle favorites. */
|
|
58476
|
-
"Roblox.Catalog.Api.BundleFavoriteModel": {
|
|
58477
|
-
/**
|
|
58478
|
-
* Format: int64
|
|
58479
|
-
* @description The Id of the bundle being favorited.
|
|
58480
|
-
*/
|
|
58481
|
-
bundleId?: number;
|
|
58482
|
-
/**
|
|
58483
|
-
* Format: int64
|
|
58484
|
-
* @description The Id of the user favoriting the bundle.
|
|
58485
|
-
*/
|
|
58486
|
-
userId?: number;
|
|
58487
|
-
/**
|
|
58488
|
-
* Format: date-time
|
|
58489
|
-
* @description The time at which the user favorited the bundle.
|
|
58490
|
-
*/
|
|
58491
|
-
created?: string;
|
|
58492
|
-
};
|
|
58493
56491
|
"Roblox.Catalog.Api.BundleItemDetailModel": {
|
|
58494
56492
|
owned?: boolean;
|
|
58495
56493
|
/** Format: int64 */
|
|
@@ -58665,6 +56663,7 @@ export interface components {
|
|
|
58665
56663
|
*/
|
|
58666
56664
|
itemCreatedUtc?: string;
|
|
58667
56665
|
discountInformation?: components["schemas"]["Roblox.Catalog.Api.DiscountInformation"];
|
|
56666
|
+
license?: components["schemas"]["Roblox.Catalog.Api.CollectibleLicense"];
|
|
58668
56667
|
/**
|
|
58669
56668
|
* Format: int64
|
|
58670
56669
|
* @description The Item Id.
|
|
@@ -58789,37 +56788,6 @@ export interface components {
|
|
|
58789
56788
|
nextPageCursor?: string;
|
|
58790
56789
|
data?: components["schemas"]["Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2"][];
|
|
58791
56790
|
};
|
|
58792
|
-
/** @description Response model for category. */
|
|
58793
|
-
"Roblox.Catalog.Api.CategoryModel": {
|
|
58794
|
-
/**
|
|
58795
|
-
* Format: int32
|
|
58796
|
-
* @description Category type.
|
|
58797
|
-
* @enum {integer}
|
|
58798
|
-
*/
|
|
58799
|
-
category?: 0 | 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
|
58800
|
-
/** @description The associated public facing web_stable_id corresponding to internal taxonomy uuid for this category. */
|
|
58801
|
-
taxonomy?: string;
|
|
58802
|
-
/** @description List of AssetTypeIds corresponding to AssetType enum that this category returns. */
|
|
58803
|
-
assetTypeIds?: number[];
|
|
58804
|
-
/** @description List of bundleTypeIds corresponding to BundleType enum that this category returns. */
|
|
58805
|
-
bundleTypeIds?: number[];
|
|
58806
|
-
/**
|
|
58807
|
-
* Format: int32
|
|
58808
|
-
* @description Category id.
|
|
58809
|
-
*/
|
|
58810
|
-
categoryId?: number;
|
|
58811
|
-
/** @description Category name. */
|
|
58812
|
-
name?: string;
|
|
58813
|
-
/**
|
|
58814
|
-
* Format: int32
|
|
58815
|
-
* @description Category order index.
|
|
58816
|
-
*/
|
|
58817
|
-
orderIndex?: number;
|
|
58818
|
-
/** @description Subcategories under this category. */
|
|
58819
|
-
subcategories?: components["schemas"]["Roblox.Catalog.Api.SubcategoryModel"][];
|
|
58820
|
-
/** @description Gets or sets whether the category is searchable in search bar. */
|
|
58821
|
-
isSearchable?: boolean;
|
|
58822
|
-
};
|
|
58823
56791
|
"Roblox.Catalog.Api.CollectibleItemDetail": {
|
|
58824
56792
|
collectibleItemId?: string;
|
|
58825
56793
|
collectibleProductId?: string;
|
|
@@ -58860,6 +56828,16 @@ export interface components {
|
|
|
58860
56828
|
*/
|
|
58861
56829
|
resaleRestriction?: 0 | 1 | 2;
|
|
58862
56830
|
};
|
|
56831
|
+
/** @description A model representing the license attached to a collectible, linked via the collectibleItemId. */
|
|
56832
|
+
"Roblox.Catalog.Api.CollectibleLicense": {
|
|
56833
|
+
id?: string;
|
|
56834
|
+
/**
|
|
56835
|
+
* Format: int32
|
|
56836
|
+
* @description The type of license attached to a collectible. ['Invalid' = 0, 'ThirdParty' = 1, 'FirstParty' = 2]
|
|
56837
|
+
* @enum {integer}
|
|
56838
|
+
*/
|
|
56839
|
+
licenseType?: 0 | 1 | 2;
|
|
56840
|
+
};
|
|
58863
56841
|
"Roblox.Catalog.Api.Discount": {
|
|
58864
56842
|
/** Format: int64 */
|
|
58865
56843
|
robuxDiscountAmount?: number;
|
|
@@ -58895,17 +56873,6 @@ export interface components {
|
|
|
58895
56873
|
/** @description Gets or sets the search result engagement score. */
|
|
58896
56874
|
searchResultEngagementScore?: string;
|
|
58897
56875
|
};
|
|
58898
|
-
/** @description A response containing favorited bundles and whether there are more. */
|
|
58899
|
-
"Roblox.Catalog.Api.FavoriteBundlesResponse": {
|
|
58900
|
-
/** @description Collection of favorited bundles and associated details. */
|
|
58901
|
-
favorites?: components["schemas"]["Roblox.Catalog.Api.BundleDetailsModel"][];
|
|
58902
|
-
/** @description True if there exists a next page of favorited bundles. */
|
|
58903
|
-
moreFavorites?: boolean;
|
|
58904
|
-
/** @description Pagination cursor for the next page. */
|
|
58905
|
-
nextCursor?: string;
|
|
58906
|
-
/** @description Pagination cursor for the previous page. */
|
|
58907
|
-
previousCursor?: string;
|
|
58908
|
-
};
|
|
58909
56876
|
"Roblox.Catalog.Api.MultigetItemDetailsRequestItem": {
|
|
58910
56877
|
/**
|
|
58911
56878
|
* Format: int32
|
|
@@ -58954,30 +56921,6 @@ export interface components {
|
|
|
58954
56921
|
universeIds?: number[];
|
|
58955
56922
|
enabledUniverseIds?: number[];
|
|
58956
56923
|
};
|
|
58957
|
-
/** @description Response model for subcategory. */
|
|
58958
|
-
"Roblox.Catalog.Api.SubcategoryModel": {
|
|
58959
|
-
/**
|
|
58960
|
-
* Format: int32
|
|
58961
|
-
* @description Subcategory type.
|
|
58962
|
-
* @enum {integer}
|
|
58963
|
-
*/
|
|
58964
|
-
subcategory?: 0 | 1 | 2 | 3 | 4 | 5 | 9 | 10 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67;
|
|
58965
|
-
/** @description The taxonomy UUID associated with this node. */
|
|
58966
|
-
taxonomy?: string;
|
|
58967
|
-
/** @description List of AssetTypeIds corresponding to AssetType enum that this category returns. */
|
|
58968
|
-
assetTypeIds?: number[];
|
|
58969
|
-
/** @description List of bundleTypeIds corresponding to BundleType enum that this category returns. */
|
|
58970
|
-
bundleTypeIds?: number[];
|
|
58971
|
-
/**
|
|
58972
|
-
* Format: int32
|
|
58973
|
-
* @description Subcategory id.
|
|
58974
|
-
*/
|
|
58975
|
-
subcategoryId?: number;
|
|
58976
|
-
/** @description Subcategory name. */
|
|
58977
|
-
name?: string;
|
|
58978
|
-
/** @description Subcategory short name. */
|
|
58979
|
-
shortName?: string;
|
|
58980
|
-
};
|
|
58981
56924
|
/** @description public api model coaslescing taxonomy information for a single item. */
|
|
58982
56925
|
"Roblox.Catalog.Api.TaxonomyModel": {
|
|
58983
56926
|
/** @description The id value to pass into taxonomy field in SearchV2 catalog-api. */
|
|
@@ -59001,34 +56944,6 @@ export interface components {
|
|
|
59001
56944
|
/** @description To indicate if this option is selected by the client. */
|
|
59002
56945
|
selected?: boolean;
|
|
59003
56946
|
};
|
|
59004
|
-
/** @description Response model for avatar topics. */
|
|
59005
|
-
"Roblox.Catalog.Api.TopicModel": {
|
|
59006
|
-
/** @description The display topic name. */
|
|
59007
|
-
displayName?: string;
|
|
59008
|
-
/** @description The original topic name stored in the table. */
|
|
59009
|
-
originalTopicName?: string;
|
|
59010
|
-
};
|
|
59011
|
-
"Roblox.Catalog.Api.TopicRequestModel": {
|
|
59012
|
-
items?: components["schemas"]["Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.AvatarItem"][];
|
|
59013
|
-
selectTopics?: string[];
|
|
59014
|
-
inputQuery?: string;
|
|
59015
|
-
/**
|
|
59016
|
-
* Format: int32
|
|
59017
|
-
* @description Maximum number of topic results returned from the server.
|
|
59018
|
-
*/
|
|
59019
|
-
maxResult?: number;
|
|
59020
|
-
/**
|
|
59021
|
-
* Format: int32
|
|
59022
|
-
* @description ['Unknown' = 1, 'Male' = 2, 'Female' = 3]
|
|
59023
|
-
* @enum {integer}
|
|
59024
|
-
*/
|
|
59025
|
-
genderType?: 1 | 2 | 3;
|
|
59026
|
-
};
|
|
59027
|
-
"Roblox.Catalog.Api.TopicResponse": {
|
|
59028
|
-
topics?: components["schemas"]["Roblox.Catalog.Api.TopicModel"][];
|
|
59029
|
-
queries?: string[];
|
|
59030
|
-
error?: components["schemas"]["Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.Error"];
|
|
59031
|
-
};
|
|
59032
56947
|
/** @description Contains the names of the libraries in an Android Binary Module. */
|
|
59033
56948
|
"Roblox.ClientSettings.Api.Models.Response.AndroidBinaryLibraryNames": {
|
|
59034
56949
|
/** @description Name of the engine library. */
|
|
@@ -60422,10 +58337,10 @@ export interface components {
|
|
|
60422
58337
|
"Roblox.Games.Api.Models.Response.PlayabilityStatusResponse": {
|
|
60423
58338
|
/**
|
|
60424
58339
|
* Format: int32
|
|
60425
|
-
* @description The actual playability status of the universe including the reason if unplayable ['UnplayableOtherReason' = 0, 'Playable' = 1, 'GuestProhibited' = 2, 'GameUnapproved' = 3, 'IncorrectConfiguration' = 4, 'UniverseRootPlaceIsPrivate' = 5, 'InsufficientPermissionFriendsOnly' = 6, 'InsufficientPermissionGroupOnly' = 7, 'DeviceRestricted' = 8, 'UnderReview' = 9, 'PurchaseRequired' = 10, 'AccountRestricted' = 11, 'TemporarilyUnavailable' = 12, 'PlaceHasNoPublishedVersion' = 13, 'ComplianceBlocked' = 14, 'ContextualPlayabilityRegionalAvailability' = 15, 'ContextualPlayabilityRegionalCompliance' = 16, 'ContextualPlayabilityAgeRecommendationParentalControls' = 17, 'ContextualPlayabilityExperienceBlockedParentalControls' = 18, 'ContextualPlayabilityAgeGated' = 19, 'ContextualPlayabilityUnverifiedSeventeenPlusUser' = 20, 'FiatPurchaseRequired' = 21, 'FiatPurchaseDeviceRestricted' = 22, 'ContextualPlayabilityUnrated' = 23, 'ContextualPlayabilityAgeGatedByDescriptor' = 24, 'ContextualPlayabilityGeneral' = 25, 'ContextualPlayabilityAgeCheckRequired' = 26, 'ContextualPlayabilityRequireParentApproval' = 27, 'ContextualPlayabilityCoreGated' = 28]
|
|
58340
|
+
* @description The actual playability status of the universe including the reason if unplayable ['UnplayableOtherReason' = 0, 'Playable' = 1, 'GuestProhibited' = 2, 'GameUnapproved' = 3, 'IncorrectConfiguration' = 4, 'UniverseRootPlaceIsPrivate' = 5, 'InsufficientPermissionFriendsOnly' = 6, 'InsufficientPermissionGroupOnly' = 7, 'DeviceRestricted' = 8, 'UnderReview' = 9, 'PurchaseRequired' = 10, 'AccountRestricted' = 11, 'TemporarilyUnavailable' = 12, 'PlaceHasNoPublishedVersion' = 13, 'ComplianceBlocked' = 14, 'ContextualPlayabilityRegionalAvailability' = 15, 'ContextualPlayabilityRegionalCompliance' = 16, 'ContextualPlayabilityAgeRecommendationParentalControls' = 17, 'ContextualPlayabilityExperienceBlockedParentalControls' = 18, 'ContextualPlayabilityAgeGated' = 19, 'ContextualPlayabilityUnverifiedSeventeenPlusUser' = 20, 'FiatPurchaseRequired' = 21, 'FiatPurchaseDeviceRestricted' = 22, 'ContextualPlayabilityUnrated' = 23, 'ContextualPlayabilityAgeGatedByDescriptor' = 24, 'ContextualPlayabilityGeneral' = 25, 'ContextualPlayabilityAgeCheckRequired' = 26, 'ContextualPlayabilityRequireParentApproval' = 27, 'ContextualPlayabilityCoreGated' = 28, 'ContextualPlayabilityTrustedFriendRequired' = 29, 'PlusSubscriptionRequired' = 30, 'ContextualPlayabilityPlaytestDisabled' = 31]
|
|
60426
58341
|
* @enum {integer}
|
|
60427
58342
|
*/
|
|
60428
|
-
playabilityStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28;
|
|
58343
|
+
playabilityStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31;
|
|
60429
58344
|
/** @description Whether or not the universe is playable for the user */
|
|
60430
58345
|
isPlayable?: boolean;
|
|
60431
58346
|
/**
|
|
@@ -60442,6 +58357,7 @@ export interface components {
|
|
|
60442
58357
|
* Only set when PlayabilityStatus is PurchaseRequired or FiatPurchaseRequired.
|
|
60443
58358
|
*/
|
|
60444
58359
|
demoModeAvailable?: boolean;
|
|
58360
|
+
privatePlaytestInfo?: components["schemas"]["Roblox.Games.Api.Models.Response.PrivatePlaytestInfoResponse"];
|
|
60445
58361
|
};
|
|
60446
58362
|
"Roblox.Games.Api.Models.Response.PlayableUxTreatment": {
|
|
60447
58363
|
treatment?: string;
|
|
@@ -60453,6 +58369,17 @@ export interface components {
|
|
|
60453
58369
|
primaryActionText?: string;
|
|
60454
58370
|
secondaryActionText?: string;
|
|
60455
58371
|
};
|
|
58372
|
+
/** @description Private playtest eligibility for the authenticated user. */
|
|
58373
|
+
"Roblox.Games.Api.Models.Response.PrivatePlaytestInfoResponse": {
|
|
58374
|
+
/** @description Whether the user is eligible to play as a private playtester. */
|
|
58375
|
+
isPlayable?: boolean;
|
|
58376
|
+
/**
|
|
58377
|
+
* Format: int32
|
|
58378
|
+
* @description The private playtest eligibility status. ['UnplayableOtherReason' = 0, 'Playable' = 1, 'GuestProhibited' = 2, 'GameUnapproved' = 3, 'IncorrectConfiguration' = 4, 'UniverseRootPlaceIsPrivate' = 5, 'InsufficientPermissionFriendsOnly' = 6, 'InsufficientPermissionGroupOnly' = 7, 'DeviceRestricted' = 8, 'UnderReview' = 9, 'PurchaseRequired' = 10, 'AccountRestricted' = 11, 'TemporarilyUnavailable' = 12, 'PlaceHasNoPublishedVersion' = 13, 'ComplianceBlocked' = 14, 'ContextualPlayabilityRegionalAvailability' = 15, 'ContextualPlayabilityRegionalCompliance' = 16, 'ContextualPlayabilityAgeRecommendationParentalControls' = 17, 'ContextualPlayabilityExperienceBlockedParentalControls' = 18, 'ContextualPlayabilityAgeGated' = 19, 'ContextualPlayabilityUnverifiedSeventeenPlusUser' = 20, 'FiatPurchaseRequired' = 21, 'FiatPurchaseDeviceRestricted' = 22, 'ContextualPlayabilityUnrated' = 23, 'ContextualPlayabilityAgeGatedByDescriptor' = 24, 'ContextualPlayabilityGeneral' = 25, 'ContextualPlayabilityAgeCheckRequired' = 26, 'ContextualPlayabilityRequireParentApproval' = 27, 'ContextualPlayabilityCoreGated' = 28, 'ContextualPlayabilityTrustedFriendRequired' = 29, 'PlusSubscriptionRequired' = 30, 'ContextualPlayabilityPlaytestDisabled' = 31]
|
|
58379
|
+
* @enum {integer}
|
|
58380
|
+
*/
|
|
58381
|
+
playabilityStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31;
|
|
58382
|
+
};
|
|
60456
58383
|
"Roblox.Games.Api.Models.Response.PurchaseData": {
|
|
60457
58384
|
/** @description Fiat purchase price in a localized string for display on client. */
|
|
60458
58385
|
localizedFiatPrice?: string;
|
|
@@ -61225,7 +59152,7 @@ export interface components {
|
|
|
61225
59152
|
name?: string;
|
|
61226
59153
|
/** @description The game description. */
|
|
61227
59154
|
description?: string;
|
|
61228
|
-
creator?: components["schemas"]["Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Core.CreatorType_"];
|
|
59155
|
+
creator?: components["schemas"]["GroupsApi.Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Core.CreatorType_"];
|
|
61229
59156
|
rootPlace?: components["schemas"]["GroupsApi.Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Assets.AssetType_"];
|
|
61230
59157
|
/**
|
|
61231
59158
|
* Format: date-time
|
|
@@ -61592,9 +59519,9 @@ export interface components {
|
|
|
61592
59519
|
};
|
|
61593
59520
|
"Roblox.Groups.Client.CommunityTierInfoResponse": {
|
|
61594
59521
|
/** Format: int64 */
|
|
61595
|
-
groupId
|
|
59522
|
+
groupId: number;
|
|
61596
59523
|
/** Format: int32 */
|
|
61597
|
-
currentTier
|
|
59524
|
+
currentTier: number;
|
|
61598
59525
|
/** Format: int32 */
|
|
61599
59526
|
previousTier?: number;
|
|
61600
59527
|
/** Format: date-time */
|
|
@@ -61628,11 +59555,11 @@ export interface components {
|
|
|
61628
59555
|
contentId?: string;
|
|
61629
59556
|
};
|
|
61630
59557
|
"Roblox.Groups.Client.TierCapabilities": {
|
|
61631
|
-
isEligibleForUnrestrictedMessages
|
|
59558
|
+
isEligibleForUnrestrictedMessages: boolean;
|
|
61632
59559
|
};
|
|
61633
59560
|
"Roblox.Groups.Client.TierEvaluationResultResponse": {
|
|
61634
|
-
tierInfo
|
|
61635
|
-
passedSignals
|
|
59561
|
+
tierInfo: components["schemas"]["Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
59562
|
+
passedSignals: string[];
|
|
61636
59563
|
requirements?: components["schemas"]["Roblox.Groups.Client.TierRequirement"][];
|
|
61637
59564
|
};
|
|
61638
59565
|
"Roblox.Groups.Client.TierRequirement": {
|
|
@@ -61641,8 +59568,8 @@ export interface components {
|
|
|
61641
59568
|
* @description ['OwnerModerationStatusOk' = 1, 'OwnerAgeEstimationVerified' = 2, 'OwnerIdVerified' = 3, 'OwnerTwoStepVerified' = 4, 'CommunityMeetsPlayerRequirement' = 5]
|
|
61642
59569
|
* @enum {integer}
|
|
61643
59570
|
*/
|
|
61644
|
-
key
|
|
61645
|
-
satisfied
|
|
59571
|
+
key: 1 | 2 | 3 | 4 | 5;
|
|
59572
|
+
satisfied: boolean;
|
|
61646
59573
|
};
|
|
61647
59574
|
"Roblox.InGameContentTables.Client.GameLocation": {
|
|
61648
59575
|
path?: string;
|
|
@@ -61851,69 +59778,16 @@ export interface components {
|
|
|
61851
59778
|
name?: string;
|
|
61852
59779
|
/**
|
|
61853
59780
|
* Format: int32
|
|
61854
|
-
* @description The asset type id of asset with id Roblox.Inventory.Api.V2.UserAssetItemModelV2.AssetId. ['Image' = 1, 'TShirt' = 2, 'Audio' = 3, 'Mesh' = 4, 'Lua' = 5, 'HTML' = 6, 'Text' = 7, 'Hat' = 8, 'Place' = 9, 'Model' = 10, 'Shirt' = 11, 'Pants' = 12, 'Decal' = 13, 'Avatar' = 16, 'Head' = 17, 'Face' = 18, 'Gear' = 19, 'Badge' = 21, 'GroupEmblem' = 22, 'Animation' = 24, 'Arms' = 25, 'Legs' = 26, 'Torso' = 27, 'RightArm' = 28, 'LeftArm' = 29, 'LeftLeg' = 30, 'RightLeg' = 31, 'Package' = 32, 'YouTubeVideo' = 33, 'GamePass' = 34, 'App' = 35, 'Code' = 37, 'Plugin' = 38, 'SolidModel' = 39, 'MeshPart' = 40, 'HairAccessory' = 41, 'FaceAccessory' = 42, 'NeckAccessory' = 43, 'ShoulderAccessory' = 44, 'FrontAccessory' = 45, 'BackAccessory' = 46, 'WaistAccessory' = 47, 'ClimbAnimation' = 48, 'DeathAnimation' = 49, 'FallAnimation' = 50, 'IdleAnimation' = 51, 'JumpAnimation' = 52, 'RunAnimation' = 53, 'SwimAnimation' = 54, 'WalkAnimation' = 55, 'PoseAnimation' = 56, 'LocalizationTableManifest' = 59, 'LocalizationTableTranslation' = 60, 'EmoteAnimation' = 61, 'Video' = 62, 'TexturePack' = 63, 'TShirtAccessory' = 64, 'ShirtAccessory' = 65, 'PantsAccessory' = 66, 'JacketAccessory' = 67, 'SweaterAccessory' = 68, 'ShortsAccessory' = 69, 'LeftShoeAccessory' = 70, 'RightShoeAccessory' = 71, 'DressSkirtAccessory' = 72, 'FontFamily' = 73, 'FontFace' = 74, 'MeshHiddenSurfaceRemoval' = 75, 'EyebrowAccessory' = 76, 'EyelashAccessory' = 77, 'MoodAnimation' = 78, 'DynamicHead' = 79, 'CodeSnippet' = 80, 'AdsVideo' = 81, 'OtaUpdate' = 82, 'Screenshot' = 83, 'RuntimePropertySet' = 84, 'StorePreviewVideo' = 85, 'GamePreviewVideo' = 86, 'CreatorExperienceConfig' = 87, 'FaceMakeup' = 88, 'LipMakeup' = 89, 'EyeMakeup' = 90, 'VoxelFragment' = 91, 'AvatarBackground' = 92, 'TextDocument' = 93, 'Post' = 94, 'AnimatedImage' = 95]
|
|
59781
|
+
* @description The asset type id of asset with id Roblox.Inventory.Api.V2.UserAssetItemModelV2.AssetId. ['Image' = 1, 'TShirt' = 2, 'Audio' = 3, 'Mesh' = 4, 'Lua' = 5, 'HTML' = 6, 'Text' = 7, 'Hat' = 8, 'Place' = 9, 'Model' = 10, 'Shirt' = 11, 'Pants' = 12, 'Decal' = 13, 'Avatar' = 16, 'Head' = 17, 'Face' = 18, 'Gear' = 19, 'Badge' = 21, 'GroupEmblem' = 22, 'Animation' = 24, 'Arms' = 25, 'Legs' = 26, 'Torso' = 27, 'RightArm' = 28, 'LeftArm' = 29, 'LeftLeg' = 30, 'RightLeg' = 31, 'Package' = 32, 'YouTubeVideo' = 33, 'GamePass' = 34, 'App' = 35, 'Code' = 37, 'Plugin' = 38, 'SolidModel' = 39, 'MeshPart' = 40, 'HairAccessory' = 41, 'FaceAccessory' = 42, 'NeckAccessory' = 43, 'ShoulderAccessory' = 44, 'FrontAccessory' = 45, 'BackAccessory' = 46, 'WaistAccessory' = 47, 'ClimbAnimation' = 48, 'DeathAnimation' = 49, 'FallAnimation' = 50, 'IdleAnimation' = 51, 'JumpAnimation' = 52, 'RunAnimation' = 53, 'SwimAnimation' = 54, 'WalkAnimation' = 55, 'PoseAnimation' = 56, 'LocalizationTableManifest' = 59, 'LocalizationTableTranslation' = 60, 'EmoteAnimation' = 61, 'Video' = 62, 'TexturePack' = 63, 'TShirtAccessory' = 64, 'ShirtAccessory' = 65, 'PantsAccessory' = 66, 'JacketAccessory' = 67, 'SweaterAccessory' = 68, 'ShortsAccessory' = 69, 'LeftShoeAccessory' = 70, 'RightShoeAccessory' = 71, 'DressSkirtAccessory' = 72, 'FontFamily' = 73, 'FontFace' = 74, 'MeshHiddenSurfaceRemoval' = 75, 'EyebrowAccessory' = 76, 'EyelashAccessory' = 77, 'MoodAnimation' = 78, 'DynamicHead' = 79, 'CodeSnippet' = 80, 'AdsVideo' = 81, 'OtaUpdate' = 82, 'Screenshot' = 83, 'RuntimePropertySet' = 84, 'StorePreviewVideo' = 85, 'GamePreviewVideo' = 86, 'CreatorExperienceConfig' = 87, 'FaceMakeup' = 88, 'LipMakeup' = 89, 'EyeMakeup' = 90, 'VoxelFragment' = 91, 'AvatarBackground' = 92, 'TextDocument' = 93, 'Post' = 94, 'AnimatedImage' = 95, 'ComputeFunction' = 96]
|
|
61855
59782
|
* @enum {integer}
|
|
61856
59783
|
*/
|
|
61857
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95;
|
|
59784
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96;
|
|
61858
59785
|
/**
|
|
61859
59786
|
* Format: date-time
|
|
61860
59787
|
* @description The created date time of the user asset.
|
|
61861
59788
|
*/
|
|
61862
59789
|
created?: string;
|
|
61863
59790
|
};
|
|
61864
|
-
"Roblox.ItemConfiguration.Api.AssetCreationsDetailsRequest": {
|
|
61865
|
-
AssetIds?: number[];
|
|
61866
|
-
};
|
|
61867
|
-
"Roblox.ItemConfiguration.Api.AssetCreationsDetailsResponse": {
|
|
61868
|
-
/**
|
|
61869
|
-
* Format: int64
|
|
61870
|
-
* @description The asset Id.
|
|
61871
|
-
*/
|
|
61872
|
-
assetId?: number;
|
|
61873
|
-
/** @description The asset name. */
|
|
61874
|
-
name?: string;
|
|
61875
|
-
/**
|
|
61876
|
-
* @description The asset status. ['Unknown' = 0, 'ReviewPending' = 1, 'Moderated' = 2, 'ReviewApproved' = 3, 'OnSale' = 4, 'OffSale' = 5, 'DelayedRelease' = 6, 'Free' = 7]
|
|
61877
|
-
* @enum {string}
|
|
61878
|
-
*/
|
|
61879
|
-
status?: "Unknown" | "ReviewPending" | "Moderated" | "ReviewApproved" | "OnSale" | "OffSale" | "DelayedRelease" | "Free";
|
|
61880
|
-
/** @description The asset description. */
|
|
61881
|
-
description?: string;
|
|
61882
|
-
/**
|
|
61883
|
-
* @description The creator type. ['Unknown' = 0, 'User' = 1, 'Group' = 2]
|
|
61884
|
-
* @enum {string}
|
|
61885
|
-
*/
|
|
61886
|
-
creatorType?: "Unknown" | "User" | "Group";
|
|
61887
|
-
/**
|
|
61888
|
-
* Format: int64
|
|
61889
|
-
* @description The creator target Id.
|
|
61890
|
-
*/
|
|
61891
|
-
creatorTargetId?: number;
|
|
61892
|
-
/** @description Is the asset archived. */
|
|
61893
|
-
isArchived?: boolean;
|
|
61894
|
-
/** @description Type of the asset. */
|
|
61895
|
-
assetType?: string;
|
|
61896
|
-
/**
|
|
61897
|
-
* Format: date-time
|
|
61898
|
-
* @description Date asset was created.
|
|
61899
|
-
*/
|
|
61900
|
-
created?: string;
|
|
61901
|
-
/**
|
|
61902
|
-
* Format: date-time
|
|
61903
|
-
* @description Date asset was created.
|
|
61904
|
-
*/
|
|
61905
|
-
updated?: string;
|
|
61906
|
-
};
|
|
61907
|
-
/** @description Asset Status response model. */
|
|
61908
|
-
"Roblox.ItemConfiguration.Api.AssetCreationsResponse": {
|
|
61909
|
-
/**
|
|
61910
|
-
* Format: int64
|
|
61911
|
-
* @description The asset Id.
|
|
61912
|
-
*/
|
|
61913
|
-
assetId?: number;
|
|
61914
|
-
/** @description The asset name. */
|
|
61915
|
-
name?: string;
|
|
61916
|
-
};
|
|
61917
59791
|
"Roblox.ItemConfiguration.Api.Models.Request.PublishingPreferences.CreatePublishingPreferencesRequest": {
|
|
61918
59792
|
/** Format: int64 */
|
|
61919
59793
|
creatorUserId?: number;
|
|
@@ -62305,6 +60179,8 @@ export interface components {
|
|
|
62305
60179
|
"Roblox.LocalizationTables.Api.GetTableEntriesTranslationHistoryRequest": {
|
|
62306
60180
|
locale?: string;
|
|
62307
60181
|
entries?: components["schemas"]["Roblox.LocalizationTables.Api.CursorEntryIdentifier"][];
|
|
60182
|
+
/** @enum {string} */
|
|
60183
|
+
sourceType?: "Invalid" | "Text" | "AssetImage";
|
|
62308
60184
|
};
|
|
62309
60185
|
/** @description A response model for GetTableEntriesTranslationHistory. */
|
|
62310
60186
|
"Roblox.LocalizationTables.Api.GetTableEntriesTranslationHistoryResponse": {
|
|
@@ -62445,21 +60321,6 @@ export interface components {
|
|
|
62445
60321
|
*/
|
|
62446
60322
|
readonly OptionalIdCase?: "None" | "Id";
|
|
62447
60323
|
};
|
|
62448
|
-
"Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.AvatarItem": {
|
|
62449
|
-
/** Format: int64 */
|
|
62450
|
-
TargetId?: number;
|
|
62451
|
-
/**
|
|
62452
|
-
* Format: int32
|
|
62453
|
-
* @description ['Invalid' = 0, 'Asset' = 1, 'Bundle' = 2]
|
|
62454
|
-
* @enum {integer}
|
|
62455
|
-
*/
|
|
62456
|
-
ItemType?: 0 | 1 | 2;
|
|
62457
|
-
};
|
|
62458
|
-
"Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.Error": {
|
|
62459
|
-
Message?: string;
|
|
62460
|
-
/** Format: int32 */
|
|
62461
|
-
Code?: number;
|
|
62462
|
-
};
|
|
62463
60324
|
"Roblox.Paging.CursoredPagedResult_Roblox.Friends.Api.Models.Response.FriendResponse_": {
|
|
62464
60325
|
PreviousCursor?: string;
|
|
62465
60326
|
PageItems?: components["schemas"]["Roblox.Friends.Api.Models.Response.FriendResponse"][];
|
|
@@ -62584,73 +60445,6 @@ export interface components {
|
|
|
62584
60445
|
name?: string;
|
|
62585
60446
|
displayName?: string;
|
|
62586
60447
|
};
|
|
62587
|
-
/** @description Model for asset quota. */
|
|
62588
|
-
"Roblox.Publish.Api.AssetQuota": {
|
|
62589
|
-
/** @description Duration type of the quota. */
|
|
62590
|
-
duration?: string;
|
|
62591
|
-
/**
|
|
62592
|
-
* Format: int64
|
|
62593
|
-
* @description Current usage of the quota.
|
|
62594
|
-
*/
|
|
62595
|
-
usage?: number;
|
|
62596
|
-
/**
|
|
62597
|
-
* Format: int64
|
|
62598
|
-
* @description Capacity of the quota.
|
|
62599
|
-
*/
|
|
62600
|
-
capacity?: number;
|
|
62601
|
-
/** @description Expiration time of current usage limit. */
|
|
62602
|
-
expirationTime?: string;
|
|
62603
|
-
};
|
|
62604
|
-
/** @description Response model for asset quotas. */
|
|
62605
|
-
"Roblox.Publish.Api.AssetQuotasResponse": {
|
|
62606
|
-
/** @description A list of quotas. */
|
|
62607
|
-
quotas?: components["schemas"]["Roblox.Publish.Api.AssetQuota"][];
|
|
62608
|
-
};
|
|
62609
|
-
/** @description Response model for publish audio. */
|
|
62610
|
-
"Roblox.Publish.Api.PublishAudioResponse": {
|
|
62611
|
-
/**
|
|
62612
|
-
* Format: int64
|
|
62613
|
-
* @description Id of the published asset.
|
|
62614
|
-
*/
|
|
62615
|
-
Id?: number;
|
|
62616
|
-
/** @description Name of the published asset. */
|
|
62617
|
-
Name?: string;
|
|
62618
|
-
};
|
|
62619
|
-
/** @description A request model for uploading an audio file. */
|
|
62620
|
-
"Roblox.Publish.Api.UploadAudioRequest": {
|
|
62621
|
-
/** @description Name for the audio file. */
|
|
62622
|
-
name?: string;
|
|
62623
|
-
/** @description File to be uploaded. Formatted as a base64 string. */
|
|
62624
|
-
file?: string;
|
|
62625
|
-
/**
|
|
62626
|
-
* Format: int64
|
|
62627
|
-
* @description Id of the group you are publishing the audio asset for. Null if not publishing under a group.
|
|
62628
|
-
*/
|
|
62629
|
-
groupId?: number;
|
|
62630
|
-
/**
|
|
62631
|
-
* @description The source of funds for payment.
|
|
62632
|
-
* User: Use personal funds of authenticated user.
|
|
62633
|
-
* Group: Use group funds from Roblox.Publish.Api.UploadAudioRequest.GroupId.
|
|
62634
|
-
* Null/Empty: Will default to authenticated user funds.
|
|
62635
|
-
*/
|
|
62636
|
-
paymentSource?: string;
|
|
62637
|
-
/**
|
|
62638
|
-
* Format: int64
|
|
62639
|
-
* @description Estimated file size of the audio file in bytes.
|
|
62640
|
-
*/
|
|
62641
|
-
estimatedFileSize?: number;
|
|
62642
|
-
/**
|
|
62643
|
-
* Format: double
|
|
62644
|
-
* @description Estimated duration of the audio file in seconds.
|
|
62645
|
-
*/
|
|
62646
|
-
estimatedDuration?: number;
|
|
62647
|
-
/**
|
|
62648
|
-
* Format: int32
|
|
62649
|
-
* @description The asset privacy of the audio asset.
|
|
62650
|
-
* @enum {integer}
|
|
62651
|
-
*/
|
|
62652
|
-
assetPrivacy?: 1 | 2;
|
|
62653
|
-
};
|
|
62654
60448
|
/** @description A response used when an upload has completed. */
|
|
62655
60449
|
"Roblox.Publish.Api.UploadResponse": {
|
|
62656
60450
|
/**
|
|
@@ -62659,47 +60453,6 @@ export interface components {
|
|
|
62659
60453
|
*/
|
|
62660
60454
|
targetId?: number;
|
|
62661
60455
|
};
|
|
62662
|
-
/** @description Request model to publish an audio asset. */
|
|
62663
|
-
"Roblox.Publish.Api.VerifyAudioRequest": {
|
|
62664
|
-
/** @description Gets or sets the name of the audio asset. */
|
|
62665
|
-
name?: string;
|
|
62666
|
-
/** @description File to be uploaded. Formatted as a base64 string. */
|
|
62667
|
-
file?: string;
|
|
62668
|
-
/**
|
|
62669
|
-
* Format: int64
|
|
62670
|
-
* @description Gets or sets the ID of the group if applicable. Optional.
|
|
62671
|
-
*/
|
|
62672
|
-
groupId?: number;
|
|
62673
|
-
/** @description Gets or sets the payment source. 'User' or 'Group'. Required if Group ID is set. */
|
|
62674
|
-
paymentSource?: string;
|
|
62675
|
-
/**
|
|
62676
|
-
* Format: int64
|
|
62677
|
-
* @description Gets or sets the size of the audio file in bytes.
|
|
62678
|
-
*/
|
|
62679
|
-
fileSize?: number;
|
|
62680
|
-
/**
|
|
62681
|
-
* Format: double
|
|
62682
|
-
* @description Gets or sets the duration of the audio in seconds.
|
|
62683
|
-
*/
|
|
62684
|
-
duration?: number;
|
|
62685
|
-
};
|
|
62686
|
-
/** @description Response model for verify audio endpoint. */
|
|
62687
|
-
"Roblox.Publish.Api.VerifyAudioResponse": {
|
|
62688
|
-
/** @description Name of the audio file. */
|
|
62689
|
-
name?: string;
|
|
62690
|
-
/**
|
|
62691
|
-
* Format: int64
|
|
62692
|
-
* @description Price in robux to publish the audio file.
|
|
62693
|
-
*/
|
|
62694
|
-
price?: number;
|
|
62695
|
-
/**
|
|
62696
|
-
* Format: int64
|
|
62697
|
-
* @description User's current Robux balance.
|
|
62698
|
-
*/
|
|
62699
|
-
balance?: number;
|
|
62700
|
-
/** @description Boolean, true if the user can afford to purchase the publishing of the audio file. */
|
|
62701
|
-
canAfford?: boolean;
|
|
62702
|
-
};
|
|
62703
60456
|
"Roblox.Thumbnails.Apis.Models.ThumbnailBatchRequest": {
|
|
62704
60457
|
/** @description The request id. (Generated client side, used to represent the items in the request) */
|
|
62705
60458
|
requestId?: string;
|
|
@@ -62743,10 +60496,10 @@ export interface components {
|
|
|
62743
60496
|
canTrade?: boolean;
|
|
62744
60497
|
/**
|
|
62745
60498
|
* Format: int32
|
|
62746
|
-
* @description If you can't trade with a user, status explains why you can't trade with them. ['Unknown' = 0, 'CanTrade' = 1, 'CannotTradeWithSelf' = 2, 'SenderCannotTrade' = 3, 'ReceiverCannotTrade' = 4, 'SenderPrivacyTooStrict' = 5, 'UsersCannotTrade' = 6, 'TradeAccepterNeedsFriction' = 7]
|
|
60499
|
+
* @description If you can't trade with a user, status explains why you can't trade with them. ['Unknown' = 0, 'CanTrade' = 1, 'CannotTradeWithSelf' = 2, 'SenderCannotTrade' = 3, 'ReceiverCannotTrade' = 4, 'SenderPrivacyTooStrict' = 5, 'UsersCannotTrade' = 6, 'TradeAccepterNeedsFriction' = 7, 'SenderAgeCheckRequired' = 8]
|
|
62747
60500
|
* @enum {integer}
|
|
62748
60501
|
*/
|
|
62749
|
-
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
60502
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
|
|
62750
60503
|
};
|
|
62751
60504
|
/** @description The response for the CanTrade endpoint. */
|
|
62752
60505
|
"Roblox.Trades.Api.Models.V2.CanTradeResponse": {
|
|
@@ -62758,10 +60511,10 @@ export interface components {
|
|
|
62758
60511
|
/** @description Whether the user can trade or not. */
|
|
62759
60512
|
canTrade?: boolean;
|
|
62760
60513
|
/**
|
|
62761
|
-
* @description The trade eligibility status of the user. ['Unknown' = 0, 'Eligible' = 1, 'IneligibleTradeSystemDisabled' = 2, 'IneligibleCannotTradeWithRoblox' = 3, 'IneligibleUserNotFound' = 4, 'IneligibleMissingPremiumMembership' = 5, 'IneligibleLegalOrRegulatoryRestrictions' = 6, 'IneligibleFreeTradesLimitReached' = 7]
|
|
60514
|
+
* @description The trade eligibility status of the user. ['Unknown' = 0, 'Eligible' = 1, 'IneligibleTradeSystemDisabled' = 2, 'IneligibleCannotTradeWithRoblox' = 3, 'IneligibleUserNotFound' = 4, 'IneligibleMissingPremiumMembership' = 5, 'IneligibleLegalOrRegulatoryRestrictions' = 6, 'IneligibleFreeTradesLimitReached' = 7, 'IneligibleAgeCheckRequired' = 8]
|
|
62762
60515
|
* @enum {string}
|
|
62763
60516
|
*/
|
|
62764
|
-
tradeEligibility?: "Unknown" | "Eligible" | "IneligibleTradeSystemDisabled" | "IneligibleCannotTradeWithRoblox" | "IneligibleUserNotFound" | "IneligibleMissingPremiumMembership" | "IneligibleLegalOrRegulatoryRestrictions" | "IneligibleFreeTradesLimitReached";
|
|
60517
|
+
tradeEligibility?: "Unknown" | "Eligible" | "IneligibleTradeSystemDisabled" | "IneligibleCannotTradeWithRoblox" | "IneligibleUserNotFound" | "IneligibleMissingPremiumMembership" | "IneligibleLegalOrRegulatoryRestrictions" | "IneligibleFreeTradesLimitReached" | "IneligibleAgeCheckRequired";
|
|
62765
60518
|
freeTradesAllowance?: components["schemas"]["Roblox.Trades.Api.Models.V2.FreeTradesAllowanceResponse"];
|
|
62766
60519
|
currencyTransferEligibility?: components["schemas"]["Roblox.Trades.Api.Models.V2.CurrencyTransferEligibilityResponse"];
|
|
62767
60520
|
};
|
|
@@ -62780,10 +60533,10 @@ export interface components {
|
|
|
62780
60533
|
/** @description Whether the user can trade with the target user or not. */
|
|
62781
60534
|
canTrade?: boolean;
|
|
62782
60535
|
/**
|
|
62783
|
-
* @description The mutual trade eligibility status between the two users. ['Unknown' = 0, 'Eligible' = 1, 'CallingUserIneligible' = 2, 'TargetUserIneligible' = 3, 'CannotTradeWithSelf' = 4, 'CallingUserPrivacySettingsRestricted' = 5]
|
|
60536
|
+
* @description The mutual trade eligibility status between the two users. ['Unknown' = 0, 'Eligible' = 1, 'CallingUserIneligible' = 2, 'TargetUserIneligible' = 3, 'CannotTradeWithSelf' = 4, 'CallingUserPrivacySettingsRestricted' = 5, 'CallingUserAgeCheckRequired' = 6]
|
|
62784
60537
|
* @enum {string}
|
|
62785
60538
|
*/
|
|
62786
|
-
mutualTradeEligibility?: "Unknown" | "Eligible" | "CallingUserIneligible" | "TargetUserIneligible" | "CannotTradeWithSelf" | "CallingUserPrivacySettingsRestricted";
|
|
60539
|
+
mutualTradeEligibility?: "Unknown" | "Eligible" | "CallingUserIneligible" | "TargetUserIneligible" | "CannotTradeWithSelf" | "CallingUserPrivacySettingsRestricted" | "CallingUserAgeCheckRequired";
|
|
62787
60540
|
currencyTransferEligibility?: components["schemas"]["Roblox.Trades.Api.Models.V2.CurrencyTransferEligibilityResponse"];
|
|
62788
60541
|
};
|
|
62789
60542
|
"Roblox.Trades.Api.Models.V2.CurrencyTransferEligibilityResponse": {
|
|
@@ -63617,8 +61370,7 @@ export interface components {
|
|
|
63617
61370
|
"roblox-assetFormat"?: string;
|
|
63618
61371
|
assetResolutionMode?: string;
|
|
63619
61372
|
accessContext?: string;
|
|
63620
|
-
|
|
63621
|
-
usageContext?: number;
|
|
61373
|
+
usageContext?: string;
|
|
63622
61374
|
contentRepresentationPriorityList?: string;
|
|
63623
61375
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
63624
61376
|
/** Format: int64 */
|
|
@@ -63896,9 +61648,6 @@ export interface components {
|
|
|
63896
61648
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.GroupModel_": {
|
|
63897
61649
|
data?: components["schemas"]["Roblox.Api.Develop.Models.GroupModel"][];
|
|
63898
61650
|
};
|
|
63899
|
-
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.Response.AssetVotingModel_": {
|
|
63900
|
-
data?: components["schemas"]["Roblox.Api.Develop.Models.Response.AssetVotingModel"][];
|
|
63901
|
-
};
|
|
63902
61651
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.UniverseIdPermissionsModel_": {
|
|
63903
61652
|
data?: components["schemas"]["Roblox.Api.Develop.Models.UniverseIdPermissionsModel"][];
|
|
63904
61653
|
};
|
|
@@ -63908,9 +61657,6 @@ export interface components {
|
|
|
63908
61657
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel_": {
|
|
63909
61658
|
data?: components["schemas"]["Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel"][];
|
|
63910
61659
|
};
|
|
63911
|
-
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_": {
|
|
63912
|
-
data?: components["schemas"]["Roblox.Catalog.Api.BundleDetailsModel"][];
|
|
63913
|
-
};
|
|
63914
61660
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2_": {
|
|
63915
61661
|
data?: components["schemas"]["Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2"][];
|
|
63916
61662
|
};
|
|
@@ -64013,11 +61759,6 @@ export interface components {
|
|
|
64013
61759
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_System.String_": {
|
|
64014
61760
|
data?: string[];
|
|
64015
61761
|
};
|
|
64016
|
-
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.AssetVersion_": {
|
|
64017
|
-
previousPageCursor?: string;
|
|
64018
|
-
nextPageCursor?: string;
|
|
64019
|
-
data?: components["schemas"]["Roblox.Api.Develop.AssetVersion"][];
|
|
64020
|
-
};
|
|
64021
61762
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.Models.IPlaceModel_": {
|
|
64022
61763
|
previousPageCursor?: string;
|
|
64023
61764
|
nextPageCursor?: string;
|
|
@@ -64128,11 +61869,6 @@ export interface components {
|
|
|
64128
61869
|
nextPageCursor?: string;
|
|
64129
61870
|
data?: components["schemas"]["Roblox.Inventory.Api.V2.UserAssetItemModelV2"][];
|
|
64130
61871
|
};
|
|
64131
|
-
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.ItemConfiguration.Api.AssetCreationsResponse_": {
|
|
64132
|
-
previousPageCursor?: string;
|
|
64133
|
-
nextPageCursor?: string;
|
|
64134
|
-
data?: components["schemas"]["Roblox.ItemConfiguration.Api.AssetCreationsResponse"][];
|
|
64135
|
-
};
|
|
64136
61872
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Trades.Api.TradeResponse_": {
|
|
64137
61873
|
previousPageCursor?: string;
|
|
64138
61874
|
nextPageCursor?: string;
|
|
@@ -64596,12 +62332,6 @@ export interface components {
|
|
|
64596
62332
|
/** @description The config entry value for this variant. Required for non-`IsBaseline` variants. */
|
|
64597
62333
|
configEntry?: components["schemas"]["ExperimentConfigEntry"] | null;
|
|
64598
62334
|
};
|
|
64599
|
-
SkinnyUserResponse: {
|
|
64600
|
-
/** Format: int64 */
|
|
64601
|
-
id?: number;
|
|
64602
|
-
name?: string | null;
|
|
64603
|
-
displayName?: string | null;
|
|
64604
|
-
};
|
|
64605
62335
|
/** @description Takes a new snapshot for the given experience. */
|
|
64606
62336
|
SnapshotDataStoresRequest: Record<string, never>;
|
|
64607
62337
|
/**
|
|
@@ -64695,6 +62425,33 @@ export interface components {
|
|
|
64695
62425
|
key?: string | null;
|
|
64696
62426
|
value?: string[] | null;
|
|
64697
62427
|
};
|
|
62428
|
+
/**
|
|
62429
|
+
* @description Part of the ServerManagementService.V2.Models.GameServerLog and ServerManagementService.V2.Models.ClientLog response objects.
|
|
62430
|
+
* Representing the metadata for a single frame in a structured stack trace.
|
|
62431
|
+
*/
|
|
62432
|
+
StructuredStackFrame: {
|
|
62433
|
+
/**
|
|
62434
|
+
* Format: int32
|
|
62435
|
+
* @description The line number where the error occurred.
|
|
62436
|
+
*/
|
|
62437
|
+
line?: number;
|
|
62438
|
+
/** @description The name of the function in which the error occurred. */
|
|
62439
|
+
function?: string | null;
|
|
62440
|
+
/** @description The data model path to the script where the error occurred. */
|
|
62441
|
+
scriptPath?: string | null;
|
|
62442
|
+
/**
|
|
62443
|
+
* @description The unique id for the script where the error occurred.
|
|
62444
|
+
* Will be null for frames where the code was from ```loadScript``` or ```require(assetId)```.
|
|
62445
|
+
* If ServerManagementService.V2.Models.StructuredStackFrame.IsDynamic is true, this will be a dynamic id that does not refer to a script in the studio Data Model.
|
|
62446
|
+
*/
|
|
62447
|
+
scriptUniqueId?: string | null;
|
|
62448
|
+
/**
|
|
62449
|
+
* @description Identifies whether the ServerManagementService.V2.Models.StructuredStackFrame.ScriptUniqueId refers to a script that exists in the Studio Data Model.
|
|
62450
|
+
* If this is true, then the script that generated the error was copied at runtime.
|
|
62451
|
+
* This includes Starter scripts (e.g. StarterGui, StarterPack, StarterPlayerScripts, StarterCharacterScripts).
|
|
62452
|
+
*/
|
|
62453
|
+
isDynamic?: boolean | null;
|
|
62454
|
+
};
|
|
64698
62455
|
/** @enum {string} */
|
|
64699
62456
|
SubjectType: "Invalid" | "User" | "Group" | "GroupRoleset" | "All" | "Universe";
|
|
64700
62457
|
/**
|
|
@@ -69850,23 +67607,23 @@ export interface operations {
|
|
|
69850
67607
|
query?: {
|
|
69851
67608
|
/**
|
|
69852
67609
|
* @description The maximum number of inventory items to return. The service might return
|
|
69853
|
-
*
|
|
69854
|
-
*
|
|
67610
|
+
* fewer than this value. If unspecified, at most 10 inventory items are
|
|
67611
|
+
* returned. The maximum value is 100 and higher values are set to 100.
|
|
69855
67612
|
*/
|
|
69856
67613
|
maxPageSize?: number;
|
|
69857
67614
|
/**
|
|
69858
67615
|
* @description A page token, received from a previous call, to retrieve a subsequent page.
|
|
69859
67616
|
*
|
|
69860
|
-
*
|
|
69861
|
-
*
|
|
67617
|
+
* When paginating, all other parameters provided to the subsequent call must
|
|
67618
|
+
* match the call that provided the page token.
|
|
69862
67619
|
*/
|
|
69863
67620
|
pageToken?: string;
|
|
69864
67621
|
/**
|
|
69865
67622
|
* @description This field may be set in order to filter the resources returned.
|
|
69866
67623
|
*
|
|
69867
|
-
*
|
|
69868
|
-
*
|
|
69869
|
-
*
|
|
67624
|
+
* See the
|
|
67625
|
+
* [filtering](/cloud/reference/patterns#list-inventory-items)
|
|
67626
|
+
* documentation for more information.
|
|
69870
67627
|
*/
|
|
69871
67628
|
filter?: string;
|
|
69872
67629
|
};
|
|
@@ -69879,7 +67636,7 @@ export interface operations {
|
|
|
69879
67636
|
};
|
|
69880
67637
|
requestBody?: never;
|
|
69881
67638
|
responses: {
|
|
69882
|
-
/** @description
|
|
67639
|
+
/** @description Success */
|
|
69883
67640
|
200: {
|
|
69884
67641
|
headers: {
|
|
69885
67642
|
[name: string]: unknown;
|
|
@@ -74106,34 +71863,6 @@ export interface operations {
|
|
|
74106
71863
|
};
|
|
74107
71864
|
};
|
|
74108
71865
|
};
|
|
74109
|
-
PrivateServers_CreatePrivateServer: {
|
|
74110
|
-
parameters: {
|
|
74111
|
-
query?: never;
|
|
74112
|
-
header?: never;
|
|
74113
|
-
path: {
|
|
74114
|
-
universeId: number;
|
|
74115
|
-
};
|
|
74116
|
-
cookie?: never;
|
|
74117
|
-
};
|
|
74118
|
-
requestBody?: {
|
|
74119
|
-
content: {
|
|
74120
|
-
"application/json": components["schemas"]["CreatePrivateServerRequest"];
|
|
74121
|
-
"text/json": components["schemas"]["CreatePrivateServerRequest"];
|
|
74122
|
-
"application/*+json": components["schemas"]["CreatePrivateServerRequest"];
|
|
74123
|
-
};
|
|
74124
|
-
};
|
|
74125
|
-
responses: {
|
|
74126
|
-
/** @description Success */
|
|
74127
|
-
200: {
|
|
74128
|
-
headers: {
|
|
74129
|
-
[name: string]: unknown;
|
|
74130
|
-
};
|
|
74131
|
-
content: {
|
|
74132
|
-
"application/json": components["schemas"]["PrivateServersApi.GameServerResponse"];
|
|
74133
|
-
};
|
|
74134
|
-
};
|
|
74135
|
-
};
|
|
74136
|
-
};
|
|
74137
71866
|
Voting_MultiGetGameVoteStatus: {
|
|
74138
71867
|
parameters: {
|
|
74139
71868
|
query?: {
|
|
@@ -74328,204 +72057,6 @@ export interface operations {
|
|
|
74328
72057
|
};
|
|
74329
72058
|
};
|
|
74330
72059
|
};
|
|
74331
|
-
PrivateServers_PrivateServersEnabledInUniverse: {
|
|
74332
|
-
parameters: {
|
|
74333
|
-
query?: never;
|
|
74334
|
-
header?: never;
|
|
74335
|
-
path: {
|
|
74336
|
-
universeId: number;
|
|
74337
|
-
};
|
|
74338
|
-
cookie?: never;
|
|
74339
|
-
};
|
|
74340
|
-
requestBody?: never;
|
|
74341
|
-
responses: {
|
|
74342
|
-
/** @description Success */
|
|
74343
|
-
200: {
|
|
74344
|
-
headers: {
|
|
74345
|
-
[name: string]: unknown;
|
|
74346
|
-
};
|
|
74347
|
-
content: {
|
|
74348
|
-
"application/json": components["schemas"]["PrivateServersEnabledInUniverseResponse"];
|
|
74349
|
-
};
|
|
74350
|
-
};
|
|
74351
|
-
};
|
|
74352
|
-
};
|
|
74353
|
-
PrivateServers_GetMyPrivateServers: {
|
|
74354
|
-
parameters: {
|
|
74355
|
-
query?: {
|
|
74356
|
-
privateServersTab?: components["schemas"]["PrivateServersTab"];
|
|
74357
|
-
itemsPerPage?: number;
|
|
74358
|
-
cursor?: string;
|
|
74359
|
-
};
|
|
74360
|
-
header?: never;
|
|
74361
|
-
path?: never;
|
|
74362
|
-
cookie?: never;
|
|
74363
|
-
};
|
|
74364
|
-
requestBody?: never;
|
|
74365
|
-
responses: {
|
|
74366
|
-
/** @description Success */
|
|
74367
|
-
200: {
|
|
74368
|
-
headers: {
|
|
74369
|
-
[name: string]: unknown;
|
|
74370
|
-
};
|
|
74371
|
-
content: {
|
|
74372
|
-
"application/json": components["schemas"]["MyPrivateServersResponse"];
|
|
74373
|
-
};
|
|
74374
|
-
};
|
|
74375
|
-
};
|
|
74376
|
-
};
|
|
74377
|
-
PrivateServers_CanInviteUser: {
|
|
74378
|
-
parameters: {
|
|
74379
|
-
query?: never;
|
|
74380
|
-
header?: never;
|
|
74381
|
-
path: {
|
|
74382
|
-
userId: number;
|
|
74383
|
-
};
|
|
74384
|
-
cookie?: never;
|
|
74385
|
-
};
|
|
74386
|
-
requestBody?: never;
|
|
74387
|
-
responses: {
|
|
74388
|
-
/** @description Success */
|
|
74389
|
-
200: {
|
|
74390
|
-
headers: {
|
|
74391
|
-
[name: string]: unknown;
|
|
74392
|
-
};
|
|
74393
|
-
content: {
|
|
74394
|
-
"application/json": components["schemas"]["CanInviteUserResponse"];
|
|
74395
|
-
};
|
|
74396
|
-
};
|
|
74397
|
-
};
|
|
74398
|
-
};
|
|
74399
|
-
"PrivateServersApi.PrivateServers_GetMyPrivateServers": {
|
|
74400
|
-
parameters: {
|
|
74401
|
-
query?: {
|
|
74402
|
-
privateServersTab?: components["schemas"]["PrivateServersTab"];
|
|
74403
|
-
itemsPerPage?: number;
|
|
74404
|
-
cursor?: string;
|
|
74405
|
-
};
|
|
74406
|
-
header?: never;
|
|
74407
|
-
path?: never;
|
|
74408
|
-
cookie?: never;
|
|
74409
|
-
};
|
|
74410
|
-
requestBody?: never;
|
|
74411
|
-
responses: {
|
|
74412
|
-
/** @description Success */
|
|
74413
|
-
200: {
|
|
74414
|
-
headers: {
|
|
74415
|
-
[name: string]: unknown;
|
|
74416
|
-
};
|
|
74417
|
-
content: {
|
|
74418
|
-
"application/json": components["schemas"]["MyPrivateServersResponse"];
|
|
74419
|
-
};
|
|
74420
|
-
};
|
|
74421
|
-
};
|
|
74422
|
-
};
|
|
74423
|
-
PrivateServers_GetPrivateServer: {
|
|
74424
|
-
parameters: {
|
|
74425
|
-
query?: never;
|
|
74426
|
-
header?: never;
|
|
74427
|
-
path: {
|
|
74428
|
-
id: number;
|
|
74429
|
-
};
|
|
74430
|
-
cookie?: never;
|
|
74431
|
-
};
|
|
74432
|
-
requestBody?: never;
|
|
74433
|
-
responses: {
|
|
74434
|
-
/** @description Success */
|
|
74435
|
-
200: {
|
|
74436
|
-
headers: {
|
|
74437
|
-
[name: string]: unknown;
|
|
74438
|
-
};
|
|
74439
|
-
content: {
|
|
74440
|
-
"application/json": components["schemas"]["PrivateServerResponse"];
|
|
74441
|
-
};
|
|
74442
|
-
};
|
|
74443
|
-
};
|
|
74444
|
-
};
|
|
74445
|
-
PrivateServers_UpdatePrivateServer: {
|
|
74446
|
-
parameters: {
|
|
74447
|
-
query?: never;
|
|
74448
|
-
header?: never;
|
|
74449
|
-
path: {
|
|
74450
|
-
id: number;
|
|
74451
|
-
};
|
|
74452
|
-
cookie?: never;
|
|
74453
|
-
};
|
|
74454
|
-
requestBody?: {
|
|
74455
|
-
content: {
|
|
74456
|
-
"application/json": components["schemas"]["PrivateServerUpdateRequest"];
|
|
74457
|
-
"text/json": components["schemas"]["PrivateServerUpdateRequest"];
|
|
74458
|
-
"application/*+json": components["schemas"]["PrivateServerUpdateRequest"];
|
|
74459
|
-
};
|
|
74460
|
-
};
|
|
74461
|
-
responses: {
|
|
74462
|
-
/** @description Success */
|
|
74463
|
-
200: {
|
|
74464
|
-
headers: {
|
|
74465
|
-
[name: string]: unknown;
|
|
74466
|
-
};
|
|
74467
|
-
content: {
|
|
74468
|
-
"application/json": components["schemas"]["PrivateServerResponse"];
|
|
74469
|
-
};
|
|
74470
|
-
};
|
|
74471
|
-
};
|
|
74472
|
-
};
|
|
74473
|
-
PrivateServers_UpdatePrivateServerPermissions: {
|
|
74474
|
-
parameters: {
|
|
74475
|
-
query?: never;
|
|
74476
|
-
header?: never;
|
|
74477
|
-
path: {
|
|
74478
|
-
id: number;
|
|
74479
|
-
};
|
|
74480
|
-
cookie?: never;
|
|
74481
|
-
};
|
|
74482
|
-
requestBody?: {
|
|
74483
|
-
content: {
|
|
74484
|
-
"application/json": components["schemas"]["PrivateServerUpdatePermissionsRequest"];
|
|
74485
|
-
"text/json": components["schemas"]["PrivateServerUpdatePermissionsRequest"];
|
|
74486
|
-
"application/*+json": components["schemas"]["PrivateServerUpdatePermissionsRequest"];
|
|
74487
|
-
};
|
|
74488
|
-
};
|
|
74489
|
-
responses: {
|
|
74490
|
-
/** @description Success */
|
|
74491
|
-
200: {
|
|
74492
|
-
headers: {
|
|
74493
|
-
[name: string]: unknown;
|
|
74494
|
-
};
|
|
74495
|
-
content: {
|
|
74496
|
-
"application/json": components["schemas"]["PrivateServerPermissionsResponse"];
|
|
74497
|
-
};
|
|
74498
|
-
};
|
|
74499
|
-
};
|
|
74500
|
-
};
|
|
74501
|
-
PrivateServers_UpdatePrivateServerSubscription: {
|
|
74502
|
-
parameters: {
|
|
74503
|
-
query?: never;
|
|
74504
|
-
header?: never;
|
|
74505
|
-
path: {
|
|
74506
|
-
id: number;
|
|
74507
|
-
};
|
|
74508
|
-
cookie?: never;
|
|
74509
|
-
};
|
|
74510
|
-
requestBody?: {
|
|
74511
|
-
content: {
|
|
74512
|
-
"application/json": components["schemas"]["PrivateServerUpdateSubscriptionRequest"];
|
|
74513
|
-
"text/json": components["schemas"]["PrivateServerUpdateSubscriptionRequest"];
|
|
74514
|
-
"application/*+json": components["schemas"]["PrivateServerUpdateSubscriptionRequest"];
|
|
74515
|
-
};
|
|
74516
|
-
};
|
|
74517
|
-
responses: {
|
|
74518
|
-
/** @description Success */
|
|
74519
|
-
200: {
|
|
74520
|
-
headers: {
|
|
74521
|
-
[name: string]: unknown;
|
|
74522
|
-
};
|
|
74523
|
-
content: {
|
|
74524
|
-
"application/json": components["schemas"]["PrivateServerSubscriptionResponse"];
|
|
74525
|
-
};
|
|
74526
|
-
};
|
|
74527
|
-
};
|
|
74528
|
-
};
|
|
74529
72060
|
TransactionHistory_GetGroupTransactions: {
|
|
74530
72061
|
parameters: {
|
|
74531
72062
|
query?: {
|