@rbxts/types 1.0.885 → 1.0.886

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.
@@ -60,7 +60,6 @@ interface Services {
60
60
  DraggerService: DraggerService;
61
61
  EditableService: EditableService;
62
62
  EventIngestService: EventIngestService;
63
- ExampleService: ExampleService;
64
63
  ExampleV2Service: ExampleV2Service;
65
64
  ExperienceAuthService: ExperienceAuthService;
66
65
  ExperienceNotificationService: ExperienceNotificationService;
@@ -511,6 +510,7 @@ interface CreatableInstances {
511
510
  UnionOperation: UnionOperation;
512
511
  UniversalConstraint: UniversalConstraint;
513
512
  UnreliableRemoteEvent: UnreliableRemoteEvent;
513
+ ValueCurve: ValueCurve;
514
514
  Vector3Curve: Vector3Curve;
515
515
  Vector3Value: Vector3Value;
516
516
  VectorForce: VectorForce;
@@ -8137,6 +8137,12 @@ interface MaterialImportData extends BaseImportData {
8137
8137
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#DiffuseFilePath)
8138
8138
  */
8139
8139
  DiffuseFilePath: string;
8140
+ /**
8141
+ * - **ThreadSafety**: ReadSafe
8142
+ *
8143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#EmissiveFilePath)
8144
+ */
8145
+ EmissiveFilePath: string;
8140
8146
  /**
8141
8147
  * - **ThreadSafety**: ReadSafe
8142
8148
  * - **Tags**: NotReplicated
@@ -9948,6 +9954,20 @@ interface CaptureService extends Instance {
9948
9954
  * @param captureParams
9949
9955
  */
9950
9956
  TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
9957
+ /**
9958
+ * - **ThreadSafety**: Unsafe
9959
+ * - **Tags**: Yields
9960
+ *
9961
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#InternalCheckPlayabilityAsync)
9962
+ */
9963
+ InternalCheckPlayabilityAsync(this: CaptureService, universeId: number): boolean;
9964
+ /**
9965
+ * - **ThreadSafety**: Unsafe
9966
+ * - **Tags**: Yields
9967
+ *
9968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#InternalGetStartPlaceIdAsync)
9969
+ */
9970
+ InternalGetStartPlaceIdAsync(this: CaptureService, universeId: number): number;
9951
9971
  /**
9952
9972
  * - **ThreadSafety**: Unsafe
9953
9973
  * - **Tags**: Yields
@@ -12215,7 +12235,7 @@ interface PlaneConstraint extends Constraint {
12215
12235
  /**
12216
12236
  * **Deprecated:**
12217
12237
  *
12218
- * Constrains Attachment0 and Attachment1 such that both points lie in an plane with origin at Attachment0's position and unit normal vector equal to Attachment0's primary axis.
12238
+ * Constrains Attachment0 and Attachment1 such that both points lie in a plane with origin at Attachment0's position and unit normal vector equal to Attachment0's primary axis.
12219
12239
  *
12220
12240
  * - **Tags**:
12221
12241
  *
@@ -15160,21 +15180,6 @@ interface EventIngestService extends Instance {
15160
15180
  */
15161
15181
  readonly _nominal_EventIngestService: unique symbol;
15162
15182
  }
15163
- /**
15164
- * - **Tags**: NotCreatable, Service, NotReplicated
15165
- *
15166
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExampleService)
15167
- */
15168
- interface ExampleService extends Instance {
15169
- /**
15170
- * **DO NOT USE!**
15171
- *
15172
- * This field exists to force TypeScript to recognize this as a nominal type
15173
- * @hidden
15174
- * @deprecated
15175
- */
15176
- readonly _nominal_ExampleService: unique symbol;
15177
- }
15178
15183
  /**
15179
15184
  * - **Tags**: NotCreatable, Service, NotReplicated
15180
15185
  *
@@ -15630,6 +15635,8 @@ interface Decal extends FaceInstance {
15630
15635
  */
15631
15636
  Texture: ContentId;
15632
15637
  /**
15638
+ * The texture content displayed by the Decal. Supports [asset URIs](../../../projects/assets/index.md#asset-uris) and `EditableImage` objects.
15639
+ *
15633
15640
  * - **ThreadSafety**: ReadSafe
15634
15641
  *
15635
15642
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#TextureContent)
@@ -19564,7 +19571,7 @@ interface GuiBase3d extends GuiBase {
19564
19571
  */
19565
19572
  readonly _nominal_GuiBase3d: unique symbol;
19566
19573
  /**
19567
- * Sets the color of a GUI object.
19574
+ * Sets the color of this `GuiBase3d` object.
19568
19575
  *
19569
19576
  * - **ThreadSafety**: ReadSafe
19570
19577
  *
@@ -19572,7 +19579,7 @@ interface GuiBase3d extends GuiBase {
19572
19579
  */
19573
19580
  Color3: Color3;
19574
19581
  /**
19575
- * Sets the transparency of a GUI object, where 1 is invisible and 0 is completely visible.
19582
+ * Sets the transparency of this `GuiBase3d` object.
19576
19583
  *
19577
19584
  * - **ThreadSafety**: ReadSafe
19578
19585
  *
@@ -19580,7 +19587,7 @@ interface GuiBase3d extends GuiBase {
19580
19587
  */
19581
19588
  Transparency: number;
19582
19589
  /**
19583
- * Determines whether the object and its descendants will be displayed.
19590
+ * Determines whether this `GuiBase3d` object and its descendants will be displayed.
19584
19591
  *
19585
19592
  * - **ThreadSafety**: ReadSafe
19586
19593
  *
@@ -19751,7 +19758,7 @@ interface SelectionBox extends InstanceAdornment {
19751
19758
  SurfaceTransparency: number;
19752
19759
  }
19753
19760
  /**
19754
- * The PVAdornment class is an abstract class of which the inheritors can be adorned to objects of the PVInstance class.
19761
+ * An abstract class of which the inheritors can be adorned to objects of the `PVInstance` class.
19755
19762
  *
19756
19763
  * - **Tags**: NotCreatable
19757
19764
  *
@@ -19767,7 +19774,7 @@ interface PVAdornment extends GuiBase3d {
19767
19774
  */
19768
19775
  readonly _nominal_PVAdornment: unique symbol;
19769
19776
  /**
19770
- * The `PVInstance` the PVAdornment is attached to.
19777
+ * The `PVInstance` which this `PVAdornment` is attached to.
19771
19778
  *
19772
19779
  * - **ThreadSafety**: ReadSafe
19773
19780
  *
@@ -19776,7 +19783,7 @@ interface PVAdornment extends GuiBase3d {
19776
19783
  Adornee: PVInstance | undefined;
19777
19784
  }
19778
19785
  /**
19779
- * HandleAdornment is an abstract class inherited by 3D handle adornments.
19786
+ * An abstract class inherited by 3D handle adornments.
19780
19787
  *
19781
19788
  * - **Tags**: NotCreatable
19782
19789
  *
@@ -19800,7 +19807,7 @@ interface HandleAdornment extends PVAdornment {
19800
19807
  */
19801
19808
  AdornCullingMode: Enum.AdornCullingMode;
19802
19809
  /**
19803
- * Forces this object to render on top of all 3D objects in the workspace.
19810
+ * Forces this adornment to render on top of all 3D objects in the workspace.
19804
19811
  *
19805
19812
  * - **ThreadSafety**: ReadSafe
19806
19813
  *
@@ -19824,7 +19831,7 @@ interface HandleAdornment extends PVAdornment {
19824
19831
  */
19825
19832
  SizeRelativeOffset: Vector3;
19826
19833
  /**
19827
- * Determines the draw order of the `HandleAdornment`.
19834
+ * Determines the draw order of this `HandleAdornment` when `AlwaysOnTop` is `true`.
19828
19835
  *
19829
19836
  * - **ThreadSafety**: ReadSafe
19830
19837
  *
@@ -19832,7 +19839,7 @@ interface HandleAdornment extends PVAdornment {
19832
19839
  */
19833
19840
  ZIndex: number;
19834
19841
  /**
19835
- * Fires when a user presses down on their left mouse button while hovering over the adornment.
19842
+ * Fires when a player presses down on their left mouse button while hovering over the adornment.
19836
19843
  *
19837
19844
  * - **ThreadSafety**: Unsafe
19838
19845
  *
@@ -19840,7 +19847,7 @@ interface HandleAdornment extends PVAdornment {
19840
19847
  */
19841
19848
  readonly MouseButton1Down: RBXScriptSignal<() => void>;
19842
19849
  /**
19843
- * Fires when a user releases their left mouse button while hovering over the adornment.
19850
+ * Fires when a player releases their left mouse button while hovering over the adornment.
19844
19851
  *
19845
19852
  * - **ThreadSafety**: Unsafe
19846
19853
  *
@@ -19848,7 +19855,7 @@ interface HandleAdornment extends PVAdornment {
19848
19855
  */
19849
19856
  readonly MouseButton1Up: RBXScriptSignal<() => void>;
19850
19857
  /**
19851
- * Fires when a user moves their mouse over the adornment.
19858
+ * Fires when a player moves their mouse over the adornment.
19852
19859
  *
19853
19860
  * - **ThreadSafety**: Unsafe
19854
19861
  *
@@ -19856,7 +19863,7 @@ interface HandleAdornment extends PVAdornment {
19856
19863
  */
19857
19864
  readonly MouseEnter: RBXScriptSignal<() => void>;
19858
19865
  /**
19859
- * Fires when a user moves their mouse out of the adornment.
19866
+ * Fires when a player moves their mouse out of the adornment.
19860
19867
  *
19861
19868
  * - **ThreadSafety**: Unsafe
19862
19869
  *
@@ -20081,6 +20088,8 @@ interface SphereHandleAdornment extends HandleAdornment {
20081
20088
  Shading: Enum.AdornShading;
20082
20089
  }
20083
20090
  /**
20091
+ * Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
20092
+ *
20084
20093
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment)
20085
20094
  */
20086
20095
  interface WireframeHandleAdornment extends HandleAdornment {
@@ -20093,58 +20102,72 @@ interface WireframeHandleAdornment extends HandleAdornment {
20093
20102
  */
20094
20103
  readonly _nominal_WireframeHandleAdornment: unique symbol;
20095
20104
  /**
20105
+ * The **XYZ** scale of the wireframe adornment.
20106
+ *
20096
20107
  * - **ThreadSafety**: ReadSafe
20097
20108
  *
20098
20109
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Scale)
20099
20110
  */
20100
20111
  Scale: Vector3;
20101
20112
  /**
20113
+ * Thickness of the wireframe adornment's lines in pixels.
20114
+ *
20102
20115
  * - **ThreadSafety**: ReadSafe
20103
20116
  *
20104
20117
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Thickness)
20105
20118
  */
20106
20119
  Thickness: number;
20107
20120
  /**
20121
+ * Adds a line to the wireframe adornment from a starting point to an ending point relative to the center of the `Adornee`.
20122
+ *
20108
20123
  * - **ThreadSafety**: Unsafe
20109
20124
  *
20110
20125
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#AddLine)
20111
- * @param this
20112
- * @param from
20113
- * @param to
20126
+ * @param this Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
20127
+ * @param from Starting point of the line.
20128
+ * @param to Ending point of the line.
20114
20129
  */
20115
20130
  AddLine(this: WireframeHandleAdornment, from: Vector3, to: Vector3): void;
20116
20131
  /**
20132
+ * Adds one or more lines to the wireframe adornment using an array.
20133
+ *
20117
20134
  * - **ThreadSafety**: Unsafe
20118
20135
  *
20119
20136
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#AddLines)
20120
- * @param this
20121
- * @param points
20137
+ * @param this Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
20138
+ * @param points Array of `Vector3` points in which each pair acts as a starting point and ending point for a line.
20122
20139
  */
20123
20140
  AddLines(this: WireframeHandleAdornment, points: Array<unknown>): void;
20124
20141
  /**
20142
+ * Adds multiple line segments to the wireframe adornment in a sequence from point to point.
20143
+ *
20125
20144
  * - **ThreadSafety**: Unsafe
20126
20145
  *
20127
20146
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#AddPath)
20128
- * @param this
20129
- * @param points
20130
- * @param loop
20147
+ * @param this Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
20148
+ * @param points Array of `Vector3` points to connect in sequence with line segments.
20149
+ * @param loop Whether the path is closed by connecting its ending point to its starting point with an additional line.
20131
20150
  */
20132
20151
  AddPath(this: WireframeHandleAdornment, points: Array<unknown>, loop: boolean): void;
20133
20152
  /**
20153
+ * Adds a text label to the wireframe adornment.
20154
+ *
20134
20155
  * - **ThreadSafety**: Unsafe
20135
20156
  *
20136
20157
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#AddText)
20137
- * @param this
20138
- * @param point
20139
- * @param text
20140
- * @param size
20158
+ * @param this Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
20159
+ * @param point Position of the text in the adornment.
20160
+ * @param text String to display.
20161
+ * @param size Size of the text.
20141
20162
  */
20142
20163
  AddText(this: WireframeHandleAdornment, point: Vector3, text: string, size?: number): void;
20143
20164
  /**
20165
+ * Instantly clears all lines and text in the wireframe adornment.
20166
+ *
20144
20167
  * - **ThreadSafety**: Unsafe
20145
20168
  *
20146
20169
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Clear)
20147
- * @param this
20170
+ * @param this Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
20148
20171
  */
20149
20172
  Clear(this: WireframeHandleAdornment): void;
20150
20173
  }
@@ -22390,8 +22413,8 @@ interface Humanoid extends Instance {
22390
22413
  *
22391
22414
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#ApplyDescription)
22392
22415
  * @param this A special object that gives models the functionality of a character.
22393
- * @param humanoidDescription The `HumanoidDescription` Instance which you want to set the character to match.
22394
- * @param assetTypeVerification
22416
+ * @param humanoidDescription The `HumanoidDescription` instance which you want to set the character to match.
22417
+ * @param assetTypeVerification ⚠️ The default value for this parameter will change from `ClientOnly` to `Always` after 10/20/2025. See [here](https://devforum.roblox.com/t/potential-action-required-update-for-humanoiddescription-apis/3982903) for details.
22395
22418
  */
22396
22419
  ApplyDescription(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
22397
22420
  /**
@@ -22403,7 +22426,7 @@ interface Humanoid extends Instance {
22403
22426
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#ApplyDescriptionReset)
22404
22427
  * @param this A special object that gives models the functionality of a character.
22405
22428
  * @param humanoidDescription The `HumanoidDescription` instance which you want to set the character to match.
22406
- * @param assetTypeVerification
22429
+ * @param assetTypeVerification ⚠️ The default value for this parameter will change from `ClientOnly` to `Always` after 10/20/2025. See [here](https://devforum.roblox.com/t/potential-action-required-update-for-humanoiddescription-apis/3982903) for details.
22407
22430
  */
22408
22431
  ApplyDescriptionReset(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
22409
22432
  /**
@@ -27532,12 +27555,25 @@ interface ModerationService extends Instance {
27532
27555
  * @deprecated
27533
27556
  */
27534
27557
  readonly _nominal_ModerationService: unique symbol;
27558
+ /**
27559
+ * - **ThreadSafety**: Unsafe
27560
+ *
27561
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#BindReviewableContentEventProcessor)
27562
+ */
27563
+ BindReviewableContentEventProcessor(this: ModerationService, priority: number, callback: Callback): RBXScriptConnection;
27535
27564
  /**
27536
27565
  * - **ThreadSafety**: Unsafe
27537
27566
  *
27538
27567
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#CreateReviewableContentKey)
27539
27568
  */
27540
27569
  CreateReviewableContentKey(this: ModerationService, content: Content): string;
27570
+ /**
27571
+ * - **ThreadSafety**: Unsafe
27572
+ * - **Tags**: Yields
27573
+ *
27574
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#CreateReviewableContentAsync)
27575
+ */
27576
+ CreateReviewableContentAsync(this: ModerationService, config: object): string;
27541
27577
  /**
27542
27578
  * - **ThreadSafety**: Unsafe
27543
27579
  * - **Tags**: Yields
@@ -30644,12 +30680,14 @@ interface Camera extends PVInstance {
30644
30680
  boolean
30645
30681
  ]>;
30646
30682
  /**
30683
+ * Adjusts the `CFrame` so that the specified bounding box is fully visible within the camera's viewport.
30684
+ *
30647
30685
  * - **ThreadSafety**: Unsafe
30648
30686
  *
30649
30687
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Camera#ZoomToExtents)
30650
30688
  * @param this A class which defines a view of the 3D world.
30651
- * @param boundingBoxCFrame
30652
- * @param boundingBoxSize
30689
+ * @param boundingBoxCFrame The `CFrame` representing the center and orientation of the bounding box to fit into the viewport.
30690
+ * @param boundingBoxSize The `Vector3` size of the bounding box to fit into the viewport.
30653
30691
  */
30654
30692
  ZoomToExtents(this: Camera, boundingBoxCFrame: CFrame, boundingBoxSize: Vector3): void;
30655
30693
  /**
@@ -34282,7 +34320,7 @@ interface Players extends Instance {
34282
34320
  */
34283
34321
  BanAsync(this: Players, config: BanAsyncConfig): void;
34284
34322
  /**
34285
- * Returns a character Model equipped with everything specified in the passed in HumanoidDescription, and is R6 or R15 as specified by the rigType.
34323
+ * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`.
34286
34324
  *
34287
34325
  * - **ThreadSafety**: Unsafe
34288
34326
  * - **Tags**: Yields
@@ -34291,8 +34329,8 @@ interface Players extends Instance {
34291
34329
  * @param this A service that contains presently connected `Player` objects.
34292
34330
  * @param description Specifies the appearance of the returned character.
34293
34331
  * @param rigType Specifies whether the returned character will be R6 or R15.
34294
- * @param assetTypeVerification Asset type verification determines if this function will load models or not (You should set this to Always unless you want to load non-catalog assets).
34295
- * @returns A Humanoid character Model.
34332
+ * @param assetTypeVerification Asset type verification determines if this function will load models or not. ⚠️ The default value for this parameter will change from `ClientOnly` to `Always` after 10/20/2025. See [here](https://devforum.roblox.com/t/potential-action-required-update-for-humanoiddescription-apis/3982903) for details.
34333
+ * @returns A `Humanoid` character `Model`.
34296
34334
  */
34297
34335
  CreateHumanoidModelFromDescription(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
34298
34336
  /**
@@ -35874,16 +35912,16 @@ interface RunService extends Instance {
35874
35912
  * - **ThreadSafety**: ReadSafe
35875
35913
  * - **Tags**: NotReplicated
35876
35914
  *
35877
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#PredictionState)
35915
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#FrameNumber)
35878
35916
  */
35879
- readonly PredictionState: Enum.PredictionState;
35917
+ readonly FrameNumber: number;
35880
35918
  /**
35881
35919
  * - **ThreadSafety**: ReadSafe
35882
35920
  * - **Tags**: NotReplicated
35883
35921
  *
35884
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#ServerFrame)
35922
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#PredictionState)
35885
35923
  */
35886
- readonly ServerFrame: number;
35924
+ readonly PredictionState: Enum.PredictionState;
35887
35925
  /**
35888
35926
  * Given a string name of a function and a priority, this method binds the function to `RunService.PreRender`.
35889
35927
  *
@@ -37557,9 +37595,12 @@ interface SocialService extends Instance {
37557
37595
  * @param options `Dictionary` that specifies the configuration for the generated link. It includes the following optional key-value pairs: - `FallbackLinkId` (string). Determines how this share link will direct player to once expired. Default to experience join link.
37558
37596
  * - `ExpirationSeconds` (number). Determines time to expiration once the share link is created. Truncates to nearest integer. Defaults to 86,400.
37559
37597
  * - `PreviewTitle` (string) Preview title of the share link.
37560
- * - `PreiviewDescription` (string) Preview description of the share link.
37561
- * - `PreviewAssettId` (number) Image asset ID used for share link preview.
37598
+ * - `PreviewDescription` (string) Preview description of the share link.
37599
+ * - `PreviewAssetId` (number) Image asset ID used for share link preview.
37562
37600
  * - `LaunchData` (string). Used to set a parameter in `Player:GetJoinData()` when a player joined using the generated share link.
37601
+ *
37602
+ *
37603
+ * @returns A tuple containing an `PromptLinkSharingResult` indicating the result of the link sharing prompt.
37563
37604
  */
37564
37605
  PromptLinkSharing(this: SocialService, player: Player, options?: object): unknown;
37565
37606
  /**
@@ -45401,6 +45442,81 @@ interface Vector3Value extends ValueBase {
45401
45442
  */
45402
45443
  readonly Changed: RBXScriptSignal<(value: Vector3) => void>;
45403
45444
  }
45445
+ /**
45446
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve)
45447
+ */
45448
+ interface ValueCurve extends Instance {
45449
+ /**
45450
+ * **DO NOT USE!**
45451
+ *
45452
+ * This field exists to force TypeScript to recognize this as a nominal type
45453
+ * @hidden
45454
+ * @deprecated
45455
+ */
45456
+ readonly _nominal_ValueCurve: unique symbol;
45457
+ /**
45458
+ * - **ThreadSafety**: ReadSafe
45459
+ * - **Tags**: NotReplicated
45460
+ *
45461
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#Length)
45462
+ */
45463
+ readonly Length: number;
45464
+ /**
45465
+ * - **ThreadSafety**: ReadSafe
45466
+ * - **Tags**: NotReplicated
45467
+ *
45468
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#ValueType)
45469
+ */
45470
+ readonly ValueType: string;
45471
+ /**
45472
+ * - **ThreadSafety**: Unsafe
45473
+ *
45474
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetKeyAtIndex)
45475
+ */
45476
+ GetKeyAtIndex(this: ValueCurve, index: number): ValueCurveKey;
45477
+ /**
45478
+ * - **ThreadSafety**: Unsafe
45479
+ *
45480
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetKeyIndicesAtTime)
45481
+ */
45482
+ GetKeyIndicesAtTime(this: ValueCurve, time: number): Array<unknown>;
45483
+ /**
45484
+ * - **ThreadSafety**: Unsafe
45485
+ *
45486
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetKeys)
45487
+ */
45488
+ GetKeys(this: ValueCurve): Array<unknown>;
45489
+ /**
45490
+ * - **ThreadSafety**: Unsafe
45491
+ *
45492
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetValueAtTime)
45493
+ */
45494
+ GetValueAtTime(this: ValueCurve, time: number): unknown | undefined;
45495
+ /**
45496
+ * - **ThreadSafety**: Unsafe
45497
+ *
45498
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#InsertKey)
45499
+ */
45500
+ InsertKey(this: ValueCurve, key: ValueCurveKey): Array<unknown>;
45501
+ /**
45502
+ * - **ThreadSafety**: Unsafe
45503
+ *
45504
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#InsertKeyValue)
45505
+ */
45506
+ InsertKeyValue(this: ValueCurve, time: number, value: unknown, keyInterpolationMode?: CastsToEnum<Enum.KeyInterpolationMode>): Array<unknown>;
45507
+ /**
45508
+ * - **ThreadSafety**: Unsafe
45509
+ *
45510
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#RemoveKeyAtIndex)
45511
+ */
45512
+ RemoveKeyAtIndex(this: ValueCurve, startingIndex: number, count?: number): number;
45513
+ /**
45514
+ * - **ThreadSafety**: Unsafe
45515
+ *
45516
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#SetKeys)
45517
+ */
45518
+ SetKeys(this: ValueCurve, keys: Array<unknown>): number;
45519
+ }
45404
45520
  /**
45405
45521
  * Represents a 3D vector curve, grouping three `FloatCurve` instances.
45406
45522
  *
@@ -63,7 +63,6 @@ interface Services {
63
63
  DraggerService: DraggerService;
64
64
  EditableService: EditableService;
65
65
  EventIngestService: EventIngestService;
66
- ExampleService: ExampleService;
67
66
  ExampleV2Service: ExampleV2Service;
68
67
  ExperienceAuthService: ExperienceAuthService;
69
68
  ExperienceNotificationService: ExperienceNotificationService;
@@ -531,6 +530,7 @@ interface CreatableInstances {
531
530
  UnionOperation: UnionOperation;
532
531
  UniversalConstraint: UniversalConstraint;
533
532
  UnreliableRemoteEvent: UnreliableRemoteEvent;
533
+ ValueCurve: ValueCurve;
534
534
  Vector3Curve: Vector3Curve;
535
535
  Vector3Value: Vector3Value;
536
536
  VectorForce: VectorForce;
@@ -3509,7 +3509,7 @@ interface PlaneConstraint extends Constraint {
3509
3509
  /**
3510
3510
  * **Deprecated:**
3511
3511
  *
3512
- * Constrains Attachment0 and Attachment1 such that both points lie in an plane with origin at Attachment0's position and unit normal vector equal to Attachment0's primary axis.
3512
+ * Constrains Attachment0 and Attachment1 such that both points lie in a plane with origin at Attachment0's position and unit normal vector equal to Attachment0's primary axis.
3513
3513
  *
3514
3514
  * - **Tags**:
3515
3515
  *
@@ -4562,21 +4562,6 @@ interface EventIngestService extends Instance {
4562
4562
  */
4563
4563
  readonly _nominal_EventIngestService: unique symbol;
4564
4564
  }
4565
- /**
4566
- * - **Tags**: NotCreatable, Service, NotReplicated
4567
- *
4568
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExampleService)
4569
- */
4570
- interface ExampleService extends Instance {
4571
- /**
4572
- * **DO NOT USE!**
4573
- *
4574
- * This field exists to force TypeScript to recognize this as a nominal type
4575
- * @hidden
4576
- * @deprecated
4577
- */
4578
- readonly _nominal_ExampleService: unique symbol;
4579
- }
4580
4565
  /**
4581
4566
  * - **Tags**: NotCreatable, Service, NotReplicated
4582
4567
  *
@@ -6301,7 +6286,7 @@ interface SelectionBox extends InstanceAdornment {
6301
6286
  readonly _nominal_SelectionBox: unique symbol;
6302
6287
  }
6303
6288
  /**
6304
- * The PVAdornment class is an abstract class of which the inheritors can be adorned to objects of the PVInstance class.
6289
+ * An abstract class of which the inheritors can be adorned to objects of the `PVInstance` class.
6305
6290
  *
6306
6291
  * - **Tags**: NotCreatable
6307
6292
  *
@@ -6318,7 +6303,7 @@ interface PVAdornment extends GuiBase3d {
6318
6303
  readonly _nominal_PVAdornment: unique symbol;
6319
6304
  }
6320
6305
  /**
6321
- * HandleAdornment is an abstract class inherited by 3D handle adornments.
6306
+ * An abstract class inherited by 3D handle adornments.
6322
6307
  *
6323
6308
  * - **Tags**: NotCreatable
6324
6309
  *
@@ -6425,6 +6410,8 @@ interface SphereHandleAdornment extends HandleAdornment {
6425
6410
  readonly _nominal_SphereHandleAdornment: unique symbol;
6426
6411
  }
6427
6412
  /**
6413
+ * Renders a wireframe adornment consisting of one or more lines onto a `BasePart` (including `Terrain`) or into the `Workspace`.
6414
+ *
6428
6415
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment)
6429
6416
  */
6430
6417
  interface WireframeHandleAdornment extends HandleAdornment {
@@ -14944,6 +14931,19 @@ interface Vector3Value extends ValueBase {
14944
14931
  */
14945
14932
  readonly _nominal_Vector3Value: unique symbol;
14946
14933
  }
14934
+ /**
14935
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve)
14936
+ */
14937
+ interface ValueCurve extends Instance {
14938
+ /**
14939
+ * **DO NOT USE!**
14940
+ *
14941
+ * This field exists to force TypeScript to recognize this as a nominal type
14942
+ * @hidden
14943
+ * @deprecated
14944
+ */
14945
+ readonly _nominal_ValueCurve: unique symbol;
14946
+ }
14947
14947
  /**
14948
14948
  * Represents a 3D vector curve, grouping three `FloatCurve` instances.
14949
14949
  *
@@ -21120,9 +21120,14 @@ declare namespace Enum {
21120
21120
  }
21121
21121
  export const StreamingMesh: StreamingMesh;
21122
21122
  /**
21123
- * @deprecated renamed to StreamingMesh
21123
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
21124
21124
  */
21125
- export const Enabled: StreamingMesh;
21125
+ export interface SLIM extends globalThis.EnumItem {
21126
+ Name: "SLIM";
21127
+ Value: 2;
21128
+ EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21129
+ }
21130
+ export const SLIM: SLIM;
21126
21131
  /**
21127
21132
  * A lower resolution mesh will not be displayed.
21128
21133
  *
@@ -21130,7 +21135,7 @@ declare namespace Enum {
21130
21135
  */
21131
21136
  export interface Disabled extends globalThis.EnumItem {
21132
21137
  Name: "Disabled";
21133
- Value: 2;
21138
+ Value: 3;
21134
21139
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21135
21140
  }
21136
21141
  export const Disabled: Disabled;
@@ -21138,7 +21143,7 @@ declare namespace Enum {
21138
21143
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelLevelOfDetail | undefined;
21139
21144
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelLevelOfDetail | undefined;
21140
21145
  }
21141
- export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.Disabled;
21146
+ export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.SLIM | ModelLevelOfDetail.Disabled;
21142
21147
  /**
21143
21148
  * Controls how `Models` are sent to clients in experiences with instance streaming enabled.
21144
21149
  *
@@ -21249,6 +21254,150 @@ declare namespace Enum {
21249
21254
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelStreamingMode | undefined;
21250
21255
  }
21251
21256
  export type ModelStreamingMode = ModelStreamingMode.Default | ModelStreamingMode.Atomic | ModelStreamingMode.Persistent | ModelStreamingMode.PersistentPerPlayer | ModelStreamingMode.Nonatomic;
21257
+ /**
21258
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory)
21259
+ */
21260
+ export namespace ModerationResultCategory {
21261
+ /**
21262
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory#ViolationDetected)
21263
+ */
21264
+ export interface ViolationDetected extends globalThis.EnumItem {
21265
+ Name: "ViolationDetected";
21266
+ Value: 0;
21267
+ EnumType: typeof globalThis.Enum.ModerationResultCategory;
21268
+ }
21269
+ export const ViolationDetected: ViolationDetected;
21270
+ /**
21271
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory#Borderline)
21272
+ */
21273
+ export interface Borderline extends globalThis.EnumItem {
21274
+ Name: "Borderline";
21275
+ Value: 1;
21276
+ EnumType: typeof globalThis.Enum.ModerationResultCategory;
21277
+ }
21278
+ export const Borderline: Borderline;
21279
+ /**
21280
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultCategory#NoViolationDetected)
21281
+ */
21282
+ export interface NoViolationDetected extends globalThis.EnumItem {
21283
+ Name: "NoViolationDetected";
21284
+ Value: 2;
21285
+ EnumType: typeof globalThis.Enum.ModerationResultCategory;
21286
+ }
21287
+ export const NoViolationDetected: NoViolationDetected;
21288
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModerationResultCategory>;
21289
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModerationResultCategory | undefined;
21290
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModerationResultCategory | undefined;
21291
+ }
21292
+ export type ModerationResultCategory = ModerationResultCategory.ViolationDetected | ModerationResultCategory.Borderline | ModerationResultCategory.NoViolationDetected;
21293
+ /**
21294
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel)
21295
+ */
21296
+ export namespace ModerationResultLabel {
21297
+ /**
21298
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#ChildExploitation)
21299
+ */
21300
+ export interface ChildExploitation extends globalThis.EnumItem {
21301
+ Name: "ChildExploitation";
21302
+ Value: 0;
21303
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21304
+ }
21305
+ export const ChildExploitation: ChildExploitation;
21306
+ /**
21307
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#SuicideSelfInjuryAndHarmfulBehavior)
21308
+ */
21309
+ export interface SuicideSelfInjuryAndHarmfulBehavior extends globalThis.EnumItem {
21310
+ Name: "SuicideSelfInjuryAndHarmfulBehavior";
21311
+ Value: 1;
21312
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21313
+ }
21314
+ export const SuicideSelfInjuryAndHarmfulBehavior: SuicideSelfInjuryAndHarmfulBehavior;
21315
+ /**
21316
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#ThreatsBullyingAndHarassment)
21317
+ */
21318
+ export interface ThreatsBullyingAndHarassment extends globalThis.EnumItem {
21319
+ Name: "ThreatsBullyingAndHarassment";
21320
+ Value: 2;
21321
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21322
+ }
21323
+ export const ThreatsBullyingAndHarassment: ThreatsBullyingAndHarassment;
21324
+ /**
21325
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#TerrorismAndViolentExtremism)
21326
+ */
21327
+ export interface TerrorismAndViolentExtremism extends globalThis.EnumItem {
21328
+ Name: "TerrorismAndViolentExtremism";
21329
+ Value: 3;
21330
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21331
+ }
21332
+ export const TerrorismAndViolentExtremism: TerrorismAndViolentExtremism;
21333
+ /**
21334
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#DiscriminationSlursAndHateSpeech)
21335
+ */
21336
+ export interface DiscriminationSlursAndHateSpeech extends globalThis.EnumItem {
21337
+ Name: "DiscriminationSlursAndHateSpeech";
21338
+ Value: 4;
21339
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21340
+ }
21341
+ export const DiscriminationSlursAndHateSpeech: DiscriminationSlursAndHateSpeech;
21342
+ /**
21343
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#RealWorldSensitiveEvents)
21344
+ */
21345
+ export interface RealWorldSensitiveEvents extends globalThis.EnumItem {
21346
+ Name: "RealWorldSensitiveEvents";
21347
+ Value: 5;
21348
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21349
+ }
21350
+ export const RealWorldSensitiveEvents: RealWorldSensitiveEvents;
21351
+ /**
21352
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#ViolentContentAndGore)
21353
+ */
21354
+ export interface ViolentContentAndGore extends globalThis.EnumItem {
21355
+ Name: "ViolentContentAndGore";
21356
+ Value: 6;
21357
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21358
+ }
21359
+ export const ViolentContentAndGore: ViolentContentAndGore;
21360
+ /**
21361
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#RomanticAndSexualContent)
21362
+ */
21363
+ export interface RomanticAndSexualContent extends globalThis.EnumItem {
21364
+ Name: "RomanticAndSexualContent";
21365
+ Value: 7;
21366
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21367
+ }
21368
+ export const RomanticAndSexualContent: RomanticAndSexualContent;
21369
+ /**
21370
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#IllegalAndRegulatedGoodsAndActivities)
21371
+ */
21372
+ export interface IllegalAndRegulatedGoodsAndActivities extends globalThis.EnumItem {
21373
+ Name: "IllegalAndRegulatedGoodsAndActivities";
21374
+ Value: 8;
21375
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21376
+ }
21377
+ export const IllegalAndRegulatedGoodsAndActivities: IllegalAndRegulatedGoodsAndActivities;
21378
+ /**
21379
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#Profanity)
21380
+ */
21381
+ export interface Profanity extends globalThis.EnumItem {
21382
+ Name: "Profanity";
21383
+ Value: 9;
21384
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21385
+ }
21386
+ export const Profanity: Profanity;
21387
+ /**
21388
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationResultLabel#Other)
21389
+ */
21390
+ export interface Other extends globalThis.EnumItem {
21391
+ Name: "Other";
21392
+ Value: 100;
21393
+ EnumType: typeof globalThis.Enum.ModerationResultLabel;
21394
+ }
21395
+ export const Other: Other;
21396
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModerationResultLabel>;
21397
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModerationResultLabel | undefined;
21398
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModerationResultLabel | undefined;
21399
+ }
21400
+ export type ModerationResultLabel = ModerationResultLabel.ChildExploitation | ModerationResultLabel.SuicideSelfInjuryAndHarmfulBehavior | ModerationResultLabel.ThreatsBullyingAndHarassment | ModerationResultLabel.TerrorismAndViolentExtremism | ModerationResultLabel.DiscriminationSlursAndHateSpeech | ModerationResultLabel.RealWorldSensitiveEvents | ModerationResultLabel.ViolentContentAndGore | ModerationResultLabel.RomanticAndSexualContent | ModerationResultLabel.IllegalAndRegulatedGoodsAndActivities | ModerationResultLabel.Profanity | ModerationResultLabel.Other;
21252
21401
  /**
21253
21402
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModerationStatus)
21254
21403
  */
@@ -23523,10 +23672,14 @@ declare namespace Enum {
23523
23672
  }
23524
23673
  export type PlayerDataLoadFailureBehavior = PlayerDataLoadFailureBehavior.Failure | PlayerDataLoadFailureBehavior.FallbackToDefault | PlayerDataLoadFailureBehavior.Kick;
23525
23674
  /**
23675
+ * An enum that specifies the reason for **Players.PlayerRemoving** signal.
23676
+ *
23526
23677
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason)
23527
23678
  */
23528
23679
  export namespace PlayerExitReason {
23529
23680
  /**
23681
+ * Catch-all for all other disconnect reasons.
23682
+ *
23530
23683
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#Unknown)
23531
23684
  */
23532
23685
  export interface Unknown extends globalThis.EnumItem {
@@ -23536,6 +23689,8 @@ declare namespace Enum {
23536
23689
  }
23537
23690
  export const Unknown: Unknown;
23538
23691
  /**
23692
+ * User was kicked by Roblox systems, such as being blocked while in a Private Server.
23693
+ *
23539
23694
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#PlatformKick)
23540
23695
  */
23541
23696
  export interface PlatformKick extends globalThis.EnumItem {
@@ -23545,6 +23700,8 @@ declare namespace Enum {
23545
23700
  }
23546
23701
  export const PlatformKick: PlatformKick;
23547
23702
  /**
23703
+ * Creator called **Player:Kick()**
23704
+ *
23548
23705
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#CreatorKick)
23549
23706
  */
23550
23707
  export interface CreatorKick extends globalThis.EnumItem {
@@ -25886,6 +26043,42 @@ declare namespace Enum {
25886
26043
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReverbType | undefined;
25887
26044
  }
25888
26045
  export type ReverbType = ReverbType.NoReverb | ReverbType.GenericReverb | ReverbType.PaddedCell | ReverbType.Room | ReverbType.Bathroom | ReverbType.LivingRoom | ReverbType.StoneRoom | ReverbType.Auditorium | ReverbType.ConcertHall | ReverbType.Cave | ReverbType.Arena | ReverbType.Hangar | ReverbType.CarpettedHallway | ReverbType.Hallway | ReverbType.StoneCorridor | ReverbType.Alley | ReverbType.Forest | ReverbType.City | ReverbType.Mountains | ReverbType.Quarry | ReverbType.Plain | ReverbType.ParkingLot | ReverbType.SewerPipe | ReverbType.UnderWater;
26046
+ /**
26047
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState)
26048
+ */
26049
+ export namespace ReviewableContentState {
26050
+ /**
26051
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState#Pending)
26052
+ */
26053
+ export interface Pending extends globalThis.EnumItem {
26054
+ Name: "Pending";
26055
+ Value: 0;
26056
+ EnumType: typeof globalThis.Enum.ReviewableContentState;
26057
+ }
26058
+ export const Pending: Pending;
26059
+ /**
26060
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState#Completed)
26061
+ */
26062
+ export interface Completed extends globalThis.EnumItem {
26063
+ Name: "Completed";
26064
+ Value: 1;
26065
+ EnumType: typeof globalThis.Enum.ReviewableContentState;
26066
+ }
26067
+ export const Completed: Completed;
26068
+ /**
26069
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReviewableContentState#Failed)
26070
+ */
26071
+ export interface Failed extends globalThis.EnumItem {
26072
+ Name: "Failed";
26073
+ Value: 2;
26074
+ EnumType: typeof globalThis.Enum.ReviewableContentState;
26075
+ }
26076
+ export const Failed: Failed;
26077
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReviewableContentState>;
26078
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReviewableContentState | undefined;
26079
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReviewableContentState | undefined;
26080
+ }
26081
+ export type ReviewableContentState = ReviewableContentState.Pending | ReviewableContentState.Completed | ReviewableContentState.Failed;
25889
26082
  /**
25890
26083
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RibbonTool)
25891
26084
  */
@@ -31036,6 +31229,195 @@ declare namespace Enum {
31036
31229
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Technology | undefined;
31037
31230
  }
31038
31231
  export type Technology = Technology.Voxel | Technology.Compatibility | Technology.ShadowMap | Technology.Future | Technology.Legacy | Technology.Unified;
31232
+ /**
31233
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend)
31234
+ */
31235
+ export namespace TelemetryBackend {
31236
+ /**
31237
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#UNSPECIFIED)
31238
+ */
31239
+ export interface UNSPECIFIED extends globalThis.EnumItem {
31240
+ Name: "UNSPECIFIED";
31241
+ Value: 0;
31242
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31243
+ }
31244
+ export const UNSPECIFIED: UNSPECIFIED;
31245
+ /**
31246
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#EventIngest)
31247
+ */
31248
+ export interface EventIngest extends globalThis.EnumItem {
31249
+ Name: "EventIngest";
31250
+ Value: 1;
31251
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31252
+ }
31253
+ export const EventIngest: EventIngest;
31254
+ /**
31255
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Points)
31256
+ */
31257
+ export interface Points extends globalThis.EnumItem {
31258
+ Name: "Points";
31259
+ Value: 2;
31260
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31261
+ }
31262
+ export const Points: Points;
31263
+ /**
31264
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Teletune)
31265
+ */
31266
+ export interface Teletune extends globalThis.EnumItem {
31267
+ Name: "Teletune";
31268
+ Value: 3;
31269
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31270
+ }
31271
+ export const Teletune: Teletune;
31272
+ /**
31273
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#EphemeralCounter)
31274
+ */
31275
+ export interface EphemeralCounter extends globalThis.EnumItem {
31276
+ Name: "EphemeralCounter";
31277
+ Value: 4;
31278
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31279
+ }
31280
+ export const EphemeralCounter: EphemeralCounter;
31281
+ /**
31282
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#EphemeralStat)
31283
+ */
31284
+ export interface EphemeralStat extends globalThis.EnumItem {
31285
+ Name: "EphemeralStat";
31286
+ Value: 5;
31287
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31288
+ }
31289
+ export const EphemeralStat: EphemeralStat;
31290
+ /**
31291
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Counter)
31292
+ */
31293
+ export interface Counter extends globalThis.EnumItem {
31294
+ Name: "Counter";
31295
+ Value: 6;
31296
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31297
+ }
31298
+ export const Counter: Counter;
31299
+ /**
31300
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryBackend#Stat)
31301
+ */
31302
+ export interface Stat extends globalThis.EnumItem {
31303
+ Name: "Stat";
31304
+ Value: 7;
31305
+ EnumType: typeof globalThis.Enum.TelemetryBackend;
31306
+ }
31307
+ export const Stat: Stat;
31308
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TelemetryBackend>;
31309
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TelemetryBackend | undefined;
31310
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TelemetryBackend | undefined;
31311
+ }
31312
+ export type TelemetryBackend = TelemetryBackend.UNSPECIFIED | TelemetryBackend.EventIngest | TelemetryBackend.Points | TelemetryBackend.Teletune | TelemetryBackend.EphemeralCounter | TelemetryBackend.EphemeralStat | TelemetryBackend.Counter | TelemetryBackend.Stat;
31313
+ /**
31314
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField)
31315
+ */
31316
+ export namespace TelemetryStandardizedField {
31317
+ /**
31318
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddDatacenterId)
31319
+ */
31320
+ export interface AddDatacenterId extends globalThis.EnumItem {
31321
+ Name: "AddDatacenterId";
31322
+ Value: 0;
31323
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31324
+ }
31325
+ export const AddDatacenterId: AddDatacenterId;
31326
+ /**
31327
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddPlaceId)
31328
+ */
31329
+ export interface AddPlaceId extends globalThis.EnumItem {
31330
+ Name: "AddPlaceId";
31331
+ Value: 1;
31332
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31333
+ }
31334
+ export const AddPlaceId: AddPlaceId;
31335
+ /**
31336
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddUniverseId)
31337
+ */
31338
+ export interface AddUniverseId extends globalThis.EnumItem {
31339
+ Name: "AddUniverseId";
31340
+ Value: 2;
31341
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31342
+ }
31343
+ export const AddUniverseId: AddUniverseId;
31344
+ /**
31345
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddPlaceInstanceId)
31346
+ */
31347
+ export interface AddPlaceInstanceId extends globalThis.EnumItem {
31348
+ Name: "AddPlaceInstanceId";
31349
+ Value: 3;
31350
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31351
+ }
31352
+ export const AddPlaceInstanceId: AddPlaceInstanceId;
31353
+ /**
31354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddPlaySessionId)
31355
+ */
31356
+ export interface AddPlaySessionId extends globalThis.EnumItem {
31357
+ Name: "AddPlaySessionId";
31358
+ Value: 4;
31359
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31360
+ }
31361
+ export const AddPlaySessionId: AddPlaySessionId;
31362
+ /**
31363
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddCurrentContextName)
31364
+ */
31365
+ export interface AddCurrentContextName extends globalThis.EnumItem {
31366
+ Name: "AddCurrentContextName";
31367
+ Value: 5;
31368
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31369
+ }
31370
+ export const AddCurrentContextName: AddCurrentContextName;
31371
+ /**
31372
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddOsInfo)
31373
+ */
31374
+ export interface AddOsInfo extends globalThis.EnumItem {
31375
+ Name: "AddOsInfo";
31376
+ Value: 6;
31377
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31378
+ }
31379
+ export const AddOsInfo: AddOsInfo;
31380
+ /**
31381
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddArchitectureInfo)
31382
+ */
31383
+ export interface AddArchitectureInfo extends globalThis.EnumItem {
31384
+ Name: "AddArchitectureInfo";
31385
+ Value: 7;
31386
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31387
+ }
31388
+ export const AddArchitectureInfo: AddArchitectureInfo;
31389
+ /**
31390
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddCpuInfo)
31391
+ */
31392
+ export interface AddCpuInfo extends globalThis.EnumItem {
31393
+ Name: "AddCpuInfo";
31394
+ Value: 8;
31395
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31396
+ }
31397
+ export const AddCpuInfo: AddCpuInfo;
31398
+ /**
31399
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddMemoryInfo)
31400
+ */
31401
+ export interface AddMemoryInfo extends globalThis.EnumItem {
31402
+ Name: "AddMemoryInfo";
31403
+ Value: 9;
31404
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31405
+ }
31406
+ export const AddMemoryInfo: AddMemoryInfo;
31407
+ /**
31408
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TelemetryStandardizedField#AddSessionInfo)
31409
+ */
31410
+ export interface AddSessionInfo extends globalThis.EnumItem {
31411
+ Name: "AddSessionInfo";
31412
+ Value: 10;
31413
+ EnumType: typeof globalThis.Enum.TelemetryStandardizedField;
31414
+ }
31415
+ export const AddSessionInfo: AddSessionInfo;
31416
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TelemetryStandardizedField>;
31417
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TelemetryStandardizedField | undefined;
31418
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TelemetryStandardizedField | undefined;
31419
+ }
31420
+ export type TelemetryStandardizedField = TelemetryStandardizedField.AddDatacenterId | TelemetryStandardizedField.AddPlaceId | TelemetryStandardizedField.AddUniverseId | TelemetryStandardizedField.AddPlaceInstanceId | TelemetryStandardizedField.AddPlaySessionId | TelemetryStandardizedField.AddCurrentContextName | TelemetryStandardizedField.AddOsInfo | TelemetryStandardizedField.AddArchitectureInfo | TelemetryStandardizedField.AddCpuInfo | TelemetryStandardizedField.AddMemoryInfo | TelemetryStandardizedField.AddSessionInfo;
31039
31421
  /**
31040
31422
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeleportMethod)
31041
31423
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.885",
3
+ "version": "1.0.886",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },