@jacobhumston/roblox-openapi-ts 1.0.41 → 1.0.42
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 +9 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1409,7 +1409,7 @@ export interface paths {
|
|
|
1409
1409
|
};
|
|
1410
1410
|
};
|
|
1411
1411
|
responses: {
|
|
1412
|
-
/** @description
|
|
1412
|
+
/** @description Success */
|
|
1413
1413
|
200: {
|
|
1414
1414
|
headers: {
|
|
1415
1415
|
[name: string]: unknown;
|
|
@@ -1436,7 +1436,7 @@ export interface paths {
|
|
|
1436
1436
|
"application/json": components["schemas"]["AssetPermissions.ErrorResponse"];
|
|
1437
1437
|
};
|
|
1438
1438
|
};
|
|
1439
|
-
/** @description
|
|
1439
|
+
/** @description Server Error */
|
|
1440
1440
|
500: {
|
|
1441
1441
|
headers: {
|
|
1442
1442
|
[name: string]: unknown;
|
|
@@ -27202,6 +27202,8 @@ export interface paths {
|
|
|
27202
27202
|
/** @description Optional session identifier. */
|
|
27203
27203
|
sessionId?: string;
|
|
27204
27204
|
friendRequestSort?: 0 | 1 | 2;
|
|
27205
|
+
/** @description Whether to uprank unseen friend requests and return isUnseen per friend request. */
|
|
27206
|
+
uprankUnseen?: boolean;
|
|
27205
27207
|
};
|
|
27206
27208
|
header?: never;
|
|
27207
27209
|
path?: never;
|
|
@@ -43803,7 +43805,7 @@ export interface components {
|
|
|
43803
43805
|
* @description Enums for customized error code in error responses.
|
|
43804
43806
|
* @enum {string}
|
|
43805
43807
|
*/
|
|
43806
|
-
"AssetPermissions.ErrorCode": "UnknownError" | "InvalidRequest" | "AssetNotFound" | "CannotManageAsset" | "PublicAssetCannotBeGrantedTo" | "CannotManageSubject" | "SubjectNotFound" | "AssetTypeNotEnabled" | "PermissionLimitReached" | "DependenciesLimitReached";
|
|
43808
|
+
"AssetPermissions.ErrorCode": "UnknownError" | "InvalidRequest" | "AssetNotFound" | "CannotManageAsset" | "PublicAssetCannotBeGrantedTo" | "CannotManageSubject" | "SubjectNotFound" | "AssetTypeNotEnabled" | "PermissionLimitReached" | "DependenciesLimitReached" | "NotRequestable" | "RequesterNotConnected" | "AlreadyPending" | "AlreadyHasAccess" | "RequestNotFound" | "InvalidRequestStatus" | "RateLimited" | "CallerNotOwner" | "BatchSizeLimitExceeded";
|
|
43807
43809
|
/** @description The error object for responses. */
|
|
43808
43810
|
"AssetPermissions.ErrorResponse": {
|
|
43809
43811
|
error?: components["schemas"]["AssetPermissions.Error"];
|
|
@@ -51845,6 +51847,8 @@ export interface components {
|
|
|
51845
51847
|
mutualFriendsList?: string[];
|
|
51846
51848
|
/** @description The user's verified badge status. */
|
|
51847
51849
|
hasVerifiedBadge?: boolean;
|
|
51850
|
+
/** @description The user's verified badge status. */
|
|
51851
|
+
isUnseen?: boolean;
|
|
51848
51852
|
/** @description The user description. */
|
|
51849
51853
|
description?: string;
|
|
51850
51854
|
/**
|
|
@@ -64626,6 +64630,8 @@ export interface operations {
|
|
|
64626
64630
|
* @description The maximum number of game servers to return. The service might return
|
|
64627
64631
|
* fewer than this value. If unspecified, at most 25 game servers are
|
|
64628
64632
|
* returned. The maximum value is 100 and higher values are set to 100.
|
|
64633
|
+
* Zero returns no game servers and only the total count, for callers that
|
|
64634
|
+
* need the count without paging through rows.
|
|
64629
64635
|
*/
|
|
64630
64636
|
MaxPageSize?: number;
|
|
64631
64637
|
/**
|