@jacobhumston/roblox-openapi-ts 1.0.37 → 1.0.38
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 +57 -52
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -21221,8 +21221,8 @@ export interface paths {
|
|
|
21221
21221
|
[name: string]: unknown;
|
|
21222
21222
|
};
|
|
21223
21223
|
content: {
|
|
21224
|
-
"application/json": components["schemas"]["Roblox.Groups.Api.GroupDetailResponse"];
|
|
21225
|
-
"text/json": components["schemas"]["Roblox.Groups.Api.GroupDetailResponse"];
|
|
21224
|
+
"application/json": components["schemas"]["GroupsApi.Roblox.Groups.Api.GroupDetailResponse"];
|
|
21225
|
+
"text/json": components["schemas"]["GroupsApi.Roblox.Groups.Api.GroupDetailResponse"];
|
|
21226
21226
|
};
|
|
21227
21227
|
};
|
|
21228
21228
|
/** @description 1: Group is invalid or does not exist. */
|
|
@@ -45859,6 +45859,51 @@ export interface components {
|
|
|
45859
45859
|
*/
|
|
45860
45860
|
bypassSlowMode?: boolean;
|
|
45861
45861
|
};
|
|
45862
|
+
/** @description A detailed group response model */
|
|
45863
|
+
"GroupsApi.Roblox.Groups.Api.GroupDetailResponse": {
|
|
45864
|
+
/**
|
|
45865
|
+
* Format: int64
|
|
45866
|
+
* @description The group id
|
|
45867
|
+
*/
|
|
45868
|
+
id?: number;
|
|
45869
|
+
/** @description The group name */
|
|
45870
|
+
name?: string;
|
|
45871
|
+
/** @description The group description */
|
|
45872
|
+
description?: string;
|
|
45873
|
+
owner?: components["schemas"]["Roblox.Groups.Api.Models.Response.UserModel"];
|
|
45874
|
+
shout?: components["schemas"]["Roblox.Groups.Api.ShoutResponse"];
|
|
45875
|
+
/**
|
|
45876
|
+
* Format: int32
|
|
45877
|
+
* @description The number of members in the group
|
|
45878
|
+
*/
|
|
45879
|
+
memberCount?: number;
|
|
45880
|
+
/** @description Whether the group is Builders Club only */
|
|
45881
|
+
isBuildersClubOnly?: boolean;
|
|
45882
|
+
/** @description Whether the group is public (no approval required) */
|
|
45883
|
+
publicEntryAllowed?: boolean;
|
|
45884
|
+
/** @description Whether the group is locked */
|
|
45885
|
+
isLocked?: boolean;
|
|
45886
|
+
/** @description Whether the group has a verified badge. */
|
|
45887
|
+
hasVerifiedBadge?: boolean;
|
|
45888
|
+
/**
|
|
45889
|
+
* @description Whether the group has social modules enabled (e.g. Forums)
|
|
45890
|
+
* (determines if "Followers" vs "Members" should be shown).
|
|
45891
|
+
*/
|
|
45892
|
+
hasSocialModules?: boolean;
|
|
45893
|
+
communityTier?: components["schemas"]["GroupsApi.Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
45894
|
+
};
|
|
45895
|
+
"GroupsApi.Roblox.Groups.Client.CommunityTierInfoResponse": {
|
|
45896
|
+
/** Format: int64 */
|
|
45897
|
+
groupId?: number;
|
|
45898
|
+
/** Format: int32 */
|
|
45899
|
+
currentTier?: number;
|
|
45900
|
+
/** Format: int32 */
|
|
45901
|
+
previousTier?: number;
|
|
45902
|
+
/** Format: date-time */
|
|
45903
|
+
tierUpdatedTime?: string;
|
|
45904
|
+
/** Format: date-time */
|
|
45905
|
+
lastEvaluatedTime?: string;
|
|
45906
|
+
};
|
|
45862
45907
|
HomepageThumbnail: {
|
|
45863
45908
|
homepageThumbnailId: string;
|
|
45864
45909
|
/** Format: int64 */
|
|
@@ -50670,6 +50715,11 @@ export interface components {
|
|
|
50670
50715
|
oldNotificationToken?: string;
|
|
50671
50716
|
/** @description Name of the requesting device */
|
|
50672
50717
|
deviceName?: string;
|
|
50718
|
+
/**
|
|
50719
|
+
* @description True when the client granted iOS provisional authorization (silent, quiet-only)
|
|
50720
|
+
* rather than full authorization. Absent/null is treated as not provisional.
|
|
50721
|
+
*/
|
|
50722
|
+
isProvisional?: boolean;
|
|
50673
50723
|
};
|
|
50674
50724
|
"Roblox.Api.Notifications.Models.RegisterIOSPushKitRequestModel": {
|
|
50675
50725
|
/** @description Token for notification */
|
|
@@ -53147,39 +53197,6 @@ export interface components {
|
|
|
53147
53197
|
/** @description The new description returned */
|
|
53148
53198
|
newDescription?: string;
|
|
53149
53199
|
};
|
|
53150
|
-
/** @description A detailed group response model */
|
|
53151
|
-
"Roblox.Groups.Api.GroupDetailResponse": {
|
|
53152
|
-
/**
|
|
53153
|
-
* Format: int64
|
|
53154
|
-
* @description The group id
|
|
53155
|
-
*/
|
|
53156
|
-
id?: number;
|
|
53157
|
-
/** @description The group name */
|
|
53158
|
-
name?: string;
|
|
53159
|
-
/** @description The group description */
|
|
53160
|
-
description?: string;
|
|
53161
|
-
owner?: components["schemas"]["Roblox.Groups.Api.Models.Response.UserModel"];
|
|
53162
|
-
shout?: components["schemas"]["Roblox.Groups.Api.ShoutResponse"];
|
|
53163
|
-
/**
|
|
53164
|
-
* Format: int32
|
|
53165
|
-
* @description The number of members in the group
|
|
53166
|
-
*/
|
|
53167
|
-
memberCount?: number;
|
|
53168
|
-
/** @description Whether the group is Builders Club only */
|
|
53169
|
-
isBuildersClubOnly?: boolean;
|
|
53170
|
-
/** @description Whether the group is public (no approval required) */
|
|
53171
|
-
publicEntryAllowed?: boolean;
|
|
53172
|
-
/** @description Whether the group is locked */
|
|
53173
|
-
isLocked?: boolean;
|
|
53174
|
-
/** @description Whether the group has a verified badge. */
|
|
53175
|
-
hasVerifiedBadge?: boolean;
|
|
53176
|
-
/**
|
|
53177
|
-
* @description Whether the group has social modules enabled (e.g. Forums)
|
|
53178
|
-
* (determines if "Followers" vs "Members" should be shown).
|
|
53179
|
-
*/
|
|
53180
|
-
hasSocialModules?: boolean;
|
|
53181
|
-
communityTier?: components["schemas"]["Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
53182
|
-
};
|
|
53183
53200
|
/** @description A model representing data about an Roblox.Platform.Membership.IUser */
|
|
53184
53201
|
"Roblox.Groups.Api.GroupEconomyPermissionsModel": {
|
|
53185
53202
|
/** @description Spend group funds permission */
|
|
@@ -53262,7 +53279,7 @@ export interface components {
|
|
|
53262
53279
|
};
|
|
53263
53280
|
/** @description A group membership response model */
|
|
53264
53281
|
"Roblox.Groups.Api.GroupMembershipDetailResponse": {
|
|
53265
|
-
group?: components["schemas"]["Roblox.Groups.Api.GroupDetailResponse"];
|
|
53282
|
+
group?: components["schemas"]["GroupsApi.Roblox.Groups.Api.GroupDetailResponse"];
|
|
53266
53283
|
role?: components["schemas"]["Roblox.Groups.Api.GroupRoleResponse"];
|
|
53267
53284
|
/** @description Whether the group is the user's Primary Group */
|
|
53268
53285
|
isPrimaryGroup?: boolean;
|
|
@@ -53432,7 +53449,7 @@ export interface components {
|
|
|
53432
53449
|
*/
|
|
53433
53450
|
totalGroupCount?: number;
|
|
53434
53451
|
/** @description The related or requested groups */
|
|
53435
|
-
relatedGroups?: components["schemas"]["Roblox.Groups.Api.GroupDetailResponse"][];
|
|
53452
|
+
relatedGroups?: components["schemas"]["GroupsApi.Roblox.Groups.Api.GroupDetailResponse"][];
|
|
53436
53453
|
/**
|
|
53437
53454
|
* Format: int64
|
|
53438
53455
|
* @description The index for the next page of related groups
|
|
@@ -53598,7 +53615,7 @@ export interface components {
|
|
|
53598
53615
|
* Null when the value could not be determined.
|
|
53599
53616
|
*/
|
|
53600
53617
|
isAutoAssignRoleDisabled?: boolean;
|
|
53601
|
-
communityTier?: components["schemas"]["Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
53618
|
+
communityTier?: components["schemas"]["GroupsApi.Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
53602
53619
|
};
|
|
53603
53620
|
/** @description A group roles response model */
|
|
53604
53621
|
"Roblox.Groups.Api.GroupsDisplayOptionsResponse": {
|
|
@@ -54074,18 +54091,6 @@ export interface components {
|
|
|
54074
54091
|
/** Format: date-time */
|
|
54075
54092
|
updatedAt?: string;
|
|
54076
54093
|
};
|
|
54077
|
-
"Roblox.Groups.Client.CommunityTierInfoResponse": {
|
|
54078
|
-
/** Format: int64 */
|
|
54079
|
-
groupId?: number;
|
|
54080
|
-
/** Format: int32 */
|
|
54081
|
-
currentTier?: number;
|
|
54082
|
-
/** Format: int32 */
|
|
54083
|
-
previousTier?: number;
|
|
54084
|
-
/** Format: date-time */
|
|
54085
|
-
tierUpdatedTime?: string;
|
|
54086
|
-
/** Format: date-time */
|
|
54087
|
-
lastEvaluatedTime?: string;
|
|
54088
|
-
};
|
|
54089
54094
|
"Roblox.Groups.Client.CreateBlockedKeywordsResponse": {
|
|
54090
54095
|
createdKeywords?: components["schemas"]["Roblox.Groups.Client.BlockedKeywordModel"][];
|
|
54091
54096
|
hadModeratedKeywords?: boolean;
|
|
@@ -54110,7 +54115,7 @@ export interface components {
|
|
|
54110
54115
|
contentId?: string;
|
|
54111
54116
|
};
|
|
54112
54117
|
"Roblox.Groups.Client.TierEvaluationResultResponse": {
|
|
54113
|
-
tierInfo?: components["schemas"]["Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
54118
|
+
tierInfo?: components["schemas"]["GroupsApi.Roblox.Groups.Client.CommunityTierInfoResponse"];
|
|
54114
54119
|
passedSignals?: string[];
|
|
54115
54120
|
};
|
|
54116
54121
|
"Roblox.InGameContentTables.Client.GameLocation": {
|
|
@@ -56326,7 +56331,7 @@ export interface components {
|
|
|
56326
56331
|
data?: components["schemas"]["Roblox.Games.Api.Models.Response.GameProductResponse"][];
|
|
56327
56332
|
};
|
|
56328
56333
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Groups.Api.GroupDetailResponse_": {
|
|
56329
|
-
data?: components["schemas"]["Roblox.Groups.Api.GroupDetailResponse"][];
|
|
56334
|
+
data?: components["schemas"]["GroupsApi.Roblox.Groups.Api.GroupDetailResponse"][];
|
|
56330
56335
|
};
|
|
56331
56336
|
"Roblox.Web.WebAPI.Models.ApiArrayResponse_Roblox.Groups.Api.GroupMembershipDetailResponse_": {
|
|
56332
56337
|
data?: components["schemas"]["Roblox.Groups.Api.GroupMembershipDetailResponse"][];
|