@rbxts/types 1.0.883 → 1.0.885

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.
@@ -1722,6 +1722,42 @@ declare namespace Enum {
1722
1722
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimatorRetargetingMode | undefined;
1723
1723
  }
1724
1724
  export type AnimatorRetargetingMode = AnimatorRetargetingMode.Default | AnimatorRetargetingMode.Disabled | AnimatorRetargetingMode.Enabled;
1725
+ /**
1726
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference)
1727
+ */
1728
+ export namespace AnnotationChannelContentPreference {
1729
+ /**
1730
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference#None)
1731
+ */
1732
+ export interface None extends globalThis.EnumItem {
1733
+ Name: "None";
1734
+ Value: 0;
1735
+ EnumType: typeof globalThis.Enum.AnnotationChannelContentPreference;
1736
+ }
1737
+ export const None: None;
1738
+ /**
1739
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference#All)
1740
+ */
1741
+ export interface All extends globalThis.EnumItem {
1742
+ Name: "All";
1743
+ Value: 1;
1744
+ EnumType: typeof globalThis.Enum.AnnotationChannelContentPreference;
1745
+ }
1746
+ export const All: All;
1747
+ /**
1748
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference#Unknown)
1749
+ */
1750
+ export interface Unknown extends globalThis.EnumItem {
1751
+ Name: "Unknown";
1752
+ Value: 2;
1753
+ EnumType: typeof globalThis.Enum.AnnotationChannelContentPreference;
1754
+ }
1755
+ export const Unknown: Unknown;
1756
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationChannelContentPreference>;
1757
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationChannelContentPreference | undefined;
1758
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationChannelContentPreference | undefined;
1759
+ }
1760
+ export type AnnotationChannelContentPreference = AnnotationChannelContentPreference.None | AnnotationChannelContentPreference.All | AnnotationChannelContentPreference.Unknown;
1725
1761
  /**
1726
1762
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationEditingMode)
1727
1763
  */
@@ -1758,6 +1794,51 @@ declare namespace Enum {
1758
1794
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationEditingMode | undefined;
1759
1795
  }
1760
1796
  export type AnnotationEditingMode = AnnotationEditingMode.None | AnnotationEditingMode.PlacingNew | AnnotationEditingMode.WritingNew;
1797
+ /**
1798
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference)
1799
+ */
1800
+ export namespace AnnotationPlaceContentPreference {
1801
+ /**
1802
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#None)
1803
+ */
1804
+ export interface None extends globalThis.EnumItem {
1805
+ Name: "None";
1806
+ Value: 0;
1807
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1808
+ }
1809
+ export const None: None;
1810
+ /**
1811
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#All)
1812
+ */
1813
+ export interface All extends globalThis.EnumItem {
1814
+ Name: "All";
1815
+ Value: 1;
1816
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1817
+ }
1818
+ export const All: All;
1819
+ /**
1820
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#MentionsAndReplies)
1821
+ */
1822
+ export interface MentionsAndReplies extends globalThis.EnumItem {
1823
+ Name: "MentionsAndReplies";
1824
+ Value: 2;
1825
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1826
+ }
1827
+ export const MentionsAndReplies: MentionsAndReplies;
1828
+ /**
1829
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#Unknown)
1830
+ */
1831
+ export interface Unknown extends globalThis.EnumItem {
1832
+ Name: "Unknown";
1833
+ Value: 3;
1834
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1835
+ }
1836
+ export const Unknown: Unknown;
1837
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationPlaceContentPreference>;
1838
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationPlaceContentPreference | undefined;
1839
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationPlaceContentPreference | undefined;
1840
+ }
1841
+ export type AnnotationPlaceContentPreference = AnnotationPlaceContentPreference.None | AnnotationPlaceContentPreference.All | AnnotationPlaceContentPreference.MentionsAndReplies | AnnotationPlaceContentPreference.Unknown;
1761
1842
  /**
1762
1843
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus)
1763
1844
  */
@@ -5237,10 +5318,18 @@ declare namespace Enum {
5237
5318
  }
5238
5319
  export type BorderMode = BorderMode.Outline | BorderMode.Middle | BorderMode.Inset;
5239
5320
  /**
5321
+ * Used by `UIStroke.BorderStrokePosition` to determine the stroke's position on its parent's border.
5322
+ *
5240
5323
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition)
5241
5324
  */
5242
5325
  export namespace BorderStrokePosition {
5243
5326
  /**
5327
+ * The stroke renders on the outer border of the parent UI element.
5328
+ *
5329
+ *
5330
+ *
5331
+ * ![](https://prod.docsiteassets.roblox.com/../../../assets/ui/ui-objects/UIStroke-BorderStrokePosition-Outer.png)
5332
+ *
5244
5333
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Outer)
5245
5334
  */
5246
5335
  export interface Outer extends globalThis.EnumItem {
@@ -5250,6 +5339,12 @@ declare namespace Enum {
5250
5339
  }
5251
5340
  export const Outer: Outer;
5252
5341
  /**
5342
+ * The stroke renders on the center border of the parent UI element.
5343
+ *
5344
+ *
5345
+ *
5346
+ * ![](https://prod.docsiteassets.roblox.com/../../../assets/ui/ui-objects/UIStroke-BorderStrokePosition-Center.png)
5347
+ *
5253
5348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Center)
5254
5349
  */
5255
5350
  export interface Center extends globalThis.EnumItem {
@@ -5259,6 +5354,12 @@ declare namespace Enum {
5259
5354
  }
5260
5355
  export const Center: Center;
5261
5356
  /**
5357
+ * The stroke renders on the inner border of the parent UI element.
5358
+ *
5359
+ *
5360
+ *
5361
+ * ![](https://prod.docsiteassets.roblox.com/../../../assets/ui/ui-objects/UIStroke-BorderStrokePosition-Inner.png)
5362
+ *
5262
5363
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Inner)
5263
5364
  */
5264
5365
  export interface Inner extends globalThis.EnumItem {
@@ -7579,6 +7680,87 @@ declare namespace Enum {
7579
7680
  EnumType: typeof globalThis.Enum.ConnectionError;
7580
7681
  }
7581
7682
  export const Unknown: Unknown;
7683
+ /**
7684
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#ConnectErrors)
7685
+ */
7686
+ export interface ConnectErrors extends globalThis.EnumItem {
7687
+ Name: "ConnectErrors";
7688
+ Value: 2;
7689
+ EnumType: typeof globalThis.Enum.ConnectionError;
7690
+ }
7691
+ export const ConnectErrors: ConnectErrors;
7692
+ /**
7693
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#AlreadyConnected)
7694
+ */
7695
+ export interface AlreadyConnected extends globalThis.EnumItem {
7696
+ Name: "AlreadyConnected";
7697
+ Value: 3;
7698
+ EnumType: typeof globalThis.Enum.ConnectionError;
7699
+ }
7700
+ export const AlreadyConnected: AlreadyConnected;
7701
+ /**
7702
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#NoFreeIncomingConnections)
7703
+ */
7704
+ export interface NoFreeIncomingConnections extends globalThis.EnumItem {
7705
+ Name: "NoFreeIncomingConnections";
7706
+ Value: 4;
7707
+ EnumType: typeof globalThis.Enum.ConnectionError;
7708
+ }
7709
+ export const NoFreeIncomingConnections: NoFreeIncomingConnections;
7710
+ /**
7711
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#ConnectionBanned)
7712
+ */
7713
+ export interface ConnectionBanned extends globalThis.EnumItem {
7714
+ Name: "ConnectionBanned";
7715
+ Value: 5;
7716
+ EnumType: typeof globalThis.Enum.ConnectionError;
7717
+ }
7718
+ export const ConnectionBanned: ConnectionBanned;
7719
+ /**
7720
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#InvalidPassword)
7721
+ */
7722
+ export interface InvalidPassword extends globalThis.EnumItem {
7723
+ Name: "InvalidPassword";
7724
+ Value: 6;
7725
+ EnumType: typeof globalThis.Enum.ConnectionError;
7726
+ }
7727
+ export const InvalidPassword: InvalidPassword;
7728
+ /**
7729
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#IncompatibleProtocolVersion)
7730
+ */
7731
+ export interface IncompatibleProtocolVersion extends globalThis.EnumItem {
7732
+ Name: "IncompatibleProtocolVersion";
7733
+ Value: 7;
7734
+ EnumType: typeof globalThis.Enum.ConnectionError;
7735
+ }
7736
+ export const IncompatibleProtocolVersion: IncompatibleProtocolVersion;
7737
+ /**
7738
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#IPRecentlyConnected)
7739
+ */
7740
+ export interface IPRecentlyConnected extends globalThis.EnumItem {
7741
+ Name: "IPRecentlyConnected";
7742
+ Value: 8;
7743
+ EnumType: typeof globalThis.Enum.ConnectionError;
7744
+ }
7745
+ export const IPRecentlyConnected: IPRecentlyConnected;
7746
+ /**
7747
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#OurSystemRequiresSecurity)
7748
+ */
7749
+ export interface OurSystemRequiresSecurity extends globalThis.EnumItem {
7750
+ Name: "OurSystemRequiresSecurity";
7751
+ Value: 9;
7752
+ EnumType: typeof globalThis.Enum.ConnectionError;
7753
+ }
7754
+ export const OurSystemRequiresSecurity: OurSystemRequiresSecurity;
7755
+ /**
7756
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#SecurityKeyMismatch)
7757
+ */
7758
+ export interface SecurityKeyMismatch extends globalThis.EnumItem {
7759
+ Name: "SecurityKeyMismatch";
7760
+ Value: 10;
7761
+ EnumType: typeof globalThis.Enum.ConnectionError;
7762
+ }
7763
+ export const SecurityKeyMismatch: SecurityKeyMismatch;
7582
7764
  /**
7583
7765
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectErrors)
7584
7766
  */
@@ -8029,6 +8211,15 @@ declare namespace Enum {
8029
8211
  EnumType: typeof globalThis.Enum.ConnectionError;
8030
8212
  }
8031
8213
  export const ScreentimeLockoutKick: ScreentimeLockoutKick;
8214
+ /**
8215
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectionNotification)
8216
+ */
8217
+ export interface DisconnectionNotification extends globalThis.EnumItem {
8218
+ Name: "DisconnectionNotification";
8219
+ Value: 308;
8220
+ EnumType: typeof globalThis.Enum.ConnectionError;
8221
+ }
8222
+ export const DisconnectionNotification: DisconnectionNotification;
8032
8223
  /**
8033
8224
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
8034
8225
  */
@@ -8258,7 +8449,7 @@ declare namespace Enum {
8258
8449
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
8259
8450
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
8260
8451
  }
8261
- export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | 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.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;
8452
+ 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.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;
8262
8453
  /**
8263
8454
  * Used to determine the connection state of the client to the game server.
8264
8455
  *
@@ -8331,11 +8522,20 @@ declare namespace Enum {
8331
8522
  EnumType: typeof globalThis.Enum.ContentSourceType;
8332
8523
  }
8333
8524
  export const Object: Object;
8525
+ /**
8526
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContentSourceType#Opaque)
8527
+ */
8528
+ export interface Opaque extends globalThis.EnumItem {
8529
+ Name: "Opaque";
8530
+ Value: 3;
8531
+ EnumType: typeof globalThis.Enum.ContentSourceType;
8532
+ }
8533
+ export const Opaque: Opaque;
8334
8534
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContentSourceType>;
8335
8535
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ContentSourceType | undefined;
8336
8536
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ContentSourceType | undefined;
8337
8537
  }
8338
- export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;
8538
+ export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object | ContentSourceType.Opaque;
8339
8539
  /**
8340
8540
  * Describes the priority of a context action.
8341
8541
  *
@@ -9623,16 +9823,20 @@ declare namespace Enum {
9623
9823
  }
9624
9824
  export const PhysicsCollision: PhysicsCollision;
9625
9825
  /**
9626
- * Physics bodies and the components that control their behavior.
9826
+ * 3D parts used for simulation.
9627
9827
  *
9628
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#PhysicsParts)
9828
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#BaseParts)
9629
9829
  */
9630
- export interface PhysicsParts extends globalThis.EnumItem {
9631
- Name: "PhysicsParts";
9830
+ export interface BaseParts extends globalThis.EnumItem {
9831
+ Name: "BaseParts";
9632
9832
  Value: 7;
9633
9833
  EnumType: typeof globalThis.Enum.DeveloperMemoryTag;
9634
9834
  }
9635
- export const PhysicsParts: PhysicsParts;
9835
+ export const BaseParts: BaseParts;
9836
+ /**
9837
+ * @deprecated renamed to BaseParts
9838
+ */
9839
+ export const PhysicsParts: BaseParts;
9636
9840
  /**
9637
9841
  * Rendering solid models (stuff made with Union, Negate, etc.).
9638
9842
  *
@@ -9809,7 +10013,7 @@ declare namespace Enum {
9809
10013
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeveloperMemoryTag | undefined;
9810
10014
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeveloperMemoryTag | undefined;
9811
10015
  }
9812
- export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.PhysicsParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG | DeveloperMemoryTag.GraphicsSlimModels;
10016
+ export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.BaseParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG | DeveloperMemoryTag.GraphicsSlimModels;
9813
10017
  /**
9814
10018
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceFeatureType)
9815
10019
  */
@@ -10859,6 +11063,114 @@ declare namespace Enum {
10859
11063
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceAuthScope | undefined;
10860
11064
  }
10861
11065
  export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
11066
+ /**
11067
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode)
11068
+ */
11069
+ export namespace ExperienceStateRecordingLoadMode {
11070
+ /**
11071
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode#NewReplay)
11072
+ */
11073
+ export interface NewReplay extends globalThis.EnumItem {
11074
+ Name: "NewReplay";
11075
+ Value: 0;
11076
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadMode;
11077
+ }
11078
+ export const NewReplay: NewReplay;
11079
+ /**
11080
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode#ContiguousSlice)
11081
+ */
11082
+ export interface ContiguousSlice extends globalThis.EnumItem {
11083
+ Name: "ContiguousSlice";
11084
+ Value: 1;
11085
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadMode;
11086
+ }
11087
+ export const ContiguousSlice: ContiguousSlice;
11088
+ /**
11089
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode#NoncontiguousSlice)
11090
+ */
11091
+ export interface NoncontiguousSlice extends globalThis.EnumItem {
11092
+ Name: "NoncontiguousSlice";
11093
+ Value: 2;
11094
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadMode;
11095
+ }
11096
+ export const NoncontiguousSlice: NoncontiguousSlice;
11097
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateRecordingLoadMode>;
11098
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateRecordingLoadMode | undefined;
11099
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateRecordingLoadMode | undefined;
11100
+ }
11101
+ export type ExperienceStateRecordingLoadMode = ExperienceStateRecordingLoadMode.NewReplay | ExperienceStateRecordingLoadMode.ContiguousSlice | ExperienceStateRecordingLoadMode.NoncontiguousSlice;
11102
+ /**
11103
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadSourceType)
11104
+ */
11105
+ export namespace ExperienceStateRecordingLoadSourceType {
11106
+ /**
11107
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadSourceType#S3Url)
11108
+ */
11109
+ export interface S3Url extends globalThis.EnumItem {
11110
+ Name: "S3Url";
11111
+ Value: 0;
11112
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadSourceType;
11113
+ }
11114
+ export const S3Url: S3Url;
11115
+ /**
11116
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadSourceType#File)
11117
+ */
11118
+ export interface File extends globalThis.EnumItem {
11119
+ Name: "File";
11120
+ Value: 1;
11121
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadSourceType;
11122
+ }
11123
+ export const File: File;
11124
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateRecordingLoadSourceType>;
11125
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateRecordingLoadSourceType | undefined;
11126
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateRecordingLoadSourceType | undefined;
11127
+ }
11128
+ export type ExperienceStateRecordingLoadSourceType = ExperienceStateRecordingLoadSourceType.S3Url | ExperienceStateRecordingLoadSourceType.File;
11129
+ /**
11130
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode)
11131
+ */
11132
+ export namespace ExperienceStateRecordingPlaybackMode {
11133
+ /**
11134
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Undefined)
11135
+ */
11136
+ export interface Undefined extends globalThis.EnumItem {
11137
+ Name: "Undefined";
11138
+ Value: 0;
11139
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11140
+ }
11141
+ export const Undefined: Undefined;
11142
+ /**
11143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Stopped)
11144
+ */
11145
+ export interface Stopped extends globalThis.EnumItem {
11146
+ Name: "Stopped";
11147
+ Value: 1;
11148
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11149
+ }
11150
+ export const Stopped: Stopped;
11151
+ /**
11152
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Playing)
11153
+ */
11154
+ export interface Playing extends globalThis.EnumItem {
11155
+ Name: "Playing";
11156
+ Value: 2;
11157
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11158
+ }
11159
+ export const Playing: Playing;
11160
+ /**
11161
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Rewinding)
11162
+ */
11163
+ export interface Rewinding extends globalThis.EnumItem {
11164
+ Name: "Rewinding";
11165
+ Value: 3;
11166
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11167
+ }
11168
+ export const Rewinding: Rewinding;
11169
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateRecordingPlaybackMode>;
11170
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateRecordingPlaybackMode | undefined;
11171
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateRecordingPlaybackMode | undefined;
11172
+ }
11173
+ export type ExperienceStateRecordingPlaybackMode = ExperienceStateRecordingPlaybackMode.Undefined | ExperienceStateRecordingPlaybackMode.Stopped | ExperienceStateRecordingPlaybackMode.Playing | ExperienceStateRecordingPlaybackMode.Rewinding;
10862
11174
  /**
10863
11175
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExplosionType)
10864
11176
  */
@@ -22046,6 +22358,8 @@ declare namespace Enum {
22046
22358
  }
22047
22359
  export const Grid8x8: Grid8x8;
22048
22360
  /**
22361
+ * A custom grid size defined by `FlipbookSizeX` and `FlipbookSizeY`.
22362
+ *
22049
22363
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookLayout#Custom)
22050
22364
  */
22051
22365
  export interface Custom extends globalThis.EnumItem {
@@ -22574,6 +22888,51 @@ declare namespace Enum {
22574
22888
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicsSteppingMethod | undefined;
22575
22889
  }
22576
22890
  export type PhysicsSteppingMethod = PhysicsSteppingMethod.Default | PhysicsSteppingMethod.Fixed | PhysicsSteppingMethod.Adaptive;
22891
+ /**
22892
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference)
22893
+ */
22894
+ export namespace PlaceContentPreference {
22895
+ /**
22896
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#None)
22897
+ */
22898
+ export interface None extends globalThis.EnumItem {
22899
+ Name: "None";
22900
+ Value: 0;
22901
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22902
+ }
22903
+ export const None: None;
22904
+ /**
22905
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#All)
22906
+ */
22907
+ export interface All extends globalThis.EnumItem {
22908
+ Name: "All";
22909
+ Value: 1;
22910
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22911
+ }
22912
+ export const All: All;
22913
+ /**
22914
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#MentionsAndReplies)
22915
+ */
22916
+ export interface MentionsAndReplies extends globalThis.EnumItem {
22917
+ Name: "MentionsAndReplies";
22918
+ Value: 2;
22919
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22920
+ }
22921
+ export const MentionsAndReplies: MentionsAndReplies;
22922
+ /**
22923
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#Unknown)
22924
+ */
22925
+ export interface Unknown extends globalThis.EnumItem {
22926
+ Name: "Unknown";
22927
+ Value: 3;
22928
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22929
+ }
22930
+ export const Unknown: Unknown;
22931
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlaceContentPreference>;
22932
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlaceContentPreference | undefined;
22933
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlaceContentPreference | undefined;
22934
+ }
22935
+ export type PlaceContentPreference = PlaceContentPreference.None | PlaceContentPreference.All | PlaceContentPreference.MentionsAndReplies | PlaceContentPreference.Unknown;
22577
22936
  /**
22578
22937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlacePublishType)
22579
22938
  */
@@ -23163,6 +23522,42 @@ declare namespace Enum {
23163
23522
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerDataLoadFailureBehavior | undefined;
23164
23523
  }
23165
23524
  export type PlayerDataLoadFailureBehavior = PlayerDataLoadFailureBehavior.Failure | PlayerDataLoadFailureBehavior.FallbackToDefault | PlayerDataLoadFailureBehavior.Kick;
23525
+ /**
23526
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason)
23527
+ */
23528
+ export namespace PlayerExitReason {
23529
+ /**
23530
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#Unknown)
23531
+ */
23532
+ export interface Unknown extends globalThis.EnumItem {
23533
+ Name: "Unknown";
23534
+ Value: 0;
23535
+ EnumType: typeof globalThis.Enum.PlayerExitReason;
23536
+ }
23537
+ export const Unknown: Unknown;
23538
+ /**
23539
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#PlatformKick)
23540
+ */
23541
+ export interface PlatformKick extends globalThis.EnumItem {
23542
+ Name: "PlatformKick";
23543
+ Value: 1;
23544
+ EnumType: typeof globalThis.Enum.PlayerExitReason;
23545
+ }
23546
+ export const PlatformKick: PlatformKick;
23547
+ /**
23548
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#CreatorKick)
23549
+ */
23550
+ export interface CreatorKick extends globalThis.EnumItem {
23551
+ Name: "CreatorKick";
23552
+ Value: 2;
23553
+ EnumType: typeof globalThis.Enum.PlayerExitReason;
23554
+ }
23555
+ export const CreatorKick: CreatorKick;
23556
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerExitReason>;
23557
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerExitReason | undefined;
23558
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerExitReason | undefined;
23559
+ }
23560
+ export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
23166
23561
  /**
23167
23562
  * Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
23168
23563
  *
@@ -23351,6 +23746,51 @@ declare namespace Enum {
23351
23746
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
23352
23747
  }
23353
23748
  export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
23749
+ /**
23750
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState)
23751
+ */
23752
+ export namespace PredictionState {
23753
+ /**
23754
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Idle)
23755
+ */
23756
+ export interface Idle extends globalThis.EnumItem {
23757
+ Name: "Idle";
23758
+ Value: 0;
23759
+ EnumType: typeof globalThis.Enum.PredictionState;
23760
+ }
23761
+ export const Idle: Idle;
23762
+ /**
23763
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Simulating)
23764
+ */
23765
+ export interface Simulating extends globalThis.EnumItem {
23766
+ Name: "Simulating";
23767
+ Value: 1;
23768
+ EnumType: typeof globalThis.Enum.PredictionState;
23769
+ }
23770
+ export const Simulating: Simulating;
23771
+ /**
23772
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#RollingBack)
23773
+ */
23774
+ export interface RollingBack extends globalThis.EnumItem {
23775
+ Name: "RollingBack";
23776
+ Value: 2;
23777
+ EnumType: typeof globalThis.Enum.PredictionState;
23778
+ }
23779
+ export const RollingBack: RollingBack;
23780
+ /**
23781
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Resimulating)
23782
+ */
23783
+ export interface Resimulating extends globalThis.EnumItem {
23784
+ Name: "Resimulating";
23785
+ Value: 3;
23786
+ EnumType: typeof globalThis.Enum.PredictionState;
23787
+ }
23788
+ export const Resimulating: Resimulating;
23789
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionState>;
23790
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionState | undefined;
23791
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionState | undefined;
23792
+ }
23793
+ export type PredictionState = PredictionState.Idle | PredictionState.Simulating | PredictionState.RollingBack | PredictionState.Resimulating;
23354
23794
  /**
23355
23795
  * This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
23356
23796
  *
@@ -23380,7 +23820,7 @@ declare namespace Enum {
23380
23820
  }
23381
23821
  export const Gamepad: Gamepad;
23382
23822
  /**
23383
- * The player's device has touch capability and no other input method is available or connected.
23823
+ * The player's device has touch capability and no other input method is available or was recently interacted with.
23384
23824
  *
23385
23825
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Touch)
23386
23826
  */
@@ -24623,6 +25063,42 @@ declare namespace Enum {
24623
25063
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationActionType | undefined;
24624
25064
  }
24625
25065
  export type RecommendationActionType = RecommendationActionType.AddReaction | RecommendationActionType.RemoveReaction | RecommendationActionType.Share | RecommendationActionType.Report | RecommendationActionType.Comment | RecommendationActionType.Play | RecommendationActionType.Purchase;
25066
+ /**
25067
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent)
25068
+ */
25069
+ export namespace RecommendationDepartureIntent {
25070
+ /**
25071
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent#Neutral)
25072
+ */
25073
+ export interface Neutral extends globalThis.EnumItem {
25074
+ Name: "Neutral";
25075
+ Value: 0;
25076
+ EnumType: typeof globalThis.Enum.RecommendationDepartureIntent;
25077
+ }
25078
+ export const Neutral: Neutral;
25079
+ /**
25080
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent#Positive)
25081
+ */
25082
+ export interface Positive extends globalThis.EnumItem {
25083
+ Name: "Positive";
25084
+ Value: 1;
25085
+ EnumType: typeof globalThis.Enum.RecommendationDepartureIntent;
25086
+ }
25087
+ export const Positive: Positive;
25088
+ /**
25089
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent#Negative)
25090
+ */
25091
+ export interface Negative extends globalThis.EnumItem {
25092
+ Name: "Negative";
25093
+ Value: 2;
25094
+ EnumType: typeof globalThis.Enum.RecommendationDepartureIntent;
25095
+ }
25096
+ export const Negative: Negative;
25097
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationDepartureIntent>;
25098
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationDepartureIntent | undefined;
25099
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationDepartureIntent | undefined;
25100
+ }
25101
+ export type RecommendationDepartureIntent = RecommendationDepartureIntent.Neutral | RecommendationDepartureIntent.Positive | RecommendationDepartureIntent.Negative;
24626
25102
  /**
24627
25103
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType)
24628
25104
  */
@@ -24636,11 +25112,56 @@ declare namespace Enum {
24636
25112
  EnumType: typeof globalThis.Enum.RecommendationImpressionType;
24637
25113
  }
24638
25114
  export const View: View;
25115
+ /**
25116
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#NotViewable)
25117
+ */
25118
+ export interface NotViewable extends globalThis.EnumItem {
25119
+ Name: "NotViewable";
25120
+ Value: 1;
25121
+ EnumType: typeof globalThis.Enum.RecommendationImpressionType;
25122
+ }
25123
+ export const NotViewable: NotViewable;
24639
25124
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationImpressionType>;
24640
25125
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationImpressionType | undefined;
24641
25126
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationImpressionType | undefined;
24642
25127
  }
24643
- export type RecommendationImpressionType = RecommendationImpressionType.View;
25128
+ export type RecommendationImpressionType = RecommendationImpressionType.View | RecommendationImpressionType.NotViewable;
25129
+ /**
25130
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType)
25131
+ */
25132
+ export namespace RecommendationItemContentType {
25133
+ /**
25134
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Static)
25135
+ */
25136
+ export interface Static extends globalThis.EnumItem {
25137
+ Name: "Static";
25138
+ Value: 0;
25139
+ EnumType: typeof globalThis.Enum.RecommendationItemContentType;
25140
+ }
25141
+ export const Static: Static;
25142
+ /**
25143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Dynamic)
25144
+ */
25145
+ export interface Dynamic extends globalThis.EnumItem {
25146
+ Name: "Dynamic";
25147
+ Value: 1;
25148
+ EnumType: typeof globalThis.Enum.RecommendationItemContentType;
25149
+ }
25150
+ export const Dynamic: Dynamic;
25151
+ /**
25152
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Interactive)
25153
+ */
25154
+ export interface Interactive extends globalThis.EnumItem {
25155
+ Name: "Interactive";
25156
+ Value: 2;
25157
+ EnumType: typeof globalThis.Enum.RecommendationItemContentType;
25158
+ }
25159
+ export const Interactive: Interactive;
25160
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationItemContentType>;
25161
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationItemContentType | undefined;
25162
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationItemContentType | undefined;
25163
+ }
25164
+ export type RecommendationItemContentType = RecommendationItemContentType.Static | RecommendationItemContentType.Dynamic | RecommendationItemContentType.Interactive;
24644
25165
  /**
24645
25166
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility)
24646
25167
  */
@@ -27857,10 +28378,14 @@ declare namespace Enum {
27857
28378
  }
27858
28379
  export type StreamingPauseMode = StreamingPauseMode.Default | StreamingPauseMode.Disabled | StreamingPauseMode.ClientPhysicsPause;
27859
28380
  /**
28381
+ * Used by `UIStroke.StrokeSizingMode` to determine whether the stroke's `Thickness` will be measured in pixels or be relative to the parent.
28382
+ *
27860
28383
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StrokeSizingMode)
27861
28384
  */
27862
28385
  export namespace StrokeSizingMode {
27863
28386
  /**
28387
+ * `Thickness` is measured in pixels.
28388
+ *
27864
28389
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StrokeSizingMode#FixedSize)
27865
28390
  */
27866
28391
  export interface FixedSize extends globalThis.EnumItem {
@@ -27870,6 +28395,8 @@ declare namespace Enum {
27870
28395
  }
27871
28396
  export const FixedSize: FixedSize;
27872
28397
  /**
28398
+ * `Thickness` is relative to minimum parent width or height. If stroke is on text, thickness is relative to font size.
28399
+ *
27873
28400
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StrokeSizingMode#ScaledSize)
27874
28401
  */
27875
28402
  export interface ScaledSize extends globalThis.EnumItem {
@@ -30409,12 +30936,21 @@ declare namespace Enum {
30409
30936
  EnumType: typeof globalThis.Enum.TeamCreateErrorState;
30410
30937
  }
30411
30938
  export const PlaceSizeApproachingLimit: PlaceSizeApproachingLimit;
30939
+ /**
30940
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeamCreateErrorState#PlaceUploadFailing)
30941
+ */
30942
+ export interface PlaceUploadFailing extends globalThis.EnumItem {
30943
+ Name: "PlaceUploadFailing";
30944
+ Value: 2;
30945
+ EnumType: typeof globalThis.Enum.TeamCreateErrorState;
30946
+ }
30947
+ export const PlaceUploadFailing: PlaceUploadFailing;
30412
30948
  /**
30413
30949
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeamCreateErrorState#NoError)
30414
30950
  */
30415
30951
  export interface NoError extends globalThis.EnumItem {
30416
30952
  Name: "NoError";
30417
- Value: 2;
30953
+ Value: 3;
30418
30954
  EnumType: typeof globalThis.Enum.TeamCreateErrorState;
30419
30955
  }
30420
30956
  export const NoError: NoError;
@@ -30422,7 +30958,7 @@ declare namespace Enum {
30422
30958
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeamCreateErrorState | undefined;
30423
30959
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeamCreateErrorState | undefined;
30424
30960
  }
30425
- export type TeamCreateErrorState = TeamCreateErrorState.PlaceSizeTooLarge | TeamCreateErrorState.PlaceSizeApproachingLimit | TeamCreateErrorState.NoError;
30961
+ export type TeamCreateErrorState = TeamCreateErrorState.PlaceSizeTooLarge | TeamCreateErrorState.PlaceSizeApproachingLimit | TeamCreateErrorState.PlaceUploadFailing | TeamCreateErrorState.NoError;
30426
30962
  /**
30427
30963
  * Enum used by `Lighting.Technology` to represent the different lighting systems available for rendering the 3D world.
30428
30964
  *