@jacobhumston/roblox-openapi-ts 1.0.7 → 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 +114 -1
- 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,7 @@ 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.
|
|
47207
47276
|
*/
|
|
47208
47277
|
400: {
|
|
47209
47278
|
headers: {
|
|
@@ -47238,6 +47307,13 @@ export interface paths {
|
|
|
47238
47307
|
};
|
|
47239
47308
|
content?: never;
|
|
47240
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
|
+
};
|
|
47241
47317
|
};
|
|
47242
47318
|
};
|
|
47243
47319
|
trace?: never;
|
|
@@ -52734,9 +52810,11 @@ export interface components {
|
|
|
52734
52810
|
* DataStoresConfig
|
|
52735
52811
|
*
|
|
52736
52812
|
* ExtendedServicesConfig
|
|
52813
|
+
*
|
|
52814
|
+
* LeaderboardsConfig
|
|
52737
52815
|
* @enum {string}
|
|
52738
52816
|
*/
|
|
52739
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig";
|
|
52817
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig";
|
|
52740
52818
|
/**
|
|
52741
52819
|
* @description The current state of a place restart.
|
|
52742
52820
|
* @enum {string}
|
|
@@ -55542,6 +55620,7 @@ export interface components {
|
|
|
55542
55620
|
sessionId?: string;
|
|
55543
55621
|
credentialNickname?: string;
|
|
55544
55622
|
attestationResponse?: string;
|
|
55623
|
+
source?: string;
|
|
55545
55624
|
};
|
|
55546
55625
|
"Roblox.Authentication.Api.Models.Request.IdentityVerificationLoginRequest": {
|
|
55547
55626
|
loginTicket?: string;
|
|
@@ -56635,6 +56714,11 @@ export interface components {
|
|
|
56635
56714
|
/** @description JWT token. If the channel is not private, this is omitted. */
|
|
56636
56715
|
token?: string;
|
|
56637
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;
|
|
56638
56722
|
};
|
|
56639
56723
|
"Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel": {
|
|
56640
56724
|
/** Format: int32 */
|
|
@@ -59410,6 +59494,12 @@ export interface components {
|
|
|
59410
59494
|
/** Format: date-time */
|
|
59411
59495
|
updated?: string;
|
|
59412
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
|
+
};
|
|
59413
59503
|
/** @description The user asset item model for V2 controllers. */
|
|
59414
59504
|
"Roblox.Inventory.Api.V2.UserAssetItemModelV2": {
|
|
59415
59505
|
/**
|
|
@@ -61786,6 +61876,11 @@ export interface components {
|
|
|
61786
61876
|
nextPageCursor?: string;
|
|
61787
61877
|
data?: components["schemas"]["Roblox.Inventory.Api.V2.AssetOwnerResponse"][];
|
|
61788
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
|
+
};
|
|
61789
61884
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Inventory.Api.V2.UserAssetItemModelV2_": {
|
|
61790
61885
|
previousPageCursor?: string;
|
|
61791
61886
|
nextPageCursor?: string;
|
|
@@ -67100,6 +67195,8 @@ export interface operations {
|
|
|
67100
67195
|
* DataStoresConfig
|
|
67101
67196
|
*
|
|
67102
67197
|
* ExtendedServicesConfig
|
|
67198
|
+
*
|
|
67199
|
+
* LeaderboardsConfig
|
|
67103
67200
|
*/
|
|
67104
67201
|
repository: components["schemas"]["Repository"];
|
|
67105
67202
|
};
|
|
@@ -67159,6 +67256,8 @@ export interface operations {
|
|
|
67159
67256
|
* DataStoresConfig
|
|
67160
67257
|
*
|
|
67161
67258
|
* ExtendedServicesConfig
|
|
67259
|
+
*
|
|
67260
|
+
* LeaderboardsConfig
|
|
67162
67261
|
*/
|
|
67163
67262
|
repository: components["schemas"]["Repository"];
|
|
67164
67263
|
};
|
|
@@ -67218,6 +67317,8 @@ export interface operations {
|
|
|
67218
67317
|
* DataStoresConfig
|
|
67219
67318
|
*
|
|
67220
67319
|
* ExtendedServicesConfig
|
|
67320
|
+
*
|
|
67321
|
+
* LeaderboardsConfig
|
|
67221
67322
|
*/
|
|
67222
67323
|
repository: components["schemas"]["Repository"];
|
|
67223
67324
|
};
|
|
@@ -67284,6 +67385,8 @@ export interface operations {
|
|
|
67284
67385
|
* DataStoresConfig
|
|
67285
67386
|
*
|
|
67286
67387
|
* ExtendedServicesConfig
|
|
67388
|
+
*
|
|
67389
|
+
* LeaderboardsConfig
|
|
67287
67390
|
*/
|
|
67288
67391
|
repository: components["schemas"]["Repository"];
|
|
67289
67392
|
};
|
|
@@ -67350,6 +67453,8 @@ export interface operations {
|
|
|
67350
67453
|
* DataStoresConfig
|
|
67351
67454
|
*
|
|
67352
67455
|
* ExtendedServicesConfig
|
|
67456
|
+
*
|
|
67457
|
+
* LeaderboardsConfig
|
|
67353
67458
|
*/
|
|
67354
67459
|
repository: components["schemas"]["Repository"];
|
|
67355
67460
|
};
|
|
@@ -67416,6 +67521,8 @@ export interface operations {
|
|
|
67416
67521
|
* DataStoresConfig
|
|
67417
67522
|
*
|
|
67418
67523
|
* ExtendedServicesConfig
|
|
67524
|
+
*
|
|
67525
|
+
* LeaderboardsConfig
|
|
67419
67526
|
*/
|
|
67420
67527
|
repository: components["schemas"]["Repository"];
|
|
67421
67528
|
};
|
|
@@ -67475,6 +67582,8 @@ export interface operations {
|
|
|
67475
67582
|
* DataStoresConfig
|
|
67476
67583
|
*
|
|
67477
67584
|
* ExtendedServicesConfig
|
|
67585
|
+
*
|
|
67586
|
+
* LeaderboardsConfig
|
|
67478
67587
|
*/
|
|
67479
67588
|
repository: components["schemas"]["Repository"];
|
|
67480
67589
|
};
|
|
@@ -67556,6 +67665,8 @@ export interface operations {
|
|
|
67556
67665
|
* DataStoresConfig
|
|
67557
67666
|
*
|
|
67558
67667
|
* ExtendedServicesConfig
|
|
67668
|
+
*
|
|
67669
|
+
* LeaderboardsConfig
|
|
67559
67670
|
*/
|
|
67560
67671
|
repository: components["schemas"]["Repository"];
|
|
67561
67672
|
};
|
|
@@ -67615,6 +67726,8 @@ export interface operations {
|
|
|
67615
67726
|
* DataStoresConfig
|
|
67616
67727
|
*
|
|
67617
67728
|
* ExtendedServicesConfig
|
|
67729
|
+
*
|
|
67730
|
+
* LeaderboardsConfig
|
|
67618
67731
|
*/
|
|
67619
67732
|
repository: components["schemas"]["Repository"];
|
|
67620
67733
|
revisionId: string;
|