@jacobhumston/roblox-openapi-ts 1.0.40 → 1.0.41
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 +191 -471
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -810,9 +810,9 @@ export interface paths {
|
|
|
810
810
|
/** @description The dimension values request. */
|
|
811
811
|
requestBody: {
|
|
812
812
|
content: {
|
|
813
|
-
"application/json": components["schemas"]["DimensionValuesRequest"];
|
|
814
|
-
"text/json": components["schemas"]["DimensionValuesRequest"];
|
|
815
|
-
"application/*+json": components["schemas"]["DimensionValuesRequest"];
|
|
813
|
+
"application/json": components["schemas"]["AnalyticsQueryPublicApi.DimensionValuesRequest"];
|
|
814
|
+
"text/json": components["schemas"]["AnalyticsQueryPublicApi.DimensionValuesRequest"];
|
|
815
|
+
"application/*+json": components["schemas"]["AnalyticsQueryPublicApi.DimensionValuesRequest"];
|
|
816
816
|
};
|
|
817
817
|
};
|
|
818
818
|
responses: {
|
|
@@ -922,9 +922,9 @@ export interface paths {
|
|
|
922
922
|
/** @description The query request. */
|
|
923
923
|
requestBody: {
|
|
924
924
|
content: {
|
|
925
|
-
"application/json": components["schemas"]["QueryRequest"];
|
|
926
|
-
"text/json": components["schemas"]["QueryRequest"];
|
|
927
|
-
"application/*+json": components["schemas"]["QueryRequest"];
|
|
925
|
+
"application/json": components["schemas"]["AnalyticsQueryPublicApi.QueryRequest"];
|
|
926
|
+
"text/json": components["schemas"]["AnalyticsQueryPublicApi.QueryRequest"];
|
|
927
|
+
"application/*+json": components["schemas"]["AnalyticsQueryPublicApi.QueryRequest"];
|
|
928
928
|
};
|
|
929
929
|
};
|
|
930
930
|
responses: {
|
|
@@ -4148,7 +4148,10 @@ export interface paths {
|
|
|
4148
4148
|
delete?: never;
|
|
4149
4149
|
options?: never;
|
|
4150
4150
|
head?: never;
|
|
4151
|
-
/**
|
|
4151
|
+
/**
|
|
4152
|
+
* Updates badge configuration.
|
|
4153
|
+
* @description Managers may change enabled state, name, and description when authorized for the badge.
|
|
4154
|
+
*/
|
|
4152
4155
|
patch: {
|
|
4153
4156
|
parameters: {
|
|
4154
4157
|
query?: never;
|
|
@@ -4228,7 +4231,10 @@ export interface paths {
|
|
|
4228
4231
|
};
|
|
4229
4232
|
get?: never;
|
|
4230
4233
|
put?: never;
|
|
4231
|
-
/**
|
|
4234
|
+
/**
|
|
4235
|
+
* Creates a new badge.
|
|
4236
|
+
* @description Charges the selected payment source and creates the badge under the universe's root place.
|
|
4237
|
+
*/
|
|
4232
4238
|
post: {
|
|
4233
4239
|
parameters: {
|
|
4234
4240
|
query?: never;
|
|
@@ -4248,7 +4254,7 @@ export interface paths {
|
|
|
4248
4254
|
description?: string;
|
|
4249
4255
|
/**
|
|
4250
4256
|
* Format: int32
|
|
4251
|
-
* @description Whether or not to pay for the badge with user funds, or group funds.
|
|
4257
|
+
* @description Whether or not to pay for the badge with user funds, or group funds.
|
|
4252
4258
|
* @enum {integer}
|
|
4253
4259
|
*/
|
|
4254
4260
|
paymentSourceType?: 1 | 2;
|
|
@@ -13643,7 +13649,10 @@ export interface paths {
|
|
|
13643
13649
|
path?: never;
|
|
13644
13650
|
cookie?: never;
|
|
13645
13651
|
};
|
|
13646
|
-
/**
|
|
13652
|
+
/**
|
|
13653
|
+
* Gets metadata about the badges system.
|
|
13654
|
+
* @description Returns creation price and field length limits. Callers use this before creating or editing badges.
|
|
13655
|
+
*/
|
|
13647
13656
|
get: {
|
|
13648
13657
|
parameters: {
|
|
13649
13658
|
query?: never;
|
|
@@ -13680,7 +13689,10 @@ export interface paths {
|
|
|
13680
13689
|
path?: never;
|
|
13681
13690
|
cookie?: never;
|
|
13682
13691
|
};
|
|
13683
|
-
/**
|
|
13692
|
+
/**
|
|
13693
|
+
* Gets badge information by the badge Id.
|
|
13694
|
+
* @description Returns display fields, award statistics, and owning universe for a single badge.
|
|
13695
|
+
*/
|
|
13684
13696
|
get: {
|
|
13685
13697
|
parameters: {
|
|
13686
13698
|
query?: never;
|
|
@@ -13720,7 +13732,10 @@ export interface paths {
|
|
|
13720
13732
|
delete?: never;
|
|
13721
13733
|
options?: never;
|
|
13722
13734
|
head?: never;
|
|
13723
|
-
/**
|
|
13735
|
+
/**
|
|
13736
|
+
* Updates badge configuration.
|
|
13737
|
+
* @description Managers may change enabled state, name, and description when authorized for the badge.
|
|
13738
|
+
*/
|
|
13724
13739
|
patch: {
|
|
13725
13740
|
parameters: {
|
|
13726
13741
|
query?: never;
|
|
@@ -13885,94 +13900,6 @@ export interface paths {
|
|
|
13885
13900
|
};
|
|
13886
13901
|
trace?: never;
|
|
13887
13902
|
};
|
|
13888
|
-
"/v1/badges/{badgeId}/icon": {
|
|
13889
|
-
parameters: {
|
|
13890
|
-
query?: never;
|
|
13891
|
-
header?: never;
|
|
13892
|
-
path?: never;
|
|
13893
|
-
cookie?: never;
|
|
13894
|
-
};
|
|
13895
|
-
get?: never;
|
|
13896
|
-
put?: never;
|
|
13897
|
-
/** Overwrites a badge icon with a new one. */
|
|
13898
|
-
post: {
|
|
13899
|
-
parameters: {
|
|
13900
|
-
query?: never;
|
|
13901
|
-
header?: never;
|
|
13902
|
-
path: {
|
|
13903
|
-
/** @description The badge Id. */
|
|
13904
|
-
badgeId: number;
|
|
13905
|
-
};
|
|
13906
|
-
cookie?: never;
|
|
13907
|
-
};
|
|
13908
|
-
requestBody?: {
|
|
13909
|
-
content: {
|
|
13910
|
-
"multipart/form-data": {
|
|
13911
|
-
/** Format: binary */
|
|
13912
|
-
Files?: string;
|
|
13913
|
-
};
|
|
13914
|
-
};
|
|
13915
|
-
};
|
|
13916
|
-
responses: {
|
|
13917
|
-
/** @description OK */
|
|
13918
|
-
200: {
|
|
13919
|
-
headers: {
|
|
13920
|
-
[name: string]: unknown;
|
|
13921
|
-
};
|
|
13922
|
-
content: {
|
|
13923
|
-
"application/json": components["schemas"]["Roblox.Badges.Api.IconUploadResponse"];
|
|
13924
|
-
"text/json": components["schemas"]["Roblox.Badges.Api.IconUploadResponse"];
|
|
13925
|
-
};
|
|
13926
|
-
};
|
|
13927
|
-
/**
|
|
13928
|
-
* @description 6: Text moderated.
|
|
13929
|
-
* 22: Icon file is not present in the request.
|
|
13930
|
-
*/
|
|
13931
|
-
400: {
|
|
13932
|
-
headers: {
|
|
13933
|
-
[name: string]: unknown;
|
|
13934
|
-
};
|
|
13935
|
-
content?: never;
|
|
13936
|
-
};
|
|
13937
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
13938
|
-
401: {
|
|
13939
|
-
headers: {
|
|
13940
|
-
[name: string]: unknown;
|
|
13941
|
-
};
|
|
13942
|
-
content?: never;
|
|
13943
|
-
};
|
|
13944
|
-
/**
|
|
13945
|
-
* @description 0: Token Validation Failed
|
|
13946
|
-
* 2: You do not have permission to manage this badge.
|
|
13947
|
-
*/
|
|
13948
|
-
403: {
|
|
13949
|
-
headers: {
|
|
13950
|
-
[name: string]: unknown;
|
|
13951
|
-
};
|
|
13952
|
-
content?: never;
|
|
13953
|
-
};
|
|
13954
|
-
/** @description 1: Badge is invalid or does not exist. */
|
|
13955
|
-
404: {
|
|
13956
|
-
headers: {
|
|
13957
|
-
[name: string]: unknown;
|
|
13958
|
-
};
|
|
13959
|
-
content?: never;
|
|
13960
|
-
};
|
|
13961
|
-
/** @description 13: Too many requests, try again later. */
|
|
13962
|
-
429: {
|
|
13963
|
-
headers: {
|
|
13964
|
-
[name: string]: unknown;
|
|
13965
|
-
};
|
|
13966
|
-
content?: never;
|
|
13967
|
-
};
|
|
13968
|
-
};
|
|
13969
|
-
};
|
|
13970
|
-
delete?: never;
|
|
13971
|
-
options?: never;
|
|
13972
|
-
head?: never;
|
|
13973
|
-
patch?: never;
|
|
13974
|
-
trace?: never;
|
|
13975
|
-
};
|
|
13976
13903
|
"/v1/badges/{badgeId}/icon#publish.roblox.com": {
|
|
13977
13904
|
parameters: {
|
|
13978
13905
|
query?: never;
|
|
@@ -31615,7 +31542,10 @@ export interface paths {
|
|
|
31615
31542
|
path?: never;
|
|
31616
31543
|
cookie?: never;
|
|
31617
31544
|
};
|
|
31618
|
-
/**
|
|
31545
|
+
/**
|
|
31546
|
+
* Gets badges by their awarding game.
|
|
31547
|
+
* @description Lists badges created under the universe's root place, with paging and optional sort.
|
|
31548
|
+
*/
|
|
31619
31549
|
get: {
|
|
31620
31550
|
parameters: {
|
|
31621
31551
|
query?: {
|
|
@@ -31664,7 +31594,10 @@ export interface paths {
|
|
|
31664
31594
|
};
|
|
31665
31595
|
};
|
|
31666
31596
|
put?: never;
|
|
31667
|
-
/**
|
|
31597
|
+
/**
|
|
31598
|
+
* Creates a new badge.
|
|
31599
|
+
* @description Charges the selected payment source and creates the badge under the universe's root place.
|
|
31600
|
+
*/
|
|
31668
31601
|
post: {
|
|
31669
31602
|
parameters: {
|
|
31670
31603
|
query?: never;
|
|
@@ -31684,7 +31617,7 @@ export interface paths {
|
|
|
31684
31617
|
description?: string;
|
|
31685
31618
|
/**
|
|
31686
31619
|
* Format: int32
|
|
31687
|
-
* @description Whether or not to pay for the badge with user funds, or group funds.
|
|
31620
|
+
* @description Whether or not to pay for the badge with user funds, or group funds.
|
|
31688
31621
|
* @enum {integer}
|
|
31689
31622
|
*/
|
|
31690
31623
|
paymentSourceType?: 1 | 2;
|
|
@@ -32228,7 +32161,10 @@ export interface paths {
|
|
|
32228
32161
|
path?: never;
|
|
32229
32162
|
cookie?: never;
|
|
32230
32163
|
};
|
|
32231
|
-
/**
|
|
32164
|
+
/**
|
|
32165
|
+
* Gets the number of free badges left for the current UTC day by their awarding game.
|
|
32166
|
+
* @description Reflects daily free-creation allowance for the universe when the feature is enabled.
|
|
32167
|
+
*/
|
|
32232
32168
|
get: {
|
|
32233
32169
|
parameters: {
|
|
32234
32170
|
query?: never;
|
|
@@ -32815,7 +32751,10 @@ export interface paths {
|
|
|
32815
32751
|
get?: never;
|
|
32816
32752
|
put?: never;
|
|
32817
32753
|
post?: never;
|
|
32818
|
-
/**
|
|
32754
|
+
/**
|
|
32755
|
+
* Removes a badge from the authenticated user.
|
|
32756
|
+
* @description Revokes the caller's own awarded badge instance when the badge exists on their account.
|
|
32757
|
+
*/
|
|
32819
32758
|
delete: {
|
|
32820
32759
|
parameters: {
|
|
32821
32760
|
query?: never;
|
|
@@ -34855,163 +34794,6 @@ export interface paths {
|
|
|
34855
34794
|
patch?: never;
|
|
34856
34795
|
trace?: never;
|
|
34857
34796
|
};
|
|
34858
|
-
"/v1/users/{userId}/badges": {
|
|
34859
|
-
parameters: {
|
|
34860
|
-
query?: never;
|
|
34861
|
-
header?: never;
|
|
34862
|
-
path?: never;
|
|
34863
|
-
cookie?: never;
|
|
34864
|
-
};
|
|
34865
|
-
/** Gets a list of badges a user has been awarded. */
|
|
34866
|
-
get: {
|
|
34867
|
-
parameters: {
|
|
34868
|
-
query?: {
|
|
34869
|
-
/** @description The number of results per request. */
|
|
34870
|
-
limit?: 10 | 25 | 50 | 100;
|
|
34871
|
-
/** @description The paging cursor for the previous or next page. */
|
|
34872
|
-
cursor?: string;
|
|
34873
|
-
/** @description The order the results are sorted in. */
|
|
34874
|
-
sortOrder?: "Asc" | "Desc";
|
|
34875
|
-
};
|
|
34876
|
-
header?: never;
|
|
34877
|
-
path: {
|
|
34878
|
-
/** @description The user Id. */
|
|
34879
|
-
userId: number;
|
|
34880
|
-
};
|
|
34881
|
-
cookie?: never;
|
|
34882
|
-
};
|
|
34883
|
-
requestBody?: never;
|
|
34884
|
-
responses: {
|
|
34885
|
-
/** @description OK */
|
|
34886
|
-
200: {
|
|
34887
|
-
headers: {
|
|
34888
|
-
[name: string]: unknown;
|
|
34889
|
-
};
|
|
34890
|
-
content: {
|
|
34891
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Badges.Api.GetBadgesByUserResponse_"];
|
|
34892
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Badges.Api.GetBadgesByUserResponse_"];
|
|
34893
|
-
};
|
|
34894
|
-
};
|
|
34895
|
-
/** @description 4: User is invalid or does not exist. */
|
|
34896
|
-
404: {
|
|
34897
|
-
headers: {
|
|
34898
|
-
[name: string]: unknown;
|
|
34899
|
-
};
|
|
34900
|
-
content?: never;
|
|
34901
|
-
};
|
|
34902
|
-
};
|
|
34903
|
-
};
|
|
34904
|
-
put?: never;
|
|
34905
|
-
post?: never;
|
|
34906
|
-
delete?: never;
|
|
34907
|
-
options?: never;
|
|
34908
|
-
head?: never;
|
|
34909
|
-
patch?: never;
|
|
34910
|
-
trace?: never;
|
|
34911
|
-
};
|
|
34912
|
-
"/v1/users/{userId}/badges/awarded-dates": {
|
|
34913
|
-
parameters: {
|
|
34914
|
-
query?: never;
|
|
34915
|
-
header?: never;
|
|
34916
|
-
path?: never;
|
|
34917
|
-
cookie?: never;
|
|
34918
|
-
};
|
|
34919
|
-
/** Gets timestamps for when badges were awarded to a user. */
|
|
34920
|
-
get: {
|
|
34921
|
-
parameters: {
|
|
34922
|
-
query: {
|
|
34923
|
-
/** @description The CSV of badge Ids. */
|
|
34924
|
-
badgeIds: number[];
|
|
34925
|
-
};
|
|
34926
|
-
header?: never;
|
|
34927
|
-
path: {
|
|
34928
|
-
/** @description The user Id. */
|
|
34929
|
-
userId: number;
|
|
34930
|
-
};
|
|
34931
|
-
cookie?: never;
|
|
34932
|
-
};
|
|
34933
|
-
requestBody?: never;
|
|
34934
|
-
responses: {
|
|
34935
|
-
/** @description OK */
|
|
34936
|
-
200: {
|
|
34937
|
-
headers: {
|
|
34938
|
-
[name: string]: unknown;
|
|
34939
|
-
};
|
|
34940
|
-
content: {
|
|
34941
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Badges.Api.BadgeAwardResponse_"];
|
|
34942
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Badges.Api.BadgeAwardResponse_"];
|
|
34943
|
-
};
|
|
34944
|
-
};
|
|
34945
|
-
/** @description 5: Too many badge Ids. */
|
|
34946
|
-
400: {
|
|
34947
|
-
headers: {
|
|
34948
|
-
[name: string]: unknown;
|
|
34949
|
-
};
|
|
34950
|
-
content?: never;
|
|
34951
|
-
};
|
|
34952
|
-
/** @description 4: User is invalid or does not exist. */
|
|
34953
|
-
404: {
|
|
34954
|
-
headers: {
|
|
34955
|
-
[name: string]: unknown;
|
|
34956
|
-
};
|
|
34957
|
-
content?: never;
|
|
34958
|
-
};
|
|
34959
|
-
};
|
|
34960
|
-
};
|
|
34961
|
-
put?: never;
|
|
34962
|
-
post?: never;
|
|
34963
|
-
delete?: never;
|
|
34964
|
-
options?: never;
|
|
34965
|
-
head?: never;
|
|
34966
|
-
patch?: never;
|
|
34967
|
-
trace?: never;
|
|
34968
|
-
};
|
|
34969
|
-
"/v1/users/{userId}/badges/{badgeId}/awarded-date": {
|
|
34970
|
-
parameters: {
|
|
34971
|
-
query?: never;
|
|
34972
|
-
header?: never;
|
|
34973
|
-
path?: never;
|
|
34974
|
-
cookie?: never;
|
|
34975
|
-
};
|
|
34976
|
-
/** Gets timestamp for when a single badge was awarded to a user. */
|
|
34977
|
-
get: {
|
|
34978
|
-
parameters: {
|
|
34979
|
-
query?: never;
|
|
34980
|
-
header?: never;
|
|
34981
|
-
path: {
|
|
34982
|
-
/** @description User id. */
|
|
34983
|
-
userId: number;
|
|
34984
|
-
/** @description Badge id. */
|
|
34985
|
-
badgeId: number;
|
|
34986
|
-
};
|
|
34987
|
-
cookie?: never;
|
|
34988
|
-
};
|
|
34989
|
-
requestBody?: never;
|
|
34990
|
-
responses: {
|
|
34991
|
-
/** @description OK */
|
|
34992
|
-
200: {
|
|
34993
|
-
headers: {
|
|
34994
|
-
[name: string]: unknown;
|
|
34995
|
-
};
|
|
34996
|
-
content?: never;
|
|
34997
|
-
};
|
|
34998
|
-
/** @description 4: User is invalid or does not exist. */
|
|
34999
|
-
404: {
|
|
35000
|
-
headers: {
|
|
35001
|
-
[name: string]: unknown;
|
|
35002
|
-
};
|
|
35003
|
-
content?: never;
|
|
35004
|
-
};
|
|
35005
|
-
};
|
|
35006
|
-
};
|
|
35007
|
-
put?: never;
|
|
35008
|
-
post?: never;
|
|
35009
|
-
delete?: never;
|
|
35010
|
-
options?: never;
|
|
35011
|
-
head?: never;
|
|
35012
|
-
patch?: never;
|
|
35013
|
-
trace?: never;
|
|
35014
|
-
};
|
|
35015
34797
|
"/v1/users/{userId}/bundles": {
|
|
35016
34798
|
parameters: {
|
|
35017
34799
|
query?: never;
|
|
@@ -43795,6 +43577,146 @@ export interface components {
|
|
|
43795
43577
|
};
|
|
43796
43578
|
/** @enum {string} */
|
|
43797
43579
|
AgentType: "User" | "Group";
|
|
43580
|
+
/** @description A breakdown dimension value in a query result. */
|
|
43581
|
+
"AnalyticsQueryPublicApi.BreakdownValue": {
|
|
43582
|
+
/** @description The dimension name. */
|
|
43583
|
+
dimension: string;
|
|
43584
|
+
/** @description The dimension value. */
|
|
43585
|
+
value: string;
|
|
43586
|
+
/** @description A human-readable display value when the dimension is a unique ID. */
|
|
43587
|
+
displayValue?: string | null;
|
|
43588
|
+
};
|
|
43589
|
+
/** @description A single data point in a metric query result. */
|
|
43590
|
+
"AnalyticsQueryPublicApi.DataPoint": {
|
|
43591
|
+
/**
|
|
43592
|
+
* Format: date-time
|
|
43593
|
+
* @description The timestamp of the data point in UTC.
|
|
43594
|
+
*/
|
|
43595
|
+
time: string;
|
|
43596
|
+
/**
|
|
43597
|
+
* Format: double
|
|
43598
|
+
* @description The numeric value of the data point.
|
|
43599
|
+
*/
|
|
43600
|
+
value: number;
|
|
43601
|
+
/** @description String values associated with the data point, when applicable. */
|
|
43602
|
+
stringValues?: string[] | null;
|
|
43603
|
+
status?: components["schemas"]["AnalyticsQueryPublicApi.DataStatus"];
|
|
43604
|
+
};
|
|
43605
|
+
/**
|
|
43606
|
+
* @description The status of a data point in a query result.
|
|
43607
|
+
* @enum {string}
|
|
43608
|
+
*/
|
|
43609
|
+
"AnalyticsQueryPublicApi.DataStatus": "Valid" | "Projected" | "NotStatisticallySignificant";
|
|
43610
|
+
/** @description The values for a single dimension returned by a dimension values query. */
|
|
43611
|
+
"AnalyticsQueryPublicApi.DimensionValues": {
|
|
43612
|
+
/** @description The dimension name. */
|
|
43613
|
+
dimension: string;
|
|
43614
|
+
/** @description The values for the dimension. */
|
|
43615
|
+
values?: components["schemas"]["DimensionValue"][];
|
|
43616
|
+
};
|
|
43617
|
+
/** @description A request to query dimension values. */
|
|
43618
|
+
"AnalyticsQueryPublicApi.DimensionValuesRequest": {
|
|
43619
|
+
/** @description The metric that provides context for resolving dimension namespaces. */
|
|
43620
|
+
metric: string;
|
|
43621
|
+
/** @description The dimensions to retrieve values for. Each entry is a single dimension name. */
|
|
43622
|
+
dimensions?: string[];
|
|
43623
|
+
/**
|
|
43624
|
+
* Format: date-time
|
|
43625
|
+
* @description The inclusive start of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
43626
|
+
*/
|
|
43627
|
+
startTime: string;
|
|
43628
|
+
/**
|
|
43629
|
+
* Format: date-time
|
|
43630
|
+
* @description The exclusive end of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
43631
|
+
*/
|
|
43632
|
+
endTime: string;
|
|
43633
|
+
/** @description Filters to apply to the query. */
|
|
43634
|
+
filter?: components["schemas"]["AnalyticsQueryPublicApi.QueryFilter"][];
|
|
43635
|
+
granularity?: components["schemas"]["AnalyticsQueryPublicApi.MetricGranularity"];
|
|
43636
|
+
/**
|
|
43637
|
+
* Format: int32
|
|
43638
|
+
* @description The maximum number of values to return per dimension.
|
|
43639
|
+
*/
|
|
43640
|
+
limit?: number;
|
|
43641
|
+
};
|
|
43642
|
+
/** @description The response for a dimension values query. */
|
|
43643
|
+
"AnalyticsQueryPublicApi.DimensionValuesResponse": {
|
|
43644
|
+
/** @description The dimension values returned by the query. */
|
|
43645
|
+
values?: components["schemas"]["AnalyticsQueryPublicApi.DimensionValues"][];
|
|
43646
|
+
};
|
|
43647
|
+
/**
|
|
43648
|
+
* @description The operation to apply to a query filter.
|
|
43649
|
+
* @enum {string}
|
|
43650
|
+
*/
|
|
43651
|
+
"AnalyticsQueryPublicApi.FilterOperation": "In" | "NotIn" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "Match";
|
|
43652
|
+
/**
|
|
43653
|
+
* @description The time granularity of metric data points in a query.
|
|
43654
|
+
* @enum {string}
|
|
43655
|
+
*/
|
|
43656
|
+
"AnalyticsQueryPublicApi.MetricGranularity": "OneMinute" | "HalfHour" | "OneHour" | "OneDay" | "OneWeek" | "OneMonth" | "None";
|
|
43657
|
+
/** @description A metric value for a single breakdown series. */
|
|
43658
|
+
"AnalyticsQueryPublicApi.MetricValue": {
|
|
43659
|
+
/** @description The breakdown values for this series. */
|
|
43660
|
+
breakdowns?: components["schemas"]["AnalyticsQueryPublicApi.BreakdownValue"][];
|
|
43661
|
+
/** @description The data points for this series. */
|
|
43662
|
+
dataPoints?: components["schemas"]["AnalyticsQueryPublicApi.DataPoint"][];
|
|
43663
|
+
};
|
|
43664
|
+
/** @description The metadata associated with a long-running operation. */
|
|
43665
|
+
"AnalyticsQueryPublicApi.OperationMetadata": {
|
|
43666
|
+
/**
|
|
43667
|
+
* Format: date-time
|
|
43668
|
+
* @description The time the operation was created.
|
|
43669
|
+
*/
|
|
43670
|
+
createdTime?: string | null;
|
|
43671
|
+
};
|
|
43672
|
+
/** @description The error returned from a query request. */
|
|
43673
|
+
"AnalyticsQueryPublicApi.QueryError": {
|
|
43674
|
+
/**
|
|
43675
|
+
* Format: int32
|
|
43676
|
+
* @description The error code.
|
|
43677
|
+
*/
|
|
43678
|
+
code?: number;
|
|
43679
|
+
/** @description The message associated with the query error. */
|
|
43680
|
+
message: string;
|
|
43681
|
+
};
|
|
43682
|
+
/** @description A filter applied to a query dimension. */
|
|
43683
|
+
"AnalyticsQueryPublicApi.QueryFilter": {
|
|
43684
|
+
/** @description The dimension name to filter on. */
|
|
43685
|
+
dimension: string;
|
|
43686
|
+
/** @description The values to filter by. */
|
|
43687
|
+
values?: string[];
|
|
43688
|
+
operation: components["schemas"]["AnalyticsQueryPublicApi.FilterOperation"];
|
|
43689
|
+
};
|
|
43690
|
+
/** @description A request to query time series metric data. */
|
|
43691
|
+
"AnalyticsQueryPublicApi.QueryRequest": {
|
|
43692
|
+
/** @description The metric to query. */
|
|
43693
|
+
metric: string;
|
|
43694
|
+
granularity: components["schemas"]["AnalyticsQueryPublicApi.MetricGranularity"];
|
|
43695
|
+
/**
|
|
43696
|
+
* Format: date-time
|
|
43697
|
+
* @description The inclusive start of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
43698
|
+
*/
|
|
43699
|
+
startTime: string;
|
|
43700
|
+
/**
|
|
43701
|
+
* Format: date-time
|
|
43702
|
+
* @description The exclusive end of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
43703
|
+
*/
|
|
43704
|
+
endTime: string;
|
|
43705
|
+
/** @description The dimensions to group results by. Each entry is a single dimension name. */
|
|
43706
|
+
breakdown?: string[];
|
|
43707
|
+
/** @description Filters to apply to the query. */
|
|
43708
|
+
filter?: components["schemas"]["AnalyticsQueryPublicApi.QueryFilter"][];
|
|
43709
|
+
/**
|
|
43710
|
+
* Format: int32
|
|
43711
|
+
* @description The maximum number of breakdown series to return.
|
|
43712
|
+
*/
|
|
43713
|
+
limit?: number;
|
|
43714
|
+
};
|
|
43715
|
+
/** @description The response for a metric query. */
|
|
43716
|
+
"AnalyticsQueryPublicApi.QueryResponse": {
|
|
43717
|
+
/** @description The metric values returned by the query. */
|
|
43718
|
+
values?: components["schemas"]["AnalyticsQueryPublicApi.MetricValue"][];
|
|
43719
|
+
};
|
|
43798
43720
|
ApiEmptyResponseModel: Record<string, never>;
|
|
43799
43721
|
/** @description Represents an asset. */
|
|
43800
43722
|
Asset: {
|
|
@@ -44126,15 +44048,6 @@ export interface components {
|
|
|
44126
44048
|
/** @description The list of grants that had errors. */
|
|
44127
44049
|
errors?: components["schemas"]["GrantPermissionError"][] | null;
|
|
44128
44050
|
};
|
|
44129
|
-
/** @description A breakdown dimension value in a query result. */
|
|
44130
|
-
BreakdownValue: {
|
|
44131
|
-
/** @description The dimension name. */
|
|
44132
|
-
dimension: string;
|
|
44133
|
-
/** @description The dimension value. */
|
|
44134
|
-
value: string;
|
|
44135
|
-
/** @description A human-readable display value when the dimension is a unique ID. */
|
|
44136
|
-
displayValue?: string | null;
|
|
44137
|
-
};
|
|
44138
44051
|
/** @description Request model for bulk deleting saves */
|
|
44139
44052
|
BulkDeleteSavesRequest: {
|
|
44140
44053
|
/** @description A list of saves being deleted */
|
|
@@ -44724,27 +44637,6 @@ export interface components {
|
|
|
44724
44637
|
* @enum {string}
|
|
44725
44638
|
*/
|
|
44726
44639
|
CustomSignalType: "Invalid" | "PlayerCategorical" | "ServerCategorical" | "ServerNumerical" | "PlayerNumerical";
|
|
44727
|
-
/** @description A single data point in a metric query result. */
|
|
44728
|
-
DataPoint: {
|
|
44729
|
-
/**
|
|
44730
|
-
* Format: date-time
|
|
44731
|
-
* @description The timestamp of the data point in UTC.
|
|
44732
|
-
*/
|
|
44733
|
-
time: string;
|
|
44734
|
-
/**
|
|
44735
|
-
* Format: double
|
|
44736
|
-
* @description The numeric value of the data point.
|
|
44737
|
-
*/
|
|
44738
|
-
value: number;
|
|
44739
|
-
/** @description String values associated with the data point, when applicable. */
|
|
44740
|
-
stringValues?: string[] | null;
|
|
44741
|
-
status?: components["schemas"]["DataStatus"];
|
|
44742
|
-
};
|
|
44743
|
-
/**
|
|
44744
|
-
* @description The status of a data point in a query result.
|
|
44745
|
-
* @enum {string}
|
|
44746
|
-
*/
|
|
44747
|
-
DataStatus: "Valid" | "Projected" | "NotStatisticallySignificant";
|
|
44748
44640
|
/** @description Represents a data store. */
|
|
44749
44641
|
DataStore: {
|
|
44750
44642
|
/**
|
|
@@ -45011,51 +44903,14 @@ export interface components {
|
|
|
45011
44903
|
/** @description A human-readable display value when the dimension is a unique ID. */
|
|
45012
44904
|
displayValue?: string | null;
|
|
45013
44905
|
};
|
|
45014
|
-
/** @description The values for a single dimension returned by a dimension values query. */
|
|
45015
|
-
DimensionValues: {
|
|
45016
|
-
/** @description The dimension name. */
|
|
45017
|
-
dimension: string;
|
|
45018
|
-
/** @description The values for the dimension. */
|
|
45019
|
-
values?: components["schemas"]["DimensionValue"][];
|
|
45020
|
-
};
|
|
45021
44906
|
/** @description A completed long-running dimension values operation with results. */
|
|
45022
44907
|
DimensionValuesOperationResult: {
|
|
45023
44908
|
/** @description The server-assigned resource path. */
|
|
45024
44909
|
path?: string | null;
|
|
45025
44910
|
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
45026
44911
|
done?: boolean;
|
|
45027
|
-
response?: components["schemas"]["DimensionValuesResponse"];
|
|
45028
|
-
metadata?: components["schemas"]["OperationMetadata"];
|
|
45029
|
-
};
|
|
45030
|
-
/** @description A request to query dimension values. */
|
|
45031
|
-
DimensionValuesRequest: {
|
|
45032
|
-
/** @description The metric that provides context for resolving dimension namespaces. */
|
|
45033
|
-
metric: string;
|
|
45034
|
-
/** @description The dimensions to retrieve values for. Each entry is a single dimension name. */
|
|
45035
|
-
dimensions?: string[];
|
|
45036
|
-
/**
|
|
45037
|
-
* Format: date-time
|
|
45038
|
-
* @description The inclusive start of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
45039
|
-
*/
|
|
45040
|
-
startTime: string;
|
|
45041
|
-
/**
|
|
45042
|
-
* Format: date-time
|
|
45043
|
-
* @description The exclusive end of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
45044
|
-
*/
|
|
45045
|
-
endTime: string;
|
|
45046
|
-
/** @description Filters to apply to the query. */
|
|
45047
|
-
filter?: components["schemas"]["QueryFilter"][];
|
|
45048
|
-
granularity?: components["schemas"]["MetricGranularity"];
|
|
45049
|
-
/**
|
|
45050
|
-
* Format: int32
|
|
45051
|
-
* @description The maximum number of values to return per dimension.
|
|
45052
|
-
*/
|
|
45053
|
-
limit?: number;
|
|
45054
|
-
};
|
|
45055
|
-
/** @description The response for a dimension values query. */
|
|
45056
|
-
DimensionValuesResponse: {
|
|
45057
|
-
/** @description The dimension values returned by the query. */
|
|
45058
|
-
values?: components["schemas"]["DimensionValues"][];
|
|
44912
|
+
response?: components["schemas"]["AnalyticsQueryPublicApi.DimensionValuesResponse"];
|
|
44913
|
+
metadata?: components["schemas"]["AnalyticsQueryPublicApi.OperationMetadata"];
|
|
45059
44914
|
};
|
|
45060
44915
|
/** @description Discards read items from the front of the queue. */
|
|
45061
44916
|
DiscardMemoryStoreQueueItemsRequest: {
|
|
@@ -45188,11 +45043,6 @@ export interface components {
|
|
|
45188
45043
|
/** @description The list of available values for the filter. */
|
|
45189
45044
|
values?: unknown[] | null;
|
|
45190
45045
|
};
|
|
45191
|
-
/**
|
|
45192
|
-
* @description The operation to apply to a query filter.
|
|
45193
|
-
* @enum {string}
|
|
45194
|
-
*/
|
|
45195
|
-
FilterOperation: "In" | "NotIn" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "Match";
|
|
45196
45046
|
/** @description Response model for filter options endpoint. */
|
|
45197
45047
|
FilterOptionsResponse: {
|
|
45198
45048
|
/** @description A dictionary of filter field names to their metadata and available values. */
|
|
@@ -47379,18 +47229,6 @@ export interface components {
|
|
|
47379
47229
|
*/
|
|
47380
47230
|
readonly count?: number;
|
|
47381
47231
|
};
|
|
47382
|
-
/**
|
|
47383
|
-
* @description The time granularity of metric data points in a query.
|
|
47384
|
-
* @enum {string}
|
|
47385
|
-
*/
|
|
47386
|
-
MetricGranularity: "OneMinute" | "HalfHour" | "OneHour" | "OneDay" | "OneWeek" | "OneMonth" | "None";
|
|
47387
|
-
/** @description A metric value for a single breakdown series. */
|
|
47388
|
-
MetricValue: {
|
|
47389
|
-
/** @description The breakdown values for this series. */
|
|
47390
|
-
breakdowns?: components["schemas"]["BreakdownValue"][];
|
|
47391
|
-
/** @description The data points for this series. */
|
|
47392
|
-
dataPoints?: components["schemas"]["DataPoint"][];
|
|
47393
|
-
};
|
|
47394
47232
|
/** @description Mock server signal values. */
|
|
47395
47233
|
MockServerSignalValues: {
|
|
47396
47234
|
/**
|
|
@@ -47692,8 +47530,8 @@ export interface components {
|
|
|
47692
47530
|
path?: string | null;
|
|
47693
47531
|
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
47694
47532
|
done?: boolean;
|
|
47695
|
-
error?: components["schemas"]["QueryError"];
|
|
47696
|
-
metadata?: components["schemas"]["OperationMetadata"];
|
|
47533
|
+
error?: components["schemas"]["AnalyticsQueryPublicApi.QueryError"];
|
|
47534
|
+
metadata?: components["schemas"]["AnalyticsQueryPublicApi.OperationMetadata"];
|
|
47697
47535
|
};
|
|
47698
47536
|
OperationErrorResponse: {
|
|
47699
47537
|
/** Format: int32 */
|
|
@@ -47701,21 +47539,13 @@ export interface components {
|
|
|
47701
47539
|
readonly error?: string | null;
|
|
47702
47540
|
message?: string | null;
|
|
47703
47541
|
};
|
|
47704
|
-
/** @description The metadata associated with a long-running operation. */
|
|
47705
|
-
OperationMetadata: {
|
|
47706
|
-
/**
|
|
47707
|
-
* Format: date-time
|
|
47708
|
-
* @description The time the operation was created.
|
|
47709
|
-
*/
|
|
47710
|
-
createdTime?: string | null;
|
|
47711
|
-
};
|
|
47712
47542
|
/** @description A long-running operation that is still in progress. */
|
|
47713
47543
|
OperationPending: {
|
|
47714
47544
|
/** @description The server-assigned resource path. */
|
|
47715
47545
|
path?: string | null;
|
|
47716
47546
|
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
47717
47547
|
done?: boolean;
|
|
47718
|
-
metadata?: components["schemas"]["OperationMetadata"];
|
|
47548
|
+
metadata?: components["schemas"]["AnalyticsQueryPublicApi.OperationMetadata"];
|
|
47719
47549
|
};
|
|
47720
47550
|
/** @description A key-value entry in an ordered data store. */
|
|
47721
47551
|
OrderedDataStoreEntry: {
|
|
@@ -48246,16 +48076,6 @@ export interface components {
|
|
|
48246
48076
|
/** @description The suggested spelling correction for the original search query. */
|
|
48247
48077
|
suggestedQuery?: string | null;
|
|
48248
48078
|
} | null;
|
|
48249
|
-
/** @description The error returned from a query request. */
|
|
48250
|
-
QueryError: {
|
|
48251
|
-
/**
|
|
48252
|
-
* Format: int32
|
|
48253
|
-
* @description The error code.
|
|
48254
|
-
*/
|
|
48255
|
-
code?: number;
|
|
48256
|
-
/** @description The message associated with the query error. */
|
|
48257
|
-
message: string;
|
|
48258
|
-
};
|
|
48259
48079
|
/** @description The facets of a query. */
|
|
48260
48080
|
QueryFacets: {
|
|
48261
48081
|
/** @description Facets that are already applied to the search. */
|
|
@@ -48263,52 +48083,14 @@ export interface components {
|
|
|
48263
48083
|
/** @description The unused and still available facets. */
|
|
48264
48084
|
availableFacets?: string[] | null;
|
|
48265
48085
|
} | null;
|
|
48266
|
-
/** @description A filter applied to a query dimension. */
|
|
48267
|
-
QueryFilter: {
|
|
48268
|
-
/** @description The dimension name to filter on. */
|
|
48269
|
-
dimension: string;
|
|
48270
|
-
/** @description The values to filter by. */
|
|
48271
|
-
values?: string[];
|
|
48272
|
-
operation: components["schemas"]["FilterOperation"];
|
|
48273
|
-
};
|
|
48274
48086
|
/** @description A completed long-running query operation with results. */
|
|
48275
48087
|
QueryOperationResult: {
|
|
48276
48088
|
/** @description The server-assigned resource path. */
|
|
48277
48089
|
path?: string | null;
|
|
48278
48090
|
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
48279
48091
|
done?: boolean;
|
|
48280
|
-
response?: components["schemas"]["QueryResponse"];
|
|
48281
|
-
metadata?: components["schemas"]["OperationMetadata"];
|
|
48282
|
-
};
|
|
48283
|
-
/** @description A request to query time series metric data. */
|
|
48284
|
-
QueryRequest: {
|
|
48285
|
-
/** @description The metric to query. */
|
|
48286
|
-
metric: string;
|
|
48287
|
-
granularity: components["schemas"]["MetricGranularity"];
|
|
48288
|
-
/**
|
|
48289
|
-
* Format: date-time
|
|
48290
|
-
* @description The inclusive start of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
48291
|
-
*/
|
|
48292
|
-
startTime: string;
|
|
48293
|
-
/**
|
|
48294
|
-
* Format: date-time
|
|
48295
|
-
* @description The exclusive end of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
48296
|
-
*/
|
|
48297
|
-
endTime: string;
|
|
48298
|
-
/** @description The dimensions to group results by. Each entry is a single dimension name. */
|
|
48299
|
-
breakdown?: string[];
|
|
48300
|
-
/** @description Filters to apply to the query. */
|
|
48301
|
-
filter?: components["schemas"]["QueryFilter"][];
|
|
48302
|
-
/**
|
|
48303
|
-
* Format: int32
|
|
48304
|
-
* @description The maximum number of breakdown series to return.
|
|
48305
|
-
*/
|
|
48306
|
-
limit?: number;
|
|
48307
|
-
};
|
|
48308
|
-
/** @description The response for a metric query. */
|
|
48309
|
-
QueryResponse: {
|
|
48310
|
-
/** @description The metric values returned by the query. */
|
|
48311
|
-
values?: components["schemas"]["MetricValue"][];
|
|
48092
|
+
response?: components["schemas"]["AnalyticsQueryPublicApi.QueryResponse"];
|
|
48093
|
+
metadata?: components["schemas"]["AnalyticsQueryPublicApi.OperationMetadata"];
|
|
48312
48094
|
};
|
|
48313
48095
|
/** @description Returns the specified number of items at the front of the queue. */
|
|
48314
48096
|
ReadMemoryStoreQueueItemsResponse: {
|
|
@@ -51093,31 +50875,6 @@ export interface components {
|
|
|
51093
50875
|
*/
|
|
51094
50876
|
platform?: "ChromeOnDesktop" | "AndroidNative" | "FirefoxOnDesktop" | "IOSNative" | "AndroidAmazon" | "IOSTencent" | "AndroidTencentService" | "IOSPushKit";
|
|
51095
50877
|
};
|
|
51096
|
-
/** @description The result of being awarded a badge. */
|
|
51097
|
-
"Roblox.Badges.Api.BadgeAwardResponse": {
|
|
51098
|
-
/**
|
|
51099
|
-
* Format: int64
|
|
51100
|
-
* @description The badge Id.
|
|
51101
|
-
*/
|
|
51102
|
-
badgeId?: number;
|
|
51103
|
-
/**
|
|
51104
|
-
* Format: date-time
|
|
51105
|
-
* @description When the badge was awarded.
|
|
51106
|
-
*/
|
|
51107
|
-
awardedDate?: string;
|
|
51108
|
-
};
|
|
51109
|
-
/** @description Represents information about the badge creator. (Creator of the place that awarded the badge) */
|
|
51110
|
-
"Roblox.Badges.Api.BadgeCreatorResponse": {
|
|
51111
|
-
/**
|
|
51112
|
-
* Format: int64
|
|
51113
|
-
* @description The creator ID
|
|
51114
|
-
*/
|
|
51115
|
-
id?: number;
|
|
51116
|
-
/** @description The name of the creator */
|
|
51117
|
-
name?: string;
|
|
51118
|
-
/** @description The type of the creator */
|
|
51119
|
-
type?: string;
|
|
51120
|
-
};
|
|
51121
50878
|
/** @description Metadata about badges. */
|
|
51122
50879
|
"Roblox.Badges.Api.BadgeMetadataResponse": {
|
|
51123
50880
|
/**
|
|
@@ -51182,35 +50939,6 @@ export interface components {
|
|
|
51182
50939
|
statistics?: components["schemas"]["Roblox.Web.Responses.Badges.BadgeAwardStatisticsResponse"];
|
|
51183
50940
|
awardingUniverse?: components["schemas"]["Roblox.Badges.Api.UniverseResponse"];
|
|
51184
50941
|
};
|
|
51185
|
-
/** @description Response for the GetBadgesByUser endpoint. */
|
|
51186
|
-
"Roblox.Badges.Api.GetBadgesByUserResponse": {
|
|
51187
|
-
creator?: components["schemas"]["Roblox.Badges.Api.BadgeCreatorResponse"];
|
|
51188
|
-
/** Format: int64 */
|
|
51189
|
-
id?: number;
|
|
51190
|
-
name?: string;
|
|
51191
|
-
description?: string;
|
|
51192
|
-
displayName?: string;
|
|
51193
|
-
displayDescription?: string;
|
|
51194
|
-
enabled?: boolean;
|
|
51195
|
-
/** Format: int64 */
|
|
51196
|
-
iconImageId?: number;
|
|
51197
|
-
/** Format: int64 */
|
|
51198
|
-
displayIconImageId?: number;
|
|
51199
|
-
awarder?: components["schemas"]["Roblox.Web.Responses.RelatedEntityTypeResponse_Roblox.Platform.Badges.BadgeAwarderType_"];
|
|
51200
|
-
statistics?: components["schemas"]["Roblox.Web.Responses.Badges.BadgeAwardStatisticsResponse"];
|
|
51201
|
-
/** Format: date-time */
|
|
51202
|
-
created?: string;
|
|
51203
|
-
/** Format: date-time */
|
|
51204
|
-
updated?: string;
|
|
51205
|
-
};
|
|
51206
|
-
/** @description Badge icon upload response. */
|
|
51207
|
-
"Roblox.Badges.Api.IconUploadResponse": {
|
|
51208
|
-
/**
|
|
51209
|
-
* Format: int64
|
|
51210
|
-
* @description The asset id of the uploaded icon.
|
|
51211
|
-
*/
|
|
51212
|
-
targetId?: number;
|
|
51213
|
-
};
|
|
51214
50942
|
/** @description A response containing universe information. */
|
|
51215
50943
|
"Roblox.Badges.Api.UniverseResponse": {
|
|
51216
50944
|
/**
|
|
@@ -56642,9 +56370,6 @@ export interface components {
|
|
|
56642
56370
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel_": {
|
|
56643
56371
|
data?: components["schemas"]["Roblox.Api.Develop.Models.UniverseTeamCreateSettingsModel"][];
|
|
56644
56372
|
};
|
|
56645
|
-
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Badges.Api.BadgeAwardResponse_": {
|
|
56646
|
-
data?: components["schemas"]["Roblox.Badges.Api.BadgeAwardResponse"][];
|
|
56647
|
-
};
|
|
56648
56373
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Catalog.Api.BundleDetailsModel_": {
|
|
56649
56374
|
data?: components["schemas"]["Roblox.Catalog.Api.BundleDetailsModel"][];
|
|
56650
56375
|
};
|
|
@@ -56770,11 +56495,6 @@ export interface components {
|
|
|
56770
56495
|
nextPageCursor?: string;
|
|
56771
56496
|
data?: components["schemas"]["Roblox.Badges.Api.BadgeResponse"][];
|
|
56772
56497
|
};
|
|
56773
|
-
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Badges.Api.GetBadgesByUserResponse_": {
|
|
56774
|
-
previousPageCursor?: string;
|
|
56775
|
-
nextPageCursor?: string;
|
|
56776
|
-
data?: components["schemas"]["Roblox.Badges.Api.GetBadgesByUserResponse"][];
|
|
56777
|
-
};
|
|
56778
56498
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.BundleDetailsModel_": {
|
|
56779
56499
|
previousPageCursor?: string;
|
|
56780
56500
|
nextPageCursor?: string;
|