@rbxts/types 1.0.902 → 1.0.903

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
  *
@@ -14552,6 +14635,39 @@ interface ConversationalAIAcceptanceService extends Instance {
14552
14635
  */
14553
14636
  readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
14554
14637
  }
14638
+ /**
14639
+ * - **Tags**: NotCreatable, Service, NotReplicated
14640
+ *
14641
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration)
14642
+ */
14643
+ interface CoreGuiConfiguration extends Instance {
14644
+ /**
14645
+ * **DO NOT USE!**
14646
+ *
14647
+ * This field exists to force TypeScript to recognize this as a nominal type
14648
+ * @hidden
14649
+ * @deprecated
14650
+ */
14651
+ readonly _nominal_CoreGuiConfiguration: unique symbol;
14652
+ /**
14653
+ * - **ThreadSafety**: ReadSafe
14654
+ *
14655
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration#CapturesViewConfiguration)
14656
+ */
14657
+ CapturesViewConfiguration: CapturesViewConfiguration | undefined;
14658
+ /**
14659
+ * - **ThreadSafety**: ReadSafe
14660
+ *
14661
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration#PlayerListConfiguration)
14662
+ */
14663
+ PlayerListConfiguration: PlayerListConfiguration | undefined;
14664
+ /**
14665
+ * - **ThreadSafety**: ReadSafe
14666
+ *
14667
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration#SelfViewConfiguration)
14668
+ */
14669
+ SelfViewConfiguration: SelfViewConfiguration | undefined;
14670
+ }
14555
14671
  /**
14556
14672
  * - **Tags**: NotCreatable, Service
14557
14673
  *
@@ -22191,7 +22307,7 @@ interface HapticEffect extends Instance {
22191
22307
  */
22192
22308
  Play(this: HapticEffect): void;
22193
22309
  /**
22194
- * Method used to define a custom waveform as a table and apply it to the haptic.
22310
+ * 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
22311
  *
22196
22312
  * - **ThreadSafety**: Unsafe
22197
22313
  *
@@ -25540,6 +25656,8 @@ interface InstanceExtensionsService extends Instance {
25540
25656
  readonly _nominal_InstanceExtensionsService: unique symbol;
25541
25657
  }
25542
25658
  /**
25659
+ * A service for interacting with file sync from a plugin.
25660
+ *
25543
25661
  * - **Tags**: NotCreatable, Service, NotReplicated
25544
25662
  *
25545
25663
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService)
@@ -27884,7 +28002,7 @@ interface MarketplaceService extends Instance {
27884
28002
  * local ProductIdentifier = { InfoType = Enum.InfoType.GamePass, Id = 123456 }
27885
28003
  * ```
27886
28004
  * @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`.
28005
+ * - `ProductInfo`: The standard product info dictionary returned by `GetProductInfoAsync`.
27888
28006
  */
27889
28007
  RankProductsAsync(this: MarketplaceService, productIdentifiers: Array<unknown>): Array<unknown>;
27890
28008
  /**
@@ -32916,7 +33034,7 @@ interface Pages<T = unknown> extends Instance {
32916
33034
  AdvanceToNextPageAsync(this: Pages): void;
32917
33035
  }
32918
33036
  /**
32919
- * A special version of the `Pages` class returned by `AssetService:SearchAudio()`.
33037
+ * A special version of the `Pages` class returned by `AssetService:SearchAudioAsync()`.
32920
33038
  *
32921
33039
  * - **Tags**: NotCreatable, NotReplicated
32922
33040
  *
@@ -39156,7 +39274,7 @@ interface SocialService extends Instance {
39156
39274
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#OnCallInviteInvoked)
39157
39275
  * @param tag String to help differentiate between various phone book entry points.
39158
39276
  * @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.
39277
+ * @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
39278
  */
39161
39279
  OnCallInviteInvoked: ((tag: string, callParticipantIds: Array<unknown>) => Instance) | undefined;
39162
39280
  }
@@ -41813,14 +41931,14 @@ interface TeleportService extends Instance {
41813
41931
  */
41814
41932
  TeleportToPlaceInstance(this: TeleportService, placeId: number, instanceId: string, player?: Player, spawnName?: string, teleportData?: TeleportData, customLoadingScreen?: ScreenGui): void;
41815
41933
  /**
41816
- * Teleport a group of `Players` to a reserved server created using `TeleportService:ReserveServer()`.
41934
+ * Teleport a group of `Players` to a reserved server created using `TeleportService:ReserveServerAsync()`.
41817
41935
  *
41818
41936
  * - **ThreadSafety**: Unsafe
41819
41937
  *
41820
41938
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToPrivateServer)
41821
41939
  * @param this Enables transporting `Players` between places and servers.
41822
41940
  * @param placeId The ID of the place to teleport to.
41823
- * @param reservedServerAccessCode The reserved server access code returned by `TeleportService:ReserveServer()`.
41941
+ * @param reservedServerAccessCode The reserved server access code returned by `TeleportService:ReserveServerAsync()`.
41824
41942
  * @param players An array of `Players` to teleport.
41825
41943
  * @param spawnName Optional name of the `SpawnLocation` to spawn at.
41826
41944
  * @param teleportData Optional data to be passed to the destination place. Can be retrieved using `TeleportService:GetLocalPlayerTeleportData()`.
@@ -42085,7 +42203,7 @@ interface TestService extends Instance {
42085
42203
  */
42086
42204
  readonly _nominal_TestService: unique symbol;
42087
42205
  /**
42088
- * If set to `true`, the game will start running when the service's `TestService:Run()` method is called.
42206
+ * If set to `true`, the game will start running when the service's `TestService:RunAsync()` method is called.
42089
42207
  *
42090
42208
  * - **ThreadSafety**: ReadSafe
42091
42209
  *
@@ -43646,7 +43764,7 @@ interface TextGenerator extends Instance {
43646
43764
  GenerateTextAsync(this: TextGenerator, request: object): object;
43647
43765
  }
43648
43766
  /**
43649
- * The TextService is a service internally responsible for handling the display of text in the game.
43767
+ * Service internally responsible for handling the display of text.
43650
43768
  *
43651
43769
  * - **Tags**: NotCreatable, Service, NotReplicated
43652
43770
  *
@@ -43667,22 +43785,22 @@ interface TextService extends Instance {
43667
43785
  * - **ThreadSafety**: Unsafe
43668
43786
  *
43669
43787
  * [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.
43788
+ * @param this Service internally responsible for handling the display of text.
43671
43789
  * @param string The string for which the text size is to be calculated.
43672
- * @param fontSize The integer representing the font size used.
43790
+ * @param fontSize The integer representing the font size used. Does not accept an `FontSize` value.
43673
43791
  * @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.
43792
+ * @param frameSize The `GuiBase2d.AbsoluteSize` of the text object to be used. Required to compute how the text will wrap.
43675
43793
  * @returns The size of the space required, in pixels, by the string with the specified formatting.
43676
43794
  */
43677
43795
  GetTextSize(this: TextService, string: string, fontSize: number, font: CastsToEnum<Enum.Font>, frameSize: Vector2): Vector2;
43678
43796
  /**
43679
- * Chat translation is not supported in legacy chat. This method is no longer supported and should not be used.
43797
+ * Filters and translates a string.
43680
43798
  *
43681
43799
  * - **ThreadSafety**: Unsafe
43682
43800
  * - **Tags**: Yields
43683
43801
  *
43684
43802
  * [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.
43803
+ * @param this Service internally responsible for handling the display of text.
43686
43804
  * @param stringToFilter
43687
43805
  * @param fromUserId
43688
43806
  * @param targetLocales
@@ -43690,16 +43808,16 @@ interface TextService extends Instance {
43690
43808
  */
43691
43809
  FilterAndTranslateStringAsync(this: TextService, stringToFilter: string, fromUserId: number, targetLocales: Array<unknown>, textContext?: CastsToEnum<Enum.TextFilterContext>): TextFilterTranslatedResult;
43692
43810
  /**
43693
- * Filters a string being received from a user, and returns a `TextFilterResult` which can be used to distribute the correctly filtered text accordingly.
43811
+ * Filters a string being received from a user and returns a `TextFilterResult` which can be used to distribute the correctly filtered text accordingly.
43694
43812
  *
43695
43813
  * - **ThreadSafety**: Unsafe
43696
43814
  * - **Tags**: Yields
43697
43815
  *
43698
43816
  * [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.
43817
+ * @param this Service internally responsible for handling the display of text.
43700
43818
  * @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.
43819
+ * @param fromUserId The `Player.UserId` of the player filtering the text.
43820
+ * @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
43821
  */
43704
43822
  FilterStringAsync(this: TextService, stringToFilter: string, fromUserId: number, textContext?: CastsToEnum<Enum.TextFilterContext>): TextFilterResult;
43705
43823
  /**
@@ -43709,29 +43827,31 @@ interface TextService extends Instance {
43709
43827
  * - **Tags**: Yields
43710
43828
  *
43711
43829
  * [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.
43830
+ * @param this Service internally responsible for handling the display of text.
43713
43831
  * @param assetId Asset ID of the font family to look up.
43714
43832
  * @returns The information about the font family.
43715
43833
  */
43716
43834
  GetFamilyInfoAsync(this: TextService, assetId: ContentId): object;
43717
43835
  /**
43718
- * Calculates the width and height of text given parameters.
43836
+ * Computes the `Vector2` dimensions (in pixels) that will be taken up with text when using a `GetTextBoundsParams` object.
43719
43837
  *
43720
43838
  * - **ThreadSafety**: Unsafe
43721
43839
  * - **Tags**: Yields
43722
43840
  *
43723
43841
  * [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.
43842
+ * @param this Service internally responsible for handling the display of text.
43725
43843
  * @param params A reference to a `GetTextBoundsParams` object.
43726
43844
  * @returns The size of the text as a `Vector2`.
43727
43845
  */
43728
43846
  GetTextBoundsAsync(this: TextService, params: GetTextBoundsParams): Vector2;
43729
43847
  /**
43848
+ * Returns the offset used to up-scale text based on the current `GuiService.PreferredTextSize` setting.
43849
+ *
43730
43850
  * - **ThreadSafety**: Unsafe
43731
43851
  * - **Tags**: Yields
43732
43852
  *
43733
43853
  * [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.
43854
+ * @param this Service internally responsible for handling the display of text.
43735
43855
  * @param fontSize
43736
43856
  * @param font
43737
43857
  */
@@ -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
  *
@@ -4030,6 +4095,21 @@ interface ConversationalAIAcceptanceService extends Instance {
4030
4095
  */
4031
4096
  readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
4032
4097
  }
4098
+ /**
4099
+ * - **Tags**: NotCreatable, Service, NotReplicated
4100
+ *
4101
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CoreGuiConfiguration)
4102
+ */
4103
+ interface CoreGuiConfiguration extends Instance {
4104
+ /**
4105
+ * **DO NOT USE!**
4106
+ *
4107
+ * This field exists to force TypeScript to recognize this as a nominal type
4108
+ * @hidden
4109
+ * @deprecated
4110
+ */
4111
+ readonly _nominal_CoreGuiConfiguration: unique symbol;
4112
+ }
4033
4113
  /**
4034
4114
  * - **Tags**: NotCreatable, Service
4035
4115
  *
@@ -7209,6 +7289,8 @@ interface InstanceExtensionsService extends Instance {
7209
7289
  readonly _nominal_InstanceExtensionsService: unique symbol;
7210
7290
  }
7211
7291
  /**
7292
+ * A service for interacting with file sync from a plugin.
7293
+ *
7212
7294
  * - **Tags**: NotCreatable, Service, NotReplicated
7213
7295
  *
7214
7296
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService)
@@ -7223,24 +7305,40 @@ interface InstanceFileSyncService extends Instance {
7223
7305
  */
7224
7306
  readonly _nominal_InstanceFileSyncService: unique symbol;
7225
7307
  /**
7308
+ * Returns an array of all instances currently involved in file synchronization.
7309
+ *
7226
7310
  * - **ThreadSafety**: Unsafe
7227
7311
  *
7228
7312
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetAllInstances)
7313
+ * @param this A service for interacting with file sync from a plugin.
7314
+ * @returns Returns an array of `Instances`.
7229
7315
  */
7230
7316
  GetAllInstances(this: InstanceFileSyncService): Array<Instance>;
7231
7317
  /**
7318
+ * Returns the synchronization status of a specific instance.
7319
+ *
7232
7320
  * - **ThreadSafety**: Unsafe
7233
7321
  *
7234
7322
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetStatus)
7323
+ * @param this A service for interacting with file sync from a plugin.
7324
+ * @param instance The instance to check.
7325
+ * @returns Returns the `InstanceFileSyncStatus` for the instance.
7235
7326
  */
7236
7327
  GetStatus(this: InstanceFileSyncService, instance: Instance): Enum.InstanceFileSyncStatus;
7237
7328
  /**
7329
+ * Returns the instance corresponding to a given file path.
7330
+ *
7238
7331
  * - **ThreadSafety**: Unsafe
7239
7332
  *
7240
7333
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetSyncedInstance)
7334
+ * @param this A service for interacting with file sync from a plugin.
7335
+ * @param filePath The absolute path to the file.
7336
+ * @returns Returns the Instance being synced to the file path, if one exists. Otherwise, returns nil.
7241
7337
  */
7242
7338
  GetSyncedInstance(this: InstanceFileSyncService, filePath: string): Instance | undefined;
7243
7339
  /**
7340
+ * Fires when the synchronization status of an instance changes.
7341
+ *
7244
7342
  * - **ThreadSafety**: Unsafe
7245
7343
  *
7246
7344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#StatusChanged)
@@ -9484,7 +9582,7 @@ interface Pages<T = unknown> extends Instance {
9484
9582
  readonly _nominal_Pages: unique symbol;
9485
9583
  }
9486
9584
  /**
9487
- * A special version of the `Pages` class returned by `AssetService:SearchAudio()`.
9585
+ * A special version of the `Pages` class returned by `AssetService:SearchAudioAsync()`.
9488
9586
  *
9489
9587
  * - **Tags**: NotCreatable, NotReplicated
9490
9588
  *
@@ -14461,7 +14559,7 @@ interface TextGenerator extends Instance {
14461
14559
  readonly _nominal_TextGenerator: unique symbol;
14462
14560
  }
14463
14561
  /**
14464
- * The TextService is a service internally responsible for handling the display of text in the game.
14562
+ * Service internally responsible for handling the display of text.
14465
14563
  *
14466
14564
  * - **Tags**: NotCreatable, Service, NotReplicated
14467
14565
  *
@@ -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.903",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },