@jacobhumston/roblox-openapi-ts 1.0.7 → 1.0.9
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 +134 -12
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -42964,6 +42964,74 @@ export interface paths {
|
|
|
42964
42964
|
patch?: never;
|
|
42965
42965
|
trace?: never;
|
|
42966
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
|
+
};
|
|
42967
43035
|
"/v2/compression-dictionaries": {
|
|
42968
43036
|
parameters: {
|
|
42969
43037
|
query?: never;
|
|
@@ -47204,6 +47272,8 @@ export interface paths {
|
|
|
47204
47272
|
* 24: Invalid scale value
|
|
47205
47273
|
* 28: OptIn/Out Regions Not Supported.
|
|
47206
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.
|
|
47276
|
+
* 44: The provided audience configuration is invalid. Ensure the audience list is not empty and contains only supported audience values.
|
|
47207
47277
|
*/
|
|
47208
47278
|
400: {
|
|
47209
47279
|
headers: {
|
|
@@ -47224,6 +47294,7 @@ export interface paths {
|
|
|
47224
47294
|
* 14: You are not authorized to sell games.
|
|
47225
47295
|
* 29: Luobu app terms of service user agreement is missing.
|
|
47226
47296
|
* 30: Unknown error while updating Opt in out region.
|
|
47297
|
+
* 45: The creator of this experience is not eligible to set this audience.
|
|
47227
47298
|
*/
|
|
47228
47299
|
403: {
|
|
47229
47300
|
headers: {
|
|
@@ -47238,6 +47309,13 @@ export interface paths {
|
|
|
47238
47309
|
};
|
|
47239
47310
|
content?: never;
|
|
47240
47311
|
};
|
|
47312
|
+
/** @description 43: Failed to update the audience configuration. The change was not applied. Please try again. */
|
|
47313
|
+
500: {
|
|
47314
|
+
headers: {
|
|
47315
|
+
[name: string]: unknown;
|
|
47316
|
+
};
|
|
47317
|
+
content?: never;
|
|
47318
|
+
};
|
|
47241
47319
|
};
|
|
47242
47320
|
};
|
|
47243
47321
|
trace?: never;
|
|
@@ -52734,9 +52812,11 @@ export interface components {
|
|
|
52734
52812
|
* DataStoresConfig
|
|
52735
52813
|
*
|
|
52736
52814
|
* ExtendedServicesConfig
|
|
52815
|
+
*
|
|
52816
|
+
* LeaderboardsConfig
|
|
52737
52817
|
* @enum {string}
|
|
52738
52818
|
*/
|
|
52739
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig";
|
|
52819
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig";
|
|
52740
52820
|
/**
|
|
52741
52821
|
* @description The current state of a place restart.
|
|
52742
52822
|
* @enum {string}
|
|
@@ -54597,6 +54677,11 @@ export interface components {
|
|
|
54597
54677
|
* @description The updated System.DateTime
|
|
54598
54678
|
*/
|
|
54599
54679
|
updated?: string;
|
|
54680
|
+
/**
|
|
54681
|
+
* @description The audiences this universe is visible to (e.g. Editors, PlayTesters, Friends, Public).
|
|
54682
|
+
* Always non-null; may be empty when audience visibility has not been configured.
|
|
54683
|
+
*/
|
|
54684
|
+
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54600
54685
|
};
|
|
54601
54686
|
/** @description Represents a universe moderation policy status */
|
|
54602
54687
|
"Roblox.Api.Develop.Models.UniverseModerationPolicyStatus": {
|
|
@@ -54779,9 +54864,8 @@ export interface components {
|
|
|
54779
54864
|
*/
|
|
54780
54865
|
fiatProductChangeType?: 0 | 1 | 2 | 3;
|
|
54781
54866
|
/**
|
|
54782
|
-
* @description
|
|
54783
|
-
*
|
|
54784
|
-
* and skips the IsFriendsOnly-derived USS dual-write that runs under non-Off treatments.
|
|
54867
|
+
* @description The audiences this universe should be visible to (e.g. Editors, PlayTesters, Friends, Public).
|
|
54868
|
+
* When provided, replaces the universe's existing audience set with the supplied values.
|
|
54785
54869
|
*/
|
|
54786
54870
|
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54787
54871
|
};
|
|
@@ -54875,10 +54959,8 @@ export interface components {
|
|
|
54875
54959
|
*/
|
|
54876
54960
|
fiatModerationStatus?: 0 | 1 | 2 | 3 | 4;
|
|
54877
54961
|
/**
|
|
54878
|
-
* @description
|
|
54879
|
-
*
|
|
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.
|
|
54962
|
+
* @description The audiences this universe is visible to (e.g. Editors, PlayTesters, Friends, Public).
|
|
54963
|
+
* Always non-null; may be empty when audience visibility has not been configured.
|
|
54882
54964
|
*/
|
|
54883
54965
|
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54884
54966
|
};
|
|
@@ -54974,10 +55056,8 @@ export interface components {
|
|
|
54974
55056
|
/** @description Whether the game is elegible for text chat service auto migration. */
|
|
54975
55057
|
eligibleForTextChatMigration?: boolean;
|
|
54976
55058
|
/**
|
|
54977
|
-
* @description
|
|
54978
|
-
*
|
|
54979
|
-
* is ReverseShadow or Authority (USS is the source of truth in those modes); an empty list is
|
|
54980
|
-
* returned for Off and Shadow so clients always see a stable shape, never null.
|
|
55059
|
+
* @description The audiences this universe is visible to (e.g. Editors, PlayTesters, Friends, Public).
|
|
55060
|
+
* Always non-null; may be empty when audience visibility has not been configured.
|
|
54981
55061
|
*/
|
|
54982
55062
|
audiences?: (0 | 1 | 2 | 3 | 4)[];
|
|
54983
55063
|
};
|
|
@@ -55542,6 +55622,7 @@ export interface components {
|
|
|
55542
55622
|
sessionId?: string;
|
|
55543
55623
|
credentialNickname?: string;
|
|
55544
55624
|
attestationResponse?: string;
|
|
55625
|
+
source?: string;
|
|
55545
55626
|
};
|
|
55546
55627
|
"Roblox.Authentication.Api.Models.Request.IdentityVerificationLoginRequest": {
|
|
55547
55628
|
loginTicket?: string;
|
|
@@ -56635,6 +56716,11 @@ export interface components {
|
|
|
56635
56716
|
/** @description JWT token. If the channel is not private, this is omitted. */
|
|
56636
56717
|
token?: string;
|
|
56637
56718
|
program?: components["schemas"]["Roblox.ClientSettings.Api.Models.Response.BetaProgramInfo"];
|
|
56719
|
+
/**
|
|
56720
|
+
* @description Whether the channel is flag-only. A flag-only channel uses production binaries.
|
|
56721
|
+
* If the channel is not flag-only, this is omitted.
|
|
56722
|
+
*/
|
|
56723
|
+
isFlagOnly?: boolean;
|
|
56638
56724
|
};
|
|
56639
56725
|
"Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel": {
|
|
56640
56726
|
/** Format: int32 */
|
|
@@ -59410,6 +59496,12 @@ export interface components {
|
|
|
59410
59496
|
/** Format: date-time */
|
|
59411
59497
|
updated?: string;
|
|
59412
59498
|
};
|
|
59499
|
+
"Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse": {
|
|
59500
|
+
collectibleItemInstanceId?: string;
|
|
59501
|
+
/** Format: int64 */
|
|
59502
|
+
serialNumber?: number;
|
|
59503
|
+
owner?: components["schemas"]["Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Agents.AgentType_"];
|
|
59504
|
+
};
|
|
59413
59505
|
/** @description The user asset item model for V2 controllers. */
|
|
59414
59506
|
"Roblox.Inventory.Api.V2.UserAssetItemModelV2": {
|
|
59415
59507
|
/**
|
|
@@ -61786,6 +61878,11 @@ export interface components {
|
|
|
61786
61878
|
nextPageCursor?: string;
|
|
61787
61879
|
data?: components["schemas"]["Roblox.Inventory.Api.V2.AssetOwnerResponse"][];
|
|
61788
61880
|
};
|
|
61881
|
+
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse_": {
|
|
61882
|
+
previousPageCursor?: string;
|
|
61883
|
+
nextPageCursor?: string;
|
|
61884
|
+
data?: components["schemas"]["Roblox.Inventory.Api.V2.CollectibleItemOwnerResponse"][];
|
|
61885
|
+
};
|
|
61789
61886
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.UserAssetItemModelV2_": {
|
|
61790
61887
|
previousPageCursor?: string;
|
|
61791
61888
|
nextPageCursor?: string;
|
|
@@ -61829,6 +61926,12 @@ export interface components {
|
|
|
61829
61926
|
"Roblox.Web.WebAPI.Models.ApiSuccessResponse": {
|
|
61830
61927
|
success?: boolean;
|
|
61831
61928
|
};
|
|
61929
|
+
RobuxRateBreakdown: {
|
|
61930
|
+
/** Format: double */
|
|
61931
|
+
o18?: number | null;
|
|
61932
|
+
/** Format: double */
|
|
61933
|
+
standard?: number | null;
|
|
61934
|
+
};
|
|
61832
61935
|
/** @description RPN operand: attribute reference or literal value (same concepts as the proto `RpnOperand` oneof). */
|
|
61833
61936
|
RpnOperandDto: {
|
|
61834
61937
|
attributeReference?: string | null;
|
|
@@ -62524,6 +62627,7 @@ export interface components {
|
|
|
62524
62627
|
currency?: components["schemas"]["GenericCurrencyResponse"] | null;
|
|
62525
62628
|
purchaseToken?: string | null;
|
|
62526
62629
|
transactionSubtype?: string | null;
|
|
62630
|
+
robuxRateBreakdown?: components["schemas"]["RobuxRateBreakdown"] | null;
|
|
62527
62631
|
};
|
|
62528
62632
|
TransactionRecordResponseApiPageResponse: {
|
|
62529
62633
|
previousPageCursor?: string | null;
|
|
@@ -67100,6 +67204,8 @@ export interface operations {
|
|
|
67100
67204
|
* DataStoresConfig
|
|
67101
67205
|
*
|
|
67102
67206
|
* ExtendedServicesConfig
|
|
67207
|
+
*
|
|
67208
|
+
* LeaderboardsConfig
|
|
67103
67209
|
*/
|
|
67104
67210
|
repository: components["schemas"]["Repository"];
|
|
67105
67211
|
};
|
|
@@ -67159,6 +67265,8 @@ export interface operations {
|
|
|
67159
67265
|
* DataStoresConfig
|
|
67160
67266
|
*
|
|
67161
67267
|
* ExtendedServicesConfig
|
|
67268
|
+
*
|
|
67269
|
+
* LeaderboardsConfig
|
|
67162
67270
|
*/
|
|
67163
67271
|
repository: components["schemas"]["Repository"];
|
|
67164
67272
|
};
|
|
@@ -67218,6 +67326,8 @@ export interface operations {
|
|
|
67218
67326
|
* DataStoresConfig
|
|
67219
67327
|
*
|
|
67220
67328
|
* ExtendedServicesConfig
|
|
67329
|
+
*
|
|
67330
|
+
* LeaderboardsConfig
|
|
67221
67331
|
*/
|
|
67222
67332
|
repository: components["schemas"]["Repository"];
|
|
67223
67333
|
};
|
|
@@ -67284,6 +67394,8 @@ export interface operations {
|
|
|
67284
67394
|
* DataStoresConfig
|
|
67285
67395
|
*
|
|
67286
67396
|
* ExtendedServicesConfig
|
|
67397
|
+
*
|
|
67398
|
+
* LeaderboardsConfig
|
|
67287
67399
|
*/
|
|
67288
67400
|
repository: components["schemas"]["Repository"];
|
|
67289
67401
|
};
|
|
@@ -67350,6 +67462,8 @@ export interface operations {
|
|
|
67350
67462
|
* DataStoresConfig
|
|
67351
67463
|
*
|
|
67352
67464
|
* ExtendedServicesConfig
|
|
67465
|
+
*
|
|
67466
|
+
* LeaderboardsConfig
|
|
67353
67467
|
*/
|
|
67354
67468
|
repository: components["schemas"]["Repository"];
|
|
67355
67469
|
};
|
|
@@ -67416,6 +67530,8 @@ export interface operations {
|
|
|
67416
67530
|
* DataStoresConfig
|
|
67417
67531
|
*
|
|
67418
67532
|
* ExtendedServicesConfig
|
|
67533
|
+
*
|
|
67534
|
+
* LeaderboardsConfig
|
|
67419
67535
|
*/
|
|
67420
67536
|
repository: components["schemas"]["Repository"];
|
|
67421
67537
|
};
|
|
@@ -67475,6 +67591,8 @@ export interface operations {
|
|
|
67475
67591
|
* DataStoresConfig
|
|
67476
67592
|
*
|
|
67477
67593
|
* ExtendedServicesConfig
|
|
67594
|
+
*
|
|
67595
|
+
* LeaderboardsConfig
|
|
67478
67596
|
*/
|
|
67479
67597
|
repository: components["schemas"]["Repository"];
|
|
67480
67598
|
};
|
|
@@ -67556,6 +67674,8 @@ export interface operations {
|
|
|
67556
67674
|
* DataStoresConfig
|
|
67557
67675
|
*
|
|
67558
67676
|
* ExtendedServicesConfig
|
|
67677
|
+
*
|
|
67678
|
+
* LeaderboardsConfig
|
|
67559
67679
|
*/
|
|
67560
67680
|
repository: components["schemas"]["Repository"];
|
|
67561
67681
|
};
|
|
@@ -67615,6 +67735,8 @@ export interface operations {
|
|
|
67615
67735
|
* DataStoresConfig
|
|
67616
67736
|
*
|
|
67617
67737
|
* ExtendedServicesConfig
|
|
67738
|
+
*
|
|
67739
|
+
* LeaderboardsConfig
|
|
67618
67740
|
*/
|
|
67619
67741
|
repository: components["schemas"]["Repository"];
|
|
67620
67742
|
revisionId: string;
|