@rbxts/types 1.0.858 → 1.0.860

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.
@@ -3288,6 +3288,33 @@ declare namespace Enum {
3288
3288
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioWindowSize | undefined;
3289
3289
  }
3290
3290
  export type AudioWindowSize = AudioWindowSize.Small | AudioWindowSize.Medium | AudioWindowSize.Large;
3291
+ /**
3292
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode)
3293
+ */
3294
+ export namespace AuthorityMode {
3295
+ /**
3296
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Server)
3297
+ */
3298
+ export interface Server extends globalThis.EnumItem {
3299
+ Name: "Server";
3300
+ Value: 0;
3301
+ EnumType: typeof globalThis.Enum.AuthorityMode;
3302
+ }
3303
+ export const Server: Server;
3304
+ /**
3305
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Automatic)
3306
+ */
3307
+ export interface Automatic extends globalThis.EnumItem {
3308
+ Name: "Automatic";
3309
+ Value: 1;
3310
+ EnumType: typeof globalThis.Enum.AuthorityMode;
3311
+ }
3312
+ export const Automatic: Automatic;
3313
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AuthorityMode>;
3314
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AuthorityMode | undefined;
3315
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AuthorityMode | undefined;
3316
+ }
3317
+ export type AuthorityMode = AuthorityMode.Server | AuthorityMode.Automatic;
3291
3318
  /**
3292
3319
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutoIndentRule)
3293
3320
  */
@@ -4150,11 +4177,29 @@ declare namespace Enum {
4150
4177
  EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryLimitMethod;
4151
4178
  }
4152
4179
  export const Remove: Remove;
4180
+ /**
4181
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryLimitMethod#PreviewScale)
4182
+ */
4183
+ export interface PreviewScale extends globalThis.EnumItem {
4184
+ Name: "PreviewScale";
4185
+ Value: 2;
4186
+ EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryLimitMethod;
4187
+ }
4188
+ export const PreviewScale: PreviewScale;
4189
+ /**
4190
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryLimitMethod#PreviewRemove)
4191
+ */
4192
+ export interface PreviewRemove extends globalThis.EnumItem {
4193
+ Name: "PreviewRemove";
4194
+ Value: 3;
4195
+ EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryLimitMethod;
4196
+ }
4197
+ export const PreviewRemove: PreviewRemove;
4153
4198
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsAccessoryLimitMethod>;
4154
4199
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsAccessoryLimitMethod | undefined;
4155
4200
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsAccessoryLimitMethod | undefined;
4156
4201
  }
4157
- export type AvatarSettingsAccessoryLimitMethod = AvatarSettingsAccessoryLimitMethod.Scale | AvatarSettingsAccessoryLimitMethod.Remove;
4202
+ export type AvatarSettingsAccessoryLimitMethod = AvatarSettingsAccessoryLimitMethod.Scale | AvatarSettingsAccessoryLimitMethod.Remove | AvatarSettingsAccessoryLimitMethod.PreviewScale | AvatarSettingsAccessoryLimitMethod.PreviewRemove;
4158
4203
  /**
4159
4204
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryMode)
4160
4205
  */
@@ -8189,13 +8234,13 @@ declare namespace Enum {
8189
8234
  }
8190
8235
  export type ContextActionPriority = ContextActionPriority.Low | ContextActionPriority.Medium | ContextActionPriority.High;
8191
8236
  /**
8192
- * Describes whether a ContextAction should sink or pass input events.
8237
+ * Describes whether a contextual action should sink or pass input events.
8193
8238
  *
8194
8239
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContextActionResult)
8195
8240
  */
8196
8241
  export namespace ContextActionResult {
8197
8242
  /**
8198
- * If *functionToBind* from `ContextActionService:BindAction()` returns Enum.ContextActionResult.Sink, the input event will stop at that function and no other bound actions under it will be processed. This is the default behavior if *functionToBind* does not return anything or yields in any way.
8243
+ * If `functionToBind` from `ContextActionService:BindAction()` returns `ContextActionResult.Sink`, the input event will stop at that function and no other bound actions under it will be processed. This is the default behavior if `functionToBind` does not return anything or yields in any way.
8199
8244
  *
8200
8245
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContextActionResult#Sink)
8201
8246
  */
@@ -8206,7 +8251,7 @@ declare namespace Enum {
8206
8251
  }
8207
8252
  export const Sink: Sink;
8208
8253
  /**
8209
- * If *functionToBind* from `ContextActionService:BindAction()` returns Enum.ContextActionResult.Pass, the input event is considered to have not been handled by *functionToBind* and will continue being passed to actions bound to the same input type.
8254
+ * If `functionToBind` from `ContextActionService:BindAction()` returns `ContextActionResult.Pass`, the input event is considered to have not been handled by `functionToBind` and will continue being passed to actions bound to the same input type.
8210
8255
  *
8211
8256
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContextActionResult#Pass)
8212
8257
  */
@@ -9158,7 +9203,7 @@ declare namespace Enum {
9158
9203
  */
9159
9204
  export namespace DevComputerMovementMode {
9160
9205
  /**
9161
- * The player's character will moved based on the user's settings.
9206
+ * Allows players to choose their desired control scheme from the in-experience menu. This is the default movement mode.
9162
9207
  *
9163
9208
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevComputerMovementMode#UserChoice)
9164
9209
  */
@@ -9180,7 +9225,7 @@ declare namespace Enum {
9180
9225
  }
9181
9226
  export const KeyboardMouse: KeyboardMouse;
9182
9227
  /**
9183
- * The player can right click in the game world and the character will move there. Player can also control character with mouse and keyboard.
9228
+ * Players can only move through the experience by clicking a target location. The player's character will automatically jump when reaching a surmountable obstacle/gap while moving to the click destination.
9184
9229
  *
9185
9230
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevComputerMovementMode#ClickToMove)
9186
9231
  */
@@ -9191,7 +9236,7 @@ declare namespace Enum {
9191
9236
  }
9192
9237
  export const ClickToMove: ClickToMove;
9193
9238
  /**
9194
- * The player will not respond to default controls. You must define any character movement in custom scripts.
9239
+ * Disables all default controls and allows you to script your own control scheme.
9195
9240
  *
9196
9241
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevComputerMovementMode#Scriptable)
9197
9242
  */
@@ -9262,13 +9307,13 @@ declare namespace Enum {
9262
9307
  }
9263
9308
  export type DevTouchCameraMovementMode = DevTouchCameraMovementMode.UserChoice | DevTouchCameraMovementMode.Classic | DevTouchCameraMovementMode.Follow | DevTouchCameraMovementMode.Orbital;
9264
9309
  /**
9265
- * Overrides the movement mode of players who are playing on touch devices.
9310
+ * Overrides the movement mode of players who are playing on touch-enabled devices.
9266
9311
  *
9267
9312
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevTouchMovementMode)
9268
9313
  */
9269
9314
  export namespace DevTouchMovementMode {
9270
9315
  /**
9271
- * The player's character will moved based on the user's settings.
9316
+ * Allows players to choose their desired control scheme from the in-experience menu. This is the default movement mode.
9272
9317
  *
9273
9318
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevTouchMovementMode#UserChoice)
9274
9319
  */
@@ -9317,7 +9362,7 @@ declare namespace Enum {
9317
9362
  }
9318
9363
  export const ClickToMove: ClickToMove;
9319
9364
  /**
9320
- * The player will not respond to default controls; any character movement must be defined in custom scripts.
9365
+ * The player's character will not respond to default controls; any character movement must be defined in custom scripts.
9321
9366
  *
9322
9367
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevTouchMovementMode#Scriptable)
9323
9368
  */
@@ -9328,7 +9373,7 @@ declare namespace Enum {
9328
9373
  }
9329
9374
  export const Scriptable: Scriptable;
9330
9375
  /**
9331
- * The player's character is controlled with a virtual thumbstick that appears when they touch the lower portion of the screen. Jumping is controlled with a separate button. Good for portrait mode and one handed play.
9376
+ * The player's character is controlled with a virtual thumbstick that appears when they touch the lower portion of the screen. Jumping is controlled with a separate button.
9332
9377
  *
9333
9378
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DevTouchMovementMode#DynamicThumbstick)
9334
9379
  */
@@ -11239,60 +11284,6 @@ declare namespace Enum {
11239
11284
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacsActionUnit | undefined;
11240
11285
  }
11241
11286
  export type FacsActionUnit = FacsActionUnit.ChinRaiserUpperLip | FacsActionUnit.ChinRaiser | FacsActionUnit.FlatPucker | FacsActionUnit.Funneler | FacsActionUnit.LowerLipSuck | FacsActionUnit.LipPresser | FacsActionUnit.LipsTogether | FacsActionUnit.MouthLeft | FacsActionUnit.MouthRight | FacsActionUnit.Pucker | FacsActionUnit.UpperLipSuck | FacsActionUnit.LeftCheekPuff | FacsActionUnit.LeftDimpler | FacsActionUnit.LeftLipCornerDown | FacsActionUnit.LeftLowerLipDepressor | FacsActionUnit.LeftLipCornerPuller | FacsActionUnit.LeftLipStretcher | FacsActionUnit.LeftUpperLipRaiser | FacsActionUnit.RightCheekPuff | FacsActionUnit.RightDimpler | FacsActionUnit.RightLipCornerDown | FacsActionUnit.RightLowerLipDepressor | FacsActionUnit.RightLipCornerPuller | FacsActionUnit.RightLipStretcher | FacsActionUnit.RightUpperLipRaiser | FacsActionUnit.JawDrop | FacsActionUnit.JawLeft | FacsActionUnit.JawRight | FacsActionUnit.Corrugator | FacsActionUnit.LeftBrowLowerer | FacsActionUnit.LeftOuterBrowRaiser | FacsActionUnit.LeftNoseWrinkler | FacsActionUnit.LeftInnerBrowRaiser | FacsActionUnit.RightBrowLowerer | FacsActionUnit.RightOuterBrowRaiser | FacsActionUnit.RightInnerBrowRaiser | FacsActionUnit.RightNoseWrinkler | FacsActionUnit.EyesLookDown | FacsActionUnit.EyesLookLeft | FacsActionUnit.EyesLookUp | FacsActionUnit.EyesLookRight | FacsActionUnit.LeftCheekRaiser | FacsActionUnit.LeftEyeUpperLidRaiser | FacsActionUnit.LeftEyeClosed | FacsActionUnit.RightCheekRaiser | FacsActionUnit.RightEyeUpperLidRaiser | FacsActionUnit.RightEyeClosed | FacsActionUnit.TongueDown | FacsActionUnit.TongueOut | FacsActionUnit.TongueUp;
11242
- /**
11243
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType)
11244
- */
11245
- export namespace FeedRankingScoreType {
11246
- /**
11247
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Content)
11248
- */
11249
- export interface Content extends globalThis.EnumItem {
11250
- Name: "Content";
11251
- Value: 0;
11252
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11253
- }
11254
- export const Content: Content;
11255
- /**
11256
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Final)
11257
- */
11258
- export interface Final extends globalThis.EnumItem {
11259
- Name: "Final";
11260
- Value: 1;
11261
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11262
- }
11263
- export const Final: Final;
11264
- /**
11265
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#GameJoin)
11266
- */
11267
- export interface GameJoin extends globalThis.EnumItem {
11268
- Name: "GameJoin";
11269
- Value: 2;
11270
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11271
- }
11272
- export const GameJoin: GameJoin;
11273
- /**
11274
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Interaction)
11275
- */
11276
- export interface Interaction extends globalThis.EnumItem {
11277
- Name: "Interaction";
11278
- Value: 3;
11279
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11280
- }
11281
- export const Interaction: Interaction;
11282
- /**
11283
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Sharing)
11284
- */
11285
- export interface Sharing extends globalThis.EnumItem {
11286
- Name: "Sharing";
11287
- Value: 4;
11288
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11289
- }
11290
- export const Sharing: Sharing;
11291
- export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FeedRankingScoreType>;
11292
- export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FeedRankingScoreType | undefined;
11293
- export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FeedRankingScoreType | undefined;
11294
- }
11295
- export type FeedRankingScoreType = FeedRankingScoreType.Content | FeedRankingScoreType.Final | FeedRankingScoreType.GameJoin | FeedRankingScoreType.Interaction | FeedRankingScoreType.Sharing;
11296
11287
  /**
11297
11288
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FieldOfViewMode)
11298
11289
  */
@@ -14190,11 +14181,20 @@ declare namespace Enum {
14190
14181
  EnumType: typeof globalThis.Enum.HttpError;
14191
14182
  }
14192
14183
  export const ServerProtocolError: ServerProtocolError;
14184
+ /**
14185
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpError#CreatorEnvironmentsNotSupportedByService)
14186
+ */
14187
+ export interface CreatorEnvironmentsNotSupportedByService extends globalThis.EnumItem {
14188
+ Name: "CreatorEnvironmentsNotSupportedByService";
14189
+ Value: 15;
14190
+ EnumType: typeof globalThis.Enum.HttpError;
14191
+ }
14192
+ export const CreatorEnvironmentsNotSupportedByService: CreatorEnvironmentsNotSupportedByService;
14193
14193
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpError>;
14194
14194
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpError | undefined;
14195
14195
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpError | undefined;
14196
14196
  }
14197
- export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown | HttpError.ConnectionClosed | HttpError.ServerProtocolError;
14197
+ export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown | HttpError.ConnectionClosed | HttpError.ServerProtocolError | HttpError.CreatorEnvironmentsNotSupportedByService;
14198
14198
  /**
14199
14199
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpRequestType)
14200
14200
  */
@@ -15119,7 +15119,7 @@ declare namespace Enum {
15119
15119
  */
15120
15120
  export namespace InputActionType {
15121
15121
  /**
15122
- * The `InputAction` will receive boolean values from button inputs, for example `true`/`false` on press/release from inputs such as `KeyCode.ButtonA` or `KeyCode.E`.
15122
+ * The `InputAction` will receive boolean values from button inputs, for example `true`/`false` on press/release from inputs such as `KeyCode.ButtonA` or `KeyCode.E`. This setting also exposes the `UIButton` property on child `InputBindings`, allowing you to easily hook up press or release of a `GuiButton` for the action.
15123
15123
  *
15124
15124
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Bool)
15125
15125
  */
@@ -15130,7 +15130,7 @@ declare namespace Enum {
15130
15130
  }
15131
15131
  export const Bool: Bool;
15132
15132
  /**
15133
- * The `InputAction` will receive numerical values, generally from analog gamepad triggers such as `KeyCode.ButtonL2` or `KeyCode.ButtonR2`.
15133
+ * The `InputAction` will receive numerical values, generally from analog gamepad triggers such as `KeyCode.ButtonL2` or `KeyCode.ButtonR2`. This setting also exposes the `Up` and `Down` properties on child `InputBindings`, allowing for boolean inputs or "1D" inputs as composite directions for the action.
15134
15134
  *
15135
15135
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction1D)
15136
15136
  */
@@ -15141,7 +15141,7 @@ declare namespace Enum {
15141
15141
  }
15142
15142
  export const Direction1D: Direction1D;
15143
15143
  /**
15144
- * The `InputAction` will receive `Vector2` values, generally from thumbstick inputs such as `KeyCode.Thumbstick1` and `KeyCode.Thumbstick2`.
15144
+ * The `InputAction` will receive `Vector2` values, generally from thumbstick inputs such as `KeyCode.Thumbstick1` and `KeyCode.Thumbstick2`. This setting also exposes the `Up`, `Down`, `Left`, and `Right` properties on child `InputBindings`, allowing for "2D" inputs as composite directions for the action.
15145
15145
  *
15146
15146
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction2D)
15147
15147
  */
@@ -15152,6 +15152,8 @@ declare namespace Enum {
15152
15152
  }
15153
15153
  export const Direction2D: Direction2D;
15154
15154
  /**
15155
+ * The `InputAction` will receive `Vector3` values from inputs assigned to the `Up`, `Down`, `Left`, `Right`, `Forward`, and/or `Backward` properties on child `InputBindings`, allowing for "3D" inputs as composite directions for the action.
15156
+ *
15155
15157
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction3D)
15156
15158
  */
15157
15159
  export interface Direction3D extends globalThis.EnumItem {
@@ -19194,6 +19196,42 @@ declare namespace Enum {
19194
19196
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LocationType | undefined;
19195
19197
  }
19196
19198
  export type LocationType = LocationType.Character | LocationType.Camera | LocationType.ObjectPosition;
19199
+ /**
19200
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode)
19201
+ */
19202
+ export namespace LuauTypeCheckMode {
19203
+ /**
19204
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#NoCheck)
19205
+ */
19206
+ export interface NoCheck extends globalThis.EnumItem {
19207
+ Name: "NoCheck";
19208
+ Value: 0;
19209
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
19210
+ }
19211
+ export const NoCheck: NoCheck;
19212
+ /**
19213
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#Nonstrict)
19214
+ */
19215
+ export interface Nonstrict extends globalThis.EnumItem {
19216
+ Name: "Nonstrict";
19217
+ Value: 1;
19218
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
19219
+ }
19220
+ export const Nonstrict: Nonstrict;
19221
+ /**
19222
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#Strict)
19223
+ */
19224
+ export interface Strict extends globalThis.EnumItem {
19225
+ Name: "Strict";
19226
+ Value: 2;
19227
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
19228
+ }
19229
+ export const Strict: Strict;
19230
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LuauTypeCheckMode>;
19231
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LuauTypeCheckMode | undefined;
19232
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
19233
+ }
19234
+ export type LuauTypeCheckMode = LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
19197
19235
  /**
19198
19236
  * The status of the BulkPurchasePrompt after player interaction.
19199
19237
  *
@@ -20523,6 +20561,10 @@ declare namespace Enum {
20523
20561
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
20524
20562
  }
20525
20563
  export const StreamingMesh: StreamingMesh;
20564
+ /**
20565
+ * @deprecated renamed to StreamingMesh
20566
+ */
20567
+ export const Enabled: StreamingMesh;
20526
20568
  /**
20527
20569
  * A lower resolution mesh will not be displayed.
20528
20570
  *
@@ -22902,10 +22944,14 @@ declare namespace Enum {
22902
22944
  }
22903
22945
  export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
22904
22946
  /**
22947
+ * This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
22948
+ *
22905
22949
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput)
22906
22950
  */
22907
22951
  export namespace PreferredInput {
22908
22952
  /**
22953
+ * The player has connected or most recently interacted with a keyboard or mouse.
22954
+ *
22909
22955
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#KeyboardAndMouse)
22910
22956
  */
22911
22957
  export interface KeyboardAndMouse extends globalThis.EnumItem {
@@ -22915,6 +22961,8 @@ declare namespace Enum {
22915
22961
  }
22916
22962
  export const KeyboardAndMouse: KeyboardAndMouse;
22917
22963
  /**
22964
+ * The player has connected or most recently interacted with a gamepad.
22965
+ *
22918
22966
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Gamepad)
22919
22967
  */
22920
22968
  export interface Gamepad extends globalThis.EnumItem {
@@ -22924,6 +22972,8 @@ declare namespace Enum {
22924
22972
  }
22925
22973
  export const Gamepad: Gamepad;
22926
22974
  /**
22975
+ * The player's device has touch capability and no other input method is available or connected.
22976
+ *
22927
22977
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Touch)
22928
22978
  */
22929
22979
  export interface Touch extends globalThis.EnumItem {
@@ -23984,6 +24034,123 @@ declare namespace Enum {
23984
24034
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RaycastFilterType | undefined;
23985
24035
  }
23986
24036
  export type RaycastFilterType = RaycastFilterType.Exclude | RaycastFilterType.Include;
24037
+ /**
24038
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType)
24039
+ */
24040
+ export namespace RecommendationActionType {
24041
+ /**
24042
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#AddReaction)
24043
+ */
24044
+ export interface AddReaction extends globalThis.EnumItem {
24045
+ Name: "AddReaction";
24046
+ Value: 0;
24047
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24048
+ }
24049
+ export const AddReaction: AddReaction;
24050
+ /**
24051
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#RemoveReaction)
24052
+ */
24053
+ export interface RemoveReaction extends globalThis.EnumItem {
24054
+ Name: "RemoveReaction";
24055
+ Value: 1;
24056
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24057
+ }
24058
+ export const RemoveReaction: RemoveReaction;
24059
+ /**
24060
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Share)
24061
+ */
24062
+ export interface Share extends globalThis.EnumItem {
24063
+ Name: "Share";
24064
+ Value: 2;
24065
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24066
+ }
24067
+ export const Share: Share;
24068
+ /**
24069
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Report)
24070
+ */
24071
+ export interface Report extends globalThis.EnumItem {
24072
+ Name: "Report";
24073
+ Value: 3;
24074
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24075
+ }
24076
+ export const Report: Report;
24077
+ /**
24078
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Comment)
24079
+ */
24080
+ export interface Comment extends globalThis.EnumItem {
24081
+ Name: "Comment";
24082
+ Value: 4;
24083
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24084
+ }
24085
+ export const Comment: Comment;
24086
+ /**
24087
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Play)
24088
+ */
24089
+ export interface Play extends globalThis.EnumItem {
24090
+ Name: "Play";
24091
+ Value: 5;
24092
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24093
+ }
24094
+ export const Play: Play;
24095
+ /**
24096
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Purchase)
24097
+ */
24098
+ export interface Purchase extends globalThis.EnumItem {
24099
+ Name: "Purchase";
24100
+ Value: 6;
24101
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24102
+ }
24103
+ export const Purchase: Purchase;
24104
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationActionType>;
24105
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationActionType | undefined;
24106
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationActionType | undefined;
24107
+ }
24108
+ export type RecommendationActionType = RecommendationActionType.AddReaction | RecommendationActionType.RemoveReaction | RecommendationActionType.Share | RecommendationActionType.Report | RecommendationActionType.Comment | RecommendationActionType.Play | RecommendationActionType.Purchase;
24109
+ /**
24110
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType)
24111
+ */
24112
+ export namespace RecommendationImpressionType {
24113
+ /**
24114
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#View)
24115
+ */
24116
+ export interface View extends globalThis.EnumItem {
24117
+ Name: "View";
24118
+ Value: 0;
24119
+ EnumType: typeof globalThis.Enum.RecommendationImpressionType;
24120
+ }
24121
+ export const View: View;
24122
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationImpressionType>;
24123
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationImpressionType | undefined;
24124
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationImpressionType | undefined;
24125
+ }
24126
+ export type RecommendationImpressionType = RecommendationImpressionType.View;
24127
+ /**
24128
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility)
24129
+ */
24130
+ export namespace RecommendationItemVisibility {
24131
+ /**
24132
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility#Private)
24133
+ */
24134
+ export interface Private extends globalThis.EnumItem {
24135
+ Name: "Private";
24136
+ Value: 0;
24137
+ EnumType: typeof globalThis.Enum.RecommendationItemVisibility;
24138
+ }
24139
+ export const Private: Private;
24140
+ /**
24141
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility#Public)
24142
+ */
24143
+ export interface Public extends globalThis.EnumItem {
24144
+ Name: "Public";
24145
+ Value: 1;
24146
+ EnumType: typeof globalThis.Enum.RecommendationItemVisibility;
24147
+ }
24148
+ export const Public: Public;
24149
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationItemVisibility>;
24150
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationItemVisibility | undefined;
24151
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationItemVisibility | undefined;
24152
+ }
24153
+ export type RecommendationItemVisibility = RecommendationItemVisibility.Private | RecommendationItemVisibility.Public;
23987
24154
  /**
23988
24155
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RejectCharacterDeletions)
23989
24156
  */
@@ -32326,13 +32493,13 @@ declare namespace Enum {
32326
32493
  }
32327
32494
  export type UserCFrame = UserCFrame.Head | UserCFrame.LeftHand | UserCFrame.RightHand | UserCFrame.Floor;
32328
32495
  /**
32329
- * The **UserInputState** enum describes the state of an input that is currently or was recently performed.
32496
+ * This enum describes the state of an input that is currently or was recently performed.
32330
32497
  *
32331
32498
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserInputState)
32332
32499
  */
32333
32500
  export namespace UserInputState {
32334
32501
  /**
32335
- * Occurs when an `InputObject` starts to interact with the game. For example, a mouse button down, or a key down, or when a touch begins touching the screen.
32502
+ * Occurs when an `InputObject` starts to interact with the experience. For example, a mouse button down, a key down, or when the player begins touching the screen.
32336
32503
  *
32337
32504
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserInputState#Begin)
32338
32505
  */
@@ -32343,7 +32510,7 @@ declare namespace Enum {
32343
32510
  }
32344
32511
  export const Begin: Begin;
32345
32512
  /**
32346
- * Occurs each frame an `InputObject` has already begun interacting with the game and part of its state is changing. For example, a movement of the mouse position, a gamepad thumbstick, gamepad trigger button, or screen touch point.
32513
+ * Occurs each frame an `InputObject` has already begun interacting with the experience and part of its state is changing. For example, movement of the mouse position, a gamepad thumbstick movement, an analog gamepad trigger button change, or screen touch point change.
32347
32514
  *
32348
32515
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserInputState#Change)
32349
32516
  */
@@ -32354,7 +32521,7 @@ declare namespace Enum {
32354
32521
  }
32355
32522
  export const Change: Change;
32356
32523
  /**
32357
- * When an `InputObject` finishes interacting with the game. For example, a mouse button up, or a key up, or when a touch stops touching the screen.
32524
+ * Occurs when an `InputObject` finishes interacting with the experience. For example, a mouse button up, a key up, or when the player stops touching the screen.
32358
32525
  *
32359
32526
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserInputState#End)
32360
32527
  */
@@ -32365,7 +32532,7 @@ declare namespace Enum {
32365
32532
  }
32366
32533
  export const End: End;
32367
32534
  /**
32368
- * A special circumstance state that indicates this input is no longer relevant, particularly with `ContextActionService`. For example, binding two action-handling functions will cause the first to Cancel if an input was already in-progress when the second was bound.
32535
+ * A special circumstance state that indicates this input is no longer relevant, particularly with `ContextActionService`. For example, binding two action-handling functions will cause the first to `Cancel` if an input was already in-progress when the second was bound.
32369
32536
  *
32370
32537
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserInputState#Cancel)
32371
32538
  */
@@ -32376,7 +32543,7 @@ declare namespace Enum {
32376
32543
  }
32377
32544
  export const Cancel: Cancel;
32378
32545
  /**
32379
- * A state that should never be seen in a game, essentially just marks the end of the enum.
32546
+ * A state that should never be seen in an experience; essentially just marks the end of the enum.
32380
32547
  *
32381
32548
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserInputState#None)
32382
32549
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.858",
3
+ "version": "1.0.860",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },