@rbxts/types 1.0.887 → 1.0.889

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.
@@ -1590,6 +1590,141 @@ declare namespace Enum {
1590
1590
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
1591
1591
  }
1592
1592
  export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
1593
+ /**
1594
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType)
1595
+ */
1596
+ export namespace AnimationNodeType {
1597
+ /**
1598
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#InvalidNode)
1599
+ */
1600
+ export interface InvalidNode extends globalThis.EnumItem {
1601
+ Name: "InvalidNode";
1602
+ Value: 0;
1603
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1604
+ }
1605
+ export const InvalidNode: InvalidNode;
1606
+ /**
1607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#AddNode)
1608
+ */
1609
+ export interface AddNode extends globalThis.EnumItem {
1610
+ Name: "AddNode";
1611
+ Value: 1;
1612
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1613
+ }
1614
+ export const AddNode: AddNode;
1615
+ /**
1616
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#BlendNode)
1617
+ */
1618
+ export interface BlendNode extends globalThis.EnumItem {
1619
+ Name: "BlendNode";
1620
+ Value: 2;
1621
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1622
+ }
1623
+ export const BlendNode: BlendNode;
1624
+ /**
1625
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
1626
+ */
1627
+ export interface Blend1DNode extends globalThis.EnumItem {
1628
+ Name: "Blend1DNode";
1629
+ Value: 3;
1630
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1631
+ }
1632
+ export const Blend1DNode: Blend1DNode;
1633
+ /**
1634
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend2DNode)
1635
+ */
1636
+ export interface Blend2DNode extends globalThis.EnumItem {
1637
+ Name: "Blend2DNode";
1638
+ Value: 4;
1639
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1640
+ }
1641
+ export const Blend2DNode: Blend2DNode;
1642
+ /**
1643
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#ClipNode)
1644
+ */
1645
+ export interface ClipNode extends globalThis.EnumItem {
1646
+ Name: "ClipNode";
1647
+ Value: 5;
1648
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1649
+ }
1650
+ export const ClipNode: ClipNode;
1651
+ /**
1652
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#GraphOutput)
1653
+ */
1654
+ export interface GraphOutput extends globalThis.EnumItem {
1655
+ Name: "GraphOutput";
1656
+ Value: 6;
1657
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1658
+ }
1659
+ export const GraphOutput: GraphOutput;
1660
+ /**
1661
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#MaskNode)
1662
+ */
1663
+ export interface MaskNode extends globalThis.EnumItem {
1664
+ Name: "MaskNode";
1665
+ Value: 7;
1666
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1667
+ }
1668
+ export const MaskNode: MaskNode;
1669
+ /**
1670
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#PrioritySelectNode)
1671
+ */
1672
+ export interface PrioritySelectNode extends globalThis.EnumItem {
1673
+ Name: "PrioritySelectNode";
1674
+ Value: 8;
1675
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1676
+ }
1677
+ export const PrioritySelectNode: PrioritySelectNode;
1678
+ /**
1679
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#RandomSequenceNode)
1680
+ */
1681
+ export interface RandomSequenceNode extends globalThis.EnumItem {
1682
+ Name: "RandomSequenceNode";
1683
+ Value: 9;
1684
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1685
+ }
1686
+ export const RandomSequenceNode: RandomSequenceNode;
1687
+ /**
1688
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SelectNode)
1689
+ */
1690
+ export interface SelectNode extends globalThis.EnumItem {
1691
+ Name: "SelectNode";
1692
+ Value: 10;
1693
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1694
+ }
1695
+ export const SelectNode: SelectNode;
1696
+ /**
1697
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SequenceNode)
1698
+ */
1699
+ export interface SequenceNode extends globalThis.EnumItem {
1700
+ Name: "SequenceNode";
1701
+ Value: 11;
1702
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1703
+ }
1704
+ export const SequenceNode: SequenceNode;
1705
+ /**
1706
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SpeedNode)
1707
+ */
1708
+ export interface SpeedNode extends globalThis.EnumItem {
1709
+ Name: "SpeedNode";
1710
+ Value: 12;
1711
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1712
+ }
1713
+ export const SpeedNode: SpeedNode;
1714
+ /**
1715
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SubtractNode)
1716
+ */
1717
+ export interface SubtractNode extends globalThis.EnumItem {
1718
+ Name: "SubtractNode";
1719
+ Value: 13;
1720
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1721
+ }
1722
+ export const SubtractNode: SubtractNode;
1723
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeType>;
1724
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeType | undefined;
1725
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
1726
+ }
1727
+ export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.BlendNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
1593
1728
  /**
1594
1729
  * The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
1595
1730
  *
@@ -7548,6 +7683,28 @@ declare namespace Enum {
7548
7683
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
7549
7684
  }
7550
7685
  export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
7686
+ /**
7687
+ * A compression algorithm to use in `EncodingService` methods.
7688
+ *
7689
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompressionAlgorithm)
7690
+ */
7691
+ export namespace CompressionAlgorithm {
7692
+ /**
7693
+ * Used to perform compression using [Zstandard](https://en.wikipedia.org/wiki/Zstd) compression, also known as zstd.
7694
+ *
7695
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompressionAlgorithm#Zstd)
7696
+ */
7697
+ export interface Zstd extends globalThis.EnumItem {
7698
+ Name: "Zstd";
7699
+ Value: 0;
7700
+ EnumType: typeof globalThis.Enum.CompressionAlgorithm;
7701
+ }
7702
+ export const Zstd: Zstd;
7703
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompressionAlgorithm>;
7704
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompressionAlgorithm | undefined;
7705
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompressionAlgorithm | undefined;
7706
+ }
7707
+ export type CompressionAlgorithm = CompressionAlgorithm.Zstd;
7551
7708
  /**
7552
7709
  * The camera movement mode currently in-use by the client.
7553
7710
  *
@@ -8247,6 +8404,15 @@ declare namespace Enum {
8247
8404
  EnumType: typeof globalThis.Enum.ConnectionError;
8248
8405
  }
8249
8406
  export const DisconnectionNotification: DisconnectionNotification;
8407
+ /**
8408
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectVerboselyModeratedGame)
8409
+ */
8410
+ export interface DisconnectVerboselyModeratedGame extends globalThis.EnumItem {
8411
+ Name: "DisconnectVerboselyModeratedGame";
8412
+ Value: 309;
8413
+ EnumType: typeof globalThis.Enum.ConnectionError;
8414
+ }
8415
+ export const DisconnectVerboselyModeratedGame: DisconnectVerboselyModeratedGame;
8250
8416
  /**
8251
8417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
8252
8418
  */
@@ -8476,7 +8642,7 @@ declare namespace Enum {
8476
8642
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
8477
8643
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
8478
8644
  }
8479
- 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;
8645
+ 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;
8480
8646
  /**
8481
8647
  * Used to determine the connection state of the client to the game server.
8482
8648
  *
@@ -8550,6 +8716,8 @@ declare namespace Enum {
8550
8716
  }
8551
8717
  export const Object: Object;
8552
8718
  /**
8719
+ * A non-`nil` `Opaque` reference contained in `Content.Opaque`.
8720
+ *
8553
8721
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContentSourceType#Opaque)
8554
8722
  */
8555
8723
  export interface Opaque extends globalThis.EnumItem {
@@ -9475,6 +9643,33 @@ declare namespace Enum {
9475
9643
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerStatus | undefined;
9476
9644
  }
9477
9645
  export type DebuggerStatus = DebuggerStatus.Success | DebuggerStatus.Timeout | DebuggerStatus.ConnectionLost | DebuggerStatus.InvalidResponse | DebuggerStatus.InternalError | DebuggerStatus.InvalidState | DebuggerStatus.RpcError | DebuggerStatus.InvalidArgument | DebuggerStatus.ConnectionClosed;
9646
+ /**
9647
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType)
9648
+ */
9649
+ export namespace DefaultScriptSyncFileType {
9650
+ /**
9651
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Lua)
9652
+ */
9653
+ export interface Lua extends globalThis.EnumItem {
9654
+ Name: "Lua";
9655
+ Value: 0;
9656
+ EnumType: typeof globalThis.Enum.DefaultScriptSyncFileType;
9657
+ }
9658
+ export const Lua: Lua;
9659
+ /**
9660
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Luau)
9661
+ */
9662
+ export interface Luau extends globalThis.EnumItem {
9663
+ Name: "Luau";
9664
+ Value: 1;
9665
+ EnumType: typeof globalThis.Enum.DefaultScriptSyncFileType;
9666
+ }
9667
+ export const Luau: Luau;
9668
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DefaultScriptSyncFileType>;
9669
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DefaultScriptSyncFileType | undefined;
9670
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DefaultScriptSyncFileType | undefined;
9671
+ }
9672
+ export type DefaultScriptSyncFileType = DefaultScriptSyncFileType.Lua | DefaultScriptSyncFileType.Luau;
9478
9673
  /**
9479
9674
  * Determines how the default camera handles objects that are in-between the camera and the camera subject.
9480
9675
  *
@@ -11099,6 +11294,70 @@ declare namespace Enum {
11099
11294
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceAuthScope | undefined;
11100
11295
  }
11101
11296
  export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
11297
+ /**
11298
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus)
11299
+ */
11300
+ export namespace ExperienceEventStatus {
11301
+ /**
11302
+ * The event is currently published and available.
11303
+ *
11304
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Active)
11305
+ */
11306
+ export interface Active extends globalThis.EnumItem {
11307
+ Name: "Active";
11308
+ Value: 0;
11309
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11310
+ }
11311
+ export const Active: Active;
11312
+ /**
11313
+ * The event has been cancelled and will not occur.
11314
+ *
11315
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Cancelled)
11316
+ */
11317
+ export interface Cancelled extends globalThis.EnumItem {
11318
+ Name: "Cancelled";
11319
+ Value: 1;
11320
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11321
+ }
11322
+ export const Cancelled: Cancelled;
11323
+ /**
11324
+ * The event has been removed by moderation.
11325
+ *
11326
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Moderated)
11327
+ */
11328
+ export interface Moderated extends globalThis.EnumItem {
11329
+ Name: "Moderated";
11330
+ Value: 2;
11331
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11332
+ }
11333
+ export const Moderated: Moderated;
11334
+ /**
11335
+ * The event has been unpublished by the creator.
11336
+ *
11337
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Unpublished)
11338
+ */
11339
+ export interface Unpublished extends globalThis.EnumItem {
11340
+ Name: "Unpublished";
11341
+ Value: 3;
11342
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11343
+ }
11344
+ export const Unpublished: Unpublished;
11345
+ /**
11346
+ * The event status could not be determined.
11347
+ *
11348
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Unknown)
11349
+ */
11350
+ export interface Unknown extends globalThis.EnumItem {
11351
+ Name: "Unknown";
11352
+ Value: 4;
11353
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11354
+ }
11355
+ export const Unknown: Unknown;
11356
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceEventStatus>;
11357
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceEventStatus | undefined;
11358
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceEventStatus | undefined;
11359
+ }
11360
+ export type ExperienceEventStatus = ExperienceEventStatus.Active | ExperienceEventStatus.Cancelled | ExperienceEventStatus.Moderated | ExperienceEventStatus.Unpublished | ExperienceEventStatus.Unknown;
11102
11361
  /**
11103
11362
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode)
11104
11363
  */
@@ -14324,6 +14583,72 @@ declare namespace Enum {
14324
14583
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HapticEffectType | undefined;
14325
14584
  }
14326
14585
  export type HapticEffectType = HapticEffectType.Custom | HapticEffectType.UIHover | HapticEffectType.UIClick | HapticEffectType.UINotification | HapticEffectType.GameplayExplosion | HapticEffectType.GameplayCollision;
14586
+ /**
14587
+ * A Cryptographic hash function to use in `EncodingService` methods.
14588
+ *
14589
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm)
14590
+ */
14591
+ export namespace HashAlgorithm {
14592
+ /**
14593
+ * Used to compute a 256-bit (32-byte) hash digest using the [BLAKE2b](https://en.wikipedia.org/wiki/BLAKE2) algorithm.
14594
+ *
14595
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Blake2b)
14596
+ */
14597
+ export interface Blake2b extends globalThis.EnumItem {
14598
+ Name: "Blake2b";
14599
+ Value: 0;
14600
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14601
+ }
14602
+ export const Blake2b: Blake2b;
14603
+ /**
14604
+ * Used to compute a 256-bit (32-byte) hash digest using the [BLAKE3](https://en.wikipedia.org/wiki/BLAKE3) algorithm.
14605
+ *
14606
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Blake3)
14607
+ */
14608
+ export interface Blake3 extends globalThis.EnumItem {
14609
+ Name: "Blake3";
14610
+ Value: 1;
14611
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14612
+ }
14613
+ export const Blake3: Blake3;
14614
+ /**
14615
+ * Used to compute a 128-bit (16-byte) hash digest using the [MD5](https://en.wikipedia.org/wiki/MD5) algorithm.
14616
+ *
14617
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Md5)
14618
+ */
14619
+ export interface Md5 extends globalThis.EnumItem {
14620
+ Name: "Md5";
14621
+ Value: 2;
14622
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14623
+ }
14624
+ export const Md5: Md5;
14625
+ /**
14626
+ * Used to compute a 160-bit (20-byte) hash digest using the [SHA-1](https://en.wikipedia.org/wiki/SHA-1) algorithm.
14627
+ *
14628
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Sha1)
14629
+ */
14630
+ export interface Sha1 extends globalThis.EnumItem {
14631
+ Name: "Sha1";
14632
+ Value: 3;
14633
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14634
+ }
14635
+ export const Sha1: Sha1;
14636
+ /**
14637
+ * Used to compute a 256-bit (32-byte) hash digest using the [SHA256](https://en.wikipedia.org/wiki/SHA-2) algorithm.
14638
+ *
14639
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Sha256)
14640
+ */
14641
+ export interface Sha256 extends globalThis.EnumItem {
14642
+ Name: "Sha256";
14643
+ Value: 4;
14644
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14645
+ }
14646
+ export const Sha256: Sha256;
14647
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HashAlgorithm>;
14648
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HashAlgorithm | undefined;
14649
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HashAlgorithm | undefined;
14650
+ }
14651
+ export type HashAlgorithm = HashAlgorithm.Blake2b | HashAlgorithm.Blake3 | HashAlgorithm.Md5 | HashAlgorithm.Sha1 | HashAlgorithm.Sha256;
14327
14652
  /**
14328
14653
  * Controls how the `Highlight` effect displays with respect to other objects in the world.
14329
14654
  *
@@ -21227,15 +21552,6 @@ declare namespace Enum {
21227
21552
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21228
21553
  }
21229
21554
  export const StreamingMesh: StreamingMesh;
21230
- /**
21231
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
21232
- */
21233
- export interface SLIM extends globalThis.EnumItem {
21234
- Name: "SLIM";
21235
- Value: 2;
21236
- EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21237
- }
21238
- export const SLIM: SLIM;
21239
21555
  /**
21240
21556
  * A lower resolution mesh will not be displayed.
21241
21557
  *
@@ -21243,15 +21559,30 @@ declare namespace Enum {
21243
21559
  */
21244
21560
  export interface Disabled extends globalThis.EnumItem {
21245
21561
  Name: "Disabled";
21246
- Value: 3;
21562
+ Value: 2;
21247
21563
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21248
21564
  }
21249
21565
  export const Disabled: Disabled;
21566
+ /**
21567
+ * @deprecated renamed to Disabled
21568
+ */
21569
+ export const Deactivated: Disabled;
21570
+ /**
21571
+ * A Scalable Lightweight Interactive Model, or SLIM, model (a composite of all child parts of the model) renders at progressively lower resolutions at distances based on the streaming radius. Greatly improves visual quality over `StreamingMesh`.
21572
+ *
21573
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
21574
+ */
21575
+ export interface SLIM extends globalThis.EnumItem {
21576
+ Name: "SLIM";
21577
+ Value: 4;
21578
+ EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21579
+ }
21580
+ export const SLIM: SLIM;
21250
21581
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModelLevelOfDetail>;
21251
21582
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelLevelOfDetail | undefined;
21252
21583
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelLevelOfDetail | undefined;
21253
21584
  }
21254
- export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.SLIM | ModelLevelOfDetail.Disabled;
21585
+ export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.Disabled | ModelLevelOfDetail.SLIM;
21255
21586
  /**
21256
21587
  * Controls how `Models` are sent to clients in experiences with instance streaming enabled.
21257
21588
  *
@@ -23108,7 +23439,7 @@ declare namespace Enum {
23108
23439
  */
23109
23440
  export namespace PhysicsSteppingMethod {
23110
23441
  /**
23111
- * The current default is Fixed.
23442
+ * The current default is `Adaptive`.
23112
23443
  *
23113
23444
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicsSteppingMethod#Default)
23114
23445
  */
@@ -24658,6 +24989,33 @@ declare namespace Enum {
24658
24989
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAvatarResult | undefined;
24659
24990
  }
24660
24991
  export type PromptCreateAvatarResult = PromptCreateAvatarResult.Success | PromptCreateAvatarResult.PermissionDenied | PromptCreateAvatarResult.Timeout | PromptCreateAvatarResult.UploadFailed | PromptCreateAvatarResult.NoUserInput | PromptCreateAvatarResult.InvalidHumanoidDescription | PromptCreateAvatarResult.UGCValidationFailed | PromptCreateAvatarResult.ModeratedName | PromptCreateAvatarResult.MaxOutfits | PromptCreateAvatarResult.PurchaseFailure | PromptCreateAvatarResult.UnknownFailure | PromptCreateAvatarResult.TokenInvalid;
24992
+ /**
24993
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult)
24994
+ */
24995
+ export namespace PromptExperienceDetailsResult {
24996
+ /**
24997
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult#PromptClosed)
24998
+ */
24999
+ export interface PromptClosed extends globalThis.EnumItem {
25000
+ Name: "PromptClosed";
25001
+ Value: 0;
25002
+ EnumType: typeof globalThis.Enum.PromptExperienceDetailsResult;
25003
+ }
25004
+ export const PromptClosed: PromptClosed;
25005
+ /**
25006
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult#TeleportAttempted)
25007
+ */
25008
+ export interface TeleportAttempted extends globalThis.EnumItem {
25009
+ Name: "TeleportAttempted";
25010
+ Value: 1;
25011
+ EnumType: typeof globalThis.Enum.PromptExperienceDetailsResult;
25012
+ }
25013
+ export const TeleportAttempted: TeleportAttempted;
25014
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptExperienceDetailsResult>;
25015
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptExperienceDetailsResult | undefined;
25016
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptExperienceDetailsResult | undefined;
25017
+ }
25018
+ export type PromptExperienceDetailsResult = PromptExperienceDetailsResult.PromptClosed | PromptExperienceDetailsResult.TeleportAttempted;
24661
25019
  /**
24662
25020
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptLinkSharingResult)
24663
25021
  */
@@ -27649,11 +28007,101 @@ declare namespace Enum {
27649
28007
  EnumType: typeof globalThis.Enum.SecurityCapability;
27650
28008
  }
27651
28009
  export const CapabilityControl: CapabilityControl;
28010
+ /**
28011
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Plugin)
28012
+ */
28013
+ export interface Plugin extends globalThis.EnumItem {
28014
+ Name: "Plugin";
28015
+ Value: 23;
28016
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28017
+ }
28018
+ export const Plugin: Plugin;
28019
+ /**
28020
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LocalUser)
28021
+ */
28022
+ export interface LocalUser extends globalThis.EnumItem {
28023
+ Name: "LocalUser";
28024
+ Value: 24;
28025
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28026
+ }
28027
+ export const LocalUser: LocalUser;
28028
+ /**
28029
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#WritePlayer)
28030
+ */
28031
+ export interface WritePlayer extends globalThis.EnumItem {
28032
+ Name: "WritePlayer";
28033
+ Value: 25;
28034
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28035
+ }
28036
+ export const WritePlayer: WritePlayer;
28037
+ /**
28038
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RobloxScript)
28039
+ */
28040
+ export interface RobloxScript extends globalThis.EnumItem {
28041
+ Name: "RobloxScript";
28042
+ Value: 26;
28043
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28044
+ }
28045
+ export const RobloxScript: RobloxScript;
28046
+ /**
28047
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RobloxEngine)
28048
+ */
28049
+ export interface RobloxEngine extends globalThis.EnumItem {
28050
+ Name: "RobloxEngine";
28051
+ Value: 27;
28052
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28053
+ }
28054
+ export const RobloxEngine: RobloxEngine;
28055
+ /**
28056
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Unassigned)
28057
+ */
28058
+ export interface Unassigned extends globalThis.EnumItem {
28059
+ Name: "Unassigned";
28060
+ Value: 28;
28061
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28062
+ }
28063
+ export const Unassigned: Unassigned;
28064
+ /**
28065
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#InternalTest)
28066
+ */
28067
+ export interface InternalTest extends globalThis.EnumItem {
28068
+ Name: "InternalTest";
28069
+ Value: 29;
28070
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28071
+ }
28072
+ export const InternalTest: InternalTest;
28073
+ /**
28074
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#PluginOrOpenCloud)
28075
+ */
28076
+ export interface PluginOrOpenCloud extends globalThis.EnumItem {
28077
+ Name: "PluginOrOpenCloud";
28078
+ Value: 30;
28079
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28080
+ }
28081
+ export const PluginOrOpenCloud: PluginOrOpenCloud;
28082
+ /**
28083
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Assistant)
28084
+ */
28085
+ export interface Assistant extends globalThis.EnumItem {
28086
+ Name: "Assistant";
28087
+ Value: 31;
28088
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28089
+ }
28090
+ export const Assistant: Assistant;
28091
+ /**
28092
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RemoteCommand)
28093
+ */
28094
+ export interface RemoteCommand extends globalThis.EnumItem {
28095
+ Name: "RemoteCommand";
28096
+ Value: 32;
28097
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28098
+ }
28099
+ export const RemoteCommand: RemoteCommand;
27652
28100
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
27653
28101
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
27654
28102
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
27655
28103
  }
27656
- export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl;
28104
+ export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl | SecurityCapability.Plugin | SecurityCapability.LocalUser | SecurityCapability.WritePlayer | SecurityCapability.RobloxScript | SecurityCapability.RobloxEngine | SecurityCapability.Unassigned | SecurityCapability.InternalTest | SecurityCapability.PluginOrOpenCloud | SecurityCapability.Assistant | SecurityCapability.RemoteCommand;
27657
28105
  /**
27658
28106
  * Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
27659
28107
  *
@@ -34095,11 +34543,20 @@ declare namespace Enum {
34095
34543
  EnumType: typeof globalThis.Enum.UploadCaptureResult;
34096
34544
  }
34097
34545
  export const IneligibleCapture: IneligibleCapture;
34546
+ /**
34547
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadQuotaReached)
34548
+ */
34549
+ export interface UploadQuotaReached extends globalThis.EnumItem {
34550
+ Name: "UploadQuotaReached";
34551
+ Value: 5;
34552
+ EnumType: typeof globalThis.Enum.UploadCaptureResult;
34553
+ }
34554
+ export const UploadQuotaReached: UploadQuotaReached;
34098
34555
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
34099
34556
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
34100
34557
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
34101
34558
  }
34102
- export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture;
34559
+ export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached;
34103
34560
  /**
34104
34561
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
34105
34562
  */
@@ -35382,6 +35839,53 @@ declare namespace Enum {
35382
35839
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoError | undefined;
35383
35840
  }
35384
35841
  export type VideoError = VideoError.Ok | VideoError.Eof | VideoError.EAgain | VideoError.BadParameter | VideoError.AllocFailed | VideoError.CodecInitFailed | VideoError.CodecCloseFailed | VideoError.DecodeFailed | VideoError.ParsingFailed | VideoError.Unsupported | VideoError.Generic | VideoError.DownloadFailed | VideoError.StreamNotFound | VideoError.EncodeFailed | VideoError.CreateFailed | VideoError.NoPermission | VideoError.NoService | VideoError.ReleaseFailed | VideoError.Unknown;
35842
+ /**
35843
+ * The size of textures produced by `VideoSampler`.
35844
+ *
35845
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize)
35846
+ */
35847
+ export namespace VideoSampleSize {
35848
+ /**
35849
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Small)
35850
+ */
35851
+ export interface Small extends globalThis.EnumItem {
35852
+ Name: "Small";
35853
+ Value: 0;
35854
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
35855
+ }
35856
+ export const Small: Small;
35857
+ /**
35858
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Medium)
35859
+ */
35860
+ export interface Medium extends globalThis.EnumItem {
35861
+ Name: "Medium";
35862
+ Value: 1;
35863
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
35864
+ }
35865
+ export const Medium: Medium;
35866
+ /**
35867
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Large)
35868
+ */
35869
+ export interface Large extends globalThis.EnumItem {
35870
+ Name: "Large";
35871
+ Value: 2;
35872
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
35873
+ }
35874
+ export const Large: Large;
35875
+ /**
35876
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Full)
35877
+ */
35878
+ export interface Full extends globalThis.EnumItem {
35879
+ Name: "Full";
35880
+ Value: 3;
35881
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
35882
+ }
35883
+ export const Full: Full;
35884
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoSampleSize>;
35885
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoSampleSize | undefined;
35886
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoSampleSize | undefined;
35887
+ }
35888
+ export type VideoSampleSize = VideoSampleSize.Small | VideoSampleSize.Medium | VideoSampleSize.Large | VideoSampleSize.Full;
35385
35889
  /**
35386
35890
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ViewMode)
35387
35891
  */
@@ -36013,7 +36517,7 @@ declare namespace Enum {
36013
36517
  }
36014
36518
  export const SSE: SSE;
36015
36519
  /**
36016
- * The client can connect to any server that provides streaming data transfer (e.g. [chunked encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Transfer-Encoding)). It provides no guarantees about the stream format.
36520
+ * General purpose HTTP streaming client. It can connect to any server that provides streaming data transfer (e.g. [chunked encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Transfer-Encoding)). It provides no guarantees about the stream format.
36017
36521
  *
36018
36522
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#RawStream)
36019
36523
  */
@@ -36024,6 +36528,8 @@ declare namespace Enum {
36024
36528
  }
36025
36529
  export const RawStream: RawStream;
36026
36530
  /**
36531
+ * [WebSocket](https://en.wikipedia.org/wiki/WebSocket) client that provides a bidirectional communication channel over a TCP connection.
36532
+ *
36027
36533
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#WebSocket)
36028
36534
  */
36029
36535
  export interface WebSocket extends globalThis.EnumItem {