@rbxts/types 1.0.864 → 1.0.866
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 +301 -59
- package/include/generated/PluginSecurity.d.ts +90 -11
- package/include/generated/enums.d.ts +280 -14
- package/package.json +1 -1
|
@@ -493,6 +493,8 @@ declare namespace Enum {
|
|
|
493
493
|
*/
|
|
494
494
|
export namespace AdAvailabilityResult {
|
|
495
495
|
/**
|
|
496
|
+
* An ad is available to show the user.
|
|
497
|
+
*
|
|
496
498
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#IsAvailable)
|
|
497
499
|
*/
|
|
498
500
|
export interface IsAvailable extends globalThis.EnumItem {
|
|
@@ -502,6 +504,8 @@ declare namespace Enum {
|
|
|
502
504
|
}
|
|
503
505
|
export const IsAvailable: IsAvailable;
|
|
504
506
|
/**
|
|
507
|
+
* The device is ineligible to receive ads.
|
|
508
|
+
*
|
|
505
509
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#DeviceIneligible)
|
|
506
510
|
*/
|
|
507
511
|
export interface DeviceIneligible extends globalThis.EnumItem {
|
|
@@ -511,6 +515,8 @@ declare namespace Enum {
|
|
|
511
515
|
}
|
|
512
516
|
export const DeviceIneligible: DeviceIneligible;
|
|
513
517
|
/**
|
|
518
|
+
* The experience is ineligible to receive ads. Check if its eligibility has been revoked.
|
|
519
|
+
*
|
|
514
520
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#ExperienceIneligible)
|
|
515
521
|
*/
|
|
516
522
|
export interface ExperienceIneligible extends globalThis.EnumItem {
|
|
@@ -520,6 +526,8 @@ declare namespace Enum {
|
|
|
520
526
|
}
|
|
521
527
|
export const ExperienceIneligible: ExperienceIneligible;
|
|
522
528
|
/**
|
|
529
|
+
* An unspecified internal error occurred. Try fetching the ad again.
|
|
530
|
+
*
|
|
523
531
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#InternalError)
|
|
524
532
|
*/
|
|
525
533
|
export interface InternalError extends globalThis.EnumItem {
|
|
@@ -529,6 +537,8 @@ declare namespace Enum {
|
|
|
529
537
|
}
|
|
530
538
|
export const InternalError: InternalError;
|
|
531
539
|
/**
|
|
540
|
+
* There are no ads available to fill your ad request. You might have hit the ad frequency limit.
|
|
541
|
+
*
|
|
532
542
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#NoFill)
|
|
533
543
|
*/
|
|
534
544
|
export interface NoFill extends globalThis.EnumItem {
|
|
@@ -538,6 +548,8 @@ declare namespace Enum {
|
|
|
538
548
|
}
|
|
539
549
|
export const NoFill: NoFill;
|
|
540
550
|
/**
|
|
551
|
+
* The user is ineligible to receive ads during this session. The user might be under 13 or located in a blocked region.
|
|
552
|
+
*
|
|
541
553
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#PlayerIneligible)
|
|
542
554
|
*/
|
|
543
555
|
export interface PlayerIneligible extends globalThis.EnumItem {
|
|
@@ -547,6 +559,8 @@ declare namespace Enum {
|
|
|
547
559
|
}
|
|
548
560
|
export const PlayerIneligible: PlayerIneligible;
|
|
549
561
|
/**
|
|
562
|
+
* The publisher is ineligible to receive ads because they have not met the publisher eligibility requirements.
|
|
563
|
+
*
|
|
550
564
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdAvailabilityResult#PublisherIneligible)
|
|
551
565
|
*/
|
|
552
566
|
export interface PublisherIneligible extends globalThis.EnumItem {
|
|
@@ -640,6 +654,8 @@ declare namespace Enum {
|
|
|
640
654
|
*/
|
|
641
655
|
export namespace AdFormat {
|
|
642
656
|
/**
|
|
657
|
+
* The format of the rewarded video ad.
|
|
658
|
+
*
|
|
643
659
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdFormat#RewardedVideo)
|
|
644
660
|
*/
|
|
645
661
|
export interface RewardedVideo extends globalThis.EnumItem {
|
|
@@ -5157,6 +5173,42 @@ declare namespace Enum {
|
|
|
5157
5173
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BorderMode | undefined;
|
|
5158
5174
|
}
|
|
5159
5175
|
export type BorderMode = BorderMode.Outline | BorderMode.Middle | BorderMode.Inset;
|
|
5176
|
+
/**
|
|
5177
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition)
|
|
5178
|
+
*/
|
|
5179
|
+
export namespace BorderStrokePosition {
|
|
5180
|
+
/**
|
|
5181
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Outer)
|
|
5182
|
+
*/
|
|
5183
|
+
export interface Outer extends globalThis.EnumItem {
|
|
5184
|
+
Name: "Outer";
|
|
5185
|
+
Value: 0;
|
|
5186
|
+
EnumType: typeof globalThis.Enum.BorderStrokePosition;
|
|
5187
|
+
}
|
|
5188
|
+
export const Outer: Outer;
|
|
5189
|
+
/**
|
|
5190
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Center)
|
|
5191
|
+
*/
|
|
5192
|
+
export interface Center extends globalThis.EnumItem {
|
|
5193
|
+
Name: "Center";
|
|
5194
|
+
Value: 1;
|
|
5195
|
+
EnumType: typeof globalThis.Enum.BorderStrokePosition;
|
|
5196
|
+
}
|
|
5197
|
+
export const Center: Center;
|
|
5198
|
+
/**
|
|
5199
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Inner)
|
|
5200
|
+
*/
|
|
5201
|
+
export interface Inner extends globalThis.EnumItem {
|
|
5202
|
+
Name: "Inner";
|
|
5203
|
+
Value: 2;
|
|
5204
|
+
EnumType: typeof globalThis.Enum.BorderStrokePosition;
|
|
5205
|
+
}
|
|
5206
|
+
export const Inner: Inner;
|
|
5207
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BorderStrokePosition>;
|
|
5208
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BorderStrokePosition | undefined;
|
|
5209
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BorderStrokePosition | undefined;
|
|
5210
|
+
}
|
|
5211
|
+
export type BorderStrokePosition = BorderStrokePosition.Outer | BorderStrokePosition.Center | BorderStrokePosition.Inner;
|
|
5160
5212
|
/**
|
|
5161
5213
|
* Reason for the breakpoint hit.
|
|
5162
5214
|
*
|
|
@@ -5685,6 +5737,24 @@ declare namespace Enum {
|
|
|
5685
5737
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraType | undefined;
|
|
5686
5738
|
}
|
|
5687
5739
|
export type CameraType = CameraType.Fixed | CameraType.Attach | CameraType.Watch | CameraType.Track | CameraType.Follow | CameraType.Custom | CameraType.Scriptable | CameraType.Orbital;
|
|
5740
|
+
/**
|
|
5741
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission)
|
|
5742
|
+
*/
|
|
5743
|
+
export namespace CaptureGalleryPermission {
|
|
5744
|
+
/**
|
|
5745
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission#ReadAndUpload)
|
|
5746
|
+
*/
|
|
5747
|
+
export interface ReadAndUpload extends globalThis.EnumItem {
|
|
5748
|
+
Name: "ReadAndUpload";
|
|
5749
|
+
Value: 0;
|
|
5750
|
+
EnumType: typeof globalThis.Enum.CaptureGalleryPermission;
|
|
5751
|
+
}
|
|
5752
|
+
export const ReadAndUpload: ReadAndUpload;
|
|
5753
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CaptureGalleryPermission>;
|
|
5754
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CaptureGalleryPermission | undefined;
|
|
5755
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CaptureGalleryPermission | undefined;
|
|
5756
|
+
}
|
|
5757
|
+
export type CaptureGalleryPermission = CaptureGalleryPermission.ReadAndUpload;
|
|
5688
5758
|
/**
|
|
5689
5759
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType)
|
|
5690
5760
|
*/
|
|
@@ -5694,7 +5764,7 @@ declare namespace Enum {
|
|
|
5694
5764
|
*/
|
|
5695
5765
|
export interface Screenshot extends globalThis.EnumItem {
|
|
5696
5766
|
Name: "Screenshot";
|
|
5697
|
-
Value:
|
|
5767
|
+
Value: 1;
|
|
5698
5768
|
EnumType: typeof globalThis.Enum.CaptureType;
|
|
5699
5769
|
}
|
|
5700
5770
|
export const Screenshot: Screenshot;
|
|
@@ -5703,7 +5773,7 @@ declare namespace Enum {
|
|
|
5703
5773
|
*/
|
|
5704
5774
|
export interface Video extends globalThis.EnumItem {
|
|
5705
5775
|
Name: "Video";
|
|
5706
|
-
Value:
|
|
5776
|
+
Value: 2;
|
|
5707
5777
|
EnumType: typeof globalThis.Enum.CaptureType;
|
|
5708
5778
|
}
|
|
5709
5779
|
export const Video: Video;
|
|
@@ -6423,7 +6493,7 @@ declare namespace Enum {
|
|
|
6423
6493
|
}
|
|
6424
6494
|
export const NoOne: NoOne;
|
|
6425
6495
|
/**
|
|
6426
|
-
* A player can only chat with users in a game that are on their
|
|
6496
|
+
* A player can only chat with users in a game that are on their connections list.
|
|
6427
6497
|
*
|
|
6428
6498
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatPrivacyMode#Friends)
|
|
6429
6499
|
*/
|
|
@@ -7878,6 +7948,15 @@ declare namespace Enum {
|
|
|
7878
7948
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7879
7949
|
}
|
|
7880
7950
|
export const AndroidEmulatorKick: AndroidEmulatorKick;
|
|
7951
|
+
/**
|
|
7952
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#AndroidRootedKick)
|
|
7953
|
+
*/
|
|
7954
|
+
export interface AndroidRootedKick extends globalThis.EnumItem {
|
|
7955
|
+
Name: "AndroidRootedKick";
|
|
7956
|
+
Value: 306;
|
|
7957
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7958
|
+
}
|
|
7959
|
+
export const AndroidRootedKick: AndroidRootedKick;
|
|
7881
7960
|
/**
|
|
7882
7961
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
7883
7962
|
*/
|
|
@@ -8107,7 +8186,7 @@ declare namespace Enum {
|
|
|
8107
8186
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
8108
8187
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
8109
8188
|
}
|
|
8110
|
-
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.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;
|
|
8189
|
+
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.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;
|
|
8111
8190
|
/**
|
|
8112
8191
|
* Used to determine the connection state of the client to the game server.
|
|
8113
8192
|
*
|
|
@@ -9726,11 +9805,20 @@ declare namespace Enum {
|
|
|
9726
9805
|
EnumType: typeof globalThis.Enum.DeviceForm;
|
|
9727
9806
|
}
|
|
9728
9807
|
export const VR: VR;
|
|
9808
|
+
/**
|
|
9809
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceForm#Handheld)
|
|
9810
|
+
*/
|
|
9811
|
+
export interface Handheld extends globalThis.EnumItem {
|
|
9812
|
+
Name: "Handheld";
|
|
9813
|
+
Value: 5;
|
|
9814
|
+
EnumType: typeof globalThis.Enum.DeviceForm;
|
|
9815
|
+
}
|
|
9816
|
+
export const Handheld: Handheld;
|
|
9729
9817
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceForm>;
|
|
9730
9818
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceForm | undefined;
|
|
9731
9819
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceForm | undefined;
|
|
9732
9820
|
}
|
|
9733
|
-
export type DeviceForm = DeviceForm.Console | DeviceForm.Phone | DeviceForm.Tablet | DeviceForm.Desktop | DeviceForm.VR;
|
|
9821
|
+
export type DeviceForm = DeviceForm.Console | DeviceForm.Phone | DeviceForm.Tablet | DeviceForm.Desktop | DeviceForm.VR | DeviceForm.Handheld;
|
|
9734
9822
|
/**
|
|
9735
9823
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceLevel)
|
|
9736
9824
|
*/
|
|
@@ -12853,7 +12941,7 @@ declare namespace Enum {
|
|
|
12853
12941
|
*/
|
|
12854
12942
|
export namespace FriendRequestEvent {
|
|
12855
12943
|
/**
|
|
12856
|
-
* A player invokes (sends) a
|
|
12944
|
+
* A player invokes (sends) a connection request.
|
|
12857
12945
|
*
|
|
12858
12946
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Issue)
|
|
12859
12947
|
*/
|
|
@@ -12864,7 +12952,7 @@ declare namespace Enum {
|
|
|
12864
12952
|
}
|
|
12865
12953
|
export const Issue: Issue;
|
|
12866
12954
|
/**
|
|
12867
|
-
* A player revokes (cancels) a previously invoked (sent)
|
|
12955
|
+
* A player revokes (cancels) a previously invoked (sent) connection request.
|
|
12868
12956
|
*
|
|
12869
12957
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Revoke)
|
|
12870
12958
|
*/
|
|
@@ -12875,7 +12963,7 @@ declare namespace Enum {
|
|
|
12875
12963
|
}
|
|
12876
12964
|
export const Revoke: Revoke;
|
|
12877
12965
|
/**
|
|
12878
|
-
* A player accepts a
|
|
12966
|
+
* A player accepts a connection request.
|
|
12879
12967
|
*
|
|
12880
12968
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Accept)
|
|
12881
12969
|
*/
|
|
@@ -12886,7 +12974,7 @@ declare namespace Enum {
|
|
|
12886
12974
|
}
|
|
12887
12975
|
export const Accept: Accept;
|
|
12888
12976
|
/**
|
|
12889
|
-
* A player denies a
|
|
12977
|
+
* A player denies a connection request.
|
|
12890
12978
|
*
|
|
12891
12979
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Deny)
|
|
12892
12980
|
*/
|
|
@@ -12906,7 +12994,7 @@ declare namespace Enum {
|
|
|
12906
12994
|
*/
|
|
12907
12995
|
export namespace FriendStatus {
|
|
12908
12996
|
/**
|
|
12909
|
-
* The
|
|
12997
|
+
* The connection status of two players is unknown.
|
|
12910
12998
|
*
|
|
12911
12999
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#Unknown)
|
|
12912
13000
|
*/
|
|
@@ -12917,7 +13005,7 @@ declare namespace Enum {
|
|
|
12917
13005
|
}
|
|
12918
13006
|
export const Unknown: Unknown;
|
|
12919
13007
|
/**
|
|
12920
|
-
* Two players are not
|
|
13008
|
+
* Two players are not connections.
|
|
12921
13009
|
*
|
|
12922
13010
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#NotFriend)
|
|
12923
13011
|
*/
|
|
@@ -12928,7 +13016,7 @@ declare namespace Enum {
|
|
|
12928
13016
|
}
|
|
12929
13017
|
export const NotFriend: NotFriend;
|
|
12930
13018
|
/**
|
|
12931
|
-
* Two players are
|
|
13019
|
+
* Two players are connections.
|
|
12932
13020
|
*
|
|
12933
13021
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#Friend)
|
|
12934
13022
|
*/
|
|
@@ -12939,7 +13027,7 @@ declare namespace Enum {
|
|
|
12939
13027
|
}
|
|
12940
13028
|
export const Friend: Friend;
|
|
12941
13029
|
/**
|
|
12942
|
-
* At least one of two players has sent a
|
|
13030
|
+
* At least one of two players has sent a connection request to the other player.
|
|
12943
13031
|
*
|
|
12944
13032
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#FriendRequestSent)
|
|
12945
13033
|
*/
|
|
@@ -12950,7 +13038,7 @@ declare namespace Enum {
|
|
|
12950
13038
|
}
|
|
12951
13039
|
export const FriendRequestSent: FriendRequestSent;
|
|
12952
13040
|
/**
|
|
12953
|
-
* At least one of two players has received a
|
|
13041
|
+
* At least one of two players has received a connection request sent by the other player.
|
|
12954
13042
|
*
|
|
12955
13043
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#FriendRequestReceived)
|
|
12956
13044
|
*/
|
|
@@ -18724,10 +18812,14 @@ declare namespace Enum {
|
|
|
18724
18812
|
}
|
|
18725
18813
|
export type LexemeType = LexemeType.Eof | LexemeType.Name | LexemeType.QuotedString | LexemeType.Number | LexemeType.And | LexemeType.Or | LexemeType.Equal | LexemeType.TildeEqual | LexemeType.GreaterThan | LexemeType.GreaterThanEqual | LexemeType.LessThan | LexemeType.LessThanEqual | LexemeType.Colon | LexemeType.Dot | LexemeType.LeftParenthesis | LexemeType.RightParenthesis | LexemeType.Star | LexemeType.DoubleStar | LexemeType.ReservedSpecial;
|
|
18726
18814
|
/**
|
|
18815
|
+
* Enum used by `Lighting.LightingStyle` to indicate the artistic intent behind lighting in the experience.
|
|
18816
|
+
*
|
|
18727
18817
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LightingStyle)
|
|
18728
18818
|
*/
|
|
18729
18819
|
export namespace LightingStyle {
|
|
18730
18820
|
/**
|
|
18821
|
+
* The most advanced and realistic lighting and shadows Roblox can deliver.
|
|
18822
|
+
*
|
|
18731
18823
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LightingStyle#Realistic)
|
|
18732
18824
|
*/
|
|
18733
18825
|
export interface Realistic extends globalThis.EnumItem {
|
|
@@ -18737,6 +18829,8 @@ declare namespace Enum {
|
|
|
18737
18829
|
}
|
|
18738
18830
|
export const Realistic: Realistic;
|
|
18739
18831
|
/**
|
|
18832
|
+
* A flat, retro-Roblox look with softer lights and shadows.
|
|
18833
|
+
*
|
|
18740
18834
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LightingStyle#Soft)
|
|
18741
18835
|
*/
|
|
18742
18836
|
export interface Soft extends globalThis.EnumItem {
|
|
@@ -22130,6 +22224,51 @@ declare namespace Enum {
|
|
|
22130
22224
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PathfindingUseImprovedSearch | undefined;
|
|
22131
22225
|
}
|
|
22132
22226
|
export type PathfindingUseImprovedSearch = PathfindingUseImprovedSearch.Default | PathfindingUseImprovedSearch.Disabled | PathfindingUseImprovedSearch.Enabled;
|
|
22227
|
+
/**
|
|
22228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode)
|
|
22229
|
+
*/
|
|
22230
|
+
export namespace PerformanceOverlayMode {
|
|
22231
|
+
/**
|
|
22232
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode#Overdraw)
|
|
22233
|
+
*/
|
|
22234
|
+
export interface Overdraw extends globalThis.EnumItem {
|
|
22235
|
+
Name: "Overdraw";
|
|
22236
|
+
Value: 0;
|
|
22237
|
+
EnumType: typeof globalThis.Enum.PerformanceOverlayMode;
|
|
22238
|
+
}
|
|
22239
|
+
export const Overdraw: Overdraw;
|
|
22240
|
+
/**
|
|
22241
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode#Transparent)
|
|
22242
|
+
*/
|
|
22243
|
+
export interface Transparent extends globalThis.EnumItem {
|
|
22244
|
+
Name: "Transparent";
|
|
22245
|
+
Value: 1;
|
|
22246
|
+
EnumType: typeof globalThis.Enum.PerformanceOverlayMode;
|
|
22247
|
+
}
|
|
22248
|
+
export const Transparent: Transparent;
|
|
22249
|
+
/**
|
|
22250
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode#Decals)
|
|
22251
|
+
*/
|
|
22252
|
+
export interface Decals extends globalThis.EnumItem {
|
|
22253
|
+
Name: "Decals";
|
|
22254
|
+
Value: 2;
|
|
22255
|
+
EnumType: typeof globalThis.Enum.PerformanceOverlayMode;
|
|
22256
|
+
}
|
|
22257
|
+
export const Decals: Decals;
|
|
22258
|
+
/**
|
|
22259
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode#Lights)
|
|
22260
|
+
*/
|
|
22261
|
+
export interface Lights extends globalThis.EnumItem {
|
|
22262
|
+
Name: "Lights";
|
|
22263
|
+
Value: 3;
|
|
22264
|
+
EnumType: typeof globalThis.Enum.PerformanceOverlayMode;
|
|
22265
|
+
}
|
|
22266
|
+
export const Lights: Lights;
|
|
22267
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PerformanceOverlayMode>;
|
|
22268
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PerformanceOverlayMode | undefined;
|
|
22269
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PerformanceOverlayMode | undefined;
|
|
22270
|
+
}
|
|
22271
|
+
export type PerformanceOverlayMode = PerformanceOverlayMode.Overdraw | PerformanceOverlayMode.Transparent | PerformanceOverlayMode.Decals | PerformanceOverlayMode.Lights;
|
|
22133
22272
|
/**
|
|
22134
22273
|
* Used to set the highest permission level that APIs have to have in order to be shown in the Object Browser.
|
|
22135
22274
|
*
|
|
@@ -22979,6 +23118,42 @@ declare namespace Enum {
|
|
|
22979
23118
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PositionAlignmentMode | undefined;
|
|
22980
23119
|
}
|
|
22981
23120
|
export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
|
|
23121
|
+
/**
|
|
23122
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode)
|
|
23123
|
+
*/
|
|
23124
|
+
export namespace PredictionMode {
|
|
23125
|
+
/**
|
|
23126
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Auto)
|
|
23127
|
+
*/
|
|
23128
|
+
export interface Auto extends globalThis.EnumItem {
|
|
23129
|
+
Name: "Auto";
|
|
23130
|
+
Value: 0;
|
|
23131
|
+
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23132
|
+
}
|
|
23133
|
+
export const Auto: Auto;
|
|
23134
|
+
/**
|
|
23135
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#None)
|
|
23136
|
+
*/
|
|
23137
|
+
export interface None extends globalThis.EnumItem {
|
|
23138
|
+
Name: "None";
|
|
23139
|
+
Value: 1;
|
|
23140
|
+
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23141
|
+
}
|
|
23142
|
+
export const None: None;
|
|
23143
|
+
/**
|
|
23144
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Forced)
|
|
23145
|
+
*/
|
|
23146
|
+
export interface Forced extends globalThis.EnumItem {
|
|
23147
|
+
Name: "Forced";
|
|
23148
|
+
Value: 2;
|
|
23149
|
+
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23150
|
+
}
|
|
23151
|
+
export const Forced: Forced;
|
|
23152
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionMode>;
|
|
23153
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionMode | undefined;
|
|
23154
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
|
|
23155
|
+
}
|
|
23156
|
+
export type PredictionMode = PredictionMode.Auto | PredictionMode.None | PredictionMode.Forced;
|
|
22982
23157
|
/**
|
|
22983
23158
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
22984
23159
|
*
|
|
@@ -24106,6 +24281,33 @@ declare namespace Enum {
|
|
|
24106
24281
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RaycastFilterType | undefined;
|
|
24107
24282
|
}
|
|
24108
24283
|
export type RaycastFilterType = RaycastFilterType.Exclude | RaycastFilterType.Include;
|
|
24284
|
+
/**
|
|
24285
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReadCapturesFromGalleryResult)
|
|
24286
|
+
*/
|
|
24287
|
+
export namespace ReadCapturesFromGalleryResult {
|
|
24288
|
+
/**
|
|
24289
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReadCapturesFromGalleryResult#Success)
|
|
24290
|
+
*/
|
|
24291
|
+
export interface Success extends globalThis.EnumItem {
|
|
24292
|
+
Name: "Success";
|
|
24293
|
+
Value: 0;
|
|
24294
|
+
EnumType: typeof globalThis.Enum.ReadCapturesFromGalleryResult;
|
|
24295
|
+
}
|
|
24296
|
+
export const Success: Success;
|
|
24297
|
+
/**
|
|
24298
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReadCapturesFromGalleryResult#NeedPermission)
|
|
24299
|
+
*/
|
|
24300
|
+
export interface NeedPermission extends globalThis.EnumItem {
|
|
24301
|
+
Name: "NeedPermission";
|
|
24302
|
+
Value: 1;
|
|
24303
|
+
EnumType: typeof globalThis.Enum.ReadCapturesFromGalleryResult;
|
|
24304
|
+
}
|
|
24305
|
+
export const NeedPermission: NeedPermission;
|
|
24306
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReadCapturesFromGalleryResult>;
|
|
24307
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReadCapturesFromGalleryResult | undefined;
|
|
24308
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReadCapturesFromGalleryResult | undefined;
|
|
24309
|
+
}
|
|
24310
|
+
export type ReadCapturesFromGalleryResult = ReadCapturesFromGalleryResult.Success | ReadCapturesFromGalleryResult.NeedPermission;
|
|
24109
24311
|
/**
|
|
24110
24312
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType)
|
|
24111
24313
|
*/
|
|
@@ -26698,6 +26900,8 @@ declare namespace Enum {
|
|
|
26698
26900
|
*/
|
|
26699
26901
|
export namespace ShowAdResult {
|
|
26700
26902
|
/**
|
|
26903
|
+
* The ad was successfully shown to completion.
|
|
26904
|
+
*
|
|
26701
26905
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ShowAdResult#ShowCompleted)
|
|
26702
26906
|
*/
|
|
26703
26907
|
export interface ShowCompleted extends globalThis.EnumItem {
|
|
@@ -26707,6 +26911,8 @@ declare namespace Enum {
|
|
|
26707
26911
|
}
|
|
26708
26912
|
export const ShowCompleted: ShowCompleted;
|
|
26709
26913
|
/**
|
|
26914
|
+
* You are trying to show a full-screen ad before the ad has fully loaded. You might have failed to properly fetch the ad, or the ad might have expired.
|
|
26915
|
+
*
|
|
26710
26916
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ShowAdResult#AdNotReady)
|
|
26711
26917
|
*/
|
|
26712
26918
|
export interface AdNotReady extends globalThis.EnumItem {
|
|
@@ -26716,6 +26922,8 @@ declare namespace Enum {
|
|
|
26716
26922
|
}
|
|
26717
26923
|
export const AdNotReady: AdNotReady;
|
|
26718
26924
|
/**
|
|
26925
|
+
* You are trying to show a full-screen ad while another full-screen ad is already playing.
|
|
26926
|
+
*
|
|
26719
26927
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ShowAdResult#AdAlreadyShowing)
|
|
26720
26928
|
*/
|
|
26721
26929
|
export interface AdAlreadyShowing extends globalThis.EnumItem {
|
|
@@ -26725,6 +26933,8 @@ declare namespace Enum {
|
|
|
26725
26933
|
}
|
|
26726
26934
|
export const AdAlreadyShowing: AdAlreadyShowing;
|
|
26727
26935
|
/**
|
|
26936
|
+
* An unspecified internal error occurred. Try showing the ad again.
|
|
26937
|
+
*
|
|
26728
26938
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ShowAdResult#InternalError)
|
|
26729
26939
|
*/
|
|
26730
26940
|
export interface InternalError extends globalThis.EnumItem {
|
|
@@ -26734,6 +26944,8 @@ declare namespace Enum {
|
|
|
26734
26944
|
}
|
|
26735
26945
|
export const InternalError: InternalError;
|
|
26736
26946
|
/**
|
|
26947
|
+
* The ad view of the user has been interrupted. The user might have closed the ad view or left the experience, and should not receive a reward.
|
|
26948
|
+
*
|
|
26737
26949
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ShowAdResult#ShowInterrupted)
|
|
26738
26950
|
*/
|
|
26739
26951
|
export interface ShowInterrupted extends globalThis.EnumItem {
|
|
@@ -32484,6 +32696,60 @@ declare namespace Enum {
|
|
|
32484
32696
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UiMessageType | undefined;
|
|
32485
32697
|
}
|
|
32486
32698
|
export type UiMessageType = UiMessageType.UiMessageError | UiMessageType.UiMessageInfo;
|
|
32699
|
+
/**
|
|
32700
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult)
|
|
32701
|
+
*/
|
|
32702
|
+
export namespace UploadCaptureResult {
|
|
32703
|
+
/**
|
|
32704
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#Success)
|
|
32705
|
+
*/
|
|
32706
|
+
export interface Success extends globalThis.EnumItem {
|
|
32707
|
+
Name: "Success";
|
|
32708
|
+
Value: 0;
|
|
32709
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
32710
|
+
}
|
|
32711
|
+
export const Success: Success;
|
|
32712
|
+
/**
|
|
32713
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#NeedPermission)
|
|
32714
|
+
*/
|
|
32715
|
+
export interface NeedPermission extends globalThis.EnumItem {
|
|
32716
|
+
Name: "NeedPermission";
|
|
32717
|
+
Value: 1;
|
|
32718
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
32719
|
+
}
|
|
32720
|
+
export const NeedPermission: NeedPermission;
|
|
32721
|
+
/**
|
|
32722
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#CaptureModerated)
|
|
32723
|
+
*/
|
|
32724
|
+
export interface CaptureModerated extends globalThis.EnumItem {
|
|
32725
|
+
Name: "CaptureModerated";
|
|
32726
|
+
Value: 2;
|
|
32727
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
32728
|
+
}
|
|
32729
|
+
export const CaptureModerated: CaptureModerated;
|
|
32730
|
+
/**
|
|
32731
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#CaptureNotInGallery)
|
|
32732
|
+
*/
|
|
32733
|
+
export interface CaptureNotInGallery extends globalThis.EnumItem {
|
|
32734
|
+
Name: "CaptureNotInGallery";
|
|
32735
|
+
Value: 3;
|
|
32736
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
32737
|
+
}
|
|
32738
|
+
export const CaptureNotInGallery: CaptureNotInGallery;
|
|
32739
|
+
/**
|
|
32740
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#IneligibleCapture)
|
|
32741
|
+
*/
|
|
32742
|
+
export interface IneligibleCapture extends globalThis.EnumItem {
|
|
32743
|
+
Name: "IneligibleCapture";
|
|
32744
|
+
Value: 4;
|
|
32745
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
32746
|
+
}
|
|
32747
|
+
export const IneligibleCapture: IneligibleCapture;
|
|
32748
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
|
|
32749
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
|
|
32750
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
|
|
32751
|
+
}
|
|
32752
|
+
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture;
|
|
32487
32753
|
/**
|
|
32488
32754
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
|
|
32489
32755
|
*/
|