@jacobhumston/roblox-openapi-ts 1.0.10 → 1.0.11
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 +28 -55
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -14822,54 +14822,6 @@ export interface paths {
|
|
|
14822
14822
|
patch?: never;
|
|
14823
14823
|
trace?: never;
|
|
14824
14824
|
};
|
|
14825
|
-
"/v1/contacts/metadata": {
|
|
14826
|
-
parameters: {
|
|
14827
|
-
query?: never;
|
|
14828
|
-
header?: never;
|
|
14829
|
-
path?: never;
|
|
14830
|
-
cookie?: never;
|
|
14831
|
-
};
|
|
14832
|
-
/**
|
|
14833
|
-
* Gets contextual information for contacts and usertags
|
|
14834
|
-
* @deprecated
|
|
14835
|
-
* @description Endpoint is Deprecated
|
|
14836
|
-
*/
|
|
14837
|
-
get: {
|
|
14838
|
-
parameters: {
|
|
14839
|
-
query?: never;
|
|
14840
|
-
header?: never;
|
|
14841
|
-
path?: never;
|
|
14842
|
-
cookie?: never;
|
|
14843
|
-
};
|
|
14844
|
-
requestBody?: never;
|
|
14845
|
-
responses: {
|
|
14846
|
-
/** @description OK */
|
|
14847
|
-
200: {
|
|
14848
|
-
headers: {
|
|
14849
|
-
[name: string]: unknown;
|
|
14850
|
-
};
|
|
14851
|
-
content: {
|
|
14852
|
-
"application/json": components["schemas"]["Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel"];
|
|
14853
|
-
"text/json": components["schemas"]["Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel"];
|
|
14854
|
-
};
|
|
14855
|
-
};
|
|
14856
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
14857
|
-
401: {
|
|
14858
|
-
headers: {
|
|
14859
|
-
[name: string]: unknown;
|
|
14860
|
-
};
|
|
14861
|
-
content?: never;
|
|
14862
|
-
};
|
|
14863
|
-
};
|
|
14864
|
-
};
|
|
14865
|
-
put?: never;
|
|
14866
|
-
post?: never;
|
|
14867
|
-
delete?: never;
|
|
14868
|
-
options?: never;
|
|
14869
|
-
head?: never;
|
|
14870
|
-
patch?: never;
|
|
14871
|
-
trace?: never;
|
|
14872
|
-
};
|
|
14873
14825
|
"/v1/contacts/{targetContactId}/request-friendship": {
|
|
14874
14826
|
parameters: {
|
|
14875
14827
|
query?: never;
|
|
@@ -52815,9 +52767,11 @@ export interface components {
|
|
|
52815
52767
|
* ExtendedServicesConfig
|
|
52816
52768
|
*
|
|
52817
52769
|
* LeaderboardsConfig
|
|
52770
|
+
*
|
|
52771
|
+
* ExperienceUserConfig
|
|
52818
52772
|
* @enum {string}
|
|
52819
52773
|
*/
|
|
52820
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig";
|
|
52774
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig" | "ExperienceUserConfig";
|
|
52821
52775
|
/**
|
|
52822
52776
|
* @description The current state of a place restart.
|
|
52823
52777
|
* @enum {string}
|
|
@@ -56723,12 +56677,6 @@ export interface components {
|
|
|
56723
56677
|
*/
|
|
56724
56678
|
isFlagOnly?: boolean;
|
|
56725
56679
|
};
|
|
56726
|
-
"Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel": {
|
|
56727
|
-
/** Format: int32 */
|
|
56728
|
-
multiGetContactsMaxSize?: number;
|
|
56729
|
-
/** Format: int32 */
|
|
56730
|
-
multiGetContactsCacheTTLinMS?: number;
|
|
56731
|
-
};
|
|
56732
56680
|
"Roblox.Contacts.Api.Request.GetUserTagsRequestModel": {
|
|
56733
56681
|
targetUserIds?: number[];
|
|
56734
56682
|
};
|
|
@@ -62032,6 +61980,13 @@ export interface components {
|
|
|
62032
61980
|
tags?: string[] | null;
|
|
62033
61981
|
/** @description The category path to filter by. */
|
|
62034
61982
|
categoryPath?: string | null;
|
|
61983
|
+
/**
|
|
61984
|
+
* @description Optional swimlane identifier (e.g. "trending", "essential", "priced").
|
|
61985
|
+
* Resolves through Toolbox.Service.Interfaces.Swimlanes.ISwimlaneRegistry to a provider whose
|
|
61986
|
+
* default sort intent and search-builder configuration are applied to the
|
|
61987
|
+
* query. Unknown, disabled, or category-ineligible values yield 400.
|
|
61988
|
+
*/
|
|
61989
|
+
swimlane?: string | null;
|
|
62035
61990
|
/** @description Indicates which fields will be populated in the response. */
|
|
62036
61991
|
searchView?: components["schemas"]["SearchView"];
|
|
62037
61992
|
/** @description Audio-specific search filters. */
|
|
@@ -67212,6 +67167,8 @@ export interface operations {
|
|
|
67212
67167
|
* ExtendedServicesConfig
|
|
67213
67168
|
*
|
|
67214
67169
|
* LeaderboardsConfig
|
|
67170
|
+
*
|
|
67171
|
+
* ExperienceUserConfig
|
|
67215
67172
|
*/
|
|
67216
67173
|
repository: components["schemas"]["Repository"];
|
|
67217
67174
|
};
|
|
@@ -67273,6 +67230,8 @@ export interface operations {
|
|
|
67273
67230
|
* ExtendedServicesConfig
|
|
67274
67231
|
*
|
|
67275
67232
|
* LeaderboardsConfig
|
|
67233
|
+
*
|
|
67234
|
+
* ExperienceUserConfig
|
|
67276
67235
|
*/
|
|
67277
67236
|
repository: components["schemas"]["Repository"];
|
|
67278
67237
|
};
|
|
@@ -67334,6 +67293,8 @@ export interface operations {
|
|
|
67334
67293
|
* ExtendedServicesConfig
|
|
67335
67294
|
*
|
|
67336
67295
|
* LeaderboardsConfig
|
|
67296
|
+
*
|
|
67297
|
+
* ExperienceUserConfig
|
|
67337
67298
|
*/
|
|
67338
67299
|
repository: components["schemas"]["Repository"];
|
|
67339
67300
|
};
|
|
@@ -67402,6 +67363,8 @@ export interface operations {
|
|
|
67402
67363
|
* ExtendedServicesConfig
|
|
67403
67364
|
*
|
|
67404
67365
|
* LeaderboardsConfig
|
|
67366
|
+
*
|
|
67367
|
+
* ExperienceUserConfig
|
|
67405
67368
|
*/
|
|
67406
67369
|
repository: components["schemas"]["Repository"];
|
|
67407
67370
|
};
|
|
@@ -67470,6 +67433,8 @@ export interface operations {
|
|
|
67470
67433
|
* ExtendedServicesConfig
|
|
67471
67434
|
*
|
|
67472
67435
|
* LeaderboardsConfig
|
|
67436
|
+
*
|
|
67437
|
+
* ExperienceUserConfig
|
|
67473
67438
|
*/
|
|
67474
67439
|
repository: components["schemas"]["Repository"];
|
|
67475
67440
|
};
|
|
@@ -67538,6 +67503,8 @@ export interface operations {
|
|
|
67538
67503
|
* ExtendedServicesConfig
|
|
67539
67504
|
*
|
|
67540
67505
|
* LeaderboardsConfig
|
|
67506
|
+
*
|
|
67507
|
+
* ExperienceUserConfig
|
|
67541
67508
|
*/
|
|
67542
67509
|
repository: components["schemas"]["Repository"];
|
|
67543
67510
|
};
|
|
@@ -67599,6 +67566,8 @@ export interface operations {
|
|
|
67599
67566
|
* ExtendedServicesConfig
|
|
67600
67567
|
*
|
|
67601
67568
|
* LeaderboardsConfig
|
|
67569
|
+
*
|
|
67570
|
+
* ExperienceUserConfig
|
|
67602
67571
|
*/
|
|
67603
67572
|
repository: components["schemas"]["Repository"];
|
|
67604
67573
|
};
|
|
@@ -67682,6 +67651,8 @@ export interface operations {
|
|
|
67682
67651
|
* ExtendedServicesConfig
|
|
67683
67652
|
*
|
|
67684
67653
|
* LeaderboardsConfig
|
|
67654
|
+
*
|
|
67655
|
+
* ExperienceUserConfig
|
|
67685
67656
|
*/
|
|
67686
67657
|
repository: components["schemas"]["Repository"];
|
|
67687
67658
|
};
|
|
@@ -67743,6 +67714,8 @@ export interface operations {
|
|
|
67743
67714
|
* ExtendedServicesConfig
|
|
67744
67715
|
*
|
|
67745
67716
|
* LeaderboardsConfig
|
|
67717
|
+
*
|
|
67718
|
+
* ExperienceUserConfig
|
|
67746
67719
|
*/
|
|
67747
67720
|
repository: components["schemas"]["Repository"];
|
|
67748
67721
|
revisionId: string;
|