@rbxts/types 1.0.843 → 1.0.845

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.
@@ -39,6 +39,7 @@ interface Services {
39
39
  CollectionService: CollectionService;
40
40
  CommandService: CommandService;
41
41
  CommerceService: CommerceService;
42
+ ConfigService: ConfigService;
42
43
  ConfigureServerService: ConfigureServerService;
43
44
  ConnectivityService: ConnectivityService;
44
45
  ContentProvider: ContentProvider;
@@ -722,6 +723,7 @@ interface Instances extends Services, CreatableInstances {
722
723
  }
723
724
  interface Objects extends Instances {
724
725
  Capture: Capture;
726
+ ConfigSnapshot: ConfigSnapshot;
725
727
  EditableImage: EditableImage;
726
728
  EditableMesh: EditableMesh;
727
729
  Object: RBXObject;
@@ -775,6 +777,21 @@ interface ScreenshotCapture extends Capture {
775
777
  */
776
778
  readonly _nominal_ScreenshotCapture: unique symbol;
777
779
  }
780
+ /**
781
+ * - **Tags**: NotCreatable, NotReplicated
782
+ *
783
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigSnapshot)
784
+ */
785
+ interface ConfigSnapshot extends RBXObject {
786
+ /**
787
+ * **DO NOT USE!**
788
+ *
789
+ * This field exists to force TypeScript to recognize this as a nominal type
790
+ * @hidden
791
+ * @deprecated
792
+ */
793
+ readonly _nominal_ConfigSnapshot: unique symbol;
794
+ }
778
795
  /**
779
796
  * Instance which allows for the runtime creation and manipulation of images.
780
797
  *
@@ -1463,7 +1480,7 @@ interface AudioAnalyzer extends Instance {
1463
1480
  readonly _nominal_AudioAnalyzer: unique symbol;
1464
1481
  }
1465
1482
  /**
1466
- * - **Tags**: NotBrowsable
1483
+ * Combines multiple audio streams into a single, multichannel audio stream.
1467
1484
  *
1468
1485
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer)
1469
1486
  */
@@ -1478,7 +1495,7 @@ interface AudioChannelMixer extends Instance {
1478
1495
  readonly _nominal_AudioChannelMixer: unique symbol;
1479
1496
  }
1480
1497
  /**
1481
- * - **Tags**: NotBrowsable
1498
+ * Splits an audio stream into component channels so that each can be processed independently.
1482
1499
  *
1483
1500
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter)
1484
1501
  */
@@ -2596,23 +2613,6 @@ interface CalloutService extends Instance {
2596
2613
  */
2597
2614
  readonly _nominal_CalloutService: unique symbol;
2598
2615
  }
2599
- /**
2600
- * A class which defines a view of the 3D world.
2601
- *
2602
- * - **Tags**: NotReplicated
2603
- *
2604
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Camera)
2605
- */
2606
- interface Camera extends Instance {
2607
- /**
2608
- * **DO NOT USE!**
2609
- *
2610
- * This field exists to force TypeScript to recognize this as a nominal type
2611
- * @hidden
2612
- * @deprecated
2613
- */
2614
- readonly _nominal_Camera: unique symbol;
2615
- }
2616
2616
  /**
2617
2617
  * A service which provides control over screenshot capture features.
2618
2618
  *
@@ -2885,7 +2885,7 @@ interface ShirtGraphic extends CharacterAppearance {
2885
2885
  readonly _nominal_ShirtGraphic: unique symbol;
2886
2886
  }
2887
2887
  /**
2888
- * Houses the Lua code responsible for running the legacy chat system.
2888
+ * Houses the Luau code responsible for running the legacy chat system.
2889
2889
  *
2890
2890
  * - **Tags**: NotCreatable, Service, NotReplicated
2891
2891
  *
@@ -3068,6 +3068,21 @@ interface CommerceService extends Instance {
3068
3068
  */
3069
3069
  readonly _nominal_CommerceService: unique symbol;
3070
3070
  }
3071
+ /**
3072
+ * - **Tags**: NotCreatable, Service, NotReplicated
3073
+ *
3074
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService)
3075
+ */
3076
+ interface ConfigService extends Instance {
3077
+ /**
3078
+ * **DO NOT USE!**
3079
+ *
3080
+ * This field exists to force TypeScript to recognize this as a nominal type
3081
+ * @hidden
3082
+ * @deprecated
3083
+ */
3084
+ readonly _nominal_ConfigService: unique symbol;
3085
+ }
3071
3086
  /**
3072
3087
  * The Configuration object is a container object that is designed to hold value objects to make values used in `Tools` or any model using `Scripts` more accessible.
3073
3088
  *
@@ -5290,6 +5305,8 @@ interface GamepadService extends Instance {
5290
5305
  readonly _nominal_GamepadService: unique symbol;
5291
5306
  }
5292
5307
  /**
5308
+ * `GenerationService` is a service that allows developers to generate 3D objects from text prompts utilizing Roblox's [Cube 3D foundation model](https://corp.roblox.com/newsroom/2025/03/introducing-roblox-cube).
5309
+ *
5293
5310
  * - **Tags**: NotCreatable, Service
5294
5311
  *
5295
5312
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService)
@@ -7321,7 +7338,7 @@ interface LuaSettings extends Instance {
7321
7338
  readonly _nominal_LuaSettings: unique symbol;
7322
7339
  }
7323
7340
  /**
7324
- * The base class for all objects which contain Lua code.
7341
+ * The base class for all objects which contain Luau code.
7325
7342
  *
7326
7343
  * - **Tags**: NotCreatable, NotBrowsable
7327
7344
  *
@@ -7428,7 +7445,7 @@ interface BaseScript extends LuaSourceContainer {
7428
7445
  set RunContext(value: Enum.RunContext);
7429
7446
  }
7430
7447
  /**
7431
- * An object that contains and runs Lua code on the server.
7448
+ * An object that contains and runs Luau code on the server.
7432
7449
  *
7433
7450
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Script)
7434
7451
  */
@@ -7443,7 +7460,7 @@ interface Script extends BaseScript {
7443
7460
  readonly _nominal_Script: unique symbol;
7444
7461
  }
7445
7462
  /**
7446
- * An object that contains and runs Lua code on the client (player's device) instead of the server.
7463
+ * An object that contains and runs Luau code on the client (player's device) instead of the server.
7447
7464
  *
7448
7465
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LocalScript)
7449
7466
  */
@@ -8515,6 +8532,23 @@ interface VehicleSeat extends BasePart {
8515
8532
  */
8516
8533
  readonly _nominal_VehicleSeat: unique symbol;
8517
8534
  }
8535
+ /**
8536
+ * A class which defines a view of the 3D world.
8537
+ *
8538
+ * - **Tags**: NotReplicated
8539
+ *
8540
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Camera)
8541
+ */
8542
+ interface Camera extends Instance {
8543
+ /**
8544
+ * **DO NOT USE!**
8545
+ *
8546
+ * This field exists to force TypeScript to recognize this as a nominal type
8547
+ * @hidden
8548
+ * @deprecated
8549
+ */
8550
+ readonly _nominal_Camera: unique symbol;
8551
+ }
8518
8552
  /**
8519
8553
  * Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
8520
8554
  *
@@ -14268,6 +14302,8 @@ interface VideoPlayer extends Instance {
14268
14302
  readonly _nominal_VideoPlayer: unique symbol;
14269
14303
  }
14270
14304
  /**
14305
+ * An internal service that offers no functionality to developers.
14306
+ *
14271
14307
  * - **Tags**: NotCreatable, Service
14272
14308
  *
14273
14309
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoService)
@@ -14369,6 +14405,12 @@ interface VoiceChatService extends Instance {
14369
14405
  * @deprecated
14370
14406
  */
14371
14407
  readonly _nominal_VoiceChatService: unique symbol;
14408
+ /**
14409
+ * - **ThreadSafety**: ReadSafe
14410
+ *
14411
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoiceChatService#DefaultDistanceAttenuation)
14412
+ */
14413
+ DefaultDistanceAttenuation: Enum.VoiceChatDistanceAttenuationType;
14372
14414
  /**
14373
14415
  * Controls whether each voice-eligible player can be heard as though they were speaking through their character.
14374
14416
  *