@rbxts/types 1.0.905 → 1.0.906

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.
@@ -218,6 +218,7 @@ interface Services {
218
218
  TextService: TextService;
219
219
  TextureGenerationService: TextureGenerationService;
220
220
  ToastNotificationService: ToastNotificationService;
221
+ TraceRouteService: TraceRouteService;
221
222
  TracerService: TracerService;
222
223
  TutorialService: TutorialService;
223
224
  TweenService: TweenService;
@@ -240,6 +241,7 @@ interface Services {
240
241
  WebSocketService: WebSocketService;
241
242
  WebViewService: WebViewService;
242
243
  Workspace: Workspace;
244
+ WrapDeformMeshProvider: WrapDeformMeshProvider;
243
245
  }
244
246
  interface CreatableInstances {
245
247
  Accessory: Accessory;
@@ -10603,7 +10605,7 @@ interface CaptureService extends Instance {
10603
10605
  * @param captureTypeFilters An array of `CaptureType`.
10604
10606
  * @returns Tuple of (result: `ReadCapturesFromGalleryResult`, capturesPages: `CapturesPages`)
10605
10607
  */
10606
- ReadCapturesFromGalleryAsync(this: CaptureService, captureTypeFilters?: Array<unknown>): unknown;
10608
+ ReadCapturesFromGalleryAsync(this: CaptureService, captureTypeFilters?: Array<unknown>, readFromAllEligibleExperiences?: boolean): unknown;
10607
10609
  /**
10608
10610
  * Initiates a video capture recording.
10609
10611
  *
@@ -12445,7 +12447,7 @@ interface AnimationConstraint extends Constraint {
12445
12447
  */
12446
12448
  readonly C1: CFrame;
12447
12449
  /**
12448
- * Toggles whether the `AnimationConstraint` is kinematic or physically simulated.
12450
+ * Toggles whether the constraint is kinematic or physically simulated.
12449
12451
  *
12450
12452
  * - **ThreadSafety**: ReadSafe
12451
12453
  *
@@ -12491,7 +12493,7 @@ interface AnimationConstraint extends Constraint {
12491
12493
  */
12492
12494
  readonly Part1: BasePart | undefined;
12493
12495
  /**
12494
- * Describes the current animation offset of the `AnimationConstraint` joint.
12496
+ * Describes the current animation offset of the constraint joint.
12495
12497
  *
12496
12498
  * - **ThreadSafety**: ReadSafe
12497
12499
  *
@@ -27078,13 +27080,14 @@ interface LocalizationTable extends Instance {
27078
27080
  */
27079
27081
  GetString(this: LocalizationTable, targetLocaleId: string, key: string): string;
27080
27082
  /**
27081
- * Returns a `Translator` for entries in this LocalizationTable, in the specified language.
27083
+ * Returns a `Translator` for entries in this LocalizationTable, in the specified locale.
27082
27084
  *
27083
27085
  * - **ThreadSafety**: Unsafe
27084
27086
  *
27085
27087
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LocalizationTable#GetTranslator)
27086
27088
  * @param this A LocalizationTable is a database of translations. It contains source strings and translations for various languages.
27087
27089
  * @param localeId
27090
+ * @returns The `Translator` instance for the specified locale.
27088
27091
  */
27089
27092
  GetTranslator(this: LocalizationTable, localeId: string): Translator;
27090
27093
  /**
@@ -36927,6 +36930,20 @@ interface ReflectionService extends Instance {
36927
36930
  * @returns A list of `ReflectedClass` dictionaries with reflection information for each class that matches the filter criteria.
36928
36931
  */
36929
36932
  GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
36933
+ /**
36934
+ * - **ThreadSafety**: Unsafe
36935
+ * - **Tags**: CustomLuaState
36936
+ *
36937
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetEventsOfClass)
36938
+ */
36939
+ GetEventsOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
36940
+ /**
36941
+ * - **ThreadSafety**: Unsafe
36942
+ * - **Tags**: CustomLuaState
36943
+ *
36944
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetMethodsOfClass)
36945
+ */
36946
+ GetMethodsOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
36930
36947
  /**
36931
36948
  * Returns a list of properties for a given class with filters applied.
36932
36949
  *
@@ -43543,6 +43560,13 @@ interface TextChatService extends Instance {
43543
43560
  * @returns A list of users who could participate in the direct chat request. If none of the users can direct chat with the requesterUserId, the result is an empty array.
43544
43561
  */
43545
43562
  CanUsersDirectChatAsync(this: TextChatService, requesterUserId: number, userIds: Array<unknown>): Array<unknown>;
43563
+ /**
43564
+ * - **ThreadSafety**: Unsafe
43565
+ * - **Tags**: Yields
43566
+ *
43567
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#GetChatGroupsAsync)
43568
+ */
43569
+ GetChatGroupsAsync(this: TextChatService, players: Array<Instance>): Array<unknown>;
43546
43570
  /**
43547
43571
  * Fires when `TextChatService:DisplayBubble()` is called.
43548
43572
  *
@@ -43976,6 +44000,21 @@ interface TouchTransmitter extends Instance {
43976
44000
  */
43977
44001
  readonly _nominal_TouchTransmitter: unique symbol;
43978
44002
  }
44003
+ /**
44004
+ * - **Tags**: NotCreatable, Service
44005
+ *
44006
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TraceRouteService)
44007
+ */
44008
+ interface TraceRouteService extends Instance {
44009
+ /**
44010
+ * **DO NOT USE!**
44011
+ *
44012
+ * This field exists to force TypeScript to recognize this as a nominal type
44013
+ * @hidden
44014
+ * @deprecated
44015
+ */
44016
+ readonly _nominal_TraceRouteService: unique symbol;
44017
+ }
43979
44018
  /**
43980
44019
  * - **Tags**: NotCreatable, Service, NotReplicated
43981
44020
  *
@@ -46058,7 +46097,7 @@ interface UserInputService extends Instance {
46058
46097
  CFrame
46059
46098
  ]>;
46060
46099
  /**
46061
- * Returns the currently `TextBox` the client is currently focused on.
46100
+ * Returns the `TextBox` the client is currently focused on.
46062
46101
  *
46063
46102
  * - **ThreadSafety**: Unsafe
46064
46103
  *
@@ -47871,6 +47910,13 @@ interface VoiceChatService extends Instance {
47871
47910
  * @deprecated
47872
47911
  */
47873
47912
  readonly _nominal_VoiceChatService: unique symbol;
47913
+ /**
47914
+ * - **ThreadSafety**: Unsafe
47915
+ * - **Tags**: Yields
47916
+ *
47917
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoiceChatService#GetChatGroupsAsync)
47918
+ */
47919
+ GetChatGroupsAsync(this: VoiceChatService, players: Array<Instance>): Array<unknown>;
47874
47920
  /**
47875
47921
  * Returns whether or not the given user has voice enabled.
47876
47922
  *
@@ -48079,6 +48125,21 @@ interface Wire extends Instance {
48079
48125
  */
48080
48126
  TargetName: string;
48081
48127
  }
48128
+ /**
48129
+ * - **Tags**: NotCreatable, Service, NotReplicated
48130
+ *
48131
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapDeformMeshProvider)
48132
+ */
48133
+ interface WrapDeformMeshProvider extends Instance {
48134
+ /**
48135
+ * **DO NOT USE!**
48136
+ *
48137
+ * This field exists to force TypeScript to recognize this as a nominal type
48138
+ * @hidden
48139
+ * @deprecated
48140
+ */
48141
+ readonly _nominal_WrapDeformMeshProvider: unique symbol;
48142
+ }
48082
48143
  /**
48083
48144
  * `WrapTextureTransfer` allows a parent `Decal` to be wrapped around its parent `MeshPart` based on the cage of its `WrapTarget`.
48084
48145
  *
@@ -239,6 +239,7 @@ interface Services {
239
239
  TextService: TextService;
240
240
  TextureGenerationService: TextureGenerationService;
241
241
  ToastNotificationService: ToastNotificationService;
242
+ TraceRouteService: TraceRouteService;
242
243
  TracerService: TracerService;
243
244
  TutorialService: TutorialService;
244
245
  TweenService: TweenService;
@@ -262,6 +263,7 @@ interface Services {
262
263
  WebSocketService: WebSocketService;
263
264
  WebViewService: WebViewService;
264
265
  Workspace: Workspace;
266
+ WrapDeformMeshProvider: WrapDeformMeshProvider;
265
267
  }
266
268
  interface CreatableInstances {
267
269
  Accessory: Accessory;
@@ -14987,6 +14989,21 @@ interface TouchTransmitter extends Instance {
14987
14989
  */
14988
14990
  readonly _nominal_TouchTransmitter: unique symbol;
14989
14991
  }
14992
+ /**
14993
+ * - **Tags**: NotCreatable, Service
14994
+ *
14995
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TraceRouteService)
14996
+ */
14997
+ interface TraceRouteService extends Instance {
14998
+ /**
14999
+ * **DO NOT USE!**
15000
+ *
15001
+ * This field exists to force TypeScript to recognize this as a nominal type
15002
+ * @hidden
15003
+ * @deprecated
15004
+ */
15005
+ readonly _nominal_TraceRouteService: unique symbol;
15006
+ }
14990
15007
  /**
14991
15008
  * - **Tags**: NotCreatable, Service, NotReplicated
14992
15009
  *
@@ -16084,6 +16101,21 @@ interface Wire extends Instance {
16084
16101
  */
16085
16102
  readonly _nominal_Wire: unique symbol;
16086
16103
  }
16104
+ /**
16105
+ * - **Tags**: NotCreatable, Service, NotReplicated
16106
+ *
16107
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapDeformMeshProvider)
16108
+ */
16109
+ interface WrapDeformMeshProvider extends Instance {
16110
+ /**
16111
+ * **DO NOT USE!**
16112
+ *
16113
+ * This field exists to force TypeScript to recognize this as a nominal type
16114
+ * @hidden
16115
+ * @deprecated
16116
+ */
16117
+ readonly _nominal_WrapDeformMeshProvider: unique symbol;
16118
+ }
16087
16119
  /**
16088
16120
  * `WrapTextureTransfer` allows a parent `Decal` to be wrapped around its parent `MeshPart` based on the cage of its `WrapTarget`.
16089
16121
  *
@@ -8729,6 +8729,51 @@ declare namespace Enum {
8729
8729
  EnumType: typeof globalThis.Enum.ConnectionError;
8730
8730
  }
8731
8731
  export const DisconnectVerboselyModeratedGame: DisconnectVerboselyModeratedGame;
8732
+ /**
8733
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorNotAgeVerified)
8734
+ */
8735
+ export interface DisconnectCollaboratorNotAgeVerified extends globalThis.EnumItem {
8736
+ Name: "DisconnectCollaboratorNotAgeVerified";
8737
+ Value: 310;
8738
+ EnumType: typeof globalThis.Enum.ConnectionError;
8739
+ }
8740
+ export const DisconnectCollaboratorNotAgeVerified: DisconnectCollaboratorNotAgeVerified;
8741
+ /**
8742
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorTrustedConnectionsRequired)
8743
+ */
8744
+ export interface DisconnectCollaboratorTrustedConnectionsRequired extends globalThis.EnumItem {
8745
+ Name: "DisconnectCollaboratorTrustedConnectionsRequired";
8746
+ Value: 311;
8747
+ EnumType: typeof globalThis.Enum.ConnectionError;
8748
+ }
8749
+ export const DisconnectCollaboratorTrustedConnectionsRequired: DisconnectCollaboratorTrustedConnectionsRequired;
8750
+ /**
8751
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorOwnerActionRequired)
8752
+ */
8753
+ export interface DisconnectCollaboratorOwnerActionRequired extends globalThis.EnumItem {
8754
+ Name: "DisconnectCollaboratorOwnerActionRequired";
8755
+ Value: 312;
8756
+ EnumType: typeof globalThis.Enum.ConnectionError;
8757
+ }
8758
+ export const DisconnectCollaboratorOwnerActionRequired: DisconnectCollaboratorOwnerActionRequired;
8759
+ /**
8760
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorTooManyCollaborators)
8761
+ */
8762
+ export interface DisconnectCollaboratorTooManyCollaborators extends globalThis.EnumItem {
8763
+ Name: "DisconnectCollaboratorTooManyCollaborators";
8764
+ Value: 313;
8765
+ EnumType: typeof globalThis.Enum.ConnectionError;
8766
+ }
8767
+ export const DisconnectCollaboratorTooManyCollaborators: DisconnectCollaboratorTooManyCollaborators;
8768
+ /**
8769
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorUnknownError)
8770
+ */
8771
+ export interface DisconnectCollaboratorUnknownError extends globalThis.EnumItem {
8772
+ Name: "DisconnectCollaboratorUnknownError";
8773
+ Value: 314;
8774
+ EnumType: typeof globalThis.Enum.ConnectionError;
8775
+ }
8776
+ export const DisconnectCollaboratorUnknownError: DisconnectCollaboratorUnknownError;
8732
8777
  /**
8733
8778
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
8734
8779
  */
@@ -8958,7 +9003,7 @@ declare namespace Enum {
8958
9003
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
8959
9004
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
8960
9005
  }
8961
- export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
9006
+ export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.DisconnectCollaboratorNotAgeVerified | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequired | ConnectionError.DisconnectCollaboratorOwnerActionRequired | ConnectionError.DisconnectCollaboratorTooManyCollaborators | ConnectionError.DisconnectCollaboratorUnknownError | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
8962
9007
  /**
8963
9008
  * Used to determine the connection state of the client to the game server.
8964
9009
  *
@@ -9256,6 +9301,8 @@ declare namespace Enum {
9256
9301
  }
9257
9302
  export const Captures: Captures;
9258
9303
  /**
9304
+ * The **Avatar Switcher** allows users to change their platform avatar.
9305
+ *
9259
9306
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CoreGuiType#AvatarSwitcher)
9260
9307
  */
9261
9308
  export interface AvatarSwitcher extends globalThis.EnumItem {
@@ -9526,19 +9573,19 @@ declare namespace Enum {
9526
9573
  }
9527
9574
  export const FirstSlice: FirstSlice;
9528
9575
  /**
9529
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType#NonFirstSliceSlice)
9576
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType#NonFirstSlice)
9530
9577
  */
9531
- export interface NonFirstSliceSlice extends globalThis.EnumItem {
9532
- Name: "NonFirstSliceSlice";
9578
+ export interface NonFirstSlice extends globalThis.EnumItem {
9579
+ Name: "NonFirstSlice";
9533
9580
  Value: 2;
9534
9581
  EnumType: typeof globalThis.Enum.DataModelExtractorFileType;
9535
9582
  }
9536
- export const NonFirstSliceSlice: NonFirstSliceSlice;
9583
+ export const NonFirstSlice: NonFirstSlice;
9537
9584
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataModelExtractorFileType>;
9538
9585
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataModelExtractorFileType | undefined;
9539
9586
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataModelExtractorFileType | undefined;
9540
9587
  }
9541
- export type DataModelExtractorFileType = DataModelExtractorFileType.PlaceFile | DataModelExtractorFileType.FirstSlice | DataModelExtractorFileType.NonFirstSliceSlice;
9588
+ export type DataModelExtractorFileType = DataModelExtractorFileType.PlaceFile | DataModelExtractorFileType.FirstSlice | DataModelExtractorFileType.NonFirstSlice;
9542
9589
  /**
9543
9590
  * Indicates the type of data store request being made.
9544
9591
  *
@@ -11010,6 +11057,42 @@ declare namespace Enum {
11010
11057
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DialogTone | undefined;
11011
11058
  }
11012
11059
  export type DialogTone = DialogTone.Neutral | DialogTone.Friendly | DialogTone.Enemy;
11060
+ /**
11061
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplayScalingMode)
11062
+ */
11063
+ export namespace DisplayScalingMode {
11064
+ /**
11065
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplayScalingMode#Default)
11066
+ */
11067
+ export interface Default extends globalThis.EnumItem {
11068
+ Name: "Default";
11069
+ Value: 0;
11070
+ EnumType: typeof globalThis.Enum.DisplayScalingMode;
11071
+ }
11072
+ export const Default: Default;
11073
+ /**
11074
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplayScalingMode#Legacy)
11075
+ */
11076
+ export interface Legacy extends globalThis.EnumItem {
11077
+ Name: "Legacy";
11078
+ Value: 1;
11079
+ EnumType: typeof globalThis.Enum.DisplayScalingMode;
11080
+ }
11081
+ export const Legacy: Legacy;
11082
+ /**
11083
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplayScalingMode#Responsive)
11084
+ */
11085
+ export interface Responsive extends globalThis.EnumItem {
11086
+ Name: "Responsive";
11087
+ Value: 2;
11088
+ EnumType: typeof globalThis.Enum.DisplayScalingMode;
11089
+ }
11090
+ export const Responsive: Responsive;
11091
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DisplayScalingMode>;
11092
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DisplayScalingMode | undefined;
11093
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DisplayScalingMode | undefined;
11094
+ }
11095
+ export type DisplayScalingMode = DisplayScalingMode.Default | DisplayScalingMode.Legacy | DisplayScalingMode.Responsive;
11013
11096
  /**
11014
11097
  * This enum is used with `GuiService.ViewportDisplaySize` to indicate the internally-categorized rendering size of the viewport.
11015
11098
  *
@@ -18978,6 +19061,33 @@ declare namespace Enum {
18978
19061
  EnumType: typeof globalThis.Enum.KeyCode;
18979
19062
  }
18980
19063
  export const Touch: Touch;
19064
+ /**
19065
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseWheel)
19066
+ */
19067
+ export interface MouseWheel extends globalThis.EnumItem {
19068
+ Name: "MouseWheel";
19069
+ Value: 1035;
19070
+ EnumType: typeof globalThis.Enum.KeyCode;
19071
+ }
19072
+ export const MouseWheel: MouseWheel;
19073
+ /**
19074
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TrackpadPan)
19075
+ */
19076
+ export interface TrackpadPan extends globalThis.EnumItem {
19077
+ Name: "TrackpadPan";
19078
+ Value: 1040;
19079
+ EnumType: typeof globalThis.Enum.KeyCode;
19080
+ }
19081
+ export const TrackpadPan: TrackpadPan;
19082
+ /**
19083
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TrackpadPinch)
19084
+ */
19085
+ export interface TrackpadPinch extends globalThis.EnumItem {
19086
+ Name: "TrackpadPinch";
19087
+ Value: 1045;
19088
+ EnumType: typeof globalThis.Enum.KeyCode;
19089
+ }
19090
+ export const TrackpadPinch: TrackpadPinch;
18981
19091
  /**
18982
19092
  * **Deprecated:**
18983
19093
  *
@@ -20082,7 +20192,7 @@ declare namespace Enum {
20082
20192
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
20083
20193
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
20084
20194
  }
20085
- export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.Touch | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
20195
+ export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.Touch | KeyCode.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
20086
20196
  /**
20087
20197
  * Describes the interpolation method between two keys.
20088
20198
  *
@@ -26945,11 +27055,20 @@ declare namespace Enum {
26945
27055
  EnumType: typeof globalThis.Enum.ReservedHighlightId;
26946
27056
  }
26947
27057
  export const Active: Active;
27058
+ /**
27059
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#NegatedPart)
27060
+ */
27061
+ export interface NegatedPart extends globalThis.EnumItem {
27062
+ Name: "NegatedPart";
27063
+ Value: 1048576;
27064
+ EnumType: typeof globalThis.Enum.ReservedHighlightId;
27065
+ }
27066
+ export const NegatedPart: NegatedPart;
26948
27067
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReservedHighlightId>;
26949
27068
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReservedHighlightId | undefined;
26950
27069
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReservedHighlightId | undefined;
26951
27070
  }
26952
- export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Selection | ReservedHighlightId.Hover | ReservedHighlightId.Active;
27071
+ export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Selection | ReservedHighlightId.Hover | ReservedHighlightId.Active | ReservedHighlightId.NegatedPart;
26953
27072
  /**
26954
27073
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose)
26955
27074
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.905",
3
+ "version": "1.0.906",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },