@jacobhumston/roblox-openapi-ts 1.0.52 → 1.0.54
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 +40 -301
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1844,9 +1844,8 @@ export interface paths {
|
|
|
1844
1844
|
* Update Group Membership
|
|
1845
1845
|
* @description **Deprecated.** Use AssignGroupRole and UnassignGroupRole instead.
|
|
1846
1846
|
* Updates the group membership for a particular group member. This action
|
|
1847
|
-
* requires the requester to be able to
|
|
1848
|
-
*
|
|
1849
|
-
* rank.
|
|
1847
|
+
* requires the requester to be able to assign or remove roles below their
|
|
1848
|
+
* highest role. The requester cannot change their own roles.
|
|
1850
1849
|
*/
|
|
1851
1850
|
patch: operations["Cloud_UpdateGroupMembership"];
|
|
1852
1851
|
trace?: never;
|
|
@@ -1904,6 +1903,10 @@ export interface paths {
|
|
|
1904
1903
|
* List Group Roles
|
|
1905
1904
|
* @description List roles in a group.
|
|
1906
1905
|
*
|
|
1906
|
+
* Roles can be public or private. The response includes private roles and
|
|
1907
|
+
* their fields only when the acting user is permitted to view them. The
|
|
1908
|
+
* endpoint does not provide a public-roles-only view.
|
|
1909
|
+
*
|
|
1907
1910
|
* The permissions field for roles is viewable based on the requester's access
|
|
1908
1911
|
* and scopes.
|
|
1909
1912
|
*
|
|
@@ -3502,15 +3505,6 @@ export interface paths {
|
|
|
3502
3505
|
/**
|
|
3503
3506
|
* Get User
|
|
3504
3507
|
* @description Gets a user's basic and advanced information.
|
|
3505
|
-
*
|
|
3506
|
-
* To access a user's public information, no additional scopes are required.
|
|
3507
|
-
*
|
|
3508
|
-
* To access a user's verification status, you need the following scopes:
|
|
3509
|
-
* * user.advanced:read
|
|
3510
|
-
*
|
|
3511
|
-
* To access a user's social account information, you need the following
|
|
3512
|
-
* scopes:
|
|
3513
|
-
* * user.social:read
|
|
3514
3508
|
*/
|
|
3515
3509
|
get: operations["Cloud_GetUser"];
|
|
3516
3510
|
put?: never;
|
|
@@ -3521,26 +3515,6 @@ export interface paths {
|
|
|
3521
3515
|
patch?: never;
|
|
3522
3516
|
trace?: never;
|
|
3523
3517
|
};
|
|
3524
|
-
"/cloud/v2/users/{user_id}#OpenCloudUsers": {
|
|
3525
|
-
parameters: {
|
|
3526
|
-
query?: never;
|
|
3527
|
-
header?: never;
|
|
3528
|
-
path?: never;
|
|
3529
|
-
cookie?: never;
|
|
3530
|
-
};
|
|
3531
|
-
/**
|
|
3532
|
-
* Get User
|
|
3533
|
-
* @description Gets a user's basic and advanced information.
|
|
3534
|
-
*/
|
|
3535
|
-
get: operations["OpenCloudUsers.Cloud_GetUser"];
|
|
3536
|
-
put?: never;
|
|
3537
|
-
post?: never;
|
|
3538
|
-
delete?: never;
|
|
3539
|
-
options?: never;
|
|
3540
|
-
head?: never;
|
|
3541
|
-
patch?: never;
|
|
3542
|
-
trace?: never;
|
|
3543
|
-
};
|
|
3544
3518
|
"/cloud/v2/users/{user_id}/asset-quotas": {
|
|
3545
3519
|
parameters: {
|
|
3546
3520
|
query?: never;
|
|
@@ -3614,26 +3588,6 @@ export interface paths {
|
|
|
3614
3588
|
trace?: never;
|
|
3615
3589
|
};
|
|
3616
3590
|
"/cloud/v2/users/{user_id}/operations/{operation_id}": {
|
|
3617
|
-
parameters: {
|
|
3618
|
-
query?: never;
|
|
3619
|
-
header?: never;
|
|
3620
|
-
path?: never;
|
|
3621
|
-
cookie?: never;
|
|
3622
|
-
};
|
|
3623
|
-
/**
|
|
3624
|
-
* Get User Thumbnail Generation Operation
|
|
3625
|
-
* @description Retrieves the status of the operation to [generate a user thumbnail](https://create.roblox.com/docs/cloud/reference/features/users#Cloud_GenerateUserThumbnail).
|
|
3626
|
-
*/
|
|
3627
|
-
get: operations["Cloud_GetUserThumbnailGenerationOperation"];
|
|
3628
|
-
put?: never;
|
|
3629
|
-
post?: never;
|
|
3630
|
-
delete?: never;
|
|
3631
|
-
options?: never;
|
|
3632
|
-
head?: never;
|
|
3633
|
-
patch?: never;
|
|
3634
|
-
trace?: never;
|
|
3635
|
-
};
|
|
3636
|
-
"/cloud/v2/users/{user_id}/operations/{operation_id}#OpenCloudUsers": {
|
|
3637
3591
|
parameters: {
|
|
3638
3592
|
query?: never;
|
|
3639
3593
|
header?: never;
|
|
@@ -3650,7 +3604,7 @@ export interface paths {
|
|
|
3650
3604
|
* polling until `done` is `true`. Once complete, `response.imageUri` contains
|
|
3651
3605
|
* the generated thumbnail URL.
|
|
3652
3606
|
*/
|
|
3653
|
-
get: operations["
|
|
3607
|
+
get: operations["Cloud_GetUserThumbnailGenerationOperation"];
|
|
3654
3608
|
put?: never;
|
|
3655
3609
|
post?: never;
|
|
3656
3610
|
delete?: never;
|
|
@@ -3660,26 +3614,6 @@ export interface paths {
|
|
|
3660
3614
|
trace?: never;
|
|
3661
3615
|
};
|
|
3662
3616
|
"/cloud/v2/users/{user_id}:generateThumbnail": {
|
|
3663
|
-
parameters: {
|
|
3664
|
-
query?: never;
|
|
3665
|
-
header?: never;
|
|
3666
|
-
path?: never;
|
|
3667
|
-
cookie?: never;
|
|
3668
|
-
};
|
|
3669
|
-
/**
|
|
3670
|
-
* Generate User Thumbnail
|
|
3671
|
-
* @description Generates and returns the URL for the user's avatar thumbnail.
|
|
3672
|
-
*/
|
|
3673
|
-
get: operations["Cloud_GenerateUserThumbnail"];
|
|
3674
|
-
put?: never;
|
|
3675
|
-
post?: never;
|
|
3676
|
-
delete?: never;
|
|
3677
|
-
options?: never;
|
|
3678
|
-
head?: never;
|
|
3679
|
-
patch?: never;
|
|
3680
|
-
trace?: never;
|
|
3681
|
-
};
|
|
3682
|
-
"/cloud/v2/users/{user_id}:generateThumbnail#OpenCloudUsers": {
|
|
3683
3617
|
parameters: {
|
|
3684
3618
|
query?: never;
|
|
3685
3619
|
header?: never;
|
|
@@ -3695,7 +3629,7 @@ export interface paths {
|
|
|
3695
3629
|
* which point `response.imageUri` contains the thumbnail URL. See
|
|
3696
3630
|
* [Get User Thumbnail Generation Operation](https://create.roblox.com/docs/cloud/reference/features/users#Cloud_GetUserThumbnailGenerationOperation).
|
|
3697
3631
|
*/
|
|
3698
|
-
get: operations["
|
|
3632
|
+
get: operations["Cloud_GenerateUserThumbnail"];
|
|
3699
3633
|
put?: never;
|
|
3700
3634
|
post?: never;
|
|
3701
3635
|
delete?: never;
|
|
@@ -37918,7 +37852,7 @@ export interface paths {
|
|
|
37918
37852
|
parameters: {
|
|
37919
37853
|
query?: {
|
|
37920
37854
|
/** @description The asset type for the collectibles you're trying to get. */
|
|
37921
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95;
|
|
37855
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96;
|
|
37922
37856
|
/** @description The number of results per request. */
|
|
37923
37857
|
limit?: 10 | 25 | 50 | 100;
|
|
37924
37858
|
/** @description The paging cursor for the previous or next page. */
|
|
@@ -48248,7 +48182,7 @@ export interface paths {
|
|
|
48248
48182
|
parameters: {
|
|
48249
48183
|
query: {
|
|
48250
48184
|
/** @description The asset types to query. */
|
|
48251
|
-
assetTypes: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95)[];
|
|
48185
|
+
assetTypes: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96)[];
|
|
48252
48186
|
/** @description Filters moderated assets when enabled. */
|
|
48253
48187
|
filterDisapprovedAssets?: boolean;
|
|
48254
48188
|
/** @description Filters moderated assets and assets pending review when enabled. */
|
|
@@ -51669,8 +51603,15 @@ export interface components {
|
|
|
51669
51603
|
GenerateUserThumbnailMetadata: Record<string, never>;
|
|
51670
51604
|
/** @description Returns the URL for the user's avatar thumbnail. */
|
|
51671
51605
|
GenerateUserThumbnailResponse: {
|
|
51606
|
+
/**
|
|
51607
|
+
* @description The fully-qualified type of the packed operation response. Mirrors the
|
|
51608
|
+
* `@type` field the legacy transcoder emitted via `Any.Pack`, kept so clients
|
|
51609
|
+
* reading `response["@type"]` continue to work. Declared first so it
|
|
51610
|
+
* serializes before the payload fields.
|
|
51611
|
+
*/
|
|
51612
|
+
readonly "@type"?: string | null;
|
|
51672
51613
|
/** @description URI for the generated thumbnail. */
|
|
51673
|
-
imageUri?: string;
|
|
51614
|
+
imageUri?: string | null;
|
|
51674
51615
|
};
|
|
51675
51616
|
GenericCurrencyResponse: {
|
|
51676
51617
|
/** Format: int64 */
|
|
@@ -53927,26 +53868,6 @@ export interface components {
|
|
|
53927
53868
|
*/
|
|
53928
53869
|
vertices?: number;
|
|
53929
53870
|
} | null;
|
|
53930
|
-
/**
|
|
53931
|
-
* @description Represents metadata about the long-running operation corresponding to a
|
|
53932
|
-
* GenerateUserThumbnail request.
|
|
53933
|
-
*
|
|
53934
|
-
* This is the type of the `Operation.metadata` field in the response to
|
|
53935
|
-
* `GetOperation` requests for GenerateUserThumbnail operations.
|
|
53936
|
-
*/
|
|
53937
|
-
"OpenCloudUsers.GenerateUserThumbnailMetadata": Record<string, never>;
|
|
53938
|
-
/** @description Returns the URL for the user's avatar thumbnail. */
|
|
53939
|
-
"OpenCloudUsers.GenerateUserThumbnailResponse": {
|
|
53940
|
-
/**
|
|
53941
|
-
* @description The fully-qualified type of the packed operation response. Mirrors the
|
|
53942
|
-
* `@type` field the legacy transcoder emitted via `Any.Pack`, kept so clients
|
|
53943
|
-
* reading `response["@type"]` continue to work. Declared first so it
|
|
53944
|
-
* serializes before the payload fields.
|
|
53945
|
-
*/
|
|
53946
|
-
readonly "@type"?: string | null;
|
|
53947
|
-
/** @description URI for the generated thumbnail. */
|
|
53948
|
-
imageUri?: string | null;
|
|
53949
|
-
};
|
|
53950
53871
|
/**
|
|
53951
53872
|
* @description This resource represents a long-running operation that is the result of a
|
|
53952
53873
|
* network API call.
|
|
@@ -53964,7 +53885,7 @@ export interface components {
|
|
|
53964
53885
|
* Some services might not provide such metadata. Any method that returns a
|
|
53965
53886
|
* long-running operation should document the metadata type, if any.
|
|
53966
53887
|
*/
|
|
53967
|
-
metadata?: components["schemas"]["
|
|
53888
|
+
metadata?: components["schemas"]["GenerateUserThumbnailMetadata"] | null;
|
|
53968
53889
|
/**
|
|
53969
53890
|
* @description If the value is `false`, it means the operation is still in progress.
|
|
53970
53891
|
* If `true`, the operation is completed, and either `error` or `response` is
|
|
@@ -53983,7 +53904,7 @@ export interface components {
|
|
|
53983
53904
|
* is `TakeSnapshot()`, the inferred response type is
|
|
53984
53905
|
* `TakeSnapshotResponse`.
|
|
53985
53906
|
*/
|
|
53986
|
-
response?: components["schemas"]["
|
|
53907
|
+
response?: components["schemas"]["GenerateUserThumbnailResponse"] | null;
|
|
53987
53908
|
};
|
|
53988
53909
|
/** @description The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). */
|
|
53989
53910
|
"OpenCloudUsers.Status": {
|
|
@@ -60504,10 +60425,10 @@ export interface components {
|
|
|
60504
60425
|
"Roblox.Games.Api.Models.Response.PlayabilityStatusResponse": {
|
|
60505
60426
|
/**
|
|
60506
60427
|
* Format: int32
|
|
60507
|
-
* @description The actual playability status of the universe including the reason if unplayable ['UnplayableOtherReason' = 0, 'Playable' = 1, 'GuestProhibited' = 2, 'GameUnapproved' = 3, 'IncorrectConfiguration' = 4, 'UniverseRootPlaceIsPrivate' = 5, 'InsufficientPermissionFriendsOnly' = 6, 'InsufficientPermissionGroupOnly' = 7, 'DeviceRestricted' = 8, 'UnderReview' = 9, 'PurchaseRequired' = 10, 'AccountRestricted' = 11, 'TemporarilyUnavailable' = 12, 'PlaceHasNoPublishedVersion' = 13, 'ComplianceBlocked' = 14, 'ContextualPlayabilityRegionalAvailability' = 15, 'ContextualPlayabilityRegionalCompliance' = 16, 'ContextualPlayabilityAgeRecommendationParentalControls' = 17, 'ContextualPlayabilityExperienceBlockedParentalControls' = 18, 'ContextualPlayabilityAgeGated' = 19, 'ContextualPlayabilityUnverifiedSeventeenPlusUser' = 20, 'FiatPurchaseRequired' = 21, 'FiatPurchaseDeviceRestricted' = 22, 'ContextualPlayabilityUnrated' = 23, 'ContextualPlayabilityAgeGatedByDescriptor' = 24, 'ContextualPlayabilityGeneral' = 25, 'ContextualPlayabilityAgeCheckRequired' = 26, 'ContextualPlayabilityRequireParentApproval' = 27, 'ContextualPlayabilityCoreGated' = 28]
|
|
60428
|
+
* @description The actual playability status of the universe including the reason if unplayable ['UnplayableOtherReason' = 0, 'Playable' = 1, 'GuestProhibited' = 2, 'GameUnapproved' = 3, 'IncorrectConfiguration' = 4, 'UniverseRootPlaceIsPrivate' = 5, 'InsufficientPermissionFriendsOnly' = 6, 'InsufficientPermissionGroupOnly' = 7, 'DeviceRestricted' = 8, 'UnderReview' = 9, 'PurchaseRequired' = 10, 'AccountRestricted' = 11, 'TemporarilyUnavailable' = 12, 'PlaceHasNoPublishedVersion' = 13, 'ComplianceBlocked' = 14, 'ContextualPlayabilityRegionalAvailability' = 15, 'ContextualPlayabilityRegionalCompliance' = 16, 'ContextualPlayabilityAgeRecommendationParentalControls' = 17, 'ContextualPlayabilityExperienceBlockedParentalControls' = 18, 'ContextualPlayabilityAgeGated' = 19, 'ContextualPlayabilityUnverifiedSeventeenPlusUser' = 20, 'FiatPurchaseRequired' = 21, 'FiatPurchaseDeviceRestricted' = 22, 'ContextualPlayabilityUnrated' = 23, 'ContextualPlayabilityAgeGatedByDescriptor' = 24, 'ContextualPlayabilityGeneral' = 25, 'ContextualPlayabilityAgeCheckRequired' = 26, 'ContextualPlayabilityRequireParentApproval' = 27, 'ContextualPlayabilityCoreGated' = 28, 'ContextualPlayabilityTrustedFriendRequired' = 29]
|
|
60508
60429
|
* @enum {integer}
|
|
60509
60430
|
*/
|
|
60510
|
-
playabilityStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28;
|
|
60431
|
+
playabilityStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29;
|
|
60511
60432
|
/** @description Whether or not the universe is playable for the user */
|
|
60512
60433
|
isPlayable?: boolean;
|
|
60513
60434
|
/**
|
|
@@ -60524,6 +60445,7 @@ export interface components {
|
|
|
60524
60445
|
* Only set when PlayabilityStatus is PurchaseRequired or FiatPurchaseRequired.
|
|
60525
60446
|
*/
|
|
60526
60447
|
demoModeAvailable?: boolean;
|
|
60448
|
+
privatePlaytestInfo?: components["schemas"]["Roblox.Games.Api.Models.Response.PrivatePlaytestInfoResponse"];
|
|
60527
60449
|
};
|
|
60528
60450
|
"Roblox.Games.Api.Models.Response.PlayableUxTreatment": {
|
|
60529
60451
|
treatment?: string;
|
|
@@ -60535,6 +60457,17 @@ export interface components {
|
|
|
60535
60457
|
primaryActionText?: string;
|
|
60536
60458
|
secondaryActionText?: string;
|
|
60537
60459
|
};
|
|
60460
|
+
/** @description Private playtest eligibility for the authenticated user. */
|
|
60461
|
+
"Roblox.Games.Api.Models.Response.PrivatePlaytestInfoResponse": {
|
|
60462
|
+
/** @description Whether the user is eligible to play as a private playtester. */
|
|
60463
|
+
isPlayable?: boolean;
|
|
60464
|
+
/**
|
|
60465
|
+
* Format: int32
|
|
60466
|
+
* @description The private playtest eligibility status. ['UnplayableOtherReason' = 0, 'Playable' = 1, 'GuestProhibited' = 2, 'GameUnapproved' = 3, 'IncorrectConfiguration' = 4, 'UniverseRootPlaceIsPrivate' = 5, 'InsufficientPermissionFriendsOnly' = 6, 'InsufficientPermissionGroupOnly' = 7, 'DeviceRestricted' = 8, 'UnderReview' = 9, 'PurchaseRequired' = 10, 'AccountRestricted' = 11, 'TemporarilyUnavailable' = 12, 'PlaceHasNoPublishedVersion' = 13, 'ComplianceBlocked' = 14, 'ContextualPlayabilityRegionalAvailability' = 15, 'ContextualPlayabilityRegionalCompliance' = 16, 'ContextualPlayabilityAgeRecommendationParentalControls' = 17, 'ContextualPlayabilityExperienceBlockedParentalControls' = 18, 'ContextualPlayabilityAgeGated' = 19, 'ContextualPlayabilityUnverifiedSeventeenPlusUser' = 20, 'FiatPurchaseRequired' = 21, 'FiatPurchaseDeviceRestricted' = 22, 'ContextualPlayabilityUnrated' = 23, 'ContextualPlayabilityAgeGatedByDescriptor' = 24, 'ContextualPlayabilityGeneral' = 25, 'ContextualPlayabilityAgeCheckRequired' = 26, 'ContextualPlayabilityRequireParentApproval' = 27, 'ContextualPlayabilityCoreGated' = 28, 'ContextualPlayabilityTrustedFriendRequired' = 29]
|
|
60467
|
+
* @enum {integer}
|
|
60468
|
+
*/
|
|
60469
|
+
playabilityStatus?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29;
|
|
60470
|
+
};
|
|
60538
60471
|
"Roblox.Games.Api.Models.Response.PurchaseData": {
|
|
60539
60472
|
/** @description Fiat purchase price in a localized string for display on client. */
|
|
60540
60473
|
localizedFiatPrice?: string;
|
|
@@ -61933,10 +61866,10 @@ export interface components {
|
|
|
61933
61866
|
name?: string;
|
|
61934
61867
|
/**
|
|
61935
61868
|
* Format: int32
|
|
61936
|
-
* @description The asset type id of asset with id Roblox.Inventory.Api.V2.UserAssetItemModelV2.AssetId. ['Image' = 1, 'TShirt' = 2, 'Audio' = 3, 'Mesh' = 4, 'Lua' = 5, 'HTML' = 6, 'Text' = 7, 'Hat' = 8, 'Place' = 9, 'Model' = 10, 'Shirt' = 11, 'Pants' = 12, 'Decal' = 13, 'Avatar' = 16, 'Head' = 17, 'Face' = 18, 'Gear' = 19, 'Badge' = 21, 'GroupEmblem' = 22, 'Animation' = 24, 'Arms' = 25, 'Legs' = 26, 'Torso' = 27, 'RightArm' = 28, 'LeftArm' = 29, 'LeftLeg' = 30, 'RightLeg' = 31, 'Package' = 32, 'YouTubeVideo' = 33, 'GamePass' = 34, 'App' = 35, 'Code' = 37, 'Plugin' = 38, 'SolidModel' = 39, 'MeshPart' = 40, 'HairAccessory' = 41, 'FaceAccessory' = 42, 'NeckAccessory' = 43, 'ShoulderAccessory' = 44, 'FrontAccessory' = 45, 'BackAccessory' = 46, 'WaistAccessory' = 47, 'ClimbAnimation' = 48, 'DeathAnimation' = 49, 'FallAnimation' = 50, 'IdleAnimation' = 51, 'JumpAnimation' = 52, 'RunAnimation' = 53, 'SwimAnimation' = 54, 'WalkAnimation' = 55, 'PoseAnimation' = 56, 'LocalizationTableManifest' = 59, 'LocalizationTableTranslation' = 60, 'EmoteAnimation' = 61, 'Video' = 62, 'TexturePack' = 63, 'TShirtAccessory' = 64, 'ShirtAccessory' = 65, 'PantsAccessory' = 66, 'JacketAccessory' = 67, 'SweaterAccessory' = 68, 'ShortsAccessory' = 69, 'LeftShoeAccessory' = 70, 'RightShoeAccessory' = 71, 'DressSkirtAccessory' = 72, 'FontFamily' = 73, 'FontFace' = 74, 'MeshHiddenSurfaceRemoval' = 75, 'EyebrowAccessory' = 76, 'EyelashAccessory' = 77, 'MoodAnimation' = 78, 'DynamicHead' = 79, 'CodeSnippet' = 80, 'AdsVideo' = 81, 'OtaUpdate' = 82, 'Screenshot' = 83, 'RuntimePropertySet' = 84, 'StorePreviewVideo' = 85, 'GamePreviewVideo' = 86, 'CreatorExperienceConfig' = 87, 'FaceMakeup' = 88, 'LipMakeup' = 89, 'EyeMakeup' = 90, 'VoxelFragment' = 91, 'AvatarBackground' = 92, 'TextDocument' = 93, 'Post' = 94, 'AnimatedImage' = 95]
|
|
61869
|
+
* @description The asset type id of asset with id Roblox.Inventory.Api.V2.UserAssetItemModelV2.AssetId. ['Image' = 1, 'TShirt' = 2, 'Audio' = 3, 'Mesh' = 4, 'Lua' = 5, 'HTML' = 6, 'Text' = 7, 'Hat' = 8, 'Place' = 9, 'Model' = 10, 'Shirt' = 11, 'Pants' = 12, 'Decal' = 13, 'Avatar' = 16, 'Head' = 17, 'Face' = 18, 'Gear' = 19, 'Badge' = 21, 'GroupEmblem' = 22, 'Animation' = 24, 'Arms' = 25, 'Legs' = 26, 'Torso' = 27, 'RightArm' = 28, 'LeftArm' = 29, 'LeftLeg' = 30, 'RightLeg' = 31, 'Package' = 32, 'YouTubeVideo' = 33, 'GamePass' = 34, 'App' = 35, 'Code' = 37, 'Plugin' = 38, 'SolidModel' = 39, 'MeshPart' = 40, 'HairAccessory' = 41, 'FaceAccessory' = 42, 'NeckAccessory' = 43, 'ShoulderAccessory' = 44, 'FrontAccessory' = 45, 'BackAccessory' = 46, 'WaistAccessory' = 47, 'ClimbAnimation' = 48, 'DeathAnimation' = 49, 'FallAnimation' = 50, 'IdleAnimation' = 51, 'JumpAnimation' = 52, 'RunAnimation' = 53, 'SwimAnimation' = 54, 'WalkAnimation' = 55, 'PoseAnimation' = 56, 'LocalizationTableManifest' = 59, 'LocalizationTableTranslation' = 60, 'EmoteAnimation' = 61, 'Video' = 62, 'TexturePack' = 63, 'TShirtAccessory' = 64, 'ShirtAccessory' = 65, 'PantsAccessory' = 66, 'JacketAccessory' = 67, 'SweaterAccessory' = 68, 'ShortsAccessory' = 69, 'LeftShoeAccessory' = 70, 'RightShoeAccessory' = 71, 'DressSkirtAccessory' = 72, 'FontFamily' = 73, 'FontFace' = 74, 'MeshHiddenSurfaceRemoval' = 75, 'EyebrowAccessory' = 76, 'EyelashAccessory' = 77, 'MoodAnimation' = 78, 'DynamicHead' = 79, 'CodeSnippet' = 80, 'AdsVideo' = 81, 'OtaUpdate' = 82, 'Screenshot' = 83, 'RuntimePropertySet' = 84, 'StorePreviewVideo' = 85, 'GamePreviewVideo' = 86, 'CreatorExperienceConfig' = 87, 'FaceMakeup' = 88, 'LipMakeup' = 89, 'EyeMakeup' = 90, 'VoxelFragment' = 91, 'AvatarBackground' = 92, 'TextDocument' = 93, 'Post' = 94, 'AnimatedImage' = 95, 'ComputeFunction' = 96]
|
|
61937
61870
|
* @enum {integer}
|
|
61938
61871
|
*/
|
|
61939
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95;
|
|
61872
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96;
|
|
61940
61873
|
/**
|
|
61941
61874
|
* Format: date-time
|
|
61942
61875
|
* @description The created date time of the user asset.
|
|
@@ -62387,6 +62320,8 @@ export interface components {
|
|
|
62387
62320
|
"Roblox.LocalizationTables.Api.GetTableEntriesTranslationHistoryRequest": {
|
|
62388
62321
|
locale?: string;
|
|
62389
62322
|
entries?: components["schemas"]["Roblox.LocalizationTables.Api.CursorEntryIdentifier"][];
|
|
62323
|
+
/** @enum {string} */
|
|
62324
|
+
sourceType?: "Invalid" | "Text" | "AssetImage";
|
|
62390
62325
|
};
|
|
62391
62326
|
/** @description A response model for GetTableEntriesTranslationHistory. */
|
|
62392
62327
|
"Roblox.LocalizationTables.Api.GetTableEntriesTranslationHistoryResponse": {
|
|
@@ -62840,10 +62775,10 @@ export interface components {
|
|
|
62840
62775
|
/** @description Whether the user can trade or not. */
|
|
62841
62776
|
canTrade?: boolean;
|
|
62842
62777
|
/**
|
|
62843
|
-
* @description The trade eligibility status of the user. ['Unknown' = 0, 'Eligible' = 1, 'IneligibleTradeSystemDisabled' = 2, 'IneligibleCannotTradeWithRoblox' = 3, 'IneligibleUserNotFound' = 4, 'IneligibleMissingPremiumMembership' = 5, 'IneligibleLegalOrRegulatoryRestrictions' = 6, 'IneligibleFreeTradesLimitReached' = 7]
|
|
62778
|
+
* @description The trade eligibility status of the user. ['Unknown' = 0, 'Eligible' = 1, 'IneligibleTradeSystemDisabled' = 2, 'IneligibleCannotTradeWithRoblox' = 3, 'IneligibleUserNotFound' = 4, 'IneligibleMissingPremiumMembership' = 5, 'IneligibleLegalOrRegulatoryRestrictions' = 6, 'IneligibleFreeTradesLimitReached' = 7, 'IneligibleAgeCheckRequired' = 8]
|
|
62844
62779
|
* @enum {string}
|
|
62845
62780
|
*/
|
|
62846
|
-
tradeEligibility?: "Unknown" | "Eligible" | "IneligibleTradeSystemDisabled" | "IneligibleCannotTradeWithRoblox" | "IneligibleUserNotFound" | "IneligibleMissingPremiumMembership" | "IneligibleLegalOrRegulatoryRestrictions" | "IneligibleFreeTradesLimitReached";
|
|
62781
|
+
tradeEligibility?: "Unknown" | "Eligible" | "IneligibleTradeSystemDisabled" | "IneligibleCannotTradeWithRoblox" | "IneligibleUserNotFound" | "IneligibleMissingPremiumMembership" | "IneligibleLegalOrRegulatoryRestrictions" | "IneligibleFreeTradesLimitReached" | "IneligibleAgeCheckRequired";
|
|
62847
62782
|
freeTradesAllowance?: components["schemas"]["Roblox.Trades.Api.Models.V2.FreeTradesAllowanceResponse"];
|
|
62848
62783
|
currencyTransferEligibility?: components["schemas"]["Roblox.Trades.Api.Models.V2.CurrencyTransferEligibilityResponse"];
|
|
62849
62784
|
};
|
|
@@ -65688,63 +65623,6 @@ export interface components {
|
|
|
65688
65623
|
[key: string]: components["schemas"]["UploadThumbnailStatus"];
|
|
65689
65624
|
};
|
|
65690
65625
|
};
|
|
65691
|
-
/** @description Represents any registered user of Roblox. */
|
|
65692
|
-
User: {
|
|
65693
|
-
/**
|
|
65694
|
-
* @description The resource path of the user.
|
|
65695
|
-
*
|
|
65696
|
-
* Format: `users/{user_id}`
|
|
65697
|
-
* @example users/123
|
|
65698
|
-
*/
|
|
65699
|
-
path?: string;
|
|
65700
|
-
/**
|
|
65701
|
-
* Format: date-time
|
|
65702
|
-
* @description The timestamp at which the user was created.
|
|
65703
|
-
* @example 2023-07-05T12:34:56Z
|
|
65704
|
-
*/
|
|
65705
|
-
readonly createTime?: string;
|
|
65706
|
-
/**
|
|
65707
|
-
* @description Unique ID that identifies a user in Roblox.
|
|
65708
|
-
* @example 123456
|
|
65709
|
-
*/
|
|
65710
|
-
readonly id?: string;
|
|
65711
|
-
/**
|
|
65712
|
-
* @description Unique username for a user in Roblox.
|
|
65713
|
-
* @example exampleUser
|
|
65714
|
-
*/
|
|
65715
|
-
name?: string;
|
|
65716
|
-
/**
|
|
65717
|
-
* @description Display name for the user.
|
|
65718
|
-
* @example userDefinedName
|
|
65719
|
-
*/
|
|
65720
|
-
displayName?: string;
|
|
65721
|
-
/**
|
|
65722
|
-
* @description User-defined information about themselves.
|
|
65723
|
-
* @example Example User's bio
|
|
65724
|
-
*/
|
|
65725
|
-
about?: string;
|
|
65726
|
-
/**
|
|
65727
|
-
* @description Current locale selected by the user. Returns IETF language code.
|
|
65728
|
-
* @example en-US
|
|
65729
|
-
*/
|
|
65730
|
-
locale?: string;
|
|
65731
|
-
/**
|
|
65732
|
-
* @description Whether the user is a premium user.
|
|
65733
|
-
* @example true
|
|
65734
|
-
*/
|
|
65735
|
-
readonly premium?: boolean;
|
|
65736
|
-
/**
|
|
65737
|
-
* @description Specifies if the user is identity-verified. Verification includes, but
|
|
65738
|
-
* isn't limited to, non-VoIP phone numbers or government IDs.
|
|
65739
|
-
*
|
|
65740
|
-
* To access this data, you need an API key / OAuth token with the following
|
|
65741
|
-
* scope: user.advanced:read
|
|
65742
|
-
* @example true
|
|
65743
|
-
*/
|
|
65744
|
-
readonly idVerified?: boolean;
|
|
65745
|
-
/** @description User's social network profiles and visibility. */
|
|
65746
|
-
socialNetworkProfiles?: components["schemas"]["User_SocialNetworkProfiles"];
|
|
65747
|
-
};
|
|
65748
65626
|
UserGameVoteRequest: {
|
|
65749
65627
|
vote?: boolean | null;
|
|
65750
65628
|
};
|
|
@@ -66051,40 +65929,6 @@ export interface components {
|
|
|
66051
65929
|
*/
|
|
66052
65930
|
readonly inherited?: boolean;
|
|
66053
65931
|
};
|
|
66054
|
-
/** @description Social network profiles of a user. */
|
|
66055
|
-
User_SocialNetworkProfiles: {
|
|
66056
|
-
/** @description Facebook profile URI. */
|
|
66057
|
-
facebook?: string;
|
|
66058
|
-
/** @description Twitter profile URI. */
|
|
66059
|
-
twitter?: string;
|
|
66060
|
-
/** @description YouTube profile URI. */
|
|
66061
|
-
youtube?: string;
|
|
66062
|
-
/** @description Twitch profile URI. */
|
|
66063
|
-
twitch?: string;
|
|
66064
|
-
/** @description Guilded profile URI. */
|
|
66065
|
-
guilded?: string;
|
|
66066
|
-
/**
|
|
66067
|
-
* Format: enum
|
|
66068
|
-
* @description Visibility of the social network profiles.
|
|
66069
|
-
*
|
|
66070
|
-
* To access this data, you need an API key / OAuth token with the following
|
|
66071
|
-
* scope: user.social:read
|
|
66072
|
-
*
|
|
66073
|
-
* Possible values:
|
|
66074
|
-
*
|
|
66075
|
-
* | Value | Description |
|
|
66076
|
-
* | --- | --- |
|
|
66077
|
-
* | SOCIAL_NETWORK_VISIBILITY_UNSPECIFIED | Default SocialNetworkVisibility. |
|
|
66078
|
-
* | NO_ONE | No one |
|
|
66079
|
-
* | FRIENDS | Friends only |
|
|
66080
|
-
* | FRIENDS_AND_FOLLOWING | Friends and other users the user follows |
|
|
66081
|
-
* | FRIENDS_FOLLOWING_AND_FOLLOWERS | Friends, other users the user follows, and other users who follow the user |
|
|
66082
|
-
* | EVERYONE | Everyone |
|
|
66083
|
-
* @example SOCIAL_NETWORK_VISIBILITY_UNSPECIFIED
|
|
66084
|
-
* @enum {string}
|
|
66085
|
-
*/
|
|
66086
|
-
visibility?: "SOCIAL_NETWORK_VISIBILITY_UNSPECIFIED" | "NO_ONE" | "FRIENDS" | "FRIENDS_AND_FOLLOWING" | "FRIENDS_FOLLOWING_AND_FOLLOWERS" | "EVERYONE";
|
|
66087
|
-
};
|
|
66088
65932
|
/** @description Metadata shared by every experiment variant. */
|
|
66089
65933
|
VariantMeta: {
|
|
66090
65934
|
/**
|
|
@@ -69948,29 +69792,6 @@ export interface operations {
|
|
|
69948
69792
|
};
|
|
69949
69793
|
};
|
|
69950
69794
|
Cloud_GetUser: {
|
|
69951
|
-
parameters: {
|
|
69952
|
-
query?: never;
|
|
69953
|
-
header?: never;
|
|
69954
|
-
path: {
|
|
69955
|
-
/** @description The user ID. */
|
|
69956
|
-
user_id: string;
|
|
69957
|
-
};
|
|
69958
|
-
cookie?: never;
|
|
69959
|
-
};
|
|
69960
|
-
requestBody?: never;
|
|
69961
|
-
responses: {
|
|
69962
|
-
/** @description OK */
|
|
69963
|
-
200: {
|
|
69964
|
-
headers: {
|
|
69965
|
-
[name: string]: unknown;
|
|
69966
|
-
};
|
|
69967
|
-
content: {
|
|
69968
|
-
"application/json": components["schemas"]["User"];
|
|
69969
|
-
};
|
|
69970
|
-
};
|
|
69971
|
-
};
|
|
69972
|
-
};
|
|
69973
|
-
"OpenCloudUsers.Cloud_GetUser": {
|
|
69974
69795
|
parameters: {
|
|
69975
69796
|
query?: never;
|
|
69976
69797
|
header?: never;
|
|
@@ -70114,31 +69935,6 @@ export interface operations {
|
|
|
70114
69935
|
};
|
|
70115
69936
|
};
|
|
70116
69937
|
Cloud_GetUserThumbnailGenerationOperation: {
|
|
70117
|
-
parameters: {
|
|
70118
|
-
query?: never;
|
|
70119
|
-
header?: never;
|
|
70120
|
-
path: {
|
|
70121
|
-
/** @description The user ID. */
|
|
70122
|
-
user_id: string;
|
|
70123
|
-
/** @description The operation ID. */
|
|
70124
|
-
operation_id: string;
|
|
70125
|
-
};
|
|
70126
|
-
cookie?: never;
|
|
70127
|
-
};
|
|
70128
|
-
requestBody?: never;
|
|
70129
|
-
responses: {
|
|
70130
|
-
/** @description OK */
|
|
70131
|
-
200: {
|
|
70132
|
-
headers: {
|
|
70133
|
-
[name: string]: unknown;
|
|
70134
|
-
};
|
|
70135
|
-
content: {
|
|
70136
|
-
"application/json": components["schemas"]["OCV2.Operations.Operation"];
|
|
70137
|
-
};
|
|
70138
|
-
};
|
|
70139
|
-
};
|
|
70140
|
-
};
|
|
70141
|
-
"OpenCloudUsers.Cloud_GetUserThumbnailGenerationOperation": {
|
|
70142
69938
|
parameters: {
|
|
70143
69939
|
query?: never;
|
|
70144
69940
|
header?: never;
|
|
@@ -70164,63 +69960,6 @@ export interface operations {
|
|
|
70164
69960
|
};
|
|
70165
69961
|
};
|
|
70166
69962
|
Cloud_GenerateUserThumbnail: {
|
|
70167
|
-
parameters: {
|
|
70168
|
-
query?: {
|
|
70169
|
-
/**
|
|
70170
|
-
* @description Size of the generated thumbnail. The generated thumbnail will have `size *
|
|
70171
|
-
* size` dimension.
|
|
70172
|
-
*
|
|
70173
|
-
* Currently supported values:
|
|
70174
|
-
* 48, 50, 60, 75, 100, 110, 150, 180, 352, 420, 720
|
|
70175
|
-
* Default is 420.
|
|
70176
|
-
*/
|
|
70177
|
-
size?: number;
|
|
70178
|
-
/**
|
|
70179
|
-
* @description Specify the format of the generated thumbnail. Default is `PNG`.
|
|
70180
|
-
*
|
|
70181
|
-
* Possible values:
|
|
70182
|
-
*
|
|
70183
|
-
* | Value | Description |
|
|
70184
|
-
* | --- | --- |
|
|
70185
|
-
* | FORMAT_UNSPECIFIED | Default UserThumbnail Format -- set to png |
|
|
70186
|
-
* | PNG | Generate thumbnail in `.png` format |
|
|
70187
|
-
* | JPEG | Generate thumbnail in `.jpg` format |
|
|
70188
|
-
*/
|
|
70189
|
-
format?: "FORMAT_UNSPECIFIED" | "PNG" | "JPEG";
|
|
70190
|
-
/**
|
|
70191
|
-
* @description Specify the shape of the thumbnail. Default is `ROUND` (circular).
|
|
70192
|
-
*
|
|
70193
|
-
* Possible values:
|
|
70194
|
-
*
|
|
70195
|
-
* | Value | Description |
|
|
70196
|
-
* | --- | --- |
|
|
70197
|
-
* | SHAPE_UNSPECIFIED | Default UserThumbnail Shape -- set to round |
|
|
70198
|
-
* | ROUND | Generate thumbnail as a circle. |
|
|
70199
|
-
* | SQUARE | Generate thumbnail as a rectangle. |
|
|
70200
|
-
*/
|
|
70201
|
-
shape?: "SHAPE_UNSPECIFIED" | "ROUND" | "SQUARE";
|
|
70202
|
-
};
|
|
70203
|
-
header?: never;
|
|
70204
|
-
path: {
|
|
70205
|
-
/** @description The user ID. */
|
|
70206
|
-
user_id: string;
|
|
70207
|
-
};
|
|
70208
|
-
cookie?: never;
|
|
70209
|
-
};
|
|
70210
|
-
requestBody?: never;
|
|
70211
|
-
responses: {
|
|
70212
|
-
/** @description OK */
|
|
70213
|
-
200: {
|
|
70214
|
-
headers: {
|
|
70215
|
-
[name: string]: unknown;
|
|
70216
|
-
};
|
|
70217
|
-
content: {
|
|
70218
|
-
"application/json": components["schemas"]["Operation"];
|
|
70219
|
-
};
|
|
70220
|
-
};
|
|
70221
|
-
};
|
|
70222
|
-
};
|
|
70223
|
-
"OpenCloudUsers.Cloud_GenerateUserThumbnail": {
|
|
70224
69963
|
parameters: {
|
|
70225
69964
|
query?: {
|
|
70226
69965
|
/**
|