@rbxts/types 1.0.910 → 1.0.912

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.
@@ -400,6 +400,69 @@ declare namespace Enum {
400
400
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActionType | undefined;
401
401
  }
402
402
  export type ActionType = ActionType.Nothing | ActionType.Pause | ActionType.Lose | ActionType.Draw | ActionType.Win;
403
+ /**
404
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus)
405
+ */
406
+ export namespace ActivePayerStatus {
407
+ /**
408
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Unknown)
409
+ */
410
+ export interface Unknown extends globalThis.EnumItem {
411
+ Name: "Unknown";
412
+ Value: 0;
413
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
414
+ }
415
+ export const Unknown: Unknown;
416
+ /**
417
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Never)
418
+ */
419
+ export interface Never extends globalThis.EnumItem {
420
+ Name: "Never";
421
+ Value: 1;
422
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
423
+ }
424
+ export const Never: Never;
425
+ /**
426
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Lapsed)
427
+ */
428
+ export interface Lapsed extends globalThis.EnumItem {
429
+ Name: "Lapsed";
430
+ Value: 2;
431
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
432
+ }
433
+ export const Lapsed: Lapsed;
434
+ /**
435
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Casual50Percent)
436
+ */
437
+ export interface Casual50Percent extends globalThis.EnumItem {
438
+ Name: "Casual50Percent";
439
+ Value: 3;
440
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
441
+ }
442
+ export const Casual50Percent: Casual50Percent;
443
+ /**
444
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Intermediate35Percent)
445
+ */
446
+ export interface Intermediate35Percent extends globalThis.EnumItem {
447
+ Name: "Intermediate35Percent";
448
+ Value: 4;
449
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
450
+ }
451
+ export const Intermediate35Percent: Intermediate35Percent;
452
+ /**
453
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Top15Percent)
454
+ */
455
+ export interface Top15Percent extends globalThis.EnumItem {
456
+ Name: "Top15Percent";
457
+ Value: 5;
458
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
459
+ }
460
+ export const Top15Percent: Top15Percent;
461
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActivePayerStatus>;
462
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ActivePayerStatus | undefined;
463
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActivePayerStatus | undefined;
464
+ }
465
+ export type ActivePayerStatus = ActivePayerStatus.Unknown | ActivePayerStatus.Never | ActivePayerStatus.Lapsed | ActivePayerStatus.Casual50Percent | ActivePayerStatus.Intermediate35Percent | ActivePayerStatus.Top15Percent;
403
466
  /**
404
467
  * The CFrame value in which the body mover constraint is expressed.
405
468
  *
@@ -1672,6 +1735,33 @@ declare namespace Enum {
1672
1735
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
1673
1736
  }
1674
1737
  export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.Finished | AnimationNodeInterruptible.Trigger;
1738
+ /**
1739
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePhaseSync)
1740
+ */
1741
+ export namespace AnimationNodePhaseSync {
1742
+ /**
1743
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePhaseSync#Synced)
1744
+ */
1745
+ export interface Synced extends globalThis.EnumItem {
1746
+ Name: "Synced";
1747
+ Value: 0;
1748
+ EnumType: typeof globalThis.Enum.AnimationNodePhaseSync;
1749
+ }
1750
+ export const Synced: Synced;
1751
+ /**
1752
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePhaseSync#Unsynced)
1753
+ */
1754
+ export interface Unsynced extends globalThis.EnumItem {
1755
+ Name: "Unsynced";
1756
+ Value: 1;
1757
+ EnumType: typeof globalThis.Enum.AnimationNodePhaseSync;
1758
+ }
1759
+ export const Unsynced: Unsynced;
1760
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodePhaseSync>;
1761
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodePhaseSync | undefined;
1762
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodePhaseSync | undefined;
1763
+ }
1764
+ export type AnimationNodePhaseSync = AnimationNodePhaseSync.Synced | AnimationNodePhaseSync.Unsynced;
1675
1765
  /**
1676
1766
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
1677
1767
  */
@@ -1776,14 +1866,18 @@ declare namespace Enum {
1776
1866
  }
1777
1867
  export const AddNode: AddNode;
1778
1868
  /**
1779
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#BlendNode)
1869
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#OverNode)
1780
1870
  */
1781
- export interface BlendNode extends globalThis.EnumItem {
1782
- Name: "BlendNode";
1871
+ export interface OverNode extends globalThis.EnumItem {
1872
+ Name: "OverNode";
1783
1873
  Value: 2;
1784
1874
  EnumType: typeof globalThis.Enum.AnimationNodeType;
1785
1875
  }
1786
- export const BlendNode: BlendNode;
1876
+ export const OverNode: OverNode;
1877
+ /**
1878
+ * @deprecated renamed to OverNode
1879
+ */
1880
+ export const BlendNode: OverNode;
1787
1881
  /**
1788
1882
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
1789
1883
  */
@@ -1887,7 +1981,7 @@ declare namespace Enum {
1887
1981
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeType | undefined;
1888
1982
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
1889
1983
  }
1890
- 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;
1984
+ export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.OverNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
1891
1985
  /**
1892
1986
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor)
1893
1987
  */
@@ -3699,6 +3793,8 @@ declare namespace Enum {
3699
3793
  }
3700
3794
  export const Notch: Notch;
3701
3795
  /**
3796
+ * Filter that cuts sound above a specified `Frequency`, at a slope of -6dB/octave.
3797
+ *
3702
3798
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioFilterType#Lowpass6dB)
3703
3799
  */
3704
3800
  export interface Lowpass6dB extends globalThis.EnumItem {
@@ -3746,10 +3842,14 @@ declare namespace Enum {
3746
3842
  }
3747
3843
  export type AudioSimulationFidelity = AudioSimulationFidelity.None | AudioSimulationFidelity.Automatic;
3748
3844
  /**
3845
+ * The categorization of an audio asset.
3846
+ *
3749
3847
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType)
3750
3848
  */
3751
3849
  export namespace AudioSubType {
3752
3850
  /**
3851
+ * Represents an asset which contains music.
3852
+ *
3753
3853
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType#Music)
3754
3854
  */
3755
3855
  export interface Music extends globalThis.EnumItem {
@@ -3759,6 +3859,8 @@ declare namespace Enum {
3759
3859
  }
3760
3860
  export const Music: Music;
3761
3861
  /**
3862
+ * Represents an asset which is a sound effect.
3863
+ *
3762
3864
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType#SoundEffect)
3763
3865
  */
3764
3866
  export interface SoundEffect extends globalThis.EnumItem {
@@ -3773,6 +3875,8 @@ declare namespace Enum {
3773
3875
  }
3774
3876
  export type AudioSubType = AudioSubType.Music | AudioSubType.SoundEffect;
3775
3877
  /**
3878
+ * For audio effects that use some internal buffering, determines the window-size used.
3879
+ *
3776
3880
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioWindowSize)
3777
3881
  */
3778
3882
  export namespace AudioWindowSize {
@@ -9035,6 +9139,15 @@ declare namespace Enum {
9035
9139
  EnumType: typeof globalThis.Enum.ConnectionError;
9036
9140
  }
9037
9141
  export const PlacelaunchCreatorBan: PlacelaunchCreatorBan;
9142
+ /**
9143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchDeviceBlock)
9144
+ */
9145
+ export interface PlacelaunchDeviceBlock extends globalThis.EnumItem {
9146
+ Name: "PlacelaunchDeviceBlock";
9147
+ Value: 601;
9148
+ EnumType: typeof globalThis.Enum.ConnectionError;
9149
+ }
9150
+ export const PlacelaunchDeviceBlock: PlacelaunchDeviceBlock;
9038
9151
  /**
9039
9152
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchCustomMessage)
9040
9153
  */
@@ -9129,7 +9242,7 @@ declare namespace Enum {
9129
9242
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
9130
9243
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
9131
9244
  }
9132
- 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;
9245
+ 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.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
9133
9246
  /**
9134
9247
  * Used to determine the connection state of the client to the game server.
9135
9248
  *
@@ -9487,6 +9600,60 @@ declare namespace Enum {
9487
9600
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateAssetResult | undefined;
9488
9601
  }
9489
9602
  export type CreateAssetResult = CreateAssetResult.Success | CreateAssetResult.PermissionDenied | CreateAssetResult.UploadFailed | CreateAssetResult.Unknown;
9603
+ /**
9604
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult)
9605
+ */
9606
+ export namespace CreateContentResult {
9607
+ /**
9608
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Success)
9609
+ */
9610
+ export interface Success extends globalThis.EnumItem {
9611
+ Name: "Success";
9612
+ Value: 1;
9613
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9614
+ }
9615
+ export const Success: Success;
9616
+ /**
9617
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#PermissionDenied)
9618
+ */
9619
+ export interface PermissionDenied extends globalThis.EnumItem {
9620
+ Name: "PermissionDenied";
9621
+ Value: 2;
9622
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9623
+ }
9624
+ export const PermissionDenied: PermissionDenied;
9625
+ /**
9626
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#UploadFailed)
9627
+ */
9628
+ export interface UploadFailed extends globalThis.EnumItem {
9629
+ Name: "UploadFailed";
9630
+ Value: 3;
9631
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9632
+ }
9633
+ export const UploadFailed: UploadFailed;
9634
+ /**
9635
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Unknown)
9636
+ */
9637
+ export interface Unknown extends globalThis.EnumItem {
9638
+ Name: "Unknown";
9639
+ Value: 4;
9640
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9641
+ }
9642
+ export const Unknown: Unknown;
9643
+ /**
9644
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#StorageLimitExceeded)
9645
+ */
9646
+ export interface StorageLimitExceeded extends globalThis.EnumItem {
9647
+ Name: "StorageLimitExceeded";
9648
+ Value: 5;
9649
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9650
+ }
9651
+ export const StorageLimitExceeded: StorageLimitExceeded;
9652
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreateContentResult>;
9653
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreateContentResult | undefined;
9654
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateContentResult | undefined;
9655
+ }
9656
+ export type CreateContentResult = CreateContentResult.Success | CreateContentResult.PermissionDenied | CreateContentResult.UploadFailed | CreateContentResult.Unknown | CreateContentResult.StorageLimitExceeded;
9490
9657
  /**
9491
9658
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateOutfitFailure)
9492
9659
  */
@@ -9818,11 +9985,7 @@ declare namespace Enum {
9818
9985
  }
9819
9986
  export const RemoveVersionAsync: RemoveVersionAsync;
9820
9987
  /**
9821
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9822
- *
9823
- *
9824
- *
9825
- * Refers to `GetAsync()`, `GetVersionAsync()`, `GetVersionAtTimeAsync()`, and the read of `UpdateAsync()` for `DataStore`.
9988
+ * Refers to `GetAsync()`, `GetVersionAsync()`, `GetVersionAtTimeAsync()`, and the read of `UpdateAsync()` for `DataStore`.
9826
9989
  *
9827
9990
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRead)
9828
9991
  */
@@ -9833,11 +9996,7 @@ declare namespace Enum {
9833
9996
  }
9834
9997
  export const StandardRead: StandardRead;
9835
9998
  /**
9836
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9837
- *
9838
- *
9839
- *
9840
- * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `DataStore`.
9999
+ * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `DataStore`.
9841
10000
  *
9842
10001
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardWrite)
9843
10002
  */
@@ -9848,11 +10007,7 @@ declare namespace Enum {
9848
10007
  }
9849
10008
  export const StandardWrite: StandardWrite;
9850
10009
  /**
9851
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9852
- *
9853
- *
9854
- *
9855
- * Refers to `ListDataStoresAsync()`, and `ListKeysAsync()` and `ListVersionsAsync()` for `DataStore`.
10010
+ * Refers to `ListDataStoresAsync()`, and `ListKeysAsync()` and `ListVersionsAsync()` for `DataStore`.
9856
10011
  *
9857
10012
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardList)
9858
10013
  */
@@ -9863,11 +10018,7 @@ declare namespace Enum {
9863
10018
  }
9864
10019
  export const StandardList: StandardList;
9865
10020
  /**
9866
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9867
- *
9868
- *
9869
- *
9870
- * Refers to `RemoveAsync()` for `DataStore`.
10021
+ * Refers to `RemoveAsync()` for `DataStore`.
9871
10022
  *
9872
10023
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRemove)
9873
10024
  */
@@ -9878,11 +10029,7 @@ declare namespace Enum {
9878
10029
  }
9879
10030
  export const StandardRemove: StandardRemove;
9880
10031
  /**
9881
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9882
- *
9883
- *
9884
- *
9885
- * Refers to `GetAsync()` and the read of `UpdateAsync()` for `OrderedDataStore`.
10032
+ * Refers to `GetAsync()` and the read of `UpdateAsync()` for `OrderedDataStore`.
9886
10033
  *
9887
10034
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRead)
9888
10035
  */
@@ -9893,11 +10040,7 @@ declare namespace Enum {
9893
10040
  }
9894
10041
  export const OrderedRead: OrderedRead;
9895
10042
  /**
9896
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9897
- *
9898
- *
9899
- *
9900
- * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `OrderedDataStore`.
10043
+ * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `OrderedDataStore`.
9901
10044
  *
9902
10045
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedWrite)
9903
10046
  */
@@ -9908,11 +10051,7 @@ declare namespace Enum {
9908
10051
  }
9909
10052
  export const OrderedWrite: OrderedWrite;
9910
10053
  /**
9911
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9912
- *
9913
- *
9914
- *
9915
- * Refers to `GetSortedAsync()` for `OrderedDataStore`. GetRequestBudgetForRequestType()`with this enum will return`0`.
10054
+ * Refers to `GetSortedAsync()` for `OrderedDataStore`. GetRequestBudgetForRequestType()`with this enum will return`0`.
9916
10055
  *
9917
10056
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedList)
9918
10057
  */
@@ -9923,11 +10062,7 @@ declare namespace Enum {
9923
10062
  }
9924
10063
  export const OrderedList: OrderedList;
9925
10064
  /**
9926
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9927
- *
9928
- *
9929
- *
9930
- * Refers to `RemoveAsync()` for `OrderedDataStore`.
10065
+ * Refers to `RemoveAsync()` for `OrderedDataStore`.
9931
10066
  *
9932
10067
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRemove)
9933
10068
  */
@@ -11317,6 +11452,42 @@ declare namespace Enum {
11317
11452
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DisplaySize | undefined;
11318
11453
  }
11319
11454
  export type DisplaySize = DisplaySize.Small | DisplaySize.Medium | DisplaySize.Large;
11455
+ /**
11456
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType)
11457
+ */
11458
+ export namespace DomainType {
11459
+ /**
11460
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#EXPERIENCE)
11461
+ */
11462
+ export interface EXPERIENCE extends globalThis.EnumItem {
11463
+ Name: "EXPERIENCE";
11464
+ Value: 1;
11465
+ EnumType: typeof globalThis.Enum.DomainType;
11466
+ }
11467
+ export const EXPERIENCE: EXPERIENCE;
11468
+ /**
11469
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#GROUP)
11470
+ */
11471
+ export interface GROUP extends globalThis.EnumItem {
11472
+ Name: "GROUP";
11473
+ Value: 2;
11474
+ EnumType: typeof globalThis.Enum.DomainType;
11475
+ }
11476
+ export const GROUP: GROUP;
11477
+ /**
11478
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#OAUTH)
11479
+ */
11480
+ export interface OAUTH extends globalThis.EnumItem {
11481
+ Name: "OAUTH";
11482
+ Value: 3;
11483
+ EnumType: typeof globalThis.Enum.DomainType;
11484
+ }
11485
+ export const OAUTH: OAUTH;
11486
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DomainType>;
11487
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DomainType | undefined;
11488
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DomainType | undefined;
11489
+ }
11490
+ export type DomainType = DomainType.EXPERIENCE | DomainType.GROUP | DomainType.OAUTH;
11320
11491
  /**
11321
11492
  * Used by `UIAspectRatioConstraint.DominantAxis` for resizing the object to maintain the aspect ratio.
11322
11493
  *
@@ -12308,6 +12479,33 @@ declare namespace Enum {
12308
12479
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExplosionType | undefined;
12309
12480
  }
12310
12481
  export type ExplosionType = ExplosionType.NoCraters | ExplosionType.Craters;
12482
+ /**
12483
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode)
12484
+ */
12485
+ export namespace ExternalEditorMode {
12486
+ /**
12487
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#SystemDefault)
12488
+ */
12489
+ export interface SystemDefault extends globalThis.EnumItem {
12490
+ Name: "SystemDefault";
12491
+ Value: 0;
12492
+ EnumType: typeof globalThis.Enum.ExternalEditorMode;
12493
+ }
12494
+ export const SystemDefault: SystemDefault;
12495
+ /**
12496
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#CustomEditor)
12497
+ */
12498
+ export interface CustomEditor extends globalThis.EnumItem {
12499
+ Name: "CustomEditor";
12500
+ Value: 1;
12501
+ EnumType: typeof globalThis.Enum.ExternalEditorMode;
12502
+ }
12503
+ export const CustomEditor: CustomEditor;
12504
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExternalEditorMode>;
12505
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExternalEditorMode | undefined;
12506
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExternalEditorMode | undefined;
12507
+ }
12508
+ export type ExternalEditorMode = ExternalEditorMode.SystemDefault | ExternalEditorMode.CustomEditor;
12311
12509
  /**
12312
12510
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FACSDataLod)
12313
12511
  */
@@ -25248,6 +25446,42 @@ declare namespace Enum {
25248
25446
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerExitReason | undefined;
25249
25447
  }
25250
25448
  export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
25449
+ /**
25450
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus)
25451
+ */
25452
+ export namespace PlayerPlatformSpenderStatus {
25453
+ /**
25454
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Unknown)
25455
+ */
25456
+ export interface Unknown extends globalThis.EnumItem {
25457
+ Name: "Unknown";
25458
+ Value: 0;
25459
+ EnumType: typeof globalThis.Enum.PlayerPlatformSpenderStatus;
25460
+ }
25461
+ export const Unknown: Unknown;
25462
+ /**
25463
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Active)
25464
+ */
25465
+ export interface Active extends globalThis.EnumItem {
25466
+ Name: "Active";
25467
+ Value: 1;
25468
+ EnumType: typeof globalThis.Enum.PlayerPlatformSpenderStatus;
25469
+ }
25470
+ export const Active: Active;
25471
+ /**
25472
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#OtherPayer)
25473
+ */
25474
+ export interface OtherPayer extends globalThis.EnumItem {
25475
+ Name: "OtherPayer";
25476
+ Value: 2;
25477
+ EnumType: typeof globalThis.Enum.PlayerPlatformSpenderStatus;
25478
+ }
25479
+ export const OtherPayer: OtherPayer;
25480
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerPlatformSpenderStatus>;
25481
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerPlatformSpenderStatus | undefined;
25482
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerPlatformSpenderStatus | undefined;
25483
+ }
25484
+ export type PlayerPlatformSpenderStatus = PlayerPlatformSpenderStatus.Unknown | PlayerPlatformSpenderStatus.Active | PlayerPlatformSpenderStatus.OtherPayer;
25251
25485
  /**
25252
25486
  * Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
25253
25487
  *
@@ -27965,14 +28199,18 @@ declare namespace Enum {
27965
28199
  }
27966
28200
  export const Neck: Neck;
27967
28201
  /**
27968
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
28202
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Spine)
27969
28203
  */
27970
- export interface Pelvis extends globalThis.EnumItem {
27971
- Name: "Pelvis";
28204
+ export interface Spine extends globalThis.EnumItem {
28205
+ Name: "Spine";
27972
28206
  Value: 23;
27973
28207
  EnumType: typeof globalThis.Enum.RigLabel;
27974
28208
  }
27975
- export const Pelvis: Pelvis;
28209
+ export const Spine: Spine;
28210
+ /**
28211
+ * @deprecated renamed to Spine
28212
+ */
28213
+ export const Pelvis: Spine;
27976
28214
  /**
27977
28215
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
27978
28216
  */
@@ -28010,23 +28248,31 @@ declare namespace Enum {
28010
28248
  }
28011
28249
  export const RightClavicle: RightClavicle;
28012
28250
  /**
28013
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
28251
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToeBase)
28014
28252
  */
28015
- export interface LeftToes extends globalThis.EnumItem {
28016
- Name: "LeftToes";
28253
+ export interface LeftToeBase extends globalThis.EnumItem {
28254
+ Name: "LeftToeBase";
28017
28255
  Value: 28;
28018
28256
  EnumType: typeof globalThis.Enum.RigLabel;
28019
28257
  }
28020
- export const LeftToes: LeftToes;
28258
+ export const LeftToeBase: LeftToeBase;
28021
28259
  /**
28022
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
28260
+ * @deprecated renamed to LeftToeBase
28023
28261
  */
28024
- export interface RightToes extends globalThis.EnumItem {
28025
- Name: "RightToes";
28262
+ export const LeftToes: LeftToeBase;
28263
+ /**
28264
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToeBase)
28265
+ */
28266
+ export interface RightToeBase extends globalThis.EnumItem {
28267
+ Name: "RightToeBase";
28026
28268
  Value: 29;
28027
28269
  EnumType: typeof globalThis.Enum.RigLabel;
28028
28270
  }
28029
- export const RightToes: RightToes;
28271
+ export const RightToeBase: RightToeBase;
28272
+ /**
28273
+ * @deprecated renamed to RightToeBase
28274
+ */
28275
+ export const RightToes: RightToeBase;
28030
28276
  /**
28031
28277
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb1)
28032
28278
  */
@@ -28166,7 +28412,7 @@ declare namespace Enum {
28166
28412
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
28167
28413
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
28168
28414
  }
28169
- export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.Waist | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.Neck | RigLabel.Pelvis | RigLabel.Chest | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.RightClavicle | RigLabel.LeftToes | RigLabel.RightToes | RigLabel.Thumb1 | RigLabel.Thumb2 | RigLabel.Thumb3 | RigLabel.Index1 | RigLabel.Index2 | RigLabel.Index3 | RigLabel.Middle1 | RigLabel.Middle2 | RigLabel.Middle3 | RigLabel.Ring1 | RigLabel.Ring2 | RigLabel.Ring3 | RigLabel.Pinky1 | RigLabel.Pinky2 | RigLabel.Pinky3;
28415
+ export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.Waist | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.Neck | RigLabel.Spine | RigLabel.Chest | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.RightClavicle | RigLabel.LeftToeBase | RigLabel.RightToeBase | RigLabel.Thumb1 | RigLabel.Thumb2 | RigLabel.Thumb3 | RigLabel.Index1 | RigLabel.Index2 | RigLabel.Index3 | RigLabel.Middle1 | RigLabel.Middle2 | RigLabel.Middle3 | RigLabel.Ring1 | RigLabel.Ring2 | RigLabel.Ring3 | RigLabel.Pinky1 | RigLabel.Pinky2 | RigLabel.Pinky3;
28170
28416
  /**
28171
28417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
28172
28418
  */
@@ -29835,6 +30081,8 @@ declare namespace Enum {
29835
30081
  }
29836
30082
  export const LoadUnownedAsset: LoadUnownedAsset;
29837
30083
  /**
30084
+ * **Deprecated:**
30085
+ *
29838
30086
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetRequire)
29839
30087
  */
29840
30088
  export interface AssetRequire extends globalThis.EnumItem {
@@ -29844,6 +30092,8 @@ declare namespace Enum {
29844
30092
  }
29845
30093
  export const AssetRequire: AssetRequire;
29846
30094
  /**
30095
+ * **Deprecated:**
30096
+ *
29847
30097
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Avatar)
29848
30098
  */
29849
30099
  export interface Avatar extends globalThis.EnumItem {
@@ -38324,10 +38574,14 @@ declare namespace Enum {
38324
38574
  }
38325
38575
  export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom;
38326
38576
  /**
38577
+ * Controls how the engine renders volumetric audio effects.
38578
+ *
38327
38579
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
38328
38580
  */
38329
38581
  export namespace VolumetricAudio {
38330
38582
  /**
38583
+ * Volumetric audio is disabled; sound emanates from a single point.
38584
+ *
38331
38585
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
38332
38586
  */
38333
38587
  export interface Disabled extends globalThis.EnumItem {
@@ -38337,6 +38591,8 @@ declare namespace Enum {
38337
38591
  }
38338
38592
  export const Disabled: Disabled;
38339
38593
  /**
38594
+ * Currently equivalent to `VolumetricAudio.Disabled`.
38595
+ *
38340
38596
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
38341
38597
  */
38342
38598
  export interface Automatic extends globalThis.EnumItem {
@@ -38346,6 +38602,8 @@ declare namespace Enum {
38346
38602
  }
38347
38603
  export const Automatic: Automatic;
38348
38604
  /**
38605
+ * Volumetric audio is enabled; sound emanates from the object's volume.
38606
+ *
38349
38607
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
38350
38608
  */
38351
38609
  export interface Enabled extends globalThis.EnumItem {
@@ -38666,6 +38924,69 @@ declare namespace Enum {
38666
38924
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WeldConstraintPreserve | undefined;
38667
38925
  }
38668
38926
  export type WeldConstraintPreserve = WeldConstraintPreserve.All | WeldConstraintPreserve.None | WeldConstraintPreserve.Touching;
38927
+ /**
38928
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed)
38929
+ */
38930
+ export namespace WhenUserFirstPlayed {
38931
+ /**
38932
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Unknown)
38933
+ */
38934
+ export interface Unknown extends globalThis.EnumItem {
38935
+ Name: "Unknown";
38936
+ Value: 0;
38937
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38938
+ }
38939
+ export const Unknown: Unknown;
38940
+ /**
38941
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days0To30)
38942
+ */
38943
+ export interface Days0To30 extends globalThis.EnumItem {
38944
+ Name: "Days0To30";
38945
+ Value: 1;
38946
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38947
+ }
38948
+ export const Days0To30: Days0To30;
38949
+ /**
38950
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days31To90)
38951
+ */
38952
+ export interface Days31To90 extends globalThis.EnumItem {
38953
+ Name: "Days31To90";
38954
+ Value: 2;
38955
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38956
+ }
38957
+ export const Days31To90: Days31To90;
38958
+ /**
38959
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days91To180)
38960
+ */
38961
+ export interface Days91To180 extends globalThis.EnumItem {
38962
+ Name: "Days91To180";
38963
+ Value: 3;
38964
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38965
+ }
38966
+ export const Days91To180: Days91To180;
38967
+ /**
38968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days181To365)
38969
+ */
38970
+ export interface Days181To365 extends globalThis.EnumItem {
38971
+ Name: "Days181To365";
38972
+ Value: 4;
38973
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38974
+ }
38975
+ export const Days181To365: Days181To365;
38976
+ /**
38977
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days366Plus)
38978
+ */
38979
+ export interface Days366Plus extends globalThis.EnumItem {
38980
+ Name: "Days366Plus";
38981
+ Value: 5;
38982
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38983
+ }
38984
+ export const Days366Plus: Days366Plus;
38985
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WhenUserFirstPlayed>;
38986
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WhenUserFirstPlayed | undefined;
38987
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WhenUserFirstPlayed | undefined;
38988
+ }
38989
+ export type WhenUserFirstPlayed = WhenUserFirstPlayed.Unknown | WhenUserFirstPlayed.Days0To30 | WhenUserFirstPlayed.Days31To90 | WhenUserFirstPlayed.Days91To180 | WhenUserFirstPlayed.Days181To365 | WhenUserFirstPlayed.Days366Plus;
38669
38990
  /**
38670
38991
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhisperChatPrivacyMode)
38671
38992
  */