@rbxts/types 1.0.891 → 1.0.892

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.
@@ -192,6 +192,7 @@ interface Services {
192
192
  StudioPublishService: StudioPublishService;
193
193
  StudioScriptDebugEventListener: StudioScriptDebugEventListener;
194
194
  StudioSdkService: StudioSdkService;
195
+ StudioTestService: StudioTestService;
195
196
  StudioUserService: StudioUserService;
196
197
  StudioWidgetsService: StudioWidgetsService;
197
198
  StylingService: StylingService;
@@ -428,6 +429,7 @@ interface CreatableInstances {
428
429
  Pose: Pose;
429
430
  PrismaticConstraint: PrismaticConstraint;
430
431
  ProximityPrompt: ProximityPrompt;
432
+ PyramidHandleAdornment: PyramidHandleAdornment;
431
433
  RayValue: RayValue;
432
434
  RelativeGui: RelativeGui;
433
435
  RemoteEvent: RemoteEvent;
@@ -801,6 +803,8 @@ interface AnimationNode extends RBXObject {
801
803
  readonly _nominal_AnimationNode: unique symbol;
802
804
  }
803
805
  /**
806
+ * A class which defines a piece of content, such as a screnshot or video, taken in-experience.
807
+ *
804
808
  * - **Tags**: NotCreatable, NotReplicated
805
809
  *
806
810
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Capture)
@@ -851,6 +855,8 @@ interface Capture extends RBXObject {
851
855
  readonly SourceUniverseId: number;
852
856
  }
853
857
  /**
858
+ * A child class of `Capture` for screenshots.
859
+ *
854
860
  * - **Tags**: NotCreatable, NotReplicated
855
861
  *
856
862
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScreenshotCapture)
@@ -866,6 +872,8 @@ interface ScreenshotCapture extends Capture {
866
872
  readonly _nominal_ScreenshotCapture: unique symbol;
867
873
  }
868
874
  /**
875
+ * A child class of `Capture` for videos.
876
+ *
869
877
  * - **Tags**: NotCreatable, NotReplicated
870
878
  *
871
879
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
@@ -2384,12 +2392,6 @@ interface Instance extends RBXObject {
2384
2392
  * @returns The full name of the `Instance`.
2385
2393
  */
2386
2394
  GetFullName(this: Instance): string;
2387
- /**
2388
- * - **ThreadSafety**: Unsafe
2389
- *
2390
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetPredictionMode)
2391
- */
2392
- GetPredictionMode(this: Instance): Enum.PredictionMode;
2393
2395
  /**
2394
2396
  * Returns the styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
2395
2397
  *
@@ -2451,12 +2453,6 @@ interface Instance extends RBXObject {
2451
2453
  * @returns True if the `Instance` is a descendant of the given ancestor.
2452
2454
  */
2453
2455
  IsDescendantOf(this: Instance, ancestor: Instance): boolean;
2454
- /**
2455
- * - **ThreadSafety**: Unsafe
2456
- *
2457
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsPredicted)
2458
- */
2459
- IsPredicted(this: Instance): boolean;
2460
2456
  /**
2461
2457
  * Returns `true` if the value stored in the specified property is not equal to the code-instantiated default.
2462
2458
  *
@@ -2509,12 +2505,6 @@ interface Instance extends RBXObject {
2509
2505
  * @param value The value to set the specified attribute to.
2510
2506
  */
2511
2507
  SetAttribute(this: Instance, attribute: string, value: AttributeValue | undefined): void;
2512
- /**
2513
- * - **ThreadSafety**: Unsafe
2514
- *
2515
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#SetPredictionMode)
2516
- */
2517
- SetPredictionMode(this: Instance, mode: CastsToEnum<Enum.PredictionMode>): void;
2518
2508
  /**
2519
2509
  * Returns the child of the `Instance` with the given name. If the child does not exist, it will yield the current thread until it does.
2520
2510
  *
@@ -10203,6 +10193,9 @@ interface CaptureService extends Instance {
10203
10193
  * - **Tags**: Yields
10204
10194
  *
10205
10195
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptCaptureGalleryPermissionAsync)
10196
+ * @param this A service which provides control over screenshot and video capture features.
10197
+ * @param captureGalleryPermission An `CaptureGalleryPermission` representing the type of access for which the user will be prompted.
10198
+ * @returns A boolean representing whether or not the user has allowed access to their captures.
10206
10199
  */
10207
10200
  PromptCaptureGalleryPermissionAsync(this: CaptureService, captureGalleryPermission: CastsToEnum<Enum.CaptureGalleryPermission>): boolean;
10208
10201
  /**
@@ -10210,6 +10203,9 @@ interface CaptureService extends Instance {
10210
10203
  * - **Tags**: Yields
10211
10204
  *
10212
10205
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#ReadCapturesFromGalleryAsync)
10206
+ * @param this A service which provides control over screenshot and video capture features.
10207
+ * @param captureTypeFilters An array of `CaptureType`.
10208
+ * @returns Tuple of (result: `ReadCapturesFromGalleryResult`, capturesPages: `CapturesPages`)
10213
10209
  */
10214
10210
  ReadCapturesFromGalleryAsync(this: CaptureService, captureTypeFilters?: Array<unknown>): unknown;
10215
10211
  /**
@@ -10229,6 +10225,9 @@ interface CaptureService extends Instance {
10229
10225
  * - **Tags**: Yields
10230
10226
  *
10231
10227
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#UploadCaptureAsync)
10228
+ * @param this A service which provides control over screenshot and video capture features.
10229
+ * @param capture a capture object of type `Capture`
10230
+ * @returns Tuple of (result: `UploadCaptureResult`, assetId: `number`)
10232
10231
  */
10233
10232
  UploadCaptureAsync(this: CaptureService, capture: Capture): unknown;
10234
10233
  /**
@@ -15833,7 +15832,7 @@ interface FaceControls extends Instance {
15833
15832
  readonly _nominal_FaceControls: unique symbol;
15834
15833
  }
15835
15834
  /**
15836
- * The FaceInstance class is an abstract class from which the `Decal` class inherits.
15835
+ * An abstract class from which the `Decal` and `Texture` classes inherit.
15837
15836
  *
15838
15837
  * - **Tags**: NotCreatable, NotBrowsable
15839
15838
  *
@@ -15849,7 +15848,7 @@ interface FaceInstance extends Instance {
15849
15848
  */
15850
15849
  readonly _nominal_FaceInstance: unique symbol;
15851
15850
  /**
15852
- * Sets what face of the brick the object appears on.
15851
+ * Sets which face of the parent `BasePart` the object appears on.
15853
15852
  *
15854
15853
  * - **ThreadSafety**: ReadSafe
15855
15854
  *
@@ -15858,7 +15857,7 @@ interface FaceInstance extends Instance {
15858
15857
  Face: Enum.NormalId;
15859
15858
  }
15860
15859
  /**
15861
- * The Decal object is an object which applies an image to a face of a `BasePart`.
15860
+ * Applies an image texture to a face of a parent `BasePart`.
15862
15861
  *
15863
15862
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal)
15864
15863
  */
@@ -15880,6 +15879,8 @@ interface Decal extends FaceInstance {
15880
15879
  */
15881
15880
  Color3: Color3;
15882
15881
  /**
15882
+ * Content ID that determines the color and opacity of the surface.
15883
+ *
15883
15884
  * - **ThreadSafety**: ReadSafe
15884
15885
  * - **Tags**: NotReplicated
15885
15886
  *
@@ -15887,6 +15888,8 @@ interface Decal extends FaceInstance {
15887
15888
  */
15888
15889
  ColorMap: ContentId;
15889
15890
  /**
15891
+ * `Content` object that determines the color and opacity of the surface.
15892
+ *
15890
15893
  * - **ThreadSafety**: ReadSafe
15891
15894
  * - **Tags**: NotReplicated
15892
15895
  *
@@ -15894,7 +15897,7 @@ interface Decal extends FaceInstance {
15894
15897
  */
15895
15898
  ColorMapContent: Content;
15896
15899
  /**
15897
- * Acts as a multiplier for the decal's `Decal.Transparency` property. The effects are only visible to the local player.
15900
+ * Acts as a multiplier for the decal's `Transparency` property. The effects are only visible to the local player.
15898
15901
  *
15899
15902
  * - **ThreadSafety**: ReadSafe
15900
15903
  * - **Tags**: Hidden, NotReplicated
@@ -15932,7 +15935,7 @@ interface Decal extends FaceInstance {
15932
15935
  */
15933
15936
  Shiny: number;
15934
15937
  /**
15935
- * **Deprecated:** This property no longer functions correctly and is deprecated. It should not be used in new work. Developers looking to alter how light interacts with images applied to parts should use `SurfaceGuis`.
15938
+ * **Deprecated:** This property no longer functions correctly and is deprecated. It should not be used in new work.
15936
15939
  *
15937
15940
  * - **ThreadSafety**: ReadSafe
15938
15941
  * - **Tags**: NotReplicated
@@ -15943,7 +15946,7 @@ interface Decal extends FaceInstance {
15943
15946
  */
15944
15947
  Specular: number;
15945
15948
  /**
15946
- * The ContentId of the image to be applied by the `Decal`.
15949
+ * The content ID of the image to be applied by the `Decal`.
15947
15950
  *
15948
15951
  * - **ThreadSafety**: ReadSafe
15949
15952
  *
@@ -15951,7 +15954,7 @@ interface Decal extends FaceInstance {
15951
15954
  */
15952
15955
  Texture: ContentId;
15953
15956
  /**
15954
- * The texture content displayed by the Decal. Supports [asset URIs](../../../projects/assets/index.md#asset-uris) and `EditableImage` objects.
15957
+ * The texture content displayed by the `Decal`.
15955
15958
  *
15956
15959
  * - **ThreadSafety**: ReadSafe
15957
15960
  *
@@ -15959,7 +15962,7 @@ interface Decal extends FaceInstance {
15959
15962
  */
15960
15963
  TextureContent: Content;
15961
15964
  /**
15962
- * Determines the transparency of the `Decal` with 0 being completely opaque and 1 completely transparent.
15965
+ * Determines the transparency of the `Decal`.
15963
15966
  *
15964
15967
  * - **ThreadSafety**: ReadSafe
15965
15968
  *
@@ -15967,19 +15970,23 @@ interface Decal extends FaceInstance {
15967
15970
  */
15968
15971
  Transparency: number;
15969
15972
  /**
15973
+ * Shifts the UV coordinates by adding an offset before texture mapping.
15974
+ *
15970
15975
  * - **ThreadSafety**: ReadSafe
15971
15976
  *
15972
15977
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#UVOffset)
15973
15978
  */
15974
15979
  UVOffset: Vector2;
15975
15980
  /**
15981
+ * Stretches or compresses the UV coordinates by multiplying a scale factor.
15982
+ *
15976
15983
  * - **ThreadSafety**: ReadSafe
15977
15984
  *
15978
15985
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#UVScale)
15979
15986
  */
15980
15987
  UVScale: Vector2;
15981
15988
  /**
15982
- * Determines the rendering order when multiple Decals are assigned the same face.
15989
+ * Determines the rendering order when multiple decals are assigned the same face.
15983
15990
  *
15984
15991
  * - **ThreadSafety**: ReadSafe
15985
15992
  *
@@ -15988,7 +15995,7 @@ interface Decal extends FaceInstance {
15988
15995
  ZIndex: number;
15989
15996
  }
15990
15997
  /**
15991
- * A Texture object applies a repeating texture to the face of a `BasePart`.
15998
+ * Applies a repeating image texture to the face of a parent `BasePart`.
15992
15999
  *
15993
16000
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Texture)
15994
16001
  */
@@ -17058,6 +17065,13 @@ interface GroupService extends Instance {
17058
17065
  * @returns An array of dictionaries containing information on the group's the `Player` is a member of.
17059
17066
  */
17060
17067
  GetGroupsAsync(this: GroupService, userId: number): Array<GetGroupsAsyncResult>;
17068
+ /**
17069
+ * - **ThreadSafety**: Unsafe
17070
+ * - **Tags**: Yields
17071
+ *
17072
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GroupService#PromptJoinAsync)
17073
+ */
17074
+ PromptJoinAsync(this: GroupService, groupId: number): Enum.GroupMembershipStatus;
17061
17075
  }
17062
17076
  /**
17063
17077
  * GuiBase is an abstract class which most graphical user interface objects inherit from.
@@ -20397,6 +20411,43 @@ interface LineHandleAdornment extends HandleAdornment {
20397
20411
  */
20398
20412
  Thickness: number;
20399
20413
  }
20414
+ /**
20415
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
20416
+ */
20417
+ interface PyramidHandleAdornment extends HandleAdornment {
20418
+ /**
20419
+ * **DO NOT USE!**
20420
+ *
20421
+ * This field exists to force TypeScript to recognize this as a nominal type
20422
+ * @hidden
20423
+ * @deprecated
20424
+ */
20425
+ readonly _nominal_PyramidHandleAdornment: unique symbol;
20426
+ /**
20427
+ * - **ThreadSafety**: ReadSafe
20428
+ *
20429
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Height)
20430
+ */
20431
+ Height: number;
20432
+ /**
20433
+ * - **ThreadSafety**: ReadSafe
20434
+ *
20435
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Shading)
20436
+ */
20437
+ Shading: Enum.AdornShading;
20438
+ /**
20439
+ * - **ThreadSafety**: ReadSafe
20440
+ *
20441
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Sides)
20442
+ */
20443
+ Sides: number;
20444
+ /**
20445
+ * - **ThreadSafety**: ReadSafe
20446
+ *
20447
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Size)
20448
+ */
20449
+ Size: number;
20450
+ }
20400
20451
  /**
20401
20452
  * The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
20402
20453
  *
@@ -27170,6 +27221,13 @@ interface MarketplaceService extends Instance {
27170
27221
  * @returns Indicates whether the given player's inventory contains the given bundle.
27171
27222
  */
27172
27223
  PlayerOwnsBundle(this: MarketplaceService, player: Player, bundleId: number): boolean;
27224
+ /**
27225
+ * - **ThreadSafety**: Unsafe
27226
+ * - **Tags**: Yields
27227
+ *
27228
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#RankProductsAsync)
27229
+ */
27230
+ RankProductsAsync(this: MarketplaceService, productIdentifiers: Array<unknown>): Array<unknown>;
27173
27231
  /**
27174
27232
  * - **ThreadSafety**: Unsafe
27175
27233
  * - **Tags**: Yields
@@ -32213,6 +32271,8 @@ interface BanHistoryPages extends Pages {
32213
32271
  readonly _nominal_BanHistoryPages: unique symbol;
32214
32272
  }
32215
32273
  /**
32274
+ * A special version of the `Pages` class returned by `CaptureService.ReadCapturesFromGalleryAsync`.
32275
+ *
32216
32276
  * - **Tags**: NotCreatable, NotReplicated
32217
32277
  *
32218
32278
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesPages)
@@ -32419,6 +32479,8 @@ interface OutfitPages extends Pages<ReadonlyArray<{
32419
32479
  readonly _nominal_OutfitPages: unique symbol;
32420
32480
  }
32421
32481
  /**
32482
+ * A special version of the `Pages` class returned by `GenerateItemListAsync`.
32483
+ *
32422
32484
  * - **Tags**: NotCreatable, NotReplicated
32423
32485
  *
32424
32486
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationPages)
@@ -35745,6 +35807,8 @@ interface RTAnimationTracker extends Instance {
35745
35807
  readonly TrackerPrompt: RBXScriptSignal<(prompt: Enum.TrackerPromptEvent) => void>;
35746
35808
  }
35747
35809
  /**
35810
+ * A service that provides an interface for you to manage and display personalized content recommendations.
35811
+ *
35748
35812
  * - **Tags**: NotCreatable, Service
35749
35813
  *
35750
35814
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService)
@@ -35762,22 +35826,28 @@ interface RecommendationService extends Instance {
35762
35826
  * - **ThreadSafety**: Unsafe
35763
35827
  *
35764
35828
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#LogActionEvent)
35765
- * @param this
35766
- * @param actionType
35767
- * @param itemId
35768
- * @param tracingId
35769
- * @param actionEventDetails
35829
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35830
+ * @param actionType The enum for the type of action.
35831
+ * @param itemId The item ID returned from registration and `GenerateItemListAsync`.
35832
+ * @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
35833
+ * @param actionEventDetails A dictionary containing the following fields: - `Weight` — A number representing the weight of the action. Default is 1.
35834
+ * - `DestinationPlaceId` — The ID of the place the user was sent to after the action. Used for `Play`.
35835
+ * - `CommentText` — Any text associated with the action, such as a comment. Used for `Comment`.
35836
+ * - `ReactionType` — A string describing the type of reaction, for example, "like" or "dislike". Used for `AddReaction` or `RemoveReaction`.
35770
35837
  */
35771
35838
  LogActionEvent(this: RecommendationService, actionType: CastsToEnum<Enum.RecommendationActionType>, itemId: string, tracingId: string, actionEventDetails?: object): void;
35772
35839
  /**
35773
35840
  * - **ThreadSafety**: Unsafe
35774
35841
  *
35775
35842
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#LogImpressionEvent)
35776
- * @param this
35777
- * @param impressionType
35778
- * @param itemId
35779
- * @param tracingId
35780
- * @param impressionEventDetails
35843
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35844
+ * @param impressionType The enum for the type of the impression.
35845
+ * @param itemId The item ID returned from registration and `GenerateItemListAsync`.
35846
+ * @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
35847
+ * @param impressionEventDetails A dictionary containing the following fields: - `Duration` — The duration of the impression in seconds.
35848
+ * - `Weight` — A number representing the weight of the impression. Default is 1.
35849
+ * - `ItemPosition` — The position of the item in the recommendation list.
35850
+ * - `DepartureIntent` — The `RecommendationDepartureIntent` indicating the user's intent when leaving a view. For example, `Positive` if the view is considered good.
35781
35851
  */
35782
35852
  LogImpressionEvent(this: RecommendationService, impressionType: CastsToEnum<Enum.RecommendationImpressionType>, itemId: string, tracingId: string, impressionEventDetails?: object): void;
35783
35853
  /**
@@ -35785,8 +35855,12 @@ interface RecommendationService extends Instance {
35785
35855
  * - **Tags**: Yields
35786
35856
  *
35787
35857
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GenerateItemListAsync)
35788
- * @param this
35789
- * @param generateRecommendationItemListRequest
35858
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35859
+ * @param generateRecommendationItemListRequest A dictionary containing the following fields: - `ConfigName` — A unique ID for the specific configuration. This determines how the candidates are ranked.
35860
+ * - `LocationId` — A developer-defined string that specifies the location where the recommendation is used, such as `"For_you"` or `"Lobby"`. This parameter will not affect the items returned, and it can help you track the performance of multiple recommendation features within your experience. Recommendation metrics for each individual location will be displayed in the Creator Hub. `LocationId` **must** be a string and cannot be `"Other"` or `"other"` as these values are reserved by the Creator Hub.
35861
+ * - `PageSize` — The number of items returned for each page.
35862
+ * - `BoostCustomTags` — A list of string tags. Any item with this tag will be boosted in ranking. Note: only supports boosting one tag now.
35863
+ * - `CustomContexts` — A table of key-value pairs used to pass in additional context data for ranking. For example, `UserId` for a Server script.
35790
35864
  */
35791
35865
  GenerateItemListAsync(this: RecommendationService, generateRecommendationItemListRequest: object): RecommendationPages;
35792
35866
  /**
@@ -35794,6 +35868,9 @@ interface RecommendationService extends Instance {
35794
35868
  * - **Tags**: Yields
35795
35869
  *
35796
35870
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GetRecommendationItemAsync)
35871
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35872
+ * @param itemId The ID of the item to retrieve.
35873
+ * @returns A dictionary representing the recommendation item with the following fields: - `ItemId` — The unique ID for the item. - `ReferenceId` — The developer-provided ID for the item. - `TracingId` — An ID for tracking recommendation sessions. This will be empty when fetching a single item directly. - `Creator` — A table containing the `CreatorId` and `CreatorType`. - `Attributes` — A list of content attributes associated with the item. - `CustomTags` — A list of custom string tags. - `Visibility` — An enum of type `RecommendationItemVisibility`.
35797
35874
  */
35798
35875
  GetRecommendationItemAsync(this: RecommendationService, itemId: string): object;
35799
35876
  /**
@@ -35801,9 +35878,17 @@ interface RecommendationService extends Instance {
35801
35878
  * - **Tags**: Yields
35802
35879
  *
35803
35880
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RegisterItemAsync)
35804
- * @param this
35805
- * @param player
35806
- * @param registerRecommendationItemsRequest
35881
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35882
+ * @param player The player who created the item.
35883
+ * @param registerRecommendationItemsRequest A dictionary containing the following fields: - `ContentType` — The `RecommendationItemContentType` specifying the type of content. Type is defined in a generic way. For example, you can use `Static` for images, `Dynamic` for videos, and `Interactive` for 3D models that support interaction.
35884
+ * - `ReferenceId` — The developer-defined string that uniquely identifies the item.
35885
+ * - `Duration` — The duration of the content in seconds.
35886
+ * - `Attributes` — The table of attributes for the item, such as `AssetId` or `Description`.
35887
+ * - `CustomTags` — The list of string tags for filtering and boosting.
35888
+ * - `Visibility` — The `RecommendationItemVisibility` enum that controls the item's visibility, such as `Public` or `Private`.
35889
+ *
35890
+ *
35891
+ * @returns A table with only two fields: `ItemId` and `ReferenceId`.
35807
35892
  */
35808
35893
  RegisterItemAsync(this: RecommendationService, player: Player, registerRecommendationItemsRequest: object): object;
35809
35894
  /**
@@ -35811,8 +35896,8 @@ interface RecommendationService extends Instance {
35811
35896
  * - **Tags**: Yields
35812
35897
  *
35813
35898
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RemoveItemAsync)
35814
- * @param this
35815
- * @param itemId
35899
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35900
+ * @param itemId The itemId to remove.
35816
35901
  */
35817
35902
  RemoveItemAsync(this: RecommendationService, itemId: string): void;
35818
35903
  /**
@@ -35820,8 +35905,14 @@ interface RecommendationService extends Instance {
35820
35905
  * - **Tags**: Yields
35821
35906
  *
35822
35907
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#UpdateItemAsync)
35823
- * @param this
35824
- * @param updateRecommendationItemRequest
35908
+ * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35909
+ * @param updateRecommendationItemRequest A dictionary containing the following fields: - `ItemId` — The ID of the item to update.
35910
+ * - `ReferenceId` — The new developer-defined string to identify the item.
35911
+ * - `Creator` — The new creator for the item. Creator is a table containing two fields: `CreatorId: number` and `CreatorType: Enum.CreatorType`.
35912
+ * - `Duration` — The new duration for the content in seconds.
35913
+ * - `Visibility` — The new visibility setting for the item.
35914
+ * - `Attributes` — The new table of attributes for the item.
35915
+ * - `CustomTags` — The new list of string tags.
35825
35916
  */
35826
35917
  UpdateItemAsync(this: RecommendationService, updateRecommendationItemRequest: object): void;
35827
35918
  }
@@ -36288,13 +36379,6 @@ interface RunService extends Instance {
36288
36379
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#FrameNumber)
36289
36380
  */
36290
36381
  readonly FrameNumber: number;
36291
- /**
36292
- * - **ThreadSafety**: ReadSafe
36293
- * - **Tags**: NotReplicated
36294
- *
36295
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#PredictionState)
36296
- */
36297
- readonly PredictionState: Enum.PredictionState;
36298
36382
  /**
36299
36383
  * Given a string name of a function and a priority, this method binds the function to `RunService.PreRender`.
36300
36384
  *
@@ -36313,6 +36397,12 @@ interface RunService extends Instance {
36313
36397
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#BindToSimulation)
36314
36398
  */
36315
36399
  BindToSimulation(this: RunService, callback: Callback, frequency?: CastsToEnum<Enum.StepFrequency>): RBXScriptConnection;
36400
+ /**
36401
+ * - **ThreadSafety**: Unsafe
36402
+ *
36403
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#GetPredictionStatus)
36404
+ */
36405
+ GetPredictionStatus(this: RunService, context: Instance): Enum.PredictionStatus;
36316
36406
  /**
36317
36407
  * Returns whether the current environment is running on the client.
36318
36408
  *
@@ -36363,6 +36453,12 @@ interface RunService extends Instance {
36363
36453
  * @returns Whether the current environment is running in Studio.
36364
36454
  */
36365
36455
  IsStudio(this: RunService): boolean;
36456
+ /**
36457
+ * - **ThreadSafety**: Unsafe
36458
+ *
36459
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#SetPredictionMode)
36460
+ */
36461
+ SetPredictionMode(this: RunService, context: Instance, mode: CastsToEnum<Enum.PredictionMode>): void;
36366
36462
  /**
36367
36463
  * Unbinds a function that was bound to the render loop using `RunService:BindToRenderStep()`.
36368
36464
  *
@@ -39160,6 +39256,12 @@ interface StarterPlayer extends Instance {
39160
39256
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CameraMode)
39161
39257
  */
39162
39258
  CameraMode: Enum.CameraMode;
39259
+ /**
39260
+ * - **ThreadSafety**: ReadSafe
39261
+ *
39262
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CharacterBreakJointsOnDeath)
39263
+ */
39264
+ CharacterBreakJointsOnDeath: boolean;
39163
39265
  /**
39164
39266
  * Determines the starting value of `Humanoid.JumpHeight` for `Player.Character`.
39165
39267
  *
@@ -39272,7 +39374,6 @@ interface StarterPlayer extends Instance {
39272
39374
  LoadCharacterAppearance: boolean;
39273
39375
  /**
39274
39376
  * - **ThreadSafety**: ReadSafe
39275
- * - **Tags**: NotBrowsable
39276
39377
  *
39277
39378
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#LuaCharacterController)
39278
39379
  */
@@ -39285,12 +39386,6 @@ interface StarterPlayer extends Instance {
39285
39386
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#NameDisplayDistance)
39286
39387
  */
39287
39388
  NameDisplayDistance: number;
39288
- /**
39289
- * - **ThreadSafety**: ReadSafe
39290
- *
39291
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#RagdollDeath)
39292
- */
39293
- RagdollDeath: boolean;
39294
39389
  /**
39295
39390
  * Determines if user-owned emotes are loaded when loading avatars.
39296
39391
  *
@@ -39867,6 +39962,33 @@ interface StudioSdkService extends Instance {
39867
39962
  */
39868
39963
  readonly _nominal_StudioSdkService: unique symbol;
39869
39964
  }
39965
+ /**
39966
+ * - **Tags**: NotCreatable, Service, NotReplicated
39967
+ *
39968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService)
39969
+ */
39970
+ interface StudioTestService extends Instance {
39971
+ /**
39972
+ * **DO NOT USE!**
39973
+ *
39974
+ * This field exists to force TypeScript to recognize this as a nominal type
39975
+ * @hidden
39976
+ * @deprecated
39977
+ */
39978
+ readonly _nominal_StudioTestService: unique symbol;
39979
+ /**
39980
+ * - **ThreadSafety**: Unsafe
39981
+ *
39982
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#EndTest)
39983
+ */
39984
+ EndTest(this: StudioTestService, value: unknown): void;
39985
+ /**
39986
+ * - **ThreadSafety**: Unsafe
39987
+ *
39988
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#GetTestArgs)
39989
+ */
39990
+ GetTestArgs(this: StudioTestService): unknown;
39991
+ }
39870
39992
  /**
39871
39993
  * - **Tags**: NotCreatable, Service, NotReplicated
39872
39994
  *
@@ -212,6 +212,7 @@ interface Services {
212
212
  StudioScriptDebugEventListener: StudioScriptDebugEventListener;
213
213
  StudioSdkService: StudioSdkService;
214
214
  StudioService: StudioService;
215
+ StudioTestService: StudioTestService;
215
216
  StudioUserService: StudioUserService;
216
217
  StudioWidgetsService: StudioWidgetsService;
217
218
  StylingService: StylingService;
@@ -451,6 +452,7 @@ interface CreatableInstances {
451
452
  Pose: Pose;
452
453
  PrismaticConstraint: PrismaticConstraint;
453
454
  ProximityPrompt: ProximityPrompt;
455
+ PyramidHandleAdornment: PyramidHandleAdornment;
454
456
  RayValue: RayValue;
455
457
  RelativeGui: RelativeGui;
456
458
  RemoteEvent: RemoteEvent;
@@ -813,6 +815,8 @@ interface AnimationNode extends RBXObject {
813
815
  readonly _nominal_AnimationNode: unique symbol;
814
816
  }
815
817
  /**
818
+ * A class which defines a piece of content, such as a screnshot or video, taken in-experience.
819
+ *
816
820
  * - **Tags**: NotCreatable, NotReplicated
817
821
  *
818
822
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Capture)
@@ -828,6 +832,8 @@ interface Capture extends RBXObject {
828
832
  readonly _nominal_Capture: unique symbol;
829
833
  }
830
834
  /**
835
+ * A child class of `Capture` for screenshots.
836
+ *
831
837
  * - **Tags**: NotCreatable, NotReplicated
832
838
  *
833
839
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScreenshotCapture)
@@ -843,6 +849,8 @@ interface ScreenshotCapture extends Capture {
843
849
  readonly _nominal_ScreenshotCapture: unique symbol;
844
850
  }
845
851
  /**
852
+ * A child class of `Capture` for videos.
853
+ *
846
854
  * - **Tags**: NotCreatable, NotReplicated
847
855
  *
848
856
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
@@ -5292,7 +5300,7 @@ interface FaceControls extends Instance {
5292
5300
  UpperLipSuck: number;
5293
5301
  }
5294
5302
  /**
5295
- * The FaceInstance class is an abstract class from which the `Decal` class inherits.
5303
+ * An abstract class from which the `Decal` and `Texture` classes inherit.
5296
5304
  *
5297
5305
  * - **Tags**: NotCreatable, NotBrowsable
5298
5306
  *
@@ -5309,7 +5317,7 @@ interface FaceInstance extends Instance {
5309
5317
  readonly _nominal_FaceInstance: unique symbol;
5310
5318
  }
5311
5319
  /**
5312
- * The Decal object is an object which applies an image to a face of a `BasePart`.
5320
+ * Applies an image texture to a face of a parent `BasePart`.
5313
5321
  *
5314
5322
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal)
5315
5323
  */
@@ -5363,7 +5371,7 @@ interface Decal extends FaceInstance {
5363
5371
  set RoughnessMapContent(value: Content);
5364
5372
  }
5365
5373
  /**
5366
- * A Texture object applies a repeating texture to the face of a `BasePart`.
5374
+ * Applies a repeating image texture to the face of a parent `BasePart`.
5367
5375
  *
5368
5376
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Texture)
5369
5377
  */
@@ -6474,6 +6482,19 @@ interface LineHandleAdornment extends HandleAdornment {
6474
6482
  */
6475
6483
  readonly _nominal_LineHandleAdornment: unique symbol;
6476
6484
  }
6485
+ /**
6486
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
6487
+ */
6488
+ interface PyramidHandleAdornment extends HandleAdornment {
6489
+ /**
6490
+ * **DO NOT USE!**
6491
+ *
6492
+ * This field exists to force TypeScript to recognize this as a nominal type
6493
+ * @hidden
6494
+ * @deprecated
6495
+ */
6496
+ readonly _nominal_PyramidHandleAdornment: unique symbol;
6497
+ }
6477
6498
  /**
6478
6499
  * The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
6479
6500
  *
@@ -9384,6 +9405,8 @@ interface BanHistoryPages extends Pages {
9384
9405
  readonly _nominal_BanHistoryPages: unique symbol;
9385
9406
  }
9386
9407
  /**
9408
+ * A special version of the `Pages` class returned by `CaptureService.ReadCapturesFromGalleryAsync`.
9409
+ *
9387
9410
  * - **Tags**: NotCreatable, NotReplicated
9388
9411
  *
9389
9412
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesPages)
@@ -9576,6 +9599,8 @@ interface OutfitPages extends Pages<ReadonlyArray<{
9576
9599
  readonly _nominal_OutfitPages: unique symbol;
9577
9600
  }
9578
9601
  /**
9602
+ * A special version of the `Pages` class returned by `GenerateItemListAsync`.
9603
+ *
9579
9604
  * - **Tags**: NotCreatable, NotReplicated
9580
9605
  *
9581
9606
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationPages)
@@ -10951,6 +10976,8 @@ interface RTAnimationTracker extends Instance {
10951
10976
  readonly _nominal_RTAnimationTracker: unique symbol;
10952
10977
  }
10953
10978
  /**
10979
+ * A service that provides an interface for you to manage and display personalized content recommendations.
10980
+ *
10954
10981
  * - **Tags**: NotCreatable, Service
10955
10982
  *
10956
10983
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService)
@@ -13252,6 +13279,35 @@ interface StudioService extends Instance {
13252
13279
  */
13253
13280
  PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
13254
13281
  }
13282
+ /**
13283
+ * - **Tags**: NotCreatable, Service, NotReplicated
13284
+ *
13285
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService)
13286
+ */
13287
+ interface StudioTestService extends Instance {
13288
+ /**
13289
+ * **DO NOT USE!**
13290
+ *
13291
+ * This field exists to force TypeScript to recognize this as a nominal type
13292
+ * @hidden
13293
+ * @deprecated
13294
+ */
13295
+ readonly _nominal_StudioTestService: unique symbol;
13296
+ /**
13297
+ * - **ThreadSafety**: Unsafe
13298
+ * - **Tags**: Yields
13299
+ *
13300
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecutePlayModeAsync)
13301
+ */
13302
+ ExecutePlayModeAsync(this: StudioTestService, args: unknown): unknown;
13303
+ /**
13304
+ * - **ThreadSafety**: Unsafe
13305
+ * - **Tags**: Yields
13306
+ *
13307
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecuteRunModeAsync)
13308
+ */
13309
+ ExecuteRunModeAsync(this: StudioTestService, args: unknown): unknown;
13310
+ }
13255
13311
  /**
13256
13312
  * - **Tags**: NotCreatable, NotReplicated
13257
13313
  *
@@ -1635,6 +1635,42 @@ declare namespace Enum {
1635
1635
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodePlayMode | undefined;
1636
1636
  }
1637
1637
  export type AnimationNodePlayMode = AnimationNodePlayMode.Loop | AnimationNodePlayMode.PingPong | AnimationNodePlayMode.OnceAndHold | AnimationNodePlayMode.OnceAndReset;
1638
+ /**
1639
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType)
1640
+ */
1641
+ export namespace AnimationNodeTransitionType {
1642
+ /**
1643
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType#CrossFade)
1644
+ */
1645
+ export interface CrossFade extends globalThis.EnumItem {
1646
+ Name: "CrossFade";
1647
+ Value: 0;
1648
+ EnumType: typeof globalThis.Enum.AnimationNodeTransitionType;
1649
+ }
1650
+ export const CrossFade: CrossFade;
1651
+ /**
1652
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType#InertialBlend)
1653
+ */
1654
+ export interface InertialBlend extends globalThis.EnumItem {
1655
+ Name: "InertialBlend";
1656
+ Value: 1;
1657
+ EnumType: typeof globalThis.Enum.AnimationNodeTransitionType;
1658
+ }
1659
+ export const InertialBlend: InertialBlend;
1660
+ /**
1661
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType#DeadBlend)
1662
+ */
1663
+ export interface DeadBlend extends globalThis.EnumItem {
1664
+ Name: "DeadBlend";
1665
+ Value: 2;
1666
+ EnumType: typeof globalThis.Enum.AnimationNodeTransitionType;
1667
+ }
1668
+ export const DeadBlend: DeadBlend;
1669
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeTransitionType>;
1670
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeTransitionType | undefined;
1671
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeTransitionType | undefined;
1672
+ }
1673
+ export type AnimationNodeTransitionType = AnimationNodeTransitionType.CrossFade | AnimationNodeTransitionType.InertialBlend | AnimationNodeTransitionType.DeadBlend;
1638
1674
  /**
1639
1675
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType)
1640
1676
  */
@@ -9382,11 +9418,83 @@ declare namespace Enum {
9382
9418
  EnumType: typeof globalThis.Enum.DataStoreRequestType;
9383
9419
  }
9384
9420
  export const RemoveVersionAsync: RemoveVersionAsync;
9421
+ /**
9422
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRead)
9423
+ */
9424
+ export interface StandardRead extends globalThis.EnumItem {
9425
+ Name: "StandardRead";
9426
+ Value: 9;
9427
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9428
+ }
9429
+ export const StandardRead: StandardRead;
9430
+ /**
9431
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardWrite)
9432
+ */
9433
+ export interface StandardWrite extends globalThis.EnumItem {
9434
+ Name: "StandardWrite";
9435
+ Value: 10;
9436
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9437
+ }
9438
+ export const StandardWrite: StandardWrite;
9439
+ /**
9440
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardList)
9441
+ */
9442
+ export interface StandardList extends globalThis.EnumItem {
9443
+ Name: "StandardList";
9444
+ Value: 11;
9445
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9446
+ }
9447
+ export const StandardList: StandardList;
9448
+ /**
9449
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRemove)
9450
+ */
9451
+ export interface StandardRemove extends globalThis.EnumItem {
9452
+ Name: "StandardRemove";
9453
+ Value: 12;
9454
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9455
+ }
9456
+ export const StandardRemove: StandardRemove;
9457
+ /**
9458
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRead)
9459
+ */
9460
+ export interface OrderedRead extends globalThis.EnumItem {
9461
+ Name: "OrderedRead";
9462
+ Value: 13;
9463
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9464
+ }
9465
+ export const OrderedRead: OrderedRead;
9466
+ /**
9467
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedWrite)
9468
+ */
9469
+ export interface OrderedWrite extends globalThis.EnumItem {
9470
+ Name: "OrderedWrite";
9471
+ Value: 14;
9472
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9473
+ }
9474
+ export const OrderedWrite: OrderedWrite;
9475
+ /**
9476
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedList)
9477
+ */
9478
+ export interface OrderedList extends globalThis.EnumItem {
9479
+ Name: "OrderedList";
9480
+ Value: 15;
9481
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9482
+ }
9483
+ export const OrderedList: OrderedList;
9484
+ /**
9485
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRemove)
9486
+ */
9487
+ export interface OrderedRemove extends globalThis.EnumItem {
9488
+ Name: "OrderedRemove";
9489
+ Value: 16;
9490
+ EnumType: typeof globalThis.Enum.DataStoreRequestType;
9491
+ }
9492
+ export const OrderedRemove: OrderedRemove;
9385
9493
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataStoreRequestType>;
9386
9494
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataStoreRequestType | undefined;
9387
9495
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataStoreRequestType | undefined;
9388
9496
  }
9389
- export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync;
9497
+ export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync | DataStoreRequestType.StandardRead | DataStoreRequestType.StandardWrite | DataStoreRequestType.StandardList | DataStoreRequestType.StandardRemove | DataStoreRequestType.OrderedRead | DataStoreRequestType.OrderedWrite | DataStoreRequestType.OrderedList | DataStoreRequestType.OrderedRemove;
9390
9498
  /**
9391
9499
  * Reason for the end of the debugger session.
9392
9500
  *
@@ -14462,6 +14570,61 @@ declare namespace Enum {
14462
14570
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GraphicsOptimizationMode | undefined;
14463
14571
  }
14464
14572
  export type GraphicsOptimizationMode = GraphicsOptimizationMode.Performance | GraphicsOptimizationMode.Balanced | GraphicsOptimizationMode.Quality;
14573
+ /**
14574
+ * Defines the possible outcomes of the `GroupService:PromptJoinAsync()` method.
14575
+ *
14576
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus)
14577
+ */
14578
+ export namespace GroupMembershipStatus {
14579
+ /**
14580
+ * The player chose not to join, cancelled the prompt, or was not eligible to join the group.
14581
+ *
14582
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#None)
14583
+ */
14584
+ export interface None extends globalThis.EnumItem {
14585
+ Name: "None";
14586
+ Value: 0;
14587
+ EnumType: typeof globalThis.Enum.GroupMembershipStatus;
14588
+ }
14589
+ export const None: None;
14590
+ /**
14591
+ * The player successfully joined the group during the prompt.
14592
+ *
14593
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#Joined)
14594
+ */
14595
+ export interface Joined extends globalThis.EnumItem {
14596
+ Name: "Joined";
14597
+ Value: 1;
14598
+ EnumType: typeof globalThis.Enum.GroupMembershipStatus;
14599
+ }
14600
+ export const Joined: Joined;
14601
+ /**
14602
+ * The player submitted a request to join the group.
14603
+ *
14604
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#JoinRequestPending)
14605
+ */
14606
+ export interface JoinRequestPending extends globalThis.EnumItem {
14607
+ Name: "JoinRequestPending";
14608
+ Value: 2;
14609
+ EnumType: typeof globalThis.Enum.GroupMembershipStatus;
14610
+ }
14611
+ export const JoinRequestPending: JoinRequestPending;
14612
+ /**
14613
+ * The player was already a member of the group.
14614
+ *
14615
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#AlreadyMember)
14616
+ */
14617
+ export interface AlreadyMember extends globalThis.EnumItem {
14618
+ Name: "AlreadyMember";
14619
+ Value: 3;
14620
+ EnumType: typeof globalThis.Enum.GroupMembershipStatus;
14621
+ }
14622
+ export const AlreadyMember: AlreadyMember;
14623
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GroupMembershipStatus>;
14624
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GroupMembershipStatus | undefined;
14625
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GroupMembershipStatus | undefined;
14626
+ }
14627
+ export type GroupMembershipStatus = GroupMembershipStatus.None | GroupMembershipStatus.Joined | GroupMembershipStatus.JoinRequestPending | GroupMembershipStatus.AlreadyMember;
14465
14628
  /**
14466
14629
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GuiState)
14467
14630
  */
@@ -20337,12 +20500,21 @@ declare namespace Enum {
20337
20500
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode)
20338
20501
  */
20339
20502
  export namespace LuauTypeCheckMode {
20503
+ /**
20504
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#Default)
20505
+ */
20506
+ export interface Default extends globalThis.EnumItem {
20507
+ Name: "Default";
20508
+ Value: 0;
20509
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
20510
+ }
20511
+ export const Default: Default;
20340
20512
  /**
20341
20513
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#NoCheck)
20342
20514
  */
20343
20515
  export interface NoCheck extends globalThis.EnumItem {
20344
20516
  Name: "NoCheck";
20345
- Value: 0;
20517
+ Value: 1;
20346
20518
  EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
20347
20519
  }
20348
20520
  export const NoCheck: NoCheck;
@@ -20351,7 +20523,7 @@ declare namespace Enum {
20351
20523
  */
20352
20524
  export interface Nonstrict extends globalThis.EnumItem {
20353
20525
  Name: "Nonstrict";
20354
- Value: 1;
20526
+ Value: 2;
20355
20527
  EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
20356
20528
  }
20357
20529
  export const Nonstrict: Nonstrict;
@@ -20360,7 +20532,7 @@ declare namespace Enum {
20360
20532
  */
20361
20533
  export interface Strict extends globalThis.EnumItem {
20362
20534
  Name: "Strict";
20363
- Value: 2;
20535
+ Value: 3;
20364
20536
  EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
20365
20537
  }
20366
20538
  export const Strict: Strict;
@@ -20368,7 +20540,7 @@ declare namespace Enum {
20368
20540
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LuauTypeCheckMode | undefined;
20369
20541
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
20370
20542
  }
20371
- export type LuauTypeCheckMode = LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
20543
+ export type LuauTypeCheckMode = LuauTypeCheckMode.Default | LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
20372
20544
  /**
20373
20545
  * The status of the BulkPurchasePrompt after player interaction.
20374
20546
  *
@@ -24489,50 +24661,41 @@ declare namespace Enum {
24489
24661
  }
24490
24662
  export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
24491
24663
  /**
24492
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState)
24664
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus)
24493
24665
  */
24494
- export namespace PredictionState {
24666
+ export namespace PredictionStatus {
24495
24667
  /**
24496
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Idle)
24668
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Authoritative)
24497
24669
  */
24498
- export interface Idle extends globalThis.EnumItem {
24499
- Name: "Idle";
24670
+ export interface Authoritative extends globalThis.EnumItem {
24671
+ Name: "Authoritative";
24500
24672
  Value: 0;
24501
- EnumType: typeof globalThis.Enum.PredictionState;
24673
+ EnumType: typeof globalThis.Enum.PredictionStatus;
24502
24674
  }
24503
- export const Idle: Idle;
24675
+ export const Authoritative: Authoritative;
24504
24676
  /**
24505
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Simulating)
24677
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Predicted)
24506
24678
  */
24507
- export interface Simulating extends globalThis.EnumItem {
24508
- Name: "Simulating";
24679
+ export interface Predicted extends globalThis.EnumItem {
24680
+ Name: "Predicted";
24509
24681
  Value: 1;
24510
- EnumType: typeof globalThis.Enum.PredictionState;
24682
+ EnumType: typeof globalThis.Enum.PredictionStatus;
24511
24683
  }
24512
- export const Simulating: Simulating;
24684
+ export const Predicted: Predicted;
24513
24685
  /**
24514
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#RollingBack)
24686
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#None)
24515
24687
  */
24516
- export interface RollingBack extends globalThis.EnumItem {
24517
- Name: "RollingBack";
24688
+ export interface None extends globalThis.EnumItem {
24689
+ Name: "None";
24518
24690
  Value: 2;
24519
- EnumType: typeof globalThis.Enum.PredictionState;
24691
+ EnumType: typeof globalThis.Enum.PredictionStatus;
24520
24692
  }
24521
- export const RollingBack: RollingBack;
24522
- /**
24523
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Resimulating)
24524
- */
24525
- export interface Resimulating extends globalThis.EnumItem {
24526
- Name: "Resimulating";
24527
- Value: 3;
24528
- EnumType: typeof globalThis.Enum.PredictionState;
24529
- }
24530
- export const Resimulating: Resimulating;
24531
- export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionState>;
24532
- export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionState | undefined;
24533
- export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionState | undefined;
24693
+ export const None: None;
24694
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionStatus>;
24695
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionStatus | undefined;
24696
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionStatus | undefined;
24534
24697
  }
24535
- export type PredictionState = PredictionState.Idle | PredictionState.Simulating | PredictionState.RollingBack | PredictionState.Resimulating;
24698
+ export type PredictionStatus = PredictionStatus.Authoritative | PredictionStatus.Predicted | PredictionStatus.None;
24536
24699
  /**
24537
24700
  * This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
24538
24701
  *
@@ -25765,6 +25928,8 @@ declare namespace Enum {
25765
25928
  */
25766
25929
  export namespace RecommendationActionType {
25767
25930
  /**
25931
+ * The user added a reaction to the item, such as a "like".
25932
+ *
25768
25933
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#AddReaction)
25769
25934
  */
25770
25935
  export interface AddReaction extends globalThis.EnumItem {
@@ -25774,6 +25939,8 @@ declare namespace Enum {
25774
25939
  }
25775
25940
  export const AddReaction: AddReaction;
25776
25941
  /**
25942
+ * The user removed a reaction from the item.
25943
+ *
25777
25944
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#RemoveReaction)
25778
25945
  */
25779
25946
  export interface RemoveReaction extends globalThis.EnumItem {
@@ -25783,6 +25950,8 @@ declare namespace Enum {
25783
25950
  }
25784
25951
  export const RemoveReaction: RemoveReaction;
25785
25952
  /**
25953
+ * The user shared the item.
25954
+ *
25786
25955
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Share)
25787
25956
  */
25788
25957
  export interface Share extends globalThis.EnumItem {
@@ -25792,6 +25961,8 @@ declare namespace Enum {
25792
25961
  }
25793
25962
  export const Share: Share;
25794
25963
  /**
25964
+ * The user created an abuse report of the item.
25965
+ *
25795
25966
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Report)
25796
25967
  */
25797
25968
  export interface Report extends globalThis.EnumItem {
@@ -25801,6 +25972,8 @@ declare namespace Enum {
25801
25972
  }
25802
25973
  export const Report: Report;
25803
25974
  /**
25975
+ * The user commented on the item.
25976
+ *
25804
25977
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Comment)
25805
25978
  */
25806
25979
  export interface Comment extends globalThis.EnumItem {
@@ -25810,6 +25983,8 @@ declare namespace Enum {
25810
25983
  }
25811
25984
  export const Comment: Comment;
25812
25985
  /**
25986
+ * The user joined an experience through the item.
25987
+ *
25813
25988
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Play)
25814
25989
  */
25815
25990
  export interface Play extends globalThis.EnumItem {
@@ -25819,6 +25994,8 @@ declare namespace Enum {
25819
25994
  }
25820
25995
  export const Play: Play;
25821
25996
  /**
25997
+ * The user made a purchase from the item.
25998
+ *
25822
25999
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Purchase)
25823
26000
  */
25824
26001
  export interface Purchase extends globalThis.EnumItem {
@@ -25873,6 +26050,8 @@ declare namespace Enum {
25873
26050
  */
25874
26051
  export namespace RecommendationImpressionType {
25875
26052
  /**
26053
+ * A complete view of the item.
26054
+ *
25876
26055
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#View)
25877
26056
  */
25878
26057
  export interface View extends globalThis.EnumItem {
@@ -25882,6 +26061,8 @@ declare namespace Enum {
25882
26061
  }
25883
26062
  export const View: View;
25884
26063
  /**
26064
+ * The item has failed to render.
26065
+ *
25885
26066
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#NotViewable)
25886
26067
  */
25887
26068
  export interface NotViewable extends globalThis.EnumItem {
@@ -25900,6 +26081,8 @@ declare namespace Enum {
25900
26081
  */
25901
26082
  export namespace RecommendationItemContentType {
25902
26083
  /**
26084
+ * The item is static, such as an image.
26085
+ *
25903
26086
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Static)
25904
26087
  */
25905
26088
  export interface Static extends globalThis.EnumItem {
@@ -25909,6 +26092,8 @@ declare namespace Enum {
25909
26092
  }
25910
26093
  export const Static: Static;
25911
26094
  /**
26095
+ * The item is dynamic; for example, it is a video.
26096
+ *
25912
26097
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Dynamic)
25913
26098
  */
25914
26099
  export interface Dynamic extends globalThis.EnumItem {
@@ -25918,6 +26103,8 @@ declare namespace Enum {
25918
26103
  }
25919
26104
  export const Dynamic: Dynamic;
25920
26105
  /**
26106
+ * The item is interactive, such as a 3D model or a mini-game.
26107
+ *
25921
26108
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Interactive)
25922
26109
  */
25923
26110
  export interface Interactive extends globalThis.EnumItem {
@@ -26854,6 +27041,15 @@ declare namespace Enum {
26854
27041
  EnumType: typeof globalThis.Enum.RigType;
26855
27042
  }
26856
27043
  export const R15: R15;
27044
+ /**
27045
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigType#CustomHumanoid)
27046
+ */
27047
+ export interface CustomHumanoid extends globalThis.EnumItem {
27048
+ Name: "CustomHumanoid";
27049
+ Value: 1;
27050
+ EnumType: typeof globalThis.Enum.RigType;
27051
+ }
27052
+ export const CustomHumanoid: CustomHumanoid;
26857
27053
  /**
26858
27054
  * A rig type of Custom.
26859
27055
  *
@@ -26861,7 +27057,7 @@ declare namespace Enum {
26861
27057
  */
26862
27058
  export interface Custom extends globalThis.EnumItem {
26863
27059
  Name: "Custom";
26864
- Value: 1;
27060
+ Value: 2;
26865
27061
  EnumType: typeof globalThis.Enum.RigType;
26866
27062
  }
26867
27063
  export const Custom: Custom;
@@ -26872,7 +27068,7 @@ declare namespace Enum {
26872
27068
  */
26873
27069
  export interface None extends globalThis.EnumItem {
26874
27070
  Name: "None";
26875
- Value: 2;
27071
+ Value: 3;
26876
27072
  EnumType: typeof globalThis.Enum.RigType;
26877
27073
  }
26878
27074
  export const None: None;
@@ -26880,7 +27076,7 @@ declare namespace Enum {
26880
27076
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigType | undefined;
26881
27077
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigType | undefined;
26882
27078
  }
26883
- export type RigType = RigType.R15 | RigType.Custom | RigType.None;
27079
+ export type RigType = RigType.R15 | RigType.CustomHumanoid | RigType.Custom | RigType.None;
26884
27080
  /**
26885
27081
  * How `Sounds` parented to a `BasePart` or `Attachment` attenuate (fade out) as the distance between the listener and the parent increases.
26886
27082
  *
@@ -27337,11 +27533,20 @@ declare namespace Enum {
27337
27533
  EnumType: typeof globalThis.Enum.SalesTypeFilter;
27338
27534
  }
27339
27535
  export const Premium: Premium;
27536
+ /**
27537
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SalesTypeFilter#TimedOptions)
27538
+ */
27539
+ export interface TimedOptions extends globalThis.EnumItem {
27540
+ Name: "TimedOptions";
27541
+ Value: 4;
27542
+ EnumType: typeof globalThis.Enum.SalesTypeFilter;
27543
+ }
27544
+ export const TimedOptions: TimedOptions;
27340
27545
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SalesTypeFilter>;
27341
27546
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SalesTypeFilter | undefined;
27342
27547
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SalesTypeFilter | undefined;
27343
27548
  }
27344
- export type SalesTypeFilter = SalesTypeFilter.All | SalesTypeFilter.Collectibles | SalesTypeFilter.Premium;
27549
+ export type SalesTypeFilter = SalesTypeFilter.All | SalesTypeFilter.Collectibles | SalesTypeFilter.Premium | SalesTypeFilter.TimedOptions;
27345
27550
  /**
27346
27551
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SandboxedInstanceMode)
27347
27552
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.891",
3
+ "version": "1.0.892",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },