@jacobhumston/roblox-openapi-ts 1.0.54 → 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 +164 -2650
- 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;
|
|
@@ -12054,52 +11901,10 @@ export interface paths {
|
|
|
12054
11901
|
"Accept-Encoding": string;
|
|
12055
11902
|
"Roblox-Place-Id": number;
|
|
12056
11903
|
AssetType: string;
|
|
12057
|
-
Accept: string;
|
|
12058
11904
|
AssetFormat: string;
|
|
12059
11905
|
"Roblox-AssetFormat": string;
|
|
12060
|
-
|
|
12061
|
-
};
|
|
12062
|
-
path?: never;
|
|
12063
|
-
cookie?: never;
|
|
12064
|
-
};
|
|
12065
|
-
requestBody?: never;
|
|
12066
|
-
responses: {
|
|
12067
|
-
/** @description OK */
|
|
12068
|
-
200: {
|
|
12069
|
-
headers: {
|
|
12070
|
-
[name: string]: unknown;
|
|
12071
|
-
};
|
|
12072
|
-
content?: never;
|
|
12073
|
-
};
|
|
12074
|
-
};
|
|
12075
|
-
};
|
|
12076
|
-
put?: never;
|
|
12077
|
-
post?: never;
|
|
12078
|
-
delete?: never;
|
|
12079
|
-
options?: never;
|
|
12080
|
-
head?: never;
|
|
12081
|
-
patch?: never;
|
|
12082
|
-
trace?: never;
|
|
12083
|
-
};
|
|
12084
|
-
"/v1/asset-quotas": {
|
|
12085
|
-
parameters: {
|
|
12086
|
-
query?: never;
|
|
12087
|
-
header?: never;
|
|
12088
|
-
path?: never;
|
|
12089
|
-
cookie?: never;
|
|
12090
|
-
};
|
|
12091
|
-
/** List asset quotas of the given resource type and asset type. */
|
|
12092
|
-
get: {
|
|
12093
|
-
parameters: {
|
|
12094
|
-
query: {
|
|
12095
|
-
/** @description Resource type of the asset quota */
|
|
12096
|
-
resourceType: string;
|
|
12097
|
-
/** @description Asset type of the asset quota */
|
|
12098
|
-
assetType: string;
|
|
12099
|
-
/** @description Use dummy data for testing. This is for internal use only */
|
|
12100
|
-
useDummyData?: boolean;
|
|
11906
|
+
"Roblox-Usage-Context"?: string;
|
|
12101
11907
|
};
|
|
12102
|
-
header?: never;
|
|
12103
11908
|
path?: never;
|
|
12104
11909
|
cookie?: never;
|
|
12105
11910
|
};
|
|
@@ -12107,33 +11912,6 @@ export interface paths {
|
|
|
12107
11912
|
responses: {
|
|
12108
11913
|
/** @description OK */
|
|
12109
11914
|
200: {
|
|
12110
|
-
headers: {
|
|
12111
|
-
[name: string]: unknown;
|
|
12112
|
-
};
|
|
12113
|
-
content: {
|
|
12114
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.AssetQuotasResponse"];
|
|
12115
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.AssetQuotasResponse"];
|
|
12116
|
-
};
|
|
12117
|
-
};
|
|
12118
|
-
/**
|
|
12119
|
-
* @description 7: The asset type is not appropriate for this request.
|
|
12120
|
-
* 8: The resource type is not appropriate for this request.
|
|
12121
|
-
*/
|
|
12122
|
-
400: {
|
|
12123
|
-
headers: {
|
|
12124
|
-
[name: string]: unknown;
|
|
12125
|
-
};
|
|
12126
|
-
content?: never;
|
|
12127
|
-
};
|
|
12128
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
12129
|
-
401: {
|
|
12130
|
-
headers: {
|
|
12131
|
-
[name: string]: unknown;
|
|
12132
|
-
};
|
|
12133
|
-
content?: never;
|
|
12134
|
-
};
|
|
12135
|
-
/** @description 0: Reserved for base level errors. Do not use in your endpoint directly, do not document. */
|
|
12136
|
-
500: {
|
|
12137
11915
|
headers: {
|
|
12138
11916
|
[name: string]: unknown;
|
|
12139
11917
|
};
|
|
@@ -12196,88 +11974,6 @@ export interface paths {
|
|
|
12196
11974
|
patch?: never;
|
|
12197
11975
|
trace?: never;
|
|
12198
11976
|
};
|
|
12199
|
-
"/v1/asset-to-category": {
|
|
12200
|
-
parameters: {
|
|
12201
|
-
query?: never;
|
|
12202
|
-
header?: never;
|
|
12203
|
-
path?: never;
|
|
12204
|
-
cookie?: never;
|
|
12205
|
-
};
|
|
12206
|
-
/** 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. */
|
|
12207
|
-
get: {
|
|
12208
|
-
parameters: {
|
|
12209
|
-
query?: never;
|
|
12210
|
-
header?: never;
|
|
12211
|
-
path?: never;
|
|
12212
|
-
cookie?: never;
|
|
12213
|
-
};
|
|
12214
|
-
requestBody?: never;
|
|
12215
|
-
responses: {
|
|
12216
|
-
/** @description OK */
|
|
12217
|
-
200: {
|
|
12218
|
-
headers: {
|
|
12219
|
-
[name: string]: unknown;
|
|
12220
|
-
};
|
|
12221
|
-
content: {
|
|
12222
|
-
"application/json": {
|
|
12223
|
-
[key: string]: number;
|
|
12224
|
-
};
|
|
12225
|
-
"text/json": {
|
|
12226
|
-
[key: string]: number;
|
|
12227
|
-
};
|
|
12228
|
-
};
|
|
12229
|
-
};
|
|
12230
|
-
};
|
|
12231
|
-
};
|
|
12232
|
-
put?: never;
|
|
12233
|
-
post?: never;
|
|
12234
|
-
delete?: never;
|
|
12235
|
-
options?: never;
|
|
12236
|
-
head?: never;
|
|
12237
|
-
patch?: never;
|
|
12238
|
-
trace?: never;
|
|
12239
|
-
};
|
|
12240
|
-
"/v1/asset-to-subcategory": {
|
|
12241
|
-
parameters: {
|
|
12242
|
-
query?: never;
|
|
12243
|
-
header?: never;
|
|
12244
|
-
path?: never;
|
|
12245
|
-
cookie?: never;
|
|
12246
|
-
};
|
|
12247
|
-
/** 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. */
|
|
12248
|
-
get: {
|
|
12249
|
-
parameters: {
|
|
12250
|
-
query?: never;
|
|
12251
|
-
header?: never;
|
|
12252
|
-
path?: never;
|
|
12253
|
-
cookie?: never;
|
|
12254
|
-
};
|
|
12255
|
-
requestBody?: never;
|
|
12256
|
-
responses: {
|
|
12257
|
-
/** @description OK */
|
|
12258
|
-
200: {
|
|
12259
|
-
headers: {
|
|
12260
|
-
[name: string]: unknown;
|
|
12261
|
-
};
|
|
12262
|
-
content: {
|
|
12263
|
-
"application/json": {
|
|
12264
|
-
[key: string]: number;
|
|
12265
|
-
};
|
|
12266
|
-
"text/json": {
|
|
12267
|
-
[key: string]: number;
|
|
12268
|
-
};
|
|
12269
|
-
};
|
|
12270
|
-
};
|
|
12271
|
-
};
|
|
12272
|
-
};
|
|
12273
|
-
put?: never;
|
|
12274
|
-
post?: never;
|
|
12275
|
-
delete?: never;
|
|
12276
|
-
options?: never;
|
|
12277
|
-
head?: never;
|
|
12278
|
-
patch?: never;
|
|
12279
|
-
trace?: never;
|
|
12280
|
-
};
|
|
12281
11977
|
"/v1/assetId/{assetId}": {
|
|
12282
11978
|
parameters: {
|
|
12283
11979
|
query?: never;
|
|
@@ -12298,15 +11994,14 @@ export interface paths {
|
|
|
12298
11994
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
12299
11995
|
contentRepresentationPriorityList?: string;
|
|
12300
11996
|
accessContext?: string;
|
|
12301
|
-
usageContext?: number;
|
|
12302
11997
|
};
|
|
12303
11998
|
header: {
|
|
12304
11999
|
"Accept-Encoding": string;
|
|
12305
12000
|
"Roblox-Place-Id": number;
|
|
12306
12001
|
AssetType: string;
|
|
12307
|
-
Accept: string;
|
|
12308
12002
|
AssetFormat: string;
|
|
12309
12003
|
"Roblox-AssetFormat": string;
|
|
12004
|
+
"Roblox-Usage-Context"?: string;
|
|
12310
12005
|
};
|
|
12311
12006
|
path: {
|
|
12312
12007
|
/** @description The ID of the asset to retrieve. */
|
|
@@ -12353,15 +12048,14 @@ export interface paths {
|
|
|
12353
12048
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
12354
12049
|
contentRepresentationPriorityList?: string;
|
|
12355
12050
|
accessContext?: string;
|
|
12356
|
-
usageContext?: number;
|
|
12357
12051
|
};
|
|
12358
12052
|
header: {
|
|
12359
12053
|
"Accept-Encoding": string;
|
|
12360
12054
|
"Roblox-Place-Id": number;
|
|
12361
12055
|
AssetType: string;
|
|
12362
|
-
Accept: string;
|
|
12363
12056
|
AssetFormat: string;
|
|
12364
12057
|
"Roblox-AssetFormat": string;
|
|
12058
|
+
"Roblox-Usage-Context"?: string;
|
|
12365
12059
|
};
|
|
12366
12060
|
path: {
|
|
12367
12061
|
/** @description The ID of the asset to retrieve. */
|
|
@@ -12522,7 +12216,6 @@ export interface paths {
|
|
|
12522
12216
|
query?: never;
|
|
12523
12217
|
header: {
|
|
12524
12218
|
"Roblox-Place-Id": number;
|
|
12525
|
-
Accept: string;
|
|
12526
12219
|
"Roblox-Browser-Asset-Request": string;
|
|
12527
12220
|
};
|
|
12528
12221
|
path?: never;
|
|
@@ -12550,50 +12243,6 @@ export interface paths {
|
|
|
12550
12243
|
patch?: never;
|
|
12551
12244
|
trace?: never;
|
|
12552
12245
|
};
|
|
12553
|
-
"/v1/assets/voting": {
|
|
12554
|
-
parameters: {
|
|
12555
|
-
query?: never;
|
|
12556
|
-
header?: never;
|
|
12557
|
-
path?: never;
|
|
12558
|
-
cookie?: never;
|
|
12559
|
-
};
|
|
12560
|
-
/**
|
|
12561
|
-
* Gets the voting information of the given assets
|
|
12562
|
-
* @deprecated
|
|
12563
|
-
* @description Please use toolbox service to get asset voting information.
|
|
12564
|
-
*/
|
|
12565
|
-
get: {
|
|
12566
|
-
parameters: {
|
|
12567
|
-
query: {
|
|
12568
|
-
/** @description The ids of the Roblox.Platform.Assets.IAsset. */
|
|
12569
|
-
assetIds: number[];
|
|
12570
|
-
};
|
|
12571
|
-
header?: never;
|
|
12572
|
-
path?: never;
|
|
12573
|
-
cookie?: never;
|
|
12574
|
-
};
|
|
12575
|
-
requestBody?: never;
|
|
12576
|
-
responses: {
|
|
12577
|
-
/** @description OK */
|
|
12578
|
-
200: {
|
|
12579
|
-
headers: {
|
|
12580
|
-
[name: string]: unknown;
|
|
12581
|
-
};
|
|
12582
|
-
content: {
|
|
12583
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.Response.AssetVotingModel_"];
|
|
12584
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.Response.AssetVotingModel_"];
|
|
12585
|
-
};
|
|
12586
|
-
};
|
|
12587
|
-
};
|
|
12588
|
-
};
|
|
12589
|
-
put?: never;
|
|
12590
|
-
post?: never;
|
|
12591
|
-
delete?: never;
|
|
12592
|
-
options?: never;
|
|
12593
|
-
head?: never;
|
|
12594
|
-
patch?: never;
|
|
12595
|
-
trace?: never;
|
|
12596
|
-
};
|
|
12597
12246
|
"/v1/assets/{assetId}/bundles": {
|
|
12598
12247
|
parameters: {
|
|
12599
12248
|
query?: never;
|
|
@@ -12650,172 +12299,6 @@ export interface paths {
|
|
|
12650
12299
|
patch?: never;
|
|
12651
12300
|
trace?: never;
|
|
12652
12301
|
};
|
|
12653
|
-
"/v1/audio": {
|
|
12654
|
-
parameters: {
|
|
12655
|
-
query?: never;
|
|
12656
|
-
header?: never;
|
|
12657
|
-
path?: never;
|
|
12658
|
-
cookie?: never;
|
|
12659
|
-
};
|
|
12660
|
-
get?: never;
|
|
12661
|
-
put?: never;
|
|
12662
|
-
/** Published an audio file and returns the new asset info. */
|
|
12663
|
-
post: {
|
|
12664
|
-
parameters: {
|
|
12665
|
-
query?: never;
|
|
12666
|
-
header?: never;
|
|
12667
|
-
path?: never;
|
|
12668
|
-
cookie?: never;
|
|
12669
|
-
};
|
|
12670
|
-
/** @description The file upload request body. Roblox.Publish.Api.UploadAudioRequest */
|
|
12671
|
-
requestBody: {
|
|
12672
|
-
content: {
|
|
12673
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.UploadAudioRequest"];
|
|
12674
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.UploadAudioRequest"];
|
|
12675
|
-
};
|
|
12676
|
-
};
|
|
12677
|
-
responses: {
|
|
12678
|
-
/** @description OK */
|
|
12679
|
-
200: {
|
|
12680
|
-
headers: {
|
|
12681
|
-
[name: string]: unknown;
|
|
12682
|
-
};
|
|
12683
|
-
content: {
|
|
12684
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.PublishAudioResponse"];
|
|
12685
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.PublishAudioResponse"];
|
|
12686
|
-
};
|
|
12687
|
-
};
|
|
12688
|
-
/**
|
|
12689
|
-
* @description 3: The request did not contain a file to be uploaded.
|
|
12690
|
-
* 4: The file in the request is too large.
|
|
12691
|
-
* 5: The duration of the audio file is too long.
|
|
12692
|
-
* 7: Failed to parse the file.
|
|
12693
|
-
* 8: The file type is not supported.
|
|
12694
|
-
* 9: The file is corrupted
|
|
12695
|
-
* 11: Missing permissions to spend group funds.
|
|
12696
|
-
* 14: The user/group does not have suffiecient funds to publish.
|
|
12697
|
-
* 14: The user/group does not have suffiecient funds to publish.
|
|
12698
|
-
* 15: The audio file has already been reviewed and rejected.
|
|
12699
|
-
* 18: Too many requests. Try again later.
|
|
12700
|
-
* 20: Error while trying to purchase the product.
|
|
12701
|
-
* 22: The file size estimation error was greater than the acceptable margin of error.
|
|
12702
|
-
* 23: The duration estimation error was greater than the acceptable margin of error.
|
|
12703
|
-
* 24: Asset privacy is invalid.
|
|
12704
|
-
* 29: Invalid argument in the request.
|
|
12705
|
-
*/
|
|
12706
|
-
400: {
|
|
12707
|
-
headers: {
|
|
12708
|
-
[name: string]: unknown;
|
|
12709
|
-
};
|
|
12710
|
-
content?: never;
|
|
12711
|
-
};
|
|
12712
|
-
/**
|
|
12713
|
-
* @description 0: Authorization has been denied for this request.
|
|
12714
|
-
* 1: The request did not include an authorization.
|
|
12715
|
-
*/
|
|
12716
|
-
401: {
|
|
12717
|
-
headers: {
|
|
12718
|
-
[name: string]: unknown;
|
|
12719
|
-
};
|
|
12720
|
-
content?: never;
|
|
12721
|
-
};
|
|
12722
|
-
/** @description 0: Token Validation Failed */
|
|
12723
|
-
403: {
|
|
12724
|
-
headers: {
|
|
12725
|
-
[name: string]: unknown;
|
|
12726
|
-
};
|
|
12727
|
-
content?: never;
|
|
12728
|
-
};
|
|
12729
|
-
/** @description 19: Asset creation was unavailable. Please try again. */
|
|
12730
|
-
500: {
|
|
12731
|
-
headers: {
|
|
12732
|
-
[name: string]: unknown;
|
|
12733
|
-
};
|
|
12734
|
-
content?: never;
|
|
12735
|
-
};
|
|
12736
|
-
};
|
|
12737
|
-
};
|
|
12738
|
-
delete?: never;
|
|
12739
|
-
options?: never;
|
|
12740
|
-
head?: never;
|
|
12741
|
-
patch?: never;
|
|
12742
|
-
trace?: never;
|
|
12743
|
-
};
|
|
12744
|
-
"/v1/audio/verify": {
|
|
12745
|
-
parameters: {
|
|
12746
|
-
query?: never;
|
|
12747
|
-
header?: never;
|
|
12748
|
-
path?: never;
|
|
12749
|
-
cookie?: never;
|
|
12750
|
-
};
|
|
12751
|
-
get?: never;
|
|
12752
|
-
put?: never;
|
|
12753
|
-
/** Verifies an audio file and returns a product that you can purchase to publish the audio file. */
|
|
12754
|
-
post: {
|
|
12755
|
-
parameters: {
|
|
12756
|
-
query?: never;
|
|
12757
|
-
header?: never;
|
|
12758
|
-
path?: never;
|
|
12759
|
-
cookie?: never;
|
|
12760
|
-
};
|
|
12761
|
-
/** @description The verify audio request body. Roblox.Publish.Api.VerifyAudioRequest */
|
|
12762
|
-
requestBody: {
|
|
12763
|
-
content: {
|
|
12764
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioRequest"];
|
|
12765
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioRequest"];
|
|
12766
|
-
};
|
|
12767
|
-
};
|
|
12768
|
-
responses: {
|
|
12769
|
-
/** @description OK */
|
|
12770
|
-
200: {
|
|
12771
|
-
headers: {
|
|
12772
|
-
[name: string]: unknown;
|
|
12773
|
-
};
|
|
12774
|
-
content: {
|
|
12775
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioResponse"];
|
|
12776
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.VerifyAudioResponse"];
|
|
12777
|
-
};
|
|
12778
|
-
};
|
|
12779
|
-
/**
|
|
12780
|
-
* @description 3: The request did not contain a file to be uploaded.
|
|
12781
|
-
* 4: The file in the request is too large.
|
|
12782
|
-
* 5: The duration of the audio file is too long.
|
|
12783
|
-
* 7: Failed to parse the file.
|
|
12784
|
-
* 8: The file type is not supported.
|
|
12785
|
-
* 9: The file is corrupted
|
|
12786
|
-
* 18: Too many requests. Try again later.
|
|
12787
|
-
*/
|
|
12788
|
-
400: {
|
|
12789
|
-
headers: {
|
|
12790
|
-
[name: string]: unknown;
|
|
12791
|
-
};
|
|
12792
|
-
content?: never;
|
|
12793
|
-
};
|
|
12794
|
-
/**
|
|
12795
|
-
* @description 0: Authorization has been denied for this request.
|
|
12796
|
-
* 1: The request did not include an authorization.
|
|
12797
|
-
*/
|
|
12798
|
-
401: {
|
|
12799
|
-
headers: {
|
|
12800
|
-
[name: string]: unknown;
|
|
12801
|
-
};
|
|
12802
|
-
content?: never;
|
|
12803
|
-
};
|
|
12804
|
-
/** @description 0: Token Validation Failed */
|
|
12805
|
-
403: {
|
|
12806
|
-
headers: {
|
|
12807
|
-
[name: string]: unknown;
|
|
12808
|
-
};
|
|
12809
|
-
content?: never;
|
|
12810
|
-
};
|
|
12811
|
-
};
|
|
12812
|
-
};
|
|
12813
|
-
delete?: never;
|
|
12814
|
-
options?: never;
|
|
12815
|
-
head?: never;
|
|
12816
|
-
patch?: never;
|
|
12817
|
-
trace?: never;
|
|
12818
|
-
};
|
|
12819
12302
|
"/v1/auth/metadata": {
|
|
12820
12303
|
parameters: {
|
|
12821
12304
|
query?: never;
|
|
@@ -15169,63 +14652,6 @@ export interface paths {
|
|
|
15169
14652
|
patch?: never;
|
|
15170
14653
|
trace?: never;
|
|
15171
14654
|
};
|
|
15172
|
-
"/v1/bundles/{bundleId}/recommendations": {
|
|
15173
|
-
parameters: {
|
|
15174
|
-
query?: never;
|
|
15175
|
-
header?: never;
|
|
15176
|
-
path?: never;
|
|
15177
|
-
cookie?: never;
|
|
15178
|
-
};
|
|
15179
|
-
/**
|
|
15180
|
-
* Gets recommendations for a given bundle, bundleId of 0 returns randomized bundles
|
|
15181
|
-
* - Accepts both public and authenticated users.
|
|
15182
|
-
*/
|
|
15183
|
-
get: {
|
|
15184
|
-
parameters: {
|
|
15185
|
-
query?: {
|
|
15186
|
-
/** @description The number of recommended items to return. */
|
|
15187
|
-
numItems?: number;
|
|
15188
|
-
};
|
|
15189
|
-
header?: never;
|
|
15190
|
-
path: {
|
|
15191
|
-
bundleId: number;
|
|
15192
|
-
};
|
|
15193
|
-
cookie?: never;
|
|
15194
|
-
};
|
|
15195
|
-
requestBody?: never;
|
|
15196
|
-
responses: {
|
|
15197
|
-
/** @description OK */
|
|
15198
|
-
200: {
|
|
15199
|
-
headers: {
|
|
15200
|
-
[name: string]: unknown;
|
|
15201
|
-
};
|
|
15202
|
-
content: {
|
|
15203
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_"];
|
|
15204
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_"];
|
|
15205
|
-
};
|
|
15206
|
-
};
|
|
15207
|
-
/**
|
|
15208
|
-
* @description 1: Invalid bundle
|
|
15209
|
-
* 2: Error retrieving bundles
|
|
15210
|
-
* 3: Error getting bundle recommendations
|
|
15211
|
-
* 4: NumItems exceed maximum
|
|
15212
|
-
*/
|
|
15213
|
-
400: {
|
|
15214
|
-
headers: {
|
|
15215
|
-
[name: string]: unknown;
|
|
15216
|
-
};
|
|
15217
|
-
content?: never;
|
|
15218
|
-
};
|
|
15219
|
-
};
|
|
15220
|
-
};
|
|
15221
|
-
put?: never;
|
|
15222
|
-
post?: never;
|
|
15223
|
-
delete?: never;
|
|
15224
|
-
options?: never;
|
|
15225
|
-
head?: never;
|
|
15226
|
-
patch?: never;
|
|
15227
|
-
trace?: never;
|
|
15228
|
-
};
|
|
15229
14655
|
"/v1/catalog/items/details": {
|
|
15230
14656
|
parameters: {
|
|
15231
14657
|
query?: never;
|
|
@@ -15296,43 +14722,6 @@ export interface paths {
|
|
|
15296
14722
|
patch?: never;
|
|
15297
14723
|
trace?: never;
|
|
15298
14724
|
};
|
|
15299
|
-
"/v1/categories": {
|
|
15300
|
-
parameters: {
|
|
15301
|
-
query?: never;
|
|
15302
|
-
header?: never;
|
|
15303
|
-
path?: never;
|
|
15304
|
-
cookie?: never;
|
|
15305
|
-
};
|
|
15306
|
-
/** Lists Category Names and their Ids. */
|
|
15307
|
-
get: {
|
|
15308
|
-
parameters: {
|
|
15309
|
-
query?: never;
|
|
15310
|
-
header?: never;
|
|
15311
|
-
path?: never;
|
|
15312
|
-
cookie?: never;
|
|
15313
|
-
};
|
|
15314
|
-
requestBody?: never;
|
|
15315
|
-
responses: {
|
|
15316
|
-
/** @description OK */
|
|
15317
|
-
200: {
|
|
15318
|
-
headers: {
|
|
15319
|
-
[name: string]: unknown;
|
|
15320
|
-
};
|
|
15321
|
-
content: {
|
|
15322
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.CategoryModel"][];
|
|
15323
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.CategoryModel"][];
|
|
15324
|
-
};
|
|
15325
|
-
};
|
|
15326
|
-
};
|
|
15327
|
-
};
|
|
15328
|
-
put?: never;
|
|
15329
|
-
post?: never;
|
|
15330
|
-
delete?: never;
|
|
15331
|
-
options?: never;
|
|
15332
|
-
head?: never;
|
|
15333
|
-
patch?: never;
|
|
15334
|
-
trace?: never;
|
|
15335
|
-
};
|
|
15336
14725
|
"/v1/client-assertion": {
|
|
15337
14726
|
parameters: {
|
|
15338
14727
|
query?: never;
|
|
@@ -15598,29 +14987,26 @@ export interface paths {
|
|
|
15598
14987
|
patch?: never;
|
|
15599
14988
|
trace?: never;
|
|
15600
14989
|
};
|
|
15601
|
-
"/v1/
|
|
14990
|
+
"/v1/description": {
|
|
15602
14991
|
parameters: {
|
|
15603
14992
|
query?: never;
|
|
15604
14993
|
header?: never;
|
|
15605
14994
|
path?: never;
|
|
15606
14995
|
cookie?: never;
|
|
15607
14996
|
};
|
|
15608
|
-
|
|
15609
|
-
|
|
15610
|
-
|
|
15611
|
-
|
|
14997
|
+
/**
|
|
14998
|
+
* Get the user's description
|
|
14999
|
+
* @deprecated
|
|
15000
|
+
* @description Replaced by users.roblox.com/v1/description
|
|
15001
|
+
*/
|
|
15002
|
+
get: {
|
|
15612
15003
|
parameters: {
|
|
15613
15004
|
query?: never;
|
|
15614
15005
|
header?: never;
|
|
15615
15006
|
path?: never;
|
|
15616
15007
|
cookie?: never;
|
|
15617
15008
|
};
|
|
15618
|
-
requestBody
|
|
15619
|
-
content: {
|
|
15620
|
-
"application/json": components["schemas"]["Roblox.ItemConfiguration.Api.AssetCreationsDetailsRequest"];
|
|
15621
|
-
"text/json": components["schemas"]["Roblox.ItemConfiguration.Api.AssetCreationsDetailsRequest"];
|
|
15622
|
-
};
|
|
15623
|
-
};
|
|
15009
|
+
requestBody?: never;
|
|
15624
15010
|
responses: {
|
|
15625
15011
|
/** @description OK */
|
|
15626
15012
|
200: {
|
|
@@ -15628,14 +15014,11 @@ export interface paths {
|
|
|
15628
15014
|
[name: string]: unknown;
|
|
15629
15015
|
};
|
|
15630
15016
|
content: {
|
|
15631
|
-
"application/json": components["schemas"]["Roblox.
|
|
15632
|
-
"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"];
|
|
15633
15019
|
};
|
|
15634
15020
|
};
|
|
15635
|
-
/**
|
|
15636
|
-
* @description 1: Missing AssetIds parameters
|
|
15637
|
-
* 2: Invalid asset Ids
|
|
15638
|
-
*/
|
|
15021
|
+
/** @description 1: User not found. */
|
|
15639
15022
|
400: {
|
|
15640
15023
|
headers: {
|
|
15641
15024
|
[name: string]: unknown;
|
|
@@ -15649,66 +15032,28 @@ export interface paths {
|
|
|
15649
15032
|
};
|
|
15650
15033
|
content?: never;
|
|
15651
15034
|
};
|
|
15652
|
-
/** @description 0: Token Validation Failed */
|
|
15653
|
-
403: {
|
|
15654
|
-
headers: {
|
|
15655
|
-
[name: string]: unknown;
|
|
15656
|
-
};
|
|
15657
|
-
content?: never;
|
|
15658
|
-
};
|
|
15659
|
-
/** @description 3: Too many asset Ids */
|
|
15660
|
-
414: {
|
|
15661
|
-
headers: {
|
|
15662
|
-
[name: string]: unknown;
|
|
15663
|
-
};
|
|
15664
|
-
content?: never;
|
|
15665
|
-
};
|
|
15666
|
-
/** @description 9: Flood Limit Exceeded */
|
|
15667
|
-
429: {
|
|
15668
|
-
headers: {
|
|
15669
|
-
[name: string]: unknown;
|
|
15670
|
-
};
|
|
15671
|
-
content?: never;
|
|
15672
|
-
};
|
|
15673
|
-
/** @description 6: Service Unavailable */
|
|
15674
|
-
503: {
|
|
15675
|
-
headers: {
|
|
15676
|
-
[name: string]: unknown;
|
|
15677
|
-
};
|
|
15678
|
-
content?: never;
|
|
15679
|
-
};
|
|
15680
15035
|
};
|
|
15681
15036
|
};
|
|
15682
|
-
|
|
15683
|
-
|
|
15684
|
-
|
|
15685
|
-
|
|
15686
|
-
|
|
15687
|
-
|
|
15688
|
-
|
|
15689
|
-
parameters: {
|
|
15690
|
-
query?: never;
|
|
15691
|
-
header?: never;
|
|
15692
|
-
path?: never;
|
|
15693
|
-
cookie?: never;
|
|
15694
|
-
};
|
|
15695
|
-
/** Gets the user created asset information filtered by the given asset type. */
|
|
15696
|
-
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: {
|
|
15697
15044
|
parameters: {
|
|
15698
|
-
query
|
|
15699
|
-
assetType: string;
|
|
15700
|
-
isArchived?: boolean;
|
|
15701
|
-
groupId?: number;
|
|
15702
|
-
/** @description The number of results per request. */
|
|
15703
|
-
limit?: 10 | 25 | 50 | 100;
|
|
15704
|
-
/** @description The paging cursor for the previous or next page. */
|
|
15705
|
-
cursor?: string;
|
|
15706
|
-
};
|
|
15045
|
+
query?: never;
|
|
15707
15046
|
header?: never;
|
|
15708
15047
|
path?: never;
|
|
15709
15048
|
cookie?: never;
|
|
15710
15049
|
};
|
|
15711
|
-
|
|
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
|
+
};
|
|
15712
15057
|
responses: {
|
|
15713
15058
|
/** @description OK */
|
|
15714
15059
|
200: {
|
|
@@ -15716,14 +15061,11 @@ export interface paths {
|
|
|
15716
15061
|
[name: string]: unknown;
|
|
15717
15062
|
};
|
|
15718
15063
|
content: {
|
|
15719
|
-
"application/json": components["schemas"]["Roblox.
|
|
15720
|
-
"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"];
|
|
15721
15066
|
};
|
|
15722
15067
|
};
|
|
15723
|
-
/**
|
|
15724
|
-
* @description 5: Invalid assetType
|
|
15725
|
-
* 10: Invalid Asset Category
|
|
15726
|
-
*/
|
|
15068
|
+
/** @description 1: User not found. */
|
|
15727
15069
|
400: {
|
|
15728
15070
|
headers: {
|
|
15729
15071
|
[name: string]: unknown;
|
|
@@ -15737,24 +15079,21 @@ export interface paths {
|
|
|
15737
15079
|
};
|
|
15738
15080
|
content?: never;
|
|
15739
15081
|
};
|
|
15740
|
-
/**
|
|
15741
|
-
* @description 7: User does not have necessary permissions for group
|
|
15742
|
-
* 8: Asset type does not have necessary permissions for group
|
|
15743
|
-
*/
|
|
15082
|
+
/** @description 0: Token Validation Failed */
|
|
15744
15083
|
403: {
|
|
15745
15084
|
headers: {
|
|
15746
15085
|
[name: string]: unknown;
|
|
15747
15086
|
};
|
|
15748
15087
|
content?: never;
|
|
15749
15088
|
};
|
|
15750
|
-
/** @description
|
|
15751
|
-
|
|
15089
|
+
/** @description 0: An unknown error occured. */
|
|
15090
|
+
500: {
|
|
15752
15091
|
headers: {
|
|
15753
15092
|
[name: string]: unknown;
|
|
15754
15093
|
};
|
|
15755
15094
|
content?: never;
|
|
15756
15095
|
};
|
|
15757
|
-
/** @description
|
|
15096
|
+
/** @description 3: This feature is currently disabled. Please try again later. */
|
|
15758
15097
|
503: {
|
|
15759
15098
|
headers: {
|
|
15760
15099
|
[name: string]: unknown;
|
|
@@ -15763,26 +15102,20 @@ export interface paths {
|
|
|
15763
15102
|
};
|
|
15764
15103
|
};
|
|
15765
15104
|
};
|
|
15766
|
-
put?: never;
|
|
15767
|
-
post?: never;
|
|
15768
15105
|
delete?: never;
|
|
15769
15106
|
options?: never;
|
|
15770
15107
|
head?: never;
|
|
15771
15108
|
patch?: never;
|
|
15772
15109
|
trace?: never;
|
|
15773
15110
|
};
|
|
15774
|
-
"/v1/description": {
|
|
15111
|
+
"/v1/description#users.roblox.com": {
|
|
15775
15112
|
parameters: {
|
|
15776
15113
|
query?: never;
|
|
15777
15114
|
header?: never;
|
|
15778
15115
|
path?: never;
|
|
15779
15116
|
cookie?: never;
|
|
15780
15117
|
};
|
|
15781
|
-
/**
|
|
15782
|
-
* Get the user's description
|
|
15783
|
-
* @deprecated
|
|
15784
|
-
* @description Replaced by users.roblox.com/v1/description
|
|
15785
|
-
*/
|
|
15118
|
+
/** Get the user's description */
|
|
15786
15119
|
get: {
|
|
15787
15120
|
parameters: {
|
|
15788
15121
|
query?: never;
|
|
@@ -15798,8 +15131,8 @@ export interface paths {
|
|
|
15798
15131
|
[name: string]: unknown;
|
|
15799
15132
|
};
|
|
15800
15133
|
content: {
|
|
15801
|
-
"application/json": components["schemas"]["Roblox.
|
|
15802
|
-
"text/json": components["schemas"]["Roblox.
|
|
15134
|
+
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15135
|
+
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15803
15136
|
};
|
|
15804
15137
|
};
|
|
15805
15138
|
/** @description 1: User not found. */
|
|
@@ -15819,11 +15152,7 @@ export interface paths {
|
|
|
15819
15152
|
};
|
|
15820
15153
|
};
|
|
15821
15154
|
put?: never;
|
|
15822
|
-
/**
|
|
15823
|
-
* Update the user's description
|
|
15824
|
-
* @deprecated
|
|
15825
|
-
* @description Replaced by users.roblox.com/v1/description
|
|
15826
|
-
*/
|
|
15155
|
+
/** Update the user's description */
|
|
15827
15156
|
post: {
|
|
15828
15157
|
parameters: {
|
|
15829
15158
|
query?: never;
|
|
@@ -15831,11 +15160,11 @@ export interface paths {
|
|
|
15831
15160
|
path?: never;
|
|
15832
15161
|
cookie?: never;
|
|
15833
15162
|
};
|
|
15834
|
-
/** @description The Roblox.
|
|
15163
|
+
/** @description The Roblox.Users.Api.DescriptionRequest */
|
|
15835
15164
|
requestBody: {
|
|
15836
15165
|
content: {
|
|
15837
|
-
"application/json": components["schemas"]["Roblox.
|
|
15838
|
-
"text/json": components["schemas"]["Roblox.
|
|
15166
|
+
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15167
|
+
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15839
15168
|
};
|
|
15840
15169
|
};
|
|
15841
15170
|
responses: {
|
|
@@ -15845,8 +15174,8 @@ export interface paths {
|
|
|
15845
15174
|
[name: string]: unknown;
|
|
15846
15175
|
};
|
|
15847
15176
|
content: {
|
|
15848
|
-
"application/json": components["schemas"]["Roblox.
|
|
15849
|
-
"text/json": components["schemas"]["Roblox.
|
|
15177
|
+
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15178
|
+
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15850
15179
|
};
|
|
15851
15180
|
};
|
|
15852
15181
|
/** @description 1: User not found. */
|
|
@@ -15863,123 +15192,10 @@ export interface paths {
|
|
|
15863
15192
|
};
|
|
15864
15193
|
content?: never;
|
|
15865
15194
|
};
|
|
15866
|
-
/**
|
|
15867
|
-
|
|
15868
|
-
|
|
15869
|
-
|
|
15870
|
-
};
|
|
15871
|
-
content?: never;
|
|
15872
|
-
};
|
|
15873
|
-
/** @description 0: An unknown error occured. */
|
|
15874
|
-
500: {
|
|
15875
|
-
headers: {
|
|
15876
|
-
[name: string]: unknown;
|
|
15877
|
-
};
|
|
15878
|
-
content?: never;
|
|
15879
|
-
};
|
|
15880
|
-
/** @description 3: This feature is currently disabled. Please try again later. */
|
|
15881
|
-
503: {
|
|
15882
|
-
headers: {
|
|
15883
|
-
[name: string]: unknown;
|
|
15884
|
-
};
|
|
15885
|
-
content?: never;
|
|
15886
|
-
};
|
|
15887
|
-
};
|
|
15888
|
-
};
|
|
15889
|
-
delete?: never;
|
|
15890
|
-
options?: never;
|
|
15891
|
-
head?: never;
|
|
15892
|
-
patch?: never;
|
|
15893
|
-
trace?: never;
|
|
15894
|
-
};
|
|
15895
|
-
"/v1/description#users.roblox.com": {
|
|
15896
|
-
parameters: {
|
|
15897
|
-
query?: never;
|
|
15898
|
-
header?: never;
|
|
15899
|
-
path?: never;
|
|
15900
|
-
cookie?: never;
|
|
15901
|
-
};
|
|
15902
|
-
/** Get the user's description */
|
|
15903
|
-
get: {
|
|
15904
|
-
parameters: {
|
|
15905
|
-
query?: never;
|
|
15906
|
-
header?: never;
|
|
15907
|
-
path?: never;
|
|
15908
|
-
cookie?: never;
|
|
15909
|
-
};
|
|
15910
|
-
requestBody?: never;
|
|
15911
|
-
responses: {
|
|
15912
|
-
/** @description OK */
|
|
15913
|
-
200: {
|
|
15914
|
-
headers: {
|
|
15915
|
-
[name: string]: unknown;
|
|
15916
|
-
};
|
|
15917
|
-
content: {
|
|
15918
|
-
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15919
|
-
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15920
|
-
};
|
|
15921
|
-
};
|
|
15922
|
-
/** @description 1: User not found. */
|
|
15923
|
-
400: {
|
|
15924
|
-
headers: {
|
|
15925
|
-
[name: string]: unknown;
|
|
15926
|
-
};
|
|
15927
|
-
content?: never;
|
|
15928
|
-
};
|
|
15929
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
15930
|
-
401: {
|
|
15931
|
-
headers: {
|
|
15932
|
-
[name: string]: unknown;
|
|
15933
|
-
};
|
|
15934
|
-
content?: never;
|
|
15935
|
-
};
|
|
15936
|
-
};
|
|
15937
|
-
};
|
|
15938
|
-
put?: never;
|
|
15939
|
-
/** Update the user's description */
|
|
15940
|
-
post: {
|
|
15941
|
-
parameters: {
|
|
15942
|
-
query?: never;
|
|
15943
|
-
header?: never;
|
|
15944
|
-
path?: never;
|
|
15945
|
-
cookie?: never;
|
|
15946
|
-
};
|
|
15947
|
-
/** @description The Roblox.Users.Api.DescriptionRequest */
|
|
15948
|
-
requestBody: {
|
|
15949
|
-
content: {
|
|
15950
|
-
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15951
|
-
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionRequest"];
|
|
15952
|
-
};
|
|
15953
|
-
};
|
|
15954
|
-
responses: {
|
|
15955
|
-
/** @description OK */
|
|
15956
|
-
200: {
|
|
15957
|
-
headers: {
|
|
15958
|
-
[name: string]: unknown;
|
|
15959
|
-
};
|
|
15960
|
-
content: {
|
|
15961
|
-
"application/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15962
|
-
"text/json": components["schemas"]["Roblox.Users.Api.DescriptionResponse"];
|
|
15963
|
-
};
|
|
15964
|
-
};
|
|
15965
|
-
/** @description 1: User not found. */
|
|
15966
|
-
400: {
|
|
15967
|
-
headers: {
|
|
15968
|
-
[name: string]: unknown;
|
|
15969
|
-
};
|
|
15970
|
-
content?: never;
|
|
15971
|
-
};
|
|
15972
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
15973
|
-
401: {
|
|
15974
|
-
headers: {
|
|
15975
|
-
[name: string]: unknown;
|
|
15976
|
-
};
|
|
15977
|
-
content?: never;
|
|
15978
|
-
};
|
|
15979
|
-
/**
|
|
15980
|
-
* @description 0: Token Validation Failed
|
|
15981
|
-
* 2: PIN is locked.
|
|
15982
|
-
*/
|
|
15195
|
+
/**
|
|
15196
|
+
* @description 0: Token Validation Failed
|
|
15197
|
+
* 2: PIN is locked.
|
|
15198
|
+
*/
|
|
15983
15199
|
403: {
|
|
15984
15200
|
headers: {
|
|
15985
15201
|
[name: string]: unknown;
|
|
@@ -17699,380 +16915,6 @@ export interface paths {
|
|
|
17699
16915
|
patch?: never;
|
|
17700
16916
|
trace?: never;
|
|
17701
16917
|
};
|
|
17702
|
-
"/v1/favorites/users/{userId}/assets/{assetId}/favorite": {
|
|
17703
|
-
parameters: {
|
|
17704
|
-
query?: never;
|
|
17705
|
-
header?: never;
|
|
17706
|
-
path?: never;
|
|
17707
|
-
cookie?: never;
|
|
17708
|
-
};
|
|
17709
|
-
/** Gets the favorite model for the asset and user. */
|
|
17710
|
-
get: {
|
|
17711
|
-
parameters: {
|
|
17712
|
-
query?: never;
|
|
17713
|
-
header?: never;
|
|
17714
|
-
path: {
|
|
17715
|
-
userId: number;
|
|
17716
|
-
assetId: number;
|
|
17717
|
-
};
|
|
17718
|
-
cookie?: never;
|
|
17719
|
-
};
|
|
17720
|
-
requestBody?: never;
|
|
17721
|
-
responses: {
|
|
17722
|
-
/** @description OK */
|
|
17723
|
-
200: {
|
|
17724
|
-
headers: {
|
|
17725
|
-
[name: string]: unknown;
|
|
17726
|
-
};
|
|
17727
|
-
content: {
|
|
17728
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.AssetFavoriteModel"];
|
|
17729
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.AssetFavoriteModel"];
|
|
17730
|
-
};
|
|
17731
|
-
};
|
|
17732
|
-
/**
|
|
17733
|
-
* @description 1: Invalid user Id.
|
|
17734
|
-
* 2: Invalid asset Id.
|
|
17735
|
-
*/
|
|
17736
|
-
400: {
|
|
17737
|
-
headers: {
|
|
17738
|
-
[name: string]: unknown;
|
|
17739
|
-
};
|
|
17740
|
-
content?: never;
|
|
17741
|
-
};
|
|
17742
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17743
|
-
401: {
|
|
17744
|
-
headers: {
|
|
17745
|
-
[name: string]: unknown;
|
|
17746
|
-
};
|
|
17747
|
-
content?: never;
|
|
17748
|
-
};
|
|
17749
|
-
};
|
|
17750
|
-
};
|
|
17751
|
-
put?: never;
|
|
17752
|
-
/** Create a favorite for an asset by the authenticated user. */
|
|
17753
|
-
post: {
|
|
17754
|
-
parameters: {
|
|
17755
|
-
query?: never;
|
|
17756
|
-
header?: never;
|
|
17757
|
-
path: {
|
|
17758
|
-
userId: number;
|
|
17759
|
-
assetId: number;
|
|
17760
|
-
};
|
|
17761
|
-
cookie?: never;
|
|
17762
|
-
};
|
|
17763
|
-
requestBody?: never;
|
|
17764
|
-
responses: {
|
|
17765
|
-
/** @description OK */
|
|
17766
|
-
200: {
|
|
17767
|
-
headers: {
|
|
17768
|
-
[name: string]: unknown;
|
|
17769
|
-
};
|
|
17770
|
-
content: {
|
|
17771
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17772
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17773
|
-
};
|
|
17774
|
-
};
|
|
17775
|
-
/**
|
|
17776
|
-
* @description 1: Invalid user Id.
|
|
17777
|
-
* 2: Invalid asset Id.
|
|
17778
|
-
*/
|
|
17779
|
-
400: {
|
|
17780
|
-
headers: {
|
|
17781
|
-
[name: string]: unknown;
|
|
17782
|
-
};
|
|
17783
|
-
content?: never;
|
|
17784
|
-
};
|
|
17785
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17786
|
-
401: {
|
|
17787
|
-
headers: {
|
|
17788
|
-
[name: string]: unknown;
|
|
17789
|
-
};
|
|
17790
|
-
content?: never;
|
|
17791
|
-
};
|
|
17792
|
-
/**
|
|
17793
|
-
* @description 0: Token Validation Failed
|
|
17794
|
-
* 6: You are not authorized to perform this action.
|
|
17795
|
-
*/
|
|
17796
|
-
403: {
|
|
17797
|
-
headers: {
|
|
17798
|
-
[name: string]: unknown;
|
|
17799
|
-
};
|
|
17800
|
-
content?: never;
|
|
17801
|
-
};
|
|
17802
|
-
/** @description 3: Asset is already favorited. */
|
|
17803
|
-
409: {
|
|
17804
|
-
headers: {
|
|
17805
|
-
[name: string]: unknown;
|
|
17806
|
-
};
|
|
17807
|
-
content?: never;
|
|
17808
|
-
};
|
|
17809
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
17810
|
-
429: {
|
|
17811
|
-
headers: {
|
|
17812
|
-
[name: string]: unknown;
|
|
17813
|
-
};
|
|
17814
|
-
content?: never;
|
|
17815
|
-
};
|
|
17816
|
-
};
|
|
17817
|
-
};
|
|
17818
|
-
/** Delete a favorite for an asset by the authenticated user. */
|
|
17819
|
-
delete: {
|
|
17820
|
-
parameters: {
|
|
17821
|
-
query?: never;
|
|
17822
|
-
header?: never;
|
|
17823
|
-
path: {
|
|
17824
|
-
userId: number;
|
|
17825
|
-
assetId: number;
|
|
17826
|
-
};
|
|
17827
|
-
cookie?: never;
|
|
17828
|
-
};
|
|
17829
|
-
requestBody?: never;
|
|
17830
|
-
responses: {
|
|
17831
|
-
/** @description OK */
|
|
17832
|
-
200: {
|
|
17833
|
-
headers: {
|
|
17834
|
-
[name: string]: unknown;
|
|
17835
|
-
};
|
|
17836
|
-
content: {
|
|
17837
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17838
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17839
|
-
};
|
|
17840
|
-
};
|
|
17841
|
-
/**
|
|
17842
|
-
* @description 1: Invalid user Id.
|
|
17843
|
-
* 2: Invalid asset Id.
|
|
17844
|
-
*/
|
|
17845
|
-
400: {
|
|
17846
|
-
headers: {
|
|
17847
|
-
[name: string]: unknown;
|
|
17848
|
-
};
|
|
17849
|
-
content?: never;
|
|
17850
|
-
};
|
|
17851
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17852
|
-
401: {
|
|
17853
|
-
headers: {
|
|
17854
|
-
[name: string]: unknown;
|
|
17855
|
-
};
|
|
17856
|
-
content?: never;
|
|
17857
|
-
};
|
|
17858
|
-
/**
|
|
17859
|
-
* @description 0: Token Validation Failed
|
|
17860
|
-
* 6: You are not authorized to perform this action.
|
|
17861
|
-
*/
|
|
17862
|
-
403: {
|
|
17863
|
-
headers: {
|
|
17864
|
-
[name: string]: unknown;
|
|
17865
|
-
};
|
|
17866
|
-
content?: never;
|
|
17867
|
-
};
|
|
17868
|
-
/** @description 4: Asset is already not favorited. */
|
|
17869
|
-
409: {
|
|
17870
|
-
headers: {
|
|
17871
|
-
[name: string]: unknown;
|
|
17872
|
-
};
|
|
17873
|
-
content?: never;
|
|
17874
|
-
};
|
|
17875
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
17876
|
-
429: {
|
|
17877
|
-
headers: {
|
|
17878
|
-
[name: string]: unknown;
|
|
17879
|
-
};
|
|
17880
|
-
content?: never;
|
|
17881
|
-
};
|
|
17882
|
-
};
|
|
17883
|
-
};
|
|
17884
|
-
options?: never;
|
|
17885
|
-
head?: never;
|
|
17886
|
-
patch?: never;
|
|
17887
|
-
trace?: never;
|
|
17888
|
-
};
|
|
17889
|
-
"/v1/favorites/users/{userId}/bundles/{bundleId}/favorite": {
|
|
17890
|
-
parameters: {
|
|
17891
|
-
query?: never;
|
|
17892
|
-
header?: never;
|
|
17893
|
-
path?: never;
|
|
17894
|
-
cookie?: never;
|
|
17895
|
-
};
|
|
17896
|
-
/** Gets the favorite model for the bundle and user. */
|
|
17897
|
-
get: {
|
|
17898
|
-
parameters: {
|
|
17899
|
-
query?: never;
|
|
17900
|
-
header?: never;
|
|
17901
|
-
path: {
|
|
17902
|
-
userId: number;
|
|
17903
|
-
bundleId: number;
|
|
17904
|
-
};
|
|
17905
|
-
cookie?: never;
|
|
17906
|
-
};
|
|
17907
|
-
requestBody?: never;
|
|
17908
|
-
responses: {
|
|
17909
|
-
/** @description OK */
|
|
17910
|
-
200: {
|
|
17911
|
-
headers: {
|
|
17912
|
-
[name: string]: unknown;
|
|
17913
|
-
};
|
|
17914
|
-
content: {
|
|
17915
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.BundleFavoriteModel"];
|
|
17916
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.BundleFavoriteModel"];
|
|
17917
|
-
};
|
|
17918
|
-
};
|
|
17919
|
-
/**
|
|
17920
|
-
* @description 1: Invalid user Id.
|
|
17921
|
-
* 2: Invalid bundle Id.
|
|
17922
|
-
*/
|
|
17923
|
-
400: {
|
|
17924
|
-
headers: {
|
|
17925
|
-
[name: string]: unknown;
|
|
17926
|
-
};
|
|
17927
|
-
content?: never;
|
|
17928
|
-
};
|
|
17929
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17930
|
-
401: {
|
|
17931
|
-
headers: {
|
|
17932
|
-
[name: string]: unknown;
|
|
17933
|
-
};
|
|
17934
|
-
content?: never;
|
|
17935
|
-
};
|
|
17936
|
-
};
|
|
17937
|
-
};
|
|
17938
|
-
put?: never;
|
|
17939
|
-
/** Create a favorite for the bundle by the authenticated user. */
|
|
17940
|
-
post: {
|
|
17941
|
-
parameters: {
|
|
17942
|
-
query?: never;
|
|
17943
|
-
header?: never;
|
|
17944
|
-
path: {
|
|
17945
|
-
userId: number;
|
|
17946
|
-
bundleId: number;
|
|
17947
|
-
};
|
|
17948
|
-
cookie?: never;
|
|
17949
|
-
};
|
|
17950
|
-
requestBody?: never;
|
|
17951
|
-
responses: {
|
|
17952
|
-
/** @description OK */
|
|
17953
|
-
200: {
|
|
17954
|
-
headers: {
|
|
17955
|
-
[name: string]: unknown;
|
|
17956
|
-
};
|
|
17957
|
-
content: {
|
|
17958
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17959
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
17960
|
-
};
|
|
17961
|
-
};
|
|
17962
|
-
/**
|
|
17963
|
-
* @description 1: Invalid user Id.
|
|
17964
|
-
* 2: Invalid bundle Id.
|
|
17965
|
-
*/
|
|
17966
|
-
400: {
|
|
17967
|
-
headers: {
|
|
17968
|
-
[name: string]: unknown;
|
|
17969
|
-
};
|
|
17970
|
-
content?: never;
|
|
17971
|
-
};
|
|
17972
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
17973
|
-
401: {
|
|
17974
|
-
headers: {
|
|
17975
|
-
[name: string]: unknown;
|
|
17976
|
-
};
|
|
17977
|
-
content?: never;
|
|
17978
|
-
};
|
|
17979
|
-
/**
|
|
17980
|
-
* @description 0: Token Validation Failed
|
|
17981
|
-
* 6: You are not authorized to perform this action.
|
|
17982
|
-
*/
|
|
17983
|
-
403: {
|
|
17984
|
-
headers: {
|
|
17985
|
-
[name: string]: unknown;
|
|
17986
|
-
};
|
|
17987
|
-
content?: never;
|
|
17988
|
-
};
|
|
17989
|
-
/** @description 3: Bundle is already favorited. */
|
|
17990
|
-
409: {
|
|
17991
|
-
headers: {
|
|
17992
|
-
[name: string]: unknown;
|
|
17993
|
-
};
|
|
17994
|
-
content?: never;
|
|
17995
|
-
};
|
|
17996
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
17997
|
-
429: {
|
|
17998
|
-
headers: {
|
|
17999
|
-
[name: string]: unknown;
|
|
18000
|
-
};
|
|
18001
|
-
content?: never;
|
|
18002
|
-
};
|
|
18003
|
-
};
|
|
18004
|
-
};
|
|
18005
|
-
/** Delete favorite for the bundle by the authenticated user. */
|
|
18006
|
-
delete: {
|
|
18007
|
-
parameters: {
|
|
18008
|
-
query?: never;
|
|
18009
|
-
header?: never;
|
|
18010
|
-
path: {
|
|
18011
|
-
userId: number;
|
|
18012
|
-
bundleId: number;
|
|
18013
|
-
};
|
|
18014
|
-
cookie?: never;
|
|
18015
|
-
};
|
|
18016
|
-
requestBody?: never;
|
|
18017
|
-
responses: {
|
|
18018
|
-
/** @description OK */
|
|
18019
|
-
200: {
|
|
18020
|
-
headers: {
|
|
18021
|
-
[name: string]: unknown;
|
|
18022
|
-
};
|
|
18023
|
-
content: {
|
|
18024
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
18025
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
18026
|
-
};
|
|
18027
|
-
};
|
|
18028
|
-
/**
|
|
18029
|
-
* @description 1: Invalid user Id.
|
|
18030
|
-
* 2: Invalid bundle Id.
|
|
18031
|
-
*/
|
|
18032
|
-
400: {
|
|
18033
|
-
headers: {
|
|
18034
|
-
[name: string]: unknown;
|
|
18035
|
-
};
|
|
18036
|
-
content?: never;
|
|
18037
|
-
};
|
|
18038
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
18039
|
-
401: {
|
|
18040
|
-
headers: {
|
|
18041
|
-
[name: string]: unknown;
|
|
18042
|
-
};
|
|
18043
|
-
content?: never;
|
|
18044
|
-
};
|
|
18045
|
-
/**
|
|
18046
|
-
* @description 0: Token Validation Failed
|
|
18047
|
-
* 6: You are not authorized to perform this action.
|
|
18048
|
-
*/
|
|
18049
|
-
403: {
|
|
18050
|
-
headers: {
|
|
18051
|
-
[name: string]: unknown;
|
|
18052
|
-
};
|
|
18053
|
-
content?: never;
|
|
18054
|
-
};
|
|
18055
|
-
/** @description 4: Bundle is already not favorited. */
|
|
18056
|
-
409: {
|
|
18057
|
-
headers: {
|
|
18058
|
-
[name: string]: unknown;
|
|
18059
|
-
};
|
|
18060
|
-
content?: never;
|
|
18061
|
-
};
|
|
18062
|
-
/** @description 5: This action was floodchecked. Please try again later. */
|
|
18063
|
-
429: {
|
|
18064
|
-
headers: {
|
|
18065
|
-
[name: string]: unknown;
|
|
18066
|
-
};
|
|
18067
|
-
content?: never;
|
|
18068
|
-
};
|
|
18069
|
-
};
|
|
18070
|
-
};
|
|
18071
|
-
options?: never;
|
|
18072
|
-
head?: never;
|
|
18073
|
-
patch?: never;
|
|
18074
|
-
trace?: never;
|
|
18075
|
-
};
|
|
18076
16918
|
"/v1/favorites/users/{userId}/favorites/{assetTypeId}/assets": {
|
|
18077
16919
|
parameters: {
|
|
18078
16920
|
query?: never;
|
|
@@ -18138,82 +16980,6 @@ export interface paths {
|
|
|
18138
16980
|
patch?: never;
|
|
18139
16981
|
trace?: never;
|
|
18140
16982
|
};
|
|
18141
|
-
"/v1/favorites/users/{userId}/favorites/{subtypeId}/bundles": {
|
|
18142
|
-
parameters: {
|
|
18143
|
-
query?: never;
|
|
18144
|
-
header?: never;
|
|
18145
|
-
path?: never;
|
|
18146
|
-
cookie?: never;
|
|
18147
|
-
};
|
|
18148
|
-
/** Lists the bundles favorited by a given user with the given bundle subtypeId.Switched to EAAS style pagination cursors since July 2024. */
|
|
18149
|
-
get: {
|
|
18150
|
-
parameters: {
|
|
18151
|
-
query?: {
|
|
18152
|
-
itemsPerPage?: number;
|
|
18153
|
-
cursor?: string;
|
|
18154
|
-
isPrevious?: boolean;
|
|
18155
|
-
};
|
|
18156
|
-
header?: never;
|
|
18157
|
-
path: {
|
|
18158
|
-
userId: number;
|
|
18159
|
-
subtypeId: number;
|
|
18160
|
-
};
|
|
18161
|
-
cookie?: never;
|
|
18162
|
-
};
|
|
18163
|
-
requestBody?: never;
|
|
18164
|
-
responses: {
|
|
18165
|
-
/** @description OK */
|
|
18166
|
-
200: {
|
|
18167
|
-
headers: {
|
|
18168
|
-
[name: string]: unknown;
|
|
18169
|
-
};
|
|
18170
|
-
content: {
|
|
18171
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.FavoriteBundlesResponse"];
|
|
18172
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.FavoriteBundlesResponse"];
|
|
18173
|
-
};
|
|
18174
|
-
};
|
|
18175
|
-
/**
|
|
18176
|
-
* @description 1: Invalid user Id.
|
|
18177
|
-
* 3: Cannot request so many bundles at once.
|
|
18178
|
-
* 10: Invalid previous pagination request. Please provide a cursor when isPrevious is true
|
|
18179
|
-
*/
|
|
18180
|
-
400: {
|
|
18181
|
-
headers: {
|
|
18182
|
-
[name: string]: unknown;
|
|
18183
|
-
};
|
|
18184
|
-
content?: never;
|
|
18185
|
-
};
|
|
18186
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
18187
|
-
401: {
|
|
18188
|
-
headers: {
|
|
18189
|
-
[name: string]: unknown;
|
|
18190
|
-
};
|
|
18191
|
-
content?: never;
|
|
18192
|
-
};
|
|
18193
|
-
/** @description 6: You are not authorized to perform this action. */
|
|
18194
|
-
403: {
|
|
18195
|
-
headers: {
|
|
18196
|
-
[name: string]: unknown;
|
|
18197
|
-
};
|
|
18198
|
-
content?: never;
|
|
18199
|
-
};
|
|
18200
|
-
/** @description 11: Internal server error. Please check if you have provided correct pagination cursor */
|
|
18201
|
-
500: {
|
|
18202
|
-
headers: {
|
|
18203
|
-
[name: string]: unknown;
|
|
18204
|
-
};
|
|
18205
|
-
content?: never;
|
|
18206
|
-
};
|
|
18207
|
-
};
|
|
18208
|
-
};
|
|
18209
|
-
put?: never;
|
|
18210
|
-
post?: never;
|
|
18211
|
-
delete?: never;
|
|
18212
|
-
options?: never;
|
|
18213
|
-
head?: never;
|
|
18214
|
-
patch?: never;
|
|
18215
|
-
trace?: never;
|
|
18216
|
-
};
|
|
18217
16983
|
"/v1/featured-content/event": {
|
|
18218
16984
|
parameters: {
|
|
18219
16985
|
query?: never;
|
|
@@ -20543,22 +19309,6 @@ export interface paths {
|
|
|
20543
19309
|
patch?: never;
|
|
20544
19310
|
trace?: never;
|
|
20545
19311
|
};
|
|
20546
|
-
"/v1/games/vip-servers/{universeId}": {
|
|
20547
|
-
parameters: {
|
|
20548
|
-
query?: never;
|
|
20549
|
-
header?: never;
|
|
20550
|
-
path?: never;
|
|
20551
|
-
cookie?: never;
|
|
20552
|
-
};
|
|
20553
|
-
get?: never;
|
|
20554
|
-
put?: never;
|
|
20555
|
-
post: operations["PrivateServers_CreatePrivateServer"];
|
|
20556
|
-
delete?: never;
|
|
20557
|
-
options?: never;
|
|
20558
|
-
head?: never;
|
|
20559
|
-
patch?: never;
|
|
20560
|
-
trace?: never;
|
|
20561
|
-
};
|
|
20562
19312
|
"/v1/games/votes": {
|
|
20563
19313
|
parameters: {
|
|
20564
19314
|
query?: never;
|
|
@@ -20575,87 +19325,6 @@ export interface paths {
|
|
|
20575
19325
|
patch?: never;
|
|
20576
19326
|
trace?: never;
|
|
20577
19327
|
};
|
|
20578
|
-
"/v1/games/{gameId}/thumbnail/image": {
|
|
20579
|
-
parameters: {
|
|
20580
|
-
query?: never;
|
|
20581
|
-
header?: never;
|
|
20582
|
-
path?: never;
|
|
20583
|
-
cookie?: never;
|
|
20584
|
-
};
|
|
20585
|
-
get?: never;
|
|
20586
|
-
put?: never;
|
|
20587
|
-
/** Uploads a game thumbnail. */
|
|
20588
|
-
post: {
|
|
20589
|
-
parameters: {
|
|
20590
|
-
query?: never;
|
|
20591
|
-
header?: never;
|
|
20592
|
-
path: {
|
|
20593
|
-
/** @description The universe Id. */
|
|
20594
|
-
gameId: number;
|
|
20595
|
-
};
|
|
20596
|
-
cookie?: never;
|
|
20597
|
-
};
|
|
20598
|
-
requestBody?: components["requestBodies"]["postV1Badges_badgeid_icon"];
|
|
20599
|
-
responses: {
|
|
20600
|
-
/** @description OK */
|
|
20601
|
-
200: {
|
|
20602
|
-
headers: {
|
|
20603
|
-
[name: string]: unknown;
|
|
20604
|
-
};
|
|
20605
|
-
content: {
|
|
20606
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
20607
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
20608
|
-
};
|
|
20609
|
-
};
|
|
20610
|
-
/**
|
|
20611
|
-
* @description 1: File uploaded does not match known image format. Try converting to png.
|
|
20612
|
-
* 2: File not present in request.
|
|
20613
|
-
*/
|
|
20614
|
-
400: {
|
|
20615
|
-
headers: {
|
|
20616
|
-
[name: string]: unknown;
|
|
20617
|
-
};
|
|
20618
|
-
content?: never;
|
|
20619
|
-
};
|
|
20620
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
20621
|
-
401: {
|
|
20622
|
-
headers: {
|
|
20623
|
-
[name: string]: unknown;
|
|
20624
|
-
};
|
|
20625
|
-
content?: never;
|
|
20626
|
-
};
|
|
20627
|
-
/**
|
|
20628
|
-
* @description 0: Token Validation Failed
|
|
20629
|
-
* 5: You do not have permission to manage this item.
|
|
20630
|
-
*/
|
|
20631
|
-
403: {
|
|
20632
|
-
headers: {
|
|
20633
|
-
[name: string]: unknown;
|
|
20634
|
-
};
|
|
20635
|
-
content?: never;
|
|
20636
|
-
};
|
|
20637
|
-
/** @description 4: Target item is invalid or does not exist. */
|
|
20638
|
-
404: {
|
|
20639
|
-
headers: {
|
|
20640
|
-
[name: string]: unknown;
|
|
20641
|
-
};
|
|
20642
|
-
content?: never;
|
|
20643
|
-
};
|
|
20644
|
-
/** @description 3: You're uploading too much, please wait and try again later. */
|
|
20645
|
-
429: {
|
|
20646
|
-
headers: {
|
|
20647
|
-
[name: string]: unknown;
|
|
20648
|
-
};
|
|
20649
|
-
content?: never;
|
|
20650
|
-
};
|
|
20651
|
-
};
|
|
20652
|
-
};
|
|
20653
|
-
delete?: never;
|
|
20654
|
-
options?: never;
|
|
20655
|
-
head?: never;
|
|
20656
|
-
patch?: never;
|
|
20657
|
-
trace?: never;
|
|
20658
|
-
};
|
|
20659
19328
|
"/v1/games/{placeId}/private-servers": {
|
|
20660
19329
|
parameters: {
|
|
20661
19330
|
query?: never;
|
|
@@ -25171,6 +23840,7 @@ export interface paths {
|
|
|
25171
23840
|
* 15: This role does not exist.
|
|
25172
23841
|
* 19: Cannot update Guest role.
|
|
25173
23842
|
* 20: Cannot update Owner role rank.
|
|
23843
|
+
* 30: Invalid role color.
|
|
25174
23844
|
*/
|
|
25175
23845
|
400: {
|
|
25176
23846
|
headers: {
|
|
@@ -27647,7 +26317,6 @@ export interface paths {
|
|
|
27647
26317
|
"Accept-Encoding": string;
|
|
27648
26318
|
"Roblox-Place-Id": number;
|
|
27649
26319
|
AssetType: string;
|
|
27650
|
-
Accept: string;
|
|
27651
26320
|
AssetFormat: string;
|
|
27652
26321
|
"Roblox-AssetFormat": string;
|
|
27653
26322
|
};
|
|
@@ -28415,6 +27084,7 @@ export interface paths {
|
|
|
28415
27084
|
/**
|
|
28416
27085
|
* @description 1: The target user is invalid or does not exist.
|
|
28417
27086
|
* 6: Invalid parameters.
|
|
27087
|
+
* 34: Invalid pagination cursor.
|
|
28418
27088
|
*/
|
|
28419
27089
|
400: {
|
|
28420
27090
|
headers: {
|
|
@@ -30688,84 +29358,6 @@ export interface paths {
|
|
|
30688
29358
|
};
|
|
30689
29359
|
trace?: never;
|
|
30690
29360
|
};
|
|
30691
|
-
"/v1/plugins/{pluginId}/icon": {
|
|
30692
|
-
parameters: {
|
|
30693
|
-
query?: never;
|
|
30694
|
-
header?: never;
|
|
30695
|
-
path?: never;
|
|
30696
|
-
cookie?: never;
|
|
30697
|
-
};
|
|
30698
|
-
get?: never;
|
|
30699
|
-
put?: never;
|
|
30700
|
-
/** Overwrites a plugin icon with a new one. */
|
|
30701
|
-
post: {
|
|
30702
|
-
parameters: {
|
|
30703
|
-
query?: never;
|
|
30704
|
-
header?: never;
|
|
30705
|
-
path: {
|
|
30706
|
-
/** @description The plugin Id. */
|
|
30707
|
-
pluginId: number;
|
|
30708
|
-
};
|
|
30709
|
-
cookie?: never;
|
|
30710
|
-
};
|
|
30711
|
-
requestBody?: components["requestBodies"]["postV1Badges_badgeid_icon"];
|
|
30712
|
-
responses: {
|
|
30713
|
-
/** @description OK */
|
|
30714
|
-
200: {
|
|
30715
|
-
headers: {
|
|
30716
|
-
[name: string]: unknown;
|
|
30717
|
-
};
|
|
30718
|
-
content: {
|
|
30719
|
-
"application/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
30720
|
-
"text/json": components["schemas"]["Roblox.Publish.Api.UploadResponse"];
|
|
30721
|
-
};
|
|
30722
|
-
};
|
|
30723
|
-
/** @description 2: File not present in request. */
|
|
30724
|
-
400: {
|
|
30725
|
-
headers: {
|
|
30726
|
-
[name: string]: unknown;
|
|
30727
|
-
};
|
|
30728
|
-
content?: never;
|
|
30729
|
-
};
|
|
30730
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
30731
|
-
401: {
|
|
30732
|
-
headers: {
|
|
30733
|
-
[name: string]: unknown;
|
|
30734
|
-
};
|
|
30735
|
-
content?: never;
|
|
30736
|
-
};
|
|
30737
|
-
/**
|
|
30738
|
-
* @description 0: Token Validation Failed
|
|
30739
|
-
* 5: You do not have permission to manage this item.
|
|
30740
|
-
*/
|
|
30741
|
-
403: {
|
|
30742
|
-
headers: {
|
|
30743
|
-
[name: string]: unknown;
|
|
30744
|
-
};
|
|
30745
|
-
content?: never;
|
|
30746
|
-
};
|
|
30747
|
-
/** @description 4: Target item is invalid or does not exist. */
|
|
30748
|
-
404: {
|
|
30749
|
-
headers: {
|
|
30750
|
-
[name: string]: unknown;
|
|
30751
|
-
};
|
|
30752
|
-
content?: never;
|
|
30753
|
-
};
|
|
30754
|
-
/** @description 3: You're uploading too much, please wait and try again later. */
|
|
30755
|
-
429: {
|
|
30756
|
-
headers: {
|
|
30757
|
-
[name: string]: unknown;
|
|
30758
|
-
};
|
|
30759
|
-
content?: never;
|
|
30760
|
-
};
|
|
30761
|
-
};
|
|
30762
|
-
};
|
|
30763
|
-
delete?: never;
|
|
30764
|
-
options?: never;
|
|
30765
|
-
head?: never;
|
|
30766
|
-
patch?: never;
|
|
30767
|
-
trace?: never;
|
|
30768
|
-
};
|
|
30769
29361
|
"/v1/preferences/publishing": {
|
|
30770
29362
|
parameters: {
|
|
30771
29363
|
query?: never;
|
|
@@ -30938,38 +29530,6 @@ export interface paths {
|
|
|
30938
29530
|
patch?: never;
|
|
30939
29531
|
trace?: never;
|
|
30940
29532
|
};
|
|
30941
|
-
"/v1/private-servers/enabled-in-universe/{universeId}": {
|
|
30942
|
-
parameters: {
|
|
30943
|
-
query?: never;
|
|
30944
|
-
header?: never;
|
|
30945
|
-
path?: never;
|
|
30946
|
-
cookie?: never;
|
|
30947
|
-
};
|
|
30948
|
-
get: operations["PrivateServers_PrivateServersEnabledInUniverse"];
|
|
30949
|
-
put?: never;
|
|
30950
|
-
post?: never;
|
|
30951
|
-
delete?: never;
|
|
30952
|
-
options?: never;
|
|
30953
|
-
head?: never;
|
|
30954
|
-
patch?: never;
|
|
30955
|
-
trace?: never;
|
|
30956
|
-
};
|
|
30957
|
-
"/v1/private-servers/my-private-servers": {
|
|
30958
|
-
parameters: {
|
|
30959
|
-
query?: never;
|
|
30960
|
-
header?: never;
|
|
30961
|
-
path?: never;
|
|
30962
|
-
cookie?: never;
|
|
30963
|
-
};
|
|
30964
|
-
get: operations["PrivateServers_GetMyPrivateServers"];
|
|
30965
|
-
put?: never;
|
|
30966
|
-
post?: never;
|
|
30967
|
-
delete?: never;
|
|
30968
|
-
options?: never;
|
|
30969
|
-
head?: never;
|
|
30970
|
-
patch?: never;
|
|
30971
|
-
trace?: never;
|
|
30972
|
-
};
|
|
30973
29533
|
"/v1/promotion-channels": {
|
|
30974
29534
|
parameters: {
|
|
30975
29535
|
query?: never;
|
|
@@ -31991,47 +30551,6 @@ export interface paths {
|
|
|
31991
30551
|
patch?: never;
|
|
31992
30552
|
trace?: never;
|
|
31993
30553
|
};
|
|
31994
|
-
"/v1/subcategories": {
|
|
31995
|
-
parameters: {
|
|
31996
|
-
query?: never;
|
|
31997
|
-
header?: never;
|
|
31998
|
-
path?: never;
|
|
31999
|
-
cookie?: never;
|
|
32000
|
-
};
|
|
32001
|
-
/** Lists Subcategory Names and their Ids. */
|
|
32002
|
-
get: {
|
|
32003
|
-
parameters: {
|
|
32004
|
-
query?: never;
|
|
32005
|
-
header?: never;
|
|
32006
|
-
path?: never;
|
|
32007
|
-
cookie?: never;
|
|
32008
|
-
};
|
|
32009
|
-
requestBody?: never;
|
|
32010
|
-
responses: {
|
|
32011
|
-
/** @description OK */
|
|
32012
|
-
200: {
|
|
32013
|
-
headers: {
|
|
32014
|
-
[name: string]: unknown;
|
|
32015
|
-
};
|
|
32016
|
-
content: {
|
|
32017
|
-
"application/json": {
|
|
32018
|
-
[key: string]: number;
|
|
32019
|
-
};
|
|
32020
|
-
"text/json": {
|
|
32021
|
-
[key: string]: number;
|
|
32022
|
-
};
|
|
32023
|
-
};
|
|
32024
|
-
};
|
|
32025
|
-
};
|
|
32026
|
-
};
|
|
32027
|
-
put?: never;
|
|
32028
|
-
post?: never;
|
|
32029
|
-
delete?: never;
|
|
32030
|
-
options?: never;
|
|
32031
|
-
head?: never;
|
|
32032
|
-
patch?: never;
|
|
32033
|
-
trace?: never;
|
|
32034
|
-
};
|
|
32035
30554
|
"/v1/supported-languages/games/{gameId}": {
|
|
32036
30555
|
parameters: {
|
|
32037
30556
|
query?: never;
|
|
@@ -32793,58 +31312,6 @@ export interface paths {
|
|
|
32793
31312
|
};
|
|
32794
31313
|
trace?: never;
|
|
32795
31314
|
};
|
|
32796
|
-
"/v1/topic/get-topics": {
|
|
32797
|
-
parameters: {
|
|
32798
|
-
query?: never;
|
|
32799
|
-
header?: never;
|
|
32800
|
-
path?: never;
|
|
32801
|
-
cookie?: never;
|
|
32802
|
-
};
|
|
32803
|
-
get?: never;
|
|
32804
|
-
put?: never;
|
|
32805
|
-
/**
|
|
32806
|
-
* Gets topics for a populated request, or trending queries when the request has no topic inputs.
|
|
32807
|
-
* Topics and queries are mutually exclusive in the response.
|
|
32808
|
-
*/
|
|
32809
|
-
post: {
|
|
32810
|
-
parameters: {
|
|
32811
|
-
query?: never;
|
|
32812
|
-
header?: never;
|
|
32813
|
-
path?: never;
|
|
32814
|
-
cookie?: never;
|
|
32815
|
-
};
|
|
32816
|
-
requestBody: {
|
|
32817
|
-
content: {
|
|
32818
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.TopicRequestModel"];
|
|
32819
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.TopicRequestModel"];
|
|
32820
|
-
};
|
|
32821
|
-
};
|
|
32822
|
-
responses: {
|
|
32823
|
-
/** @description OK */
|
|
32824
|
-
200: {
|
|
32825
|
-
headers: {
|
|
32826
|
-
[name: string]: unknown;
|
|
32827
|
-
};
|
|
32828
|
-
content: {
|
|
32829
|
-
"application/json": components["schemas"]["Roblox.Catalog.Api.TopicResponse"];
|
|
32830
|
-
"text/json": components["schemas"]["Roblox.Catalog.Api.TopicResponse"];
|
|
32831
|
-
};
|
|
32832
|
-
};
|
|
32833
|
-
/** @description 0: Token Validation Failed */
|
|
32834
|
-
403: {
|
|
32835
|
-
headers: {
|
|
32836
|
-
[name: string]: unknown;
|
|
32837
|
-
};
|
|
32838
|
-
content?: never;
|
|
32839
|
-
};
|
|
32840
|
-
};
|
|
32841
|
-
};
|
|
32842
|
-
delete?: never;
|
|
32843
|
-
options?: never;
|
|
32844
|
-
head?: never;
|
|
32845
|
-
patch?: never;
|
|
32846
|
-
trace?: never;
|
|
32847
|
-
};
|
|
32848
31315
|
"/v1/trade-privacy": {
|
|
32849
31316
|
parameters: {
|
|
32850
31317
|
query?: never;
|
|
@@ -37957,56 +36424,6 @@ export interface paths {
|
|
|
37957
36424
|
patch?: never;
|
|
37958
36425
|
trace?: never;
|
|
37959
36426
|
};
|
|
37960
|
-
"/v1/users/{userId}/bundles": {
|
|
37961
|
-
parameters: {
|
|
37962
|
-
query?: never;
|
|
37963
|
-
header?: never;
|
|
37964
|
-
path?: never;
|
|
37965
|
-
cookie?: never;
|
|
37966
|
-
};
|
|
37967
|
-
/** Lists the bundles owned by a given user. */
|
|
37968
|
-
get: {
|
|
37969
|
-
parameters: {
|
|
37970
|
-
query?: {
|
|
37971
|
-
cursor?: string;
|
|
37972
|
-
limit?: number;
|
|
37973
|
-
sortOrder?: 1 | 2;
|
|
37974
|
-
};
|
|
37975
|
-
header?: never;
|
|
37976
|
-
path: {
|
|
37977
|
-
userId: number;
|
|
37978
|
-
};
|
|
37979
|
-
cookie?: never;
|
|
37980
|
-
};
|
|
37981
|
-
requestBody?: never;
|
|
37982
|
-
responses: {
|
|
37983
|
-
/** @description OK */
|
|
37984
|
-
200: {
|
|
37985
|
-
headers: {
|
|
37986
|
-
[name: string]: unknown;
|
|
37987
|
-
};
|
|
37988
|
-
content: {
|
|
37989
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.OwnedBundleModel_"];
|
|
37990
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.OwnedBundleModel_"];
|
|
37991
|
-
};
|
|
37992
|
-
};
|
|
37993
|
-
/** @description 1: Invalid bundle */
|
|
37994
|
-
400: {
|
|
37995
|
-
headers: {
|
|
37996
|
-
[name: string]: unknown;
|
|
37997
|
-
};
|
|
37998
|
-
content?: never;
|
|
37999
|
-
};
|
|
38000
|
-
};
|
|
38001
|
-
};
|
|
38002
|
-
put?: never;
|
|
38003
|
-
post?: never;
|
|
38004
|
-
delete?: never;
|
|
38005
|
-
options?: never;
|
|
38006
|
-
head?: never;
|
|
38007
|
-
patch?: never;
|
|
38008
|
-
trace?: never;
|
|
38009
|
-
};
|
|
38010
36427
|
"/v1/users/{userId}/bundles/{bundleType}": {
|
|
38011
36428
|
parameters: {
|
|
38012
36429
|
query?: never;
|
|
@@ -42026,86 +40443,6 @@ export interface paths {
|
|
|
42026
40443
|
patch?: never;
|
|
42027
40444
|
trace?: never;
|
|
42028
40445
|
};
|
|
42029
|
-
"/v1/vip-server/can-invite/{userId}": {
|
|
42030
|
-
parameters: {
|
|
42031
|
-
query?: never;
|
|
42032
|
-
header?: never;
|
|
42033
|
-
path?: never;
|
|
42034
|
-
cookie?: never;
|
|
42035
|
-
};
|
|
42036
|
-
get: operations["PrivateServers_CanInviteUser"];
|
|
42037
|
-
put?: never;
|
|
42038
|
-
post?: never;
|
|
42039
|
-
delete?: never;
|
|
42040
|
-
options?: never;
|
|
42041
|
-
head?: never;
|
|
42042
|
-
patch?: never;
|
|
42043
|
-
trace?: never;
|
|
42044
|
-
};
|
|
42045
|
-
"/v1/vip-servers/my-private-servers": {
|
|
42046
|
-
parameters: {
|
|
42047
|
-
query?: never;
|
|
42048
|
-
header?: never;
|
|
42049
|
-
path?: never;
|
|
42050
|
-
cookie?: never;
|
|
42051
|
-
};
|
|
42052
|
-
get: operations["PrivateServersApi.PrivateServers_GetMyPrivateServers"];
|
|
42053
|
-
put?: never;
|
|
42054
|
-
post?: never;
|
|
42055
|
-
delete?: never;
|
|
42056
|
-
options?: never;
|
|
42057
|
-
head?: never;
|
|
42058
|
-
patch?: never;
|
|
42059
|
-
trace?: never;
|
|
42060
|
-
};
|
|
42061
|
-
"/v1/vip-servers/{id}": {
|
|
42062
|
-
parameters: {
|
|
42063
|
-
query?: never;
|
|
42064
|
-
header?: never;
|
|
42065
|
-
path?: never;
|
|
42066
|
-
cookie?: never;
|
|
42067
|
-
};
|
|
42068
|
-
get: operations["PrivateServers_GetPrivateServer"];
|
|
42069
|
-
put?: never;
|
|
42070
|
-
post?: never;
|
|
42071
|
-
delete?: never;
|
|
42072
|
-
options?: never;
|
|
42073
|
-
head?: never;
|
|
42074
|
-
patch: operations["PrivateServers_UpdatePrivateServer"];
|
|
42075
|
-
trace?: never;
|
|
42076
|
-
};
|
|
42077
|
-
"/v1/vip-servers/{id}/permissions": {
|
|
42078
|
-
parameters: {
|
|
42079
|
-
query?: never;
|
|
42080
|
-
header?: never;
|
|
42081
|
-
path?: never;
|
|
42082
|
-
cookie?: never;
|
|
42083
|
-
};
|
|
42084
|
-
get?: never;
|
|
42085
|
-
put?: never;
|
|
42086
|
-
post?: never;
|
|
42087
|
-
delete?: never;
|
|
42088
|
-
options?: never;
|
|
42089
|
-
head?: never;
|
|
42090
|
-
patch: operations["PrivateServers_UpdatePrivateServerPermissions"];
|
|
42091
|
-
trace?: never;
|
|
42092
|
-
};
|
|
42093
|
-
"/v1/vip-servers/{id}/subscription": {
|
|
42094
|
-
parameters: {
|
|
42095
|
-
query?: never;
|
|
42096
|
-
header?: never;
|
|
42097
|
-
path?: never;
|
|
42098
|
-
cookie?: never;
|
|
42099
|
-
};
|
|
42100
|
-
get?: never;
|
|
42101
|
-
put?: never;
|
|
42102
|
-
post?: never;
|
|
42103
|
-
delete?: never;
|
|
42104
|
-
options?: never;
|
|
42105
|
-
head?: never;
|
|
42106
|
-
patch: operations["PrivateServers_UpdatePrivateServerSubscription"];
|
|
42107
|
-
trace?: never;
|
|
42108
|
-
};
|
|
42109
40446
|
"/v1/xbox/connection": {
|
|
42110
40447
|
parameters: {
|
|
42111
40448
|
query?: never;
|
|
@@ -42397,15 +40734,14 @@ export interface paths {
|
|
|
42397
40734
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
42398
40735
|
contentRepresentationPriorityList?: string;
|
|
42399
40736
|
accessContext?: string;
|
|
42400
|
-
usageContext?: number;
|
|
42401
40737
|
};
|
|
42402
40738
|
header: {
|
|
42403
40739
|
"Accept-Encoding": string;
|
|
42404
40740
|
"Roblox-Place-Id": number;
|
|
42405
40741
|
AssetType: string;
|
|
42406
|
-
Accept: string;
|
|
42407
40742
|
AssetFormat: string;
|
|
42408
40743
|
"Roblox-AssetFormat": string;
|
|
40744
|
+
"Roblox-Usage-Context"?: string;
|
|
42409
40745
|
};
|
|
42410
40746
|
path?: never;
|
|
42411
40747
|
cookie?: never;
|
|
@@ -42448,15 +40784,14 @@ export interface paths {
|
|
|
42448
40784
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
42449
40785
|
contentRepresentationPriorityList?: string;
|
|
42450
40786
|
accessContext?: string;
|
|
42451
|
-
usageContext?: number;
|
|
42452
40787
|
};
|
|
42453
40788
|
header: {
|
|
42454
40789
|
"Accept-Encoding": string;
|
|
42455
40790
|
"Roblox-Place-Id": number;
|
|
42456
40791
|
AssetType: string;
|
|
42457
|
-
Accept: string;
|
|
42458
40792
|
AssetFormat: string;
|
|
42459
40793
|
"Roblox-AssetFormat": string;
|
|
40794
|
+
"Roblox-Usage-Context"?: string;
|
|
42460
40795
|
};
|
|
42461
40796
|
path: {
|
|
42462
40797
|
assetId: number;
|
|
@@ -42501,15 +40836,14 @@ export interface paths {
|
|
|
42501
40836
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
42502
40837
|
contentRepresentationPriorityList?: string;
|
|
42503
40838
|
accessContext?: string;
|
|
42504
|
-
usageContext?: number;
|
|
42505
40839
|
};
|
|
42506
40840
|
header: {
|
|
42507
40841
|
"Accept-Encoding": string;
|
|
42508
40842
|
"Roblox-Place-Id": number;
|
|
42509
40843
|
AssetType: string;
|
|
42510
|
-
Accept: string;
|
|
42511
40844
|
AssetFormat: string;
|
|
42512
40845
|
"Roblox-AssetFormat": string;
|
|
40846
|
+
"Roblox-Usage-Context"?: string;
|
|
42513
40847
|
};
|
|
42514
40848
|
path: {
|
|
42515
40849
|
assetId: number;
|
|
@@ -42550,7 +40884,6 @@ export interface paths {
|
|
|
42550
40884
|
query?: never;
|
|
42551
40885
|
header: {
|
|
42552
40886
|
"Roblox-Place-Id": number;
|
|
42553
|
-
Accept: string;
|
|
42554
40887
|
"Roblox-Browser-Asset-Request": string;
|
|
42555
40888
|
};
|
|
42556
40889
|
path?: never;
|
|
@@ -42639,61 +40972,6 @@ export interface paths {
|
|
|
42639
40972
|
patch?: never;
|
|
42640
40973
|
trace?: never;
|
|
42641
40974
|
};
|
|
42642
|
-
"/v2/assets/{id}/versions": {
|
|
42643
|
-
parameters: {
|
|
42644
|
-
query?: never;
|
|
42645
|
-
header?: never;
|
|
42646
|
-
path?: never;
|
|
42647
|
-
cookie?: never;
|
|
42648
|
-
};
|
|
42649
|
-
/**
|
|
42650
|
-
* Retrieves asset information for the specified asset ID. The authenticated user must be able to manage the asset
|
|
42651
|
-
* or granted by package permission.
|
|
42652
|
-
* @deprecated
|
|
42653
|
-
* @description Use OpenCloud Assets API instead.
|
|
42654
|
-
*/
|
|
42655
|
-
get: {
|
|
42656
|
-
parameters: {
|
|
42657
|
-
query?: {
|
|
42658
|
-
/** @description The number of results per request. */
|
|
42659
|
-
limit?: 10 | 25 | 50 | 100;
|
|
42660
|
-
/** @description The paging cursor for the previous or next page. */
|
|
42661
|
-
cursor?: string;
|
|
42662
|
-
/** @description Sort by version number, default is desc. */
|
|
42663
|
-
sortOrder?: "Asc" | "Desc";
|
|
42664
|
-
};
|
|
42665
|
-
header: {
|
|
42666
|
-
/** @description The ID of the place.Roblox.Platform.Assets.IPlace */
|
|
42667
|
-
"Roblox-Place-Id": number;
|
|
42668
|
-
};
|
|
42669
|
-
path: {
|
|
42670
|
-
/** @description The ID of the asset.Roblox.Platform.Assets.IAsset */
|
|
42671
|
-
id: number;
|
|
42672
|
-
};
|
|
42673
|
-
cookie?: never;
|
|
42674
|
-
};
|
|
42675
|
-
requestBody?: never;
|
|
42676
|
-
responses: {
|
|
42677
|
-
/** @description OK */
|
|
42678
|
-
200: {
|
|
42679
|
-
headers: {
|
|
42680
|
-
[name: string]: unknown;
|
|
42681
|
-
};
|
|
42682
|
-
content: {
|
|
42683
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.AssetVersion_"];
|
|
42684
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.AssetVersion_"];
|
|
42685
|
-
};
|
|
42686
|
-
};
|
|
42687
|
-
};
|
|
42688
|
-
};
|
|
42689
|
-
put?: never;
|
|
42690
|
-
post?: never;
|
|
42691
|
-
delete?: never;
|
|
42692
|
-
options?: never;
|
|
42693
|
-
head?: never;
|
|
42694
|
-
patch?: never;
|
|
42695
|
-
trace?: never;
|
|
42696
|
-
};
|
|
42697
40975
|
"/v2/auth/metadata": {
|
|
42698
40976
|
parameters: {
|
|
42699
40977
|
query?: never;
|
|
@@ -44042,7 +42320,6 @@ export interface paths {
|
|
|
44042
42320
|
"Accept-Encoding": string;
|
|
44043
42321
|
"Roblox-Place-Id": number;
|
|
44044
42322
|
AssetType: string;
|
|
44045
|
-
Accept: string;
|
|
44046
42323
|
AssetFormat: string;
|
|
44047
42324
|
"Roblox-AssetFormat": string;
|
|
44048
42325
|
};
|
|
@@ -44169,6 +42446,13 @@ export interface paths {
|
|
|
44169
42446
|
};
|
|
44170
42447
|
content?: never;
|
|
44171
42448
|
};
|
|
42449
|
+
/** @description 9: The requested tag is not implemented. */
|
|
42450
|
+
501: {
|
|
42451
|
+
headers: {
|
|
42452
|
+
[name: string]: unknown;
|
|
42453
|
+
};
|
|
42454
|
+
content?: never;
|
|
42455
|
+
};
|
|
44172
42456
|
};
|
|
44173
42457
|
};
|
|
44174
42458
|
put?: never;
|
|
@@ -47406,6 +45690,7 @@ export interface paths {
|
|
|
47406
45690
|
* 28: OptIn/Out Regions Not Supported.
|
|
47407
45691
|
* 41: You cannot change the private server price again so soon after the previous change. Please try again later.
|
|
47408
45692
|
* 44: The provided audience configuration is invalid. Ensure the audience list contains only supported audience values.
|
|
45693
|
+
* 52: Promotional text has been rejected.
|
|
47409
45694
|
*/
|
|
47410
45695
|
400: {
|
|
47411
45696
|
headers: {
|
|
@@ -47448,6 +45733,13 @@ export interface paths {
|
|
|
47448
45733
|
};
|
|
47449
45734
|
content?: never;
|
|
47450
45735
|
};
|
|
45736
|
+
/** @description 53: Promotional text safety validation is temporarily unavailable. */
|
|
45737
|
+
503: {
|
|
45738
|
+
headers: {
|
|
45739
|
+
[name: string]: unknown;
|
|
45740
|
+
};
|
|
45741
|
+
content?: never;
|
|
45742
|
+
};
|
|
47451
45743
|
};
|
|
47452
45744
|
};
|
|
47453
45745
|
trace?: never;
|
|
@@ -49924,11 +48216,6 @@ export interface components {
|
|
|
49924
48216
|
/** @description The MDE async operation. */
|
|
49925
48217
|
operation?: components["schemas"]["MdeOperation"] | null;
|
|
49926
48218
|
};
|
|
49927
|
-
CanInviteUserResponse: {
|
|
49928
|
-
canInvite?: boolean;
|
|
49929
|
-
doesOwnerPrivacyRestrictJoins?: boolean;
|
|
49930
|
-
inviteResponseType?: components["schemas"]["PrivateServerInviteResponseType"];
|
|
49931
|
-
};
|
|
49932
48219
|
CategoryResponse: {
|
|
49933
48220
|
/**
|
|
49934
48221
|
* @description The event category type of an event.
|
|
@@ -50321,13 +48608,6 @@ export interface components {
|
|
|
50321
48608
|
CreateMatchmakingServerAttributeDefinitionResponse: {
|
|
50322
48609
|
playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
|
|
50323
48610
|
};
|
|
50324
|
-
CreatePrivateServerRequest: {
|
|
50325
|
-
name?: string | null;
|
|
50326
|
-
/** Format: int64 */
|
|
50327
|
-
expectedPrice?: number;
|
|
50328
|
-
isPurchaseConfirmed?: boolean | null;
|
|
50329
|
-
idempotencyKey?: string | null;
|
|
50330
|
-
};
|
|
50331
48611
|
/** @description Request model for creating a save */
|
|
50332
48612
|
CreateSaveRequest: {
|
|
50333
48613
|
/** @description The type of asset being saved */
|
|
@@ -51468,12 +49748,6 @@ export interface components {
|
|
|
51468
49748
|
* @enum {string}
|
|
51469
49749
|
*/
|
|
51470
49750
|
"GamePasses.PricingFeature": "Invalid" | "PriceOptimization" | "UserFixedPrice" | "RegionalPricing";
|
|
51471
|
-
GameResponse: {
|
|
51472
|
-
/** Format: int64 */
|
|
51473
|
-
id?: number;
|
|
51474
|
-
name?: string | null;
|
|
51475
|
-
rootPlace?: components["schemas"]["PlaceResponse"] | null;
|
|
51476
|
-
};
|
|
51477
49751
|
/** @description Response model for listing a game server log */
|
|
51478
49752
|
GameServerLog: {
|
|
51479
49753
|
/**
|
|
@@ -51512,6 +49786,11 @@ export interface components {
|
|
|
51512
49786
|
* @description How many more messages were present in the time window beyond our overall rate limits
|
|
51513
49787
|
*/
|
|
51514
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;
|
|
51515
49794
|
};
|
|
51516
49795
|
GameUpdateStatus: {
|
|
51517
49796
|
/** Format: uuid */
|
|
@@ -52240,6 +50519,17 @@ export interface components {
|
|
|
52240
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;
|
|
52241
50520
|
name?: string;
|
|
52242
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
|
+
};
|
|
52243
50533
|
/** @description A homepage thumbnail associated with a universe. */
|
|
52244
50534
|
HomepageThumbnail: {
|
|
52245
50535
|
/** @description The unique identifier of the homepage thumbnail. */
|
|
@@ -52449,7 +50739,6 @@ export interface components {
|
|
|
52449
50739
|
* @description The resource path of the inventory item.
|
|
52450
50740
|
*
|
|
52451
50741
|
* Format: `users/{user_id}/inventory-items/{inventory_item_id}`
|
|
52452
|
-
* @example users/123/inventory-items/some-inventory-item-id
|
|
52453
50742
|
*/
|
|
52454
50743
|
path?: string;
|
|
52455
50744
|
/** @description Populated if this item is an asset. */
|
|
@@ -52466,86 +50755,21 @@ export interface components {
|
|
|
52466
50755
|
* time when the user purchased a private server or was awarded a badge.
|
|
52467
50756
|
*
|
|
52468
50757
|
* This field is currently not populated for passes.
|
|
52469
|
-
* @example 2023-07-05T12:34:56Z
|
|
52470
50758
|
*/
|
|
52471
|
-
|
|
50759
|
+
addTime?: string | null;
|
|
52472
50760
|
};
|
|
52473
50761
|
/** @description Specific fields only applicable to assets */
|
|
52474
50762
|
InventoryItem_AssetDetails: {
|
|
52475
|
-
/**
|
|
52476
|
-
* @description A unique ID that identifies an asset.
|
|
52477
|
-
* @example 12928981934
|
|
52478
|
-
*/
|
|
50763
|
+
/** @description A unique ID that identifies an asset. */
|
|
52479
50764
|
assetId?: string;
|
|
52480
50765
|
/**
|
|
52481
|
-
* Format: enum
|
|
52482
50766
|
* @description The specific asset type of this item.
|
|
52483
|
-
*
|
|
52484
|
-
* Possible values:
|
|
52485
|
-
*
|
|
52486
|
-
* | Value | Description |
|
|
52487
|
-
* | --- | --- |
|
|
52488
|
-
* | INVENTORY_ITEM_ASSET_TYPE_UNSPECIFIED | Default InventoryItemAssetType |
|
|
52489
|
-
* | CLASSIC_TSHIRT | Classic Tshirt |
|
|
52490
|
-
* | AUDIO | Audio |
|
|
52491
|
-
* | HAT | Hat |
|
|
52492
|
-
* | MODEL | Model |
|
|
52493
|
-
* | CLASSIC_SHIRT | Classic Shirt |
|
|
52494
|
-
* | CLASSIC_PANTS | Classic Pants |
|
|
52495
|
-
* | DECAL | Decal |
|
|
52496
|
-
* | CLASSIC_HEAD | Classic Head |
|
|
52497
|
-
* | FACE | Face |
|
|
52498
|
-
* | GEAR | Gear |
|
|
52499
|
-
* | ANIMATION | Animation |
|
|
52500
|
-
* | TORSO | Torso |
|
|
52501
|
-
* | RIGHT_ARM | Right Arm |
|
|
52502
|
-
* | LEFT_ARM | Left Arm |
|
|
52503
|
-
* | LEFT_LEG | Left Leg |
|
|
52504
|
-
* | RIGHT_LEG | Right Leg |
|
|
52505
|
-
* | PACKAGE | Package |
|
|
52506
|
-
* | PLUGIN | Plugin |
|
|
52507
|
-
* | MESH_PART | Mesh Part |
|
|
52508
|
-
* | HAIR_ACCESSORY | Hair Accessory |
|
|
52509
|
-
* | FACE_ACCESSORY | Face Accessory |
|
|
52510
|
-
* | NECK_ACCESSORY | Neck Accessory |
|
|
52511
|
-
* | SHOULDER_ACCESSORY | Shoulder Accessory |
|
|
52512
|
-
* | FRONT_ACCESSORY | Front Accessory |
|
|
52513
|
-
* | BACK_ACCESSORY | Back Accessory |
|
|
52514
|
-
* | WAIST_ACCESSORY | Waist Accessory |
|
|
52515
|
-
* | CLIMB_ANIMATION | Climb Animation |
|
|
52516
|
-
* | DEATH_ANIMATION | Death Animation |
|
|
52517
|
-
* | FALL_ANIMATION | Fall Animation |
|
|
52518
|
-
* | IDLE_ANIMATION | Idle Animation |
|
|
52519
|
-
* | JUMP_ANIMATION | Jump Animation |
|
|
52520
|
-
* | RUN_ANIMATION | Run Animation |
|
|
52521
|
-
* | SWIM_ANIMATION | Swim Animation |
|
|
52522
|
-
* | WALK_ANIMATION | Walk Animation |
|
|
52523
|
-
* | POSE_ANIMATION | Pose Animation |
|
|
52524
|
-
* | EMOTE_ANIMATION | Emote Animation |
|
|
52525
|
-
* | VIDEO | Video |
|
|
52526
|
-
* | TSHIRT_ACCESSORY | Tshirt Accessory |
|
|
52527
|
-
* | SHIRT_ACCESSORY | Shirt Accessory |
|
|
52528
|
-
* | PANTS_ACCESSORY | Pants Accessory |
|
|
52529
|
-
* | JACKET_ACCESSORY | Jacket Accessory |
|
|
52530
|
-
* | SWEATER_ACCESSORY | Sweater Accessory |
|
|
52531
|
-
* | SHORTS_ACCESSORY | Shorts Accessory |
|
|
52532
|
-
* | LEFT_SHOE_ACCESSORY | Left Shoe Accessory |
|
|
52533
|
-
* | RIGHT_SHOE_ACCESSORY | Right Shoe Accessory |
|
|
52534
|
-
* | DRESS_SKIRT_ACCESSORY | Dress Skirt Accessory |
|
|
52535
|
-
* | EYEBROW_ACCESSORY | Eyebrow Accessory |
|
|
52536
|
-
* | EYELASH_ACCESSORY | Eyelash Accessory |
|
|
52537
|
-
* | MOOD_ANIMATION | Mood Animation |
|
|
52538
|
-
* | DYNAMIC_HEAD | Dynamic Head |
|
|
52539
|
-
* | CREATED_PLACE | Created Place |
|
|
52540
|
-
* | PURCHASED_PLACE | Purchased Place |
|
|
52541
|
-
* @example INVENTORY_ITEM_ASSET_TYPE_UNSPECIFIED
|
|
52542
50767
|
* @enum {string}
|
|
52543
50768
|
*/
|
|
52544
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";
|
|
52545
50770
|
/**
|
|
52546
50771
|
* @description A unique ID that identifies an instance or "copy" of the asset that's
|
|
52547
50772
|
* owned by a user.
|
|
52548
|
-
* @example 173413781720
|
|
52549
50773
|
*/
|
|
52550
50774
|
instanceId?: string;
|
|
52551
50775
|
/**
|
|
@@ -52556,63 +50780,39 @@ export interface components {
|
|
|
52556
50780
|
};
|
|
52557
50781
|
/** @description Specific fields that are applicable to a badge. */
|
|
52558
50782
|
InventoryItem_BadgeDetails: {
|
|
52559
|
-
/**
|
|
52560
|
-
* @description A unique ID that identifies a badge.
|
|
52561
|
-
* @example 119925991
|
|
52562
|
-
*/
|
|
50783
|
+
/** @description A unique ID that identifies a badge. */
|
|
52563
50784
|
badgeId?: string;
|
|
52564
50785
|
};
|
|
52565
50786
|
/** @description Specific fields that are applicable to a collectible. */
|
|
52566
50787
|
InventoryItem_CollectibleDetails: {
|
|
52567
|
-
/**
|
|
52568
|
-
* @description A unique ID of a Roblox item that is a collectible.
|
|
52569
|
-
* @example 521cca19-75bb-4e05-a0af-633b1532c24d
|
|
52570
|
-
*/
|
|
50788
|
+
/** @description A unique ID of a Roblox item that is a collectible. */
|
|
52571
50789
|
itemId?: string;
|
|
52572
50790
|
/**
|
|
52573
50791
|
* @description A unique ID of an individual copy of a collectible with ownership tied
|
|
52574
50792
|
* to a group or user.
|
|
52575
|
-
* @example a8a27d38-ee51-4cf4-8b0a-485d0dfd8607
|
|
52576
50793
|
*/
|
|
52577
50794
|
instanceId?: string;
|
|
52578
50795
|
/**
|
|
52579
|
-
* Format: enum
|
|
52580
50796
|
* @description The instance state of this specific Collectible Item Instance which
|
|
52581
50797
|
* affects whether it can be resold or traded.
|
|
52582
|
-
*
|
|
52583
|
-
* Possible values:
|
|
52584
|
-
*
|
|
52585
|
-
* | Value | Description |
|
|
52586
|
-
* | --- | --- |
|
|
52587
|
-
* | COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED | Default CollectibleItemInstanceState |
|
|
52588
|
-
* | AVAILABLE | Collectible item is available for all actions |
|
|
52589
|
-
* | HOLD | Collectible item is on hold (can't be resold or traded) |
|
|
52590
|
-
* @example COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED
|
|
52591
|
-
* @enum {string}
|
|
50798
|
+
* @enum {string|null}
|
|
52592
50799
|
*/
|
|
52593
|
-
instanceState?: "COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED" | "AVAILABLE" | "HOLD";
|
|
50800
|
+
instanceState?: "COLLECTIBLE_ITEM_INSTANCE_STATE_UNSPECIFIED" | "AVAILABLE" | "HOLD" | null;
|
|
52594
50801
|
/**
|
|
52595
50802
|
* Format: int64
|
|
52596
50803
|
* @description If the asset is a Limited, a user-visible number that shows this item is
|
|
52597
50804
|
* the nth replica of the asset. Otherwise, this attribute will be omitted.
|
|
52598
|
-
* @example 160
|
|
52599
50805
|
*/
|
|
52600
|
-
serialNumber?: number;
|
|
50806
|
+
serialNumber?: number | null;
|
|
52601
50807
|
};
|
|
52602
50808
|
/** @description Specific fields that are applicable to a game pass. */
|
|
52603
50809
|
InventoryItem_GamePassDetails: {
|
|
52604
|
-
/**
|
|
52605
|
-
* @description A unique ID that identifies a game pass.
|
|
52606
|
-
* @example 83167572
|
|
52607
|
-
*/
|
|
50810
|
+
/** @description A unique ID that identifies a game pass. */
|
|
52608
50811
|
gamePassId?: string;
|
|
52609
50812
|
};
|
|
52610
50813
|
/** @description Specific fields that are applicable to a private server. */
|
|
52611
50814
|
InventoryItem_PrivateServerDetails: {
|
|
52612
|
-
/**
|
|
52613
|
-
* @description A unique ID that identifies a private server.
|
|
52614
|
-
* @example 175156
|
|
52615
|
-
*/
|
|
50815
|
+
/** @description A unique ID that identifies a private server. */
|
|
52616
50816
|
privateServerId?: string;
|
|
52617
50817
|
};
|
|
52618
50818
|
/** @enum {string} */
|
|
@@ -53753,35 +51953,6 @@ export interface components {
|
|
|
53753
51953
|
* @enum {string}
|
|
53754
51954
|
*/
|
|
53755
51955
|
MusicChartType: "None" | "Current" | "Week" | "Month" | "Year";
|
|
53756
|
-
MyPrivateServersData: {
|
|
53757
|
-
active?: boolean;
|
|
53758
|
-
/** Format: int64 */
|
|
53759
|
-
universeId?: number;
|
|
53760
|
-
/** Format: int64 */
|
|
53761
|
-
placeId?: number | null;
|
|
53762
|
-
name?: string | null;
|
|
53763
|
-
/** Format: int64 */
|
|
53764
|
-
ownerId?: number;
|
|
53765
|
-
ownerName?: string | null;
|
|
53766
|
-
/** Format: int64 */
|
|
53767
|
-
priceInRobux?: number | null;
|
|
53768
|
-
/** Format: int64 */
|
|
53769
|
-
privateServerId?: number;
|
|
53770
|
-
/** Format: date-time */
|
|
53771
|
-
expirationDate?: string;
|
|
53772
|
-
willRenew?: boolean;
|
|
53773
|
-
universeName?: string | null;
|
|
53774
|
-
/** Format: int64 */
|
|
53775
|
-
purchaseScheduleId?: number | null;
|
|
53776
|
-
/** Format: int64 */
|
|
53777
|
-
totalDiscountAmountInRobux?: number | null;
|
|
53778
|
-
metadata?: components["schemas"]["PrivateServerSubscriptionMetadata"] | null;
|
|
53779
|
-
};
|
|
53780
|
-
MyPrivateServersResponse: {
|
|
53781
|
-
nextPageCursor?: string | null;
|
|
53782
|
-
previousPageCursor?: string | null;
|
|
53783
|
-
data?: components["schemas"]["MyPrivateServersData"][] | null;
|
|
53784
|
-
};
|
|
53785
51956
|
/** @enum {string} */
|
|
53786
51957
|
O18EligibilityTag: "None" | "O18Eligible" | "O18EligibleAndPlus";
|
|
53787
51958
|
/** @description This resource represents a long-running operation that is the result of a network API call. */
|
|
@@ -54185,11 +52356,6 @@ export interface components {
|
|
|
54185
52356
|
*/
|
|
54186
52357
|
excludeCurrentVersion?: boolean | null;
|
|
54187
52358
|
};
|
|
54188
|
-
PlaceResponse: {
|
|
54189
|
-
/** Format: int64 */
|
|
54190
|
-
id?: number;
|
|
54191
|
-
name?: string | null;
|
|
54192
|
-
};
|
|
54193
52359
|
/** @description Per-place restart status. */
|
|
54194
52360
|
PlaceRestartStatus: {
|
|
54195
52361
|
/** @description Current state of the place restart. */
|
|
@@ -54470,15 +52636,6 @@ export interface components {
|
|
|
54470
52636
|
};
|
|
54471
52637
|
/** @enum {string} */
|
|
54472
52638
|
PricingFeature: "Invalid" | "PriceOptimization" | "UserFixedPrice" | "RegionalPricing";
|
|
54473
|
-
/** @enum {string} */
|
|
54474
|
-
PrivateServerInviteResponseType: "Invalid" | "CanInvite" | "UnableToAddAnyUser" | "UnableToAddNonFriends" | "UnableToAddSpecificUser";
|
|
54475
|
-
PrivateServerPermissionsResponse: {
|
|
54476
|
-
clanAllowed?: boolean;
|
|
54477
|
-
/** Format: int64 */
|
|
54478
|
-
enemyClanId?: number | null;
|
|
54479
|
-
friendsAllowed?: boolean;
|
|
54480
|
-
users?: components["schemas"]["SkinnyUserResponse"][] | null;
|
|
54481
|
-
};
|
|
54482
52639
|
PrivateServerPlayerResponse: {
|
|
54483
52640
|
/** Format: int64 */
|
|
54484
52641
|
id?: number;
|
|
@@ -54486,61 +52643,6 @@ export interface components {
|
|
|
54486
52643
|
displayName?: string | null;
|
|
54487
52644
|
playerToken?: string | null;
|
|
54488
52645
|
};
|
|
54489
|
-
PrivateServerResponse: {
|
|
54490
|
-
/** Format: int64 */
|
|
54491
|
-
id?: number;
|
|
54492
|
-
name?: string | null;
|
|
54493
|
-
game?: components["schemas"]["GameResponse"] | null;
|
|
54494
|
-
joinCode?: string | null;
|
|
54495
|
-
active?: boolean;
|
|
54496
|
-
subscription?: components["schemas"]["PrivateServerSubscriptionResponse"] | null;
|
|
54497
|
-
permissions?: components["schemas"]["PrivateServerPermissionsResponse"] | null;
|
|
54498
|
-
voiceSettings?: components["schemas"]["PrivateServerVoiceSettingsResponse"] | null;
|
|
54499
|
-
link?: string | null;
|
|
54500
|
-
};
|
|
54501
|
-
PrivateServerSubscriptionMetadata: {
|
|
54502
|
-
privateServerSubscriptionTags?: components["schemas"]["PrivateServerSubscriptionTag"][] | null;
|
|
54503
|
-
};
|
|
54504
|
-
PrivateServerSubscriptionResponse: {
|
|
54505
|
-
active?: boolean;
|
|
54506
|
-
expired?: boolean;
|
|
54507
|
-
/** Format: date-time */
|
|
54508
|
-
expirationDate?: string;
|
|
54509
|
-
/** Format: int64 */
|
|
54510
|
-
price?: number | null;
|
|
54511
|
-
canRenew?: boolean;
|
|
54512
|
-
hasInsufficientFunds?: boolean;
|
|
54513
|
-
hasRecurringProfile?: boolean;
|
|
54514
|
-
hasPriceChanged?: boolean;
|
|
54515
|
-
/** Format: int64 */
|
|
54516
|
-
purchaseScheduleId?: number | null;
|
|
54517
|
-
/** Format: int64 */
|
|
54518
|
-
totalDiscountAmountInRobux?: number | null;
|
|
54519
|
-
metadata?: components["schemas"]["PrivateServerSubscriptionMetadata"] | null;
|
|
54520
|
-
};
|
|
54521
|
-
/** @enum {string} */
|
|
54522
|
-
PrivateServerSubscriptionTag: "Invalid" | "RobloxSubscription" | "RobloxSubscriptionActiveBenefit";
|
|
54523
|
-
PrivateServerUpdatePermissionsRequest: {
|
|
54524
|
-
clanAllowed?: boolean | null;
|
|
54525
|
-
/** Format: int64 */
|
|
54526
|
-
enemyClanId?: number | null;
|
|
54527
|
-
friendsAllowed?: boolean | null;
|
|
54528
|
-
usersToAdd?: number[] | null;
|
|
54529
|
-
usersToRemove?: number[] | null;
|
|
54530
|
-
};
|
|
54531
|
-
PrivateServerUpdateRequest: {
|
|
54532
|
-
name?: string | null;
|
|
54533
|
-
newJoinCode?: boolean | null;
|
|
54534
|
-
active?: boolean | null;
|
|
54535
|
-
};
|
|
54536
|
-
PrivateServerUpdateSubscriptionRequest: {
|
|
54537
|
-
active?: boolean | null;
|
|
54538
|
-
/** Format: int64 */
|
|
54539
|
-
price?: number | null;
|
|
54540
|
-
};
|
|
54541
|
-
PrivateServerVoiceSettingsResponse: {
|
|
54542
|
-
enabled?: boolean;
|
|
54543
|
-
};
|
|
54544
52646
|
"PrivateServersApi.GameServerResponse": {
|
|
54545
52647
|
/** Format: uuid */
|
|
54546
52648
|
id?: string | null;
|
|
@@ -54563,11 +52665,6 @@ export interface components {
|
|
|
54563
52665
|
};
|
|
54564
52666
|
/** @enum {string} */
|
|
54565
52667
|
"PrivateServersApi.SortOrder": "Asc" | "Desc";
|
|
54566
|
-
PrivateServersEnabledInUniverseResponse: {
|
|
54567
|
-
privateServersEnabled?: boolean;
|
|
54568
|
-
};
|
|
54569
|
-
/** @enum {string} */
|
|
54570
|
-
PrivateServersTab: "MyPrivateServers" | "OtherPrivateServers";
|
|
54571
52668
|
ProblemDetails: ({
|
|
54572
52669
|
type?: string | null;
|
|
54573
52670
|
title?: string | null;
|
|
@@ -56654,52 +54751,6 @@ export interface components {
|
|
|
56654
54751
|
/** @description Whether or not all the outfit contents were successfully worn */
|
|
56655
54752
|
success?: boolean;
|
|
56656
54753
|
};
|
|
56657
|
-
/** @description Model of an asset version. */
|
|
56658
|
-
"Roblox.Api.Develop.AssetVersion": {
|
|
56659
|
-
/**
|
|
56660
|
-
* Format: int64
|
|
56661
|
-
* @description The VersionID of the asset version.
|
|
56662
|
-
*/
|
|
56663
|
-
Id?: number;
|
|
56664
|
-
/**
|
|
56665
|
-
* Format: int64
|
|
56666
|
-
* @description The ID of the asset.
|
|
56667
|
-
*/
|
|
56668
|
-
assetId?: number;
|
|
56669
|
-
/**
|
|
56670
|
-
* Format: int32
|
|
56671
|
-
* @description The version number.
|
|
56672
|
-
*/
|
|
56673
|
-
assetVersionNumber?: number;
|
|
56674
|
-
/** @description Type of the asset version creator. */
|
|
56675
|
-
creatorType?: string;
|
|
56676
|
-
/**
|
|
56677
|
-
* Format: int64
|
|
56678
|
-
* @description ID of the asset version creator.
|
|
56679
|
-
*/
|
|
56680
|
-
creatorTargetId?: number;
|
|
56681
|
-
/**
|
|
56682
|
-
* Format: int64
|
|
56683
|
-
* @description ID of the universe this asset version was created in.
|
|
56684
|
-
*/
|
|
56685
|
-
creatingUniverseId?: number;
|
|
56686
|
-
/**
|
|
56687
|
-
* Format: date-time
|
|
56688
|
-
* @description The created date of this asset version.
|
|
56689
|
-
*/
|
|
56690
|
-
created?: string;
|
|
56691
|
-
/**
|
|
56692
|
-
* @description Indicates if this version is same to current published version.
|
|
56693
|
-
* This property is available on /v1/{assetId}/published-versions and /v1/{assetId}/version/{versionNumber}.
|
|
56694
|
-
*/
|
|
56695
|
-
isEqualToCurrentPublishedVersion?: boolean;
|
|
56696
|
-
/**
|
|
56697
|
-
* @description Indicates if this version is / was published.
|
|
56698
|
-
* This property is available on /v1/{assetId}/saved-versions.
|
|
56699
|
-
* This should be true for all assets coming from GetAssetPublishedVersionsByAssetId
|
|
56700
|
-
*/
|
|
56701
|
-
isPublished?: boolean;
|
|
56702
|
-
};
|
|
56703
54754
|
/** @description The result of various checks for a user's eligibility to activate a given universe from private to public. */
|
|
56704
54755
|
"Roblox.Api.Develop.Models.ActivationEligibilityResponse": {
|
|
56705
54756
|
/**
|
|
@@ -57001,32 +55052,6 @@ export interface components {
|
|
|
57001
55052
|
*/
|
|
57002
55053
|
activeSubscriptionsCount?: number;
|
|
57003
55054
|
};
|
|
57004
|
-
/** @description Asset voting information */
|
|
57005
|
-
"Roblox.Api.Develop.Models.Response.AssetVotingModel": {
|
|
57006
|
-
/**
|
|
57007
|
-
* Format: int64
|
|
57008
|
-
* @description The !:IAsset's id.
|
|
57009
|
-
*/
|
|
57010
|
-
assetId?: number;
|
|
57011
|
-
/** @description Whether the user has voted on this !:IAsset. */
|
|
57012
|
-
hasUserVoted?: boolean;
|
|
57013
|
-
/** @description Whether the user can vote on this !:IAsset. */
|
|
57014
|
-
canUserVote?: boolean;
|
|
57015
|
-
/** @description Whether votes should be shown. */
|
|
57016
|
-
shouldShowVotes?: boolean;
|
|
57017
|
-
/**
|
|
57018
|
-
* Format: int64
|
|
57019
|
-
* @description The number of up votes.
|
|
57020
|
-
*/
|
|
57021
|
-
upVotes?: number;
|
|
57022
|
-
/**
|
|
57023
|
-
* Format: int64
|
|
57024
|
-
* @description The number of down votes.
|
|
57025
|
-
*/
|
|
57026
|
-
downVotes?: number;
|
|
57027
|
-
/** @description The reason this !:IAsset cannot be voted on. */
|
|
57028
|
-
reasonForNotAbleToVote?: string;
|
|
57029
|
-
};
|
|
57030
55055
|
/** @description Team create settings */
|
|
57031
55056
|
"Roblox.Api.Develop.Models.Response.TeamCreateSettingsResponse": {
|
|
57032
55057
|
/** @description Whether or not the universe should be enabled for team create */
|
|
@@ -57211,6 +55236,8 @@ export interface components {
|
|
|
57211
55236
|
name?: string;
|
|
57212
55237
|
/** @description The description of the universe. */
|
|
57213
55238
|
description?: string;
|
|
55239
|
+
/** @description Promotional text for the universe. Empty stores an empty value. */
|
|
55240
|
+
promotionalText?: string;
|
|
57214
55241
|
/**
|
|
57215
55242
|
* Format: int32
|
|
57216
55243
|
* @description Which avatar types are allowed in the universe.
|
|
@@ -57312,6 +55339,8 @@ export interface components {
|
|
|
57312
55339
|
id?: number;
|
|
57313
55340
|
/** @description The universe name. */
|
|
57314
55341
|
name?: string;
|
|
55342
|
+
/** @description Promotional Text for the universe. */
|
|
55343
|
+
promotionalText?: string;
|
|
57315
55344
|
/**
|
|
57316
55345
|
* Format: int32
|
|
57317
55346
|
* @description Which avatar types are allowed in the universe. ['MorphToR6' = 1, 'PlayerChoice' = 2, 'MorphToR15' = 3]
|
|
@@ -57419,6 +55448,8 @@ export interface components {
|
|
|
57419
55448
|
name?: string;
|
|
57420
55449
|
/** @description The universe description. */
|
|
57421
55450
|
description?: string;
|
|
55451
|
+
/** @description Promotional Text for the universe. */
|
|
55452
|
+
promotionalText?: string;
|
|
57422
55453
|
/**
|
|
57423
55454
|
* Format: int32
|
|
57424
55455
|
* @description Which avatar types are allowed in the universe. ['MorphToR6' = 1, 'PlayerChoice' = 2, 'MorphToR15' = 3]
|
|
@@ -58431,24 +56462,6 @@ export interface components {
|
|
|
58431
56462
|
/** @description The new enabled state of the badge. */
|
|
58432
56463
|
enabled?: boolean;
|
|
58433
56464
|
};
|
|
58434
|
-
/** @description A model to represent asset favorites. */
|
|
58435
|
-
"Roblox.Catalog.Api.AssetFavoriteModel": {
|
|
58436
|
-
/**
|
|
58437
|
-
* Format: int64
|
|
58438
|
-
* @description The Id of the asset being favorited.
|
|
58439
|
-
*/
|
|
58440
|
-
assetId?: number;
|
|
58441
|
-
/**
|
|
58442
|
-
* Format: int64
|
|
58443
|
-
* @description The Id of the user favoriting the asset.
|
|
58444
|
-
*/
|
|
58445
|
-
userId?: number;
|
|
58446
|
-
/**
|
|
58447
|
-
* Format: date-time
|
|
58448
|
-
* @description The time at which the user favorited the asset.
|
|
58449
|
-
*/
|
|
58450
|
-
created?: string;
|
|
58451
|
-
};
|
|
58452
56465
|
"Roblox.Catalog.Api.BundleCreatorModel": {
|
|
58453
56466
|
/** Format: int64 */
|
|
58454
56467
|
id?: number;
|
|
@@ -58475,24 +56488,6 @@ export interface components {
|
|
|
58475
56488
|
collectibleItemDetail?: components["schemas"]["Roblox.Catalog.Api.CollectibleItemDetail"];
|
|
58476
56489
|
discountInformation?: components["schemas"]["Roblox.Catalog.Api.DiscountInformation"];
|
|
58477
56490
|
};
|
|
58478
|
-
/** @description A model to represent bundle favorites. */
|
|
58479
|
-
"Roblox.Catalog.Api.BundleFavoriteModel": {
|
|
58480
|
-
/**
|
|
58481
|
-
* Format: int64
|
|
58482
|
-
* @description The Id of the bundle being favorited.
|
|
58483
|
-
*/
|
|
58484
|
-
bundleId?: number;
|
|
58485
|
-
/**
|
|
58486
|
-
* Format: int64
|
|
58487
|
-
* @description The Id of the user favoriting the bundle.
|
|
58488
|
-
*/
|
|
58489
|
-
userId?: number;
|
|
58490
|
-
/**
|
|
58491
|
-
* Format: date-time
|
|
58492
|
-
* @description The time at which the user favorited the bundle.
|
|
58493
|
-
*/
|
|
58494
|
-
created?: string;
|
|
58495
|
-
};
|
|
58496
56491
|
"Roblox.Catalog.Api.BundleItemDetailModel": {
|
|
58497
56492
|
owned?: boolean;
|
|
58498
56493
|
/** Format: int64 */
|
|
@@ -58668,6 +56663,7 @@ export interface components {
|
|
|
58668
56663
|
*/
|
|
58669
56664
|
itemCreatedUtc?: string;
|
|
58670
56665
|
discountInformation?: components["schemas"]["Roblox.Catalog.Api.DiscountInformation"];
|
|
56666
|
+
license?: components["schemas"]["Roblox.Catalog.Api.CollectibleLicense"];
|
|
58671
56667
|
/**
|
|
58672
56668
|
* Format: int64
|
|
58673
56669
|
* @description The Item Id.
|
|
@@ -58792,37 +56788,6 @@ export interface components {
|
|
|
58792
56788
|
nextPageCursor?: string;
|
|
58793
56789
|
data?: components["schemas"]["Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2"][];
|
|
58794
56790
|
};
|
|
58795
|
-
/** @description Response model for category. */
|
|
58796
|
-
"Roblox.Catalog.Api.CategoryModel": {
|
|
58797
|
-
/**
|
|
58798
|
-
* Format: int32
|
|
58799
|
-
* @description Category type.
|
|
58800
|
-
* @enum {integer}
|
|
58801
|
-
*/
|
|
58802
|
-
category?: 0 | 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
|
58803
|
-
/** @description The associated public facing web_stable_id corresponding to internal taxonomy uuid for this category. */
|
|
58804
|
-
taxonomy?: string;
|
|
58805
|
-
/** @description List of AssetTypeIds corresponding to AssetType enum that this category returns. */
|
|
58806
|
-
assetTypeIds?: number[];
|
|
58807
|
-
/** @description List of bundleTypeIds corresponding to BundleType enum that this category returns. */
|
|
58808
|
-
bundleTypeIds?: number[];
|
|
58809
|
-
/**
|
|
58810
|
-
* Format: int32
|
|
58811
|
-
* @description Category id.
|
|
58812
|
-
*/
|
|
58813
|
-
categoryId?: number;
|
|
58814
|
-
/** @description Category name. */
|
|
58815
|
-
name?: string;
|
|
58816
|
-
/**
|
|
58817
|
-
* Format: int32
|
|
58818
|
-
* @description Category order index.
|
|
58819
|
-
*/
|
|
58820
|
-
orderIndex?: number;
|
|
58821
|
-
/** @description Subcategories under this category. */
|
|
58822
|
-
subcategories?: components["schemas"]["Roblox.Catalog.Api.SubcategoryModel"][];
|
|
58823
|
-
/** @description Gets or sets whether the category is searchable in search bar. */
|
|
58824
|
-
isSearchable?: boolean;
|
|
58825
|
-
};
|
|
58826
56791
|
"Roblox.Catalog.Api.CollectibleItemDetail": {
|
|
58827
56792
|
collectibleItemId?: string;
|
|
58828
56793
|
collectibleProductId?: string;
|
|
@@ -58863,6 +56828,16 @@ export interface components {
|
|
|
58863
56828
|
*/
|
|
58864
56829
|
resaleRestriction?: 0 | 1 | 2;
|
|
58865
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
|
+
};
|
|
58866
56841
|
"Roblox.Catalog.Api.Discount": {
|
|
58867
56842
|
/** Format: int64 */
|
|
58868
56843
|
robuxDiscountAmount?: number;
|
|
@@ -58898,17 +56873,6 @@ export interface components {
|
|
|
58898
56873
|
/** @description Gets or sets the search result engagement score. */
|
|
58899
56874
|
searchResultEngagementScore?: string;
|
|
58900
56875
|
};
|
|
58901
|
-
/** @description A response containing favorited bundles and whether there are more. */
|
|
58902
|
-
"Roblox.Catalog.Api.FavoriteBundlesResponse": {
|
|
58903
|
-
/** @description Collection of favorited bundles and associated details. */
|
|
58904
|
-
favorites?: components["schemas"]["Roblox.Catalog.Api.BundleDetailsModel"][];
|
|
58905
|
-
/** @description True if there exists a next page of favorited bundles. */
|
|
58906
|
-
moreFavorites?: boolean;
|
|
58907
|
-
/** @description Pagination cursor for the next page. */
|
|
58908
|
-
nextCursor?: string;
|
|
58909
|
-
/** @description Pagination cursor for the previous page. */
|
|
58910
|
-
previousCursor?: string;
|
|
58911
|
-
};
|
|
58912
56876
|
"Roblox.Catalog.Api.MultigetItemDetailsRequestItem": {
|
|
58913
56877
|
/**
|
|
58914
56878
|
* Format: int32
|
|
@@ -58957,30 +56921,6 @@ export interface components {
|
|
|
58957
56921
|
universeIds?: number[];
|
|
58958
56922
|
enabledUniverseIds?: number[];
|
|
58959
56923
|
};
|
|
58960
|
-
/** @description Response model for subcategory. */
|
|
58961
|
-
"Roblox.Catalog.Api.SubcategoryModel": {
|
|
58962
|
-
/**
|
|
58963
|
-
* Format: int32
|
|
58964
|
-
* @description Subcategory type.
|
|
58965
|
-
* @enum {integer}
|
|
58966
|
-
*/
|
|
58967
|
-
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;
|
|
58968
|
-
/** @description The taxonomy UUID associated with this node. */
|
|
58969
|
-
taxonomy?: string;
|
|
58970
|
-
/** @description List of AssetTypeIds corresponding to AssetType enum that this category returns. */
|
|
58971
|
-
assetTypeIds?: number[];
|
|
58972
|
-
/** @description List of bundleTypeIds corresponding to BundleType enum that this category returns. */
|
|
58973
|
-
bundleTypeIds?: number[];
|
|
58974
|
-
/**
|
|
58975
|
-
* Format: int32
|
|
58976
|
-
* @description Subcategory id.
|
|
58977
|
-
*/
|
|
58978
|
-
subcategoryId?: number;
|
|
58979
|
-
/** @description Subcategory name. */
|
|
58980
|
-
name?: string;
|
|
58981
|
-
/** @description Subcategory short name. */
|
|
58982
|
-
shortName?: string;
|
|
58983
|
-
};
|
|
58984
56924
|
/** @description public api model coaslescing taxonomy information for a single item. */
|
|
58985
56925
|
"Roblox.Catalog.Api.TaxonomyModel": {
|
|
58986
56926
|
/** @description The id value to pass into taxonomy field in SearchV2 catalog-api. */
|
|
@@ -59004,34 +56944,6 @@ export interface components {
|
|
|
59004
56944
|
/** @description To indicate if this option is selected by the client. */
|
|
59005
56945
|
selected?: boolean;
|
|
59006
56946
|
};
|
|
59007
|
-
/** @description Response model for avatar topics. */
|
|
59008
|
-
"Roblox.Catalog.Api.TopicModel": {
|
|
59009
|
-
/** @description The display topic name. */
|
|
59010
|
-
displayName?: string;
|
|
59011
|
-
/** @description The original topic name stored in the table. */
|
|
59012
|
-
originalTopicName?: string;
|
|
59013
|
-
};
|
|
59014
|
-
"Roblox.Catalog.Api.TopicRequestModel": {
|
|
59015
|
-
items?: components["schemas"]["Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.AvatarItem"][];
|
|
59016
|
-
selectTopics?: string[];
|
|
59017
|
-
inputQuery?: string;
|
|
59018
|
-
/**
|
|
59019
|
-
* Format: int32
|
|
59020
|
-
* @description Maximum number of topic results returned from the server.
|
|
59021
|
-
*/
|
|
59022
|
-
maxResult?: number;
|
|
59023
|
-
/**
|
|
59024
|
-
* Format: int32
|
|
59025
|
-
* @description ['Unknown' = 1, 'Male' = 2, 'Female' = 3]
|
|
59026
|
-
* @enum {integer}
|
|
59027
|
-
*/
|
|
59028
|
-
genderType?: 1 | 2 | 3;
|
|
59029
|
-
};
|
|
59030
|
-
"Roblox.Catalog.Api.TopicResponse": {
|
|
59031
|
-
topics?: components["schemas"]["Roblox.Catalog.Api.TopicModel"][];
|
|
59032
|
-
queries?: string[];
|
|
59033
|
-
error?: components["schemas"]["Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.Error"];
|
|
59034
|
-
};
|
|
59035
56947
|
/** @description Contains the names of the libraries in an Android Binary Module. */
|
|
59036
56948
|
"Roblox.ClientSettings.Api.Models.Response.AndroidBinaryLibraryNames": {
|
|
59037
56949
|
/** @description Name of the engine library. */
|
|
@@ -60425,10 +58337,10 @@ export interface components {
|
|
|
60425
58337
|
"Roblox.Games.Api.Models.Response.PlayabilityStatusResponse": {
|
|
60426
58338
|
/**
|
|
60427
58339
|
* Format: int32
|
|
60428
|
-
* @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]
|
|
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]
|
|
60429
58341
|
* @enum {integer}
|
|
60430
58342
|
*/
|
|
60431
|
-
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;
|
|
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;
|
|
60432
58344
|
/** @description Whether or not the universe is playable for the user */
|
|
60433
58345
|
isPlayable?: boolean;
|
|
60434
58346
|
/**
|
|
@@ -60463,10 +58375,10 @@ export interface components {
|
|
|
60463
58375
|
isPlayable?: boolean;
|
|
60464
58376
|
/**
|
|
60465
58377
|
* Format: int32
|
|
60466
|
-
* @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]
|
|
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]
|
|
60467
58379
|
* @enum {integer}
|
|
60468
58380
|
*/
|
|
60469
|
-
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;
|
|
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;
|
|
60470
58382
|
};
|
|
60471
58383
|
"Roblox.Games.Api.Models.Response.PurchaseData": {
|
|
60472
58384
|
/** @description Fiat purchase price in a localized string for display on client. */
|
|
@@ -61240,7 +59152,7 @@ export interface components {
|
|
|
61240
59152
|
name?: string;
|
|
61241
59153
|
/** @description The game description. */
|
|
61242
59154
|
description?: string;
|
|
61243
|
-
creator?: components["schemas"]["Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Core.CreatorType_"];
|
|
59155
|
+
creator?: components["schemas"]["GroupsApi.Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Core.CreatorType_"];
|
|
61244
59156
|
rootPlace?: components["schemas"]["GroupsApi.Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Assets.AssetType_"];
|
|
61245
59157
|
/**
|
|
61246
59158
|
* Format: date-time
|
|
@@ -61607,9 +59519,9 @@ export interface components {
|
|
|
61607
59519
|
};
|
|
61608
59520
|
"Roblox.Groups.Client.CommunityTierInfoResponse": {
|
|
61609
59521
|
/** Format: int64 */
|
|
61610
|
-
groupId
|
|
59522
|
+
groupId: number;
|
|
61611
59523
|
/** Format: int32 */
|
|
61612
|
-
currentTier
|
|
59524
|
+
currentTier: number;
|
|
61613
59525
|
/** Format: int32 */
|
|
61614
59526
|
previousTier?: number;
|
|
61615
59527
|
/** Format: date-time */
|
|
@@ -61643,11 +59555,11 @@ export interface components {
|
|
|
61643
59555
|
contentId?: string;
|
|
61644
59556
|
};
|
|
61645
59557
|
"Roblox.Groups.Client.TierCapabilities": {
|
|
61646
|
-
isEligibleForUnrestrictedMessages
|
|
59558
|
+
isEligibleForUnrestrictedMessages: boolean;
|
|
61647
59559
|
};
|
|
61648
59560
|
"Roblox.Groups.Client.TierEvaluationResultResponse": {
|
|
61649
|
-
tierInfo
|
|
61650
|
-
passedSignals
|
|
59561
|
+
tierInfo: components["schemas"]["Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
59562
|
+
passedSignals: string[];
|
|
61651
59563
|
requirements?: components["schemas"]["Roblox.Groups.Client.TierRequirement"][];
|
|
61652
59564
|
};
|
|
61653
59565
|
"Roblox.Groups.Client.TierRequirement": {
|
|
@@ -61656,8 +59568,8 @@ export interface components {
|
|
|
61656
59568
|
* @description ['OwnerModerationStatusOk' = 1, 'OwnerAgeEstimationVerified' = 2, 'OwnerIdVerified' = 3, 'OwnerTwoStepVerified' = 4, 'CommunityMeetsPlayerRequirement' = 5]
|
|
61657
59569
|
* @enum {integer}
|
|
61658
59570
|
*/
|
|
61659
|
-
key
|
|
61660
|
-
satisfied
|
|
59571
|
+
key: 1 | 2 | 3 | 4 | 5;
|
|
59572
|
+
satisfied: boolean;
|
|
61661
59573
|
};
|
|
61662
59574
|
"Roblox.InGameContentTables.Client.GameLocation": {
|
|
61663
59575
|
path?: string;
|
|
@@ -61876,59 +59788,6 @@ export interface components {
|
|
|
61876
59788
|
*/
|
|
61877
59789
|
created?: string;
|
|
61878
59790
|
};
|
|
61879
|
-
"Roblox.ItemConfiguration.Api.AssetCreationsDetailsRequest": {
|
|
61880
|
-
AssetIds?: number[];
|
|
61881
|
-
};
|
|
61882
|
-
"Roblox.ItemConfiguration.Api.AssetCreationsDetailsResponse": {
|
|
61883
|
-
/**
|
|
61884
|
-
* Format: int64
|
|
61885
|
-
* @description The asset Id.
|
|
61886
|
-
*/
|
|
61887
|
-
assetId?: number;
|
|
61888
|
-
/** @description The asset name. */
|
|
61889
|
-
name?: string;
|
|
61890
|
-
/**
|
|
61891
|
-
* @description The asset status. ['Unknown' = 0, 'ReviewPending' = 1, 'Moderated' = 2, 'ReviewApproved' = 3, 'OnSale' = 4, 'OffSale' = 5, 'DelayedRelease' = 6, 'Free' = 7]
|
|
61892
|
-
* @enum {string}
|
|
61893
|
-
*/
|
|
61894
|
-
status?: "Unknown" | "ReviewPending" | "Moderated" | "ReviewApproved" | "OnSale" | "OffSale" | "DelayedRelease" | "Free";
|
|
61895
|
-
/** @description The asset description. */
|
|
61896
|
-
description?: string;
|
|
61897
|
-
/**
|
|
61898
|
-
* @description The creator type. ['Unknown' = 0, 'User' = 1, 'Group' = 2]
|
|
61899
|
-
* @enum {string}
|
|
61900
|
-
*/
|
|
61901
|
-
creatorType?: "Unknown" | "User" | "Group";
|
|
61902
|
-
/**
|
|
61903
|
-
* Format: int64
|
|
61904
|
-
* @description The creator target Id.
|
|
61905
|
-
*/
|
|
61906
|
-
creatorTargetId?: number;
|
|
61907
|
-
/** @description Is the asset archived. */
|
|
61908
|
-
isArchived?: boolean;
|
|
61909
|
-
/** @description Type of the asset. */
|
|
61910
|
-
assetType?: string;
|
|
61911
|
-
/**
|
|
61912
|
-
* Format: date-time
|
|
61913
|
-
* @description Date asset was created.
|
|
61914
|
-
*/
|
|
61915
|
-
created?: string;
|
|
61916
|
-
/**
|
|
61917
|
-
* Format: date-time
|
|
61918
|
-
* @description Date asset was created.
|
|
61919
|
-
*/
|
|
61920
|
-
updated?: string;
|
|
61921
|
-
};
|
|
61922
|
-
/** @description Asset Status response model. */
|
|
61923
|
-
"Roblox.ItemConfiguration.Api.AssetCreationsResponse": {
|
|
61924
|
-
/**
|
|
61925
|
-
* Format: int64
|
|
61926
|
-
* @description The asset Id.
|
|
61927
|
-
*/
|
|
61928
|
-
assetId?: number;
|
|
61929
|
-
/** @description The asset name. */
|
|
61930
|
-
name?: string;
|
|
61931
|
-
};
|
|
61932
59791
|
"Roblox.ItemConfiguration.Api.Models.Request.PublishingPreferences.CreatePublishingPreferencesRequest": {
|
|
61933
59792
|
/** Format: int64 */
|
|
61934
59793
|
creatorUserId?: number;
|
|
@@ -62462,21 +60321,6 @@ export interface components {
|
|
|
62462
60321
|
*/
|
|
62463
60322
|
readonly OptionalIdCase?: "None" | "Id";
|
|
62464
60323
|
};
|
|
62465
|
-
"Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.AvatarItem": {
|
|
62466
|
-
/** Format: int64 */
|
|
62467
|
-
TargetId?: number;
|
|
62468
|
-
/**
|
|
62469
|
-
* Format: int32
|
|
62470
|
-
* @description ['Invalid' = 0, 'Asset' = 1, 'Bundle' = 2]
|
|
62471
|
-
* @enum {integer}
|
|
62472
|
-
*/
|
|
62473
|
-
ItemType?: 0 | 1 | 2;
|
|
62474
|
-
};
|
|
62475
|
-
"Roblox.MarketplaceTopicDiscovery.TopicDiscoveryService.V1Beta1.Error": {
|
|
62476
|
-
Message?: string;
|
|
62477
|
-
/** Format: int32 */
|
|
62478
|
-
Code?: number;
|
|
62479
|
-
};
|
|
62480
60324
|
"Roblox.Paging.CursoredPagedResult_Roblox.Friends.Api.Models.Response.FriendResponse_": {
|
|
62481
60325
|
PreviousCursor?: string;
|
|
62482
60326
|
PageItems?: components["schemas"]["Roblox.Friends.Api.Models.Response.FriendResponse"][];
|
|
@@ -62601,73 +60445,6 @@ export interface components {
|
|
|
62601
60445
|
name?: string;
|
|
62602
60446
|
displayName?: string;
|
|
62603
60447
|
};
|
|
62604
|
-
/** @description Model for asset quota. */
|
|
62605
|
-
"Roblox.Publish.Api.AssetQuota": {
|
|
62606
|
-
/** @description Duration type of the quota. */
|
|
62607
|
-
duration?: string;
|
|
62608
|
-
/**
|
|
62609
|
-
* Format: int64
|
|
62610
|
-
* @description Current usage of the quota.
|
|
62611
|
-
*/
|
|
62612
|
-
usage?: number;
|
|
62613
|
-
/**
|
|
62614
|
-
* Format: int64
|
|
62615
|
-
* @description Capacity of the quota.
|
|
62616
|
-
*/
|
|
62617
|
-
capacity?: number;
|
|
62618
|
-
/** @description Expiration time of current usage limit. */
|
|
62619
|
-
expirationTime?: string;
|
|
62620
|
-
};
|
|
62621
|
-
/** @description Response model for asset quotas. */
|
|
62622
|
-
"Roblox.Publish.Api.AssetQuotasResponse": {
|
|
62623
|
-
/** @description A list of quotas. */
|
|
62624
|
-
quotas?: components["schemas"]["Roblox.Publish.Api.AssetQuota"][];
|
|
62625
|
-
};
|
|
62626
|
-
/** @description Response model for publish audio. */
|
|
62627
|
-
"Roblox.Publish.Api.PublishAudioResponse": {
|
|
62628
|
-
/**
|
|
62629
|
-
* Format: int64
|
|
62630
|
-
* @description Id of the published asset.
|
|
62631
|
-
*/
|
|
62632
|
-
Id?: number;
|
|
62633
|
-
/** @description Name of the published asset. */
|
|
62634
|
-
Name?: string;
|
|
62635
|
-
};
|
|
62636
|
-
/** @description A request model for uploading an audio file. */
|
|
62637
|
-
"Roblox.Publish.Api.UploadAudioRequest": {
|
|
62638
|
-
/** @description Name for the audio file. */
|
|
62639
|
-
name?: string;
|
|
62640
|
-
/** @description File to be uploaded. Formatted as a base64 string. */
|
|
62641
|
-
file?: string;
|
|
62642
|
-
/**
|
|
62643
|
-
* Format: int64
|
|
62644
|
-
* @description Id of the group you are publishing the audio asset for. Null if not publishing under a group.
|
|
62645
|
-
*/
|
|
62646
|
-
groupId?: number;
|
|
62647
|
-
/**
|
|
62648
|
-
* @description The source of funds for payment.
|
|
62649
|
-
* User: Use personal funds of authenticated user.
|
|
62650
|
-
* Group: Use group funds from Roblox.Publish.Api.UploadAudioRequest.GroupId.
|
|
62651
|
-
* Null/Empty: Will default to authenticated user funds.
|
|
62652
|
-
*/
|
|
62653
|
-
paymentSource?: string;
|
|
62654
|
-
/**
|
|
62655
|
-
* Format: int64
|
|
62656
|
-
* @description Estimated file size of the audio file in bytes.
|
|
62657
|
-
*/
|
|
62658
|
-
estimatedFileSize?: number;
|
|
62659
|
-
/**
|
|
62660
|
-
* Format: double
|
|
62661
|
-
* @description Estimated duration of the audio file in seconds.
|
|
62662
|
-
*/
|
|
62663
|
-
estimatedDuration?: number;
|
|
62664
|
-
/**
|
|
62665
|
-
* Format: int32
|
|
62666
|
-
* @description The asset privacy of the audio asset.
|
|
62667
|
-
* @enum {integer}
|
|
62668
|
-
*/
|
|
62669
|
-
assetPrivacy?: 1 | 2;
|
|
62670
|
-
};
|
|
62671
60448
|
/** @description A response used when an upload has completed. */
|
|
62672
60449
|
"Roblox.Publish.Api.UploadResponse": {
|
|
62673
60450
|
/**
|
|
@@ -62676,47 +60453,6 @@ export interface components {
|
|
|
62676
60453
|
*/
|
|
62677
60454
|
targetId?: number;
|
|
62678
60455
|
};
|
|
62679
|
-
/** @description Request model to publish an audio asset. */
|
|
62680
|
-
"Roblox.Publish.Api.VerifyAudioRequest": {
|
|
62681
|
-
/** @description Gets or sets the name of the audio asset. */
|
|
62682
|
-
name?: string;
|
|
62683
|
-
/** @description File to be uploaded. Formatted as a base64 string. */
|
|
62684
|
-
file?: string;
|
|
62685
|
-
/**
|
|
62686
|
-
* Format: int64
|
|
62687
|
-
* @description Gets or sets the ID of the group if applicable. Optional.
|
|
62688
|
-
*/
|
|
62689
|
-
groupId?: number;
|
|
62690
|
-
/** @description Gets or sets the payment source. 'User' or 'Group'. Required if Group ID is set. */
|
|
62691
|
-
paymentSource?: string;
|
|
62692
|
-
/**
|
|
62693
|
-
* Format: int64
|
|
62694
|
-
* @description Gets or sets the size of the audio file in bytes.
|
|
62695
|
-
*/
|
|
62696
|
-
fileSize?: number;
|
|
62697
|
-
/**
|
|
62698
|
-
* Format: double
|
|
62699
|
-
* @description Gets or sets the duration of the audio in seconds.
|
|
62700
|
-
*/
|
|
62701
|
-
duration?: number;
|
|
62702
|
-
};
|
|
62703
|
-
/** @description Response model for verify audio endpoint. */
|
|
62704
|
-
"Roblox.Publish.Api.VerifyAudioResponse": {
|
|
62705
|
-
/** @description Name of the audio file. */
|
|
62706
|
-
name?: string;
|
|
62707
|
-
/**
|
|
62708
|
-
* Format: int64
|
|
62709
|
-
* @description Price in robux to publish the audio file.
|
|
62710
|
-
*/
|
|
62711
|
-
price?: number;
|
|
62712
|
-
/**
|
|
62713
|
-
* Format: int64
|
|
62714
|
-
* @description User's current Robux balance.
|
|
62715
|
-
*/
|
|
62716
|
-
balance?: number;
|
|
62717
|
-
/** @description Boolean, true if the user can afford to purchase the publishing of the audio file. */
|
|
62718
|
-
canAfford?: boolean;
|
|
62719
|
-
};
|
|
62720
60456
|
"Roblox.Thumbnails.Apis.Models.ThumbnailBatchRequest": {
|
|
62721
60457
|
/** @description The request id. (Generated client side, used to represent the items in the request) */
|
|
62722
60458
|
requestId?: string;
|
|
@@ -62760,10 +60496,10 @@ export interface components {
|
|
|
62760
60496
|
canTrade?: boolean;
|
|
62761
60497
|
/**
|
|
62762
60498
|
* Format: int32
|
|
62763
|
-
* @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]
|
|
62764
60500
|
* @enum {integer}
|
|
62765
60501
|
*/
|
|
62766
|
-
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
60502
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
|
|
62767
60503
|
};
|
|
62768
60504
|
/** @description The response for the CanTrade endpoint. */
|
|
62769
60505
|
"Roblox.Trades.Api.Models.V2.CanTradeResponse": {
|
|
@@ -62797,10 +60533,10 @@ export interface components {
|
|
|
62797
60533
|
/** @description Whether the user can trade with the target user or not. */
|
|
62798
60534
|
canTrade?: boolean;
|
|
62799
60535
|
/**
|
|
62800
|
-
* @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]
|
|
62801
60537
|
* @enum {string}
|
|
62802
60538
|
*/
|
|
62803
|
-
mutualTradeEligibility?: "Unknown" | "Eligible" | "CallingUserIneligible" | "TargetUserIneligible" | "CannotTradeWithSelf" | "CallingUserPrivacySettingsRestricted";
|
|
60539
|
+
mutualTradeEligibility?: "Unknown" | "Eligible" | "CallingUserIneligible" | "TargetUserIneligible" | "CannotTradeWithSelf" | "CallingUserPrivacySettingsRestricted" | "CallingUserAgeCheckRequired";
|
|
62804
60540
|
currencyTransferEligibility?: components["schemas"]["Roblox.Trades.Api.Models.V2.CurrencyTransferEligibilityResponse"];
|
|
62805
60541
|
};
|
|
62806
60542
|
"Roblox.Trades.Api.Models.V2.CurrencyTransferEligibilityResponse": {
|
|
@@ -63634,8 +61370,7 @@ export interface components {
|
|
|
63634
61370
|
"roblox-assetFormat"?: string;
|
|
63635
61371
|
assetResolutionMode?: string;
|
|
63636
61372
|
accessContext?: string;
|
|
63637
|
-
|
|
63638
|
-
usageContext?: number;
|
|
61373
|
+
usageContext?: string;
|
|
63639
61374
|
contentRepresentationPriorityList?: string;
|
|
63640
61375
|
doNotFallbackToBaselineRepresentation?: boolean;
|
|
63641
61376
|
/** Format: int64 */
|
|
@@ -63913,9 +61648,6 @@ export interface components {
|
|
|
63913
61648
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.GroupModel_": {
|
|
63914
61649
|
data?: components["schemas"]["Roblox.Api.Develop.Models.GroupModel"][];
|
|
63915
61650
|
};
|
|
63916
|
-
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.Response.AssetVotingModel_": {
|
|
63917
|
-
data?: components["schemas"]["Roblox.Api.Develop.Models.Response.AssetVotingModel"][];
|
|
63918
|
-
};
|
|
63919
61651
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.UniverseIdPermissionsModel_": {
|
|
63920
61652
|
data?: components["schemas"]["Roblox.Api.Develop.Models.UniverseIdPermissionsModel"][];
|
|
63921
61653
|
};
|
|
@@ -63925,9 +61657,6 @@ export interface components {
|
|
|
63925
61657
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel_": {
|
|
63926
61658
|
data?: components["schemas"]["Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel"][];
|
|
63927
61659
|
};
|
|
63928
|
-
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_": {
|
|
63929
|
-
data?: components["schemas"]["Roblox.Catalog.Api.BundleDetailsModel"][];
|
|
63930
|
-
};
|
|
63931
61660
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2_": {
|
|
63932
61661
|
data?: components["schemas"]["Roblox.Catalog.Api.CatalogSearchDetailedResponseItemV2"][];
|
|
63933
61662
|
};
|
|
@@ -64030,11 +61759,6 @@ export interface components {
|
|
|
64030
61759
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_System.String_": {
|
|
64031
61760
|
data?: string[];
|
|
64032
61761
|
};
|
|
64033
|
-
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.AssetVersion_": {
|
|
64034
|
-
previousPageCursor?: string;
|
|
64035
|
-
nextPageCursor?: string;
|
|
64036
|
-
data?: components["schemas"]["Roblox.Api.Develop.AssetVersion"][];
|
|
64037
|
-
};
|
|
64038
61762
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Api.Develop.Models.IPlaceModel_": {
|
|
64039
61763
|
previousPageCursor?: string;
|
|
64040
61764
|
nextPageCursor?: string;
|
|
@@ -64145,11 +61869,6 @@ export interface components {
|
|
|
64145
61869
|
nextPageCursor?: string;
|
|
64146
61870
|
data?: components["schemas"]["Roblox.Inventory.Api.V2.UserAssetItemModelV2"][];
|
|
64147
61871
|
};
|
|
64148
|
-
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.ItemConfiguration.Api.AssetCreationsResponse_": {
|
|
64149
|
-
previousPageCursor?: string;
|
|
64150
|
-
nextPageCursor?: string;
|
|
64151
|
-
data?: components["schemas"]["Roblox.ItemConfiguration.Api.AssetCreationsResponse"][];
|
|
64152
|
-
};
|
|
64153
61872
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Trades.Api.TradeResponse_": {
|
|
64154
61873
|
previousPageCursor?: string;
|
|
64155
61874
|
nextPageCursor?: string;
|
|
@@ -64613,12 +62332,6 @@ export interface components {
|
|
|
64613
62332
|
/** @description The config entry value for this variant. Required for non-`IsBaseline` variants. */
|
|
64614
62333
|
configEntry?: components["schemas"]["ExperimentConfigEntry"] | null;
|
|
64615
62334
|
};
|
|
64616
|
-
SkinnyUserResponse: {
|
|
64617
|
-
/** Format: int64 */
|
|
64618
|
-
id?: number;
|
|
64619
|
-
name?: string | null;
|
|
64620
|
-
displayName?: string | null;
|
|
64621
|
-
};
|
|
64622
62335
|
/** @description Takes a new snapshot for the given experience. */
|
|
64623
62336
|
SnapshotDataStoresRequest: Record<string, never>;
|
|
64624
62337
|
/**
|
|
@@ -64712,6 +62425,33 @@ export interface components {
|
|
|
64712
62425
|
key?: string | null;
|
|
64713
62426
|
value?: string[] | null;
|
|
64714
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
|
+
};
|
|
64715
62455
|
/** @enum {string} */
|
|
64716
62456
|
SubjectType: "Invalid" | "User" | "Group" | "GroupRoleset" | "All" | "Universe";
|
|
64717
62457
|
/**
|
|
@@ -69867,23 +67607,23 @@ export interface operations {
|
|
|
69867
67607
|
query?: {
|
|
69868
67608
|
/**
|
|
69869
67609
|
* @description The maximum number of inventory items to return. The service might return
|
|
69870
|
-
*
|
|
69871
|
-
*
|
|
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.
|
|
69872
67612
|
*/
|
|
69873
67613
|
maxPageSize?: number;
|
|
69874
67614
|
/**
|
|
69875
67615
|
* @description A page token, received from a previous call, to retrieve a subsequent page.
|
|
69876
67616
|
*
|
|
69877
|
-
*
|
|
69878
|
-
*
|
|
67617
|
+
* When paginating, all other parameters provided to the subsequent call must
|
|
67618
|
+
* match the call that provided the page token.
|
|
69879
67619
|
*/
|
|
69880
67620
|
pageToken?: string;
|
|
69881
67621
|
/**
|
|
69882
67622
|
* @description This field may be set in order to filter the resources returned.
|
|
69883
67623
|
*
|
|
69884
|
-
*
|
|
69885
|
-
*
|
|
69886
|
-
*
|
|
67624
|
+
* See the
|
|
67625
|
+
* [filtering](/cloud/reference/patterns#list-inventory-items)
|
|
67626
|
+
* documentation for more information.
|
|
69887
67627
|
*/
|
|
69888
67628
|
filter?: string;
|
|
69889
67629
|
};
|
|
@@ -69896,7 +67636,7 @@ export interface operations {
|
|
|
69896
67636
|
};
|
|
69897
67637
|
requestBody?: never;
|
|
69898
67638
|
responses: {
|
|
69899
|
-
/** @description
|
|
67639
|
+
/** @description Success */
|
|
69900
67640
|
200: {
|
|
69901
67641
|
headers: {
|
|
69902
67642
|
[name: string]: unknown;
|
|
@@ -74123,34 +71863,6 @@ export interface operations {
|
|
|
74123
71863
|
};
|
|
74124
71864
|
};
|
|
74125
71865
|
};
|
|
74126
|
-
PrivateServers_CreatePrivateServer: {
|
|
74127
|
-
parameters: {
|
|
74128
|
-
query?: never;
|
|
74129
|
-
header?: never;
|
|
74130
|
-
path: {
|
|
74131
|
-
universeId: number;
|
|
74132
|
-
};
|
|
74133
|
-
cookie?: never;
|
|
74134
|
-
};
|
|
74135
|
-
requestBody?: {
|
|
74136
|
-
content: {
|
|
74137
|
-
"application/json": components["schemas"]["CreatePrivateServerRequest"];
|
|
74138
|
-
"text/json": components["schemas"]["CreatePrivateServerRequest"];
|
|
74139
|
-
"application/*+json": components["schemas"]["CreatePrivateServerRequest"];
|
|
74140
|
-
};
|
|
74141
|
-
};
|
|
74142
|
-
responses: {
|
|
74143
|
-
/** @description Success */
|
|
74144
|
-
200: {
|
|
74145
|
-
headers: {
|
|
74146
|
-
[name: string]: unknown;
|
|
74147
|
-
};
|
|
74148
|
-
content: {
|
|
74149
|
-
"application/json": components["schemas"]["PrivateServersApi.GameServerResponse"];
|
|
74150
|
-
};
|
|
74151
|
-
};
|
|
74152
|
-
};
|
|
74153
|
-
};
|
|
74154
71866
|
Voting_MultiGetGameVoteStatus: {
|
|
74155
71867
|
parameters: {
|
|
74156
71868
|
query?: {
|
|
@@ -74345,204 +72057,6 @@ export interface operations {
|
|
|
74345
72057
|
};
|
|
74346
72058
|
};
|
|
74347
72059
|
};
|
|
74348
|
-
PrivateServers_PrivateServersEnabledInUniverse: {
|
|
74349
|
-
parameters: {
|
|
74350
|
-
query?: never;
|
|
74351
|
-
header?: never;
|
|
74352
|
-
path: {
|
|
74353
|
-
universeId: number;
|
|
74354
|
-
};
|
|
74355
|
-
cookie?: never;
|
|
74356
|
-
};
|
|
74357
|
-
requestBody?: never;
|
|
74358
|
-
responses: {
|
|
74359
|
-
/** @description Success */
|
|
74360
|
-
200: {
|
|
74361
|
-
headers: {
|
|
74362
|
-
[name: string]: unknown;
|
|
74363
|
-
};
|
|
74364
|
-
content: {
|
|
74365
|
-
"application/json": components["schemas"]["PrivateServersEnabledInUniverseResponse"];
|
|
74366
|
-
};
|
|
74367
|
-
};
|
|
74368
|
-
};
|
|
74369
|
-
};
|
|
74370
|
-
PrivateServers_GetMyPrivateServers: {
|
|
74371
|
-
parameters: {
|
|
74372
|
-
query?: {
|
|
74373
|
-
privateServersTab?: components["schemas"]["PrivateServersTab"];
|
|
74374
|
-
itemsPerPage?: number;
|
|
74375
|
-
cursor?: string;
|
|
74376
|
-
};
|
|
74377
|
-
header?: never;
|
|
74378
|
-
path?: never;
|
|
74379
|
-
cookie?: never;
|
|
74380
|
-
};
|
|
74381
|
-
requestBody?: never;
|
|
74382
|
-
responses: {
|
|
74383
|
-
/** @description Success */
|
|
74384
|
-
200: {
|
|
74385
|
-
headers: {
|
|
74386
|
-
[name: string]: unknown;
|
|
74387
|
-
};
|
|
74388
|
-
content: {
|
|
74389
|
-
"application/json": components["schemas"]["MyPrivateServersResponse"];
|
|
74390
|
-
};
|
|
74391
|
-
};
|
|
74392
|
-
};
|
|
74393
|
-
};
|
|
74394
|
-
PrivateServers_CanInviteUser: {
|
|
74395
|
-
parameters: {
|
|
74396
|
-
query?: never;
|
|
74397
|
-
header?: never;
|
|
74398
|
-
path: {
|
|
74399
|
-
userId: number;
|
|
74400
|
-
};
|
|
74401
|
-
cookie?: never;
|
|
74402
|
-
};
|
|
74403
|
-
requestBody?: never;
|
|
74404
|
-
responses: {
|
|
74405
|
-
/** @description Success */
|
|
74406
|
-
200: {
|
|
74407
|
-
headers: {
|
|
74408
|
-
[name: string]: unknown;
|
|
74409
|
-
};
|
|
74410
|
-
content: {
|
|
74411
|
-
"application/json": components["schemas"]["CanInviteUserResponse"];
|
|
74412
|
-
};
|
|
74413
|
-
};
|
|
74414
|
-
};
|
|
74415
|
-
};
|
|
74416
|
-
"PrivateServersApi.PrivateServers_GetMyPrivateServers": {
|
|
74417
|
-
parameters: {
|
|
74418
|
-
query?: {
|
|
74419
|
-
privateServersTab?: components["schemas"]["PrivateServersTab"];
|
|
74420
|
-
itemsPerPage?: number;
|
|
74421
|
-
cursor?: string;
|
|
74422
|
-
};
|
|
74423
|
-
header?: never;
|
|
74424
|
-
path?: never;
|
|
74425
|
-
cookie?: never;
|
|
74426
|
-
};
|
|
74427
|
-
requestBody?: never;
|
|
74428
|
-
responses: {
|
|
74429
|
-
/** @description Success */
|
|
74430
|
-
200: {
|
|
74431
|
-
headers: {
|
|
74432
|
-
[name: string]: unknown;
|
|
74433
|
-
};
|
|
74434
|
-
content: {
|
|
74435
|
-
"application/json": components["schemas"]["MyPrivateServersResponse"];
|
|
74436
|
-
};
|
|
74437
|
-
};
|
|
74438
|
-
};
|
|
74439
|
-
};
|
|
74440
|
-
PrivateServers_GetPrivateServer: {
|
|
74441
|
-
parameters: {
|
|
74442
|
-
query?: never;
|
|
74443
|
-
header?: never;
|
|
74444
|
-
path: {
|
|
74445
|
-
id: number;
|
|
74446
|
-
};
|
|
74447
|
-
cookie?: never;
|
|
74448
|
-
};
|
|
74449
|
-
requestBody?: never;
|
|
74450
|
-
responses: {
|
|
74451
|
-
/** @description Success */
|
|
74452
|
-
200: {
|
|
74453
|
-
headers: {
|
|
74454
|
-
[name: string]: unknown;
|
|
74455
|
-
};
|
|
74456
|
-
content: {
|
|
74457
|
-
"application/json": components["schemas"]["PrivateServerResponse"];
|
|
74458
|
-
};
|
|
74459
|
-
};
|
|
74460
|
-
};
|
|
74461
|
-
};
|
|
74462
|
-
PrivateServers_UpdatePrivateServer: {
|
|
74463
|
-
parameters: {
|
|
74464
|
-
query?: never;
|
|
74465
|
-
header?: never;
|
|
74466
|
-
path: {
|
|
74467
|
-
id: number;
|
|
74468
|
-
};
|
|
74469
|
-
cookie?: never;
|
|
74470
|
-
};
|
|
74471
|
-
requestBody?: {
|
|
74472
|
-
content: {
|
|
74473
|
-
"application/json": components["schemas"]["PrivateServerUpdateRequest"];
|
|
74474
|
-
"text/json": components["schemas"]["PrivateServerUpdateRequest"];
|
|
74475
|
-
"application/*+json": components["schemas"]["PrivateServerUpdateRequest"];
|
|
74476
|
-
};
|
|
74477
|
-
};
|
|
74478
|
-
responses: {
|
|
74479
|
-
/** @description Success */
|
|
74480
|
-
200: {
|
|
74481
|
-
headers: {
|
|
74482
|
-
[name: string]: unknown;
|
|
74483
|
-
};
|
|
74484
|
-
content: {
|
|
74485
|
-
"application/json": components["schemas"]["PrivateServerResponse"];
|
|
74486
|
-
};
|
|
74487
|
-
};
|
|
74488
|
-
};
|
|
74489
|
-
};
|
|
74490
|
-
PrivateServers_UpdatePrivateServerPermissions: {
|
|
74491
|
-
parameters: {
|
|
74492
|
-
query?: never;
|
|
74493
|
-
header?: never;
|
|
74494
|
-
path: {
|
|
74495
|
-
id: number;
|
|
74496
|
-
};
|
|
74497
|
-
cookie?: never;
|
|
74498
|
-
};
|
|
74499
|
-
requestBody?: {
|
|
74500
|
-
content: {
|
|
74501
|
-
"application/json": components["schemas"]["PrivateServerUpdatePermissionsRequest"];
|
|
74502
|
-
"text/json": components["schemas"]["PrivateServerUpdatePermissionsRequest"];
|
|
74503
|
-
"application/*+json": components["schemas"]["PrivateServerUpdatePermissionsRequest"];
|
|
74504
|
-
};
|
|
74505
|
-
};
|
|
74506
|
-
responses: {
|
|
74507
|
-
/** @description Success */
|
|
74508
|
-
200: {
|
|
74509
|
-
headers: {
|
|
74510
|
-
[name: string]: unknown;
|
|
74511
|
-
};
|
|
74512
|
-
content: {
|
|
74513
|
-
"application/json": components["schemas"]["PrivateServerPermissionsResponse"];
|
|
74514
|
-
};
|
|
74515
|
-
};
|
|
74516
|
-
};
|
|
74517
|
-
};
|
|
74518
|
-
PrivateServers_UpdatePrivateServerSubscription: {
|
|
74519
|
-
parameters: {
|
|
74520
|
-
query?: never;
|
|
74521
|
-
header?: never;
|
|
74522
|
-
path: {
|
|
74523
|
-
id: number;
|
|
74524
|
-
};
|
|
74525
|
-
cookie?: never;
|
|
74526
|
-
};
|
|
74527
|
-
requestBody?: {
|
|
74528
|
-
content: {
|
|
74529
|
-
"application/json": components["schemas"]["PrivateServerUpdateSubscriptionRequest"];
|
|
74530
|
-
"text/json": components["schemas"]["PrivateServerUpdateSubscriptionRequest"];
|
|
74531
|
-
"application/*+json": components["schemas"]["PrivateServerUpdateSubscriptionRequest"];
|
|
74532
|
-
};
|
|
74533
|
-
};
|
|
74534
|
-
responses: {
|
|
74535
|
-
/** @description Success */
|
|
74536
|
-
200: {
|
|
74537
|
-
headers: {
|
|
74538
|
-
[name: string]: unknown;
|
|
74539
|
-
};
|
|
74540
|
-
content: {
|
|
74541
|
-
"application/json": components["schemas"]["PrivateServerSubscriptionResponse"];
|
|
74542
|
-
};
|
|
74543
|
-
};
|
|
74544
|
-
};
|
|
74545
|
-
};
|
|
74546
72060
|
TransactionHistory_GetGroupTransactions: {
|
|
74547
72061
|
parameters: {
|
|
74548
72062
|
query?: {
|