@rbxts/types 1.0.757 → 1.0.759
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.
|
@@ -159,7 +159,6 @@ interface Services {
|
|
|
159
159
|
TextBoxService: TextBoxService;
|
|
160
160
|
TextChatService: TextChatService;
|
|
161
161
|
TextService: TextService;
|
|
162
|
-
TextureGenerationMeshHandler: TextureGenerationMeshHandler;
|
|
163
162
|
TextureGenerationService: TextureGenerationService;
|
|
164
163
|
ToastNotificationService: ToastNotificationService;
|
|
165
164
|
TracerService: TracerService;
|
|
@@ -326,6 +325,7 @@ interface CreatableInstances {
|
|
|
326
325
|
MotorFeature: MotorFeature;
|
|
327
326
|
NegateOperation: NegateOperation;
|
|
328
327
|
NoCollisionConstraint: NoCollisionConstraint;
|
|
328
|
+
Noise: Noise;
|
|
329
329
|
NumberPose: NumberPose;
|
|
330
330
|
NumberValue: NumberValue;
|
|
331
331
|
ObjectValue: ObjectValue;
|
|
@@ -603,6 +603,8 @@ interface Instances extends Services, CreatableInstances, AbstractInstances {
|
|
|
603
603
|
TextFilterResult: TextFilterResult;
|
|
604
604
|
TextFilterTranslatedResult: TextFilterTranslatedResult;
|
|
605
605
|
TextSource: TextSource;
|
|
606
|
+
TextureGenerationPartGroup: TextureGenerationPartGroup;
|
|
607
|
+
TextureGenerationUnwrappingRequest: TextureGenerationUnwrappingRequest;
|
|
606
608
|
ThreadState: ThreadState;
|
|
607
609
|
TouchTransmitter: TouchTransmitter;
|
|
608
610
|
TrackerLodController: TrackerLodController;
|
|
@@ -3544,6 +3546,10 @@ interface BadgeService extends Instance {
|
|
|
3544
3546
|
* Tags: Yields
|
|
3545
3547
|
*/
|
|
3546
3548
|
AwardBadge(this: BadgeService, userId: number, badgeId: number): boolean;
|
|
3549
|
+
/**
|
|
3550
|
+
* Tags: Yields
|
|
3551
|
+
*/
|
|
3552
|
+
CheckUserBadgesAsync(this: BadgeService, userId: number, badgeIds: Array<any>): unknown;
|
|
3547
3553
|
/**
|
|
3548
3554
|
* This function fteches information about a [badge](https://developer.roblox.com/en-us/articles/badges-special-game-awards) given its ID. It takes a brief moment to load the information from the Roblox website; repeated calls will cache for a short duration. It returns a dictionary with the following fields:
|
|
3549
3555
|
*
|
|
@@ -10721,10 +10727,16 @@ interface ExperienceNotificationService extends Instance {
|
|
|
10721
10727
|
* @deprecated
|
|
10722
10728
|
*/
|
|
10723
10729
|
readonly _nominal_ExperienceNotificationService: unique symbol;
|
|
10730
|
+
PromptOptIn(this: ExperienceNotificationService): void;
|
|
10731
|
+
/**
|
|
10732
|
+
* Tags: Yields
|
|
10733
|
+
*/
|
|
10734
|
+
CanPromptOptInAsync(this: ExperienceNotificationService): boolean;
|
|
10724
10735
|
/**
|
|
10725
10736
|
* Tags: Yields
|
|
10726
10737
|
*/
|
|
10727
10738
|
CreateUserNotificationAsync(this: ExperienceNotificationService, userId: string, userNotification: UserNotification): Instance | undefined;
|
|
10739
|
+
readonly OptInPromptClosed: RBXScriptSignal<() => void>;
|
|
10728
10740
|
}
|
|
10729
10741
|
|
|
10730
10742
|
interface ExperienceService extends Instance {
|
|
@@ -15301,6 +15313,7 @@ interface Path2D extends GuiBase {
|
|
|
15301
15313
|
readonly _nominal_Path2D: unique symbol;
|
|
15302
15314
|
Color: Color3;
|
|
15303
15315
|
Position: UDim2;
|
|
15316
|
+
Thickness: number;
|
|
15304
15317
|
Visible: boolean;
|
|
15305
15318
|
ZIndex: number;
|
|
15306
15319
|
GetControlPoint(this: Path2D, index: number): Path2DControlPoint;
|
|
@@ -15640,6 +15653,16 @@ interface HttpService extends Instance {
|
|
|
15640
15653
|
* @deprecated
|
|
15641
15654
|
*/
|
|
15642
15655
|
readonly _nominal_HttpService: unique symbol;
|
|
15656
|
+
/**
|
|
15657
|
+
* When set to true, you are able to send requests to other websites using [HttpService:GetAsync](https://developer.roblox.com/en-us/api-reference/function/HttpService/GetAsync), [HttpService:PostAsync](https://developer.roblox.com/en-us/api-reference/function/HttpService/PostAsync), and [HttpService:RequestAsync](https://developer.roblox.com/en-us/api-reference/function/HttpService/RequestAsync).
|
|
15658
|
+
*
|
|
15659
|
+
* To enable HTTP requests, the HttpService must be enabled through Studio's Game Settings by opening the game's settings via the **Game Settings** button on the _Home_ tab of the game's studio window (see image below):
|
|
15660
|
+
* 
|
|
15661
|
+
*
|
|
15662
|
+
* Within the Game Settings window, navigate to the **Security** tab and select the _On_ option under **Allow HTTP Requests** (see image below).
|
|
15663
|
+
* 
|
|
15664
|
+
*/
|
|
15665
|
+
readonly HttpEnabled: boolean;
|
|
15643
15666
|
/**
|
|
15644
15667
|
* The GenerateGUID function randomly creates a [universally unique identifier (UUID)](https://en.wikipedia.org/wiki/Universally_unique_identifier) string.
|
|
15645
15668
|
*
|
|
@@ -22201,6 +22224,7 @@ interface BaseScript extends LuaSourceContainer {
|
|
|
22201
22224
|
* Developers should remove a linked source via the properties window, rather than setting the property to _'\[Embedded\]'_.
|
|
22202
22225
|
*
|
|
22203
22226
|
* For the LinkedSource property for [ModuleScript](https://developer.roblox.com/en-us/api-reference/class/ModuleScript)s, please see [ModuleScript.LinkedSource](https://developer.roblox.com/en-us/api-reference/property/ModuleScript/LinkedSource).
|
|
22227
|
+
* @deprecated
|
|
22204
22228
|
*/
|
|
22205
22229
|
LinkedSource: string;
|
|
22206
22230
|
RunContext: Enum.RunContext;
|
|
@@ -22269,6 +22293,7 @@ interface ModuleScript extends LuaSourceContainer {
|
|
|
22269
22293
|
readonly _nominal_ModuleScript: unique symbol;
|
|
22270
22294
|
/**
|
|
22271
22295
|
* Used to store a URL that points to an online script source. Binds the online code to the script's [Script.Source](https://developer.roblox.com/en-us/api-reference/property/Script/Source).
|
|
22296
|
+
* @deprecated
|
|
22272
22297
|
*/
|
|
22273
22298
|
LinkedSource: string;
|
|
22274
22299
|
}
|
|
@@ -22608,6 +22633,10 @@ interface MarketplaceService extends Instance {
|
|
|
22608
22633
|
* Tags: Yields
|
|
22609
22634
|
*/
|
|
22610
22635
|
GetSubscriptionProductInfoAsync(this: MarketplaceService, subscriptionId: string): object;
|
|
22636
|
+
/**
|
|
22637
|
+
* Tags: Yields
|
|
22638
|
+
*/
|
|
22639
|
+
GetUserSubscriptionDetailsAsync(this: MarketplaceService, user: Player, subscriptionId: string): object;
|
|
22611
22640
|
/**
|
|
22612
22641
|
* Tags: Yields
|
|
22613
22642
|
*/
|
|
@@ -23619,6 +23648,17 @@ interface NoCollisionConstraint extends Instance {
|
|
|
23619
23648
|
Part1: BasePart | undefined;
|
|
23620
23649
|
}
|
|
23621
23650
|
|
|
23651
|
+
interface Noise extends Instance {
|
|
23652
|
+
/**
|
|
23653
|
+
* **DO NOT USE!**
|
|
23654
|
+
*
|
|
23655
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
23656
|
+
* @hidden
|
|
23657
|
+
* @deprecated
|
|
23658
|
+
*/
|
|
23659
|
+
readonly _nominal_Noise: unique symbol;
|
|
23660
|
+
}
|
|
23661
|
+
|
|
23622
23662
|
interface OmniRecommendationsService extends Instance {
|
|
23623
23663
|
/**
|
|
23624
23664
|
* **DO NOT USE!**
|
|
@@ -34613,7 +34653,7 @@ interface TextSource extends Instance {
|
|
|
34613
34653
|
readonly UserId: number;
|
|
34614
34654
|
}
|
|
34615
34655
|
|
|
34616
|
-
interface
|
|
34656
|
+
interface TextureGenerationPartGroup extends Instance {
|
|
34617
34657
|
/**
|
|
34618
34658
|
* **DO NOT USE!**
|
|
34619
34659
|
*
|
|
@@ -34621,7 +34661,7 @@ interface TextureGenerationMeshHandler extends Instance {
|
|
|
34621
34661
|
* @hidden
|
|
34622
34662
|
* @deprecated
|
|
34623
34663
|
*/
|
|
34624
|
-
readonly
|
|
34664
|
+
readonly _nominal_TextureGenerationPartGroup: unique symbol;
|
|
34625
34665
|
}
|
|
34626
34666
|
|
|
34627
34667
|
interface TextureGenerationService extends Instance {
|
|
@@ -34635,6 +34675,17 @@ interface TextureGenerationService extends Instance {
|
|
|
34635
34675
|
readonly _nominal_TextureGenerationService: unique symbol;
|
|
34636
34676
|
}
|
|
34637
34677
|
|
|
34678
|
+
interface TextureGenerationUnwrappingRequest extends Instance {
|
|
34679
|
+
/**
|
|
34680
|
+
* **DO NOT USE!**
|
|
34681
|
+
*
|
|
34682
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
34683
|
+
* @hidden
|
|
34684
|
+
* @deprecated
|
|
34685
|
+
*/
|
|
34686
|
+
readonly _nominal_TextureGenerationUnwrappingRequest: unique symbol;
|
|
34687
|
+
}
|
|
34688
|
+
|
|
34638
34689
|
interface ThreadState extends Instance {
|
|
34639
34690
|
/**
|
|
34640
34691
|
* **DO NOT USE!**
|
|
@@ -37774,17 +37825,11 @@ interface VRService extends Instance {
|
|
|
37774
37825
|
* @deprecated
|
|
37775
37826
|
*/
|
|
37776
37827
|
readonly _nominal_VRService: unique symbol;
|
|
37777
|
-
/**
|
|
37778
|
-
* Tags: NotReplicated
|
|
37779
|
-
*/
|
|
37780
37828
|
AutomaticScaling: Enum.VRScaling;
|
|
37781
37829
|
/**
|
|
37782
37830
|
* Tags: NotBrowsable
|
|
37783
37831
|
*/
|
|
37784
37832
|
AvatarGestures: boolean;
|
|
37785
|
-
/**
|
|
37786
|
-
* Tags: NotReplicated
|
|
37787
|
-
*/
|
|
37788
37833
|
FadeOutViewOnCollision: boolean;
|
|
37789
37834
|
/**
|
|
37790
37835
|
* The GuiInputUserCFrame property describes what [UserCFrame](https://developer.roblox.com/en-us/api-reference/enum/UserCFrame) is responsible for input in VR. For instance, if a VR headset is responsible, the value of this property will be UserCFrame.Head.
|
|
@@ -1340,21 +1340,6 @@ interface LuaSettings extends Instance {
|
|
|
1340
1340
|
readonly _nominal_LuaSettings: unique symbol;
|
|
1341
1341
|
}
|
|
1342
1342
|
|
|
1343
|
-
interface LuaSourceContainer extends Instance {
|
|
1344
|
-
/**
|
|
1345
|
-
* **DO NOT USE!**
|
|
1346
|
-
*
|
|
1347
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1348
|
-
* @hidden
|
|
1349
|
-
* @deprecated
|
|
1350
|
-
*/
|
|
1351
|
-
readonly _nominal_LuaSourceContainer: unique symbol;
|
|
1352
|
-
/**
|
|
1353
|
-
* Tags: NotReplicated
|
|
1354
|
-
*/
|
|
1355
|
-
RuntimeSource: string;
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
1343
|
interface BaseScript extends LuaSourceContainer {
|
|
1359
1344
|
/**
|
|
1360
1345
|
* **DO NOT USE!**
|
|
@@ -2886,6 +2886,35 @@ declare namespace Enum {
|
|
|
2886
2886
|
}
|
|
2887
2887
|
export type ButtonStyle = ButtonStyle.Custom | ButtonStyle.RobloxButtonDefault | ButtonStyle.RobloxButton | ButtonStyle.RobloxRoundButton | ButtonStyle.RobloxRoundDefaultButton | ButtonStyle.RobloxRoundDropdownButton;
|
|
2888
2888
|
|
|
2889
|
+
export namespace CSGAsyncDynamicCollision {
|
|
2890
|
+
export interface Default extends globalThis.EnumItem {
|
|
2891
|
+
Name: "Default";
|
|
2892
|
+
Value: 0;
|
|
2893
|
+
EnumType: typeof globalThis.Enum.CSGAsyncDynamicCollision;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
export const Default: Default;
|
|
2897
|
+
|
|
2898
|
+
export interface Disabled extends globalThis.EnumItem {
|
|
2899
|
+
Name: "Disabled";
|
|
2900
|
+
Value: 1;
|
|
2901
|
+
EnumType: typeof globalThis.Enum.CSGAsyncDynamicCollision;
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
export const Disabled: Disabled;
|
|
2905
|
+
|
|
2906
|
+
export interface Experimental extends globalThis.EnumItem {
|
|
2907
|
+
Name: "Experimental";
|
|
2908
|
+
Value: 2;
|
|
2909
|
+
EnumType: typeof globalThis.Enum.CSGAsyncDynamicCollision;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
export const Experimental: Experimental;
|
|
2913
|
+
|
|
2914
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CSGAsyncDynamicCollision>;
|
|
2915
|
+
}
|
|
2916
|
+
export type CSGAsyncDynamicCollision = CSGAsyncDynamicCollision.Default | CSGAsyncDynamicCollision.Disabled | CSGAsyncDynamicCollision.Experimental;
|
|
2917
|
+
|
|
2889
2918
|
export namespace CageType {
|
|
2890
2919
|
export interface Inner extends globalThis.EnumItem {
|
|
2891
2920
|
Name: "Inner";
|
|
@@ -7106,6 +7135,38 @@ declare namespace Enum {
|
|
|
7106
7135
|
|
|
7107
7136
|
export const Ubuntu: Ubuntu;
|
|
7108
7137
|
|
|
7138
|
+
export interface BuilderSans extends globalThis.EnumItem {
|
|
7139
|
+
Name: "BuilderSans";
|
|
7140
|
+
Value: 46;
|
|
7141
|
+
EnumType: typeof globalThis.Enum.Font;
|
|
7142
|
+
}
|
|
7143
|
+
|
|
7144
|
+
export const BuilderSans: BuilderSans;
|
|
7145
|
+
|
|
7146
|
+
export interface BuilderSansMedium extends globalThis.EnumItem {
|
|
7147
|
+
Name: "BuilderSansMedium";
|
|
7148
|
+
Value: 47;
|
|
7149
|
+
EnumType: typeof globalThis.Enum.Font;
|
|
7150
|
+
}
|
|
7151
|
+
|
|
7152
|
+
export const BuilderSansMedium: BuilderSansMedium;
|
|
7153
|
+
|
|
7154
|
+
export interface BuilderSansBold extends globalThis.EnumItem {
|
|
7155
|
+
Name: "BuilderSansBold";
|
|
7156
|
+
Value: 48;
|
|
7157
|
+
EnumType: typeof globalThis.Enum.Font;
|
|
7158
|
+
}
|
|
7159
|
+
|
|
7160
|
+
export const BuilderSansBold: BuilderSansBold;
|
|
7161
|
+
|
|
7162
|
+
export interface BuilderSansExtraBold extends globalThis.EnumItem {
|
|
7163
|
+
Name: "BuilderSansExtraBold";
|
|
7164
|
+
Value: 49;
|
|
7165
|
+
EnumType: typeof globalThis.Enum.Font;
|
|
7166
|
+
}
|
|
7167
|
+
|
|
7168
|
+
export const BuilderSansExtraBold: BuilderSansExtraBold;
|
|
7169
|
+
|
|
7109
7170
|
export interface Unknown extends globalThis.EnumItem {
|
|
7110
7171
|
Name: "Unknown";
|
|
7111
7172
|
Value: 100;
|
|
@@ -7116,7 +7177,7 @@ declare namespace Enum {
|
|
|
7116
7177
|
|
|
7117
7178
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Font>;
|
|
7118
7179
|
}
|
|
7119
|
-
export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.Unknown;
|
|
7180
|
+
export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.BuilderSans | Font.BuilderSansMedium | Font.BuilderSansBold | Font.BuilderSansExtraBold | Font.Unknown;
|
|
7120
7181
|
|
|
7121
7182
|
export namespace FontSize {
|
|
7122
7183
|
export interface Size8 extends globalThis.EnumItem {
|
|
@@ -12593,6 +12654,19 @@ declare namespace Enum {
|
|
|
12593
12654
|
}
|
|
12594
12655
|
export type NetworkStatus = NetworkStatus.Unknown | NetworkStatus.Connected | NetworkStatus.Disconnected;
|
|
12595
12656
|
|
|
12657
|
+
export namespace NoiseType {
|
|
12658
|
+
export interface SimplexGabor extends globalThis.EnumItem {
|
|
12659
|
+
Name: "SimplexGabor";
|
|
12660
|
+
Value: 0;
|
|
12661
|
+
EnumType: typeof globalThis.Enum.NoiseType;
|
|
12662
|
+
}
|
|
12663
|
+
|
|
12664
|
+
export const SimplexGabor: SimplexGabor;
|
|
12665
|
+
|
|
12666
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NoiseType>;
|
|
12667
|
+
}
|
|
12668
|
+
export type NoiseType = NoiseType.SimplexGabor;
|
|
12669
|
+
|
|
12596
12670
|
export namespace NormalId {
|
|
12597
12671
|
export interface Right extends globalThis.EnumItem {
|
|
12598
12672
|
Name: "Right";
|
|
@@ -15275,6 +15349,35 @@ declare namespace Enum {
|
|
|
15275
15349
|
}
|
|
15276
15350
|
export type RunContext = RunContext.Legacy | RunContext.Server | RunContext.Client | RunContext.Plugin;
|
|
15277
15351
|
|
|
15352
|
+
export namespace RunState {
|
|
15353
|
+
export interface Stopped extends globalThis.EnumItem {
|
|
15354
|
+
Name: "Stopped";
|
|
15355
|
+
Value: 0;
|
|
15356
|
+
EnumType: typeof globalThis.Enum.RunState;
|
|
15357
|
+
}
|
|
15358
|
+
|
|
15359
|
+
export const Stopped: Stopped;
|
|
15360
|
+
|
|
15361
|
+
export interface Running extends globalThis.EnumItem {
|
|
15362
|
+
Name: "Running";
|
|
15363
|
+
Value: 1;
|
|
15364
|
+
EnumType: typeof globalThis.Enum.RunState;
|
|
15365
|
+
}
|
|
15366
|
+
|
|
15367
|
+
export const Running: Running;
|
|
15368
|
+
|
|
15369
|
+
export interface Paused extends globalThis.EnumItem {
|
|
15370
|
+
Name: "Paused";
|
|
15371
|
+
Value: 2;
|
|
15372
|
+
EnumType: typeof globalThis.Enum.RunState;
|
|
15373
|
+
}
|
|
15374
|
+
|
|
15375
|
+
export const Paused: Paused;
|
|
15376
|
+
|
|
15377
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RunState>;
|
|
15378
|
+
}
|
|
15379
|
+
export type RunState = RunState.Stopped | RunState.Running | RunState.Paused;
|
|
15380
|
+
|
|
15278
15381
|
export namespace RuntimeUndoBehavior {
|
|
15279
15382
|
export interface Aggregate extends globalThis.EnumItem {
|
|
15280
15383
|
Name: "Aggregate";
|
|
@@ -16441,9 +16544,17 @@ declare namespace Enum {
|
|
|
16441
16544
|
|
|
16442
16545
|
export const CloseDoc: CloseDoc;
|
|
16443
16546
|
|
|
16547
|
+
export interface LogOut extends globalThis.EnumItem {
|
|
16548
|
+
Name: "LogOut";
|
|
16549
|
+
Value: 3;
|
|
16550
|
+
EnumType: typeof globalThis.Enum.StudioCloseMode;
|
|
16551
|
+
}
|
|
16552
|
+
|
|
16553
|
+
export const LogOut: LogOut;
|
|
16554
|
+
|
|
16444
16555
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioCloseMode>;
|
|
16445
16556
|
}
|
|
16446
|
-
export type StudioCloseMode = StudioCloseMode.None | StudioCloseMode.CloseStudio | StudioCloseMode.CloseDoc;
|
|
16557
|
+
export type StudioCloseMode = StudioCloseMode.None | StudioCloseMode.CloseStudio | StudioCloseMode.CloseDoc | StudioCloseMode.LogOut;
|
|
16447
16558
|
|
|
16448
16559
|
export namespace StudioDataModelType {
|
|
16449
16560
|
export interface Edit extends globalThis.EnumItem {
|
|
@@ -17938,9 +18049,17 @@ declare namespace Enum {
|
|
|
17938
18049
|
|
|
17939
18050
|
export const OnboardingShadow: OnboardingShadow;
|
|
17940
18051
|
|
|
18052
|
+
export interface BreakpointMarker extends globalThis.EnumItem {
|
|
18053
|
+
Name: "BreakpointMarker";
|
|
18054
|
+
Value: 136;
|
|
18055
|
+
EnumType: typeof globalThis.Enum.StudioStyleGuideColor;
|
|
18056
|
+
}
|
|
18057
|
+
|
|
18058
|
+
export const BreakpointMarker: BreakpointMarker;
|
|
18059
|
+
|
|
17941
18060
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioStyleGuideColor>;
|
|
17942
18061
|
}
|
|
17943
|
-
export type StudioStyleGuideColor = StudioStyleGuideColor.MainBackground | StudioStyleGuideColor.Titlebar | StudioStyleGuideColor.Dropdown | StudioStyleGuideColor.Tooltip | StudioStyleGuideColor.Notification | StudioStyleGuideColor.ScrollBar | StudioStyleGuideColor.ScrollBarBackground | StudioStyleGuideColor.TabBar | StudioStyleGuideColor.Tab | StudioStyleGuideColor.FilterButtonDefault | StudioStyleGuideColor.FilterButtonHover | StudioStyleGuideColor.FilterButtonChecked | StudioStyleGuideColor.FilterButtonAccent | StudioStyleGuideColor.FilterButtonBorder | StudioStyleGuideColor.FilterButtonBorderAlt | StudioStyleGuideColor.RibbonTab | StudioStyleGuideColor.RibbonTabTopBar | StudioStyleGuideColor.Button | StudioStyleGuideColor.MainButton | StudioStyleGuideColor.RibbonButton | StudioStyleGuideColor.ViewPortBackground | StudioStyleGuideColor.InputFieldBackground | StudioStyleGuideColor.Item | StudioStyleGuideColor.TableItem | StudioStyleGuideColor.CategoryItem | StudioStyleGuideColor.GameSettingsTableItem | StudioStyleGuideColor.GameSettingsTooltip | StudioStyleGuideColor.EmulatorBar | StudioStyleGuideColor.EmulatorDropDown | StudioStyleGuideColor.ColorPickerFrame | StudioStyleGuideColor.CurrentMarker | StudioStyleGuideColor.Border | StudioStyleGuideColor.DropShadow | StudioStyleGuideColor.Shadow | StudioStyleGuideColor.Light | StudioStyleGuideColor.Dark | StudioStyleGuideColor.Mid | StudioStyleGuideColor.MainText | StudioStyleGuideColor.SubText | StudioStyleGuideColor.TitlebarText | StudioStyleGuideColor.BrightText | StudioStyleGuideColor.DimmedText | StudioStyleGuideColor.LinkText | StudioStyleGuideColor.WarningText | StudioStyleGuideColor.ErrorText | StudioStyleGuideColor.InfoText | StudioStyleGuideColor.SensitiveText | StudioStyleGuideColor.ScriptSideWidget | StudioStyleGuideColor.ScriptBackground | StudioStyleGuideColor.ScriptText | StudioStyleGuideColor.ScriptSelectionText | StudioStyleGuideColor.ScriptSelectionBackground | StudioStyleGuideColor.ScriptFindSelectionBackground | StudioStyleGuideColor.ScriptMatchingWordSelectionBackground | StudioStyleGuideColor.ScriptOperator | StudioStyleGuideColor.ScriptNumber | StudioStyleGuideColor.ScriptString | StudioStyleGuideColor.ScriptComment | StudioStyleGuideColor.ScriptKeyword | StudioStyleGuideColor.ScriptBuiltInFunction | StudioStyleGuideColor.ScriptWarning | StudioStyleGuideColor.ScriptError | StudioStyleGuideColor.ScriptInformation | StudioStyleGuideColor.ScriptHint | StudioStyleGuideColor.ScriptWhitespace | StudioStyleGuideColor.ScriptRuler | StudioStyleGuideColor.DocViewCodeBackground | StudioStyleGuideColor.DebuggerCurrentLine | StudioStyleGuideColor.DebuggerErrorLine | StudioStyleGuideColor.DiffFilePathText | StudioStyleGuideColor.DiffTextHunkInfo | StudioStyleGuideColor.DiffTextNoChange | StudioStyleGuideColor.DiffTextAddition | StudioStyleGuideColor.DiffTextDeletion | StudioStyleGuideColor.DiffTextSeparatorBackground | StudioStyleGuideColor.DiffTextNoChangeBackground | StudioStyleGuideColor.DiffTextAdditionBackground | StudioStyleGuideColor.DiffTextDeletionBackground | StudioStyleGuideColor.DiffLineNum | StudioStyleGuideColor.DiffLineNumSeparatorBackground | StudioStyleGuideColor.DiffLineNumNoChangeBackground | StudioStyleGuideColor.DiffLineNumAdditionBackground | StudioStyleGuideColor.DiffLineNumDeletionBackground | StudioStyleGuideColor.DiffFilePathBackground | StudioStyleGuideColor.DiffFilePathBorder | StudioStyleGuideColor.ChatIncomingBgColor | StudioStyleGuideColor.ChatIncomingTextColor | StudioStyleGuideColor.ChatOutgoingBgColor | StudioStyleGuideColor.ChatOutgoingTextColor | StudioStyleGuideColor.ChatModeratedMessageColor | StudioStyleGuideColor.Separator | StudioStyleGuideColor.ButtonBorder | StudioStyleGuideColor.ButtonText | StudioStyleGuideColor.InputFieldBorder | StudioStyleGuideColor.CheckedFieldBackground | StudioStyleGuideColor.CheckedFieldBorder | StudioStyleGuideColor.CheckedFieldIndicator | StudioStyleGuideColor.HeaderSection | StudioStyleGuideColor.Midlight | StudioStyleGuideColor.StatusBar | StudioStyleGuideColor.DialogButton | StudioStyleGuideColor.DialogButtonText | StudioStyleGuideColor.DialogButtonBorder | StudioStyleGuideColor.DialogMainButton | StudioStyleGuideColor.DialogMainButtonText | StudioStyleGuideColor.InfoBarWarningBackground | StudioStyleGuideColor.InfoBarWarningText | StudioStyleGuideColor.ScriptEditorCurrentLine | StudioStyleGuideColor.ScriptMethod | StudioStyleGuideColor.ScriptProperty | StudioStyleGuideColor.ScriptNil | StudioStyleGuideColor.ScriptBool | StudioStyleGuideColor.ScriptFunction | StudioStyleGuideColor.ScriptLocal | StudioStyleGuideColor.ScriptSelf | StudioStyleGuideColor.ScriptLuauKeyword | StudioStyleGuideColor.ScriptFunctionName | StudioStyleGuideColor.ScriptTodo | StudioStyleGuideColor.ScriptBracket | StudioStyleGuideColor.AttributeCog | StudioStyleGuideColor.AICOOverlayText | StudioStyleGuideColor.AICOOverlayButtonBackground | StudioStyleGuideColor.AICOOverlayButtonBackgroundHover | StudioStyleGuideColor.AICOOverlayButtonBackgroundPressed | StudioStyleGuideColor.OnboardingCover | StudioStyleGuideColor.OnboardingHighlight | StudioStyleGuideColor.OnboardingShadow;
|
|
18062
|
+
export type StudioStyleGuideColor = StudioStyleGuideColor.MainBackground | StudioStyleGuideColor.Titlebar | StudioStyleGuideColor.Dropdown | StudioStyleGuideColor.Tooltip | StudioStyleGuideColor.Notification | StudioStyleGuideColor.ScrollBar | StudioStyleGuideColor.ScrollBarBackground | StudioStyleGuideColor.TabBar | StudioStyleGuideColor.Tab | StudioStyleGuideColor.FilterButtonDefault | StudioStyleGuideColor.FilterButtonHover | StudioStyleGuideColor.FilterButtonChecked | StudioStyleGuideColor.FilterButtonAccent | StudioStyleGuideColor.FilterButtonBorder | StudioStyleGuideColor.FilterButtonBorderAlt | StudioStyleGuideColor.RibbonTab | StudioStyleGuideColor.RibbonTabTopBar | StudioStyleGuideColor.Button | StudioStyleGuideColor.MainButton | StudioStyleGuideColor.RibbonButton | StudioStyleGuideColor.ViewPortBackground | StudioStyleGuideColor.InputFieldBackground | StudioStyleGuideColor.Item | StudioStyleGuideColor.TableItem | StudioStyleGuideColor.CategoryItem | StudioStyleGuideColor.GameSettingsTableItem | StudioStyleGuideColor.GameSettingsTooltip | StudioStyleGuideColor.EmulatorBar | StudioStyleGuideColor.EmulatorDropDown | StudioStyleGuideColor.ColorPickerFrame | StudioStyleGuideColor.CurrentMarker | StudioStyleGuideColor.Border | StudioStyleGuideColor.DropShadow | StudioStyleGuideColor.Shadow | StudioStyleGuideColor.Light | StudioStyleGuideColor.Dark | StudioStyleGuideColor.Mid | StudioStyleGuideColor.MainText | StudioStyleGuideColor.SubText | StudioStyleGuideColor.TitlebarText | StudioStyleGuideColor.BrightText | StudioStyleGuideColor.DimmedText | StudioStyleGuideColor.LinkText | StudioStyleGuideColor.WarningText | StudioStyleGuideColor.ErrorText | StudioStyleGuideColor.InfoText | StudioStyleGuideColor.SensitiveText | StudioStyleGuideColor.ScriptSideWidget | StudioStyleGuideColor.ScriptBackground | StudioStyleGuideColor.ScriptText | StudioStyleGuideColor.ScriptSelectionText | StudioStyleGuideColor.ScriptSelectionBackground | StudioStyleGuideColor.ScriptFindSelectionBackground | StudioStyleGuideColor.ScriptMatchingWordSelectionBackground | StudioStyleGuideColor.ScriptOperator | StudioStyleGuideColor.ScriptNumber | StudioStyleGuideColor.ScriptString | StudioStyleGuideColor.ScriptComment | StudioStyleGuideColor.ScriptKeyword | StudioStyleGuideColor.ScriptBuiltInFunction | StudioStyleGuideColor.ScriptWarning | StudioStyleGuideColor.ScriptError | StudioStyleGuideColor.ScriptInformation | StudioStyleGuideColor.ScriptHint | StudioStyleGuideColor.ScriptWhitespace | StudioStyleGuideColor.ScriptRuler | StudioStyleGuideColor.DocViewCodeBackground | StudioStyleGuideColor.DebuggerCurrentLine | StudioStyleGuideColor.DebuggerErrorLine | StudioStyleGuideColor.DiffFilePathText | StudioStyleGuideColor.DiffTextHunkInfo | StudioStyleGuideColor.DiffTextNoChange | StudioStyleGuideColor.DiffTextAddition | StudioStyleGuideColor.DiffTextDeletion | StudioStyleGuideColor.DiffTextSeparatorBackground | StudioStyleGuideColor.DiffTextNoChangeBackground | StudioStyleGuideColor.DiffTextAdditionBackground | StudioStyleGuideColor.DiffTextDeletionBackground | StudioStyleGuideColor.DiffLineNum | StudioStyleGuideColor.DiffLineNumSeparatorBackground | StudioStyleGuideColor.DiffLineNumNoChangeBackground | StudioStyleGuideColor.DiffLineNumAdditionBackground | StudioStyleGuideColor.DiffLineNumDeletionBackground | StudioStyleGuideColor.DiffFilePathBackground | StudioStyleGuideColor.DiffFilePathBorder | StudioStyleGuideColor.ChatIncomingBgColor | StudioStyleGuideColor.ChatIncomingTextColor | StudioStyleGuideColor.ChatOutgoingBgColor | StudioStyleGuideColor.ChatOutgoingTextColor | StudioStyleGuideColor.ChatModeratedMessageColor | StudioStyleGuideColor.Separator | StudioStyleGuideColor.ButtonBorder | StudioStyleGuideColor.ButtonText | StudioStyleGuideColor.InputFieldBorder | StudioStyleGuideColor.CheckedFieldBackground | StudioStyleGuideColor.CheckedFieldBorder | StudioStyleGuideColor.CheckedFieldIndicator | StudioStyleGuideColor.HeaderSection | StudioStyleGuideColor.Midlight | StudioStyleGuideColor.StatusBar | StudioStyleGuideColor.DialogButton | StudioStyleGuideColor.DialogButtonText | StudioStyleGuideColor.DialogButtonBorder | StudioStyleGuideColor.DialogMainButton | StudioStyleGuideColor.DialogMainButtonText | StudioStyleGuideColor.InfoBarWarningBackground | StudioStyleGuideColor.InfoBarWarningText | StudioStyleGuideColor.ScriptEditorCurrentLine | StudioStyleGuideColor.ScriptMethod | StudioStyleGuideColor.ScriptProperty | StudioStyleGuideColor.ScriptNil | StudioStyleGuideColor.ScriptBool | StudioStyleGuideColor.ScriptFunction | StudioStyleGuideColor.ScriptLocal | StudioStyleGuideColor.ScriptSelf | StudioStyleGuideColor.ScriptLuauKeyword | StudioStyleGuideColor.ScriptFunctionName | StudioStyleGuideColor.ScriptTodo | StudioStyleGuideColor.ScriptBracket | StudioStyleGuideColor.AttributeCog | StudioStyleGuideColor.AICOOverlayText | StudioStyleGuideColor.AICOOverlayButtonBackground | StudioStyleGuideColor.AICOOverlayButtonBackgroundHover | StudioStyleGuideColor.AICOOverlayButtonBackgroundPressed | StudioStyleGuideColor.OnboardingCover | StudioStyleGuideColor.OnboardingHighlight | StudioStyleGuideColor.OnboardingShadow | StudioStyleGuideColor.BreakpointMarker;
|
|
17944
18063
|
|
|
17945
18064
|
export namespace StudioStyleGuideModifier {
|
|
17946
18065
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -18016,6 +18135,51 @@ declare namespace Enum {
|
|
|
18016
18135
|
}
|
|
18017
18136
|
export type Style = Style.AlternatingSupports | Style.BridgeStyleSupports | Style.NoSupports;
|
|
18018
18137
|
|
|
18138
|
+
export namespace SubscriptionExpirationReason {
|
|
18139
|
+
export interface ProductInactive extends globalThis.EnumItem {
|
|
18140
|
+
Name: "ProductInactive";
|
|
18141
|
+
Value: 0;
|
|
18142
|
+
EnumType: typeof globalThis.Enum.SubscriptionExpirationReason;
|
|
18143
|
+
}
|
|
18144
|
+
|
|
18145
|
+
export const ProductInactive: ProductInactive;
|
|
18146
|
+
|
|
18147
|
+
export interface ProductDeleted extends globalThis.EnumItem {
|
|
18148
|
+
Name: "ProductDeleted";
|
|
18149
|
+
Value: 1;
|
|
18150
|
+
EnumType: typeof globalThis.Enum.SubscriptionExpirationReason;
|
|
18151
|
+
}
|
|
18152
|
+
|
|
18153
|
+
export const ProductDeleted: ProductDeleted;
|
|
18154
|
+
|
|
18155
|
+
export interface SubscriberCancelled extends globalThis.EnumItem {
|
|
18156
|
+
Name: "SubscriberCancelled";
|
|
18157
|
+
Value: 2;
|
|
18158
|
+
EnumType: typeof globalThis.Enum.SubscriptionExpirationReason;
|
|
18159
|
+
}
|
|
18160
|
+
|
|
18161
|
+
export const SubscriberCancelled: SubscriberCancelled;
|
|
18162
|
+
|
|
18163
|
+
export interface SubscriberRefunded extends globalThis.EnumItem {
|
|
18164
|
+
Name: "SubscriberRefunded";
|
|
18165
|
+
Value: 3;
|
|
18166
|
+
EnumType: typeof globalThis.Enum.SubscriptionExpirationReason;
|
|
18167
|
+
}
|
|
18168
|
+
|
|
18169
|
+
export const SubscriberRefunded: SubscriberRefunded;
|
|
18170
|
+
|
|
18171
|
+
export interface Lapsed extends globalThis.EnumItem {
|
|
18172
|
+
Name: "Lapsed";
|
|
18173
|
+
Value: 4;
|
|
18174
|
+
EnumType: typeof globalThis.Enum.SubscriptionExpirationReason;
|
|
18175
|
+
}
|
|
18176
|
+
|
|
18177
|
+
export const Lapsed: Lapsed;
|
|
18178
|
+
|
|
18179
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SubscriptionExpirationReason>;
|
|
18180
|
+
}
|
|
18181
|
+
export type SubscriptionExpirationReason = SubscriptionExpirationReason.ProductInactive | SubscriptionExpirationReason.ProductDeleted | SubscriptionExpirationReason.SubscriberCancelled | SubscriptionExpirationReason.SubscriberRefunded | SubscriptionExpirationReason.Lapsed;
|
|
18182
|
+
|
|
18019
18183
|
export namespace SubscriptionPaymentStatus {
|
|
18020
18184
|
export interface Paid extends globalThis.EnumItem {
|
|
18021
18185
|
Name: "Paid";
|
|
@@ -18050,6 +18214,51 @@ declare namespace Enum {
|
|
|
18050
18214
|
}
|
|
18051
18215
|
export type SubscriptionPeriod = SubscriptionPeriod.Month;
|
|
18052
18216
|
|
|
18217
|
+
export namespace SubscriptionState {
|
|
18218
|
+
export interface NeverSubscribed extends globalThis.EnumItem {
|
|
18219
|
+
Name: "NeverSubscribed";
|
|
18220
|
+
Value: 0;
|
|
18221
|
+
EnumType: typeof globalThis.Enum.SubscriptionState;
|
|
18222
|
+
}
|
|
18223
|
+
|
|
18224
|
+
export const NeverSubscribed: NeverSubscribed;
|
|
18225
|
+
|
|
18226
|
+
export interface SubscribedWillRenew extends globalThis.EnumItem {
|
|
18227
|
+
Name: "SubscribedWillRenew";
|
|
18228
|
+
Value: 1;
|
|
18229
|
+
EnumType: typeof globalThis.Enum.SubscriptionState;
|
|
18230
|
+
}
|
|
18231
|
+
|
|
18232
|
+
export const SubscribedWillRenew: SubscribedWillRenew;
|
|
18233
|
+
|
|
18234
|
+
export interface SubscribedWillNotRenew extends globalThis.EnumItem {
|
|
18235
|
+
Name: "SubscribedWillNotRenew";
|
|
18236
|
+
Value: 2;
|
|
18237
|
+
EnumType: typeof globalThis.Enum.SubscriptionState;
|
|
18238
|
+
}
|
|
18239
|
+
|
|
18240
|
+
export const SubscribedWillNotRenew: SubscribedWillNotRenew;
|
|
18241
|
+
|
|
18242
|
+
export interface SubscribedRenewalPaymentPending extends globalThis.EnumItem {
|
|
18243
|
+
Name: "SubscribedRenewalPaymentPending";
|
|
18244
|
+
Value: 3;
|
|
18245
|
+
EnumType: typeof globalThis.Enum.SubscriptionState;
|
|
18246
|
+
}
|
|
18247
|
+
|
|
18248
|
+
export const SubscribedRenewalPaymentPending: SubscribedRenewalPaymentPending;
|
|
18249
|
+
|
|
18250
|
+
export interface Expired extends globalThis.EnumItem {
|
|
18251
|
+
Name: "Expired";
|
|
18252
|
+
Value: 4;
|
|
18253
|
+
EnumType: typeof globalThis.Enum.SubscriptionState;
|
|
18254
|
+
}
|
|
18255
|
+
|
|
18256
|
+
export const Expired: Expired;
|
|
18257
|
+
|
|
18258
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SubscriptionState>;
|
|
18259
|
+
}
|
|
18260
|
+
export type SubscriptionState = SubscriptionState.NeverSubscribed | SubscriptionState.SubscribedWillRenew | SubscriptionState.SubscribedWillNotRenew | SubscriptionState.SubscribedRenewalPaymentPending | SubscriptionState.Expired;
|
|
18261
|
+
|
|
18053
18262
|
export namespace SurfaceConstraint {
|
|
18054
18263
|
export interface None extends globalThis.EnumItem {
|
|
18055
18264
|
Name: "None";
|
|
@@ -18940,35 +19149,6 @@ declare namespace Enum {
|
|
|
18940
19149
|
}
|
|
18941
19150
|
export type TextYAlignment = TextYAlignment.Top | TextYAlignment.Center | TextYAlignment.Bottom;
|
|
18942
19151
|
|
|
18943
|
-
export namespace TextureGenerationMeshHandlerUnwrapMode {
|
|
18944
|
-
export interface Never extends globalThis.EnumItem {
|
|
18945
|
-
Name: "Never";
|
|
18946
|
-
Value: 0;
|
|
18947
|
-
EnumType: typeof globalThis.Enum.TextureGenerationMeshHandlerUnwrapMode;
|
|
18948
|
-
}
|
|
18949
|
-
|
|
18950
|
-
export const Never: Never;
|
|
18951
|
-
|
|
18952
|
-
export interface Always extends globalThis.EnumItem {
|
|
18953
|
-
Name: "Always";
|
|
18954
|
-
Value: 1;
|
|
18955
|
-
EnumType: typeof globalThis.Enum.TextureGenerationMeshHandlerUnwrapMode;
|
|
18956
|
-
}
|
|
18957
|
-
|
|
18958
|
-
export const Always: Always;
|
|
18959
|
-
|
|
18960
|
-
export interface WhenInvalidUVsDetected extends globalThis.EnumItem {
|
|
18961
|
-
Name: "WhenInvalidUVsDetected";
|
|
18962
|
-
Value: 2;
|
|
18963
|
-
EnumType: typeof globalThis.Enum.TextureGenerationMeshHandlerUnwrapMode;
|
|
18964
|
-
}
|
|
18965
|
-
|
|
18966
|
-
export const WhenInvalidUVsDetected: WhenInvalidUVsDetected;
|
|
18967
|
-
|
|
18968
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextureGenerationMeshHandlerUnwrapMode>;
|
|
18969
|
-
}
|
|
18970
|
-
export type TextureGenerationMeshHandlerUnwrapMode = TextureGenerationMeshHandlerUnwrapMode.Never | TextureGenerationMeshHandlerUnwrapMode.Always | TextureGenerationMeshHandlerUnwrapMode.WhenInvalidUVsDetected;
|
|
18971
|
-
|
|
18972
19152
|
export namespace TextureMode {
|
|
18973
19153
|
export interface Stretch extends globalThis.EnumItem {
|
|
18974
19154
|
Name: "Stretch";
|