@rbxts/types 1.0.864 → 1.0.866

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.
@@ -63,6 +63,7 @@ interface Services {
63
63
  EditableService: EditableService;
64
64
  EventIngestService: EventIngestService;
65
65
  ExampleService: ExampleService;
66
+ ExampleV2Service: ExampleV2Service;
66
67
  ExperienceAuthService: ExperienceAuthService;
67
68
  ExperienceNotificationService: ExperienceNotificationService;
68
69
  ExperienceService: ExperienceService;
@@ -567,6 +568,7 @@ interface Instances extends Services, CreatableInstances {
567
568
  BevelMesh: BevelMesh;
568
569
  BodyMover: BodyMover;
569
570
  BubbleChatConfiguration: BubbleChatConfiguration;
571
+ CapturesPages: CapturesPages;
570
572
  CatalogPages: CatalogPages;
571
573
  ChannelSelectorSoundEffect: ChannelSelectorSoundEffect;
572
574
  ChannelTabsConfiguration: ChannelTabsConfiguration;
@@ -2808,7 +2810,7 @@ interface CalloutService extends Instance {
2808
2810
  readonly _nominal_CalloutService: unique symbol;
2809
2811
  }
2810
2812
  /**
2811
- * A service which provides control over screenshot capture features.
2813
+ * A service which provides control over screenshot and video capture features.
2812
2814
  *
2813
2815
  * - **Tags**: NotCreatable, Service
2814
2816
  *
@@ -4517,6 +4519,21 @@ interface ExampleService extends Instance {
4517
4519
  */
4518
4520
  readonly _nominal_ExampleService: unique symbol;
4519
4521
  }
4522
+ /**
4523
+ * - **Tags**: NotCreatable, Service, NotReplicated
4524
+ *
4525
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExampleV2Service)
4526
+ */
4527
+ interface ExampleV2Service extends Instance {
4528
+ /**
4529
+ * **DO NOT USE!**
4530
+ *
4531
+ * This field exists to force TypeScript to recognize this as a nominal type
4532
+ * @hidden
4533
+ * @deprecated
4534
+ */
4535
+ readonly _nominal_ExampleV2Service: unique symbol;
4536
+ }
4520
4537
  /**
4521
4538
  * - **Tags**: NotCreatable, Service
4522
4539
  *
@@ -5182,6 +5199,45 @@ interface Decal extends FaceInstance {
5182
5199
  * @deprecated
5183
5200
  */
5184
5201
  readonly _nominal_Decal: unique symbol;
5202
+ /**
5203
+ * - **ThreadSafety**: ReadSafe
5204
+ * - **Tags**: Hidden
5205
+ *
5206
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#MetalnessMap)
5207
+ */
5208
+ MetalnessMap: ContentId;
5209
+ /**
5210
+ * - **ThreadSafety**: ReadSafe
5211
+ *
5212
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#MetalnessMapContent)
5213
+ */
5214
+ set MetalnessMapContent(value: Content);
5215
+ /**
5216
+ * - **ThreadSafety**: ReadSafe
5217
+ * - **Tags**: Hidden
5218
+ *
5219
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#NormalMap)
5220
+ */
5221
+ NormalMap: ContentId;
5222
+ /**
5223
+ * - **ThreadSafety**: ReadSafe
5224
+ *
5225
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#NormalMapContent)
5226
+ */
5227
+ set NormalMapContent(value: Content);
5228
+ /**
5229
+ * - **ThreadSafety**: ReadSafe
5230
+ * - **Tags**: Hidden
5231
+ *
5232
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#RoughnessMap)
5233
+ */
5234
+ RoughnessMap: ContentId;
5235
+ /**
5236
+ * - **ThreadSafety**: ReadSafe
5237
+ *
5238
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#RoughnessMapContent)
5239
+ */
5240
+ set RoughnessMapContent(value: Content);
5185
5241
  }
5186
5242
  /**
5187
5243
  * A Texture object applies a repeating texture to the face of a `BasePart`.
@@ -5501,7 +5557,7 @@ interface GamepadService extends Instance {
5501
5557
  readonly _nominal_GamepadService: unique symbol;
5502
5558
  }
5503
5559
  /**
5504
- * `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).
5560
+ * Service that allows developers to generate 3D objects from text prompts.
5505
5561
  *
5506
5562
  * - **Tags**: NotCreatable, Service
5507
5563
  *
@@ -7869,6 +7925,8 @@ interface MaterialVariant extends Instance {
7869
7925
  */
7870
7926
  ColorMap: ContentId;
7871
7927
  /**
7928
+ * Determines the color of the surface. Only supports asset URIs as textures.
7929
+ *
7872
7930
  * - **ThreadSafety**: ReadSafe
7873
7931
  *
7874
7932
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#ColorMapContent)
@@ -7883,6 +7941,8 @@ interface MaterialVariant extends Instance {
7883
7941
  */
7884
7942
  MetalnessMap: ContentId;
7885
7943
  /**
7944
+ * Determines which parts of the surface are metal and are non-metal. Only supports asset URIs as textures.
7945
+ *
7886
7946
  * - **ThreadSafety**: ReadSafe
7887
7947
  *
7888
7948
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#MetalnessMapContent)
@@ -7897,6 +7957,8 @@ interface MaterialVariant extends Instance {
7897
7957
  */
7898
7958
  NormalMap: ContentId;
7899
7959
  /**
7960
+ * Modifies the lighting of the surface by adding bumps, dents, cracks, and curves without adding more polygons. Only supports asset URIs as textures.
7961
+ *
7900
7962
  * - **ThreadSafety**: ReadSafe
7901
7963
  *
7902
7964
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#NormalMapContent)
@@ -7911,6 +7973,8 @@ interface MaterialVariant extends Instance {
7911
7973
  */
7912
7974
  RoughnessMap: ContentId;
7913
7975
  /**
7976
+ * Determines the apparent roughness across the surface. Only supports asset URIs as textures.
7977
+ *
7914
7978
  * - **ThreadSafety**: ReadSafe
7915
7979
  *
7916
7980
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#RoughnessMapContent)
@@ -9148,6 +9212,21 @@ interface BanHistoryPages extends Pages {
9148
9212
  */
9149
9213
  readonly _nominal_BanHistoryPages: unique symbol;
9150
9214
  }
9215
+ /**
9216
+ * - **Tags**: NotCreatable, NotReplicated
9217
+ *
9218
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesPages)
9219
+ */
9220
+ interface CapturesPages extends Pages {
9221
+ /**
9222
+ * **DO NOT USE!**
9223
+ *
9224
+ * This field exists to force TypeScript to recognize this as a nominal type
9225
+ * @hidden
9226
+ * @deprecated
9227
+ */
9228
+ readonly _nominal_CapturesPages: unique symbol;
9229
+ }
9151
9230
  /**
9152
9231
  * - **Tags**: NotCreatable, NotReplicated
9153
9232
  *
@@ -9235,7 +9314,7 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
9235
9314
  readonly _nominal_DataStoreVersionPages: unique symbol;
9236
9315
  }
9237
9316
  /**
9238
- * A special version of `Pages` that contains information about a player's friends.
9317
+ * A special version of `Pages` that contains information about a player's connections.
9239
9318
  *
9240
9319
  * - **Tags**: NotCreatable, NotReplicated
9241
9320
  *
@@ -13115,14 +13194,6 @@ interface SurfaceAppearance extends Instance {
13115
13194
  * @deprecated
13116
13195
  */
13117
13196
  readonly _nominal_SurfaceAppearance: unique symbol;
13118
- /**
13119
- * Determines how the alpha channel of the `SurfaceAppearance.ColorMap` is used.
13120
- *
13121
- * - **ThreadSafety**: ReadSafe
13122
- *
13123
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#AlphaMode)
13124
- */
13125
- AlphaMode: Enum.AlphaMode;
13126
13197
  /**
13127
13198
  * Determines the color and opacity of the surface.
13128
13199
  *
@@ -13410,6 +13481,8 @@ interface TerrainDetail extends Instance {
13410
13481
  */
13411
13482
  ColorMap: ContentId;
13412
13483
  /**
13484
+ * Determines the color of the surface. Only supports asset URIs as textures.
13485
+ *
13413
13486
  * - **ThreadSafety**: ReadSafe
13414
13487
  *
13415
13488
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#ColorMapContent)
@@ -13424,6 +13497,8 @@ interface TerrainDetail extends Instance {
13424
13497
  */
13425
13498
  MetalnessMap: ContentId;
13426
13499
  /**
13500
+ * Determines which parts of the surface are metal and are non-metal. Only supports asset URIs as textures.
13501
+ *
13427
13502
  * - **ThreadSafety**: ReadSafe
13428
13503
  *
13429
13504
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#MetalnessMapContent)
@@ -13438,6 +13513,8 @@ interface TerrainDetail extends Instance {
13438
13513
  */
13439
13514
  NormalMap: ContentId;
13440
13515
  /**
13516
+ * Modifies the lighting of the surface by adding bumps, dents, cracks, and curves without adding more polygons. Only supports asset URIs as textures.
13517
+ *
13441
13518
  * - **ThreadSafety**: ReadSafe
13442
13519
  *
13443
13520
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#NormalMapContent)
@@ -13452,6 +13529,8 @@ interface TerrainDetail extends Instance {
13452
13529
  */
13453
13530
  RoughnessMap: ContentId;
13454
13531
  /**
13532
+ * Determines the apparent roughness across the surface. Only supports asset URIs as textures.
13533
+ *
13455
13534
  * - **ThreadSafety**: ReadSafe
13456
13535
  *
13457
13536
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#RoughnessMapContent)