@rbxts/types 1.0.766 → 1.0.768

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.
@@ -30,6 +30,7 @@ interface Services {
30
30
  CollaboratorsService: CollaboratorsService;
31
31
  CollectionService: CollectionService;
32
32
  CommandService: CommandService;
33
+ CommerceService: CommerceService;
33
34
  ConfigureServerService: ConfigureServerService;
34
35
  ConnectivityService: ConnectivityService;
35
36
  ContentProvider: ContentProvider;
@@ -125,6 +126,7 @@ interface Services {
125
126
  ScriptCommitService: ScriptCommitService;
126
127
  ScriptContext: ScriptContext;
127
128
  ScriptEditorService: ScriptEditorService;
129
+ ScriptProfilerService: ScriptProfilerService;
128
130
  ScriptRegistrationService: ScriptRegistrationService;
129
131
  SelectionHighlightManager: SelectionHighlightManager;
130
132
  ServerScriptService: ServerScriptService;
@@ -462,6 +464,10 @@ interface Instances extends Services, CreatableInstances {
462
464
  AssetPatchSettings: AssetPatchSettings;
463
465
  AssetSoundEffect: AssetSoundEffect;
464
466
  AudioPages: AudioPages;
467
+ Avatar2DGenerationJob: Avatar2DGenerationJob;
468
+ Avatar3DGenerationJob: Avatar3DGenerationJob;
469
+ AvatarGenerationJob: AvatarGenerationJob;
470
+ AvatarGenerationSession: AvatarGenerationSession;
465
471
  BackpackItem: BackpackItem;
466
472
  BaseImportData: BaseImportData;
467
473
  BasePart: BasePart;
@@ -1364,7 +1370,7 @@ interface ActivityHistoryService extends Instance {
1364
1370
  * @deprecated
1365
1371
  */
1366
1372
  readonly _nominal_ActivityHistoryService: unique symbol;
1367
- readonly onEventNotificationReceived: RBXScriptSignal<() => void>;
1373
+ readonly EventNotificationReceived: RBXScriptSignal<() => void>;
1368
1374
  }
1369
1375
 
1370
1376
  interface AdPortal extends Instance {
@@ -1439,6 +1445,7 @@ interface AnalyticsService extends Instance {
1439
1445
  * * [AnalyticsService:FirePlayerProgressionEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FirePlayerProgressionEvent), triggers an event used to track player progression through the game
1440
1446
  * * [AnalyticsService:FireInGameEconomyEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireInGameEconomyEvent), triggers an event used to track player actions pertaining to the in-game economy
1441
1447
  * * [AnalyticsService:FireLogEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireLogEvent), triggers an event used to track errors and warnings experienced by players
1448
+ * @deprecated
1442
1449
  */
1443
1450
  FireCustomEvent(
1444
1451
  this: AnalyticsService,
@@ -1498,6 +1505,7 @@ interface AnalyticsService extends Instance {
1498
1505
  * * [AnalyticsService:FirePlayerProgressionEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FirePlayerProgressionEvent), triggers an event used to track player progression through the game
1499
1506
  * * [AnalyticsService:FireLogEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireLogEvent), triggers an event used to track errors and warnings experienced by players
1500
1507
  * * [AnalyticsService:FireCustomEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireCustomEvent), triggers an event used to emit a custom event
1508
+ * @deprecated
1501
1509
  */
1502
1510
  FireInGameEconomyEvent(
1503
1511
  this: AnalyticsService,
@@ -1555,6 +1563,7 @@ interface AnalyticsService extends Instance {
1555
1563
  * * [AnalyticsService:FireInGameEconomyEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireInGameEconomyEvent), triggers an event used to track player actions pertaining to the in-game economy
1556
1564
  * * [AnalyticsService:FirePlayerProgressionEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FirePlayerProgressionEvent), triggers an event used to track player progression through the game
1557
1565
  * * [AnalyticsService:FireCustomEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireCustomEvent), triggers an event used to emit a custom event
1566
+ * @deprecated
1558
1567
  */
1559
1568
  FireLogEvent(
1560
1569
  this: AnalyticsService,
@@ -1612,6 +1621,7 @@ interface AnalyticsService extends Instance {
1612
1621
  * * [AnalyticsService:FireInGameEconomyEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireInGameEconomyEvent), triggers an event used to track player actions pertaining to the in-game economy
1613
1622
  * * [AnalyticsService:FireLogEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireLogEvent), triggers an event used to track errors and warnings experienced by players
1614
1623
  * * [AnalyticsService:FireCustomEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireCustomEvent), triggers an event used to emit a custom event
1624
+ * @deprecated
1615
1625
  */
1616
1626
  FirePlayerProgressionEvent(
1617
1627
  this: AnalyticsService,
@@ -1622,6 +1632,13 @@ interface AnalyticsService extends Instance {
1622
1632
  statistics?: { [index: string]: number },
1623
1633
  customData?: unknown,
1624
1634
  ): void;
1635
+ LogEconomyEvent(this: AnalyticsService, player: Player, flowType: CastsToEnum<Enum.AnalyticsEconomyFlowType>, currencyType: string, endingBalance: number, amount: number, transactionType: string, itemSku: string, customFields: Array<any>): void;
1636
+ LogFunnelStepEvent(this: AnalyticsService, player: Player, funnelName: string, step: number, customFields: Array<any>): void;
1637
+ LogOnboardingFunnelStepEvent(this: AnalyticsService, player: Player, step: number, customFields: Array<any>): void;
1638
+ LogProgressionCompleteEvent(this: AnalyticsService, player: Player, level: number, levelName: string, customFields: Array<any>): void;
1639
+ LogProgressionEvent(this: AnalyticsService, player: Player, status: CastsToEnum<Enum.AnalyticsProgressionType>, level: number, levelName: string, customFields: Array<any>): void;
1640
+ LogProgressionFailEvent(this: AnalyticsService, player: Player, level: number, levelName: string, customFields: Array<any>): void;
1641
+ LogProgressionStartEvent(this: AnalyticsService, player: Player, level: number, levelName: string, customFields: Array<any>): void;
1625
1642
  }
1626
1643
 
1627
1644
  /** An object that references an animation asset (AnimationId) which can be loaded by a [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) or [AnimationController](https://developer.roblox.com/en-us/api-reference/class/AnimationController)
@@ -2882,6 +2899,14 @@ interface AudioEmitter extends Instance {
2882
2899
  readonly _nominal_AudioEmitter: unique symbol;
2883
2900
  AudioInteractionGroup: string;
2884
2901
  GetConnectedWires(this: AudioEmitter, pin: string): unknown;
2902
+ /**
2903
+ * Tags: CustomLuaState
2904
+ */
2905
+ GetDistanceAttenuation(this: AudioEmitter): object;
2906
+ /**
2907
+ * Tags: CustomLuaState
2908
+ */
2909
+ SetDistanceAttenuation(this: AudioEmitter, curve: object): void;
2885
2910
  }
2886
2911
 
2887
2912
  interface AudioEqualizer extends Instance {
@@ -3054,6 +3079,14 @@ interface AvatarCreationService extends Instance {
3054
3079
  * @deprecated
3055
3080
  */
3056
3081
  readonly _nominal_AvatarCreationService: unique symbol;
3082
+ /**
3083
+ * Tags: Yields
3084
+ */
3085
+ LoadAvatarModelAsync(this: AvatarCreationService, id: string): Instance | undefined;
3086
+ /**
3087
+ * Tags: Yields
3088
+ */
3089
+ LoadAvatarPreviewImageAsync(this: AvatarCreationService, avatarPreview: string): EditableImage;
3057
3090
  /**
3058
3091
  * Tags: Yields
3059
3092
  */
@@ -3489,6 +3522,63 @@ interface AvatarEditorService extends Instance {
3489
3522
  readonly PromptUpdateOutfitCompleted: RBXScriptSignal<(result: Enum.AvatarPromptResult) => void>;
3490
3523
  }
3491
3524
 
3525
+ interface AvatarGenerationJob extends Instance {
3526
+ /**
3527
+ * **DO NOT USE!**
3528
+ *
3529
+ * This field exists to force TypeScript to recognize this as a nominal type
3530
+ * @hidden
3531
+ * @deprecated
3532
+ */
3533
+ readonly _nominal_AvatarGenerationJob: unique symbol;
3534
+ Error: Enum.AvatarGenerationError;
3535
+ ErrorMessage: string;
3536
+ Progress: number;
3537
+ Status: Enum.AvatarGenerationJobStatus;
3538
+ Cancel(this: AvatarGenerationJob): void;
3539
+ /**
3540
+ * Tags: Yields
3541
+ */
3542
+ Wait(this: AvatarGenerationJob): void;
3543
+ }
3544
+
3545
+ interface Avatar2DGenerationJob extends AvatarGenerationJob {
3546
+ /**
3547
+ * **DO NOT USE!**
3548
+ *
3549
+ * This field exists to force TypeScript to recognize this as a nominal type
3550
+ * @hidden
3551
+ * @deprecated
3552
+ */
3553
+ readonly _nominal_Avatar2DGenerationJob: unique symbol;
3554
+ Result: string;
3555
+ }
3556
+
3557
+ interface Avatar3DGenerationJob extends AvatarGenerationJob {
3558
+ /**
3559
+ * **DO NOT USE!**
3560
+ *
3561
+ * This field exists to force TypeScript to recognize this as a nominal type
3562
+ * @hidden
3563
+ * @deprecated
3564
+ */
3565
+ readonly _nominal_Avatar3DGenerationJob: unique symbol;
3566
+ Result: Model | undefined;
3567
+ }
3568
+
3569
+ interface AvatarGenerationSession extends Instance {
3570
+ /**
3571
+ * **DO NOT USE!**
3572
+ *
3573
+ * This field exists to force TypeScript to recognize this as a nominal type
3574
+ * @hidden
3575
+ * @deprecated
3576
+ */
3577
+ readonly _nominal_AvatarGenerationSession: unique symbol;
3578
+ GenerateAvatarModel(this: AvatarGenerationSession, previewJob: Avatar2DGenerationJob, options: object): Avatar3DGenerationJob;
3579
+ GenerateAvatarPreview(this: AvatarGenerationSession, textPrompt: string, options: object): Avatar2DGenerationJob;
3580
+ }
3581
+
3492
3582
  interface AvatarImportService extends Instance {
3493
3583
  /**
3494
3584
  * **DO NOT USE!**
@@ -7528,6 +7618,22 @@ interface CommandService extends Instance {
7528
7618
  readonly _nominal_CommandService: unique symbol;
7529
7619
  }
7530
7620
 
7621
+ interface CommerceService extends Instance {
7622
+ /**
7623
+ * **DO NOT USE!**
7624
+ *
7625
+ * This field exists to force TypeScript to recognize this as a nominal type
7626
+ * @hidden
7627
+ * @deprecated
7628
+ */
7629
+ readonly _nominal_CommerceService: unique symbol;
7630
+ PromptRealWorldCommerceBrowser(this: CommerceService, player: Player, url: string): void;
7631
+ /**
7632
+ * Tags: Yields
7633
+ */
7634
+ UserEligibleForRealWorldCommerceAsync(this: CommerceService): boolean;
7635
+ }
7636
+
7531
7637
  /** The Configuration object is a container object that is designed to hold value objects to make values used in [Tool](https://developer.roblox.com/en-us/api-reference/class/Tool)s or any model using [Script](https://developer.roblox.com/en-us/api-reference/class/Script)s more accessible.
7532
7638
  *
7533
7639
  * How does the Configuration object work?
@@ -9743,7 +9849,7 @@ interface EditableMesh extends DataModelMesh {
9743
9849
  /**
9744
9850
  * Tags: Yields
9745
9851
  */
9746
- CreateMeshPartAsync(this: EditableMesh, collisionFidelity: CastsToEnum<Enum.CollisionFidelity>): MeshPart;
9852
+ CreateMeshPartAsync(this: EditableMesh, options?: object): MeshPart;
9747
9853
  }
9748
9854
 
9749
9855
  interface RobloxEditableMesh extends EditableMesh {
@@ -26634,6 +26740,10 @@ interface Workspace extends WorldRoot {
26634
26740
  * Determines the acceleration due to gravity applied to falling [BaseParts](https://developer.roblox.com/en-us/api-reference/class/BasePart). This value is measured in studs per second squared and by default is set to 196.2 studs/second2. By changing this value, developers can simulate the effects of lower or higher gravity in game.
26635
26741
  */
26636
26742
  Gravity: number;
26743
+ /**
26744
+ * Tags: NotReplicated
26745
+ */
26746
+ InsertPoint: Vector3;
26637
26747
  /**
26638
26748
  * Tags: Hidden, NotReplicated
26639
26749
  * @deprecated
@@ -30606,6 +30716,17 @@ interface ScriptEditorService extends Instance {
30606
30716
  readonly _nominal_ScriptEditorService: unique symbol;
30607
30717
  }
30608
30718
 
30719
+ interface ScriptProfilerService extends Instance {
30720
+ /**
30721
+ * **DO NOT USE!**
30722
+ *
30723
+ * This field exists to force TypeScript to recognize this as a nominal type
30724
+ * @hidden
30725
+ * @deprecated
30726
+ */
30727
+ readonly _nominal_ScriptProfilerService: unique symbol;
30728
+ }
30729
+
30609
30730
  interface ScriptRegistrationService extends Instance {
30610
30731
  /**
30611
30732
  * **DO NOT USE!**
@@ -32707,10 +32828,6 @@ interface StarterPlayer extends Instance {
32707
32828
  * Since this property is only relevant for characters being spawned in the future, changing it will not change any existing player characters. Changes to this property will only take effect when a player respawns.
32708
32829
  */
32709
32830
  CharacterWalkSpeed: number;
32710
- /**
32711
- * Tags: NotBrowsable
32712
- */
32713
- DeathStyle: Enum.DeathStyle;
32714
32831
  /**
32715
32832
  * The DevCameraOcclusionMode [StarterPlayer](https://developer.roblox.com/en-us/api-reference/class/StarterPlayer) property sets how the default camera handles objects between the camera and the player.
32716
32833
  *
@@ -154,6 +154,21 @@ interface Animator extends Instance {
154
154
  StepAnimations(this: Animator, deltaTime: number): void;
155
155
  }
156
156
 
157
+ interface AssetService extends Instance {
158
+ /**
159
+ * **DO NOT USE!**
160
+ *
161
+ * This field exists to force TypeScript to recognize this as a nominal type
162
+ * @hidden
163
+ * @deprecated
164
+ */
165
+ readonly _nominal_AssetService: unique symbol;
166
+ /**
167
+ * Tags: Yields
168
+ */
169
+ CreateMeshPartAsync(this: AssetService, meshId: string, options?: object): MeshPart;
170
+ }
171
+
157
172
  /** The CoreGui is a service used to store Guis created in-game by Roblox for the core user interface found in every game (such as the game menu, the playerlist, the backpack, etc.). It can also be used by [Plugins](https://developer.roblox.com/en-us/api-reference/class/Plugin) in Roblox Studio.
158
173
  *
159
174
  * You can use the [StarterGui:SetCoreGuiEnabled](https://developer.roblox.com/en-us/api-reference/function/StarterGui/SetCoreGuiEnabled) and [StarterGui:GetCoreGuiEnabled](https://developer.roblox.com/en-us/api-reference/function/StarterGui/GetCoreGuiEnabled) methods in a [LocalScript](https://developer.roblox.com/en-us/api-reference/class/LocalScript) to enable and disable most elements of the CoreGui. You can also use [PlayerGui:SetTopbarTransparency](https://developer.roblox.com/en-us/api-reference/function/PlayerGui/SetTopbarTransparency) to set the transparency of the top bar.
@@ -3143,6 +3158,28 @@ interface ScriptEditorService extends Instance {
3143
3158
  readonly TextDocumentDidOpen: RBXScriptSignal<(newDocument: ScriptDocument) => void>;
3144
3159
  }
3145
3160
 
3161
+ interface ScriptProfilerService extends Instance {
3162
+ /**
3163
+ * **DO NOT USE!**
3164
+ *
3165
+ * This field exists to force TypeScript to recognize this as a nominal type
3166
+ * @hidden
3167
+ * @deprecated
3168
+ */
3169
+ readonly _nominal_ScriptProfilerService: unique symbol;
3170
+ ClientRequestData(this: ScriptProfilerService, player: Player): void;
3171
+ ClientStart(this: ScriptProfilerService, player: Player, frequency: number | undefined): void;
3172
+ ClientStop(this: ScriptProfilerService, player: Player): void;
3173
+ /**
3174
+ * Tags: CustomLuaState
3175
+ */
3176
+ DeserializeJSON(this: ScriptProfilerService, jsonString: string | undefined): object;
3177
+ ServerRequestData(this: ScriptProfilerService): void;
3178
+ ServerStart(this: ScriptProfilerService, frequency: number | undefined): void;
3179
+ ServerStop(this: ScriptProfilerService): void;
3180
+ readonly OnNewData: RBXScriptSignal<(player: Player, jsonString: string) => void>;
3181
+ }
3182
+
3146
3183
  /** The Selection service controls the [Instance](https://developer.roblox.com/en-us/api-reference/class/Instance)s that are selected in Roblox Studio.
3147
3184
  *
3148
3185
  * This service is particularly useful when developing [Plugin](https://developer.roblox.com/en-us/api-reference/class/Plugin)s, as it allows the developer to access and manipulate the current selection.
@@ -560,6 +560,80 @@ declare namespace Enum {
560
560
  }
561
561
  export type AnalyticsEconomyAction = AnalyticsEconomyAction.Default | AnalyticsEconomyAction.Acquire | AnalyticsEconomyAction.Spend;
562
562
 
563
+ export namespace AnalyticsEconomyFlowType {
564
+ export interface Sink extends globalThis.EnumItem {
565
+ Name: "Sink";
566
+ Value: 0;
567
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyFlowType;
568
+ }
569
+
570
+ export const Sink: Sink;
571
+
572
+ export interface Source extends globalThis.EnumItem {
573
+ Name: "Source";
574
+ Value: 1;
575
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyFlowType;
576
+ }
577
+
578
+ export const Source: Source;
579
+
580
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyFlowType>;
581
+ }
582
+ export type AnalyticsEconomyFlowType = AnalyticsEconomyFlowType.Sink | AnalyticsEconomyFlowType.Source;
583
+
584
+ export namespace AnalyticsEconomyTransactionType {
585
+ export interface IAP extends globalThis.EnumItem {
586
+ Name: "IAP";
587
+ Value: 0;
588
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
589
+ }
590
+
591
+ export const IAP: IAP;
592
+
593
+ export interface Shop extends globalThis.EnumItem {
594
+ Name: "Shop";
595
+ Value: 1;
596
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
597
+ }
598
+
599
+ export const Shop: Shop;
600
+
601
+ export interface Gameplay extends globalThis.EnumItem {
602
+ Name: "Gameplay";
603
+ Value: 2;
604
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
605
+ }
606
+
607
+ export const Gameplay: Gameplay;
608
+
609
+ export interface ContextualPurchase extends globalThis.EnumItem {
610
+ Name: "ContextualPurchase";
611
+ Value: 3;
612
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
613
+ }
614
+
615
+ export const ContextualPurchase: ContextualPurchase;
616
+
617
+ export interface TimedReward extends globalThis.EnumItem {
618
+ Name: "TimedReward";
619
+ Value: 4;
620
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
621
+ }
622
+
623
+ export const TimedReward: TimedReward;
624
+
625
+ export interface Onboarding extends globalThis.EnumItem {
626
+ Name: "Onboarding";
627
+ Value: 5;
628
+ EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
629
+ }
630
+
631
+ export const Onboarding: Onboarding;
632
+
633
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyTransactionType>;
634
+ }
635
+ export type AnalyticsEconomyTransactionType = AnalyticsEconomyTransactionType.IAP | AnalyticsEconomyTransactionType.Shop | AnalyticsEconomyTransactionType.Gameplay | AnalyticsEconomyTransactionType.ContextualPurchase | AnalyticsEconomyTransactionType.TimedReward | AnalyticsEconomyTransactionType.Onboarding;
636
+
563
637
  export namespace AnalyticsLogLevel {
564
638
  export interface Trace extends globalThis.EnumItem {
565
639
  Name: "Trace";
@@ -658,6 +732,43 @@ declare namespace Enum {
658
732
  }
659
733
  export type AnalyticsProgressionStatus = AnalyticsProgressionStatus.Default | AnalyticsProgressionStatus.Begin | AnalyticsProgressionStatus.Complete | AnalyticsProgressionStatus.Abandon | AnalyticsProgressionStatus.Fail;
660
734
 
735
+ export namespace AnalyticsProgressionType {
736
+ export interface Custom extends globalThis.EnumItem {
737
+ Name: "Custom";
738
+ Value: 0;
739
+ EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
740
+ }
741
+
742
+ export const Custom: Custom;
743
+
744
+ export interface Start extends globalThis.EnumItem {
745
+ Name: "Start";
746
+ Value: 1;
747
+ EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
748
+ }
749
+
750
+ export const Start: Start;
751
+
752
+ export interface Fail extends globalThis.EnumItem {
753
+ Name: "Fail";
754
+ Value: 2;
755
+ EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
756
+ }
757
+
758
+ export const Fail: Fail;
759
+
760
+ export interface Complete extends globalThis.EnumItem {
761
+ Name: "Complete";
762
+ Value: 3;
763
+ EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
764
+ }
765
+
766
+ export const Complete: Complete;
767
+
768
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsProgressionType>;
769
+ }
770
+ export type AnalyticsProgressionType = AnalyticsProgressionType.Custom | AnalyticsProgressionType.Start | AnalyticsProgressionType.Fail | AnalyticsProgressionType.Complete;
771
+
661
772
  export namespace AnimationClipFromVideoStatus {
662
773
  export interface Initializing extends globalThis.EnumItem {
663
774
  Name: "Initializing";
@@ -2268,6 +2379,88 @@ declare namespace Enum {
2268
2379
  }
2269
2380
  export type AvatarContextMenuOption = AvatarContextMenuOption.Friend | AvatarContextMenuOption.Chat | AvatarContextMenuOption.Emote | AvatarContextMenuOption.InspectMenu;
2270
2381
 
2382
+ export namespace AvatarGenerationError {
2383
+ export interface None extends globalThis.EnumItem {
2384
+ Name: "None";
2385
+ Value: 0;
2386
+ EnumType: typeof globalThis.Enum.AvatarGenerationError;
2387
+ }
2388
+
2389
+ export const None: None;
2390
+
2391
+ export interface Timeout extends globalThis.EnumItem {
2392
+ Name: "Timeout";
2393
+ Value: 1;
2394
+ EnumType: typeof globalThis.Enum.AvatarGenerationError;
2395
+ }
2396
+
2397
+ export const Timeout: Timeout;
2398
+
2399
+ export interface DownloadFailed extends globalThis.EnumItem {
2400
+ Name: "DownloadFailed";
2401
+ Value: 2;
2402
+ EnumType: typeof globalThis.Enum.AvatarGenerationError;
2403
+ }
2404
+
2405
+ export const DownloadFailed: DownloadFailed;
2406
+
2407
+ export interface Canceled extends globalThis.EnumItem {
2408
+ Name: "Canceled";
2409
+ Value: 3;
2410
+ EnumType: typeof globalThis.Enum.AvatarGenerationError;
2411
+ }
2412
+
2413
+ export const Canceled: Canceled;
2414
+
2415
+ export interface Unknown extends globalThis.EnumItem {
2416
+ Name: "Unknown";
2417
+ Value: 4;
2418
+ EnumType: typeof globalThis.Enum.AvatarGenerationError;
2419
+ }
2420
+
2421
+ export const Unknown: Unknown;
2422
+
2423
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarGenerationError>;
2424
+ }
2425
+ export type AvatarGenerationError = AvatarGenerationError.None | AvatarGenerationError.Timeout | AvatarGenerationError.DownloadFailed | AvatarGenerationError.Canceled | AvatarGenerationError.Unknown;
2426
+
2427
+ export namespace AvatarGenerationJobStatus {
2428
+ export interface NotStarted extends globalThis.EnumItem {
2429
+ Name: "NotStarted";
2430
+ Value: 0;
2431
+ EnumType: typeof globalThis.Enum.AvatarGenerationJobStatus;
2432
+ }
2433
+
2434
+ export const NotStarted: NotStarted;
2435
+
2436
+ export interface InProgress extends globalThis.EnumItem {
2437
+ Name: "InProgress";
2438
+ Value: 1;
2439
+ EnumType: typeof globalThis.Enum.AvatarGenerationJobStatus;
2440
+ }
2441
+
2442
+ export const InProgress: InProgress;
2443
+
2444
+ export interface Completed extends globalThis.EnumItem {
2445
+ Name: "Completed";
2446
+ Value: 2;
2447
+ EnumType: typeof globalThis.Enum.AvatarGenerationJobStatus;
2448
+ }
2449
+
2450
+ export const Completed: Completed;
2451
+
2452
+ export interface Failed extends globalThis.EnumItem {
2453
+ Name: "Failed";
2454
+ Value: 3;
2455
+ EnumType: typeof globalThis.Enum.AvatarGenerationJobStatus;
2456
+ }
2457
+
2458
+ export const Failed: Failed;
2459
+
2460
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarGenerationJobStatus>;
2461
+ }
2462
+ export type AvatarGenerationJobStatus = AvatarGenerationJobStatus.NotStarted | AvatarGenerationJobStatus.InProgress | AvatarGenerationJobStatus.Completed | AvatarGenerationJobStatus.Failed;
2463
+
2271
2464
  export namespace AvatarItemType {
2272
2465
  export interface Asset extends globalThis.EnumItem {
2273
2466
  Name: "Asset";
@@ -4791,6 +4984,14 @@ declare namespace Enum {
4791
4984
 
4792
4985
  export const PlacelaunchUserPrivacyUnauthorized: PlacelaunchUserPrivacyUnauthorized;
4793
4986
 
4987
+ export interface PlacelaunchCreatorBan extends globalThis.EnumItem {
4988
+ Name: "PlacelaunchCreatorBan";
4989
+ Value: 600;
4990
+ EnumType: typeof globalThis.Enum.ConnectionError;
4991
+ }
4992
+
4993
+ export const PlacelaunchCreatorBan: PlacelaunchCreatorBan;
4994
+
4794
4995
  export interface PlacelaunchCustomMessage extends globalThis.EnumItem {
4795
4996
  Name: "PlacelaunchCustomMessage";
4796
4997
  Value: 610;
@@ -4873,7 +5074,7 @@ declare namespace Enum {
4873
5074
 
4874
5075
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
4875
5076
  }
4876
- 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.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.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
5077
+ 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.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;
4877
5078
 
4878
5079
  export namespace ConnectionState {
4879
5080
  export interface Connected extends globalThis.EnumItem {
@@ -5252,43 +5453,6 @@ declare namespace Enum {
5252
5453
  }
5253
5454
  export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync;
5254
5455
 
5255
- export namespace DeathStyle {
5256
- export interface Default extends globalThis.EnumItem {
5257
- Name: "Default";
5258
- Value: 0;
5259
- EnumType: typeof globalThis.Enum.DeathStyle;
5260
- }
5261
-
5262
- export const Default: Default;
5263
-
5264
- export interface ClassicBreakApart extends globalThis.EnumItem {
5265
- Name: "ClassicBreakApart";
5266
- Value: 1;
5267
- EnumType: typeof globalThis.Enum.DeathStyle;
5268
- }
5269
-
5270
- export const ClassicBreakApart: ClassicBreakApart;
5271
-
5272
- export interface NonGraphic extends globalThis.EnumItem {
5273
- Name: "NonGraphic";
5274
- Value: 2;
5275
- EnumType: typeof globalThis.Enum.DeathStyle;
5276
- }
5277
-
5278
- export const NonGraphic: NonGraphic;
5279
-
5280
- export interface Scriptable extends globalThis.EnumItem {
5281
- Name: "Scriptable";
5282
- Value: 3;
5283
- EnumType: typeof globalThis.Enum.DeathStyle;
5284
- }
5285
-
5286
- export const Scriptable: Scriptable;
5287
-
5288
- export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeathStyle>;
5289
- }
5290
- export type DeathStyle = DeathStyle.Default | DeathStyle.ClassicBreakApart | DeathStyle.NonGraphic | DeathStyle.Scriptable;
5291
-
5292
5456
  export namespace DebuggerEndReason {
5293
5457
  export interface ClientRequest extends globalThis.EnumItem {
5294
5458
  Name: "ClientRequest";
@@ -7228,6 +7392,22 @@ declare namespace Enum {
7228
7392
 
7229
7393
  export const BuilderSansExtraBold: BuilderSansExtraBold;
7230
7394
 
7395
+ export interface Arimo extends globalThis.EnumItem {
7396
+ Name: "Arimo";
7397
+ Value: 50;
7398
+ EnumType: typeof globalThis.Enum.Font;
7399
+ }
7400
+
7401
+ export const Arimo: Arimo;
7402
+
7403
+ export interface ArimoBold extends globalThis.EnumItem {
7404
+ Name: "ArimoBold";
7405
+ Value: 51;
7406
+ EnumType: typeof globalThis.Enum.Font;
7407
+ }
7408
+
7409
+ export const ArimoBold: ArimoBold;
7410
+
7231
7411
  export interface Unknown extends globalThis.EnumItem {
7232
7412
  Name: "Unknown";
7233
7413
  Value: 100;
@@ -7238,7 +7418,7 @@ declare namespace Enum {
7238
7418
 
7239
7419
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Font>;
7240
7420
  }
7241
- 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;
7421
+ 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.Arimo | Font.ArimoBold | Font.Unknown;
7242
7422
 
7243
7423
  export namespace FontSize {
7244
7424
  export interface Size8 extends globalThis.EnumItem {
@@ -19217,9 +19397,17 @@ declare namespace Enum {
19217
19397
 
19218
19398
  export const AtEnd: AtEnd;
19219
19399
 
19400
+ export interface SplitWord extends globalThis.EnumItem {
19401
+ Name: "SplitWord";
19402
+ Value: 2;
19403
+ EnumType: typeof globalThis.Enum.TextTruncate;
19404
+ }
19405
+
19406
+ export const SplitWord: SplitWord;
19407
+
19220
19408
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextTruncate>;
19221
19409
  }
19222
- export type TextTruncate = TextTruncate.None | TextTruncate.AtEnd;
19410
+ export type TextTruncate = TextTruncate.None | TextTruncate.AtEnd | TextTruncate.SplitWord;
19223
19411
 
19224
19412
  export namespace TextXAlignment {
19225
19413
  export interface Left extends globalThis.EnumItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.766",
3
+ "version": "1.0.768",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },