@rbxts/types 1.0.884 → 1.0.886
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.
- package/include/generated/None.d.ts +333 -72
- package/include/generated/PluginSecurity.d.ts +55 -25
- package/include/generated/enums.d.ts +573 -7
- package/package.json +1 -1
|
@@ -7680,6 +7680,87 @@ declare namespace Enum {
|
|
|
7680
7680
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7681
7681
|
}
|
|
7682
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;
|
|
7683
7764
|
/**
|
|
7684
7765
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectErrors)
|
|
7685
7766
|
*/
|
|
@@ -8130,6 +8211,15 @@ declare namespace Enum {
|
|
|
8130
8211
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8131
8212
|
}
|
|
8132
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;
|
|
8133
8223
|
/**
|
|
8134
8224
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
8135
8225
|
*/
|
|
@@ -8359,7 +8449,7 @@ declare namespace Enum {
|
|
|
8359
8449
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
8360
8450
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
8361
8451
|
}
|
|
8362
|
-
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;
|
|
8363
8453
|
/**
|
|
8364
8454
|
* Used to determine the connection state of the client to the game server.
|
|
8365
8455
|
*
|
|
@@ -8432,11 +8522,20 @@ declare namespace Enum {
|
|
|
8432
8522
|
EnumType: typeof globalThis.Enum.ContentSourceType;
|
|
8433
8523
|
}
|
|
8434
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;
|
|
8435
8534
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContentSourceType>;
|
|
8436
8535
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ContentSourceType | undefined;
|
|
8437
8536
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ContentSourceType | undefined;
|
|
8438
8537
|
}
|
|
8439
|
-
export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;
|
|
8538
|
+
export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object | ContentSourceType.Opaque;
|
|
8440
8539
|
/**
|
|
8441
8540
|
* Describes the priority of a context action.
|
|
8442
8541
|
*
|
|
@@ -9724,6 +9823,8 @@ declare namespace Enum {
|
|
|
9724
9823
|
}
|
|
9725
9824
|
export const PhysicsCollision: PhysicsCollision;
|
|
9726
9825
|
/**
|
|
9826
|
+
* 3D parts used for simulation.
|
|
9827
|
+
*
|
|
9727
9828
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#BaseParts)
|
|
9728
9829
|
*/
|
|
9729
9830
|
export interface BaseParts extends globalThis.EnumItem {
|
|
@@ -21019,9 +21120,14 @@ declare namespace Enum {
|
|
|
21019
21120
|
}
|
|
21020
21121
|
export const StreamingMesh: StreamingMesh;
|
|
21021
21122
|
/**
|
|
21022
|
-
*
|
|
21123
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
|
|
21023
21124
|
*/
|
|
21024
|
-
export
|
|
21125
|
+
export interface SLIM extends globalThis.EnumItem {
|
|
21126
|
+
Name: "SLIM";
|
|
21127
|
+
Value: 2;
|
|
21128
|
+
EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
|
|
21129
|
+
}
|
|
21130
|
+
export const SLIM: SLIM;
|
|
21025
21131
|
/**
|
|
21026
21132
|
* A lower resolution mesh will not be displayed.
|
|
21027
21133
|
*
|
|
@@ -21029,7 +21135,7 @@ declare namespace Enum {
|
|
|
21029
21135
|
*/
|
|
21030
21136
|
export interface Disabled extends globalThis.EnumItem {
|
|
21031
21137
|
Name: "Disabled";
|
|
21032
|
-
Value:
|
|
21138
|
+
Value: 3;
|
|
21033
21139
|
EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
|
|
21034
21140
|
}
|
|
21035
21141
|
export const Disabled: Disabled;
|
|
@@ -21037,7 +21143,7 @@ declare namespace Enum {
|
|
|
21037
21143
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelLevelOfDetail | undefined;
|
|
21038
21144
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelLevelOfDetail | undefined;
|
|
21039
21145
|
}
|
|
21040
|
-
export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.Disabled;
|
|
21146
|
+
export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.SLIM | ModelLevelOfDetail.Disabled;
|
|
21041
21147
|
/**
|
|
21042
21148
|
* Controls how `Models` are sent to clients in experiences with instance streaming enabled.
|
|
21043
21149
|
*
|
|
@@ -21148,6 +21254,150 @@ declare namespace Enum {
|
|
|
21148
21254
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelStreamingMode | undefined;
|
|
21149
21255
|
}
|
|
21150
21256
|
export type ModelStreamingMode = ModelStreamingMode.Default | ModelStreamingMode.Atomic | ModelStreamingMode.Persistent | ModelStreamingMode.PersistentPerPlayer | ModelStreamingMode.Nonatomic;
|
|
21257
|
+
/**
|
|
21258
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory)
|
|
21259
|
+
*/
|
|
21260
|
+
export namespace ModerationResultCategory {
|
|
21261
|
+
/**
|
|
21262
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory#ViolationDetected)
|
|
21263
|
+
*/
|
|
21264
|
+
export interface ViolationDetected extends globalThis.EnumItem {
|
|
21265
|
+
Name: "ViolationDetected";
|
|
21266
|
+
Value: 0;
|
|
21267
|
+
EnumType: typeof globalThis.Enum.ModerationResultCategory;
|
|
21268
|
+
}
|
|
21269
|
+
export const ViolationDetected: ViolationDetected;
|
|
21270
|
+
/**
|
|
21271
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory#Borderline)
|
|
21272
|
+
*/
|
|
21273
|
+
export interface Borderline extends globalThis.EnumItem {
|
|
21274
|
+
Name: "Borderline";
|
|
21275
|
+
Value: 1;
|
|
21276
|
+
EnumType: typeof globalThis.Enum.ModerationResultCategory;
|
|
21277
|
+
}
|
|
21278
|
+
export const Borderline: Borderline;
|
|
21279
|
+
/**
|
|
21280
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory#NoViolationDetected)
|
|
21281
|
+
*/
|
|
21282
|
+
export interface NoViolationDetected extends globalThis.EnumItem {
|
|
21283
|
+
Name: "NoViolationDetected";
|
|
21284
|
+
Value: 2;
|
|
21285
|
+
EnumType: typeof globalThis.Enum.ModerationResultCategory;
|
|
21286
|
+
}
|
|
21287
|
+
export const NoViolationDetected: NoViolationDetected;
|
|
21288
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModerationResultCategory>;
|
|
21289
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModerationResultCategory | undefined;
|
|
21290
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModerationResultCategory | undefined;
|
|
21291
|
+
}
|
|
21292
|
+
export type ModerationResultCategory = ModerationResultCategory.ViolationDetected | ModerationResultCategory.Borderline | ModerationResultCategory.NoViolationDetected;
|
|
21293
|
+
/**
|
|
21294
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel)
|
|
21295
|
+
*/
|
|
21296
|
+
export namespace ModerationResultLabel {
|
|
21297
|
+
/**
|
|
21298
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#ChildExploitation)
|
|
21299
|
+
*/
|
|
21300
|
+
export interface ChildExploitation extends globalThis.EnumItem {
|
|
21301
|
+
Name: "ChildExploitation";
|
|
21302
|
+
Value: 0;
|
|
21303
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21304
|
+
}
|
|
21305
|
+
export const ChildExploitation: ChildExploitation;
|
|
21306
|
+
/**
|
|
21307
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#SuicideSelfInjuryAndHarmfulBehavior)
|
|
21308
|
+
*/
|
|
21309
|
+
export interface SuicideSelfInjuryAndHarmfulBehavior extends globalThis.EnumItem {
|
|
21310
|
+
Name: "SuicideSelfInjuryAndHarmfulBehavior";
|
|
21311
|
+
Value: 1;
|
|
21312
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21313
|
+
}
|
|
21314
|
+
export const SuicideSelfInjuryAndHarmfulBehavior: SuicideSelfInjuryAndHarmfulBehavior;
|
|
21315
|
+
/**
|
|
21316
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#ThreatsBullyingAndHarassment)
|
|
21317
|
+
*/
|
|
21318
|
+
export interface ThreatsBullyingAndHarassment extends globalThis.EnumItem {
|
|
21319
|
+
Name: "ThreatsBullyingAndHarassment";
|
|
21320
|
+
Value: 2;
|
|
21321
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21322
|
+
}
|
|
21323
|
+
export const ThreatsBullyingAndHarassment: ThreatsBullyingAndHarassment;
|
|
21324
|
+
/**
|
|
21325
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#TerrorismAndViolentExtremism)
|
|
21326
|
+
*/
|
|
21327
|
+
export interface TerrorismAndViolentExtremism extends globalThis.EnumItem {
|
|
21328
|
+
Name: "TerrorismAndViolentExtremism";
|
|
21329
|
+
Value: 3;
|
|
21330
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21331
|
+
}
|
|
21332
|
+
export const TerrorismAndViolentExtremism: TerrorismAndViolentExtremism;
|
|
21333
|
+
/**
|
|
21334
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#DiscriminationSlursAndHateSpeech)
|
|
21335
|
+
*/
|
|
21336
|
+
export interface DiscriminationSlursAndHateSpeech extends globalThis.EnumItem {
|
|
21337
|
+
Name: "DiscriminationSlursAndHateSpeech";
|
|
21338
|
+
Value: 4;
|
|
21339
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21340
|
+
}
|
|
21341
|
+
export const DiscriminationSlursAndHateSpeech: DiscriminationSlursAndHateSpeech;
|
|
21342
|
+
/**
|
|
21343
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#RealWorldSensitiveEvents)
|
|
21344
|
+
*/
|
|
21345
|
+
export interface RealWorldSensitiveEvents extends globalThis.EnumItem {
|
|
21346
|
+
Name: "RealWorldSensitiveEvents";
|
|
21347
|
+
Value: 5;
|
|
21348
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21349
|
+
}
|
|
21350
|
+
export const RealWorldSensitiveEvents: RealWorldSensitiveEvents;
|
|
21351
|
+
/**
|
|
21352
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#ViolentContentAndGore)
|
|
21353
|
+
*/
|
|
21354
|
+
export interface ViolentContentAndGore extends globalThis.EnumItem {
|
|
21355
|
+
Name: "ViolentContentAndGore";
|
|
21356
|
+
Value: 6;
|
|
21357
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21358
|
+
}
|
|
21359
|
+
export const ViolentContentAndGore: ViolentContentAndGore;
|
|
21360
|
+
/**
|
|
21361
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#RomanticAndSexualContent)
|
|
21362
|
+
*/
|
|
21363
|
+
export interface RomanticAndSexualContent extends globalThis.EnumItem {
|
|
21364
|
+
Name: "RomanticAndSexualContent";
|
|
21365
|
+
Value: 7;
|
|
21366
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21367
|
+
}
|
|
21368
|
+
export const RomanticAndSexualContent: RomanticAndSexualContent;
|
|
21369
|
+
/**
|
|
21370
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#IllegalAndRegulatedGoodsAndActivities)
|
|
21371
|
+
*/
|
|
21372
|
+
export interface IllegalAndRegulatedGoodsAndActivities extends globalThis.EnumItem {
|
|
21373
|
+
Name: "IllegalAndRegulatedGoodsAndActivities";
|
|
21374
|
+
Value: 8;
|
|
21375
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21376
|
+
}
|
|
21377
|
+
export const IllegalAndRegulatedGoodsAndActivities: IllegalAndRegulatedGoodsAndActivities;
|
|
21378
|
+
/**
|
|
21379
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#Profanity)
|
|
21380
|
+
*/
|
|
21381
|
+
export interface Profanity extends globalThis.EnumItem {
|
|
21382
|
+
Name: "Profanity";
|
|
21383
|
+
Value: 9;
|
|
21384
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21385
|
+
}
|
|
21386
|
+
export const Profanity: Profanity;
|
|
21387
|
+
/**
|
|
21388
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#Other)
|
|
21389
|
+
*/
|
|
21390
|
+
export interface Other extends globalThis.EnumItem {
|
|
21391
|
+
Name: "Other";
|
|
21392
|
+
Value: 100;
|
|
21393
|
+
EnumType: typeof globalThis.Enum.ModerationResultLabel;
|
|
21394
|
+
}
|
|
21395
|
+
export const Other: Other;
|
|
21396
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModerationResultLabel>;
|
|
21397
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModerationResultLabel | undefined;
|
|
21398
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModerationResultLabel | undefined;
|
|
21399
|
+
}
|
|
21400
|
+
export type ModerationResultLabel = ModerationResultLabel.ChildExploitation | ModerationResultLabel.SuicideSelfInjuryAndHarmfulBehavior | ModerationResultLabel.ThreatsBullyingAndHarassment | ModerationResultLabel.TerrorismAndViolentExtremism | ModerationResultLabel.DiscriminationSlursAndHateSpeech | ModerationResultLabel.RealWorldSensitiveEvents | ModerationResultLabel.ViolentContentAndGore | ModerationResultLabel.RomanticAndSexualContent | ModerationResultLabel.IllegalAndRegulatedGoodsAndActivities | ModerationResultLabel.Profanity | ModerationResultLabel.Other;
|
|
21151
21401
|
/**
|
|
21152
21402
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationStatus)
|
|
21153
21403
|
*/
|
|
@@ -22257,6 +22507,8 @@ declare namespace Enum {
|
|
|
22257
22507
|
}
|
|
22258
22508
|
export const Grid8x8: Grid8x8;
|
|
22259
22509
|
/**
|
|
22510
|
+
* A custom grid size defined by `FlipbookSizeX` and `FlipbookSizeY`.
|
|
22511
|
+
*
|
|
22260
22512
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookLayout#Custom)
|
|
22261
22513
|
*/
|
|
22262
22514
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -23419,6 +23671,50 @@ declare namespace Enum {
|
|
|
23419
23671
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerDataLoadFailureBehavior | undefined;
|
|
23420
23672
|
}
|
|
23421
23673
|
export type PlayerDataLoadFailureBehavior = PlayerDataLoadFailureBehavior.Failure | PlayerDataLoadFailureBehavior.FallbackToDefault | PlayerDataLoadFailureBehavior.Kick;
|
|
23674
|
+
/**
|
|
23675
|
+
* An enum that specifies the reason for **Players.PlayerRemoving** signal.
|
|
23676
|
+
*
|
|
23677
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason)
|
|
23678
|
+
*/
|
|
23679
|
+
export namespace PlayerExitReason {
|
|
23680
|
+
/**
|
|
23681
|
+
* Catch-all for all other disconnect reasons.
|
|
23682
|
+
*
|
|
23683
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#Unknown)
|
|
23684
|
+
*/
|
|
23685
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
23686
|
+
Name: "Unknown";
|
|
23687
|
+
Value: 0;
|
|
23688
|
+
EnumType: typeof globalThis.Enum.PlayerExitReason;
|
|
23689
|
+
}
|
|
23690
|
+
export const Unknown: Unknown;
|
|
23691
|
+
/**
|
|
23692
|
+
* User was kicked by Roblox systems, such as being blocked while in a Private Server.
|
|
23693
|
+
*
|
|
23694
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#PlatformKick)
|
|
23695
|
+
*/
|
|
23696
|
+
export interface PlatformKick extends globalThis.EnumItem {
|
|
23697
|
+
Name: "PlatformKick";
|
|
23698
|
+
Value: 1;
|
|
23699
|
+
EnumType: typeof globalThis.Enum.PlayerExitReason;
|
|
23700
|
+
}
|
|
23701
|
+
export const PlatformKick: PlatformKick;
|
|
23702
|
+
/**
|
|
23703
|
+
* Creator called **Player:Kick()**
|
|
23704
|
+
*
|
|
23705
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#CreatorKick)
|
|
23706
|
+
*/
|
|
23707
|
+
export interface CreatorKick extends globalThis.EnumItem {
|
|
23708
|
+
Name: "CreatorKick";
|
|
23709
|
+
Value: 2;
|
|
23710
|
+
EnumType: typeof globalThis.Enum.PlayerExitReason;
|
|
23711
|
+
}
|
|
23712
|
+
export const CreatorKick: CreatorKick;
|
|
23713
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerExitReason>;
|
|
23714
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerExitReason | undefined;
|
|
23715
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerExitReason | undefined;
|
|
23716
|
+
}
|
|
23717
|
+
export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
|
|
23422
23718
|
/**
|
|
23423
23719
|
* Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
|
|
23424
23720
|
*
|
|
@@ -23607,6 +23903,51 @@ declare namespace Enum {
|
|
|
23607
23903
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
|
|
23608
23904
|
}
|
|
23609
23905
|
export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
|
|
23906
|
+
/**
|
|
23907
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState)
|
|
23908
|
+
*/
|
|
23909
|
+
export namespace PredictionState {
|
|
23910
|
+
/**
|
|
23911
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Idle)
|
|
23912
|
+
*/
|
|
23913
|
+
export interface Idle extends globalThis.EnumItem {
|
|
23914
|
+
Name: "Idle";
|
|
23915
|
+
Value: 0;
|
|
23916
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23917
|
+
}
|
|
23918
|
+
export const Idle: Idle;
|
|
23919
|
+
/**
|
|
23920
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Simulating)
|
|
23921
|
+
*/
|
|
23922
|
+
export interface Simulating extends globalThis.EnumItem {
|
|
23923
|
+
Name: "Simulating";
|
|
23924
|
+
Value: 1;
|
|
23925
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23926
|
+
}
|
|
23927
|
+
export const Simulating: Simulating;
|
|
23928
|
+
/**
|
|
23929
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#RollingBack)
|
|
23930
|
+
*/
|
|
23931
|
+
export interface RollingBack extends globalThis.EnumItem {
|
|
23932
|
+
Name: "RollingBack";
|
|
23933
|
+
Value: 2;
|
|
23934
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23935
|
+
}
|
|
23936
|
+
export const RollingBack: RollingBack;
|
|
23937
|
+
/**
|
|
23938
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Resimulating)
|
|
23939
|
+
*/
|
|
23940
|
+
export interface Resimulating extends globalThis.EnumItem {
|
|
23941
|
+
Name: "Resimulating";
|
|
23942
|
+
Value: 3;
|
|
23943
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23944
|
+
}
|
|
23945
|
+
export const Resimulating: Resimulating;
|
|
23946
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionState>;
|
|
23947
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionState | undefined;
|
|
23948
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionState | undefined;
|
|
23949
|
+
}
|
|
23950
|
+
export type PredictionState = PredictionState.Idle | PredictionState.Simulating | PredictionState.RollingBack | PredictionState.Resimulating;
|
|
23610
23951
|
/**
|
|
23611
23952
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
23612
23953
|
*
|
|
@@ -23636,7 +23977,7 @@ declare namespace Enum {
|
|
|
23636
23977
|
}
|
|
23637
23978
|
export const Gamepad: Gamepad;
|
|
23638
23979
|
/**
|
|
23639
|
-
* The player's device has touch capability and no other input method is available or
|
|
23980
|
+
* The player's device has touch capability and no other input method is available or was recently interacted with.
|
|
23640
23981
|
*
|
|
23641
23982
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Touch)
|
|
23642
23983
|
*/
|
|
@@ -25702,6 +26043,42 @@ declare namespace Enum {
|
|
|
25702
26043
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReverbType | undefined;
|
|
25703
26044
|
}
|
|
25704
26045
|
export type ReverbType = ReverbType.NoReverb | ReverbType.GenericReverb | ReverbType.PaddedCell | ReverbType.Room | ReverbType.Bathroom | ReverbType.LivingRoom | ReverbType.StoneRoom | ReverbType.Auditorium | ReverbType.ConcertHall | ReverbType.Cave | ReverbType.Arena | ReverbType.Hangar | ReverbType.CarpettedHallway | ReverbType.Hallway | ReverbType.StoneCorridor | ReverbType.Alley | ReverbType.Forest | ReverbType.City | ReverbType.Mountains | ReverbType.Quarry | ReverbType.Plain | ReverbType.ParkingLot | ReverbType.SewerPipe | ReverbType.UnderWater;
|
|
26046
|
+
/**
|
|
26047
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState)
|
|
26048
|
+
*/
|
|
26049
|
+
export namespace ReviewableContentState {
|
|
26050
|
+
/**
|
|
26051
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState#Pending)
|
|
26052
|
+
*/
|
|
26053
|
+
export interface Pending extends globalThis.EnumItem {
|
|
26054
|
+
Name: "Pending";
|
|
26055
|
+
Value: 0;
|
|
26056
|
+
EnumType: typeof globalThis.Enum.ReviewableContentState;
|
|
26057
|
+
}
|
|
26058
|
+
export const Pending: Pending;
|
|
26059
|
+
/**
|
|
26060
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState#Completed)
|
|
26061
|
+
*/
|
|
26062
|
+
export interface Completed extends globalThis.EnumItem {
|
|
26063
|
+
Name: "Completed";
|
|
26064
|
+
Value: 1;
|
|
26065
|
+
EnumType: typeof globalThis.Enum.ReviewableContentState;
|
|
26066
|
+
}
|
|
26067
|
+
export const Completed: Completed;
|
|
26068
|
+
/**
|
|
26069
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState#Failed)
|
|
26070
|
+
*/
|
|
26071
|
+
export interface Failed extends globalThis.EnumItem {
|
|
26072
|
+
Name: "Failed";
|
|
26073
|
+
Value: 2;
|
|
26074
|
+
EnumType: typeof globalThis.Enum.ReviewableContentState;
|
|
26075
|
+
}
|
|
26076
|
+
export const Failed: Failed;
|
|
26077
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReviewableContentState>;
|
|
26078
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReviewableContentState | undefined;
|
|
26079
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReviewableContentState | undefined;
|
|
26080
|
+
}
|
|
26081
|
+
export type ReviewableContentState = ReviewableContentState.Pending | ReviewableContentState.Completed | ReviewableContentState.Failed;
|
|
25705
26082
|
/**
|
|
25706
26083
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RibbonTool)
|
|
25707
26084
|
*/
|
|
@@ -30852,6 +31229,195 @@ declare namespace Enum {
|
|
|
30852
31229
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Technology | undefined;
|
|
30853
31230
|
}
|
|
30854
31231
|
export type Technology = Technology.Voxel | Technology.Compatibility | Technology.ShadowMap | Technology.Future | Technology.Legacy | Technology.Unified;
|
|
31232
|
+
/**
|
|
31233
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend)
|
|
31234
|
+
*/
|
|
31235
|
+
export namespace TelemetryBackend {
|
|
31236
|
+
/**
|
|
31237
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#UNSPECIFIED)
|
|
31238
|
+
*/
|
|
31239
|
+
export interface UNSPECIFIED extends globalThis.EnumItem {
|
|
31240
|
+
Name: "UNSPECIFIED";
|
|
31241
|
+
Value: 0;
|
|
31242
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31243
|
+
}
|
|
31244
|
+
export const UNSPECIFIED: UNSPECIFIED;
|
|
31245
|
+
/**
|
|
31246
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#EventIngest)
|
|
31247
|
+
*/
|
|
31248
|
+
export interface EventIngest extends globalThis.EnumItem {
|
|
31249
|
+
Name: "EventIngest";
|
|
31250
|
+
Value: 1;
|
|
31251
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31252
|
+
}
|
|
31253
|
+
export const EventIngest: EventIngest;
|
|
31254
|
+
/**
|
|
31255
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Points)
|
|
31256
|
+
*/
|
|
31257
|
+
export interface Points extends globalThis.EnumItem {
|
|
31258
|
+
Name: "Points";
|
|
31259
|
+
Value: 2;
|
|
31260
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31261
|
+
}
|
|
31262
|
+
export const Points: Points;
|
|
31263
|
+
/**
|
|
31264
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Teletune)
|
|
31265
|
+
*/
|
|
31266
|
+
export interface Teletune extends globalThis.EnumItem {
|
|
31267
|
+
Name: "Teletune";
|
|
31268
|
+
Value: 3;
|
|
31269
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31270
|
+
}
|
|
31271
|
+
export const Teletune: Teletune;
|
|
31272
|
+
/**
|
|
31273
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#EphemeralCounter)
|
|
31274
|
+
*/
|
|
31275
|
+
export interface EphemeralCounter extends globalThis.EnumItem {
|
|
31276
|
+
Name: "EphemeralCounter";
|
|
31277
|
+
Value: 4;
|
|
31278
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31279
|
+
}
|
|
31280
|
+
export const EphemeralCounter: EphemeralCounter;
|
|
31281
|
+
/**
|
|
31282
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#EphemeralStat)
|
|
31283
|
+
*/
|
|
31284
|
+
export interface EphemeralStat extends globalThis.EnumItem {
|
|
31285
|
+
Name: "EphemeralStat";
|
|
31286
|
+
Value: 5;
|
|
31287
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31288
|
+
}
|
|
31289
|
+
export const EphemeralStat: EphemeralStat;
|
|
31290
|
+
/**
|
|
31291
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Counter)
|
|
31292
|
+
*/
|
|
31293
|
+
export interface Counter extends globalThis.EnumItem {
|
|
31294
|
+
Name: "Counter";
|
|
31295
|
+
Value: 6;
|
|
31296
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31297
|
+
}
|
|
31298
|
+
export const Counter: Counter;
|
|
31299
|
+
/**
|
|
31300
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Stat)
|
|
31301
|
+
*/
|
|
31302
|
+
export interface Stat extends globalThis.EnumItem {
|
|
31303
|
+
Name: "Stat";
|
|
31304
|
+
Value: 7;
|
|
31305
|
+
EnumType: typeof globalThis.Enum.TelemetryBackend;
|
|
31306
|
+
}
|
|
31307
|
+
export const Stat: Stat;
|
|
31308
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TelemetryBackend>;
|
|
31309
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TelemetryBackend | undefined;
|
|
31310
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TelemetryBackend | undefined;
|
|
31311
|
+
}
|
|
31312
|
+
export type TelemetryBackend = TelemetryBackend.UNSPECIFIED | TelemetryBackend.EventIngest | TelemetryBackend.Points | TelemetryBackend.Teletune | TelemetryBackend.EphemeralCounter | TelemetryBackend.EphemeralStat | TelemetryBackend.Counter | TelemetryBackend.Stat;
|
|
31313
|
+
/**
|
|
31314
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField)
|
|
31315
|
+
*/
|
|
31316
|
+
export namespace TelemetryStandardizedField {
|
|
31317
|
+
/**
|
|
31318
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddDatacenterId)
|
|
31319
|
+
*/
|
|
31320
|
+
export interface AddDatacenterId extends globalThis.EnumItem {
|
|
31321
|
+
Name: "AddDatacenterId";
|
|
31322
|
+
Value: 0;
|
|
31323
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31324
|
+
}
|
|
31325
|
+
export const AddDatacenterId: AddDatacenterId;
|
|
31326
|
+
/**
|
|
31327
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddPlaceId)
|
|
31328
|
+
*/
|
|
31329
|
+
export interface AddPlaceId extends globalThis.EnumItem {
|
|
31330
|
+
Name: "AddPlaceId";
|
|
31331
|
+
Value: 1;
|
|
31332
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31333
|
+
}
|
|
31334
|
+
export const AddPlaceId: AddPlaceId;
|
|
31335
|
+
/**
|
|
31336
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddUniverseId)
|
|
31337
|
+
*/
|
|
31338
|
+
export interface AddUniverseId extends globalThis.EnumItem {
|
|
31339
|
+
Name: "AddUniverseId";
|
|
31340
|
+
Value: 2;
|
|
31341
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31342
|
+
}
|
|
31343
|
+
export const AddUniverseId: AddUniverseId;
|
|
31344
|
+
/**
|
|
31345
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddPlaceInstanceId)
|
|
31346
|
+
*/
|
|
31347
|
+
export interface AddPlaceInstanceId extends globalThis.EnumItem {
|
|
31348
|
+
Name: "AddPlaceInstanceId";
|
|
31349
|
+
Value: 3;
|
|
31350
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31351
|
+
}
|
|
31352
|
+
export const AddPlaceInstanceId: AddPlaceInstanceId;
|
|
31353
|
+
/**
|
|
31354
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddPlaySessionId)
|
|
31355
|
+
*/
|
|
31356
|
+
export interface AddPlaySessionId extends globalThis.EnumItem {
|
|
31357
|
+
Name: "AddPlaySessionId";
|
|
31358
|
+
Value: 4;
|
|
31359
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31360
|
+
}
|
|
31361
|
+
export const AddPlaySessionId: AddPlaySessionId;
|
|
31362
|
+
/**
|
|
31363
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddCurrentContextName)
|
|
31364
|
+
*/
|
|
31365
|
+
export interface AddCurrentContextName extends globalThis.EnumItem {
|
|
31366
|
+
Name: "AddCurrentContextName";
|
|
31367
|
+
Value: 5;
|
|
31368
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31369
|
+
}
|
|
31370
|
+
export const AddCurrentContextName: AddCurrentContextName;
|
|
31371
|
+
/**
|
|
31372
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddOsInfo)
|
|
31373
|
+
*/
|
|
31374
|
+
export interface AddOsInfo extends globalThis.EnumItem {
|
|
31375
|
+
Name: "AddOsInfo";
|
|
31376
|
+
Value: 6;
|
|
31377
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31378
|
+
}
|
|
31379
|
+
export const AddOsInfo: AddOsInfo;
|
|
31380
|
+
/**
|
|
31381
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddArchitectureInfo)
|
|
31382
|
+
*/
|
|
31383
|
+
export interface AddArchitectureInfo extends globalThis.EnumItem {
|
|
31384
|
+
Name: "AddArchitectureInfo";
|
|
31385
|
+
Value: 7;
|
|
31386
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31387
|
+
}
|
|
31388
|
+
export const AddArchitectureInfo: AddArchitectureInfo;
|
|
31389
|
+
/**
|
|
31390
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddCpuInfo)
|
|
31391
|
+
*/
|
|
31392
|
+
export interface AddCpuInfo extends globalThis.EnumItem {
|
|
31393
|
+
Name: "AddCpuInfo";
|
|
31394
|
+
Value: 8;
|
|
31395
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31396
|
+
}
|
|
31397
|
+
export const AddCpuInfo: AddCpuInfo;
|
|
31398
|
+
/**
|
|
31399
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddMemoryInfo)
|
|
31400
|
+
*/
|
|
31401
|
+
export interface AddMemoryInfo extends globalThis.EnumItem {
|
|
31402
|
+
Name: "AddMemoryInfo";
|
|
31403
|
+
Value: 9;
|
|
31404
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31405
|
+
}
|
|
31406
|
+
export const AddMemoryInfo: AddMemoryInfo;
|
|
31407
|
+
/**
|
|
31408
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddSessionInfo)
|
|
31409
|
+
*/
|
|
31410
|
+
export interface AddSessionInfo extends globalThis.EnumItem {
|
|
31411
|
+
Name: "AddSessionInfo";
|
|
31412
|
+
Value: 10;
|
|
31413
|
+
EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
|
|
31414
|
+
}
|
|
31415
|
+
export const AddSessionInfo: AddSessionInfo;
|
|
31416
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TelemetryStandardizedField>;
|
|
31417
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TelemetryStandardizedField | undefined;
|
|
31418
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TelemetryStandardizedField | undefined;
|
|
31419
|
+
}
|
|
31420
|
+
export type TelemetryStandardizedField = TelemetryStandardizedField.AddDatacenterId | TelemetryStandardizedField.AddPlaceId | TelemetryStandardizedField.AddUniverseId | TelemetryStandardizedField.AddPlaceInstanceId | TelemetryStandardizedField.AddPlaySessionId | TelemetryStandardizedField.AddCurrentContextName | TelemetryStandardizedField.AddOsInfo | TelemetryStandardizedField.AddArchitectureInfo | TelemetryStandardizedField.AddCpuInfo | TelemetryStandardizedField.AddMemoryInfo | TelemetryStandardizedField.AddSessionInfo;
|
|
30855
31421
|
/**
|
|
30856
31422
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeleportMethod)
|
|
30857
31423
|
*/
|