@jacobhumston/roblox-openapi-ts 1.0.6 → 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 +388 -784
- 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;
|
|
@@ -49123,6 +49044,30 @@ export interface components {
|
|
|
49123
49044
|
*/
|
|
49124
49045
|
browserTrackerId?: number | null;
|
|
49125
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
|
+
};
|
|
49126
49071
|
/** @description A draft entry containing a value and optional description. */
|
|
49127
49072
|
ConfigDraftEntry: {
|
|
49128
49073
|
/** @description The value of the configuration entry. */
|
|
@@ -49138,6 +49083,8 @@ export interface components {
|
|
|
49138
49083
|
entries?: {
|
|
49139
49084
|
[key: string]: components["schemas"]["ConfigDraftEntry"];
|
|
49140
49085
|
} | null;
|
|
49086
|
+
/** @description Conditional rules staged on the draft, when any exist. */
|
|
49087
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
49141
49088
|
};
|
|
49142
49089
|
/** @description A full representation of a configuration repository, including all entries and their metadata. */
|
|
49143
49090
|
ConfigRepositoryFull: {
|
|
@@ -49147,6 +49094,8 @@ export interface components {
|
|
|
49147
49094
|
} | null;
|
|
49148
49095
|
/** @description Metadata about the configuration repository. */
|
|
49149
49096
|
metadata?: components["schemas"]["ConfigRepositoryMetadata"] | null;
|
|
49097
|
+
/** @description Conditional RPN rules and evaluation order, when any exist. */
|
|
49098
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
49150
49099
|
};
|
|
49151
49100
|
/** @description Metadata about the configuration repository. */
|
|
49152
49101
|
ConfigRepositoryMetadata: {
|
|
@@ -49167,9 +49116,13 @@ export interface components {
|
|
|
49167
49116
|
entries?: {
|
|
49168
49117
|
[key: string]: unknown;
|
|
49169
49118
|
} | null;
|
|
49119
|
+
/** @description Conditional RPN rules and evaluation order, when any exist. */
|
|
49120
|
+
conditionalRules?: components["schemas"]["ConditionalRulesPayload"] | null;
|
|
49170
49121
|
};
|
|
49171
49122
|
/** @description A full representation of a configuration value, including its metadata. */
|
|
49172
49123
|
ConfigValueFull: {
|
|
49124
|
+
/** @description Non-default branches (e.g. conditional), when present. */
|
|
49125
|
+
variants?: components["schemas"]["ConfigVariantDto"][] | null;
|
|
49173
49126
|
/** @description The value of the configuration entry. */
|
|
49174
49127
|
value?: unknown;
|
|
49175
49128
|
/** @description A description of the configuration entry. */
|
|
@@ -49185,6 +49138,25 @@ export interface components {
|
|
|
49185
49138
|
*/
|
|
49186
49139
|
lastAccessedTime?: string;
|
|
49187
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";
|
|
49188
49160
|
/** @description Represents the content of a message. */
|
|
49189
49161
|
ContentMessage: {
|
|
49190
49162
|
/**
|
|
@@ -51105,6 +51077,8 @@ export interface components {
|
|
|
51105
51077
|
placeIdToVersions?: {
|
|
51106
51078
|
[key: string]: number[] | null;
|
|
51107
51079
|
} | null;
|
|
51080
|
+
/** @description Optional. Attributes string to include in the ServerLifecycleChanged CSM payload published to game servers. */
|
|
51081
|
+
attributes?: string | null;
|
|
51108
51082
|
};
|
|
51109
51083
|
/** @description Launch Update response. */
|
|
51110
51084
|
LaunchUpdateResponse: {
|
|
@@ -51365,6 +51339,13 @@ export interface components {
|
|
|
51365
51339
|
*/
|
|
51366
51340
|
nextPageToken?: string;
|
|
51367
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
|
+
};
|
|
51368
51349
|
/**
|
|
51369
51350
|
* @description A `LuauExecutionSessionTask` ("task" for short) executes a given Luau script
|
|
51370
51351
|
* in the context of a specific version of a place.
|
|
@@ -52751,9 +52732,11 @@ export interface components {
|
|
|
52751
52732
|
* RecommendationServicesConfig
|
|
52752
52733
|
*
|
|
52753
52734
|
* DataStoresConfig
|
|
52735
|
+
*
|
|
52736
|
+
* ExtendedServicesConfig
|
|
52754
52737
|
* @enum {string}
|
|
52755
52738
|
*/
|
|
52756
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig";
|
|
52739
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig";
|
|
52757
52740
|
/**
|
|
52758
52741
|
* @description The current state of a place restart.
|
|
52759
52742
|
* @enum {string}
|
|
@@ -52883,6 +52866,8 @@ export interface components {
|
|
|
52883
52866
|
changes?: {
|
|
52884
52867
|
[key: string]: components["schemas"]["RevisionChange"];
|
|
52885
52868
|
} | null;
|
|
52869
|
+
/** @description Optional delta for conditional rules when this revision touched rules or evaluation order. */
|
|
52870
|
+
conditionalRulesChanges?: components["schemas"]["ConditionalRulesChangesPayload"] | null;
|
|
52886
52871
|
};
|
|
52887
52872
|
/** @description The birthdate response */
|
|
52888
52873
|
"Roblox.AccountInformation.Api.Models.BirthdateResponse": {
|
|
@@ -54889,6 +54874,13 @@ export interface components {
|
|
|
54889
54874
|
* @enum {integer}
|
|
54890
54875
|
*/
|
|
54891
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)[];
|
|
54892
54884
|
};
|
|
54893
54885
|
/** @description Model for UniverseSettings controller responses */
|
|
54894
54886
|
"Roblox.Api.Develop.Models.UniverseSettingsResponseV2": {
|
|
@@ -56101,7 +56093,7 @@ export interface components {
|
|
|
56101
56093
|
/** @description The System.Collections.Generic.IEnumerable`1 contained in the bundle, serialized if item is a bundle. */
|
|
56102
56094
|
bundledItems?: components["schemas"]["Roblox.Catalog.Api.BundleItemDetailModel"][];
|
|
56103
56095
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
56104
|
-
itemStatus?: (1 | 2 | 7)[];
|
|
56096
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
56105
56097
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
56106
56098
|
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
56107
56099
|
/** @description The verified status of a creator. */
|
|
@@ -56228,7 +56220,7 @@ export interface components {
|
|
|
56228
56220
|
*/
|
|
56229
56221
|
productId?: number;
|
|
56230
56222
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemStatus. */
|
|
56231
|
-
itemStatus?: (1 | 2 | 7)[];
|
|
56223
|
+
itemStatus?: (1 | 2 | 7 | 8)[];
|
|
56232
56224
|
/** @description The System.Collections.Generic.IEnumerable`1 if item has Roblox.Catalog.Api.CatalogItemRestriction. */
|
|
56233
56225
|
itemRestrictions?: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
|
|
56234
56226
|
/** @description The verified status of a creator. */
|
|
@@ -61837,6 +61829,26 @@ export interface components {
|
|
|
61837
61829
|
"Roblox.Web.WebAPI.Models.ApiSuccessResponse": {
|
|
61838
61830
|
success?: boolean;
|
|
61839
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
|
+
};
|
|
61840
61852
|
SalesReportDownloadRequest: {
|
|
61841
61853
|
/** Format: int64 */
|
|
61842
61854
|
targetId?: number;
|
|
@@ -61904,7 +61916,7 @@ export interface components {
|
|
|
61904
61916
|
* Format: int64
|
|
61905
61917
|
* @description The minimum price of the asset in cents. If included, must be greater than or equal to 0.
|
|
61906
61918
|
*/
|
|
61907
|
-
minPriceCents?: number;
|
|
61919
|
+
minPriceCents?: number | null;
|
|
61908
61920
|
/**
|
|
61909
61921
|
* Format: int64
|
|
61910
61922
|
* @description The maximum price of the asset in cents. If included, must be greater than or equal to 0.
|
|
@@ -62888,14 +62900,25 @@ export interface components {
|
|
|
62888
62900
|
UpdateCustomMatchmakingSignalResponse: {
|
|
62889
62901
|
scoringConfiguration?: components["schemas"]["MatchmakingScoringConfiguration"];
|
|
62890
62902
|
};
|
|
62891
|
-
/** @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. */
|
|
62892
62904
|
UpdateDraftRequest: {
|
|
62893
62905
|
/** @description The previous draft hash for concurrency control. If provided, the update will fail if it doesn't match. */
|
|
62894
62906
|
draftHash?: string | null;
|
|
62895
|
-
/**
|
|
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
|
+
*/
|
|
62896
62911
|
entries?: {
|
|
62897
62912
|
[key: string]: unknown;
|
|
62898
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;
|
|
62899
62922
|
};
|
|
62900
62923
|
/** @description Updates the entry provided with a new value. */
|
|
62901
62924
|
UpdateEntryRequest: {
|
|
@@ -67075,6 +67098,8 @@ export interface operations {
|
|
|
67075
67098
|
* RecommendationServicesConfig
|
|
67076
67099
|
*
|
|
67077
67100
|
* DataStoresConfig
|
|
67101
|
+
*
|
|
67102
|
+
* ExtendedServicesConfig
|
|
67078
67103
|
*/
|
|
67079
67104
|
repository: components["schemas"]["Repository"];
|
|
67080
67105
|
};
|
|
@@ -67132,6 +67157,8 @@ export interface operations {
|
|
|
67132
67157
|
* RecommendationServicesConfig
|
|
67133
67158
|
*
|
|
67134
67159
|
* DataStoresConfig
|
|
67160
|
+
*
|
|
67161
|
+
* ExtendedServicesConfig
|
|
67135
67162
|
*/
|
|
67136
67163
|
repository: components["schemas"]["Repository"];
|
|
67137
67164
|
};
|
|
@@ -67189,6 +67216,8 @@ export interface operations {
|
|
|
67189
67216
|
* RecommendationServicesConfig
|
|
67190
67217
|
*
|
|
67191
67218
|
* DataStoresConfig
|
|
67219
|
+
*
|
|
67220
|
+
* ExtendedServicesConfig
|
|
67192
67221
|
*/
|
|
67193
67222
|
repository: components["schemas"]["Repository"];
|
|
67194
67223
|
};
|
|
@@ -67253,70 +67282,74 @@ export interface operations {
|
|
|
67253
67282
|
* RecommendationServicesConfig
|
|
67254
67283
|
*
|
|
67255
67284
|
* DataStoresConfig
|
|
67256
|
-
*/
|
|
67257
|
-
repository: components["schemas"]["Repository"];
|
|
67258
|
-
};
|
|
67259
|
-
cookie?: never;
|
|
67260
|
-
};
|
|
67261
|
-
requestBody?: {
|
|
67262
|
-
content: {
|
|
67263
|
-
"application/json-patch+json": components["schemas"]["UpdateDraftRequest"];
|
|
67264
|
-
"application/json": components["schemas"]["UpdateDraftRequest"];
|
|
67265
|
-
"text/json": components["schemas"]["UpdateDraftRequest"];
|
|
67266
|
-
"application/*+json": components["schemas"]["UpdateDraftRequest"];
|
|
67267
|
-
};
|
|
67268
|
-
};
|
|
67269
|
-
responses: {
|
|
67270
|
-
/** @description OK */
|
|
67271
|
-
200: {
|
|
67272
|
-
headers: {
|
|
67273
|
-
[name: string]: unknown;
|
|
67274
|
-
};
|
|
67275
|
-
content: {
|
|
67276
|
-
"application/json": components["schemas"]["DraftHashResponse"];
|
|
67277
|
-
};
|
|
67278
|
-
};
|
|
67279
|
-
/** @description Bad Request */
|
|
67280
|
-
400: {
|
|
67281
|
-
headers: {
|
|
67282
|
-
[name: string]: unknown;
|
|
67283
|
-
};
|
|
67284
|
-
content: {
|
|
67285
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
67286
|
-
};
|
|
67287
|
-
};
|
|
67288
|
-
/** @description Unauthorized */
|
|
67289
|
-
401: {
|
|
67290
|
-
headers: {
|
|
67291
|
-
[name: string]: unknown;
|
|
67292
|
-
};
|
|
67293
|
-
content: {
|
|
67294
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
67295
|
-
};
|
|
67296
|
-
};
|
|
67297
|
-
/** @description Not Found */
|
|
67298
|
-
404: {
|
|
67299
|
-
headers: {
|
|
67300
|
-
[name: string]: unknown;
|
|
67301
|
-
};
|
|
67302
|
-
content: {
|
|
67303
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
67304
|
-
};
|
|
67305
|
-
};
|
|
67306
|
-
};
|
|
67307
|
-
};
|
|
67308
|
-
CreatorConfigsPublicApi_OverwriteDraft: {
|
|
67309
|
-
parameters: {
|
|
67310
|
-
query?: never;
|
|
67311
|
-
header?: never;
|
|
67312
|
-
path: {
|
|
67313
|
-
universeId: string;
|
|
67314
|
-
/**
|
|
67315
|
-
* @description InExperienceConfig
|
|
67316
|
-
*
|
|
67317
|
-
* RecommendationServicesConfig
|
|
67318
67285
|
*
|
|
67319
|
-
*
|
|
67286
|
+
* ExtendedServicesConfig
|
|
67287
|
+
*/
|
|
67288
|
+
repository: components["schemas"]["Repository"];
|
|
67289
|
+
};
|
|
67290
|
+
cookie?: never;
|
|
67291
|
+
};
|
|
67292
|
+
requestBody?: {
|
|
67293
|
+
content: {
|
|
67294
|
+
"application/json-patch+json": components["schemas"]["UpdateDraftRequest"];
|
|
67295
|
+
"application/json": components["schemas"]["UpdateDraftRequest"];
|
|
67296
|
+
"text/json": components["schemas"]["UpdateDraftRequest"];
|
|
67297
|
+
"application/*+json": components["schemas"]["UpdateDraftRequest"];
|
|
67298
|
+
};
|
|
67299
|
+
};
|
|
67300
|
+
responses: {
|
|
67301
|
+
/** @description OK */
|
|
67302
|
+
200: {
|
|
67303
|
+
headers: {
|
|
67304
|
+
[name: string]: unknown;
|
|
67305
|
+
};
|
|
67306
|
+
content: {
|
|
67307
|
+
"application/json": components["schemas"]["DraftHashResponse"];
|
|
67308
|
+
};
|
|
67309
|
+
};
|
|
67310
|
+
/** @description Bad Request */
|
|
67311
|
+
400: {
|
|
67312
|
+
headers: {
|
|
67313
|
+
[name: string]: unknown;
|
|
67314
|
+
};
|
|
67315
|
+
content: {
|
|
67316
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
67317
|
+
};
|
|
67318
|
+
};
|
|
67319
|
+
/** @description Unauthorized */
|
|
67320
|
+
401: {
|
|
67321
|
+
headers: {
|
|
67322
|
+
[name: string]: unknown;
|
|
67323
|
+
};
|
|
67324
|
+
content: {
|
|
67325
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
67326
|
+
};
|
|
67327
|
+
};
|
|
67328
|
+
/** @description Not Found */
|
|
67329
|
+
404: {
|
|
67330
|
+
headers: {
|
|
67331
|
+
[name: string]: unknown;
|
|
67332
|
+
};
|
|
67333
|
+
content: {
|
|
67334
|
+
"application/json": components["schemas"]["ActionResult"];
|
|
67335
|
+
};
|
|
67336
|
+
};
|
|
67337
|
+
};
|
|
67338
|
+
};
|
|
67339
|
+
CreatorConfigsPublicApi_OverwriteDraft: {
|
|
67340
|
+
parameters: {
|
|
67341
|
+
query?: never;
|
|
67342
|
+
header?: never;
|
|
67343
|
+
path: {
|
|
67344
|
+
universeId: string;
|
|
67345
|
+
/**
|
|
67346
|
+
* @description InExperienceConfig
|
|
67347
|
+
*
|
|
67348
|
+
* RecommendationServicesConfig
|
|
67349
|
+
*
|
|
67350
|
+
* DataStoresConfig
|
|
67351
|
+
*
|
|
67352
|
+
* ExtendedServicesConfig
|
|
67320
67353
|
*/
|
|
67321
67354
|
repository: components["schemas"]["Repository"];
|
|
67322
67355
|
};
|
|
@@ -67381,6 +67414,8 @@ export interface operations {
|
|
|
67381
67414
|
* RecommendationServicesConfig
|
|
67382
67415
|
*
|
|
67383
67416
|
* DataStoresConfig
|
|
67417
|
+
*
|
|
67418
|
+
* ExtendedServicesConfig
|
|
67384
67419
|
*/
|
|
67385
67420
|
repository: components["schemas"]["Repository"];
|
|
67386
67421
|
};
|
|
@@ -67438,6 +67473,8 @@ export interface operations {
|
|
|
67438
67473
|
* RecommendationServicesConfig
|
|
67439
67474
|
*
|
|
67440
67475
|
* DataStoresConfig
|
|
67476
|
+
*
|
|
67477
|
+
* ExtendedServicesConfig
|
|
67441
67478
|
*/
|
|
67442
67479
|
repository: components["schemas"]["Repository"];
|
|
67443
67480
|
};
|
|
@@ -67517,6 +67554,8 @@ export interface operations {
|
|
|
67517
67554
|
* RecommendationServicesConfig
|
|
67518
67555
|
*
|
|
67519
67556
|
* DataStoresConfig
|
|
67557
|
+
*
|
|
67558
|
+
* ExtendedServicesConfig
|
|
67520
67559
|
*/
|
|
67521
67560
|
repository: components["schemas"]["Repository"];
|
|
67522
67561
|
};
|
|
@@ -67574,6 +67613,8 @@ export interface operations {
|
|
|
67574
67613
|
* RecommendationServicesConfig
|
|
67575
67614
|
*
|
|
67576
67615
|
* DataStoresConfig
|
|
67616
|
+
*
|
|
67617
|
+
* ExtendedServicesConfig
|
|
67577
67618
|
*/
|
|
67578
67619
|
repository: components["schemas"]["Repository"];
|
|
67579
67620
|
revisionId: string;
|
|
@@ -69712,443 +69753,6 @@ export interface operations {
|
|
|
69712
69753
|
};
|
|
69713
69754
|
};
|
|
69714
69755
|
};
|
|
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
69756
|
Saves_GetSaves: {
|
|
70153
69757
|
parameters: {
|
|
70154
69758
|
query?: {
|
|
@@ -70430,7 +70034,7 @@ export interface operations {
|
|
|
70430
70034
|
/** @description Whether the results should only include assets created by verified creators. */
|
|
70431
70035
|
includeOnlyVerifiedCreators?: boolean;
|
|
70432
70036
|
/** @description The minimum price of the asset in cents. If included, must be greater than or equal to 0. */
|
|
70433
|
-
minPriceCents?: number;
|
|
70037
|
+
minPriceCents?: number | null;
|
|
70434
70038
|
/** @description The maximum price of the asset in cents. If included, must be greater than or equal to 0. */
|
|
70435
70039
|
maxPriceCents?: number | null;
|
|
70436
70040
|
/** @description Additional keywords to query by. */
|