@jacobhumston/roblox-openapi-ts 1.0.5 → 1.0.7
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 +1275 -487
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2456,6 +2456,9 @@ export interface paths {
|
|
|
2456
2456
|
* If draftHash is provided, this call will fail if the hash doesn't match.
|
|
2457
2457
|
* A key not included will not be changed. To indicate deletion, set key to null.
|
|
2458
2458
|
* To discard a change, set key to its currently published value.
|
|
2459
|
+
* When `conditionalRules` is omitted or empty (`{}`), the CMS update omits the conditional-rules field so existing published rules remain at publish time;
|
|
2460
|
+
* send a non-empty `conditionalRules` object to merge rule changes.
|
|
2461
|
+
* Entry count and per-value size limits are enforced here via CreatorConfigsPublicApi.Utils.DraftValidationHelper; further schema validation is performed by Config Management.
|
|
2459
2462
|
*/
|
|
2460
2463
|
patch: operations["CreatorConfigsPublicApi_UpdateDraft"];
|
|
2461
2464
|
trace?: never;
|
|
@@ -2470,9 +2473,14 @@ export interface paths {
|
|
|
2470
2473
|
get?: never;
|
|
2471
2474
|
/**
|
|
2472
2475
|
* Overwrites the entire draft with the request payload.
|
|
2473
|
-
* @description Full overwrite of current draft. The payload is the expected final state after publish.
|
|
2476
|
+
* @description Full overwrite of current draft. The payload is the expected final state after publish (not a merge with the draft or published config from the client’s perspective).
|
|
2477
|
+
* The service aligns that intent with CMS validation by emitting explicit deletions for published keys and conditional branches omitted from the body.
|
|
2474
2478
|
* If a key is not included, it is interpreted as removed.
|
|
2479
|
+
* When `conditionalRules` is included, `conditionalRules.rules` is authoritative for rule definitions:
|
|
2480
|
+
* any conditional rule that exists on the latest published configuration but is omitted from `rules` is removed (same as sending an empty RPN rule).
|
|
2481
|
+
* When `conditionalRules` is omitted, all published conditional rules are removed; entries must not use conditional branches or `.RBX.conditional.*` keys unless you send `conditionalRules`.
|
|
2475
2482
|
* If draftHash is provided, this call will fail if the hash doesn't match.
|
|
2483
|
+
* Entry count and per-value size limits are enforced here via CreatorConfigsPublicApi.Utils.DraftValidationHelper; further schema validation is performed by Config Management.
|
|
2476
2484
|
*/
|
|
2477
2485
|
put: operations["CreatorConfigsPublicApi_OverwriteDraft"];
|
|
2478
2486
|
post?: never;
|
|
@@ -10136,6 +10144,102 @@ export interface paths {
|
|
|
10136
10144
|
patch?: never;
|
|
10137
10145
|
trace?: never;
|
|
10138
10146
|
};
|
|
10147
|
+
"/thumbnail-personalization-api/v1/universe/{universeId}/personalization": {
|
|
10148
|
+
parameters: {
|
|
10149
|
+
query?: never;
|
|
10150
|
+
header?: never;
|
|
10151
|
+
path?: never;
|
|
10152
|
+
cookie?: never;
|
|
10153
|
+
};
|
|
10154
|
+
get: operations["HomepageThumbnail_FindThumbnailPersonalizations"];
|
|
10155
|
+
put?: never;
|
|
10156
|
+
post?: never;
|
|
10157
|
+
delete?: never;
|
|
10158
|
+
options?: never;
|
|
10159
|
+
head?: never;
|
|
10160
|
+
patch?: never;
|
|
10161
|
+
trace?: never;
|
|
10162
|
+
};
|
|
10163
|
+
"/thumbnail-personalization-api/v1/universe/{universeId}/personalization/create": {
|
|
10164
|
+
parameters: {
|
|
10165
|
+
query?: never;
|
|
10166
|
+
header?: never;
|
|
10167
|
+
path?: never;
|
|
10168
|
+
cookie?: never;
|
|
10169
|
+
};
|
|
10170
|
+
get?: never;
|
|
10171
|
+
put?: never;
|
|
10172
|
+
post: operations["HomepageThumbnail_CreateThumbnailPersonalization"];
|
|
10173
|
+
delete?: never;
|
|
10174
|
+
options?: never;
|
|
10175
|
+
head?: never;
|
|
10176
|
+
patch?: never;
|
|
10177
|
+
trace?: never;
|
|
10178
|
+
};
|
|
10179
|
+
"/thumbnail-personalization-api/v1/universe/{universeId}/personalization/update": {
|
|
10180
|
+
parameters: {
|
|
10181
|
+
query?: never;
|
|
10182
|
+
header?: never;
|
|
10183
|
+
path?: never;
|
|
10184
|
+
cookie?: never;
|
|
10185
|
+
};
|
|
10186
|
+
get?: never;
|
|
10187
|
+
put?: never;
|
|
10188
|
+
post: operations["HomepageThumbnail_UpdateThumbnailPersonalization"];
|
|
10189
|
+
delete?: never;
|
|
10190
|
+
options?: never;
|
|
10191
|
+
head?: never;
|
|
10192
|
+
patch?: never;
|
|
10193
|
+
trace?: never;
|
|
10194
|
+
};
|
|
10195
|
+
"/thumbnail-personalization-api/v1/universe/{universeId}/thumbnails": {
|
|
10196
|
+
parameters: {
|
|
10197
|
+
query?: never;
|
|
10198
|
+
header?: never;
|
|
10199
|
+
path?: never;
|
|
10200
|
+
cookie?: never;
|
|
10201
|
+
};
|
|
10202
|
+
get: operations["HomepageThumbnail_GetHomepageThumbnails"];
|
|
10203
|
+
put?: never;
|
|
10204
|
+
post?: never;
|
|
10205
|
+
delete: operations["HomepageThumbnail_DeleteHomepageThumbnails"];
|
|
10206
|
+
options?: never;
|
|
10207
|
+
head?: never;
|
|
10208
|
+
patch?: never;
|
|
10209
|
+
trace?: never;
|
|
10210
|
+
};
|
|
10211
|
+
"/thumbnail-personalization-api/v1/universe/{universeId}/thumbnails/uploads": {
|
|
10212
|
+
parameters: {
|
|
10213
|
+
query?: never;
|
|
10214
|
+
header?: never;
|
|
10215
|
+
path?: never;
|
|
10216
|
+
cookie?: never;
|
|
10217
|
+
};
|
|
10218
|
+
get?: never;
|
|
10219
|
+
put?: never;
|
|
10220
|
+
post: operations["HomepageThumbnail_UploadHomepageThumbnails"];
|
|
10221
|
+
delete?: never;
|
|
10222
|
+
options?: never;
|
|
10223
|
+
head?: never;
|
|
10224
|
+
patch?: never;
|
|
10225
|
+
trace?: never;
|
|
10226
|
+
};
|
|
10227
|
+
"/thumbnail-personalization-api/v1/universe/{universeId}/thumbnails/uploads/status": {
|
|
10228
|
+
parameters: {
|
|
10229
|
+
query?: never;
|
|
10230
|
+
header?: never;
|
|
10231
|
+
path?: never;
|
|
10232
|
+
cookie?: never;
|
|
10233
|
+
};
|
|
10234
|
+
get: operations["HomepageThumbnail_GetHomepageThumbnailsStatus"];
|
|
10235
|
+
put?: never;
|
|
10236
|
+
post?: never;
|
|
10237
|
+
delete?: never;
|
|
10238
|
+
options?: never;
|
|
10239
|
+
head?: never;
|
|
10240
|
+
patch?: never;
|
|
10241
|
+
trace?: never;
|
|
10242
|
+
};
|
|
10139
10243
|
"/toolbox-service/v1/saves": {
|
|
10140
10244
|
parameters: {
|
|
10141
10245
|
query?: never;
|
|
@@ -10236,6 +10340,43 @@ export interface paths {
|
|
|
10236
10340
|
patch?: never;
|
|
10237
10341
|
trace?: never;
|
|
10238
10342
|
};
|
|
10343
|
+
"/v1/account-creation/metadata": {
|
|
10344
|
+
parameters: {
|
|
10345
|
+
query?: never;
|
|
10346
|
+
header?: never;
|
|
10347
|
+
path?: never;
|
|
10348
|
+
cookie?: never;
|
|
10349
|
+
};
|
|
10350
|
+
/** Get metadata for adding auth methods. */
|
|
10351
|
+
get: {
|
|
10352
|
+
parameters: {
|
|
10353
|
+
query?: never;
|
|
10354
|
+
header?: never;
|
|
10355
|
+
path?: never;
|
|
10356
|
+
cookie?: never;
|
|
10357
|
+
};
|
|
10358
|
+
requestBody?: never;
|
|
10359
|
+
responses: {
|
|
10360
|
+
/** @description OK */
|
|
10361
|
+
200: {
|
|
10362
|
+
headers: {
|
|
10363
|
+
[name: string]: unknown;
|
|
10364
|
+
};
|
|
10365
|
+
content: {
|
|
10366
|
+
"application/json": components["schemas"]["Roblox.Authentication.Api.Models.AuthMethodsMetadataResponse"];
|
|
10367
|
+
"text/json": components["schemas"]["Roblox.Authentication.Api.Models.AuthMethodsMetadataResponse"];
|
|
10368
|
+
};
|
|
10369
|
+
};
|
|
10370
|
+
};
|
|
10371
|
+
};
|
|
10372
|
+
put?: never;
|
|
10373
|
+
post?: never;
|
|
10374
|
+
delete?: never;
|
|
10375
|
+
options?: never;
|
|
10376
|
+
head?: never;
|
|
10377
|
+
patch?: never;
|
|
10378
|
+
trace?: never;
|
|
10379
|
+
};
|
|
10239
10380
|
"/v1/account/pin": {
|
|
10240
10381
|
parameters: {
|
|
10241
10382
|
query?: never;
|
|
@@ -22350,184 +22491,187 @@ export interface paths {
|
|
|
22350
22491
|
content: {
|
|
22351
22492
|
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.GroupJoinRequestResponse_"];
|
|
22352
22493
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.GroupJoinRequestResponse_"];
|
|
22353
|
-
};
|
|
22354
|
-
};
|
|
22355
|
-
/**
|
|
22356
|
-
|
|
22357
|
-
|
|
22358
|
-
|
|
22359
|
-
|
|
22360
|
-
|
|
22361
|
-
|
|
22362
|
-
|
|
22363
|
-
|
|
22364
|
-
|
|
22365
|
-
|
|
22366
|
-
|
|
22367
|
-
|
|
22368
|
-
|
|
22369
|
-
|
|
22370
|
-
|
|
22371
|
-
|
|
22372
|
-
|
|
22373
|
-
|
|
22374
|
-
|
|
22375
|
-
|
|
22376
|
-
|
|
22377
|
-
|
|
22378
|
-
|
|
22379
|
-
|
|
22380
|
-
|
|
22381
|
-
|
|
22382
|
-
|
|
22383
|
-
|
|
22384
|
-
|
|
22385
|
-
|
|
22386
|
-
|
|
22387
|
-
|
|
22388
|
-
|
|
22389
|
-
|
|
22390
|
-
|
|
22391
|
-
|
|
22392
|
-
|
|
22393
|
-
|
|
22394
|
-
|
|
22395
|
-
|
|
22396
|
-
|
|
22397
|
-
|
|
22398
|
-
|
|
22399
|
-
|
|
22400
|
-
|
|
22401
|
-
|
|
22402
|
-
|
|
22403
|
-
|
|
22404
|
-
|
|
22405
|
-
|
|
22406
|
-
|
|
22407
|
-
|
|
22408
|
-
|
|
22409
|
-
|
|
22410
|
-
|
|
22411
|
-
|
|
22412
|
-
|
|
22413
|
-
|
|
22414
|
-
|
|
22415
|
-
|
|
22416
|
-
|
|
22417
|
-
|
|
22418
|
-
|
|
22419
|
-
|
|
22420
|
-
|
|
22421
|
-
|
|
22422
|
-
|
|
22423
|
-
|
|
22424
|
-
|
|
22425
|
-
|
|
22426
|
-
|
|
22427
|
-
|
|
22428
|
-
|
|
22429
|
-
|
|
22430
|
-
|
|
22431
|
-
|
|
22432
|
-
|
|
22433
|
-
|
|
22434
|
-
|
|
22435
|
-
|
|
22436
|
-
|
|
22437
|
-
|
|
22438
|
-
|
|
22439
|
-
|
|
22440
|
-
|
|
22441
|
-
|
|
22442
|
-
|
|
22443
|
-
|
|
22444
|
-
|
|
22445
|
-
|
|
22446
|
-
|
|
22447
|
-
|
|
22448
|
-
|
|
22449
|
-
|
|
22450
|
-
|
|
22451
|
-
|
|
22452
|
-
|
|
22453
|
-
|
|
22454
|
-
|
|
22455
|
-
|
|
22456
|
-
|
|
22457
|
-
|
|
22458
|
-
|
|
22459
|
-
|
|
22460
|
-
|
|
22461
|
-
|
|
22462
|
-
|
|
22463
|
-
|
|
22464
|
-
|
|
22465
|
-
|
|
22466
|
-
|
|
22467
|
-
|
|
22468
|
-
|
|
22469
|
-
|
|
22470
|
-
|
|
22471
|
-
|
|
22472
|
-
|
|
22473
|
-
|
|
22474
|
-
|
|
22475
|
-
|
|
22476
|
-
|
|
22477
|
-
|
|
22478
|
-
|
|
22479
|
-
|
|
22480
|
-
|
|
22481
|
-
|
|
22482
|
-
|
|
22483
|
-
|
|
22484
|
-
|
|
22485
|
-
|
|
22486
|
-
|
|
22487
|
-
|
|
22488
|
-
|
|
22489
|
-
|
|
22490
|
-
|
|
22491
|
-
|
|
22492
|
-
|
|
22493
|
-
|
|
22494
|
-
|
|
22495
|
-
|
|
22496
|
-
|
|
22497
|
-
|
|
22498
|
-
|
|
22499
|
-
|
|
22500
|
-
|
|
22501
|
-
|
|
22502
|
-
|
|
22503
|
-
|
|
22504
|
-
|
|
22505
|
-
|
|
22506
|
-
|
|
22507
|
-
|
|
22508
|
-
|
|
22509
|
-
|
|
22510
|
-
|
|
22511
|
-
|
|
22512
|
-
|
|
22513
|
-
|
|
22514
|
-
|
|
22515
|
-
|
|
22516
|
-
|
|
22517
|
-
|
|
22518
|
-
|
|
22519
|
-
|
|
22520
|
-
|
|
22521
|
-
|
|
22522
|
-
|
|
22523
|
-
|
|
22524
|
-
|
|
22525
|
-
|
|
22526
|
-
|
|
22527
|
-
|
|
22528
|
-
|
|
22529
|
-
|
|
22530
|
-
|
|
22494
|
+
};
|
|
22495
|
+
};
|
|
22496
|
+
/**
|
|
22497
|
+
* @description 1: The group is invalid or does not exist.
|
|
22498
|
+
* 36: The pagination cursor is invalid.
|
|
22499
|
+
*/
|
|
22500
|
+
400: {
|
|
22501
|
+
headers: {
|
|
22502
|
+
[name: string]: unknown;
|
|
22503
|
+
};
|
|
22504
|
+
content?: never;
|
|
22505
|
+
};
|
|
22506
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
22507
|
+
401: {
|
|
22508
|
+
headers: {
|
|
22509
|
+
[name: string]: unknown;
|
|
22510
|
+
};
|
|
22511
|
+
content?: never;
|
|
22512
|
+
};
|
|
22513
|
+
/** @description 19: You have insufficient permissions for this request. */
|
|
22514
|
+
403: {
|
|
22515
|
+
headers: {
|
|
22516
|
+
[name: string]: unknown;
|
|
22517
|
+
};
|
|
22518
|
+
content?: never;
|
|
22519
|
+
};
|
|
22520
|
+
};
|
|
22521
|
+
};
|
|
22522
|
+
put?: never;
|
|
22523
|
+
/** Batch accepts group join requests */
|
|
22524
|
+
post: {
|
|
22525
|
+
parameters: {
|
|
22526
|
+
query?: never;
|
|
22527
|
+
header?: never;
|
|
22528
|
+
path: {
|
|
22529
|
+
/** @description The group id. */
|
|
22530
|
+
groupId: number;
|
|
22531
|
+
};
|
|
22532
|
+
cookie?: never;
|
|
22533
|
+
};
|
|
22534
|
+
requestBody: components["requestBodies"]["Roblox.Groups.Api.MembersRequest"];
|
|
22535
|
+
responses: {
|
|
22536
|
+
/** @description OK */
|
|
22537
|
+
200: {
|
|
22538
|
+
headers: {
|
|
22539
|
+
[name: string]: unknown;
|
|
22540
|
+
};
|
|
22541
|
+
content: {
|
|
22542
|
+
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
22543
|
+
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
22544
|
+
};
|
|
22545
|
+
};
|
|
22546
|
+
/**
|
|
22547
|
+
* @description 1: The group is invalid or does not exist.
|
|
22548
|
+
* 3: The user is invalid or does not exist.
|
|
22549
|
+
* 20: The group join request is invalid.
|
|
22550
|
+
*/
|
|
22551
|
+
400: {
|
|
22552
|
+
headers: {
|
|
22553
|
+
[name: string]: unknown;
|
|
22554
|
+
};
|
|
22555
|
+
content?: never;
|
|
22556
|
+
};
|
|
22557
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
22558
|
+
401: {
|
|
22559
|
+
headers: {
|
|
22560
|
+
[name: string]: unknown;
|
|
22561
|
+
};
|
|
22562
|
+
content?: never;
|
|
22563
|
+
};
|
|
22564
|
+
/**
|
|
22565
|
+
* @description 0: Token Validation Failed
|
|
22566
|
+
* 6: You are already in the maximum number of groups.
|
|
22567
|
+
* 19: You have insufficient permissions for this request.
|
|
22568
|
+
*/
|
|
22569
|
+
403: {
|
|
22570
|
+
headers: {
|
|
22571
|
+
[name: string]: unknown;
|
|
22572
|
+
};
|
|
22573
|
+
content?: never;
|
|
22574
|
+
};
|
|
22575
|
+
/** @description 0: Something went wrong. */
|
|
22576
|
+
500: {
|
|
22577
|
+
headers: {
|
|
22578
|
+
[name: string]: unknown;
|
|
22579
|
+
};
|
|
22580
|
+
content?: never;
|
|
22581
|
+
};
|
|
22582
|
+
/** @description 18: The operation is temporarily unavailable. Please try again later. */
|
|
22583
|
+
503: {
|
|
22584
|
+
headers: {
|
|
22585
|
+
[name: string]: unknown;
|
|
22586
|
+
};
|
|
22587
|
+
content?: never;
|
|
22588
|
+
};
|
|
22589
|
+
};
|
|
22590
|
+
};
|
|
22591
|
+
/** Batch declines group join requests */
|
|
22592
|
+
delete: {
|
|
22593
|
+
parameters: {
|
|
22594
|
+
query?: never;
|
|
22595
|
+
header?: never;
|
|
22596
|
+
path: {
|
|
22597
|
+
/** @description The group id. */
|
|
22598
|
+
groupId: number;
|
|
22599
|
+
};
|
|
22600
|
+
cookie?: never;
|
|
22601
|
+
};
|
|
22602
|
+
requestBody: components["requestBodies"]["Roblox.Groups.Api.MembersRequest"];
|
|
22603
|
+
responses: {
|
|
22604
|
+
/** @description OK */
|
|
22605
|
+
200: {
|
|
22606
|
+
headers: {
|
|
22607
|
+
[name: string]: unknown;
|
|
22608
|
+
};
|
|
22609
|
+
content: {
|
|
22610
|
+
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
22611
|
+
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
22612
|
+
};
|
|
22613
|
+
};
|
|
22614
|
+
/**
|
|
22615
|
+
* @description 1: The group is invalid or does not exist.
|
|
22616
|
+
* 3: The user is invalid or does not exist.
|
|
22617
|
+
*/
|
|
22618
|
+
400: {
|
|
22619
|
+
headers: {
|
|
22620
|
+
[name: string]: unknown;
|
|
22621
|
+
};
|
|
22622
|
+
content?: never;
|
|
22623
|
+
};
|
|
22624
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
22625
|
+
401: {
|
|
22626
|
+
headers: {
|
|
22627
|
+
[name: string]: unknown;
|
|
22628
|
+
};
|
|
22629
|
+
content?: never;
|
|
22630
|
+
};
|
|
22631
|
+
/** @description 0: Token Validation Failed */
|
|
22632
|
+
403: {
|
|
22633
|
+
headers: {
|
|
22634
|
+
[name: string]: unknown;
|
|
22635
|
+
};
|
|
22636
|
+
content?: never;
|
|
22637
|
+
};
|
|
22638
|
+
};
|
|
22639
|
+
};
|
|
22640
|
+
options?: never;
|
|
22641
|
+
head?: never;
|
|
22642
|
+
patch?: never;
|
|
22643
|
+
trace?: never;
|
|
22644
|
+
};
|
|
22645
|
+
"/v1/groups/{groupId}/join-requests/users/{userId}": {
|
|
22646
|
+
parameters: {
|
|
22647
|
+
query?: never;
|
|
22648
|
+
header?: never;
|
|
22649
|
+
path?: never;
|
|
22650
|
+
cookie?: never;
|
|
22651
|
+
};
|
|
22652
|
+
/** Gets a group join request by userId. */
|
|
22653
|
+
get: {
|
|
22654
|
+
parameters: {
|
|
22655
|
+
query?: never;
|
|
22656
|
+
header?: never;
|
|
22657
|
+
path: {
|
|
22658
|
+
/** @description The group Id. */
|
|
22659
|
+
groupId: number;
|
|
22660
|
+
/** @description The user Id. */
|
|
22661
|
+
userId: number;
|
|
22662
|
+
};
|
|
22663
|
+
cookie?: never;
|
|
22664
|
+
};
|
|
22665
|
+
requestBody?: never;
|
|
22666
|
+
responses: {
|
|
22667
|
+
/** @description OK */
|
|
22668
|
+
200: {
|
|
22669
|
+
headers: {
|
|
22670
|
+
[name: string]: unknown;
|
|
22671
|
+
};
|
|
22672
|
+
content: {
|
|
22673
|
+
"application/json": components["schemas"]["Roblox.Groups.Api.GroupJoinRequestResponse"];
|
|
22674
|
+
"text/json": components["schemas"]["Roblox.Groups.Api.GroupJoinRequestResponse"];
|
|
22531
22675
|
};
|
|
22532
22676
|
};
|
|
22533
22677
|
/** @description 1: The group is invalid or does not exist. */
|
|
@@ -24022,7 +24166,10 @@ export interface paths {
|
|
|
24022
24166
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.Models.Response.UserModel_"];
|
|
24023
24167
|
};
|
|
24024
24168
|
};
|
|
24025
|
-
/**
|
|
24169
|
+
/**
|
|
24170
|
+
* @description 1: The group is invalid or does not exist.
|
|
24171
|
+
* 36: The pagination cursor is invalid.
|
|
24172
|
+
*/
|
|
24026
24173
|
400: {
|
|
24027
24174
|
headers: {
|
|
24028
24175
|
[name: string]: unknown;
|
|
@@ -24861,7 +25008,10 @@ export interface paths {
|
|
|
24861
25008
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.UserGroupRoleResponse_"];
|
|
24862
25009
|
};
|
|
24863
25010
|
};
|
|
24864
|
-
/**
|
|
25011
|
+
/**
|
|
25012
|
+
* @description 1: The group is invalid or does not exist.
|
|
25013
|
+
* 36: The pagination cursor is invalid.
|
|
25014
|
+
*/
|
|
24865
25015
|
400: {
|
|
24866
25016
|
headers: {
|
|
24867
25017
|
[name: string]: unknown;
|
|
@@ -25614,6 +25764,7 @@ export interface paths {
|
|
|
25614
25764
|
/**
|
|
25615
25765
|
* @description 0: Token Validation Failed
|
|
25616
25766
|
* 2: Invalid user identifier.
|
|
25767
|
+
* 4: No login methods available. Please use account recovery.
|
|
25617
25768
|
*/
|
|
25618
25769
|
403: {
|
|
25619
25770
|
headers: {
|
|
@@ -29144,6 +29295,63 @@ export interface paths {
|
|
|
29144
29295
|
patch?: never;
|
|
29145
29296
|
trace?: never;
|
|
29146
29297
|
};
|
|
29298
|
+
"/v1/passkey/su-eligibility": {
|
|
29299
|
+
parameters: {
|
|
29300
|
+
query?: never;
|
|
29301
|
+
header?: never;
|
|
29302
|
+
path?: never;
|
|
29303
|
+
cookie?: never;
|
|
29304
|
+
};
|
|
29305
|
+
/**
|
|
29306
|
+
* Checks whether the authenticated user is eligible for silent passkey upgrade.
|
|
29307
|
+
* Route and response are intentionally obfuscated ("su-eligibility" = "silent-upgrade-eligibility").
|
|
29308
|
+
*/
|
|
29309
|
+
get: {
|
|
29310
|
+
parameters: {
|
|
29311
|
+
query?: never;
|
|
29312
|
+
header?: never;
|
|
29313
|
+
path?: never;
|
|
29314
|
+
cookie?: never;
|
|
29315
|
+
};
|
|
29316
|
+
requestBody?: never;
|
|
29317
|
+
responses: {
|
|
29318
|
+
/** @description OK */
|
|
29319
|
+
200: {
|
|
29320
|
+
headers: {
|
|
29321
|
+
[name: string]: unknown;
|
|
29322
|
+
};
|
|
29323
|
+
content: {
|
|
29324
|
+
"application/json": components["schemas"]["Roblox.Authentication.Api.Models.Response.SilentUpgradeEligibilityResponse"];
|
|
29325
|
+
"text/json": components["schemas"]["Roblox.Authentication.Api.Models.Response.SilentUpgradeEligibilityResponse"];
|
|
29326
|
+
};
|
|
29327
|
+
};
|
|
29328
|
+
/**
|
|
29329
|
+
* @description 0: Authorization has been denied for this request.
|
|
29330
|
+
* 0: An unknown error occurred with the request.
|
|
29331
|
+
*/
|
|
29332
|
+
401: {
|
|
29333
|
+
headers: {
|
|
29334
|
+
[name: string]: unknown;
|
|
29335
|
+
};
|
|
29336
|
+
content?: never;
|
|
29337
|
+
};
|
|
29338
|
+
/** @description 2: Feature disabled. */
|
|
29339
|
+
503: {
|
|
29340
|
+
headers: {
|
|
29341
|
+
[name: string]: unknown;
|
|
29342
|
+
};
|
|
29343
|
+
content?: never;
|
|
29344
|
+
};
|
|
29345
|
+
};
|
|
29346
|
+
};
|
|
29347
|
+
put?: never;
|
|
29348
|
+
post?: never;
|
|
29349
|
+
delete?: never;
|
|
29350
|
+
options?: never;
|
|
29351
|
+
head?: never;
|
|
29352
|
+
patch?: never;
|
|
29353
|
+
trace?: never;
|
|
29354
|
+
};
|
|
29147
29355
|
"/v1/passwords/validate": {
|
|
29148
29356
|
parameters: {
|
|
29149
29357
|
query?: never;
|
|
@@ -31147,154 +31355,6 @@ export interface paths {
|
|
|
31147
31355
|
patch?: never;
|
|
31148
31356
|
trace?: never;
|
|
31149
31357
|
};
|
|
31150
|
-
"/v1/star-code-affiliates": {
|
|
31151
|
-
parameters: {
|
|
31152
|
-
query?: never;
|
|
31153
|
-
header?: never;
|
|
31154
|
-
path?: never;
|
|
31155
|
-
cookie?: never;
|
|
31156
|
-
};
|
|
31157
|
-
/** Gets a star code affiliate supporter for the authenticated user */
|
|
31158
|
-
get: {
|
|
31159
|
-
parameters: {
|
|
31160
|
-
query?: never;
|
|
31161
|
-
header?: never;
|
|
31162
|
-
path?: never;
|
|
31163
|
-
cookie?: never;
|
|
31164
|
-
};
|
|
31165
|
-
requestBody?: never;
|
|
31166
|
-
responses: {
|
|
31167
|
-
/** @description OK */
|
|
31168
|
-
200: {
|
|
31169
|
-
headers: {
|
|
31170
|
-
[name: string]: unknown;
|
|
31171
|
-
};
|
|
31172
|
-
content: {
|
|
31173
|
-
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.StarCodeAffiliateResponse"];
|
|
31174
|
-
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.StarCodeAffiliateResponse"];
|
|
31175
|
-
};
|
|
31176
|
-
};
|
|
31177
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
31178
|
-
401: {
|
|
31179
|
-
headers: {
|
|
31180
|
-
[name: string]: unknown;
|
|
31181
|
-
};
|
|
31182
|
-
content?: never;
|
|
31183
|
-
};
|
|
31184
|
-
/** @description 0: An unknown error occured. */
|
|
31185
|
-
500: {
|
|
31186
|
-
headers: {
|
|
31187
|
-
[name: string]: unknown;
|
|
31188
|
-
};
|
|
31189
|
-
content?: never;
|
|
31190
|
-
};
|
|
31191
|
-
};
|
|
31192
|
-
};
|
|
31193
|
-
put?: never;
|
|
31194
|
-
/** Adds a star code affiliate supporter for the authenticated user */
|
|
31195
|
-
post: {
|
|
31196
|
-
parameters: {
|
|
31197
|
-
query?: never;
|
|
31198
|
-
header?: never;
|
|
31199
|
-
path?: never;
|
|
31200
|
-
cookie?: never;
|
|
31201
|
-
};
|
|
31202
|
-
/** @description Roblox.AccountInformation.Api.Models.StarCodeAffiliateRequest */
|
|
31203
|
-
requestBody: {
|
|
31204
|
-
content: {
|
|
31205
|
-
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.StarCodeAffiliateRequest"];
|
|
31206
|
-
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.StarCodeAffiliateRequest"];
|
|
31207
|
-
};
|
|
31208
|
-
};
|
|
31209
|
-
responses: {
|
|
31210
|
-
/** @description OK */
|
|
31211
|
-
200: {
|
|
31212
|
-
headers: {
|
|
31213
|
-
[name: string]: unknown;
|
|
31214
|
-
};
|
|
31215
|
-
content: {
|
|
31216
|
-
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.StarCodeAffiliateResponse"];
|
|
31217
|
-
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.StarCodeAffiliateResponse"];
|
|
31218
|
-
};
|
|
31219
|
-
};
|
|
31220
|
-
/** @description 1: The code was invalid. */
|
|
31221
|
-
400: {
|
|
31222
|
-
headers: {
|
|
31223
|
-
[name: string]: unknown;
|
|
31224
|
-
};
|
|
31225
|
-
content?: never;
|
|
31226
|
-
};
|
|
31227
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
31228
|
-
401: {
|
|
31229
|
-
headers: {
|
|
31230
|
-
[name: string]: unknown;
|
|
31231
|
-
};
|
|
31232
|
-
content?: never;
|
|
31233
|
-
};
|
|
31234
|
-
/** @description 0: Token Validation Failed */
|
|
31235
|
-
403: {
|
|
31236
|
-
headers: {
|
|
31237
|
-
[name: string]: unknown;
|
|
31238
|
-
};
|
|
31239
|
-
content?: never;
|
|
31240
|
-
};
|
|
31241
|
-
/** @description 0: An unknown error occured. */
|
|
31242
|
-
500: {
|
|
31243
|
-
headers: {
|
|
31244
|
-
[name: string]: unknown;
|
|
31245
|
-
};
|
|
31246
|
-
content?: never;
|
|
31247
|
-
};
|
|
31248
|
-
};
|
|
31249
|
-
};
|
|
31250
|
-
/** Removes the star code affiliate supporter for the authenticated user */
|
|
31251
|
-
delete: {
|
|
31252
|
-
parameters: {
|
|
31253
|
-
query?: never;
|
|
31254
|
-
header?: never;
|
|
31255
|
-
path?: never;
|
|
31256
|
-
cookie?: never;
|
|
31257
|
-
};
|
|
31258
|
-
requestBody?: never;
|
|
31259
|
-
responses: {
|
|
31260
|
-
/** @description OK */
|
|
31261
|
-
200: {
|
|
31262
|
-
headers: {
|
|
31263
|
-
[name: string]: unknown;
|
|
31264
|
-
};
|
|
31265
|
-
content: {
|
|
31266
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
31267
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.ApiEmptyResponseModel"];
|
|
31268
|
-
};
|
|
31269
|
-
};
|
|
31270
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
31271
|
-
401: {
|
|
31272
|
-
headers: {
|
|
31273
|
-
[name: string]: unknown;
|
|
31274
|
-
};
|
|
31275
|
-
content?: never;
|
|
31276
|
-
};
|
|
31277
|
-
/** @description 0: Token Validation Failed */
|
|
31278
|
-
403: {
|
|
31279
|
-
headers: {
|
|
31280
|
-
[name: string]: unknown;
|
|
31281
|
-
};
|
|
31282
|
-
content?: never;
|
|
31283
|
-
};
|
|
31284
|
-
/** @description 0: An unknown error occured. */
|
|
31285
|
-
500: {
|
|
31286
|
-
headers: {
|
|
31287
|
-
[name: string]: unknown;
|
|
31288
|
-
};
|
|
31289
|
-
content?: never;
|
|
31290
|
-
};
|
|
31291
|
-
};
|
|
31292
|
-
};
|
|
31293
|
-
options?: never;
|
|
31294
|
-
head?: never;
|
|
31295
|
-
patch?: never;
|
|
31296
|
-
trace?: never;
|
|
31297
|
-
};
|
|
31298
31358
|
"/v1/subcategories": {
|
|
31299
31359
|
parameters: {
|
|
31300
31360
|
query?: never;
|
|
@@ -33896,6 +33956,7 @@ export interface paths {
|
|
|
33896
33956
|
* 22: Invalid asset type.
|
|
33897
33957
|
* 23: Invalid value, the min must be less than or equal to the max
|
|
33898
33958
|
* 24: Invalid scale value
|
|
33959
|
+
* 41: You cannot change the private server price again so soon after the previous change. Please try again later.
|
|
33899
33960
|
*/
|
|
33900
33961
|
400: {
|
|
33901
33962
|
headers: {
|
|
@@ -35663,6 +35724,50 @@ export interface paths {
|
|
|
35663
35724
|
patch?: never;
|
|
35664
35725
|
trace?: never;
|
|
35665
35726
|
};
|
|
35727
|
+
"/v1/username/change/price": {
|
|
35728
|
+
parameters: {
|
|
35729
|
+
query?: never;
|
|
35730
|
+
header?: never;
|
|
35731
|
+
path?: never;
|
|
35732
|
+
cookie?: never;
|
|
35733
|
+
};
|
|
35734
|
+
/** Get the current price for a username change */
|
|
35735
|
+
get: {
|
|
35736
|
+
parameters: {
|
|
35737
|
+
query?: never;
|
|
35738
|
+
header?: never;
|
|
35739
|
+
path?: never;
|
|
35740
|
+
cookie?: never;
|
|
35741
|
+
};
|
|
35742
|
+
requestBody?: never;
|
|
35743
|
+
responses: {
|
|
35744
|
+
/** @description OK */
|
|
35745
|
+
200: {
|
|
35746
|
+
headers: {
|
|
35747
|
+
[name: string]: unknown;
|
|
35748
|
+
};
|
|
35749
|
+
content: {
|
|
35750
|
+
"application/json": components["schemas"]["Roblox.Authentication.Api.Models.UsernameChangePriceResponse"];
|
|
35751
|
+
"text/json": components["schemas"]["Roblox.Authentication.Api.Models.UsernameChangePriceResponse"];
|
|
35752
|
+
};
|
|
35753
|
+
};
|
|
35754
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
35755
|
+
401: {
|
|
35756
|
+
headers: {
|
|
35757
|
+
[name: string]: unknown;
|
|
35758
|
+
};
|
|
35759
|
+
content?: never;
|
|
35760
|
+
};
|
|
35761
|
+
};
|
|
35762
|
+
};
|
|
35763
|
+
put?: never;
|
|
35764
|
+
post?: never;
|
|
35765
|
+
delete?: never;
|
|
35766
|
+
options?: never;
|
|
35767
|
+
head?: never;
|
|
35768
|
+
patch?: never;
|
|
35769
|
+
trace?: never;
|
|
35770
|
+
};
|
|
35666
35771
|
"/v1/usernames": {
|
|
35667
35772
|
parameters: {
|
|
35668
35773
|
query?: never;
|
|
@@ -42239,6 +42344,75 @@ export interface paths {
|
|
|
42239
42344
|
patch?: never;
|
|
42240
42345
|
trace?: never;
|
|
42241
42346
|
};
|
|
42347
|
+
"/v2/assets/{assetId}/bundles": {
|
|
42348
|
+
parameters: {
|
|
42349
|
+
query?: never;
|
|
42350
|
+
header?: never;
|
|
42351
|
+
path?: never;
|
|
42352
|
+
cookie?: never;
|
|
42353
|
+
};
|
|
42354
|
+
/** Lists bundles that contain the given asset (hydrated search-detail shape for marketplace). */
|
|
42355
|
+
get: {
|
|
42356
|
+
parameters: {
|
|
42357
|
+
query?: {
|
|
42358
|
+
/** @description The number of results per request. */
|
|
42359
|
+
limit?: 10 | 25 | 50 | 100;
|
|
42360
|
+
/** @description The paging cursor for the previous or next page. */
|
|
42361
|
+
cursor?: string;
|
|
42362
|
+
/** @description The order the results are sorted in. */
|
|
42363
|
+
sortOrder?: "Asc" | "Desc";
|
|
42364
|
+
};
|
|
42365
|
+
header: {
|
|
42366
|
+
/** @description Roblox-Place-Id header. */
|
|
42367
|
+
"Roblox-Place-Id": number;
|
|
42368
|
+
/** @description Roblox-Game-Id header. */
|
|
42369
|
+
"Roblox-Game-Id": string;
|
|
42370
|
+
};
|
|
42371
|
+
path: {
|
|
42372
|
+
/** @description Asset id. */
|
|
42373
|
+
assetId: number;
|
|
42374
|
+
};
|
|
42375
|
+
cookie?: never;
|
|
42376
|
+
};
|
|
42377
|
+
requestBody?: never;
|
|
42378
|
+
responses: {
|
|
42379
|
+
/** @description OK */
|
|
42380
|
+
200: {
|
|
42381
|
+
headers: {
|
|
42382
|
+
[name: string]: unknown;
|
|
42383
|
+
};
|
|
42384
|
+
content: {
|
|
42385
|
+
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.CatalogSearchDetailedResponseItem_"];
|
|
42386
|
+
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.CatalogSearchDetailedResponseItem_"];
|
|
42387
|
+
};
|
|
42388
|
+
};
|
|
42389
|
+
/**
|
|
42390
|
+
* @description 1: Invalid assetId
|
|
42391
|
+
* 4: Invalid Cursor.
|
|
42392
|
+
*/
|
|
42393
|
+
400: {
|
|
42394
|
+
headers: {
|
|
42395
|
+
[name: string]: unknown;
|
|
42396
|
+
};
|
|
42397
|
+
content?: never;
|
|
42398
|
+
};
|
|
42399
|
+
/** @description 7: User is unauthorized. */
|
|
42400
|
+
403: {
|
|
42401
|
+
headers: {
|
|
42402
|
+
[name: string]: unknown;
|
|
42403
|
+
};
|
|
42404
|
+
content?: never;
|
|
42405
|
+
};
|
|
42406
|
+
};
|
|
42407
|
+
};
|
|
42408
|
+
put?: never;
|
|
42409
|
+
post?: never;
|
|
42410
|
+
delete?: never;
|
|
42411
|
+
options?: never;
|
|
42412
|
+
head?: never;
|
|
42413
|
+
patch?: never;
|
|
42414
|
+
trace?: never;
|
|
42415
|
+
};
|
|
42242
42416
|
"/v2/assets/{assetId}/owners": {
|
|
42243
42417
|
parameters: {
|
|
42244
42418
|
query?: never;
|
|
@@ -47029,6 +47203,7 @@ export interface paths {
|
|
|
47029
47203
|
* 23: Invalid value, the min must be less than or equal to the max
|
|
47030
47204
|
* 24: Invalid scale value
|
|
47031
47205
|
* 28: OptIn/Out Regions Not Supported.
|
|
47206
|
+
* 41: You cannot change the private server price again so soon after the previous change. Please try again later.
|
|
47032
47207
|
*/
|
|
47033
47208
|
400: {
|
|
47034
47209
|
headers: {
|
|
@@ -47285,6 +47460,50 @@ export interface paths {
|
|
|
47285
47460
|
patch?: never;
|
|
47286
47461
|
trace?: never;
|
|
47287
47462
|
};
|
|
47463
|
+
"/v2/username/change/price": {
|
|
47464
|
+
parameters: {
|
|
47465
|
+
query?: never;
|
|
47466
|
+
header?: never;
|
|
47467
|
+
path?: never;
|
|
47468
|
+
cookie?: never;
|
|
47469
|
+
};
|
|
47470
|
+
/** Get the current price for a username change */
|
|
47471
|
+
get: {
|
|
47472
|
+
parameters: {
|
|
47473
|
+
query?: never;
|
|
47474
|
+
header?: never;
|
|
47475
|
+
path?: never;
|
|
47476
|
+
cookie?: never;
|
|
47477
|
+
};
|
|
47478
|
+
requestBody?: never;
|
|
47479
|
+
responses: {
|
|
47480
|
+
/** @description OK */
|
|
47481
|
+
200: {
|
|
47482
|
+
headers: {
|
|
47483
|
+
[name: string]: unknown;
|
|
47484
|
+
};
|
|
47485
|
+
content: {
|
|
47486
|
+
"application/json": components["schemas"]["Roblox.Authentication.Api.Models.UsernameChangePriceResponse"];
|
|
47487
|
+
"text/json": components["schemas"]["Roblox.Authentication.Api.Models.UsernameChangePriceResponse"];
|
|
47488
|
+
};
|
|
47489
|
+
};
|
|
47490
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
47491
|
+
401: {
|
|
47492
|
+
headers: {
|
|
47493
|
+
[name: string]: unknown;
|
|
47494
|
+
};
|
|
47495
|
+
content?: never;
|
|
47496
|
+
};
|
|
47497
|
+
};
|
|
47498
|
+
};
|
|
47499
|
+
put?: never;
|
|
47500
|
+
post?: never;
|
|
47501
|
+
delete?: never;
|
|
47502
|
+
options?: never;
|
|
47503
|
+
head?: never;
|
|
47504
|
+
patch?: never;
|
|
47505
|
+
trace?: never;
|
|
47506
|
+
};
|
|
47288
47507
|
"/v2/usernames": {
|
|
47289
47508
|
parameters: {
|
|
47290
47509
|
query?: never;
|
|
@@ -48825,6 +49044,30 @@ export interface components {
|
|
|
48825
49044
|
*/
|
|
48826
49045
|
browserTrackerId?: number | null;
|
|
48827
49046
|
};
|
|
49047
|
+
/** @description JSON shape of an RPN conditional rule in public API requests, aligned with `roblox.creatorexperienceconfig.conditionrules.v1.RpnRule`. */
|
|
49048
|
+
ConditionalRuleDefinition: {
|
|
49049
|
+
/** @description Postfix RPN token sequence. */
|
|
49050
|
+
tokens?: components["schemas"]["RpnTokenDto"][] | null;
|
|
49051
|
+
};
|
|
49052
|
+
/** @description Minimal delta for conditional rules on a revision (optional extension on list revisions). */
|
|
49053
|
+
ConditionalRulesChangesPayload: {
|
|
49054
|
+
rulesOrder?: components["schemas"]["RulesOrderDeltaPayload"] | null;
|
|
49055
|
+
rules?: {
|
|
49056
|
+
[key: string]: components["schemas"]["RuleDeltaPayload"];
|
|
49057
|
+
} | null;
|
|
49058
|
+
};
|
|
49059
|
+
/** @description Public JSON shape for conditional rules (`rules` + `rulesOrder`), aligned with CMS `ConditionalRules`. */
|
|
49060
|
+
ConditionalRulesPayload: {
|
|
49061
|
+
/**
|
|
49062
|
+
* @description RPN rules keyed by condition id. On `draft:overwrite`, omitting a rule id that exists on published removes that rule; JSON `null` tombstones;
|
|
49063
|
+
* `{ "tokens": [] }` is an explicit empty rule.
|
|
49064
|
+
*/
|
|
49065
|
+
rules?: {
|
|
49066
|
+
[key: string]: components["schemas"]["ConditionalRuleDefinition"];
|
|
49067
|
+
} | null;
|
|
49068
|
+
/** @description Evaluation order (condition ids). */
|
|
49069
|
+
rulesOrder?: string[] | null;
|
|
49070
|
+
};
|
|
48828
49071
|
/** @description A draft entry containing a value and optional description. */
|
|
48829
49072
|
ConfigDraftEntry: {
|
|
48830
49073
|
/** @description The value of the configuration entry. */
|
|
@@ -48840,6 +49083,8 @@ export interface components {
|
|
|
48840
49083
|
entries?: {
|
|
48841
49084
|
[key: string]: components["schemas"]["ConfigDraftEntry"];
|
|
48842
49085
|
} | null;
|
|
49086
|
+
/** @description Conditional rules staged on the draft, when any exist. */
|
|
49087
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
48843
49088
|
};
|
|
48844
49089
|
/** @description A full representation of a configuration repository, including all entries and their metadata. */
|
|
48845
49090
|
ConfigRepositoryFull: {
|
|
@@ -48849,6 +49094,8 @@ export interface components {
|
|
|
48849
49094
|
} | null;
|
|
48850
49095
|
/** @description Metadata about the configuration repository. */
|
|
48851
49096
|
metadata?: components["schemas"]["ConfigRepositoryMetadata"] | null;
|
|
49097
|
+
/** @description Conditional RPN rules and evaluation order, when any exist. */
|
|
49098
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
48852
49099
|
};
|
|
48853
49100
|
/** @description Metadata about the configuration repository. */
|
|
48854
49101
|
ConfigRepositoryMetadata: {
|
|
@@ -48869,9 +49116,13 @@ export interface components {
|
|
|
48869
49116
|
entries?: {
|
|
48870
49117
|
[key: string]: unknown;
|
|
48871
49118
|
} | null;
|
|
49119
|
+
/** @description Conditional RPN rules and evaluation order, when any exist. */
|
|
49120
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
48872
49121
|
};
|
|
48873
49122
|
/** @description A full representation of a configuration value, including its metadata. */
|
|
48874
49123
|
ConfigValueFull: {
|
|
49124
|
+
/** @description Non-default branches (e.g. conditional), when present. */
|
|
49125
|
+
variants?: components["schemas"]["ConfigVariantDto"][] | null;
|
|
48875
49126
|
/** @description The value of the configuration entry. */
|
|
48876
49127
|
value?: unknown;
|
|
48877
49128
|
/** @description A description of the configuration entry. */
|
|
@@ -48887,6 +49138,25 @@ export interface components {
|
|
|
48887
49138
|
*/
|
|
48888
49139
|
lastAccessedTime?: string;
|
|
48889
49140
|
};
|
|
49141
|
+
/** @description A non-default branch on a config entry (public API discriminated variant). */
|
|
49142
|
+
ConfigVariantDto: {
|
|
49143
|
+
/**
|
|
49144
|
+
* @description Variant discriminator (e.g. conditional branch).
|
|
49145
|
+
*
|
|
49146
|
+
* conditional
|
|
49147
|
+
*/
|
|
49148
|
+
type?: components["schemas"]["ConfigVariantType"];
|
|
49149
|
+
/** @description Identifier for this variant within CreatorConfigsPublicApi.Models.ConfigVariantDto.Type (e.g. conditional rule id for CreatorConfigsPublicApi.Models.ConfigVariantType.Conditional). */
|
|
49150
|
+
variantTypeId?: string | null;
|
|
49151
|
+
value?: unknown;
|
|
49152
|
+
};
|
|
49153
|
+
/**
|
|
49154
|
+
* @description Discriminator for entries in CreatorConfigsPublicApi.Models.ConfigVariantDto variant lists (full config and revision snapshots).
|
|
49155
|
+
*
|
|
49156
|
+
* conditional
|
|
49157
|
+
* @enum {string}
|
|
49158
|
+
*/
|
|
49159
|
+
ConfigVariantType: "conditional";
|
|
48890
49160
|
/** @description Represents the content of a message. */
|
|
48891
49161
|
ContentMessage: {
|
|
48892
49162
|
/**
|
|
@@ -49025,6 +49295,9 @@ export interface components {
|
|
|
49025
49295
|
*/
|
|
49026
49296
|
collectionName?: string | null;
|
|
49027
49297
|
} | null;
|
|
49298
|
+
CreateThumbnailPersonalizationRequest: {
|
|
49299
|
+
homepageThumbnailIds: string[];
|
|
49300
|
+
};
|
|
49028
49301
|
/** @description The context of creation that is not part of the asset content, such as metadata and creator information. Required for [Create Asset](#POST-v1-assets). */
|
|
49029
49302
|
CreationContext: {
|
|
49030
49303
|
/** @description Desired privacy setting for the asset on creation. Only applies to asset types that support privacy override. */
|
|
@@ -49590,6 +49863,10 @@ export interface components {
|
|
|
49590
49863
|
* @enum {string}
|
|
49591
49864
|
*/
|
|
49592
49865
|
FilterType: "String" | "Number";
|
|
49866
|
+
FindThumbnailsResponse: {
|
|
49867
|
+
homepageThumbnails: components["schemas"]["HomepageThumbnail"][];
|
|
49868
|
+
nextCursor?: string | null;
|
|
49869
|
+
};
|
|
49593
49870
|
/**
|
|
49594
49871
|
* @description Represents metadata about the long-running operation corresponding to a
|
|
49595
49872
|
* FlushMemoryStore request.
|
|
@@ -50390,6 +50667,16 @@ export interface components {
|
|
|
50390
50667
|
*/
|
|
50391
50668
|
bypassSlowMode?: boolean;
|
|
50392
50669
|
};
|
|
50670
|
+
HomepageThumbnail: {
|
|
50671
|
+
homepageThumbnailId: string;
|
|
50672
|
+
/** Format: int64 */
|
|
50673
|
+
assetId: number;
|
|
50674
|
+
moderationStatus: components["schemas"]["ThumbnailPersonalizationApi.ModerationStatus"];
|
|
50675
|
+
personalizedConfigStatus: components["schemas"]["PersonalizedConfigStatus"];
|
|
50676
|
+
homepageThumbnailStatus: components["schemas"]["HomepageThumbnailStatus"];
|
|
50677
|
+
};
|
|
50678
|
+
/** @enum {string} */
|
|
50679
|
+
HomepageThumbnailStatus: "Active" | "Spammy";
|
|
50393
50680
|
HttpContent: {
|
|
50394
50681
|
readonly headers?: components["schemas"]["StringStringIEnumerableKeyValuePair"][] | null;
|
|
50395
50682
|
};
|
|
@@ -50790,6 +51077,8 @@ export interface components {
|
|
|
50790
51077
|
placeIdToVersions?: {
|
|
50791
51078
|
[key: string]: number[] | null;
|
|
50792
51079
|
} | null;
|
|
51080
|
+
/** @description Optional. Attributes string to include in the ServerLifecycleChanged CSM payload published to game servers. */
|
|
51081
|
+
attributes?: string | null;
|
|
50793
51082
|
};
|
|
50794
51083
|
/** @description Launch Update response. */
|
|
50795
51084
|
LaunchUpdateResponse: {
|
|
@@ -51050,6 +51339,13 @@ export interface components {
|
|
|
51050
51339
|
*/
|
|
51051
51340
|
nextPageToken?: string;
|
|
51052
51341
|
};
|
|
51342
|
+
/** @description Literal constant for an RPN operand (proto `LiteralValue` oneof as independent fields for JSON). */
|
|
51343
|
+
LiteralValueDto: {
|
|
51344
|
+
booleanValue?: string | null;
|
|
51345
|
+
integerValue?: string | null;
|
|
51346
|
+
doubleValue?: string | null;
|
|
51347
|
+
stringValue?: string | null;
|
|
51348
|
+
};
|
|
51053
51349
|
/**
|
|
51054
51350
|
* @description A `LuauExecutionSessionTask` ("task" for short) executes a given Luau script
|
|
51055
51351
|
* in the context of a specific version of a place.
|
|
@@ -51943,6 +52239,8 @@ export interface components {
|
|
|
51943
52239
|
/** @description The name of the entry. */
|
|
51944
52240
|
readonly id?: string;
|
|
51945
52241
|
};
|
|
52242
|
+
/** @enum {string} */
|
|
52243
|
+
PersonalizedConfigStatus: "Active" | "Inactive";
|
|
51946
52244
|
/** @description Represents a Roblox place. */
|
|
51947
52245
|
Place: {
|
|
51948
52246
|
/**
|
|
@@ -52434,9 +52732,11 @@ export interface components {
|
|
|
52434
52732
|
* RecommendationServicesConfig
|
|
52435
52733
|
*
|
|
52436
52734
|
* DataStoresConfig
|
|
52735
|
+
*
|
|
52736
|
+
* ExtendedServicesConfig
|
|
52437
52737
|
* @enum {string}
|
|
52438
52738
|
*/
|
|
52439
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig";
|
|
52739
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig";
|
|
52440
52740
|
/**
|
|
52441
52741
|
* @description The current state of a place restart.
|
|
52442
52742
|
* @enum {string}
|
|
@@ -52566,6 +52866,8 @@ export interface components {
|
|
|
52566
52866
|
changes?: {
|
|
52567
52867
|
[key: string]: components["schemas"]["RevisionChange"];
|
|
52568
52868
|
} | null;
|
|
52869
|
+
/** @description Optional delta for conditional rules when this revision touched rules or evaluation order. */
|
|
52870
|
+
conditionalRulesChanges?: components["schemas"]["ConditionalRulesChangesPayload"] | null;
|
|
52569
52871
|
};
|
|
52570
52872
|
/** @description The birthdate response */
|
|
52571
52873
|
"Roblox.AccountInformation.Api.Models.BirthdateResponse": {
|
|
@@ -52702,23 +53004,6 @@ export interface components {
|
|
|
52702
53004
|
/** @description The Twitch channel */
|
|
52703
53005
|
twitch?: string;
|
|
52704
53006
|
};
|
|
52705
|
-
/** @description The star code affiliate request */
|
|
52706
|
-
"Roblox.AccountInformation.Api.Models.StarCodeAffiliateRequest": {
|
|
52707
|
-
/** @description The star code affiliate code */
|
|
52708
|
-
code?: string;
|
|
52709
|
-
};
|
|
52710
|
-
/** @description The star code affiliate response */
|
|
52711
|
-
"Roblox.AccountInformation.Api.Models.StarCodeAffiliateResponse": {
|
|
52712
|
-
/**
|
|
52713
|
-
* Format: int64
|
|
52714
|
-
* @description The star code affiliate user id
|
|
52715
|
-
*/
|
|
52716
|
-
userId?: number;
|
|
52717
|
-
/** @description The star code affiliate name */
|
|
52718
|
-
name?: string;
|
|
52719
|
-
/** @description The star code affiliate code */
|
|
52720
|
-
code?: string;
|
|
52721
|
-
};
|
|
52722
53007
|
/** @description Verify Email Request */
|
|
52723
53008
|
"Roblox.AccountInformation.Api.Models.VerifyEmailRequest": {
|
|
52724
53009
|
/** @description Ticket to verify email */
|
|
@@ -54045,6 +54330,16 @@ export interface components {
|
|
|
54045
54330
|
isPublicPublish?: boolean;
|
|
54046
54331
|
/** @description Whether the universeId is within the tracked list of distinct allowed published universes. */
|
|
54047
54332
|
isPublishToExistingUniverse?: boolean;
|
|
54333
|
+
/** @description Whether the universe is in the "Select" program. */
|
|
54334
|
+
isUniverseSelect?: boolean;
|
|
54335
|
+
/**
|
|
54336
|
+
* Format: int32
|
|
54337
|
+
* @description The creator tier of the universe owner. ['Invalid' = 0, 'Blocked' = 1, 'Private' = 2, 'Trusted' = 3, 'Everyone' = 4]
|
|
54338
|
+
* @enum {integer}
|
|
54339
|
+
*/
|
|
54340
|
+
creatorTier?: 0 | 1 | 2 | 3 | 4;
|
|
54341
|
+
/** @description Audiences the universe is allowed to be published to. */
|
|
54342
|
+
allowedAudiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54048
54343
|
};
|
|
54049
54344
|
/** @description Represents a game template in API endpoint responses. */
|
|
54050
54345
|
"Roblox.Api.Develop.Models.GameTemplateModel": {
|
|
@@ -54375,7 +54670,7 @@ export interface components {
|
|
|
54375
54670
|
*/
|
|
54376
54671
|
genre?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14;
|
|
54377
54672
|
/** @description List of device types this game can be played on. */
|
|
54378
|
-
playableDevices?: (1 | 2 | 3 | 4 | 5)[];
|
|
54673
|
+
playableDevices?: (1 | 2 | 3 | 4 | 5 | 6)[];
|
|
54379
54674
|
/** @description Whether the game is offered for sale. */
|
|
54380
54675
|
isForSale?: boolean;
|
|
54381
54676
|
/**
|
|
@@ -54451,7 +54746,7 @@ export interface components {
|
|
|
54451
54746
|
*/
|
|
54452
54747
|
genre?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14;
|
|
54453
54748
|
/** @description List of device types this game can be played on. */
|
|
54454
|
-
playableDevices?: (1 | 2 | 3 | 4 | 5)[];
|
|
54749
|
+
playableDevices?: (1 | 2 | 3 | 4 | 5 | 6)[];
|
|
54455
54750
|
/** @description Whether the game is offered for sale. */
|
|
54456
54751
|
isForSale?: boolean;
|
|
54457
54752
|
/**
|
|
@@ -54483,6 +54778,12 @@ export interface components {
|
|
|
54483
54778
|
* @enum {integer}
|
|
54484
54779
|
*/
|
|
54485
54780
|
fiatProductChangeType?: 0 | 1 | 2 | 3;
|
|
54781
|
+
/**
|
|
54782
|
+
* @description Audiences allowed to view this universe, written directly to the new UniversePublicitySettings
|
|
54783
|
+
* entity in universe-settings-service. When provided, persists exactly the supplied audience set
|
|
54784
|
+
* and skips the IsFriendsOnly-derived USS dual-write that runs under non-Off treatments.
|
|
54785
|
+
*/
|
|
54786
|
+
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54486
54787
|
};
|
|
54487
54788
|
/** @description Model for UniverseSettings controller responses */
|
|
54488
54789
|
"Roblox.Api.Develop.Models.UniverseSettingsResponse": {
|
|
@@ -54551,7 +54852,7 @@ export interface components {
|
|
|
54551
54852
|
*/
|
|
54552
54853
|
genre?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14;
|
|
54553
54854
|
/** @description List of device types this game can be played on. */
|
|
54554
|
-
playableDevices?: (1 | 2 | 3 | 4 | 5)[];
|
|
54855
|
+
playableDevices?: (1 | 2 | 3 | 4 | 5 | 6)[];
|
|
54555
54856
|
/** @description Whether the game is offered for sale. */
|
|
54556
54857
|
isForSale?: boolean;
|
|
54557
54858
|
/**
|
|
@@ -54573,6 +54874,13 @@ export interface components {
|
|
|
54573
54874
|
* @enum {integer}
|
|
54574
54875
|
*/
|
|
54575
54876
|
fiatModerationStatus?: 0 | 1 | 2 | 3 | 4;
|
|
54877
|
+
/**
|
|
54878
|
+
* @description Audiences allowed to view this universe, sourced from the new UniversePublicitySettings entity
|
|
54879
|
+
* in universe-settings-service. Populated from USS only when UniversePublicitySettingsTreatment
|
|
54880
|
+
* is ReverseShadow or Authority (USS is the source of truth in those modes); an empty list is
|
|
54881
|
+
* returned for Off and Shadow so clients always see a stable shape, never null.
|
|
54882
|
+
*/
|
|
54883
|
+
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54576
54884
|
};
|
|
54577
54885
|
/** @description Model for UniverseSettings controller responses */
|
|
54578
54886
|
"Roblox.Api.Develop.Models.UniverseSettingsResponseV2": {
|
|
@@ -54638,7 +54946,7 @@ export interface components {
|
|
|
54638
54946
|
*/
|
|
54639
54947
|
genre?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14;
|
|
54640
54948
|
/** @description List of device types this game can be played on. */
|
|
54641
|
-
playableDevices?: (1 | 2 | 3 | 4 | 5)[];
|
|
54949
|
+
playableDevices?: (1 | 2 | 3 | 4 | 5 | 6)[];
|
|
54642
54950
|
/** @description Whether the game is offered for sale. */
|
|
54643
54951
|
isForSale?: boolean;
|
|
54644
54952
|
/**
|
|
@@ -54665,6 +54973,13 @@ export interface components {
|
|
|
54665
54973
|
fiatModerationStatus?: 0 | 1 | 2 | 3 | 4;
|
|
54666
54974
|
/** @description Whether the game is elegible for text chat service auto migration. */
|
|
54667
54975
|
eligibleForTextChatMigration?: boolean;
|
|
54976
|
+
/**
|
|
54977
|
+
* @description Audiences allowed to view this universe, sourced from the new UniversePublicitySettings entity
|
|
54978
|
+
* in universe-settings-service. Populated from USS only when UniversePublicitySettingsTreatment
|
|
54979
|
+
* is ReverseShadow or Authority (USS is the source of truth in those modes); an empty list is
|
|
54980
|
+
* returned for Off and Shadow so clients always see a stable shape, never null.
|
|
54981
|
+
*/
|
|
54982
|
+
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54668
54983
|
};
|
|
54669
54984
|
/** @description Team create settings of a universe */
|
|
54670
54985
|
"Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel": {
|
|
@@ -54940,6 +55255,9 @@ export interface components {
|
|
|
54940
55255
|
/** Format: int32 */
|
|
54941
55256
|
cookieLawNoticeTimeout?: number;
|
|
54942
55257
|
};
|
|
55258
|
+
"Roblox.Authentication.Api.Models.AuthMethodsMetadataResponse": {
|
|
55259
|
+
isEligibleForALSignup?: boolean;
|
|
55260
|
+
};
|
|
54943
55261
|
"Roblox.Authentication.Api.Models.EmailValidationResponse": {
|
|
54944
55262
|
isEmailValid?: boolean;
|
|
54945
55263
|
};
|
|
@@ -55303,6 +55621,9 @@ export interface components {
|
|
|
55303
55621
|
"Roblox.Authentication.Api.Models.Response.PasskeyCredential": {
|
|
55304
55622
|
nickname?: string;
|
|
55305
55623
|
};
|
|
55624
|
+
"Roblox.Authentication.Api.Models.Response.SilentUpgradeEligibilityResponse": {
|
|
55625
|
+
suEligibility?: boolean;
|
|
55626
|
+
};
|
|
55306
55627
|
"Roblox.Authentication.Api.Models.Response.StartAuthenticationByUserResponse": {
|
|
55307
55628
|
authenticationOptions?: string;
|
|
55308
55629
|
sessionId?: string;
|
|
@@ -55431,6 +55752,12 @@ export interface components {
|
|
|
55431
55752
|
identityVerificationLoginTicket?: string;
|
|
55432
55753
|
accountBlob?: string;
|
|
55433
55754
|
};
|
|
55755
|
+
"Roblox.Authentication.Api.Models.UsernameChangePriceResponse": {
|
|
55756
|
+
/** Format: int64 */
|
|
55757
|
+
priceInRobux?: number;
|
|
55758
|
+
/** Format: int64 */
|
|
55759
|
+
basePriceInRobux?: number;
|
|
55760
|
+
};
|
|
55434
55761
|
"Roblox.Authentication.Api.Models.UsernameChangeRequest": {
|
|
55435
55762
|
username?: string;
|
|
55436
55763
|
password?: string;
|
|
@@ -55766,7 +56093,7 @@ export interface components {
|
|
|
55766
56093
|
/** @description The System.Collections.Generic.IEnumerable`1 contained in the bundle, serialized if item is a bundle. */
|
|
55767
56094
|
bundledItems?: components["schemas"]["Roblox.Catalog.Api.BundleItemDetailModel"][];
|
|
55768
56095
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
55769
|
-
itemStatus?: (1 | 2 | 7)[];
|
|
56096
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
55770
56097
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
55771
56098
|
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
55772
56099
|
/** @description The verified status of a creator. */
|
|
@@ -55857,6 +56184,7 @@ export interface components {
|
|
|
55857
56184
|
* @description The UTC creation date-time of the asset or bundle.
|
|
55858
56185
|
*/
|
|
55859
56186
|
itemCreatedUtc?: string;
|
|
56187
|
+
discountInformation?: components["schemas"]["Roblox.Catalog.Api.DiscountInformation"];
|
|
55860
56188
|
/**
|
|
55861
56189
|
* Format: int64
|
|
55862
56190
|
* @description The Item Id.
|
|
@@ -55892,7 +56220,7 @@ export interface components {
|
|
|
55892
56220
|
*/
|
|
55893
56221
|
productId?: number;
|
|
55894
56222
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
55895
|
-
itemStatus?: (1 | 2 | 7)[];
|
|
56223
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
55896
56224
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
55897
56225
|
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
55898
56226
|
/** @description The verified status of a creator. */
|
|
@@ -60870,10 +61198,10 @@ export interface components {
|
|
|
60870
61198
|
Message?: string;
|
|
60871
61199
|
/**
|
|
60872
61200
|
* Format: int32
|
|
60873
|
-
* @description Custom error code for Roblox.Web.Assets.IAssetItemError ['UnknownError' = 0, 'NoPermissionToAsset' = 1, 'AssetPermissionCheckFailed' = 2, 'NotAuthorizedForAgeRecommendation' = 3, 'AgeRecommendationCheckFailed' = 4, 'InvalidPlaceRequestFromGameServer' = 5, 'BlockedAssetTypeRequestedFromInsertService' = 6, 'BlockedAssetTypeRequestedFromGameServer' = 7, 'AssetTypeMismatch' = 8, 'MissingAssetTypeInRequestHeader' = 9, 'AssetNotTrustedForPlace' = 10, 'NoAuthentication' = 11, 'AssetContentRepresentationBlockedDueToModeration' = 12, 'AssetNotFound' = 13, 'AssetVersionNotFound' = 14, 'AssetContentRepresentationNotFound' = 15, 'BlockedByAgeGeoRestriction' = 16, 'BlockedAssetTypeRequestedFromNonGameServer' = 17, 'AssetPendingReview' = 18, 'NotApprovedForRequestor' = 19, 'NotApprovedByContentCompliance' = 20, 'AssetContentRepresentationGenerating' = 21]
|
|
61201
|
+
* @description Custom error code for Roblox.Web.Assets.IAssetItemError ['UnknownError' = 0, 'NoPermissionToAsset' = 1, 'AssetPermissionCheckFailed' = 2, 'NotAuthorizedForAgeRecommendation' = 3, 'AgeRecommendationCheckFailed' = 4, 'InvalidPlaceRequestFromGameServer' = 5, 'BlockedAssetTypeRequestedFromInsertService' = 6, 'BlockedAssetTypeRequestedFromGameServer' = 7, 'AssetTypeMismatch' = 8, 'MissingAssetTypeInRequestHeader' = 9, 'AssetNotTrustedForPlace' = 10, 'NoAuthentication' = 11, 'AssetContentRepresentationBlockedDueToModeration' = 12, 'AssetNotFound' = 13, 'AssetVersionNotFound' = 14, 'AssetContentRepresentationNotFound' = 15, 'BlockedByAgeGeoRestriction' = 16, 'BlockedAssetTypeRequestedFromNonGameServer' = 17, 'AssetPendingReview' = 18, 'NotApprovedForRequestor' = 19, 'NotApprovedByContentCompliance' = 20, 'AssetContentRepresentationGenerating' = 21, 'AssetArchived' = 22]
|
|
60874
61202
|
* @enum {integer}
|
|
60875
61203
|
*/
|
|
60876
|
-
CustomErrorCode?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
|
|
61204
|
+
CustomErrorCode?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22;
|
|
60877
61205
|
};
|
|
60878
61206
|
"Roblox.Web.Captcha.Models.Request.CaptchaTokenRequest": {
|
|
60879
61207
|
captchaId?: string;
|
|
@@ -61501,6 +61829,26 @@ export interface components {
|
|
|
61501
61829
|
"Roblox.Web.WebAPI.Models.ApiSuccessResponse": {
|
|
61502
61830
|
success?: boolean;
|
|
61503
61831
|
};
|
|
61832
|
+
/** @description RPN operand: attribute reference or literal value (same concepts as the proto `RpnOperand` oneof). */
|
|
61833
|
+
RpnOperandDto: {
|
|
61834
|
+
attributeReference?: string | null;
|
|
61835
|
+
/** @description Literal constant for an RPN operand (proto `LiteralValue` oneof as independent fields for JSON). */
|
|
61836
|
+
literalValue?: components["schemas"]["LiteralValueDto"] | null;
|
|
61837
|
+
};
|
|
61838
|
+
/** @description One RPN token: either a logical/comparison CreatorConfigsPublicApi.Models.ConditionalRuleOperator (proto JSON `OPERATOR_*`) or an operand object. */
|
|
61839
|
+
RpnTokenDto: {
|
|
61840
|
+
operator?: string | null;
|
|
61841
|
+
/** @description RPN operand: attribute reference or literal value (same concepts as the proto `RpnOperand` oneof). */
|
|
61842
|
+
operand?: components["schemas"]["RpnOperandDto"] | null;
|
|
61843
|
+
};
|
|
61844
|
+
RuleDeltaPayload: {
|
|
61845
|
+
before?: unknown;
|
|
61846
|
+
after?: unknown;
|
|
61847
|
+
};
|
|
61848
|
+
RulesOrderDeltaPayload: {
|
|
61849
|
+
before?: string[] | null;
|
|
61850
|
+
after?: string[] | null;
|
|
61851
|
+
};
|
|
61504
61852
|
SalesReportDownloadRequest: {
|
|
61505
61853
|
/** Format: int64 */
|
|
61506
61854
|
targetId?: number;
|
|
@@ -61568,7 +61916,7 @@ export interface components {
|
|
|
61568
61916
|
* Format: int64
|
|
61569
61917
|
* @description The minimum price of the asset in cents. If included, must be greater than or equal to 0.
|
|
61570
61918
|
*/
|
|
61571
|
-
minPriceCents?: number;
|
|
61919
|
+
minPriceCents?: number | null;
|
|
61572
61920
|
/**
|
|
61573
61921
|
* Format: int64
|
|
61574
61922
|
* @description The maximum price of the asset in cents. If included, must be greater than or equal to 0.
|
|
@@ -62091,6 +62439,8 @@ export interface components {
|
|
|
62091
62439
|
*/
|
|
62092
62440
|
reason?: "EXPIRATION_REASON_UNSPECIFIED" | "PRODUCT_INACTIVE" | "PRODUCT_DELETED" | "SUBSCRIBER_CANCELLED" | "SUBSCRIBER_REFUNDED" | "LAPSED";
|
|
62093
62441
|
};
|
|
62442
|
+
/** @enum {string} */
|
|
62443
|
+
"ThumbnailPersonalizationApi.ModerationStatus": "Reviewing" | "Rejected" | "Approved" | "Unspecified";
|
|
62094
62444
|
"ThumbnailsApi.Roblox.Web.Responses.Thumbnails.ThumbnailResponse": {
|
|
62095
62445
|
/** Format: int64 */
|
|
62096
62446
|
targetId?: number;
|
|
@@ -62550,14 +62900,25 @@ export interface components {
|
|
|
62550
62900
|
UpdateCustomMatchmakingSignalResponse: {
|
|
62551
62901
|
scoringConfiguration?: components["schemas"]["MatchmakingScoringConfiguration"];
|
|
62552
62902
|
};
|
|
62553
|
-
/** @description Request model for
|
|
62903
|
+
/** @description Request model for draft updates: PATCH uses a partial merge; PUT `draft:overwrite` treats the body as the full intended configuration after publish. */
|
|
62554
62904
|
UpdateDraftRequest: {
|
|
62555
62905
|
/** @description The previous draft hash for concurrency control. If provided, the update will fail if it doesn't match. */
|
|
62556
62906
|
draftHash?: string | null;
|
|
62557
|
-
/**
|
|
62907
|
+
/**
|
|
62908
|
+
* @description On PATCH, keys not included are unchanged; set a key to null to delete a branch or entry per merge rules.
|
|
62909
|
+
* On PUT `draft:overwrite`, this map is the authoritative final entry set: any key present on the latest published configuration but omitted here is removed, and any conditional branch omitted for a key that remains is removed.
|
|
62910
|
+
*/
|
|
62558
62911
|
entries?: {
|
|
62559
62912
|
[key: string]: unknown;
|
|
62560
62913
|
} | null;
|
|
62914
|
+
/**
|
|
62915
|
+
* @description Optional conditional rules. On PATCH, merges with the current draft rules when this payload is non-empty (any rule id or `rulesOrder` entry).
|
|
62916
|
+
* Omit the property or send an empty object `{}` to leave rules unchanged (draft rules, or latest published rules if the draft has none yet).
|
|
62917
|
+
* On PUT `draft:overwrite`, when this property is present,
|
|
62918
|
+
* CreatorConfigsPublicApi.Models.ConditionalRulesPayload.Rules is the full intended rule set after publish: rules that exist on the latest published configuration but are omitted are removed.
|
|
62919
|
+
* When omitted on overwrite, all published conditional rules are cleared (entries must not reference conditionals unless you provide this object).
|
|
62920
|
+
*/
|
|
62921
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
62561
62922
|
};
|
|
62562
62923
|
/** @description Updates the entry provided with a new value. */
|
|
62563
62924
|
UpdateEntryRequest: {
|
|
@@ -62634,6 +62995,32 @@ export interface components {
|
|
|
62634
62995
|
UpdateMatchmakingServerAttributeDefinitionResponse: {
|
|
62635
62996
|
playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
|
|
62636
62997
|
};
|
|
62998
|
+
UpdateThumbnailPersonalizationRequest: {
|
|
62999
|
+
homepageThumbnailIds: string[];
|
|
63000
|
+
id: string;
|
|
63001
|
+
};
|
|
63002
|
+
/**
|
|
63003
|
+
* Format: int32
|
|
63004
|
+
* @enum {integer}
|
|
63005
|
+
*/
|
|
63006
|
+
UploadStatus: 1 | 2;
|
|
63007
|
+
UploadThumbnailStatus: {
|
|
63008
|
+
homepageThumbnailId?: string | null;
|
|
63009
|
+
/** Format: int64 */
|
|
63010
|
+
assetId?: number;
|
|
63011
|
+
moderationStatus?: components["schemas"]["ThumbnailPersonalizationApi.ModerationStatus"];
|
|
63012
|
+
};
|
|
63013
|
+
UploadThumbnailsResponse: {
|
|
63014
|
+
fileToOperationIdDict: {
|
|
63015
|
+
[key: string]: string | null;
|
|
63016
|
+
};
|
|
63017
|
+
};
|
|
63018
|
+
UploadThumbnailsStatusResponse: {
|
|
63019
|
+
uploadStatus: components["schemas"]["UploadStatus"];
|
|
63020
|
+
uploadThumbnailStatusDict: {
|
|
63021
|
+
[key: string]: components["schemas"]["UploadThumbnailStatus"];
|
|
63022
|
+
};
|
|
63023
|
+
};
|
|
62637
63024
|
/** @description Represents any registered user of Roblox. */
|
|
62638
63025
|
User: {
|
|
62639
63026
|
/**
|
|
@@ -66702,10 +67089,7 @@ export interface operations {
|
|
|
66702
67089
|
CreatorConfigsPublicApi_GetConfigRepositoryValues: {
|
|
66703
67090
|
parameters: {
|
|
66704
67091
|
query?: never;
|
|
66705
|
-
header?:
|
|
66706
|
-
/** @description Api Key (UUID). */
|
|
66707
|
-
"Roblox-Api-Key"?: string;
|
|
66708
|
-
};
|
|
67092
|
+
header?: never;
|
|
66709
67093
|
path: {
|
|
66710
67094
|
universeId: string;
|
|
66711
67095
|
/**
|
|
@@ -66714,6 +67098,8 @@ export interface operations {
|
|
|
66714
67098
|
* RecommendationServicesConfig
|
|
66715
67099
|
*
|
|
66716
67100
|
* DataStoresConfig
|
|
67101
|
+
*
|
|
67102
|
+
* ExtendedServicesConfig
|
|
66717
67103
|
*/
|
|
66718
67104
|
repository: components["schemas"]["Repository"];
|
|
66719
67105
|
};
|
|
@@ -66762,10 +67148,7 @@ export interface operations {
|
|
|
66762
67148
|
CreatorConfigsPublicApi_GetConfigRepositoryDraft: {
|
|
66763
67149
|
parameters: {
|
|
66764
67150
|
query?: never;
|
|
66765
|
-
header?:
|
|
66766
|
-
/** @description Api Key (UUID). */
|
|
66767
|
-
"Roblox-Api-Key"?: string;
|
|
66768
|
-
};
|
|
67151
|
+
header?: never;
|
|
66769
67152
|
path: {
|
|
66770
67153
|
universeId: string;
|
|
66771
67154
|
/**
|
|
@@ -66774,6 +67157,8 @@ export interface operations {
|
|
|
66774
67157
|
* RecommendationServicesConfig
|
|
66775
67158
|
*
|
|
66776
67159
|
* DataStoresConfig
|
|
67160
|
+
*
|
|
67161
|
+
* ExtendedServicesConfig
|
|
66777
67162
|
*/
|
|
66778
67163
|
repository: components["schemas"]["Repository"];
|
|
66779
67164
|
};
|
|
@@ -66822,10 +67207,7 @@ export interface operations {
|
|
|
66822
67207
|
CreatorConfigsPublicApi_DeleteDraft: {
|
|
66823
67208
|
parameters: {
|
|
66824
67209
|
query?: never;
|
|
66825
|
-
header?:
|
|
66826
|
-
/** @description Api Key (UUID). */
|
|
66827
|
-
"Roblox-Api-Key"?: string;
|
|
66828
|
-
};
|
|
67210
|
+
header?: never;
|
|
66829
67211
|
path: {
|
|
66830
67212
|
universeId: string;
|
|
66831
67213
|
/**
|
|
@@ -66834,6 +67216,8 @@ export interface operations {
|
|
|
66834
67216
|
* RecommendationServicesConfig
|
|
66835
67217
|
*
|
|
66836
67218
|
* DataStoresConfig
|
|
67219
|
+
*
|
|
67220
|
+
* ExtendedServicesConfig
|
|
66837
67221
|
*/
|
|
66838
67222
|
repository: components["schemas"]["Repository"];
|
|
66839
67223
|
};
|
|
@@ -66889,10 +67273,7 @@ export interface operations {
|
|
|
66889
67273
|
CreatorConfigsPublicApi_UpdateDraft: {
|
|
66890
67274
|
parameters: {
|
|
66891
67275
|
query?: never;
|
|
66892
|
-
header?:
|
|
66893
|
-
/** @description Api Key (UUID). */
|
|
66894
|
-
"Roblox-Api-Key"?: string;
|
|
66895
|
-
};
|
|
67276
|
+
header?: never;
|
|
66896
67277
|
path: {
|
|
66897
67278
|
universeId: string;
|
|
66898
67279
|
/**
|
|
@@ -66901,6 +67282,8 @@ export interface operations {
|
|
|
66901
67282
|
* RecommendationServicesConfig
|
|
66902
67283
|
*
|
|
66903
67284
|
* DataStoresConfig
|
|
67285
|
+
*
|
|
67286
|
+
* ExtendedServicesConfig
|
|
66904
67287
|
*/
|
|
66905
67288
|
repository: components["schemas"]["Repository"];
|
|
66906
67289
|
};
|
|
@@ -66956,10 +67339,7 @@ export interface operations {
|
|
|
66956
67339
|
CreatorConfigsPublicApi_OverwriteDraft: {
|
|
66957
67340
|
parameters: {
|
|
66958
67341
|
query?: never;
|
|
66959
|
-
header?:
|
|
66960
|
-
/** @description Api Key (UUID). */
|
|
66961
|
-
"Roblox-Api-Key"?: string;
|
|
66962
|
-
};
|
|
67342
|
+
header?: never;
|
|
66963
67343
|
path: {
|
|
66964
67344
|
universeId: string;
|
|
66965
67345
|
/**
|
|
@@ -66968,6 +67348,8 @@ export interface operations {
|
|
|
66968
67348
|
* RecommendationServicesConfig
|
|
66969
67349
|
*
|
|
66970
67350
|
* DataStoresConfig
|
|
67351
|
+
*
|
|
67352
|
+
* ExtendedServicesConfig
|
|
66971
67353
|
*/
|
|
66972
67354
|
repository: components["schemas"]["Repository"];
|
|
66973
67355
|
};
|
|
@@ -67023,10 +67405,7 @@ export interface operations {
|
|
|
67023
67405
|
CreatorConfigsPublicApi_GetConfigRepositoryFull: {
|
|
67024
67406
|
parameters: {
|
|
67025
67407
|
query?: never;
|
|
67026
|
-
header?:
|
|
67027
|
-
/** @description Api Key (UUID). */
|
|
67028
|
-
"Roblox-Api-Key"?: string;
|
|
67029
|
-
};
|
|
67408
|
+
header?: never;
|
|
67030
67409
|
path: {
|
|
67031
67410
|
universeId: string;
|
|
67032
67411
|
/**
|
|
@@ -67035,6 +67414,8 @@ export interface operations {
|
|
|
67035
67414
|
* RecommendationServicesConfig
|
|
67036
67415
|
*
|
|
67037
67416
|
* DataStoresConfig
|
|
67417
|
+
*
|
|
67418
|
+
* ExtendedServicesConfig
|
|
67038
67419
|
*/
|
|
67039
67420
|
repository: components["schemas"]["Repository"];
|
|
67040
67421
|
};
|
|
@@ -67083,10 +67464,7 @@ export interface operations {
|
|
|
67083
67464
|
CreatorConfigsPublicApi_PublishDraft: {
|
|
67084
67465
|
parameters: {
|
|
67085
67466
|
query?: never;
|
|
67086
|
-
header?:
|
|
67087
|
-
/** @description Api Key (UUID). */
|
|
67088
|
-
"Roblox-Api-Key"?: string;
|
|
67089
|
-
};
|
|
67467
|
+
header?: never;
|
|
67090
67468
|
path: {
|
|
67091
67469
|
universeId: string;
|
|
67092
67470
|
/**
|
|
@@ -67095,6 +67473,8 @@ export interface operations {
|
|
|
67095
67473
|
* RecommendationServicesConfig
|
|
67096
67474
|
*
|
|
67097
67475
|
* DataStoresConfig
|
|
67476
|
+
*
|
|
67477
|
+
* ExtendedServicesConfig
|
|
67098
67478
|
*/
|
|
67099
67479
|
repository: components["schemas"]["Repository"];
|
|
67100
67480
|
};
|
|
@@ -67165,10 +67545,7 @@ export interface operations {
|
|
|
67165
67545
|
/** @description Sort key (e.g., "SORT_KEY_LAST_MODIFIED_TIME"). */
|
|
67166
67546
|
SortKey?: string;
|
|
67167
67547
|
};
|
|
67168
|
-
header?:
|
|
67169
|
-
/** @description Api Key (UUID). */
|
|
67170
|
-
"Roblox-Api-Key"?: string;
|
|
67171
|
-
};
|
|
67548
|
+
header?: never;
|
|
67172
67549
|
path: {
|
|
67173
67550
|
universeId: string;
|
|
67174
67551
|
/**
|
|
@@ -67177,6 +67554,8 @@ export interface operations {
|
|
|
67177
67554
|
* RecommendationServicesConfig
|
|
67178
67555
|
*
|
|
67179
67556
|
* DataStoresConfig
|
|
67557
|
+
*
|
|
67558
|
+
* ExtendedServicesConfig
|
|
67180
67559
|
*/
|
|
67181
67560
|
repository: components["schemas"]["Repository"];
|
|
67182
67561
|
};
|
|
@@ -67225,10 +67604,7 @@ export interface operations {
|
|
|
67225
67604
|
CreatorConfigsPublicApi_RestoreRevision: {
|
|
67226
67605
|
parameters: {
|
|
67227
67606
|
query?: never;
|
|
67228
|
-
header?:
|
|
67229
|
-
/** @description Api Key (UUID). */
|
|
67230
|
-
"Roblox-Api-Key"?: string;
|
|
67231
|
-
};
|
|
67607
|
+
header?: never;
|
|
67232
67608
|
path: {
|
|
67233
67609
|
universeId: string;
|
|
67234
67610
|
/**
|
|
@@ -67237,6 +67613,8 @@ export interface operations {
|
|
|
67237
67613
|
* RecommendationServicesConfig
|
|
67238
67614
|
*
|
|
67239
67615
|
* DataStoresConfig
|
|
67616
|
+
*
|
|
67617
|
+
* ExtendedServicesConfig
|
|
67240
67618
|
*/
|
|
67241
67619
|
repository: components["schemas"]["Repository"];
|
|
67242
67620
|
revisionId: string;
|
|
@@ -68652,10 +69030,7 @@ export interface operations {
|
|
|
68652
69030
|
/** @description The specific filter to query. If null or empty, the endpoint returns all available filters. */
|
|
68653
69031
|
Filter?: components["schemas"]["FilterField"];
|
|
68654
69032
|
};
|
|
68655
|
-
header?:
|
|
68656
|
-
/** @description Api Key (UUID). */
|
|
68657
|
-
"Roblox-Api-Key"?: string;
|
|
68658
|
-
};
|
|
69033
|
+
header?: never;
|
|
68659
69034
|
path: {
|
|
68660
69035
|
/** @description The universe ID */
|
|
68661
69036
|
universeId: number;
|
|
@@ -68704,46 +69079,253 @@ export interface operations {
|
|
|
68704
69079
|
};
|
|
68705
69080
|
};
|
|
68706
69081
|
};
|
|
68707
|
-
GameServers_ListGameServers: {
|
|
69082
|
+
GameServers_ListGameServers: {
|
|
69083
|
+
parameters: {
|
|
69084
|
+
query?: {
|
|
69085
|
+
/**
|
|
69086
|
+
* @description The maximum number of game servers to return. The service might return
|
|
69087
|
+
* fewer than this value. If unspecified, at most 25 game servers are
|
|
69088
|
+
* returned. The maximum value is 100 and higher values are set to 100.
|
|
69089
|
+
*/
|
|
69090
|
+
MaxPageSize?: number;
|
|
69091
|
+
/**
|
|
69092
|
+
* @description A page token, received from a previous call, to retrieve a subsequent page.
|
|
69093
|
+
* When paginating, all other parameters provided to the subsequent call must
|
|
69094
|
+
* match the call that provided the page token.
|
|
69095
|
+
*/
|
|
69096
|
+
PageToken?: string;
|
|
69097
|
+
/**
|
|
69098
|
+
* @description Sorting is supported only for a single field at a time.
|
|
69099
|
+
* Example: "orderBy": "uptime"
|
|
69100
|
+
* Defaults to ascending, but descending ordering is also supported by
|
|
69101
|
+
* including the " desc" suffix. For example: "orderBy": "uptime desc".
|
|
69102
|
+
*/
|
|
69103
|
+
OrderBy?: string;
|
|
69104
|
+
/**
|
|
69105
|
+
* @description This field may be set in order to filter the resources returned.
|
|
69106
|
+
* - CEL filtering is supported on all fields.
|
|
69107
|
+
* - Supported operators &&, <, <=, >, >=, ==, and `in`
|
|
69108
|
+
*/
|
|
69109
|
+
Filter?: string;
|
|
69110
|
+
};
|
|
69111
|
+
header?: never;
|
|
69112
|
+
path: {
|
|
69113
|
+
/** @description The universe ID */
|
|
69114
|
+
universeId: number;
|
|
69115
|
+
/** @description The place ID */
|
|
69116
|
+
placeId: number;
|
|
69117
|
+
/** @description The version number */
|
|
69118
|
+
versionNumber: string;
|
|
69119
|
+
};
|
|
69120
|
+
cookie?: never;
|
|
69121
|
+
};
|
|
69122
|
+
requestBody?: never;
|
|
69123
|
+
responses: {
|
|
69124
|
+
/** @description Success */
|
|
69125
|
+
200: {
|
|
69126
|
+
headers: {
|
|
69127
|
+
[name: string]: unknown;
|
|
69128
|
+
};
|
|
69129
|
+
content: {
|
|
69130
|
+
"application/json": components["schemas"]["ServerManagementService.ListGameServersResponse"];
|
|
69131
|
+
};
|
|
69132
|
+
};
|
|
69133
|
+
/** @description Bad Request */
|
|
69134
|
+
400: {
|
|
69135
|
+
headers: {
|
|
69136
|
+
[name: string]: unknown;
|
|
69137
|
+
};
|
|
69138
|
+
content: {
|
|
69139
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69140
|
+
};
|
|
69141
|
+
};
|
|
69142
|
+
/** @description Unauthorized */
|
|
69143
|
+
401: {
|
|
69144
|
+
headers: {
|
|
69145
|
+
[name: string]: unknown;
|
|
69146
|
+
};
|
|
69147
|
+
content: {
|
|
69148
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69149
|
+
};
|
|
69150
|
+
};
|
|
69151
|
+
/** @description Forbidden */
|
|
69152
|
+
403: {
|
|
69153
|
+
headers: {
|
|
69154
|
+
[name: string]: unknown;
|
|
69155
|
+
};
|
|
69156
|
+
content: {
|
|
69157
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69158
|
+
};
|
|
69159
|
+
};
|
|
69160
|
+
};
|
|
69161
|
+
};
|
|
69162
|
+
Restarts_ListRestartStatuses: {
|
|
69163
|
+
parameters: {
|
|
69164
|
+
query?: never;
|
|
69165
|
+
header?: never;
|
|
69166
|
+
path: {
|
|
69167
|
+
/** @description The universe ID */
|
|
69168
|
+
universeId: number;
|
|
69169
|
+
};
|
|
69170
|
+
cookie?: never;
|
|
69171
|
+
};
|
|
69172
|
+
requestBody?: never;
|
|
69173
|
+
responses: {
|
|
69174
|
+
/** @description Success */
|
|
69175
|
+
200: {
|
|
69176
|
+
headers: {
|
|
69177
|
+
[name: string]: unknown;
|
|
69178
|
+
};
|
|
69179
|
+
content: {
|
|
69180
|
+
"application/json": components["schemas"]["ListRestartStatusesResponse"];
|
|
69181
|
+
};
|
|
69182
|
+
};
|
|
69183
|
+
/** @description Bad Request */
|
|
69184
|
+
400: {
|
|
69185
|
+
headers: {
|
|
69186
|
+
[name: string]: unknown;
|
|
69187
|
+
};
|
|
69188
|
+
content: {
|
|
69189
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69190
|
+
};
|
|
69191
|
+
};
|
|
69192
|
+
/** @description Unauthorized */
|
|
69193
|
+
401: {
|
|
69194
|
+
headers: {
|
|
69195
|
+
[name: string]: unknown;
|
|
69196
|
+
};
|
|
69197
|
+
content: {
|
|
69198
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69199
|
+
};
|
|
69200
|
+
};
|
|
69201
|
+
/** @description Forbidden */
|
|
69202
|
+
403: {
|
|
69203
|
+
headers: {
|
|
69204
|
+
[name: string]: unknown;
|
|
69205
|
+
};
|
|
69206
|
+
content: {
|
|
69207
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69208
|
+
};
|
|
69209
|
+
};
|
|
69210
|
+
};
|
|
69211
|
+
};
|
|
69212
|
+
Restarts_LaunchRestart: {
|
|
69213
|
+
parameters: {
|
|
69214
|
+
query?: never;
|
|
69215
|
+
header?: never;
|
|
69216
|
+
path: {
|
|
69217
|
+
/** @description The universe ID */
|
|
69218
|
+
universeId: number;
|
|
69219
|
+
};
|
|
69220
|
+
cookie?: never;
|
|
69221
|
+
};
|
|
69222
|
+
/** @description The launch restart request body */
|
|
69223
|
+
requestBody?: {
|
|
69224
|
+
content: {
|
|
69225
|
+
"application/json": components["schemas"]["LaunchRestartRequest"];
|
|
69226
|
+
"text/json": components["schemas"]["LaunchRestartRequest"];
|
|
69227
|
+
"application/*+json": components["schemas"]["LaunchRestartRequest"];
|
|
69228
|
+
};
|
|
69229
|
+
};
|
|
69230
|
+
responses: {
|
|
69231
|
+
/** @description Success */
|
|
69232
|
+
200: {
|
|
69233
|
+
headers: {
|
|
69234
|
+
[name: string]: unknown;
|
|
69235
|
+
};
|
|
69236
|
+
content: {
|
|
69237
|
+
"application/json": components["schemas"]["LaunchRestartResponse"];
|
|
69238
|
+
};
|
|
69239
|
+
};
|
|
69240
|
+
/** @description Bad Request */
|
|
69241
|
+
400: {
|
|
69242
|
+
headers: {
|
|
69243
|
+
[name: string]: unknown;
|
|
69244
|
+
};
|
|
69245
|
+
content: {
|
|
69246
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69247
|
+
};
|
|
69248
|
+
};
|
|
69249
|
+
/** @description Unauthorized */
|
|
69250
|
+
401: {
|
|
69251
|
+
headers: {
|
|
69252
|
+
[name: string]: unknown;
|
|
69253
|
+
};
|
|
69254
|
+
content: {
|
|
69255
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69256
|
+
};
|
|
69257
|
+
};
|
|
69258
|
+
/** @description Forbidden */
|
|
69259
|
+
403: {
|
|
69260
|
+
headers: {
|
|
69261
|
+
[name: string]: unknown;
|
|
69262
|
+
};
|
|
69263
|
+
content: {
|
|
69264
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69265
|
+
};
|
|
69266
|
+
};
|
|
69267
|
+
};
|
|
69268
|
+
};
|
|
69269
|
+
Restarts_ForecastRestart: {
|
|
69270
|
+
parameters: {
|
|
69271
|
+
query?: never;
|
|
69272
|
+
header?: never;
|
|
69273
|
+
path: {
|
|
69274
|
+
/** @description The universe ID */
|
|
69275
|
+
universeId: number;
|
|
69276
|
+
};
|
|
69277
|
+
cookie?: never;
|
|
69278
|
+
};
|
|
69279
|
+
requestBody?: never;
|
|
69280
|
+
responses: {
|
|
69281
|
+
/** @description Success */
|
|
69282
|
+
200: {
|
|
69283
|
+
headers: {
|
|
69284
|
+
[name: string]: unknown;
|
|
69285
|
+
};
|
|
69286
|
+
content: {
|
|
69287
|
+
"application/json": components["schemas"]["ForecastRestartResponse"];
|
|
69288
|
+
};
|
|
69289
|
+
};
|
|
69290
|
+
/** @description Bad Request */
|
|
69291
|
+
400: {
|
|
69292
|
+
headers: {
|
|
69293
|
+
[name: string]: unknown;
|
|
69294
|
+
};
|
|
69295
|
+
content: {
|
|
69296
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69297
|
+
};
|
|
69298
|
+
};
|
|
69299
|
+
/** @description Unauthorized */
|
|
69300
|
+
401: {
|
|
69301
|
+
headers: {
|
|
69302
|
+
[name: string]: unknown;
|
|
69303
|
+
};
|
|
69304
|
+
content: {
|
|
69305
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69306
|
+
};
|
|
69307
|
+
};
|
|
69308
|
+
/** @description Forbidden */
|
|
69309
|
+
403: {
|
|
69310
|
+
headers: {
|
|
69311
|
+
[name: string]: unknown;
|
|
69312
|
+
};
|
|
69313
|
+
content: {
|
|
69314
|
+
"application/json": components["schemas"]["ServerManagementService.ProblemDetails"];
|
|
69315
|
+
};
|
|
69316
|
+
};
|
|
69317
|
+
};
|
|
69318
|
+
};
|
|
69319
|
+
HomepageThumbnail_FindThumbnailPersonalizations: {
|
|
68708
69320
|
parameters: {
|
|
68709
69321
|
query?: {
|
|
68710
|
-
|
|
68711
|
-
|
|
68712
|
-
|
|
68713
|
-
* returned. The maximum value is 100 and higher values are set to 100.
|
|
68714
|
-
*/
|
|
68715
|
-
MaxPageSize?: number;
|
|
68716
|
-
/**
|
|
68717
|
-
* @description A page token, received from a previous call, to retrieve a subsequent page.
|
|
68718
|
-
* When paginating, all other parameters provided to the subsequent call must
|
|
68719
|
-
* match the call that provided the page token.
|
|
68720
|
-
*/
|
|
68721
|
-
PageToken?: string;
|
|
68722
|
-
/**
|
|
68723
|
-
* @description Sorting is supported only for a single field at a time.
|
|
68724
|
-
* Example: "orderBy": "uptime"
|
|
68725
|
-
* Defaults to ascending, but descending ordering is also supported by
|
|
68726
|
-
* including the " desc" suffix. For example: "orderBy": "uptime desc".
|
|
68727
|
-
*/
|
|
68728
|
-
OrderBy?: string;
|
|
68729
|
-
/**
|
|
68730
|
-
* @description This field may be set in order to filter the resources returned.
|
|
68731
|
-
* - CEL filtering is supported on all fields.
|
|
68732
|
-
* - Supported operators &&, <, <=, >, >=, ==, and `in`
|
|
68733
|
-
*/
|
|
68734
|
-
Filter?: string;
|
|
68735
|
-
};
|
|
68736
|
-
header?: {
|
|
68737
|
-
/** @description Api Key (UUID). */
|
|
68738
|
-
"Roblox-Api-Key"?: string;
|
|
69322
|
+
status?: components["schemas"]["PersonalizedConfigStatus"];
|
|
69323
|
+
limit?: number;
|
|
69324
|
+
cursor?: string;
|
|
68739
69325
|
};
|
|
69326
|
+
header?: never;
|
|
68740
69327
|
path: {
|
|
68741
|
-
/** @description The universe ID */
|
|
68742
69328
|
universeId: number;
|
|
68743
|
-
/** @description The place ID */
|
|
68744
|
-
placeId: number;
|
|
68745
|
-
/** @description The version number */
|
|
68746
|
-
versionNumber: string;
|
|
68747
69329
|
};
|
|
68748
69330
|
cookie?: never;
|
|
68749
69331
|
};
|
|
@@ -68755,7 +69337,7 @@ export interface operations {
|
|
|
68755
69337
|
[name: string]: unknown;
|
|
68756
69338
|
};
|
|
68757
69339
|
content: {
|
|
68758
|
-
"application/json": components["schemas"]["
|
|
69340
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68759
69341
|
};
|
|
68760
69342
|
};
|
|
68761
69343
|
/** @description Bad Request */
|
|
@@ -68764,7 +69346,7 @@ export interface operations {
|
|
|
68764
69346
|
[name: string]: unknown;
|
|
68765
69347
|
};
|
|
68766
69348
|
content: {
|
|
68767
|
-
"application/json": components["schemas"]["
|
|
69349
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68768
69350
|
};
|
|
68769
69351
|
};
|
|
68770
69352
|
/** @description Unauthorized */
|
|
@@ -68773,7 +69355,7 @@ export interface operations {
|
|
|
68773
69355
|
[name: string]: unknown;
|
|
68774
69356
|
};
|
|
68775
69357
|
content: {
|
|
68776
|
-
"application/json": components["schemas"]["
|
|
69358
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68777
69359
|
};
|
|
68778
69360
|
};
|
|
68779
69361
|
/** @description Forbidden */
|
|
@@ -68782,20 +69364,158 @@ export interface operations {
|
|
|
68782
69364
|
[name: string]: unknown;
|
|
68783
69365
|
};
|
|
68784
69366
|
content: {
|
|
68785
|
-
"application/json": components["schemas"]["
|
|
69367
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69368
|
+
};
|
|
69369
|
+
};
|
|
69370
|
+
/** @description Server Error */
|
|
69371
|
+
500: {
|
|
69372
|
+
headers: {
|
|
69373
|
+
[name: string]: unknown;
|
|
69374
|
+
};
|
|
69375
|
+
content: {
|
|
69376
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68786
69377
|
};
|
|
68787
69378
|
};
|
|
68788
69379
|
};
|
|
68789
69380
|
};
|
|
68790
|
-
|
|
69381
|
+
HomepageThumbnail_CreateThumbnailPersonalization: {
|
|
68791
69382
|
parameters: {
|
|
68792
69383
|
query?: never;
|
|
68793
|
-
header?:
|
|
68794
|
-
|
|
68795
|
-
|
|
69384
|
+
header?: never;
|
|
69385
|
+
path: {
|
|
69386
|
+
universeId: number;
|
|
68796
69387
|
};
|
|
69388
|
+
cookie?: never;
|
|
69389
|
+
};
|
|
69390
|
+
requestBody?: {
|
|
69391
|
+
content: {
|
|
69392
|
+
"application/json-patch+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69393
|
+
"application/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69394
|
+
"text/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69395
|
+
"application/*+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69396
|
+
};
|
|
69397
|
+
};
|
|
69398
|
+
responses: {
|
|
69399
|
+
/** @description Success */
|
|
69400
|
+
200: {
|
|
69401
|
+
headers: {
|
|
69402
|
+
[name: string]: unknown;
|
|
69403
|
+
};
|
|
69404
|
+
content: {
|
|
69405
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69406
|
+
};
|
|
69407
|
+
};
|
|
69408
|
+
/** @description Bad Request */
|
|
69409
|
+
400: {
|
|
69410
|
+
headers: {
|
|
69411
|
+
[name: string]: unknown;
|
|
69412
|
+
};
|
|
69413
|
+
content: {
|
|
69414
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69415
|
+
};
|
|
69416
|
+
};
|
|
69417
|
+
/** @description Unauthorized */
|
|
69418
|
+
401: {
|
|
69419
|
+
headers: {
|
|
69420
|
+
[name: string]: unknown;
|
|
69421
|
+
};
|
|
69422
|
+
content: {
|
|
69423
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69424
|
+
};
|
|
69425
|
+
};
|
|
69426
|
+
/** @description Forbidden */
|
|
69427
|
+
403: {
|
|
69428
|
+
headers: {
|
|
69429
|
+
[name: string]: unknown;
|
|
69430
|
+
};
|
|
69431
|
+
content: {
|
|
69432
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69433
|
+
};
|
|
69434
|
+
};
|
|
69435
|
+
/** @description Server Error */
|
|
69436
|
+
500: {
|
|
69437
|
+
headers: {
|
|
69438
|
+
[name: string]: unknown;
|
|
69439
|
+
};
|
|
69440
|
+
content: {
|
|
69441
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69442
|
+
};
|
|
69443
|
+
};
|
|
69444
|
+
};
|
|
69445
|
+
};
|
|
69446
|
+
HomepageThumbnail_UpdateThumbnailPersonalization: {
|
|
69447
|
+
parameters: {
|
|
69448
|
+
query?: never;
|
|
69449
|
+
header?: never;
|
|
69450
|
+
path: {
|
|
69451
|
+
universeId: number;
|
|
69452
|
+
};
|
|
69453
|
+
cookie?: never;
|
|
69454
|
+
};
|
|
69455
|
+
requestBody?: {
|
|
69456
|
+
content: {
|
|
69457
|
+
"application/json-patch+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69458
|
+
"application/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69459
|
+
"text/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69460
|
+
"application/*+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69461
|
+
};
|
|
69462
|
+
};
|
|
69463
|
+
responses: {
|
|
69464
|
+
/** @description Success */
|
|
69465
|
+
200: {
|
|
69466
|
+
headers: {
|
|
69467
|
+
[name: string]: unknown;
|
|
69468
|
+
};
|
|
69469
|
+
content: {
|
|
69470
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69471
|
+
};
|
|
69472
|
+
};
|
|
69473
|
+
/** @description Bad Request */
|
|
69474
|
+
400: {
|
|
69475
|
+
headers: {
|
|
69476
|
+
[name: string]: unknown;
|
|
69477
|
+
};
|
|
69478
|
+
content: {
|
|
69479
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69480
|
+
};
|
|
69481
|
+
};
|
|
69482
|
+
/** @description Unauthorized */
|
|
69483
|
+
401: {
|
|
69484
|
+
headers: {
|
|
69485
|
+
[name: string]: unknown;
|
|
69486
|
+
};
|
|
69487
|
+
content: {
|
|
69488
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69489
|
+
};
|
|
69490
|
+
};
|
|
69491
|
+
/** @description Forbidden */
|
|
69492
|
+
403: {
|
|
69493
|
+
headers: {
|
|
69494
|
+
[name: string]: unknown;
|
|
69495
|
+
};
|
|
69496
|
+
content: {
|
|
69497
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69498
|
+
};
|
|
69499
|
+
};
|
|
69500
|
+
/** @description Server Error */
|
|
69501
|
+
500: {
|
|
69502
|
+
headers: {
|
|
69503
|
+
[name: string]: unknown;
|
|
69504
|
+
};
|
|
69505
|
+
content: {
|
|
69506
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69507
|
+
};
|
|
69508
|
+
};
|
|
69509
|
+
};
|
|
69510
|
+
};
|
|
69511
|
+
HomepageThumbnail_GetHomepageThumbnails: {
|
|
69512
|
+
parameters: {
|
|
69513
|
+
query?: {
|
|
69514
|
+
limit?: number;
|
|
69515
|
+
nextCursor?: string;
|
|
69516
|
+
};
|
|
69517
|
+
header?: never;
|
|
68797
69518
|
path: {
|
|
68798
|
-
/** @description The universe ID */
|
|
68799
69519
|
universeId: number;
|
|
68800
69520
|
};
|
|
68801
69521
|
cookie?: never;
|
|
@@ -68808,7 +69528,7 @@ export interface operations {
|
|
|
68808
69528
|
[name: string]: unknown;
|
|
68809
69529
|
};
|
|
68810
69530
|
content: {
|
|
68811
|
-
"application/json": components["schemas"]["
|
|
69531
|
+
"application/json": components["schemas"]["FindThumbnailsResponse"];
|
|
68812
69532
|
};
|
|
68813
69533
|
};
|
|
68814
69534
|
/** @description Bad Request */
|
|
@@ -68817,7 +69537,7 @@ export interface operations {
|
|
|
68817
69537
|
[name: string]: unknown;
|
|
68818
69538
|
};
|
|
68819
69539
|
content: {
|
|
68820
|
-
"application/json": components["schemas"]["
|
|
69540
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68821
69541
|
};
|
|
68822
69542
|
};
|
|
68823
69543
|
/** @description Unauthorized */
|
|
@@ -68826,7 +69546,7 @@ export interface operations {
|
|
|
68826
69546
|
[name: string]: unknown;
|
|
68827
69547
|
};
|
|
68828
69548
|
content: {
|
|
68829
|
-
"application/json": components["schemas"]["
|
|
69549
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68830
69550
|
};
|
|
68831
69551
|
};
|
|
68832
69552
|
/** @description Forbidden */
|
|
@@ -68835,30 +69555,94 @@ export interface operations {
|
|
|
68835
69555
|
[name: string]: unknown;
|
|
68836
69556
|
};
|
|
68837
69557
|
content: {
|
|
68838
|
-
"application/json": components["schemas"]["
|
|
69558
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69559
|
+
};
|
|
69560
|
+
};
|
|
69561
|
+
/** @description Server Error */
|
|
69562
|
+
500: {
|
|
69563
|
+
headers: {
|
|
69564
|
+
[name: string]: unknown;
|
|
69565
|
+
};
|
|
69566
|
+
content: {
|
|
69567
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68839
69568
|
};
|
|
68840
69569
|
};
|
|
68841
69570
|
};
|
|
68842
69571
|
};
|
|
68843
|
-
|
|
69572
|
+
HomepageThumbnail_DeleteHomepageThumbnails: {
|
|
68844
69573
|
parameters: {
|
|
68845
|
-
query?:
|
|
68846
|
-
|
|
68847
|
-
/** @description Api Key (UUID). */
|
|
68848
|
-
"Roblox-Api-Key"?: string;
|
|
69574
|
+
query?: {
|
|
69575
|
+
homepageThumbnailIds?: string[];
|
|
68849
69576
|
};
|
|
69577
|
+
header?: never;
|
|
69578
|
+
path: {
|
|
69579
|
+
universeId: number;
|
|
69580
|
+
};
|
|
69581
|
+
cookie?: never;
|
|
69582
|
+
};
|
|
69583
|
+
requestBody?: never;
|
|
69584
|
+
responses: {
|
|
69585
|
+
/** @description Success */
|
|
69586
|
+
200: {
|
|
69587
|
+
headers: {
|
|
69588
|
+
[name: string]: unknown;
|
|
69589
|
+
};
|
|
69590
|
+
content: {
|
|
69591
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69592
|
+
};
|
|
69593
|
+
};
|
|
69594
|
+
/** @description Bad Request */
|
|
69595
|
+
400: {
|
|
69596
|
+
headers: {
|
|
69597
|
+
[name: string]: unknown;
|
|
69598
|
+
};
|
|
69599
|
+
content: {
|
|
69600
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69601
|
+
};
|
|
69602
|
+
};
|
|
69603
|
+
/** @description Unauthorized */
|
|
69604
|
+
401: {
|
|
69605
|
+
headers: {
|
|
69606
|
+
[name: string]: unknown;
|
|
69607
|
+
};
|
|
69608
|
+
content: {
|
|
69609
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69610
|
+
};
|
|
69611
|
+
};
|
|
69612
|
+
/** @description Forbidden */
|
|
69613
|
+
403: {
|
|
69614
|
+
headers: {
|
|
69615
|
+
[name: string]: unknown;
|
|
69616
|
+
};
|
|
69617
|
+
content: {
|
|
69618
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69619
|
+
};
|
|
69620
|
+
};
|
|
69621
|
+
/** @description Server Error */
|
|
69622
|
+
500: {
|
|
69623
|
+
headers: {
|
|
69624
|
+
[name: string]: unknown;
|
|
69625
|
+
};
|
|
69626
|
+
content: {
|
|
69627
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69628
|
+
};
|
|
69629
|
+
};
|
|
69630
|
+
};
|
|
69631
|
+
};
|
|
69632
|
+
HomepageThumbnail_UploadHomepageThumbnails: {
|
|
69633
|
+
parameters: {
|
|
69634
|
+
query?: never;
|
|
69635
|
+
header?: never;
|
|
68850
69636
|
path: {
|
|
68851
|
-
/** @description The universe ID */
|
|
68852
69637
|
universeId: number;
|
|
68853
69638
|
};
|
|
68854
69639
|
cookie?: never;
|
|
68855
69640
|
};
|
|
68856
|
-
/** @description The launch restart request body */
|
|
68857
69641
|
requestBody?: {
|
|
68858
69642
|
content: {
|
|
68859
|
-
"
|
|
68860
|
-
|
|
68861
|
-
|
|
69643
|
+
"multipart/form-data": {
|
|
69644
|
+
files?: string[];
|
|
69645
|
+
};
|
|
68862
69646
|
};
|
|
68863
69647
|
};
|
|
68864
69648
|
responses: {
|
|
@@ -68868,7 +69652,7 @@ export interface operations {
|
|
|
68868
69652
|
[name: string]: unknown;
|
|
68869
69653
|
};
|
|
68870
69654
|
content: {
|
|
68871
|
-
"application/json": components["schemas"]["
|
|
69655
|
+
"application/json": components["schemas"]["UploadThumbnailsResponse"];
|
|
68872
69656
|
};
|
|
68873
69657
|
};
|
|
68874
69658
|
/** @description Bad Request */
|
|
@@ -68877,7 +69661,7 @@ export interface operations {
|
|
|
68877
69661
|
[name: string]: unknown;
|
|
68878
69662
|
};
|
|
68879
69663
|
content: {
|
|
68880
|
-
"application/json": components["schemas"]["
|
|
69664
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68881
69665
|
};
|
|
68882
69666
|
};
|
|
68883
69667
|
/** @description Unauthorized */
|
|
@@ -68886,7 +69670,7 @@ export interface operations {
|
|
|
68886
69670
|
[name: string]: unknown;
|
|
68887
69671
|
};
|
|
68888
69672
|
content: {
|
|
68889
|
-
"application/json": components["schemas"]["
|
|
69673
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68890
69674
|
};
|
|
68891
69675
|
};
|
|
68892
69676
|
/** @description Forbidden */
|
|
@@ -68895,20 +69679,27 @@ export interface operations {
|
|
|
68895
69679
|
[name: string]: unknown;
|
|
68896
69680
|
};
|
|
68897
69681
|
content: {
|
|
68898
|
-
"application/json": components["schemas"]["
|
|
69682
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69683
|
+
};
|
|
69684
|
+
};
|
|
69685
|
+
/** @description Server Error */
|
|
69686
|
+
500: {
|
|
69687
|
+
headers: {
|
|
69688
|
+
[name: string]: unknown;
|
|
69689
|
+
};
|
|
69690
|
+
content: {
|
|
69691
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68899
69692
|
};
|
|
68900
69693
|
};
|
|
68901
69694
|
};
|
|
68902
69695
|
};
|
|
68903
|
-
|
|
69696
|
+
HomepageThumbnail_GetHomepageThumbnailsStatus: {
|
|
68904
69697
|
parameters: {
|
|
68905
|
-
query?:
|
|
68906
|
-
|
|
68907
|
-
/** @description Api Key (UUID). */
|
|
68908
|
-
"Roblox-Api-Key"?: string;
|
|
69698
|
+
query?: {
|
|
69699
|
+
operationIds?: string[];
|
|
68909
69700
|
};
|
|
69701
|
+
header?: never;
|
|
68910
69702
|
path: {
|
|
68911
|
-
/** @description The universe ID */
|
|
68912
69703
|
universeId: number;
|
|
68913
69704
|
};
|
|
68914
69705
|
cookie?: never;
|
|
@@ -68921,7 +69712,7 @@ export interface operations {
|
|
|
68921
69712
|
[name: string]: unknown;
|
|
68922
69713
|
};
|
|
68923
69714
|
content: {
|
|
68924
|
-
"application/json": components["schemas"]["
|
|
69715
|
+
"application/json": components["schemas"]["UploadThumbnailsStatusResponse"];
|
|
68925
69716
|
};
|
|
68926
69717
|
};
|
|
68927
69718
|
/** @description Bad Request */
|
|
@@ -68930,7 +69721,7 @@ export interface operations {
|
|
|
68930
69721
|
[name: string]: unknown;
|
|
68931
69722
|
};
|
|
68932
69723
|
content: {
|
|
68933
|
-
"application/json": components["schemas"]["
|
|
69724
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68934
69725
|
};
|
|
68935
69726
|
};
|
|
68936
69727
|
/** @description Unauthorized */
|
|
@@ -68939,7 +69730,7 @@ export interface operations {
|
|
|
68939
69730
|
[name: string]: unknown;
|
|
68940
69731
|
};
|
|
68941
69732
|
content: {
|
|
68942
|
-
"application/json": components["schemas"]["
|
|
69733
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68943
69734
|
};
|
|
68944
69735
|
};
|
|
68945
69736
|
/** @description Forbidden */
|
|
@@ -68948,7 +69739,16 @@ export interface operations {
|
|
|
68948
69739
|
[name: string]: unknown;
|
|
68949
69740
|
};
|
|
68950
69741
|
content: {
|
|
68951
|
-
"application/json": components["schemas"]["
|
|
69742
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
69743
|
+
};
|
|
69744
|
+
};
|
|
69745
|
+
/** @description Server Error */
|
|
69746
|
+
500: {
|
|
69747
|
+
headers: {
|
|
69748
|
+
[name: string]: unknown;
|
|
69749
|
+
};
|
|
69750
|
+
content: {
|
|
69751
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
68952
69752
|
};
|
|
68953
69753
|
};
|
|
68954
69754
|
};
|
|
@@ -69234,7 +70034,7 @@ export interface operations {
|
|
|
69234
70034
|
/** @description Whether the results should only include assets created by verified creators. */
|
|
69235
70035
|
includeOnlyVerifiedCreators?: boolean;
|
|
69236
70036
|
/** @description The minimum price of the asset in cents. If included, must be greater than or equal to 0. */
|
|
69237
|
-
minPriceCents?: number;
|
|
70037
|
+
minPriceCents?: number | null;
|
|
69238
70038
|
/** @description The maximum price of the asset in cents. If included, must be greater than or equal to 0. */
|
|
69239
70039
|
maxPriceCents?: number | null;
|
|
69240
70040
|
/** @description Additional keywords to query by. */
|
|
@@ -69446,10 +70246,7 @@ export interface operations {
|
|
|
69446
70246
|
query?: {
|
|
69447
70247
|
universeIds?: number[];
|
|
69448
70248
|
};
|
|
69449
|
-
header?:
|
|
69450
|
-
/** @description Api Key (UUID). */
|
|
69451
|
-
"Roblox-Api-Key"?: string;
|
|
69452
|
-
};
|
|
70249
|
+
header?: never;
|
|
69453
70250
|
path?: never;
|
|
69454
70251
|
cookie?: never;
|
|
69455
70252
|
};
|
|
@@ -69496,10 +70293,7 @@ export interface operations {
|
|
|
69496
70293
|
Voting_VoteGame: {
|
|
69497
70294
|
parameters: {
|
|
69498
70295
|
query?: never;
|
|
69499
|
-
header?:
|
|
69500
|
-
/** @description Api Key (UUID). */
|
|
69501
|
-
"Roblox-Api-Key"?: string;
|
|
69502
|
-
};
|
|
70296
|
+
header?: never;
|
|
69503
70297
|
path: {
|
|
69504
70298
|
universeId: number;
|
|
69505
70299
|
};
|
|
@@ -69530,10 +70324,7 @@ export interface operations {
|
|
|
69530
70324
|
Voting_GetGameVoteStatus: {
|
|
69531
70325
|
parameters: {
|
|
69532
70326
|
query?: never;
|
|
69533
|
-
header?:
|
|
69534
|
-
/** @description Api Key (UUID). */
|
|
69535
|
-
"Roblox-Api-Key"?: string;
|
|
69536
|
-
};
|
|
70327
|
+
header?: never;
|
|
69537
70328
|
path: {
|
|
69538
70329
|
universeId: number;
|
|
69539
70330
|
};
|
|
@@ -69557,10 +70348,7 @@ export interface operations {
|
|
|
69557
70348
|
Voting_GetGameVoteStatusForUser: {
|
|
69558
70349
|
parameters: {
|
|
69559
70350
|
query?: never;
|
|
69560
|
-
header?:
|
|
69561
|
-
/** @description Api Key (UUID). */
|
|
69562
|
-
"Roblox-Api-Key"?: string;
|
|
69563
|
-
};
|
|
70351
|
+
header?: never;
|
|
69564
70352
|
path: {
|
|
69565
70353
|
universeId: number;
|
|
69566
70354
|
};
|