@jacobhumston/roblox-openapi-ts 1.0.6 → 1.0.8
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 +438 -721
- 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;
|
|
@@ -10232,102 +10240,6 @@ export interface paths {
|
|
|
10232
10240
|
patch?: never;
|
|
10233
10241
|
trace?: never;
|
|
10234
10242
|
};
|
|
10235
|
-
"/thumbnail-personalization-api/v1/universes/{universeId}/personalization": {
|
|
10236
|
-
parameters: {
|
|
10237
|
-
query?: never;
|
|
10238
|
-
header?: never;
|
|
10239
|
-
path?: never;
|
|
10240
|
-
cookie?: never;
|
|
10241
|
-
};
|
|
10242
|
-
get: operations["ThumbnailPersonalizationApi.HomepageThumbnail_FindThumbnailPersonalizations"];
|
|
10243
|
-
put?: never;
|
|
10244
|
-
post?: never;
|
|
10245
|
-
delete?: never;
|
|
10246
|
-
options?: never;
|
|
10247
|
-
head?: never;
|
|
10248
|
-
patch?: never;
|
|
10249
|
-
trace?: never;
|
|
10250
|
-
};
|
|
10251
|
-
"/thumbnail-personalization-api/v1/universes/{universeId}/personalization/create": {
|
|
10252
|
-
parameters: {
|
|
10253
|
-
query?: never;
|
|
10254
|
-
header?: never;
|
|
10255
|
-
path?: never;
|
|
10256
|
-
cookie?: never;
|
|
10257
|
-
};
|
|
10258
|
-
get?: never;
|
|
10259
|
-
put?: never;
|
|
10260
|
-
post: operations["ThumbnailPersonalizationApi.HomepageThumbnail_CreateThumbnailPersonalization"];
|
|
10261
|
-
delete?: never;
|
|
10262
|
-
options?: never;
|
|
10263
|
-
head?: never;
|
|
10264
|
-
patch?: never;
|
|
10265
|
-
trace?: never;
|
|
10266
|
-
};
|
|
10267
|
-
"/thumbnail-personalization-api/v1/universes/{universeId}/personalization/update": {
|
|
10268
|
-
parameters: {
|
|
10269
|
-
query?: never;
|
|
10270
|
-
header?: never;
|
|
10271
|
-
path?: never;
|
|
10272
|
-
cookie?: never;
|
|
10273
|
-
};
|
|
10274
|
-
get?: never;
|
|
10275
|
-
put?: never;
|
|
10276
|
-
post: operations["ThumbnailPersonalizationApi.HomepageThumbnail_UpdateThumbnailPersonalization"];
|
|
10277
|
-
delete?: never;
|
|
10278
|
-
options?: never;
|
|
10279
|
-
head?: never;
|
|
10280
|
-
patch?: never;
|
|
10281
|
-
trace?: never;
|
|
10282
|
-
};
|
|
10283
|
-
"/thumbnail-personalization-api/v1/universes/{universeId}/thumbnails": {
|
|
10284
|
-
parameters: {
|
|
10285
|
-
query?: never;
|
|
10286
|
-
header?: never;
|
|
10287
|
-
path?: never;
|
|
10288
|
-
cookie?: never;
|
|
10289
|
-
};
|
|
10290
|
-
get: operations["ThumbnailPersonalizationApi.HomepageThumbnail_GetHomepageThumbnails"];
|
|
10291
|
-
put?: never;
|
|
10292
|
-
post?: never;
|
|
10293
|
-
delete: operations["ThumbnailPersonalizationApi.HomepageThumbnail_DeleteHomepageThumbnails"];
|
|
10294
|
-
options?: never;
|
|
10295
|
-
head?: never;
|
|
10296
|
-
patch?: never;
|
|
10297
|
-
trace?: never;
|
|
10298
|
-
};
|
|
10299
|
-
"/thumbnail-personalization-api/v1/universes/{universeId}/thumbnails/uploads": {
|
|
10300
|
-
parameters: {
|
|
10301
|
-
query?: never;
|
|
10302
|
-
header?: never;
|
|
10303
|
-
path?: never;
|
|
10304
|
-
cookie?: never;
|
|
10305
|
-
};
|
|
10306
|
-
get?: never;
|
|
10307
|
-
put?: never;
|
|
10308
|
-
post: operations["ThumbnailPersonalizationApi.HomepageThumbnail_UploadHomepageThumbnails"];
|
|
10309
|
-
delete?: never;
|
|
10310
|
-
options?: never;
|
|
10311
|
-
head?: never;
|
|
10312
|
-
patch?: never;
|
|
10313
|
-
trace?: never;
|
|
10314
|
-
};
|
|
10315
|
-
"/thumbnail-personalization-api/v1/universes/{universeId}/thumbnails/uploads/status": {
|
|
10316
|
-
parameters: {
|
|
10317
|
-
query?: never;
|
|
10318
|
-
header?: never;
|
|
10319
|
-
path?: never;
|
|
10320
|
-
cookie?: never;
|
|
10321
|
-
};
|
|
10322
|
-
get: operations["ThumbnailPersonalizationApi.HomepageThumbnail_GetHomepageThumbnailsStatus"];
|
|
10323
|
-
put?: never;
|
|
10324
|
-
post?: never;
|
|
10325
|
-
delete?: never;
|
|
10326
|
-
options?: never;
|
|
10327
|
-
head?: never;
|
|
10328
|
-
patch?: never;
|
|
10329
|
-
trace?: never;
|
|
10330
|
-
};
|
|
10331
10243
|
"/toolbox-service/v1/saves": {
|
|
10332
10244
|
parameters: {
|
|
10333
10245
|
query?: never;
|
|
@@ -22579,184 +22491,187 @@ export interface paths {
|
|
|
22579
22491
|
content: {
|
|
22580
22492
|
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.GroupJoinRequestResponse_"];
|
|
22581
22493
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.GroupJoinRequestResponse_"];
|
|
22582
|
-
};
|
|
22583
|
-
};
|
|
22584
|
-
/**
|
|
22585
|
-
|
|
22586
|
-
|
|
22587
|
-
|
|
22588
|
-
|
|
22589
|
-
|
|
22590
|
-
|
|
22591
|
-
|
|
22592
|
-
|
|
22593
|
-
|
|
22594
|
-
|
|
22595
|
-
|
|
22596
|
-
|
|
22597
|
-
|
|
22598
|
-
|
|
22599
|
-
|
|
22600
|
-
|
|
22601
|
-
|
|
22602
|
-
|
|
22603
|
-
|
|
22604
|
-
|
|
22605
|
-
|
|
22606
|
-
|
|
22607
|
-
|
|
22608
|
-
|
|
22609
|
-
|
|
22610
|
-
|
|
22611
|
-
|
|
22612
|
-
|
|
22613
|
-
|
|
22614
|
-
|
|
22615
|
-
|
|
22616
|
-
|
|
22617
|
-
|
|
22618
|
-
|
|
22619
|
-
|
|
22620
|
-
|
|
22621
|
-
|
|
22622
|
-
|
|
22623
|
-
|
|
22624
|
-
|
|
22625
|
-
|
|
22626
|
-
|
|
22627
|
-
|
|
22628
|
-
|
|
22629
|
-
|
|
22630
|
-
|
|
22631
|
-
|
|
22632
|
-
|
|
22633
|
-
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22639
|
-
|
|
22640
|
-
|
|
22641
|
-
|
|
22642
|
-
|
|
22643
|
-
|
|
22644
|
-
|
|
22645
|
-
|
|
22646
|
-
|
|
22647
|
-
|
|
22648
|
-
|
|
22649
|
-
|
|
22650
|
-
|
|
22651
|
-
|
|
22652
|
-
|
|
22653
|
-
|
|
22654
|
-
|
|
22655
|
-
|
|
22656
|
-
|
|
22657
|
-
|
|
22658
|
-
|
|
22659
|
-
|
|
22660
|
-
|
|
22661
|
-
|
|
22662
|
-
|
|
22663
|
-
|
|
22664
|
-
|
|
22665
|
-
|
|
22666
|
-
|
|
22667
|
-
|
|
22668
|
-
|
|
22669
|
-
|
|
22670
|
-
|
|
22671
|
-
|
|
22672
|
-
|
|
22673
|
-
|
|
22674
|
-
|
|
22675
|
-
|
|
22676
|
-
|
|
22677
|
-
|
|
22678
|
-
|
|
22679
|
-
|
|
22680
|
-
|
|
22681
|
-
|
|
22682
|
-
|
|
22683
|
-
|
|
22684
|
-
|
|
22685
|
-
|
|
22686
|
-
|
|
22687
|
-
|
|
22688
|
-
|
|
22689
|
-
|
|
22690
|
-
|
|
22691
|
-
|
|
22692
|
-
|
|
22693
|
-
|
|
22694
|
-
|
|
22695
|
-
|
|
22696
|
-
|
|
22697
|
-
|
|
22698
|
-
|
|
22699
|
-
|
|
22700
|
-
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
|
|
22713
|
-
|
|
22714
|
-
|
|
22715
|
-
|
|
22716
|
-
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
22735
|
-
|
|
22736
|
-
|
|
22737
|
-
|
|
22738
|
-
|
|
22739
|
-
|
|
22740
|
-
|
|
22741
|
-
|
|
22742
|
-
|
|
22743
|
-
|
|
22744
|
-
|
|
22745
|
-
|
|
22746
|
-
|
|
22747
|
-
|
|
22748
|
-
|
|
22749
|
-
|
|
22750
|
-
|
|
22751
|
-
|
|
22752
|
-
|
|
22753
|
-
|
|
22754
|
-
|
|
22755
|
-
|
|
22756
|
-
|
|
22757
|
-
|
|
22758
|
-
|
|
22759
|
-
|
|
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"];
|
|
22760
22675
|
};
|
|
22761
22676
|
};
|
|
22762
22677
|
/** @description 1: The group is invalid or does not exist. */
|
|
@@ -24251,7 +24166,10 @@ export interface paths {
|
|
|
24251
24166
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.Models.Response.UserModel_"];
|
|
24252
24167
|
};
|
|
24253
24168
|
};
|
|
24254
|
-
/**
|
|
24169
|
+
/**
|
|
24170
|
+
* @description 1: The group is invalid or does not exist.
|
|
24171
|
+
* 36: The pagination cursor is invalid.
|
|
24172
|
+
*/
|
|
24255
24173
|
400: {
|
|
24256
24174
|
headers: {
|
|
24257
24175
|
[name: string]: unknown;
|
|
@@ -25090,7 +25008,10 @@ export interface paths {
|
|
|
25090
25008
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.UserGroupRoleResponse_"];
|
|
25091
25009
|
};
|
|
25092
25010
|
};
|
|
25093
|
-
/**
|
|
25011
|
+
/**
|
|
25012
|
+
* @description 1: The group is invalid or does not exist.
|
|
25013
|
+
* 36: The pagination cursor is invalid.
|
|
25014
|
+
*/
|
|
25094
25015
|
400: {
|
|
25095
25016
|
headers: {
|
|
25096
25017
|
[name: string]: unknown;
|
|
@@ -43043,6 +42964,74 @@ export interface paths {
|
|
|
43043
42964
|
patch?: never;
|
|
43044
42965
|
trace?: never;
|
|
43045
42966
|
};
|
|
42967
|
+
"/v2/collectible-items/{collectibleItemId}/owners": {
|
|
42968
|
+
parameters: {
|
|
42969
|
+
query?: never;
|
|
42970
|
+
header?: never;
|
|
42971
|
+
path?: never;
|
|
42972
|
+
cookie?: never;
|
|
42973
|
+
};
|
|
42974
|
+
/** Gets a list of owners of a collectible item. */
|
|
42975
|
+
get: {
|
|
42976
|
+
parameters: {
|
|
42977
|
+
query?: {
|
|
42978
|
+
/** @description The number of results per request. */
|
|
42979
|
+
limit?: number;
|
|
42980
|
+
/** @description The paging cursor for the previous or next page. */
|
|
42981
|
+
cursor?: string;
|
|
42982
|
+
/** @description The order the results are sorted in. */
|
|
42983
|
+
sortOrder?: 1 | 2;
|
|
42984
|
+
};
|
|
42985
|
+
header?: never;
|
|
42986
|
+
path: {
|
|
42987
|
+
/** @description The collectible item ID. */
|
|
42988
|
+
collectibleItemId: string;
|
|
42989
|
+
};
|
|
42990
|
+
cookie?: never;
|
|
42991
|
+
};
|
|
42992
|
+
requestBody?: never;
|
|
42993
|
+
responses: {
|
|
42994
|
+
/** @description OK */
|
|
42995
|
+
200: {
|
|
42996
|
+
headers: {
|
|
42997
|
+
[name: string]: unknown;
|
|
42998
|
+
};
|
|
42999
|
+
content: {
|
|
43000
|
+
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse_"];
|
|
43001
|
+
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse_"];
|
|
43002
|
+
};
|
|
43003
|
+
};
|
|
43004
|
+
/** @description 1: The collectible item id is invalid. */
|
|
43005
|
+
400: {
|
|
43006
|
+
headers: {
|
|
43007
|
+
[name: string]: unknown;
|
|
43008
|
+
};
|
|
43009
|
+
content?: never;
|
|
43010
|
+
};
|
|
43011
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
43012
|
+
401: {
|
|
43013
|
+
headers: {
|
|
43014
|
+
[name: string]: unknown;
|
|
43015
|
+
};
|
|
43016
|
+
content?: never;
|
|
43017
|
+
};
|
|
43018
|
+
/** @description 2: You do not have permission to view the owners of this item. */
|
|
43019
|
+
403: {
|
|
43020
|
+
headers: {
|
|
43021
|
+
[name: string]: unknown;
|
|
43022
|
+
};
|
|
43023
|
+
content?: never;
|
|
43024
|
+
};
|
|
43025
|
+
};
|
|
43026
|
+
};
|
|
43027
|
+
put?: never;
|
|
43028
|
+
post?: never;
|
|
43029
|
+
delete?: never;
|
|
43030
|
+
options?: never;
|
|
43031
|
+
head?: never;
|
|
43032
|
+
patch?: never;
|
|
43033
|
+
trace?: never;
|
|
43034
|
+
};
|
|
43046
43035
|
"/v2/compression-dictionaries": {
|
|
43047
43036
|
parameters: {
|
|
43048
43037
|
query?: never;
|
|
@@ -47283,6 +47272,7 @@ export interface paths {
|
|
|
47283
47272
|
* 24: Invalid scale value
|
|
47284
47273
|
* 28: OptIn/Out Regions Not Supported.
|
|
47285
47274
|
* 41: You cannot change the private server price again so soon after the previous change. Please try again later.
|
|
47275
|
+
* 42: This experience must be Public before its audience can include anything other than Editors. Call /activate first.
|
|
47286
47276
|
*/
|
|
47287
47277
|
400: {
|
|
47288
47278
|
headers: {
|
|
@@ -47317,6 +47307,13 @@ export interface paths {
|
|
|
47317
47307
|
};
|
|
47318
47308
|
content?: never;
|
|
47319
47309
|
};
|
|
47310
|
+
/** @description 43: Failed to update the audience configuration. The change was not applied. Please try again. */
|
|
47311
|
+
500: {
|
|
47312
|
+
headers: {
|
|
47313
|
+
[name: string]: unknown;
|
|
47314
|
+
};
|
|
47315
|
+
content?: never;
|
|
47316
|
+
};
|
|
47320
47317
|
};
|
|
47321
47318
|
};
|
|
47322
47319
|
trace?: never;
|
|
@@ -49123,6 +49120,30 @@ export interface components {
|
|
|
49123
49120
|
*/
|
|
49124
49121
|
browserTrackerId?: number | null;
|
|
49125
49122
|
};
|
|
49123
|
+
/** @description JSON shape of an RPN conditional rule in public API requests, aligned with `roblox.creatorexperienceconfig.conditionrules.v1.RpnRule`. */
|
|
49124
|
+
ConditionalRuleDefinition: {
|
|
49125
|
+
/** @description Postfix RPN token sequence. */
|
|
49126
|
+
tokens?: components["schemas"]["RpnTokenDto"][] | null;
|
|
49127
|
+
};
|
|
49128
|
+
/** @description Minimal delta for conditional rules on a revision (optional extension on list revisions). */
|
|
49129
|
+
ConditionalRulesChangesPayload: {
|
|
49130
|
+
rulesOrder?: components["schemas"]["RulesOrderDeltaPayload"] | null;
|
|
49131
|
+
rules?: {
|
|
49132
|
+
[key: string]: components["schemas"]["RuleDeltaPayload"];
|
|
49133
|
+
} | null;
|
|
49134
|
+
};
|
|
49135
|
+
/** @description Public JSON shape for conditional rules (`rules` + `rulesOrder`), aligned with CMS `ConditionalRules`. */
|
|
49136
|
+
ConditionalRulesPayload: {
|
|
49137
|
+
/**
|
|
49138
|
+
* @description RPN rules keyed by condition id. On `draft:overwrite`, omitting a rule id that exists on published removes that rule; JSON `null` tombstones;
|
|
49139
|
+
* `{ "tokens": [] }` is an explicit empty rule.
|
|
49140
|
+
*/
|
|
49141
|
+
rules?: {
|
|
49142
|
+
[key: string]: components["schemas"]["ConditionalRuleDefinition"];
|
|
49143
|
+
} | null;
|
|
49144
|
+
/** @description Evaluation order (condition ids). */
|
|
49145
|
+
rulesOrder?: string[] | null;
|
|
49146
|
+
};
|
|
49126
49147
|
/** @description A draft entry containing a value and optional description. */
|
|
49127
49148
|
ConfigDraftEntry: {
|
|
49128
49149
|
/** @description The value of the configuration entry. */
|
|
@@ -49138,6 +49159,8 @@ export interface components {
|
|
|
49138
49159
|
entries?: {
|
|
49139
49160
|
[key: string]: components["schemas"]["ConfigDraftEntry"];
|
|
49140
49161
|
} | null;
|
|
49162
|
+
/** @description Conditional rules staged on the draft, when any exist. */
|
|
49163
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
49141
49164
|
};
|
|
49142
49165
|
/** @description A full representation of a configuration repository, including all entries and their metadata. */
|
|
49143
49166
|
ConfigRepositoryFull: {
|
|
@@ -49147,6 +49170,8 @@ export interface components {
|
|
|
49147
49170
|
} | null;
|
|
49148
49171
|
/** @description Metadata about the configuration repository. */
|
|
49149
49172
|
metadata?: components["schemas"]["ConfigRepositoryMetadata"] | null;
|
|
49173
|
+
/** @description Conditional RPN rules and evaluation order, when any exist. */
|
|
49174
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
49150
49175
|
};
|
|
49151
49176
|
/** @description Metadata about the configuration repository. */
|
|
49152
49177
|
ConfigRepositoryMetadata: {
|
|
@@ -49167,9 +49192,13 @@ export interface components {
|
|
|
49167
49192
|
entries?: {
|
|
49168
49193
|
[key: string]: unknown;
|
|
49169
49194
|
} | null;
|
|
49195
|
+
/** @description Conditional RPN rules and evaluation order, when any exist. */
|
|
49196
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
49170
49197
|
};
|
|
49171
49198
|
/** @description A full representation of a configuration value, including its metadata. */
|
|
49172
49199
|
ConfigValueFull: {
|
|
49200
|
+
/** @description Non-default branches (e.g. conditional), when present. */
|
|
49201
|
+
variants?: components["schemas"]["ConfigVariantDto"][] | null;
|
|
49173
49202
|
/** @description The value of the configuration entry. */
|
|
49174
49203
|
value?: unknown;
|
|
49175
49204
|
/** @description A description of the configuration entry. */
|
|
@@ -49185,6 +49214,25 @@ export interface components {
|
|
|
49185
49214
|
*/
|
|
49186
49215
|
lastAccessedTime?: string;
|
|
49187
49216
|
};
|
|
49217
|
+
/** @description A non-default branch on a config entry (public API discriminated variant). */
|
|
49218
|
+
ConfigVariantDto: {
|
|
49219
|
+
/**
|
|
49220
|
+
* @description Variant discriminator (e.g. conditional branch).
|
|
49221
|
+
*
|
|
49222
|
+
* conditional
|
|
49223
|
+
*/
|
|
49224
|
+
type?: components["schemas"]["ConfigVariantType"];
|
|
49225
|
+
/** @description Identifier for this variant within CreatorConfigsPublicApi.Models.ConfigVariantDto.Type (e.g. conditional rule id for CreatorConfigsPublicApi.Models.ConfigVariantType.Conditional). */
|
|
49226
|
+
variantTypeId?: string | null;
|
|
49227
|
+
value?: unknown;
|
|
49228
|
+
};
|
|
49229
|
+
/**
|
|
49230
|
+
* @description Discriminator for entries in CreatorConfigsPublicApi.Models.ConfigVariantDto variant lists (full config and revision snapshots).
|
|
49231
|
+
*
|
|
49232
|
+
* conditional
|
|
49233
|
+
* @enum {string}
|
|
49234
|
+
*/
|
|
49235
|
+
ConfigVariantType: "conditional";
|
|
49188
49236
|
/** @description Represents the content of a message. */
|
|
49189
49237
|
ContentMessage: {
|
|
49190
49238
|
/**
|
|
@@ -51105,6 +51153,8 @@ export interface components {
|
|
|
51105
51153
|
placeIdToVersions?: {
|
|
51106
51154
|
[key: string]: number[] | null;
|
|
51107
51155
|
} | null;
|
|
51156
|
+
/** @description Optional. Attributes string to include in the ServerLifecycleChanged CSM payload published to game servers. */
|
|
51157
|
+
attributes?: string | null;
|
|
51108
51158
|
};
|
|
51109
51159
|
/** @description Launch Update response. */
|
|
51110
51160
|
LaunchUpdateResponse: {
|
|
@@ -51365,6 +51415,13 @@ export interface components {
|
|
|
51365
51415
|
*/
|
|
51366
51416
|
nextPageToken?: string;
|
|
51367
51417
|
};
|
|
51418
|
+
/** @description Literal constant for an RPN operand (proto `LiteralValue` oneof as independent fields for JSON). */
|
|
51419
|
+
LiteralValueDto: {
|
|
51420
|
+
booleanValue?: string | null;
|
|
51421
|
+
integerValue?: string | null;
|
|
51422
|
+
doubleValue?: string | null;
|
|
51423
|
+
stringValue?: string | null;
|
|
51424
|
+
};
|
|
51368
51425
|
/**
|
|
51369
51426
|
* @description A `LuauExecutionSessionTask` ("task" for short) executes a given Luau script
|
|
51370
51427
|
* in the context of a specific version of a place.
|
|
@@ -52751,9 +52808,13 @@ export interface components {
|
|
|
52751
52808
|
* RecommendationServicesConfig
|
|
52752
52809
|
*
|
|
52753
52810
|
* DataStoresConfig
|
|
52811
|
+
*
|
|
52812
|
+
* ExtendedServicesConfig
|
|
52813
|
+
*
|
|
52814
|
+
* LeaderboardsConfig
|
|
52754
52815
|
* @enum {string}
|
|
52755
52816
|
*/
|
|
52756
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig";
|
|
52817
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig";
|
|
52757
52818
|
/**
|
|
52758
52819
|
* @description The current state of a place restart.
|
|
52759
52820
|
* @enum {string}
|
|
@@ -52883,6 +52944,8 @@ export interface components {
|
|
|
52883
52944
|
changes?: {
|
|
52884
52945
|
[key: string]: components["schemas"]["RevisionChange"];
|
|
52885
52946
|
} | null;
|
|
52947
|
+
/** @description Optional delta for conditional rules when this revision touched rules or evaluation order. */
|
|
52948
|
+
conditionalRulesChanges?: components["schemas"]["ConditionalRulesChangesPayload"] | null;
|
|
52886
52949
|
};
|
|
52887
52950
|
/** @description The birthdate response */
|
|
52888
52951
|
"Roblox.AccountInformation.Api.Models.BirthdateResponse": {
|
|
@@ -54889,6 +54952,13 @@ export interface components {
|
|
|
54889
54952
|
* @enum {integer}
|
|
54890
54953
|
*/
|
|
54891
54954
|
fiatModerationStatus?: 0 | 1 | 2 | 3 | 4;
|
|
54955
|
+
/**
|
|
54956
|
+
* @description Audiences allowed to view this universe, sourced from the new UniversePublicitySettings entity
|
|
54957
|
+
* in universe-settings-service. Populated from USS only when UniversePublicitySettingsTreatment
|
|
54958
|
+
* is ReverseShadow or Authority (USS is the source of truth in those modes); an empty list is
|
|
54959
|
+
* returned for Off and Shadow so clients always see a stable shape, never null.
|
|
54960
|
+
*/
|
|
54961
|
+
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54892
54962
|
};
|
|
54893
54963
|
/** @description Model for UniverseSettings controller responses */
|
|
54894
54964
|
"Roblox.Api.Develop.Models.UniverseSettingsResponseV2": {
|
|
@@ -55550,6 +55620,7 @@ export interface components {
|
|
|
55550
55620
|
sessionId?: string;
|
|
55551
55621
|
credentialNickname?: string;
|
|
55552
55622
|
attestationResponse?: string;
|
|
55623
|
+
source?: string;
|
|
55553
55624
|
};
|
|
55554
55625
|
"Roblox.Authentication.Api.Models.Request.IdentityVerificationLoginRequest": {
|
|
55555
55626
|
loginTicket?: string;
|
|
@@ -56101,7 +56172,7 @@ export interface components {
|
|
|
56101
56172
|
/** @description The System.Collections.Generic.IEnumerable`1 contained in the bundle, serialized if item is a bundle. */
|
|
56102
56173
|
bundledItems?: components["schemas"]["Roblox.Catalog.Api.BundleItemDetailModel"][];
|
|
56103
56174
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
56104
|
-
itemStatus?: (1 | 2 | 7)[];
|
|
56175
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
56105
56176
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
56106
56177
|
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
56107
56178
|
/** @description The verified status of a creator. */
|
|
@@ -56228,7 +56299,7 @@ export interface components {
|
|
|
56228
56299
|
*/
|
|
56229
56300
|
productId?: number;
|
|
56230
56301
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
56231
|
-
itemStatus?: (1 | 2 | 7)[];
|
|
56302
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
56232
56303
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
56233
56304
|
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
56234
56305
|
/** @description The verified status of a creator. */
|
|
@@ -56643,6 +56714,11 @@ export interface components {
|
|
|
56643
56714
|
/** @description JWT token. If the channel is not private, this is omitted. */
|
|
56644
56715
|
token?: string;
|
|
56645
56716
|
program?: components["schemas"]["Roblox.ClientSettings.Api.Models.Response.BetaProgramInfo"];
|
|
56717
|
+
/**
|
|
56718
|
+
* @description Whether the channel is flag-only. A flag-only channel uses production binaries.
|
|
56719
|
+
* If the channel is not flag-only, this is omitted.
|
|
56720
|
+
*/
|
|
56721
|
+
isFlagOnly?: boolean;
|
|
56646
56722
|
};
|
|
56647
56723
|
"Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel": {
|
|
56648
56724
|
/** Format: int32 */
|
|
@@ -59418,6 +59494,12 @@ export interface components {
|
|
|
59418
59494
|
/** Format: date-time */
|
|
59419
59495
|
updated?: string;
|
|
59420
59496
|
};
|
|
59497
|
+
"Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse": {
|
|
59498
|
+
collectibleItemInstanceId?: string;
|
|
59499
|
+
/** Format: int64 */
|
|
59500
|
+
serialNumber?: number;
|
|
59501
|
+
owner?: components["schemas"]["Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Agents.AgentType_"];
|
|
59502
|
+
};
|
|
59421
59503
|
/** @description The user asset item model for V2 controllers. */
|
|
59422
59504
|
"Roblox.Inventory.Api.V2.UserAssetItemModelV2": {
|
|
59423
59505
|
/**
|
|
@@ -61794,6 +61876,11 @@ export interface components {
|
|
|
61794
61876
|
nextPageCursor?: string;
|
|
61795
61877
|
data?: components["schemas"]["Roblox.Inventory.Api.V2.AssetOwnerResponse"][];
|
|
61796
61878
|
};
|
|
61879
|
+
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse_": {
|
|
61880
|
+
previousPageCursor?: string;
|
|
61881
|
+
nextPageCursor?: string;
|
|
61882
|
+
data?: components["schemas"]["Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse"][];
|
|
61883
|
+
};
|
|
61797
61884
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.UserAssetItemModelV2_": {
|
|
61798
61885
|
previousPageCursor?: string;
|
|
61799
61886
|
nextPageCursor?: string;
|
|
@@ -61837,6 +61924,26 @@ export interface components {
|
|
|
61837
61924
|
"Roblox.Web.WebAPI.Models.ApiSuccessResponse": {
|
|
61838
61925
|
success?: boolean;
|
|
61839
61926
|
};
|
|
61927
|
+
/** @description RPN operand: attribute reference or literal value (same concepts as the proto `RpnOperand` oneof). */
|
|
61928
|
+
RpnOperandDto: {
|
|
61929
|
+
attributeReference?: string | null;
|
|
61930
|
+
/** @description Literal constant for an RPN operand (proto `LiteralValue` oneof as independent fields for JSON). */
|
|
61931
|
+
literalValue?: components["schemas"]["LiteralValueDto"] | null;
|
|
61932
|
+
};
|
|
61933
|
+
/** @description One RPN token: either a logical/comparison CreatorConfigsPublicApi.Models.ConditionalRuleOperator (proto JSON `OPERATOR_*`) or an operand object. */
|
|
61934
|
+
RpnTokenDto: {
|
|
61935
|
+
operator?: string | null;
|
|
61936
|
+
/** @description RPN operand: attribute reference or literal value (same concepts as the proto `RpnOperand` oneof). */
|
|
61937
|
+
operand?: components["schemas"]["RpnOperandDto"] | null;
|
|
61938
|
+
};
|
|
61939
|
+
RuleDeltaPayload: {
|
|
61940
|
+
before?: unknown;
|
|
61941
|
+
after?: unknown;
|
|
61942
|
+
};
|
|
61943
|
+
RulesOrderDeltaPayload: {
|
|
61944
|
+
before?: string[] | null;
|
|
61945
|
+
after?: string[] | null;
|
|
61946
|
+
};
|
|
61840
61947
|
SalesReportDownloadRequest: {
|
|
61841
61948
|
/** Format: int64 */
|
|
61842
61949
|
targetId?: number;
|
|
@@ -61904,7 +62011,7 @@ export interface components {
|
|
|
61904
62011
|
* Format: int64
|
|
61905
62012
|
* @description The minimum price of the asset in cents. If included, must be greater than or equal to 0.
|
|
61906
62013
|
*/
|
|
61907
|
-
minPriceCents?: number;
|
|
62014
|
+
minPriceCents?: number | null;
|
|
61908
62015
|
/**
|
|
61909
62016
|
* Format: int64
|
|
61910
62017
|
* @description The maximum price of the asset in cents. If included, must be greater than or equal to 0.
|
|
@@ -62888,14 +62995,25 @@ export interface components {
|
|
|
62888
62995
|
UpdateCustomMatchmakingSignalResponse: {
|
|
62889
62996
|
scoringConfiguration?: components["schemas"]["MatchmakingScoringConfiguration"];
|
|
62890
62997
|
};
|
|
62891
|
-
/** @description Request model for
|
|
62998
|
+
/** @description Request model for draft updates: PATCH uses a partial merge; PUT `draft:overwrite` treats the body as the full intended configuration after publish. */
|
|
62892
62999
|
UpdateDraftRequest: {
|
|
62893
63000
|
/** @description The previous draft hash for concurrency control. If provided, the update will fail if it doesn't match. */
|
|
62894
63001
|
draftHash?: string | null;
|
|
62895
|
-
/**
|
|
63002
|
+
/**
|
|
63003
|
+
* @description On PATCH, keys not included are unchanged; set a key to null to delete a branch or entry per merge rules.
|
|
63004
|
+
* 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.
|
|
63005
|
+
*/
|
|
62896
63006
|
entries?: {
|
|
62897
63007
|
[key: string]: unknown;
|
|
62898
63008
|
} | null;
|
|
63009
|
+
/**
|
|
63010
|
+
* @description Optional conditional rules. On PATCH, merges with the current draft rules when this payload is non-empty (any rule id or `rulesOrder` entry).
|
|
63011
|
+
* Omit the property or send an empty object `{}` to leave rules unchanged (draft rules, or latest published rules if the draft has none yet).
|
|
63012
|
+
* On PUT `draft:overwrite`, when this property is present,
|
|
63013
|
+
* 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.
|
|
63014
|
+
* When omitted on overwrite, all published conditional rules are cleared (entries must not reference conditionals unless you provide this object).
|
|
63015
|
+
*/
|
|
63016
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
62899
63017
|
};
|
|
62900
63018
|
/** @description Updates the entry provided with a new value. */
|
|
62901
63019
|
UpdateEntryRequest: {
|
|
@@ -67075,6 +67193,10 @@ export interface operations {
|
|
|
67075
67193
|
* RecommendationServicesConfig
|
|
67076
67194
|
*
|
|
67077
67195
|
* DataStoresConfig
|
|
67196
|
+
*
|
|
67197
|
+
* ExtendedServicesConfig
|
|
67198
|
+
*
|
|
67199
|
+
* LeaderboardsConfig
|
|
67078
67200
|
*/
|
|
67079
67201
|
repository: components["schemas"]["Repository"];
|
|
67080
67202
|
};
|
|
@@ -67132,6 +67254,10 @@ export interface operations {
|
|
|
67132
67254
|
* RecommendationServicesConfig
|
|
67133
67255
|
*
|
|
67134
67256
|
* DataStoresConfig
|
|
67257
|
+
*
|
|
67258
|
+
* ExtendedServicesConfig
|
|
67259
|
+
*
|
|
67260
|
+
* LeaderboardsConfig
|
|
67135
67261
|
*/
|
|
67136
67262
|
repository: components["schemas"]["Repository"];
|
|
67137
67263
|
};
|
|
@@ -67189,6 +67315,10 @@ export interface operations {
|
|
|
67189
67315
|
* RecommendationServicesConfig
|
|
67190
67316
|
*
|
|
67191
67317
|
* DataStoresConfig
|
|
67318
|
+
*
|
|
67319
|
+
* ExtendedServicesConfig
|
|
67320
|
+
*
|
|
67321
|
+
* LeaderboardsConfig
|
|
67192
67322
|
*/
|
|
67193
67323
|
repository: components["schemas"]["Repository"];
|
|
67194
67324
|
};
|
|
@@ -67253,6 +67383,10 @@ export interface operations {
|
|
|
67253
67383
|
* RecommendationServicesConfig
|
|
67254
67384
|
*
|
|
67255
67385
|
* DataStoresConfig
|
|
67386
|
+
*
|
|
67387
|
+
* ExtendedServicesConfig
|
|
67388
|
+
*
|
|
67389
|
+
* LeaderboardsConfig
|
|
67256
67390
|
*/
|
|
67257
67391
|
repository: components["schemas"]["Repository"];
|
|
67258
67392
|
};
|
|
@@ -67317,6 +67451,10 @@ export interface operations {
|
|
|
67317
67451
|
* RecommendationServicesConfig
|
|
67318
67452
|
*
|
|
67319
67453
|
* DataStoresConfig
|
|
67454
|
+
*
|
|
67455
|
+
* ExtendedServicesConfig
|
|
67456
|
+
*
|
|
67457
|
+
* LeaderboardsConfig
|
|
67320
67458
|
*/
|
|
67321
67459
|
repository: components["schemas"]["Repository"];
|
|
67322
67460
|
};
|
|
@@ -67381,6 +67519,10 @@ export interface operations {
|
|
|
67381
67519
|
* RecommendationServicesConfig
|
|
67382
67520
|
*
|
|
67383
67521
|
* DataStoresConfig
|
|
67522
|
+
*
|
|
67523
|
+
* ExtendedServicesConfig
|
|
67524
|
+
*
|
|
67525
|
+
* LeaderboardsConfig
|
|
67384
67526
|
*/
|
|
67385
67527
|
repository: components["schemas"]["Repository"];
|
|
67386
67528
|
};
|
|
@@ -67438,6 +67580,10 @@ export interface operations {
|
|
|
67438
67580
|
* RecommendationServicesConfig
|
|
67439
67581
|
*
|
|
67440
67582
|
* DataStoresConfig
|
|
67583
|
+
*
|
|
67584
|
+
* ExtendedServicesConfig
|
|
67585
|
+
*
|
|
67586
|
+
* LeaderboardsConfig
|
|
67441
67587
|
*/
|
|
67442
67588
|
repository: components["schemas"]["Repository"];
|
|
67443
67589
|
};
|
|
@@ -67517,6 +67663,10 @@ export interface operations {
|
|
|
67517
67663
|
* RecommendationServicesConfig
|
|
67518
67664
|
*
|
|
67519
67665
|
* DataStoresConfig
|
|
67666
|
+
*
|
|
67667
|
+
* ExtendedServicesConfig
|
|
67668
|
+
*
|
|
67669
|
+
* LeaderboardsConfig
|
|
67520
67670
|
*/
|
|
67521
67671
|
repository: components["schemas"]["Repository"];
|
|
67522
67672
|
};
|
|
@@ -67574,6 +67724,10 @@ export interface operations {
|
|
|
67574
67724
|
* RecommendationServicesConfig
|
|
67575
67725
|
*
|
|
67576
67726
|
* DataStoresConfig
|
|
67727
|
+
*
|
|
67728
|
+
* ExtendedServicesConfig
|
|
67729
|
+
*
|
|
67730
|
+
* LeaderboardsConfig
|
|
67577
67731
|
*/
|
|
67578
67732
|
repository: components["schemas"]["Repository"];
|
|
67579
67733
|
revisionId: string;
|
|
@@ -69712,443 +69866,6 @@ export interface operations {
|
|
|
69712
69866
|
};
|
|
69713
69867
|
};
|
|
69714
69868
|
};
|
|
69715
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_FindThumbnailPersonalizations": {
|
|
69716
|
-
parameters: {
|
|
69717
|
-
query?: {
|
|
69718
|
-
status?: components["schemas"]["PersonalizedConfigStatus"];
|
|
69719
|
-
limit?: number;
|
|
69720
|
-
cursor?: string;
|
|
69721
|
-
};
|
|
69722
|
-
header?: never;
|
|
69723
|
-
path: {
|
|
69724
|
-
universeId: number;
|
|
69725
|
-
};
|
|
69726
|
-
cookie?: never;
|
|
69727
|
-
};
|
|
69728
|
-
requestBody?: never;
|
|
69729
|
-
responses: {
|
|
69730
|
-
/** @description Success */
|
|
69731
|
-
200: {
|
|
69732
|
-
headers: {
|
|
69733
|
-
[name: string]: unknown;
|
|
69734
|
-
};
|
|
69735
|
-
content: {
|
|
69736
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69737
|
-
};
|
|
69738
|
-
};
|
|
69739
|
-
/** @description Bad Request */
|
|
69740
|
-
400: {
|
|
69741
|
-
headers: {
|
|
69742
|
-
[name: string]: unknown;
|
|
69743
|
-
};
|
|
69744
|
-
content: {
|
|
69745
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69746
|
-
};
|
|
69747
|
-
};
|
|
69748
|
-
/** @description Unauthorized */
|
|
69749
|
-
401: {
|
|
69750
|
-
headers: {
|
|
69751
|
-
[name: string]: unknown;
|
|
69752
|
-
};
|
|
69753
|
-
content: {
|
|
69754
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69755
|
-
};
|
|
69756
|
-
};
|
|
69757
|
-
/** @description Forbidden */
|
|
69758
|
-
403: {
|
|
69759
|
-
headers: {
|
|
69760
|
-
[name: string]: unknown;
|
|
69761
|
-
};
|
|
69762
|
-
content: {
|
|
69763
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69764
|
-
};
|
|
69765
|
-
};
|
|
69766
|
-
/** @description Server Error */
|
|
69767
|
-
500: {
|
|
69768
|
-
headers: {
|
|
69769
|
-
[name: string]: unknown;
|
|
69770
|
-
};
|
|
69771
|
-
content: {
|
|
69772
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69773
|
-
};
|
|
69774
|
-
};
|
|
69775
|
-
};
|
|
69776
|
-
};
|
|
69777
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_CreateThumbnailPersonalization": {
|
|
69778
|
-
parameters: {
|
|
69779
|
-
query?: never;
|
|
69780
|
-
header?: never;
|
|
69781
|
-
path: {
|
|
69782
|
-
universeId: number;
|
|
69783
|
-
};
|
|
69784
|
-
cookie?: never;
|
|
69785
|
-
};
|
|
69786
|
-
requestBody?: {
|
|
69787
|
-
content: {
|
|
69788
|
-
"application/json-patch+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69789
|
-
"application/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69790
|
-
"text/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69791
|
-
"application/*+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69792
|
-
};
|
|
69793
|
-
};
|
|
69794
|
-
responses: {
|
|
69795
|
-
/** @description Success */
|
|
69796
|
-
200: {
|
|
69797
|
-
headers: {
|
|
69798
|
-
[name: string]: unknown;
|
|
69799
|
-
};
|
|
69800
|
-
content: {
|
|
69801
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69802
|
-
};
|
|
69803
|
-
};
|
|
69804
|
-
/** @description Bad Request */
|
|
69805
|
-
400: {
|
|
69806
|
-
headers: {
|
|
69807
|
-
[name: string]: unknown;
|
|
69808
|
-
};
|
|
69809
|
-
content: {
|
|
69810
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69811
|
-
};
|
|
69812
|
-
};
|
|
69813
|
-
/** @description Unauthorized */
|
|
69814
|
-
401: {
|
|
69815
|
-
headers: {
|
|
69816
|
-
[name: string]: unknown;
|
|
69817
|
-
};
|
|
69818
|
-
content: {
|
|
69819
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69820
|
-
};
|
|
69821
|
-
};
|
|
69822
|
-
/** @description Forbidden */
|
|
69823
|
-
403: {
|
|
69824
|
-
headers: {
|
|
69825
|
-
[name: string]: unknown;
|
|
69826
|
-
};
|
|
69827
|
-
content: {
|
|
69828
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69829
|
-
};
|
|
69830
|
-
};
|
|
69831
|
-
/** @description Server Error */
|
|
69832
|
-
500: {
|
|
69833
|
-
headers: {
|
|
69834
|
-
[name: string]: unknown;
|
|
69835
|
-
};
|
|
69836
|
-
content: {
|
|
69837
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69838
|
-
};
|
|
69839
|
-
};
|
|
69840
|
-
};
|
|
69841
|
-
};
|
|
69842
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_UpdateThumbnailPersonalization": {
|
|
69843
|
-
parameters: {
|
|
69844
|
-
query?: never;
|
|
69845
|
-
header?: never;
|
|
69846
|
-
path: {
|
|
69847
|
-
universeId: number;
|
|
69848
|
-
};
|
|
69849
|
-
cookie?: never;
|
|
69850
|
-
};
|
|
69851
|
-
requestBody?: {
|
|
69852
|
-
content: {
|
|
69853
|
-
"application/json-patch+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69854
|
-
"application/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69855
|
-
"text/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69856
|
-
"application/*+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69857
|
-
};
|
|
69858
|
-
};
|
|
69859
|
-
responses: {
|
|
69860
|
-
/** @description Success */
|
|
69861
|
-
200: {
|
|
69862
|
-
headers: {
|
|
69863
|
-
[name: string]: unknown;
|
|
69864
|
-
};
|
|
69865
|
-
content: {
|
|
69866
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69867
|
-
};
|
|
69868
|
-
};
|
|
69869
|
-
/** @description Bad Request */
|
|
69870
|
-
400: {
|
|
69871
|
-
headers: {
|
|
69872
|
-
[name: string]: unknown;
|
|
69873
|
-
};
|
|
69874
|
-
content: {
|
|
69875
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69876
|
-
};
|
|
69877
|
-
};
|
|
69878
|
-
/** @description Unauthorized */
|
|
69879
|
-
401: {
|
|
69880
|
-
headers: {
|
|
69881
|
-
[name: string]: unknown;
|
|
69882
|
-
};
|
|
69883
|
-
content: {
|
|
69884
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69885
|
-
};
|
|
69886
|
-
};
|
|
69887
|
-
/** @description Forbidden */
|
|
69888
|
-
403: {
|
|
69889
|
-
headers: {
|
|
69890
|
-
[name: string]: unknown;
|
|
69891
|
-
};
|
|
69892
|
-
content: {
|
|
69893
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69894
|
-
};
|
|
69895
|
-
};
|
|
69896
|
-
/** @description Server Error */
|
|
69897
|
-
500: {
|
|
69898
|
-
headers: {
|
|
69899
|
-
[name: string]: unknown;
|
|
69900
|
-
};
|
|
69901
|
-
content: {
|
|
69902
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69903
|
-
};
|
|
69904
|
-
};
|
|
69905
|
-
};
|
|
69906
|
-
};
|
|
69907
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_GetHomepageThumbnails": {
|
|
69908
|
-
parameters: {
|
|
69909
|
-
query?: {
|
|
69910
|
-
limit?: number;
|
|
69911
|
-
nextCursor?: string;
|
|
69912
|
-
};
|
|
69913
|
-
header?: never;
|
|
69914
|
-
path: {
|
|
69915
|
-
universeId: number;
|
|
69916
|
-
};
|
|
69917
|
-
cookie?: never;
|
|
69918
|
-
};
|
|
69919
|
-
requestBody?: never;
|
|
69920
|
-
responses: {
|
|
69921
|
-
/** @description Success */
|
|
69922
|
-
200: {
|
|
69923
|
-
headers: {
|
|
69924
|
-
[name: string]: unknown;
|
|
69925
|
-
};
|
|
69926
|
-
content: {
|
|
69927
|
-
"application/json": components["schemas"]["FindThumbnailsResponse"];
|
|
69928
|
-
};
|
|
69929
|
-
};
|
|
69930
|
-
/** @description Bad Request */
|
|
69931
|
-
400: {
|
|
69932
|
-
headers: {
|
|
69933
|
-
[name: string]: unknown;
|
|
69934
|
-
};
|
|
69935
|
-
content: {
|
|
69936
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69937
|
-
};
|
|
69938
|
-
};
|
|
69939
|
-
/** @description Unauthorized */
|
|
69940
|
-
401: {
|
|
69941
|
-
headers: {
|
|
69942
|
-
[name: string]: unknown;
|
|
69943
|
-
};
|
|
69944
|
-
content: {
|
|
69945
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69946
|
-
};
|
|
69947
|
-
};
|
|
69948
|
-
/** @description Forbidden */
|
|
69949
|
-
403: {
|
|
69950
|
-
headers: {
|
|
69951
|
-
[name: string]: unknown;
|
|
69952
|
-
};
|
|
69953
|
-
content: {
|
|
69954
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69955
|
-
};
|
|
69956
|
-
};
|
|
69957
|
-
/** @description Server Error */
|
|
69958
|
-
500: {
|
|
69959
|
-
headers: {
|
|
69960
|
-
[name: string]: unknown;
|
|
69961
|
-
};
|
|
69962
|
-
content: {
|
|
69963
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69964
|
-
};
|
|
69965
|
-
};
|
|
69966
|
-
};
|
|
69967
|
-
};
|
|
69968
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_DeleteHomepageThumbnails": {
|
|
69969
|
-
parameters: {
|
|
69970
|
-
query?: {
|
|
69971
|
-
homepageThumbnailIds?: string[];
|
|
69972
|
-
};
|
|
69973
|
-
header?: never;
|
|
69974
|
-
path: {
|
|
69975
|
-
universeId: number;
|
|
69976
|
-
};
|
|
69977
|
-
cookie?: never;
|
|
69978
|
-
};
|
|
69979
|
-
requestBody?: never;
|
|
69980
|
-
responses: {
|
|
69981
|
-
/** @description Success */
|
|
69982
|
-
200: {
|
|
69983
|
-
headers: {
|
|
69984
|
-
[name: string]: unknown;
|
|
69985
|
-
};
|
|
69986
|
-
content: {
|
|
69987
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69988
|
-
};
|
|
69989
|
-
};
|
|
69990
|
-
/** @description Bad Request */
|
|
69991
|
-
400: {
|
|
69992
|
-
headers: {
|
|
69993
|
-
[name: string]: unknown;
|
|
69994
|
-
};
|
|
69995
|
-
content: {
|
|
69996
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69997
|
-
};
|
|
69998
|
-
};
|
|
69999
|
-
/** @description Unauthorized */
|
|
70000
|
-
401: {
|
|
70001
|
-
headers: {
|
|
70002
|
-
[name: string]: unknown;
|
|
70003
|
-
};
|
|
70004
|
-
content: {
|
|
70005
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70006
|
-
};
|
|
70007
|
-
};
|
|
70008
|
-
/** @description Forbidden */
|
|
70009
|
-
403: {
|
|
70010
|
-
headers: {
|
|
70011
|
-
[name: string]: unknown;
|
|
70012
|
-
};
|
|
70013
|
-
content: {
|
|
70014
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70015
|
-
};
|
|
70016
|
-
};
|
|
70017
|
-
/** @description Server Error */
|
|
70018
|
-
500: {
|
|
70019
|
-
headers: {
|
|
70020
|
-
[name: string]: unknown;
|
|
70021
|
-
};
|
|
70022
|
-
content: {
|
|
70023
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70024
|
-
};
|
|
70025
|
-
};
|
|
70026
|
-
};
|
|
70027
|
-
};
|
|
70028
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_UploadHomepageThumbnails": {
|
|
70029
|
-
parameters: {
|
|
70030
|
-
query?: never;
|
|
70031
|
-
header?: never;
|
|
70032
|
-
path: {
|
|
70033
|
-
universeId: number;
|
|
70034
|
-
};
|
|
70035
|
-
cookie?: never;
|
|
70036
|
-
};
|
|
70037
|
-
requestBody?: {
|
|
70038
|
-
content: {
|
|
70039
|
-
"multipart/form-data": {
|
|
70040
|
-
files?: string[];
|
|
70041
|
-
};
|
|
70042
|
-
};
|
|
70043
|
-
};
|
|
70044
|
-
responses: {
|
|
70045
|
-
/** @description Success */
|
|
70046
|
-
200: {
|
|
70047
|
-
headers: {
|
|
70048
|
-
[name: string]: unknown;
|
|
70049
|
-
};
|
|
70050
|
-
content: {
|
|
70051
|
-
"application/json": components["schemas"]["UploadThumbnailsResponse"];
|
|
70052
|
-
};
|
|
70053
|
-
};
|
|
70054
|
-
/** @description Bad Request */
|
|
70055
|
-
400: {
|
|
70056
|
-
headers: {
|
|
70057
|
-
[name: string]: unknown;
|
|
70058
|
-
};
|
|
70059
|
-
content: {
|
|
70060
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70061
|
-
};
|
|
70062
|
-
};
|
|
70063
|
-
/** @description Unauthorized */
|
|
70064
|
-
401: {
|
|
70065
|
-
headers: {
|
|
70066
|
-
[name: string]: unknown;
|
|
70067
|
-
};
|
|
70068
|
-
content: {
|
|
70069
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70070
|
-
};
|
|
70071
|
-
};
|
|
70072
|
-
/** @description Forbidden */
|
|
70073
|
-
403: {
|
|
70074
|
-
headers: {
|
|
70075
|
-
[name: string]: unknown;
|
|
70076
|
-
};
|
|
70077
|
-
content: {
|
|
70078
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70079
|
-
};
|
|
70080
|
-
};
|
|
70081
|
-
/** @description Server Error */
|
|
70082
|
-
500: {
|
|
70083
|
-
headers: {
|
|
70084
|
-
[name: string]: unknown;
|
|
70085
|
-
};
|
|
70086
|
-
content: {
|
|
70087
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70088
|
-
};
|
|
70089
|
-
};
|
|
70090
|
-
};
|
|
70091
|
-
};
|
|
70092
|
-
"ThumbnailPersonalizationApi.HomepageThumbnail_GetHomepageThumbnailsStatus": {
|
|
70093
|
-
parameters: {
|
|
70094
|
-
query?: {
|
|
70095
|
-
operationIds?: string[];
|
|
70096
|
-
};
|
|
70097
|
-
header?: never;
|
|
70098
|
-
path: {
|
|
70099
|
-
universeId: number;
|
|
70100
|
-
};
|
|
70101
|
-
cookie?: never;
|
|
70102
|
-
};
|
|
70103
|
-
requestBody?: never;
|
|
70104
|
-
responses: {
|
|
70105
|
-
/** @description Success */
|
|
70106
|
-
200: {
|
|
70107
|
-
headers: {
|
|
70108
|
-
[name: string]: unknown;
|
|
70109
|
-
};
|
|
70110
|
-
content: {
|
|
70111
|
-
"application/json": components["schemas"]["UploadThumbnailsStatusResponse"];
|
|
70112
|
-
};
|
|
70113
|
-
};
|
|
70114
|
-
/** @description Bad Request */
|
|
70115
|
-
400: {
|
|
70116
|
-
headers: {
|
|
70117
|
-
[name: string]: unknown;
|
|
70118
|
-
};
|
|
70119
|
-
content: {
|
|
70120
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70121
|
-
};
|
|
70122
|
-
};
|
|
70123
|
-
/** @description Unauthorized */
|
|
70124
|
-
401: {
|
|
70125
|
-
headers: {
|
|
70126
|
-
[name: string]: unknown;
|
|
70127
|
-
};
|
|
70128
|
-
content: {
|
|
70129
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70130
|
-
};
|
|
70131
|
-
};
|
|
70132
|
-
/** @description Forbidden */
|
|
70133
|
-
403: {
|
|
70134
|
-
headers: {
|
|
70135
|
-
[name: string]: unknown;
|
|
70136
|
-
};
|
|
70137
|
-
content: {
|
|
70138
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70139
|
-
};
|
|
70140
|
-
};
|
|
70141
|
-
/** @description Server Error */
|
|
70142
|
-
500: {
|
|
70143
|
-
headers: {
|
|
70144
|
-
[name: string]: unknown;
|
|
70145
|
-
};
|
|
70146
|
-
content: {
|
|
70147
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
70148
|
-
};
|
|
70149
|
-
};
|
|
70150
|
-
};
|
|
70151
|
-
};
|
|
70152
69869
|
Saves_GetSaves: {
|
|
70153
69870
|
parameters: {
|
|
70154
69871
|
query?: {
|
|
@@ -70430,7 +70147,7 @@ export interface operations {
|
|
|
70430
70147
|
/** @description Whether the results should only include assets created by verified creators. */
|
|
70431
70148
|
includeOnlyVerifiedCreators?: boolean;
|
|
70432
70149
|
/** @description The minimum price of the asset in cents. If included, must be greater than or equal to 0. */
|
|
70433
|
-
minPriceCents?: number;
|
|
70150
|
+
minPriceCents?: number | null;
|
|
70434
70151
|
/** @description The maximum price of the asset in cents. If included, must be greater than or equal to 0. */
|
|
70435
70152
|
maxPriceCents?: number | null;
|
|
70436
70153
|
/** @description Additional keywords to query by. */
|