@rbxts/types 1.0.902 → 1.0.904

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.
@@ -49,6 +49,7 @@ interface Services {
49
49
  ContextActionService: ContextActionService;
50
50
  ControllerService: ControllerService;
51
51
  ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
52
+ CoreGuiConfiguration: CoreGuiConfiguration;
52
53
  CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
53
54
  CreationDBService: CreationDBService;
54
55
  CreatorStoreService: CreatorStoreService;
@@ -563,6 +564,7 @@ interface Instances extends Services, CreatableInstances {
563
564
  AuroraScriptObject: AuroraScriptObject;
564
565
  BackpackItem: BackpackItem;
565
566
  BanHistoryPages: BanHistoryPages;
567
+ BaseCoreGuiConfiguration: BaseCoreGuiConfiguration;
566
568
  BaseImportData: BaseImportData;
567
569
  BasePart: BasePart;
568
570
  BasePlayerGui: BasePlayerGui;
@@ -573,6 +575,7 @@ interface Instances extends Services, CreatableInstances {
573
575
  BodyMover: BodyMover;
574
576
  BubbleChatConfiguration: BubbleChatConfiguration;
575
577
  CapturesPages: CapturesPages;
578
+ CapturesViewConfiguration: CapturesViewConfiguration;
576
579
  CatalogPages: CatalogPages;
577
580
  ChannelSelectorSoundEffect: ChannelSelectorSoundEffect;
578
581
  ChannelTabsConfiguration: ChannelTabsConfiguration;
@@ -665,6 +668,7 @@ interface Instances extends Services, CreatableInstances {
665
668
  PlayerDataRecord: PlayerDataRecord;
666
669
  PlayerDataRecordConfig: PlayerDataRecordConfig;
667
670
  PlayerGui: PlayerGui;
671
+ PlayerListConfiguration: PlayerListConfiguration;
668
672
  PlayerMouse: PlayerMouse;
669
673
  PlayerScripts: PlayerScripts;
670
674
  PluginManagerInterface: PluginManagerInterface;
@@ -679,6 +683,7 @@ interface Instances extends Services, CreatableInstances {
679
683
  ScriptBuilder: ScriptBuilder;
680
684
  ScriptRuntime: ScriptRuntime;
681
685
  SelectionLasso: SelectionLasso;
686
+ SelfViewConfiguration: SelfViewConfiguration;
682
687
  SensorBase: SensorBase;
683
688
  ServiceProvider: ServiceProvider;
684
689
  SlidingBallConstraint: SlidingBallConstraint;
@@ -6822,7 +6827,7 @@ interface AudioReverb extends Instance {
6822
6827
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
6823
6828
  }
6824
6829
  /**
6825
- * Instance to be passed to `AssetService:SearchAudio()` to search for audio assets.
6830
+ * Instance to be passed to `AssetService:SearchAudioAsync()` to search for audio assets.
6826
6831
  *
6827
6832
  * - **Tags**: NotReplicated
6828
6833
  *
@@ -7432,12 +7437,6 @@ interface AuroraService extends Instance {
7432
7437
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetIncomingReplicationLag)
7433
7438
  */
7434
7439
  SetIncomingReplicationLag(this: AuroraService, seconds: number): void;
7435
- /**
7436
- * - **ThreadSafety**: Unsafe
7437
- *
7438
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetPropertyIsInput)
7439
- */
7440
- SetPropertyIsInput(this: AuroraService, target: Instance, propertyName: string, isInput: boolean): void;
7441
7440
  /**
7442
7441
  * - **ThreadSafety**: Unsafe
7443
7442
  *
@@ -8517,6 +8516,90 @@ interface BadgeService extends Instance {
8517
8516
  */
8518
8517
  UserHasBadgeAsync(this: BadgeService, userId: number, badgeId: number): boolean;
8519
8518
  }
8519
+ /**
8520
+ * - **Tags**: NotCreatable, NotReplicated
8521
+ *
8522
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseCoreGuiConfiguration)
8523
+ */
8524
+ interface BaseCoreGuiConfiguration extends Instance {
8525
+ /**
8526
+ * **DO NOT USE!**
8527
+ *
8528
+ * This field exists to force TypeScript to recognize this as a nominal type
8529
+ * @hidden
8530
+ * @deprecated
8531
+ */
8532
+ readonly _nominal_BaseCoreGuiConfiguration: unique symbol;
8533
+ /**
8534
+ * - **ThreadSafety**: ReadSafe
8535
+ *
8536
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseCoreGuiConfiguration#Enabled)
8537
+ */
8538
+ Enabled: boolean;
8539
+ }
8540
+ /**
8541
+ * - **Tags**: NotCreatable, NotReplicated
8542
+ *
8543
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesViewConfiguration)
8544
+ */
8545
+ interface CapturesViewConfiguration extends BaseCoreGuiConfiguration {
8546
+ /**
8547
+ * **DO NOT USE!**
8548
+ *
8549
+ * This field exists to force TypeScript to recognize this as a nominal type
8550
+ * @hidden
8551
+ * @deprecated
8552
+ */
8553
+ readonly _nominal_CapturesViewConfiguration: unique symbol;
8554
+ /**
8555
+ * - **ThreadSafety**: ReadSafe
8556
+ *
8557
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesViewConfiguration#Open)
8558
+ */
8559
+ Open: boolean;
8560
+ }
8561
+ /**
8562
+ * - **Tags**: NotCreatable, NotReplicated
8563
+ *
8564
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerListConfiguration)
8565
+ */
8566
+ interface PlayerListConfiguration extends BaseCoreGuiConfiguration {
8567
+ /**
8568
+ * **DO NOT USE!**
8569
+ *
8570
+ * This field exists to force TypeScript to recognize this as a nominal type
8571
+ * @hidden
8572
+ * @deprecated
8573
+ */
8574
+ readonly _nominal_PlayerListConfiguration: unique symbol;
8575
+ /**
8576
+ * - **ThreadSafety**: ReadSafe
8577
+ *
8578
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerListConfiguration#Open)
8579
+ */
8580
+ Open: boolean;
8581
+ }
8582
+ /**
8583
+ * - **Tags**: NotCreatable, NotReplicated
8584
+ *
8585
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SelfViewConfiguration)
8586
+ */
8587
+ interface SelfViewConfiguration extends BaseCoreGuiConfiguration {
8588
+ /**
8589
+ * **DO NOT USE!**
8590
+ *
8591
+ * This field exists to force TypeScript to recognize this as a nominal type
8592
+ * @hidden
8593
+ * @deprecated
8594
+ */
8595
+ readonly _nominal_SelfViewConfiguration: unique symbol;
8596
+ /**
8597
+ * - **ThreadSafety**: ReadSafe
8598
+ *
8599
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SelfViewConfiguration#Open)
8600
+ */
8601
+ Open: boolean;
8602
+ }
8520
8603
  /**
8521
8604
  * - **Tags**: NotCreatable, NotReplicated
8522
8605
  *
@@ -12339,8 +12422,6 @@ interface AngularVelocity extends Constraint {
12339
12422
  /**
12340
12423
  * Aligns two `BaseParts` with an animate-able kinematic or force-based joint.
12341
12424
  *
12342
- * - **Tags**: NotBrowsable
12343
- *
12344
12425
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationConstraint)
12345
12426
  */
12346
12427
  interface AnimationConstraint extends Constraint {
@@ -14552,6 +14633,39 @@ interface ConversationalAIAcceptanceService extends Instance {
14552
14633
  */
14553
14634
  readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
14554
14635
  }
14636
+ /**
14637
+ * - **Tags**: NotCreatable, Service, NotReplicated
14638
+ *
14639
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration)
14640
+ */
14641
+ interface CoreGuiConfiguration extends Instance {
14642
+ /**
14643
+ * **DO NOT USE!**
14644
+ *
14645
+ * This field exists to force TypeScript to recognize this as a nominal type
14646
+ * @hidden
14647
+ * @deprecated
14648
+ */
14649
+ readonly _nominal_CoreGuiConfiguration: unique symbol;
14650
+ /**
14651
+ * - **ThreadSafety**: ReadSafe
14652
+ *
14653
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration#CapturesViewConfiguration)
14654
+ */
14655
+ CapturesViewConfiguration: CapturesViewConfiguration | undefined;
14656
+ /**
14657
+ * - **ThreadSafety**: ReadSafe
14658
+ *
14659
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration#PlayerListConfiguration)
14660
+ */
14661
+ PlayerListConfiguration: PlayerListConfiguration | undefined;
14662
+ /**
14663
+ * - **ThreadSafety**: ReadSafe
14664
+ *
14665
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration#SelfViewConfiguration)
14666
+ */
14667
+ SelfViewConfiguration: SelfViewConfiguration | undefined;
14668
+ }
14555
14669
  /**
14556
14670
  * - **Tags**: NotCreatable, Service
14557
14671
  *
@@ -22191,7 +22305,7 @@ interface HapticEffect extends Instance {
22191
22305
  */
22192
22306
  Play(this: HapticEffect): void;
22193
22307
  /**
22194
- * Method used to define a custom waveform as a table and apply it to the haptic.
22308
+ * Defines a custom waveform as a table and applies it to the haptic. <pre><code>This method takes in an array of `FloatCurveKey` objects. </code></pre>
22195
22309
  *
22196
22310
  * - **ThreadSafety**: Unsafe
22197
22311
  *
@@ -25540,6 +25654,8 @@ interface InstanceExtensionsService extends Instance {
25540
25654
  readonly _nominal_InstanceExtensionsService: unique symbol;
25541
25655
  }
25542
25656
  /**
25657
+ * A service for interacting with file sync from a plugin.
25658
+ *
25543
25659
  * - **Tags**: NotCreatable, Service, NotReplicated
25544
25660
  *
25545
25661
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService)
@@ -27884,7 +28000,7 @@ interface MarketplaceService extends Instance {
27884
28000
  * local ProductIdentifier = { InfoType = Enum.InfoType.GamePass, Id = 123456 }
27885
28001
  * ```
27886
28002
  * @returns The array of ranked items in a personalized order for the current user. Each array has: - `ProductIdentifier`: The corresponding ID from the input array.
27887
- * - `ProductInfo`: The standard product info dictionary returned by `GetProductInfo`.
28003
+ * - `ProductInfo`: The standard product info dictionary returned by `GetProductInfoAsync`.
27888
28004
  */
27889
28005
  RankProductsAsync(this: MarketplaceService, productIdentifiers: Array<unknown>): Array<unknown>;
27890
28006
  /**
@@ -32916,7 +33032,7 @@ interface Pages<T = unknown> extends Instance {
32916
33032
  AdvanceToNextPageAsync(this: Pages): void;
32917
33033
  }
32918
33034
  /**
32919
- * A special version of the `Pages` class returned by `AssetService:SearchAudio()`.
33035
+ * A special version of the `Pages` class returned by `AssetService:SearchAudioAsync()`.
32920
33036
  *
32921
33037
  * - **Tags**: NotCreatable, NotReplicated
32922
33038
  *
@@ -39156,7 +39272,7 @@ interface SocialService extends Instance {
39156
39272
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#OnCallInviteInvoked)
39157
39273
  * @param tag String to help differentiate between various phone book entry points.
39158
39274
  * @param callParticipantIds Array containing all of the players involved in the call. The caller will always be the first player in the array.
39159
- * @returns Table including the `PlaceId` and `ReservedServerAccessCode` keys whose values are the `DataModel.PlaceId` and the server access code returned by `TeleportService:ReserveServer()`, respectively.
39275
+ * @returns Table including the `PlaceId` and `ReservedServerAccessCode` keys whose values are the `DataModel.PlaceId` and the server access code returned by `TeleportService:ReserveServerAsync()`, respectively.
39160
39276
  */
39161
39277
  OnCallInviteInvoked: ((tag: string, callParticipantIds: Array<unknown>) => Instance) | undefined;
39162
39278
  }
@@ -40320,7 +40436,6 @@ interface StarterPlayer extends Instance {
40320
40436
  CharacterWalkSpeed: number;
40321
40437
  /**
40322
40438
  * - **ThreadSafety**: ReadSafe
40323
- * - **Tags**: NotBrowsable
40324
40439
  *
40325
40440
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#ClassicDeath)
40326
40441
  */
@@ -41813,14 +41928,14 @@ interface TeleportService extends Instance {
41813
41928
  */
41814
41929
  TeleportToPlaceInstance(this: TeleportService, placeId: number, instanceId: string, player?: Player, spawnName?: string, teleportData?: TeleportData, customLoadingScreen?: ScreenGui): void;
41815
41930
  /**
41816
- * Teleport a group of `Players` to a reserved server created using `TeleportService:ReserveServer()`.
41931
+ * Teleport a group of `Players` to a reserved server created using `TeleportService:ReserveServerAsync()`.
41817
41932
  *
41818
41933
  * - **ThreadSafety**: Unsafe
41819
41934
  *
41820
41935
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToPrivateServer)
41821
41936
  * @param this Enables transporting `Players` between places and servers.
41822
41937
  * @param placeId The ID of the place to teleport to.
41823
- * @param reservedServerAccessCode The reserved server access code returned by `TeleportService:ReserveServer()`.
41938
+ * @param reservedServerAccessCode The reserved server access code returned by `TeleportService:ReserveServerAsync()`.
41824
41939
  * @param players An array of `Players` to teleport.
41825
41940
  * @param spawnName Optional name of the `SpawnLocation` to spawn at.
41826
41941
  * @param teleportData Optional data to be passed to the destination place. Can be retrieved using `TeleportService:GetLocalPlayerTeleportData()`.
@@ -42085,7 +42200,7 @@ interface TestService extends Instance {
42085
42200
  */
42086
42201
  readonly _nominal_TestService: unique symbol;
42087
42202
  /**
42088
- * If set to `true`, the game will start running when the service's `TestService:Run()` method is called.
42203
+ * If set to `true`, the game will start running when the service's `TestService:RunAsync()` method is called.
42089
42204
  *
42090
42205
  * - **ThreadSafety**: ReadSafe
42091
42206
  *
@@ -43646,7 +43761,7 @@ interface TextGenerator extends Instance {
43646
43761
  GenerateTextAsync(this: TextGenerator, request: object): object;
43647
43762
  }
43648
43763
  /**
43649
- * The TextService is a service internally responsible for handling the display of text in the game.
43764
+ * Service internally responsible for handling the display of text.
43650
43765
  *
43651
43766
  * - **Tags**: NotCreatable, Service, NotReplicated
43652
43767
  *
@@ -43667,22 +43782,22 @@ interface TextService extends Instance {
43667
43782
  * - **ThreadSafety**: Unsafe
43668
43783
  *
43669
43784
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextService#GetTextSize)
43670
- * @param this The TextService is a service internally responsible for handling the display of text in the game.
43785
+ * @param this Service internally responsible for handling the display of text.
43671
43786
  * @param string The string for which the text size is to be calculated.
43672
- * @param fontSize The integer representing the font size used.
43787
+ * @param fontSize The integer representing the font size used. Does not accept an `FontSize` value.
43673
43788
  * @param font The font used.
43674
- * @param frameSize The `TextLabel.AbsoluteSize` of the text object to be used. Required to compute how the text will wrap.
43789
+ * @param frameSize The `GuiBase2d.AbsoluteSize` of the text object to be used. Required to compute how the text will wrap.
43675
43790
  * @returns The size of the space required, in pixels, by the string with the specified formatting.
43676
43791
  */
43677
43792
  GetTextSize(this: TextService, string: string, fontSize: number, font: CastsToEnum<Enum.Font>, frameSize: Vector2): Vector2;
43678
43793
  /**
43679
- * Chat translation is not supported in legacy chat. This method is no longer supported and should not be used.
43794
+ * Filters and translates a string.
43680
43795
  *
43681
43796
  * - **ThreadSafety**: Unsafe
43682
43797
  * - **Tags**: Yields
43683
43798
  *
43684
43799
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextService#FilterAndTranslateStringAsync)
43685
- * @param this The TextService is a service internally responsible for handling the display of text in the game.
43800
+ * @param this Service internally responsible for handling the display of text.
43686
43801
  * @param stringToFilter
43687
43802
  * @param fromUserId
43688
43803
  * @param targetLocales
@@ -43690,16 +43805,16 @@ interface TextService extends Instance {
43690
43805
  */
43691
43806
  FilterAndTranslateStringAsync(this: TextService, stringToFilter: string, fromUserId: number, targetLocales: Array<unknown>, textContext?: CastsToEnum<Enum.TextFilterContext>): TextFilterTranslatedResult;
43692
43807
  /**
43693
- * Filters a string being received from a user, and returns a `TextFilterResult` which can be used to distribute the correctly filtered text accordingly.
43808
+ * Filters a string being received from a user and returns a `TextFilterResult` which can be used to distribute the correctly filtered text accordingly.
43694
43809
  *
43695
43810
  * - **ThreadSafety**: Unsafe
43696
43811
  * - **Tags**: Yields
43697
43812
  *
43698
43813
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextService#FilterStringAsync)
43699
- * @param this The TextService is a service internally responsible for handling the display of text in the game.
43814
+ * @param this Service internally responsible for handling the display of text.
43700
43815
  * @param stringToFilter The text to be filtered.
43701
- * @param fromUserId The userId of the player filtering the text.
43702
- * @param textContext The context that the filtered message will be used in.
43816
+ * @param fromUserId The `Player.UserId` of the player filtering the text.
43817
+ * @param textContext The context that the filtered message will be used in. This parameter does not impact the filtered result of the query and is only used to improve Roblox's text filtering.
43703
43818
  */
43704
43819
  FilterStringAsync(this: TextService, stringToFilter: string, fromUserId: number, textContext?: CastsToEnum<Enum.TextFilterContext>): TextFilterResult;
43705
43820
  /**
@@ -43709,29 +43824,31 @@ interface TextService extends Instance {
43709
43824
  * - **Tags**: Yields
43710
43825
  *
43711
43826
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextService#GetFamilyInfoAsync)
43712
- * @param this The TextService is a service internally responsible for handling the display of text in the game.
43827
+ * @param this Service internally responsible for handling the display of text.
43713
43828
  * @param assetId Asset ID of the font family to look up.
43714
43829
  * @returns The information about the font family.
43715
43830
  */
43716
43831
  GetFamilyInfoAsync(this: TextService, assetId: ContentId): object;
43717
43832
  /**
43718
- * Calculates the width and height of text given parameters.
43833
+ * Computes the `Vector2` dimensions (in pixels) that will be taken up with text when using a `GetTextBoundsParams` object.
43719
43834
  *
43720
43835
  * - **ThreadSafety**: Unsafe
43721
43836
  * - **Tags**: Yields
43722
43837
  *
43723
43838
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextService#GetTextBoundsAsync)
43724
- * @param this The TextService is a service internally responsible for handling the display of text in the game.
43839
+ * @param this Service internally responsible for handling the display of text.
43725
43840
  * @param params A reference to a `GetTextBoundsParams` object.
43726
43841
  * @returns The size of the text as a `Vector2`.
43727
43842
  */
43728
43843
  GetTextBoundsAsync(this: TextService, params: GetTextBoundsParams): Vector2;
43729
43844
  /**
43845
+ * Returns the offset used to up-scale text based on the current `GuiService.PreferredTextSize` setting.
43846
+ *
43730
43847
  * - **ThreadSafety**: Unsafe
43731
43848
  * - **Tags**: Yields
43732
43849
  *
43733
43850
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextService#GetTextSizeOffsetAsync)
43734
- * @param this The TextService is a service internally responsible for handling the display of text in the game.
43851
+ * @param this Service internally responsible for handling the display of text.
43735
43852
  * @param fontSize
43736
43853
  * @param font
43737
43854
  */
@@ -51,6 +51,7 @@ interface Services {
51
51
  ControllerService: ControllerService;
52
52
  ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
53
53
  CoreGui: CoreGui;
54
+ CoreGuiConfiguration: CoreGuiConfiguration;
54
55
  CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
55
56
  CreationDBService: CreationDBService;
56
57
  CreatorStoreService: CreatorStoreService;
@@ -587,6 +588,7 @@ interface Instances extends Services, CreatableInstances {
587
588
  AuroraScriptObject: AuroraScriptObject;
588
589
  BackpackItem: BackpackItem;
589
590
  BanHistoryPages: BanHistoryPages;
591
+ BaseCoreGuiConfiguration: BaseCoreGuiConfiguration;
590
592
  BaseImportData: BaseImportData;
591
593
  BasePart: BasePart;
592
594
  BasePlayerGui: BasePlayerGui;
@@ -597,6 +599,7 @@ interface Instances extends Services, CreatableInstances {
597
599
  BodyMover: BodyMover;
598
600
  BubbleChatConfiguration: BubbleChatConfiguration;
599
601
  CapturesPages: CapturesPages;
602
+ CapturesViewConfiguration: CapturesViewConfiguration;
600
603
  CatalogPages: CatalogPages;
601
604
  ChannelSelectorSoundEffect: ChannelSelectorSoundEffect;
602
605
  ChannelTabsConfiguration: ChannelTabsConfiguration;
@@ -700,6 +703,7 @@ interface Instances extends Services, CreatableInstances {
700
703
  PlayerDataRecord: PlayerDataRecord;
701
704
  PlayerDataRecordConfig: PlayerDataRecordConfig;
702
705
  PlayerGui: PlayerGui;
706
+ PlayerListConfiguration: PlayerListConfiguration;
703
707
  PlayerMouse: PlayerMouse;
704
708
  PlayerScripts: PlayerScripts;
705
709
  Plugin: Plugin;
@@ -727,6 +731,7 @@ interface Instances extends Services, CreatableInstances {
727
731
  ScriptDocument: ScriptDocument;
728
732
  ScriptRuntime: ScriptRuntime;
729
733
  SelectionLasso: SelectionLasso;
734
+ SelfViewConfiguration: SelfViewConfiguration;
730
735
  SensorBase: SensorBase;
731
736
  ServerReplicator: ServerReplicator;
732
737
  ServiceProvider: ServiceProvider;
@@ -1966,7 +1971,7 @@ interface AudioReverb extends Instance {
1966
1971
  readonly _nominal_AudioReverb: unique symbol;
1967
1972
  }
1968
1973
  /**
1969
- * Instance to be passed to `AssetService:SearchAudio()` to search for audio assets.
1974
+ * Instance to be passed to `AssetService:SearchAudioAsync()` to search for audio assets.
1970
1975
  *
1971
1976
  * - **Tags**: NotReplicated
1972
1977
  *
@@ -2267,6 +2272,66 @@ interface BadgeService extends Instance {
2267
2272
  */
2268
2273
  readonly _nominal_BadgeService: unique symbol;
2269
2274
  }
2275
+ /**
2276
+ * - **Tags**: NotCreatable, NotReplicated
2277
+ *
2278
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseCoreGuiConfiguration)
2279
+ */
2280
+ interface BaseCoreGuiConfiguration extends Instance {
2281
+ /**
2282
+ * **DO NOT USE!**
2283
+ *
2284
+ * This field exists to force TypeScript to recognize this as a nominal type
2285
+ * @hidden
2286
+ * @deprecated
2287
+ */
2288
+ readonly _nominal_BaseCoreGuiConfiguration: unique symbol;
2289
+ }
2290
+ /**
2291
+ * - **Tags**: NotCreatable, NotReplicated
2292
+ *
2293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesViewConfiguration)
2294
+ */
2295
+ interface CapturesViewConfiguration extends BaseCoreGuiConfiguration {
2296
+ /**
2297
+ * **DO NOT USE!**
2298
+ *
2299
+ * This field exists to force TypeScript to recognize this as a nominal type
2300
+ * @hidden
2301
+ * @deprecated
2302
+ */
2303
+ readonly _nominal_CapturesViewConfiguration: unique symbol;
2304
+ }
2305
+ /**
2306
+ * - **Tags**: NotCreatable, NotReplicated
2307
+ *
2308
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerListConfiguration)
2309
+ */
2310
+ interface PlayerListConfiguration extends BaseCoreGuiConfiguration {
2311
+ /**
2312
+ * **DO NOT USE!**
2313
+ *
2314
+ * This field exists to force TypeScript to recognize this as a nominal type
2315
+ * @hidden
2316
+ * @deprecated
2317
+ */
2318
+ readonly _nominal_PlayerListConfiguration: unique symbol;
2319
+ }
2320
+ /**
2321
+ * - **Tags**: NotCreatable, NotReplicated
2322
+ *
2323
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SelfViewConfiguration)
2324
+ */
2325
+ interface SelfViewConfiguration extends BaseCoreGuiConfiguration {
2326
+ /**
2327
+ * **DO NOT USE!**
2328
+ *
2329
+ * This field exists to force TypeScript to recognize this as a nominal type
2330
+ * @hidden
2331
+ * @deprecated
2332
+ */
2333
+ readonly _nominal_SelfViewConfiguration: unique symbol;
2334
+ }
2270
2335
  /**
2271
2336
  * - **Tags**: NotCreatable, NotReplicated
2272
2337
  *
@@ -3549,8 +3614,6 @@ interface AngularVelocity extends Constraint {
3549
3614
  /**
3550
3615
  * Aligns two `BaseParts` with an animate-able kinematic or force-based joint.
3551
3616
  *
3552
- * - **Tags**: NotBrowsable
3553
- *
3554
3617
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationConstraint)
3555
3618
  */
3556
3619
  interface AnimationConstraint extends Constraint {
@@ -4030,6 +4093,21 @@ interface ConversationalAIAcceptanceService extends Instance {
4030
4093
  */
4031
4094
  readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
4032
4095
  }
4096
+ /**
4097
+ * - **Tags**: NotCreatable, Service, NotReplicated
4098
+ *
4099
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration)
4100
+ */
4101
+ interface CoreGuiConfiguration extends Instance {
4102
+ /**
4103
+ * **DO NOT USE!**
4104
+ *
4105
+ * This field exists to force TypeScript to recognize this as a nominal type
4106
+ * @hidden
4107
+ * @deprecated
4108
+ */
4109
+ readonly _nominal_CoreGuiConfiguration: unique symbol;
4110
+ }
4033
4111
  /**
4034
4112
  * - **Tags**: NotCreatable, Service
4035
4113
  *
@@ -7209,6 +7287,8 @@ interface InstanceExtensionsService extends Instance {
7209
7287
  readonly _nominal_InstanceExtensionsService: unique symbol;
7210
7288
  }
7211
7289
  /**
7290
+ * A service for interacting with file sync from a plugin.
7291
+ *
7212
7292
  * - **Tags**: NotCreatable, Service, NotReplicated
7213
7293
  *
7214
7294
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService)
@@ -7223,24 +7303,40 @@ interface InstanceFileSyncService extends Instance {
7223
7303
  */
7224
7304
  readonly _nominal_InstanceFileSyncService: unique symbol;
7225
7305
  /**
7306
+ * Returns an array of all instances currently involved in file synchronization.
7307
+ *
7226
7308
  * - **ThreadSafety**: Unsafe
7227
7309
  *
7228
7310
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetAllInstances)
7311
+ * @param this A service for interacting with file sync from a plugin.
7312
+ * @returns Returns an array of `Instances`.
7229
7313
  */
7230
7314
  GetAllInstances(this: InstanceFileSyncService): Array<Instance>;
7231
7315
  /**
7316
+ * Returns the synchronization status of a specific instance.
7317
+ *
7232
7318
  * - **ThreadSafety**: Unsafe
7233
7319
  *
7234
7320
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetStatus)
7321
+ * @param this A service for interacting with file sync from a plugin.
7322
+ * @param instance The instance to check.
7323
+ * @returns Returns the `InstanceFileSyncStatus` for the instance.
7235
7324
  */
7236
7325
  GetStatus(this: InstanceFileSyncService, instance: Instance): Enum.InstanceFileSyncStatus;
7237
7326
  /**
7327
+ * Returns the instance corresponding to a given file path.
7328
+ *
7238
7329
  * - **ThreadSafety**: Unsafe
7239
7330
  *
7240
7331
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetSyncedInstance)
7332
+ * @param this A service for interacting with file sync from a plugin.
7333
+ * @param filePath The absolute path to the file.
7334
+ * @returns Returns the Instance being synced to the file path, if one exists. Otherwise, returns nil.
7241
7335
  */
7242
7336
  GetSyncedInstance(this: InstanceFileSyncService, filePath: string): Instance | undefined;
7243
7337
  /**
7338
+ * Fires when the synchronization status of an instance changes.
7339
+ *
7244
7340
  * - **ThreadSafety**: Unsafe
7245
7341
  *
7246
7342
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#StatusChanged)
@@ -9484,7 +9580,7 @@ interface Pages<T = unknown> extends Instance {
9484
9580
  readonly _nominal_Pages: unique symbol;
9485
9581
  }
9486
9582
  /**
9487
- * A special version of the `Pages` class returned by `AssetService:SearchAudio()`.
9583
+ * A special version of the `Pages` class returned by `AssetService:SearchAudioAsync()`.
9488
9584
  *
9489
9585
  * - **Tags**: NotCreatable, NotReplicated
9490
9586
  *
@@ -14461,7 +14557,7 @@ interface TextGenerator extends Instance {
14461
14557
  readonly _nominal_TextGenerator: unique symbol;
14462
14558
  }
14463
14559
  /**
14464
- * The TextService is a service internally responsible for handling the display of text in the game.
14560
+ * Service internally responsible for handling the display of text.
14465
14561
  *
14466
14562
  * - **Tags**: NotCreatable, Service, NotReplicated
14467
14563
  *
@@ -2717,7 +2717,7 @@ declare namespace Enum {
2717
2717
  }
2718
2718
  export type AssetFetchStatus = AssetFetchStatus.Success | AssetFetchStatus.Failure | AssetFetchStatus.None | AssetFetchStatus.Loading | AssetFetchStatus.TimedOut;
2719
2719
  /**
2720
- * This Enum can be used to match the AssetTypeId from `MarketplaceService:GetProductInfo()` to an asset type.
2720
+ * This Enum can be used to match the AssetTypeId from `MarketplaceService:GetProductInfoAsync()` to an asset type.
2721
2721
  *
2722
2722
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType)
2723
2723
  */
@@ -9255,11 +9255,20 @@ declare namespace Enum {
9255
9255
  EnumType: typeof globalThis.Enum.CoreGuiType;
9256
9256
  }
9257
9257
  export const Captures: Captures;
9258
+ /**
9259
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CoreGuiType#AvatarSwitcher)
9260
+ */
9261
+ export interface AvatarSwitcher extends globalThis.EnumItem {
9262
+ Name: "AvatarSwitcher";
9263
+ Value: 8;
9264
+ EnumType: typeof globalThis.Enum.CoreGuiType;
9265
+ }
9266
+ export const AvatarSwitcher: AvatarSwitcher;
9258
9267
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CoreGuiType>;
9259
9268
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CoreGuiType | undefined;
9260
9269
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CoreGuiType | undefined;
9261
9270
  }
9262
- export type CoreGuiType = CoreGuiType.PlayerList | CoreGuiType.Health | CoreGuiType.Backpack | CoreGuiType.Chat | CoreGuiType.All | CoreGuiType.EmotesMenu | CoreGuiType.SelfView | CoreGuiType.Captures;
9271
+ export type CoreGuiType = CoreGuiType.PlayerList | CoreGuiType.Health | CoreGuiType.Backpack | CoreGuiType.Chat | CoreGuiType.All | CoreGuiType.EmotesMenu | CoreGuiType.SelfView | CoreGuiType.Captures | CoreGuiType.AvatarSwitcher;
9263
9272
  /**
9264
9273
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateAssetResult)
9265
9274
  */
@@ -16725,10 +16734,14 @@ declare namespace Enum {
16725
16734
  }
16726
16735
  export type InputType = InputType.NoInput | InputType.Constant | InputType.Sin;
16727
16736
  /**
16737
+ * Describes the file sync status of an Instance.
16738
+ *
16728
16739
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus)
16729
16740
  */
16730
16741
  export namespace InstanceFileSyncStatus {
16731
16742
  /**
16743
+ * The `Instance` is not being synced or errored.
16744
+ *
16732
16745
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#NotSynced)
16733
16746
  */
16734
16747
  export interface NotSynced extends globalThis.EnumItem {
@@ -16738,6 +16751,8 @@ declare namespace Enum {
16738
16751
  }
16739
16752
  export const NotSynced: NotSynced;
16740
16753
  /**
16754
+ * The `Instance` is a sync root that has errored and stopped syncing.
16755
+ *
16741
16756
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#Errored)
16742
16757
  */
16743
16758
  export interface Errored extends globalThis.EnumItem {
@@ -16747,6 +16762,8 @@ declare namespace Enum {
16747
16762
  }
16748
16763
  export const Errored: Errored;
16749
16764
  /**
16765
+ * The `Instance` is being synced as the root of a sync tree.
16766
+ *
16750
16767
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#SyncedAsRoot)
16751
16768
  */
16752
16769
  export interface SyncedAsRoot extends globalThis.EnumItem {
@@ -16756,6 +16773,8 @@ declare namespace Enum {
16756
16773
  }
16757
16774
  export const SyncedAsRoot: SyncedAsRoot;
16758
16775
  /**
16776
+ * The `Instance` is being synced because it is a descendant of a sync root.
16777
+ *
16759
16778
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#SyncedAsDescendant)
16760
16779
  */
16761
16780
  export interface SyncedAsDescendant extends globalThis.EnumItem {
@@ -24472,6 +24491,15 @@ declare namespace Enum {
24472
24491
  EnumType: typeof globalThis.Enum.Platform;
24473
24492
  }
24474
24493
  export const MetaOS: MetaOS;
24494
+ /**
24495
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Platform#Web)
24496
+ */
24497
+ export interface Web extends globalThis.EnumItem {
24498
+ Name: "Web";
24499
+ Value: 21;
24500
+ EnumType: typeof globalThis.Enum.Platform;
24501
+ }
24502
+ export const Web: Web;
24475
24503
  /**
24476
24504
  * The client's operating system is unknown.
24477
24505
  *
@@ -24479,7 +24507,7 @@ declare namespace Enum {
24479
24507
  */
24480
24508
  export interface None extends globalThis.EnumItem {
24481
24509
  Name: "None";
24482
- Value: 21;
24510
+ Value: 22;
24483
24511
  EnumType: typeof globalThis.Enum.Platform;
24484
24512
  }
24485
24513
  export const None: None;
@@ -24487,7 +24515,7 @@ declare namespace Enum {
24487
24515
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Platform | undefined;
24488
24516
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Platform | undefined;
24489
24517
  }
24490
- export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.MetaOS | Platform.None;
24518
+ export type Platform = Platform.Windows | Platform.OSX | Platform.IOS | Platform.Android | Platform.XBoxOne | Platform.PS4 | Platform.PS3 | Platform.XBox360 | Platform.WiiU | Platform.NX | Platform.Ouya | Platform.AndroidTV | Platform.Chromecast | Platform.Linux | Platform.SteamOS | Platform.WebOS | Platform.DOS | Platform.BeOS | Platform.UWP | Platform.PS5 | Platform.MetaOS | Platform.Web | Platform.None;
24491
24519
  /**
24492
24520
  * Describes the current state of a `Tween` in its `Tween.PlaybackState` property.
24493
24521
  *
@@ -33778,11 +33806,29 @@ declare namespace Enum {
33778
33806
  EnumType: typeof globalThis.Enum.TextInputType;
33779
33807
  }
33780
33808
  export const OneTimePassword: OneTimePassword;
33809
+ /**
33810
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextInputType#NewPassword)
33811
+ */
33812
+ export interface NewPassword extends globalThis.EnumItem {
33813
+ Name: "NewPassword";
33814
+ Value: 9;
33815
+ EnumType: typeof globalThis.Enum.TextInputType;
33816
+ }
33817
+ export const NewPassword: NewPassword;
33818
+ /**
33819
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextInputType#NewPasswordShown)
33820
+ */
33821
+ export interface NewPasswordShown extends globalThis.EnumItem {
33822
+ Name: "NewPasswordShown";
33823
+ Value: 10;
33824
+ EnumType: typeof globalThis.Enum.TextInputType;
33825
+ }
33826
+ export const NewPasswordShown: NewPasswordShown;
33781
33827
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextInputType>;
33782
33828
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextInputType | undefined;
33783
33829
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextInputType | undefined;
33784
33830
  }
33785
- export type TextInputType = TextInputType.Default | TextInputType.NoSuggestions | TextInputType.Number | TextInputType.Email | TextInputType.Phone | TextInputType.Password | TextInputType.PasswordShown | TextInputType.Username | TextInputType.OneTimePassword;
33831
+ export type TextInputType = TextInputType.Default | TextInputType.NoSuggestions | TextInputType.Number | TextInputType.Email | TextInputType.Phone | TextInputType.Password | TextInputType.PasswordShown | TextInputType.Username | TextInputType.OneTimePassword | TextInputType.NewPassword | TextInputType.NewPasswordShown;
33786
33832
  /**
33787
33833
  * Controls the truncation of text when using the `TextTruncate` property.
33788
33834
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.902",
3
+ "version": "1.0.904",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },