@rbxts/types 1.0.905 → 1.0.907

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.
@@ -148,6 +148,7 @@ interface Services {
148
148
  PlaceStatsService: PlaceStatsService;
149
149
  PlatformCloudStorageService: PlatformCloudStorageService;
150
150
  PlatformFriendsService: PlatformFriendsService;
151
+ PlatformLibraries: PlatformLibraries;
151
152
  PlayerDataService: PlayerDataService;
152
153
  PlayerHydrationService: PlayerHydrationService;
153
154
  Players: Players;
@@ -239,6 +240,7 @@ interface Services {
239
240
  TextService: TextService;
240
241
  TextureGenerationService: TextureGenerationService;
241
242
  ToastNotificationService: ToastNotificationService;
243
+ TraceRouteService: TraceRouteService;
242
244
  TracerService: TracerService;
243
245
  TutorialService: TutorialService;
244
246
  TweenService: TweenService;
@@ -262,6 +264,7 @@ interface Services {
262
264
  WebSocketService: WebSocketService;
263
265
  WebViewService: WebViewService;
264
266
  Workspace: Workspace;
267
+ WrapDeformMeshProvider: WrapDeformMeshProvider;
265
268
  }
266
269
  interface CreatableInstances {
267
270
  Accessory: Accessory;
@@ -722,6 +725,7 @@ interface Instances extends Services, CreatableInstances {
722
725
  QWidgetPluginGui: QWidgetPluginGui;
723
726
  RecommendationPages: RecommendationPages;
724
727
  RobloxSerializableInstance: RobloxSerializableInstance;
728
+ RolloutValidation: RolloutValidation;
725
729
  RootImportData: RootImportData;
726
730
  RunningAverageItemDouble: RunningAverageItemDouble;
727
731
  RunningAverageItemInt: RunningAverageItemInt;
@@ -10433,6 +10437,21 @@ interface PlatformFriendsService extends Instance {
10433
10437
  */
10434
10438
  readonly _nominal_PlatformFriendsService: unique symbol;
10435
10439
  }
10440
+ /**
10441
+ * - **Tags**: NotCreatable, Service
10442
+ *
10443
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlatformLibraries)
10444
+ */
10445
+ interface PlatformLibraries extends Instance {
10446
+ /**
10447
+ * **DO NOT USE!**
10448
+ *
10449
+ * This field exists to force TypeScript to recognize this as a nominal type
10450
+ * @hidden
10451
+ * @deprecated
10452
+ */
10453
+ readonly _nominal_PlatformLibraries: unique symbol;
10454
+ }
10436
10455
  /**
10437
10456
  * An object that represents a presently connected client to the experience.
10438
10457
  *
@@ -11780,6 +11799,21 @@ interface RobloxServerStorage extends Instance {
11780
11799
  */
11781
11800
  readonly _nominal_RobloxServerStorage: unique symbol;
11782
11801
  }
11802
+ /**
11803
+ * - **Tags**: NotCreatable
11804
+ *
11805
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
11806
+ */
11807
+ interface RolloutValidation extends Instance {
11808
+ /**
11809
+ * **DO NOT USE!**
11810
+ *
11811
+ * This field exists to force TypeScript to recognize this as a nominal type
11812
+ * @hidden
11813
+ * @deprecated
11814
+ */
11815
+ readonly _nominal_RolloutValidation: unique symbol;
11816
+ }
11783
11817
  /**
11784
11818
  * - **Tags**: NotCreatable, Service
11785
11819
  *
@@ -13888,10 +13922,6 @@ interface StudioService extends Instance {
13888
13922
  * - **ThreadSafety**: Unsafe
13889
13923
  *
13890
13924
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#GizmoRaycast)
13891
- * @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
13892
- * @param origin
13893
- * @param direction
13894
- * @param raycastParams
13895
13925
  */
13896
13926
  GizmoRaycast(this: StudioService, origin: Vector3, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
13897
13927
  /**
@@ -14987,6 +15017,21 @@ interface TouchTransmitter extends Instance {
14987
15017
  */
14988
15018
  readonly _nominal_TouchTransmitter: unique symbol;
14989
15019
  }
15020
+ /**
15021
+ * - **Tags**: NotCreatable, Service
15022
+ *
15023
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TraceRouteService)
15024
+ */
15025
+ interface TraceRouteService extends Instance {
15026
+ /**
15027
+ * **DO NOT USE!**
15028
+ *
15029
+ * This field exists to force TypeScript to recognize this as a nominal type
15030
+ * @hidden
15031
+ * @deprecated
15032
+ */
15033
+ readonly _nominal_TraceRouteService: unique symbol;
15034
+ }
14990
15035
  /**
14991
15036
  * - **Tags**: NotCreatable, Service, NotReplicated
14992
15037
  *
@@ -16084,6 +16129,21 @@ interface Wire extends Instance {
16084
16129
  */
16085
16130
  readonly _nominal_Wire: unique symbol;
16086
16131
  }
16132
+ /**
16133
+ * - **Tags**: NotCreatable, Service, NotReplicated
16134
+ *
16135
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapDeformMeshProvider)
16136
+ */
16137
+ interface WrapDeformMeshProvider extends Instance {
16138
+ /**
16139
+ * **DO NOT USE!**
16140
+ *
16141
+ * This field exists to force TypeScript to recognize this as a nominal type
16142
+ * @hidden
16143
+ * @deprecated
16144
+ */
16145
+ readonly _nominal_WrapDeformMeshProvider: unique symbol;
16146
+ }
16087
16147
  /**
16088
16148
  * `WrapTextureTransfer` allows a parent `Decal` to be wrapped around its parent `MeshPart` based on the cage of its `WrapTarget`.
16089
16149
  *
@@ -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
  *
@@ -16855,11 +16938,22 @@ declare namespace Enum {
16855
16938
  EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
16856
16939
  }
16857
16940
  export const SyncedAsDescendant: SyncedAsDescendant;
16941
+ /**
16942
+ * The `Instance` is not currently being synced because the root of its sync tree is `Errored`.
16943
+ *
16944
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#AncestorErrored)
16945
+ */
16946
+ export interface AncestorErrored extends globalThis.EnumItem {
16947
+ Name: "AncestorErrored";
16948
+ Value: 4;
16949
+ EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
16950
+ }
16951
+ export const AncestorErrored: AncestorErrored;
16858
16952
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InstanceFileSyncStatus>;
16859
16953
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InstanceFileSyncStatus | undefined;
16860
16954
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InstanceFileSyncStatus | undefined;
16861
16955
  }
16862
- export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant;
16956
+ export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant | InstanceFileSyncStatus.AncestorErrored;
16863
16957
  /**
16864
16958
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IntermediateMeshGenerationResult)
16865
16959
  */
@@ -18978,6 +19072,42 @@ declare namespace Enum {
18978
19072
  EnumType: typeof globalThis.Enum.KeyCode;
18979
19073
  }
18980
19074
  export const Touch: Touch;
19075
+ /**
19076
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseWheel)
19077
+ */
19078
+ export interface MouseWheel extends globalThis.EnumItem {
19079
+ Name: "MouseWheel";
19080
+ Value: 1035;
19081
+ EnumType: typeof globalThis.Enum.KeyCode;
19082
+ }
19083
+ export const MouseWheel: MouseWheel;
19084
+ /**
19085
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TrackpadPan)
19086
+ */
19087
+ export interface TrackpadPan extends globalThis.EnumItem {
19088
+ Name: "TrackpadPan";
19089
+ Value: 1040;
19090
+ EnumType: typeof globalThis.Enum.KeyCode;
19091
+ }
19092
+ export const TrackpadPan: TrackpadPan;
19093
+ /**
19094
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TrackpadPinch)
19095
+ */
19096
+ export interface TrackpadPinch extends globalThis.EnumItem {
19097
+ Name: "TrackpadPinch";
19098
+ Value: 1045;
19099
+ EnumType: typeof globalThis.Enum.KeyCode;
19100
+ }
19101
+ export const TrackpadPinch: TrackpadPinch;
19102
+ /**
19103
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseDelta)
19104
+ */
19105
+ export interface MouseDelta extends globalThis.EnumItem {
19106
+ Name: "MouseDelta";
19107
+ Value: 1048;
19108
+ EnumType: typeof globalThis.Enum.KeyCode;
19109
+ }
19110
+ export const MouseDelta: MouseDelta;
18981
19111
  /**
18982
19112
  * **Deprecated:**
18983
19113
  *
@@ -20082,7 +20212,7 @@ declare namespace Enum {
20082
20212
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
20083
20213
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
20084
20214
  }
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;
20215
+ 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.MouseDelta | 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
20216
  /**
20087
20217
  * Describes the interpolation method between two keys.
20088
20218
  *
@@ -26945,11 +27075,20 @@ declare namespace Enum {
26945
27075
  EnumType: typeof globalThis.Enum.ReservedHighlightId;
26946
27076
  }
26947
27077
  export const Active: Active;
27078
+ /**
27079
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#NegatedPart)
27080
+ */
27081
+ export interface NegatedPart extends globalThis.EnumItem {
27082
+ Name: "NegatedPart";
27083
+ Value: 1048576;
27084
+ EnumType: typeof globalThis.Enum.ReservedHighlightId;
27085
+ }
27086
+ export const NegatedPart: NegatedPart;
26948
27087
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReservedHighlightId>;
26949
27088
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReservedHighlightId | undefined;
26950
27089
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReservedHighlightId | undefined;
26951
27090
  }
26952
- export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Selection | ReservedHighlightId.Hover | ReservedHighlightId.Active;
27091
+ export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Selection | ReservedHighlightId.Hover | ReservedHighlightId.Active | ReservedHighlightId.NegatedPart;
26953
27092
  /**
26954
27093
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose)
26955
27094
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.905",
3
+ "version": "1.0.907",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },