@rbxts/types 1.0.856 → 1.0.858

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.
@@ -112,6 +112,8 @@ interface Services {
112
112
  MessagingService: MessagingService;
113
113
  MetaBreakpointManager: MetaBreakpointManager;
114
114
  MLModelDeliveryService: MLModelDeliveryService;
115
+ MLService: MLService;
116
+ Moderation: Moderation;
115
117
  OmniRecommendationsService: OmniRecommendationsService;
116
118
  OpenCloudService: OpenCloudService;
117
119
  PackageUIService: PackageUIService;
@@ -259,6 +261,7 @@ interface CreatableInstances {
259
261
  AudioRecorder: AudioRecorder;
260
262
  AudioReverb: AudioReverb;
261
263
  AudioSearchParams: AudioSearchParams;
264
+ AudioSpeechToText: AudioSpeechToText;
262
265
  AudioTextToSpeech: AudioTextToSpeech;
263
266
  AuroraScript: AuroraScript;
264
267
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -691,6 +694,7 @@ interface Objects extends Instances {
691
694
  ConfigSnapshot: ConfigSnapshot;
692
695
  EditableImage: EditableImage;
693
696
  EditableMesh: EditableMesh;
697
+ MLSession: MLSession;
694
698
  Object: RBXObject;
695
699
  ScreenshotCapture: ScreenshotCapture;
696
700
  TerrainIterateOperation: TerrainIterateOperation;
@@ -2051,11 +2055,14 @@ interface Instance extends RBXObject {
2051
2055
  */
2052
2056
  GetFullName(this: Instance): string;
2053
2057
  /**
2058
+ * Returns the styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
2059
+ *
2054
2060
  * - **ThreadSafety**: Unsafe
2055
2061
  *
2056
2062
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetStyled)
2057
2063
  * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
2058
- * @param name
2064
+ * @param name Name of the property to query.
2065
+ * @returns The styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
2059
2066
  */
2060
2067
  GetStyled(this: Instance, name: string): unknown;
2061
2068
  /**
@@ -2063,7 +2070,8 @@ interface Instance extends RBXObject {
2063
2070
  *
2064
2071
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetStyledPropertyChangedSignal)
2065
2072
  * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
2066
- * @param property
2073
+ * @param property Name of the style property for which to listen for changes.
2074
+ * @returns Event that fires when the given style property changes.
2067
2075
  */
2068
2076
  GetStyledPropertyChangedSignal(this: Instance, property: string): RBXScriptSignal;
2069
2077
  /**
@@ -2108,13 +2116,13 @@ interface Instance extends RBXObject {
2108
2116
  */
2109
2117
  IsDescendantOf(this: Instance, ancestor: Instance): boolean;
2110
2118
  /**
2111
- * Returns `true` if the value stored in the specified property is non-default.
2119
+ * Returns `true` if the value stored in the specified property is equal to the code-instantiated default.
2112
2120
  *
2113
2121
  * - **ThreadSafety**: Unsafe
2114
2122
  *
2115
2123
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsPropertyModified)
2116
2124
  * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
2117
- * @param property
2125
+ * @param property Name of the property to query.
2118
2126
  * @returns Boolean indicating whether the property is modified.
2119
2127
  */
2120
2128
  IsPropertyModified(this: Instance, property: string): boolean;
@@ -2129,11 +2137,13 @@ interface Instance extends RBXObject {
2129
2137
  */
2130
2138
  RemoveTag(this: Instance, tag: string): void;
2131
2139
  /**
2140
+ * Resets a property to its default value.
2141
+ *
2132
2142
  * - **ThreadSafety**: Unsafe
2133
2143
  *
2134
2144
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#ResetPropertyToDefault)
2135
2145
  * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
2136
- * @param property
2146
+ * @param property Name of the property to reset.
2137
2147
  */
2138
2148
  ResetPropertyToDefault(this: Instance, property: string): void;
2139
2149
  /**
@@ -2218,6 +2228,8 @@ interface Instance extends RBXObject {
2218
2228
  */
2219
2229
  readonly Destroying: RBXScriptSignal<() => void>;
2220
2230
  /**
2231
+ * Fires whenever any style property is changed on the instance, including when a property is set to `nil`.
2232
+ *
2221
2233
  * - **ThreadSafety**: Unsafe
2222
2234
  *
2223
2235
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#StyledPropertiesChanged)
@@ -4906,6 +4918,8 @@ interface AudioEmitter extends Instance {
4906
4918
  */
4907
4919
  GetAngleAttenuation(this: AudioEmitter): object;
4908
4920
  /**
4921
+ * Calculates how audible this emitter is for a particular `AudioListener`.
4922
+ *
4909
4923
  * - **ThreadSafety**: Unsafe
4910
4924
  *
4911
4925
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetAudibilityFor)
@@ -4941,6 +4955,8 @@ interface AudioEmitter extends Instance {
4941
4955
  */
4942
4956
  GetInputPins(this: AudioEmitter): Array<unknown>;
4943
4957
  /**
4958
+ * Lists all `AudioListeners` that are capable of hearing this emitter.
4959
+ *
4944
4960
  * - **ThreadSafety**: Unsafe
4945
4961
  *
4946
4962
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetInteractingListeners)
@@ -5440,6 +5456,8 @@ interface AudioListener extends Instance {
5440
5456
  */
5441
5457
  GetAngleAttenuation(this: AudioListener): object;
5442
5458
  /**
5459
+ * Calculates how audible an `AudioEmitter` is for this listener
5460
+ *
5443
5461
  * - **ThreadSafety**: Unsafe
5444
5462
  *
5445
5463
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetAudibilityFor)
@@ -5475,6 +5493,8 @@ interface AudioListener extends Instance {
5475
5493
  */
5476
5494
  GetInputPins(this: AudioListener): Array<unknown>;
5477
5495
  /**
5496
+ * Lists all `AudioEmitters` that this listener is capable of hearing.
5497
+ *
5478
5498
  * - **ThreadSafety**: Unsafe
5479
5499
  *
5480
5500
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetInteractingEmitters)
@@ -6128,6 +6148,52 @@ interface AudioSearchParams extends Instance {
6128
6148
  */
6129
6149
  Title: string;
6130
6150
  }
6151
+ /**
6152
+ * - **Tags**: NotBrowsable
6153
+ *
6154
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
6155
+ */
6156
+ interface AudioSpeechToText extends Instance {
6157
+ /**
6158
+ * **DO NOT USE!**
6159
+ *
6160
+ * This field exists to force TypeScript to recognize this as a nominal type
6161
+ * @hidden
6162
+ * @deprecated
6163
+ */
6164
+ readonly _nominal_AudioSpeechToText: unique symbol;
6165
+ /**
6166
+ * - **ThreadSafety**: ReadSafe
6167
+ *
6168
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Enabled)
6169
+ */
6170
+ Enabled: boolean;
6171
+ /**
6172
+ * - **ThreadSafety**: ReadSafe
6173
+ *
6174
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Text)
6175
+ */
6176
+ Text: string;
6177
+ /**
6178
+ * - **ThreadSafety**: ReadSafe
6179
+ * - **Tags**: NotReplicated
6180
+ *
6181
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#VoiceDetected)
6182
+ */
6183
+ readonly VoiceDetected: boolean;
6184
+ /**
6185
+ * - **ThreadSafety**: Unsafe
6186
+ *
6187
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
6188
+ */
6189
+ GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
6190
+ /**
6191
+ * - **ThreadSafety**: Unsafe
6192
+ *
6193
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#WiringChanged)
6194
+ */
6195
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
6196
+ }
6131
6197
  /**
6132
6198
  * Plays text as speech audio.
6133
6199
  *
@@ -6338,6 +6404,12 @@ interface AuroraScriptObject extends Instance {
6338
6404
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#FrameId)
6339
6405
  */
6340
6406
  FrameId: number;
6407
+ /**
6408
+ * - **ThreadSafety**: ReadSafe
6409
+ *
6410
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#LODLevel)
6411
+ */
6412
+ LODLevel: number;
6341
6413
  }
6342
6414
  /**
6343
6415
  * - **Tags**: NotCreatable, Service
@@ -6444,6 +6516,12 @@ interface AuroraService extends Instance {
6444
6516
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetPropertyIsInput)
6445
6517
  */
6446
6518
  SetPropertyIsInput(this: AuroraService, target: Instance, propertyName: string, isInput: boolean): void;
6519
+ /**
6520
+ * - **ThreadSafety**: Unsafe
6521
+ *
6522
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#ShowDebugVisualizer)
6523
+ */
6524
+ ShowDebugVisualizer(this: AuroraService, state: boolean): void;
6447
6525
  /**
6448
6526
  * - **ThreadSafety**: Unsafe
6449
6527
  *
@@ -9119,7 +9197,7 @@ interface CalloutService extends Instance {
9119
9197
  readonly _nominal_CalloutService: unique symbol;
9120
9198
  }
9121
9199
  /**
9122
- * A service which provides control over screenshot and video capture features.
9200
+ * A service which provides control over screenshot capture features.
9123
9201
  *
9124
9202
  * - **Tags**: NotCreatable, Service
9125
9203
  *
@@ -9140,7 +9218,7 @@ interface CaptureService extends Instance {
9140
9218
  * - **ThreadSafety**: Unsafe
9141
9219
  *
9142
9220
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CaptureScreenshot)
9143
- * @param this A service which provides control over screenshot and video capture features.
9221
+ * @param this A service which provides control over screenshot capture features.
9144
9222
  * @param onCaptureReady A callback function that is called with the `contentId` of the new capture once it is ready.
9145
9223
  */
9146
9224
  CaptureScreenshot(this: CaptureService, onCaptureReady: (captureContentId: string) => void): void;
@@ -9150,18 +9228,18 @@ interface CaptureService extends Instance {
9150
9228
  * - **ThreadSafety**: Unsafe
9151
9229
  *
9152
9230
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptSaveCapturesToGallery)
9153
- * @param this A service which provides control over screenshot and video capture features.
9231
+ * @param this A service which provides control over screenshot capture features.
9154
9232
  * @param captures
9155
9233
  * @param resultCallback A callback function that will be invoked with a dictionary mapping each `contentId` to a boolean indicating if the user accepted saving that capture.
9156
9234
  */
9157
9235
  PromptSaveCapturesToGallery<T extends string>(this: CaptureService, contentIds: Array<T>, resultCallback: (results: Record<T, boolean>) => void): void;
9158
9236
  /**
9159
- * Prompts the user to share a specified capture.
9237
+ * Prompts the user to share a specified screenshot capture.
9160
9238
  *
9161
9239
  * - **ThreadSafety**: Unsafe
9162
9240
  *
9163
9241
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptShareCapture)
9164
- * @param this A service which provides control over screenshot and video capture features.
9242
+ * @param this A service which provides control over screenshot capture features.
9165
9243
  * @param captureContent
9166
9244
  * @param launchData An optional string to include as launch data in the invite link.
9167
9245
  * @param onAcceptedCallback An optional callback function invoked if the user accepts sharing.
@@ -9169,35 +9247,31 @@ interface CaptureService extends Instance {
9169
9247
  */
9170
9248
  PromptShareCapture(this: CaptureService, contentId: string, launchData: string, onAcceptedCallback: () => void, onDeniedCallback: () => void): void;
9171
9249
  /**
9172
- * Ends a video capture initiated by `StartVideoCaptureAsync()`.
9173
- *
9174
9250
  * - **ThreadSafety**: Unsafe
9175
9251
  *
9176
9252
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StopVideoCapture)
9177
- * @param this A service which provides control over screenshot and video capture features.
9253
+ * @param this A service which provides control over screenshot capture features.
9178
9254
  */
9179
9255
  StopVideoCapture(this: CaptureService): void;
9180
9256
  /**
9181
9257
  * - **ThreadSafety**: Unsafe
9182
9258
  *
9183
9259
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#TakeCapture)
9184
- * @param this A service which provides control over screenshot and video capture features.
9260
+ * @param this A service which provides control over screenshot capture features.
9185
9261
  * @param onCaptureReady
9186
9262
  * @param captureParams
9187
9263
  */
9188
9264
  TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
9189
9265
  /**
9190
- * Initiates a video capture recording.
9191
- *
9192
9266
  * - **ThreadSafety**: Unsafe
9193
9267
  * - **Tags**: Yields
9194
9268
  *
9195
9269
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartVideoCaptureAsync)
9196
- * @param this A service which provides control over screenshot and video capture features.
9197
- * @param onCaptureReady A callback function that is called with the `VideoCapture` object and the result of type `VideoCaptureResult` of the video capture once it is ready.
9270
+ * @param this A service which provides control over screenshot capture features.
9271
+ * @param onCaptureReady
9198
9272
  * @param captureParams
9199
9273
  */
9200
- StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureResult;
9274
+ StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureStartedResult;
9201
9275
  /**
9202
9276
  * Fires immediately before a capture begins.
9203
9277
  *
@@ -17507,6 +17581,12 @@ interface ScrollingFrame extends GuiObject {
17507
17581
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#BottomImage)
17508
17582
  */
17509
17583
  BottomImage: ContentId;
17584
+ /**
17585
+ * - **ThreadSafety**: ReadSafe
17586
+ *
17587
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#BottomImageContent)
17588
+ */
17589
+ BottomImageContent: Content;
17510
17590
  /**
17511
17591
  * Reflects the **current** positional offset of the canvas within the frame, in pixels, and sets the position of scroll bars accordingly.
17512
17592
  *
@@ -17547,6 +17627,12 @@ interface ScrollingFrame extends GuiObject {
17547
17627
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#MidImage)
17548
17628
  */
17549
17629
  MidImage: ContentId;
17630
+ /**
17631
+ * - **ThreadSafety**: ReadSafe
17632
+ *
17633
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#MidImageContent)
17634
+ */
17635
+ MidImageContent: Content;
17550
17636
  /**
17551
17637
  * Determines how the rendered scroll bar images are colorized.
17552
17638
  *
@@ -17595,6 +17681,12 @@ interface ScrollingFrame extends GuiObject {
17595
17681
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#TopImage)
17596
17682
  */
17597
17683
  TopImage: ContentId;
17684
+ /**
17685
+ * - **ThreadSafety**: ReadSafe
17686
+ *
17687
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#TopImageContent)
17688
+ */
17689
+ TopImageContent: Content;
17598
17690
  /**
17599
17691
  * Indicates whether `CanvasSize` is inset by `ScrollBarThickness` on the vertical axis.
17600
17692
  *
@@ -23219,6 +23311,12 @@ interface InputBinding extends Instance {
23219
23311
  * @deprecated
23220
23312
  */
23221
23313
  readonly _nominal_InputBinding: unique symbol;
23314
+ /**
23315
+ * - **ThreadSafety**: ReadSafe
23316
+ *
23317
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Backward)
23318
+ */
23319
+ Backward: Enum.KeyCode;
23222
23320
  /**
23223
23321
  * Specifies an alternate `KeyCode` for dispatching directionally "down" inputs to the parent `InputAction`.
23224
23322
  *
@@ -23227,6 +23325,12 @@ interface InputBinding extends Instance {
23227
23325
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Down)
23228
23326
  */
23229
23327
  Down: Enum.KeyCode;
23328
+ /**
23329
+ * - **ThreadSafety**: ReadSafe
23330
+ *
23331
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Forward)
23332
+ */
23333
+ Forward: Enum.KeyCode;
23230
23334
  /**
23231
23335
  * Specifies the `KeyCode` which triggers the parent `InputAction`.
23232
23336
  *
@@ -25482,6 +25586,30 @@ interface MLModelDeliveryService extends Instance {
25482
25586
  */
25483
25587
  readonly _nominal_MLModelDeliveryService: unique symbol;
25484
25588
  }
25589
+ /**
25590
+ * - **Tags**: NotCreatable, Service, NotReplicated
25591
+ *
25592
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLService)
25593
+ */
25594
+ interface MLService extends Instance {
25595
+ /**
25596
+ * **DO NOT USE!**
25597
+ *
25598
+ * This field exists to force TypeScript to recognize this as a nominal type
25599
+ * @hidden
25600
+ * @deprecated
25601
+ */
25602
+ readonly _nominal_MLService: unique symbol;
25603
+ /**
25604
+ * - **ThreadSafety**: Unsafe
25605
+ * - **Tags**: Yields
25606
+ *
25607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLService#CreateSessionAsync)
25608
+ * @param this
25609
+ * @param assetId
25610
+ */
25611
+ CreateSessionAsync(this: MLService, assetId: string): MLSession;
25612
+ }
25485
25613
  /**
25486
25614
  * Represents a list of strings markers in chronological order.
25487
25615
  *
@@ -26148,12 +26276,14 @@ interface MemoryStoreQueue extends Instance {
26148
26276
  */
26149
26277
  AddAsync(this: MemoryStoreQueue, value: unknown, expiration: number, priority?: number): void;
26150
26278
  /**
26279
+ * Gets the size of the queue.
26280
+ *
26151
26281
  * - **ThreadSafety**: Unsafe
26152
26282
  * - **Tags**: Yields
26153
26283
  *
26154
26284
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreQueue#GetSizeAsync)
26155
26285
  * @param this Provides access to a queue within MemoryStore.
26156
- * @param excludeInvisible
26286
+ * @param excludeInvisible Determines whether to exclude invisible items from the size count.
26157
26287
  */
26158
26288
  GetSizeAsync(this: MemoryStoreQueue, excludeInvisible?: boolean): number;
26159
26289
  /**
@@ -26294,6 +26424,8 @@ interface MemoryStoreSortedMap extends Instance {
26294
26424
  sortKey?: string | number;
26295
26425
  }>;
26296
26426
  /**
26427
+ * Gets the size of the sorted map.
26428
+ *
26297
26429
  * - **ThreadSafety**: Unsafe
26298
26430
  * - **Tags**: Yields
26299
26431
  *
@@ -26461,6 +26593,41 @@ interface MetaBreakpointManager extends Instance {
26461
26593
  */
26462
26594
  readonly _nominal_MetaBreakpointManager: unique symbol;
26463
26595
  }
26596
+ /**
26597
+ * - **Tags**: NotCreatable, Service, NotReplicated
26598
+ *
26599
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation)
26600
+ */
26601
+ interface Moderation extends Instance {
26602
+ /**
26603
+ * **DO NOT USE!**
26604
+ *
26605
+ * This field exists to force TypeScript to recognize this as a nominal type
26606
+ * @hidden
26607
+ * @deprecated
26608
+ */
26609
+ readonly _nominal_Moderation: unique symbol;
26610
+ /**
26611
+ * - **ThreadSafety**: Unsafe
26612
+ * - **Tags**: Yields
26613
+ *
26614
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalCreateReviewableContentAsync)
26615
+ */
26616
+ InternalCreateReviewableContentAsync(this: Moderation, config: object): string;
26617
+ /**
26618
+ * - **ThreadSafety**: Unsafe
26619
+ * - **Tags**: Yields
26620
+ *
26621
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalRequestReviewableContentReviewAsync)
26622
+ */
26623
+ InternalRequestReviewableContentReviewAsync(this: Moderation, config: object): void;
26624
+ /**
26625
+ * - **ThreadSafety**: Unsafe
26626
+ *
26627
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalProcessReviewableContentEvent)
26628
+ */
26629
+ InternalProcessReviewableContentEvent: ((event: object) => boolean) | undefined;
26630
+ }
26464
26631
  /**
26465
26632
  * Legacy object that contains members useful for pointer input.
26466
26633
  *
@@ -28421,6 +28588,9 @@ interface Terrain extends BasePart {
28421
28588
  * - **Tags**: CustomLuaState
28422
28589
  *
28423
28590
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ClearVoxelsAsync_beta)
28591
+ * @param this Terrain lets you to create dynamically morphable environments.
28592
+ * @param region
28593
+ * @param channelIds
28424
28594
  */
28425
28595
  ClearVoxelsAsync_beta(this: Terrain, region: Region3, channelIds: Array<unknown>): void;
28426
28596
  /**
@@ -28552,6 +28722,10 @@ interface Terrain extends BasePart {
28552
28722
  * - **Tags**: CustomLuaState
28553
28723
  *
28554
28724
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#IterateVoxelsAsync_beta)
28725
+ * @param this Terrain lets you to create dynamically morphable environments.
28726
+ * @param region
28727
+ * @param resolution
28728
+ * @param channelIds
28555
28729
  */
28556
28730
  IterateVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainIterateOperation;
28557
28731
  /**
@@ -28559,6 +28733,10 @@ interface Terrain extends BasePart {
28559
28733
  * - **Tags**: CustomLuaState
28560
28734
  *
28561
28735
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ModifyVoxelsAsync_beta)
28736
+ * @param this Terrain lets you to create dynamically morphable environments.
28737
+ * @param region
28738
+ * @param resolution
28739
+ * @param channelIds
28562
28740
  */
28563
28741
  ModifyVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainModifyOperation;
28564
28742
  /**
@@ -28613,6 +28791,10 @@ interface Terrain extends BasePart {
28613
28791
  * - **Tags**: CustomLuaState
28614
28792
  *
28615
28793
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ReadVoxelsAsync_beta)
28794
+ * @param this Terrain lets you to create dynamically morphable environments.
28795
+ * @param region
28796
+ * @param resolution
28797
+ * @param channelIds
28616
28798
  */
28617
28799
  ReadVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainReadOperation;
28618
28800
  /**
@@ -28760,6 +28942,10 @@ interface Terrain extends BasePart {
28760
28942
  * - **Tags**: CustomLuaState
28761
28943
  *
28762
28944
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#WriteVoxelsAsync_beta)
28945
+ * @param this Terrain lets you to create dynamically morphable environments.
28946
+ * @param region
28947
+ * @param resolution
28948
+ * @param channelIds
28763
28949
  */
28764
28950
  WriteVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainWriteOperation;
28765
28951
  }
@@ -29558,13 +29744,13 @@ interface Model extends PVInstance {
29558
29744
  */
29559
29745
  WorldPivot: CFrame;
29560
29746
  /**
29561
- * Sets this model to be persistent for the specified player. `Model.ModelStreamingMode` must be set to **PersistentPerPlayer** for behavior to be changed as a result of addition.
29747
+ * Sets this model to be persistent for the specified player. `ModelStreamingMode` must be set to `PersistentPerPlayer` for behavior to be changed as a result of addition.
29562
29748
  *
29563
29749
  * - **ThreadSafety**: Unsafe
29564
29750
  *
29565
29751
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#AddPersistentPlayer)
29566
29752
  * @param this 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.
29567
- * @param playerInstance
29753
+ * @param playerInstance The `Player` to make this model persistent for.
29568
29754
  */
29569
29755
  AddPersistentPlayer(this: Model, playerInstance?: Player): void;
29570
29756
  /**
@@ -29691,13 +29877,13 @@ interface Model extends PVInstance {
29691
29877
  */
29692
29878
  MoveTo(this: Model, position: Vector3): void;
29693
29879
  /**
29694
- * Makes this model no longer persistent for specified player. `Model.ModelStreamingMode` must be set to **PersistentPerPlayer** for behavior to be changed as a result of removal.
29880
+ * Makes this model no longer persistent for the specified player. `ModelStreamingMode` must be set to `PersistentPerPlayer` for behavior to be changed as a result of removal.
29695
29881
  *
29696
29882
  * - **ThreadSafety**: Unsafe
29697
29883
  *
29698
29884
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#RemovePersistentPlayer)
29699
29885
  * @param this 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.
29700
- * @param playerInstance
29886
+ * @param playerInstance The `Player` to make this model no longer persistent for.
29701
29887
  */
29702
29888
  RemovePersistentPlayer(this: Model, playerInstance?: Player): void;
29703
29889
  /**
@@ -32075,6 +32261,8 @@ interface Player extends Instance {
32075
32261
  */
32076
32262
  Neutral: boolean;
32077
32263
  /**
32264
+ * A unique identifier of the party a `Player` belongs to.
32265
+ *
32078
32266
  * - **ThreadSafety**: ReadSafe
32079
32267
  * - **Tags**: Hidden, NotReplicated
32080
32268
  *
@@ -35804,6 +35992,8 @@ interface Sky extends Instance {
35804
35992
  */
35805
35993
  SkyboxLf: ContentId;
35806
35994
  /**
35995
+ * Angle of the skybox, in degrees, with rotation order of **Y**, **X**, **Z**.
35996
+ *
35807
35997
  * - **ThreadSafety**: ReadSafe
35808
35998
  *
35809
35999
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
@@ -35970,11 +36160,14 @@ interface SocialService extends Instance {
35970
36160
  */
35971
36161
  readonly _nominal_SocialService: unique symbol;
35972
36162
  /**
36163
+ * Returns a table of all presently connected `Player` objects whose `Player.PartyId` property matches the passed `partyId`.
36164
+ *
35973
36165
  * - **ThreadSafety**: Unsafe
35974
36166
  *
35975
36167
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPlayersByPartyId)
35976
36168
  * @param this Facilitates social functions that impact relationships made on the Roblox platform.
35977
36169
  * @param partyId
36170
+ * @returns A table of `Player` objects whose `Player.PartyId` property matches the passed `partyId`.
35978
36171
  */
35979
36172
  GetPlayersByPartyId(this: SocialService, partyId: string): Array<Instance>;
35980
36173
  /**
@@ -36044,14 +36237,31 @@ interface SocialService extends Instance {
36044
36237
  */
36045
36238
  CanSendGameInviteAsync(this: SocialService, player: Player, recipientId?: number): boolean;
36046
36239
  /**
36240
+ * - **ThreadSafety**: Unsafe
36241
+ * - **Tags**: Yields
36242
+ *
36243
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetEventRsvpStatusAsync)
36244
+ */
36245
+ GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
36246
+ /**
36247
+ * Returns an array of dictionaries containing data for all members of the specified party who are currently in the experience.
36248
+ *
36047
36249
  * - **ThreadSafety**: Unsafe
36048
36250
  * - **Tags**: Yields
36049
36251
  *
36050
36252
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
36051
36253
  * @param this Facilitates social functions that impact relationships made on the Roblox platform.
36052
36254
  * @param partyId
36255
+ * @returns An array of dictionaries representing the members of the specified party who are currently in the experience.
36053
36256
  */
36054
36257
  GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
36258
+ /**
36259
+ * - **ThreadSafety**: Unsafe
36260
+ * - **Tags**: Yields
36261
+ *
36262
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptRsvpToEventAsync)
36263
+ */
36264
+ PromptRsvpToEventAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
36055
36265
  /**
36056
36266
  * Fires when a player's call invite state changes.
36057
36267
  *
@@ -37883,6 +38093,8 @@ interface StudioWidgetsService extends Instance {
37883
38093
  readonly _nominal_StudioWidgetsService: unique symbol;
37884
38094
  }
37885
38095
  /**
38096
+ * The base class for `StyleSheet` and `StyleRule`.
38097
+ *
37886
38098
  * - **Tags**: NotCreatable
37887
38099
  *
37888
38100
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleBase)
@@ -37897,30 +38109,39 @@ interface StyleBase extends Instance {
37897
38109
  */
37898
38110
  readonly _nominal_StyleBase: unique symbol;
37899
38111
  /**
38112
+ * Returns an array of associated `StyleRules`.
38113
+ *
37900
38114
  * - **ThreadSafety**: Unsafe
37901
38115
  *
37902
38116
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleBase#GetStyleRules)
37903
- * @param this
38117
+ * @param this The base class for `StyleSheet` and `StyleRule`.
38118
+ * @returns Array of `StyleRules`.
37904
38119
  */
37905
38120
  GetStyleRules(this: StyleBase): Array<Instance>;
37906
38121
  /**
38122
+ * Inserts a new `StyleRule` into the array of rules.
38123
+ *
37907
38124
  * - **ThreadSafety**: Unsafe
37908
38125
  *
37909
38126
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleBase#InsertStyleRule)
37910
- * @param this
37911
- * @param rule
37912
- * @param priority
38127
+ * @param this The base class for `StyleSheet` and `StyleRule`.
38128
+ * @param rule The `StyleRule` to insert.
38129
+ * @param priority The number to set the rule's `Priority` to.
37913
38130
  */
37914
38131
  InsertStyleRule(this: StyleBase, rule: StyleRule, priority?: number): void;
37915
38132
  /**
38133
+ * Similar to `InsertStyleRule()` but lets you declare and set multiple `StyleRules` at once.
38134
+ *
37916
38135
  * - **ThreadSafety**: Unsafe
37917
38136
  *
37918
38137
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleBase#SetStyleRules)
37919
- * @param this
37920
- * @param rules
38138
+ * @param this The base class for `StyleSheet` and `StyleRule`.
38139
+ * @param rules Array of `StyleRules` to set.
37921
38140
  */
37922
38141
  SetStyleRules(this: StyleBase, rules: Array<Instance>): void;
37923
38142
  /**
38143
+ * Fires when one or more `StyleRules` is explicitly changed on the connected `StyleSheet` or `StyleRule`.
38144
+ *
37924
38145
  * - **ThreadSafety**: Unsafe
37925
38146
  *
37926
38147
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleBase#StyleRulesChanged)
@@ -37928,6 +38149,8 @@ interface StyleBase extends Instance {
37928
38149
  readonly StyleRulesChanged: RBXScriptSignal<() => void>;
37929
38150
  }
37930
38151
  /**
38152
+ * Defines style properties which override properties on the instances affected by the `Selector` property.
38153
+ *
37931
38154
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule)
37932
38155
  */
37933
38156
  interface StyleRule extends StyleBase {
@@ -37940,18 +38163,24 @@ interface StyleRule extends StyleBase {
37940
38163
  */
37941
38164
  readonly _nominal_StyleRule: unique symbol;
37942
38165
  /**
38166
+ * A number that determines how properties of the `StyleRule` apply relative to the same properties in other `StyleRules`. Higher priority values take precedence over lower.
38167
+ *
37943
38168
  * - **ThreadSafety**: ReadSafe
37944
38169
  *
37945
38170
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#Priority)
37946
38171
  */
37947
38172
  Priority: number;
37948
38173
  /**
38174
+ * A string specifying which instances the `StyleRule` should affect.
38175
+ *
37949
38176
  * - **ThreadSafety**: ReadSafe
37950
38177
  *
37951
38178
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#Selector)
37952
38179
  */
37953
38180
  Selector: string;
37954
38181
  /**
38182
+ * A read-only string that displays errors from the `Selector` property.
38183
+ *
37955
38184
  * - **ThreadSafety**: ReadSafe
37956
38185
  * - **Tags**: NotReplicated
37957
38186
  *
@@ -37959,39 +38188,49 @@ interface StyleRule extends StyleBase {
37959
38188
  */
37960
38189
  readonly SelectorError: string;
37961
38190
  /**
38191
+ * Returns a dictionary of key-value pairs describing the properties of the `StyleRule`.
38192
+ *
37962
38193
  * - **ThreadSafety**: Unsafe
37963
38194
  *
37964
38195
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#GetProperties)
37965
- * @param this
38196
+ * @param this Defines style properties which override properties on the instances affected by the `Selector` property.
38197
+ * @returns Dictionary of key-value pairs describing the properties of the `StyleRule`.
37966
38198
  */
37967
38199
  GetProperties(this: StyleRule): object;
37968
38200
  /**
38201
+ * Returns the value of a specific property in the `StyleRule`.
38202
+ *
37969
38203
  * - **ThreadSafety**: Unsafe
37970
38204
  *
37971
38205
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#GetProperty)
37972
- * @param this
37973
- * @param name
38206
+ * @param this Defines style properties which override properties on the instances affected by the `Selector` property.
38207
+ * @param name String name of the property, for example `"AnchorPoint"` or `"BackgroundColor3"`.
38208
+ * @returns Value of the property.
37974
38209
  */
37975
38210
  GetProperty(this: StyleRule, name: string): unknown;
37976
38211
  /**
38212
+ * Lets you declare and set multiple properties of the `StyleRule` at once.
38213
+ *
37977
38214
  * - **ThreadSafety**: Unsafe
37978
38215
  *
37979
38216
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetProperties)
37980
- * @param this
37981
- * @param styleProperties
38217
+ * @param this Defines style properties which override properties on the instances affected by the `Selector` property.
38218
+ * @param styleProperties Dictionary of key-value pairs defining the properties to set.
37982
38219
  */
37983
38220
  SetProperties(this: StyleRule, styleProperties: object): void;
37984
38221
  /**
37985
38222
  * - **ThreadSafety**: Unsafe
37986
38223
  *
37987
38224
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetProperty)
37988
- * @param this
37989
- * @param name
37990
- * @param value
38225
+ * @param this Defines style properties which override properties on the instances affected by the `Selector` property.
38226
+ * @param name Property name to set, for example `"BackgroundColor3"`.
38227
+ * @param value Property value to set, for example `Color3.new(1, 0, 0.25)`.
37991
38228
  */
37992
38229
  SetProperty(this: StyleRule, name: string, value: unknown): void;
37993
38230
  }
37994
38231
  /**
38232
+ * Aggregates `StyleRules` and can be linked to `DataModel` trees to apply style properties to instances.
38233
+ *
37995
38234
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleSheet)
37996
38235
  */
37997
38236
  interface StyleSheet extends StyleBase {
@@ -38004,22 +38243,29 @@ interface StyleSheet extends StyleBase {
38004
38243
  */
38005
38244
  readonly _nominal_StyleSheet: unique symbol;
38006
38245
  /**
38246
+ * Returns an array of other `StyleSheets` from which the `StyleSheet` is deriving `StyleRules` and token definitions.
38247
+ *
38007
38248
  * - **ThreadSafety**: Unsafe
38008
38249
  *
38009
38250
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleSheet#GetDerives)
38010
- * @param this
38251
+ * @param this Aggregates `StyleRules` and can be linked to `DataModel` trees to apply style properties to instances.
38252
+ * @returns Array of other `StyleSheets`.
38011
38253
  */
38012
38254
  GetDerives(this: StyleSheet): Array<Instance>;
38013
38255
  /**
38256
+ * Sets the `StyleSheet` to derive `StyleRules` and token definitions from one or more other `StyleSheets`.
38257
+ *
38014
38258
  * - **ThreadSafety**: Unsafe
38015
38259
  *
38016
38260
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleSheet#SetDerives)
38017
- * @param this
38018
- * @param derives
38261
+ * @param this Aggregates `StyleRules` and can be linked to `DataModel` trees to apply style properties to instances.
38262
+ * @param derives Array of other `StyleSheets` to derive `StyleRules` and token definitions from.
38019
38263
  */
38020
38264
  SetDerives(this: StyleSheet, derives: Array<Instance>): void;
38021
38265
  }
38022
38266
  /**
38267
+ * When parented to a `StyleSheet`, references another `StyleSheet` from which the parent inherits `StyleRules` and token definitions.
38268
+ *
38023
38269
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleDerive)
38024
38270
  */
38025
38271
  interface StyleDerive extends Instance {
@@ -38032,12 +38278,16 @@ interface StyleDerive extends Instance {
38032
38278
  */
38033
38279
  readonly _nominal_StyleDerive: unique symbol;
38034
38280
  /**
38281
+ * A number that determines how style properties inherited through this `StyleDerive` apply relative to the same properties inherited through other `StyleDerives`.
38282
+ *
38035
38283
  * - **ThreadSafety**: ReadSafe
38036
38284
  *
38037
38285
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleDerive#Priority)
38038
38286
  */
38039
38287
  Priority: number;
38040
38288
  /**
38289
+ * The `StyleSheet` from which the parent `StyleSheet` inherits `StyleRules` and token definitions.
38290
+ *
38041
38291
  * - **ThreadSafety**: ReadSafe
38042
38292
  *
38043
38293
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleDerive#StyleSheet)
@@ -38045,6 +38295,8 @@ interface StyleDerive extends Instance {
38045
38295
  StyleSheet: StyleSheet | undefined;
38046
38296
  }
38047
38297
  /**
38298
+ * Links a `StyleSheet` to the instance tree whose root is the parent of the `StyleLink`.
38299
+ *
38048
38300
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleLink)
38049
38301
  */
38050
38302
  interface StyleLink extends Instance {
@@ -38057,6 +38309,8 @@ interface StyleLink extends Instance {
38057
38309
  */
38058
38310
  readonly _nominal_StyleLink: unique symbol;
38059
38311
  /**
38312
+ * The `StyleSheet` to link to the parent such that the parent's descendants are styled accordingly.
38313
+ *
38060
38314
  * - **ThreadSafety**: ReadSafe
38061
38315
  *
38062
38316
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleLink#StyleSheet)
@@ -40168,6 +40422,8 @@ interface TextFilterResult extends Instance {
40168
40422
  */
40169
40423
  readonly _nominal_TextFilterResult: unique symbol;
40170
40424
  /**
40425
+ * **Deprecated:** This method is deprecated and returns an empty string. Text filtering pertaining to chat should be done through `TextChatService`, and experiences that do not properly filter player-generated chat text may be subject to moderation.
40426
+ *
40171
40427
  * Returns the text in a properly filtered manner for the specified `Player.UserId`.
40172
40428
  *
40173
40429
  * - **ThreadSafety**: Unsafe
@@ -44320,6 +44576,30 @@ interface Wire extends Instance {
44320
44576
  */
44321
44577
  TargetName: string;
44322
44578
  }
44579
+ /**
44580
+ * - **Tags**: NotCreatable, NotReplicated
44581
+ *
44582
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLSession)
44583
+ */
44584
+ interface MLSession extends RBXObject {
44585
+ /**
44586
+ * **DO NOT USE!**
44587
+ *
44588
+ * This field exists to force TypeScript to recognize this as a nominal type
44589
+ * @hidden
44590
+ * @deprecated
44591
+ */
44592
+ readonly _nominal_MLSession: unique symbol;
44593
+ /**
44594
+ * - **ThreadSafety**: Unsafe
44595
+ * - **Tags**: Yields
44596
+ *
44597
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLSession#ForwardAsync)
44598
+ * @param this
44599
+ * @param data
44600
+ */
44601
+ ForwardAsync(this: MLSession, data: object): object;
44602
+ }
44323
44603
  /**
44324
44604
  * - **Tags**: NotCreatable, NotReplicated
44325
44605
  *
@@ -44338,6 +44618,8 @@ interface TerrainIterateOperation extends RBXObject {
44338
44618
  * - **ThreadSafety**: Unsafe
44339
44619
  *
44340
44620
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation#CommitBlock)
44621
+ * @param this
44622
+ * @param block
44341
44623
  */
44342
44624
  CommitBlock(this: TerrainIterateOperation, block: object): RBXScriptSignal;
44343
44625
  /**
@@ -44365,6 +44647,8 @@ interface TerrainModifyOperation extends RBXObject {
44365
44647
  * - **ThreadSafety**: Unsafe
44366
44648
  *
44367
44649
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation#CommitBlock)
44650
+ * @param this
44651
+ * @param block
44368
44652
  */
44369
44653
  CommitBlock(this: TerrainModifyOperation, block: object): RBXScriptSignal;
44370
44654
  /**
@@ -44413,6 +44697,8 @@ interface TerrainWriteOperation extends RBXObject {
44413
44697
  * - **ThreadSafety**: Unsafe
44414
44698
  *
44415
44699
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#CommitBlock)
44700
+ * @param this
44701
+ * @param block
44416
44702
  */
44417
44703
  CommitBlock(this: TerrainWriteOperation, block: object): RBXScriptSignal;
44418
44704
  /**
@@ -44420,6 +44706,7 @@ interface TerrainWriteOperation extends RBXObject {
44420
44706
  * - **Tags**: CustomLuaState
44421
44707
  *
44422
44708
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#GetBlock)
44709
+ * @param this
44423
44710
  */
44424
44711
  GetBlock(this: TerrainWriteOperation): object;
44425
44712
  }
@@ -115,6 +115,8 @@ interface Services {
115
115
  MessagingService: MessagingService;
116
116
  MetaBreakpointManager: MetaBreakpointManager;
117
117
  MLModelDeliveryService: MLModelDeliveryService;
118
+ MLService: MLService;
119
+ Moderation: Moderation;
118
120
  NetworkClient: NetworkClient;
119
121
  NetworkServer: NetworkServer;
120
122
  NetworkSettings: NetworkSettings;
@@ -277,6 +279,7 @@ interface CreatableInstances {
277
279
  AudioRecorder: AudioRecorder;
278
280
  AudioReverb: AudioReverb;
279
281
  AudioSearchParams: AudioSearchParams;
282
+ AudioSpeechToText: AudioSpeechToText;
280
283
  AudioTextToSpeech: AudioTextToSpeech;
281
284
  AuroraScript: AuroraScript;
282
285
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -743,6 +746,7 @@ interface Objects extends Instances {
743
746
  ConfigSnapshot: ConfigSnapshot;
744
747
  EditableImage: EditableImage;
745
748
  EditableMesh: EditableMesh;
749
+ MLSession: MLSession;
746
750
  Object: RBXObject;
747
751
  ScreenshotCapture: ScreenshotCapture;
748
752
  TerrainIterateOperation: TerrainIterateOperation;
@@ -1820,6 +1824,21 @@ interface AudioSearchParams extends Instance {
1820
1824
  */
1821
1825
  readonly _nominal_AudioSearchParams: unique symbol;
1822
1826
  }
1827
+ /**
1828
+ * - **Tags**: NotBrowsable
1829
+ *
1830
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
1831
+ */
1832
+ interface AudioSpeechToText extends Instance {
1833
+ /**
1834
+ * **DO NOT USE!**
1835
+ *
1836
+ * This field exists to force TypeScript to recognize this as a nominal type
1837
+ * @hidden
1838
+ * @deprecated
1839
+ */
1840
+ readonly _nominal_AudioSpeechToText: unique symbol;
1841
+ }
1823
1842
  /**
1824
1843
  * Plays text as speech audio.
1825
1844
  *
@@ -2774,7 +2793,7 @@ interface CalloutService extends Instance {
2774
2793
  readonly _nominal_CalloutService: unique symbol;
2775
2794
  }
2776
2795
  /**
2777
- * A service which provides control over screenshot and video capture features.
2796
+ * A service which provides control over screenshot capture features.
2778
2797
  *
2779
2798
  * - **Tags**: NotCreatable, Service
2780
2799
  *
@@ -7744,6 +7763,21 @@ interface MLModelDeliveryService extends Instance {
7744
7763
  */
7745
7764
  readonly _nominal_MLModelDeliveryService: unique symbol;
7746
7765
  }
7766
+ /**
7767
+ * - **Tags**: NotCreatable, Service, NotReplicated
7768
+ *
7769
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLService)
7770
+ */
7771
+ interface MLService extends Instance {
7772
+ /**
7773
+ * **DO NOT USE!**
7774
+ *
7775
+ * This field exists to force TypeScript to recognize this as a nominal type
7776
+ * @hidden
7777
+ * @deprecated
7778
+ */
7779
+ readonly _nominal_MLService: unique symbol;
7780
+ }
7747
7781
  /**
7748
7782
  * Represents a list of strings markers in chronological order.
7749
7783
  *
@@ -8101,6 +8135,21 @@ interface MetaBreakpointManager extends Instance {
8101
8135
  */
8102
8136
  readonly _nominal_MetaBreakpointManager: unique symbol;
8103
8137
  }
8138
+ /**
8139
+ * - **Tags**: NotCreatable, Service, NotReplicated
8140
+ *
8141
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation)
8142
+ */
8143
+ interface Moderation extends Instance {
8144
+ /**
8145
+ * **DO NOT USE!**
8146
+ *
8147
+ * This field exists to force TypeScript to recognize this as a nominal type
8148
+ * @hidden
8149
+ * @deprecated
8150
+ */
8151
+ readonly _nominal_Moderation: unique symbol;
8152
+ }
8104
8153
  /**
8105
8154
  * Legacy object that contains members useful for pointer input.
8106
8155
  *
@@ -12915,6 +12964,8 @@ interface StudioWidgetsService extends Instance {
12915
12964
  readonly _nominal_StudioWidgetsService: unique symbol;
12916
12965
  }
12917
12966
  /**
12967
+ * The base class for `StyleSheet` and `StyleRule`.
12968
+ *
12918
12969
  * - **Tags**: NotCreatable
12919
12970
  *
12920
12971
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleBase)
@@ -12930,6 +12981,8 @@ interface StyleBase extends Instance {
12930
12981
  readonly _nominal_StyleBase: unique symbol;
12931
12982
  }
12932
12983
  /**
12984
+ * Defines style properties which override properties on the instances affected by the `Selector` property.
12985
+ *
12933
12986
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule)
12934
12987
  */
12935
12988
  interface StyleRule extends StyleBase {
@@ -12943,6 +12996,8 @@ interface StyleRule extends StyleBase {
12943
12996
  readonly _nominal_StyleRule: unique symbol;
12944
12997
  }
12945
12998
  /**
12999
+ * Aggregates `StyleRules` and can be linked to `DataModel` trees to apply style properties to instances.
13000
+ *
12946
13001
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleSheet)
12947
13002
  */
12948
13003
  interface StyleSheet extends StyleBase {
@@ -12956,6 +13011,8 @@ interface StyleSheet extends StyleBase {
12956
13011
  readonly _nominal_StyleSheet: unique symbol;
12957
13012
  }
12958
13013
  /**
13014
+ * When parented to a `StyleSheet`, references another `StyleSheet` from which the parent inherits `StyleRules` and token definitions.
13015
+ *
12959
13016
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleDerive)
12960
13017
  */
12961
13018
  interface StyleDerive extends Instance {
@@ -12969,6 +13026,8 @@ interface StyleDerive extends Instance {
12969
13026
  readonly _nominal_StyleDerive: unique symbol;
12970
13027
  }
12971
13028
  /**
13029
+ * Links a `StyleSheet` to the instance tree whose root is the parent of the `StyleLink`.
13030
+ *
12972
13031
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleLink)
12973
13032
  */
12974
13033
  interface StyleLink extends Instance {
@@ -14853,6 +14912,21 @@ interface Wire extends Instance {
14853
14912
  */
14854
14913
  readonly _nominal_Wire: unique symbol;
14855
14914
  }
14915
+ /**
14916
+ * - **Tags**: NotCreatable, NotReplicated
14917
+ *
14918
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLSession)
14919
+ */
14920
+ interface MLSession extends RBXObject {
14921
+ /**
14922
+ * **DO NOT USE!**
14923
+ *
14924
+ * This field exists to force TypeScript to recognize this as a nominal type
14925
+ * @hidden
14926
+ * @deprecated
14927
+ */
14928
+ readonly _nominal_MLSession: unique symbol;
14929
+ }
14856
14930
  /**
14857
14931
  * - **Tags**: NotCreatable, NotReplicated
14858
14932
  *
@@ -15151,11 +15151,20 @@ declare namespace Enum {
15151
15151
  EnumType: typeof globalThis.Enum.InputActionType;
15152
15152
  }
15153
15153
  export const Direction2D: Direction2D;
15154
+ /**
15155
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction3D)
15156
+ */
15157
+ export interface Direction3D extends globalThis.EnumItem {
15158
+ Name: "Direction3D";
15159
+ Value: 3;
15160
+ EnumType: typeof globalThis.Enum.InputActionType;
15161
+ }
15162
+ export const Direction3D: Direction3D;
15154
15163
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputActionType>;
15155
15164
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputActionType | undefined;
15156
15165
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
15157
15166
  }
15158
- export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D;
15167
+ export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D;
15159
15168
  /**
15160
15169
  * The InputType Enum controls the SurfaceInputs of `Part`.
15161
15170
  *
@@ -25057,6 +25066,42 @@ declare namespace Enum {
25057
25066
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RotationType | undefined;
25058
25067
  }
25059
25068
  export type RotationType = RotationType.MovementRelative | RotationType.CameraRelative;
25069
+ /**
25070
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus)
25071
+ */
25072
+ export namespace RsvpStatus {
25073
+ /**
25074
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#None)
25075
+ */
25076
+ export interface None extends globalThis.EnumItem {
25077
+ Name: "None";
25078
+ Value: 0;
25079
+ EnumType: typeof globalThis.Enum.RsvpStatus;
25080
+ }
25081
+ export const None: None;
25082
+ /**
25083
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#Going)
25084
+ */
25085
+ export interface Going extends globalThis.EnumItem {
25086
+ Name: "Going";
25087
+ Value: 1;
25088
+ EnumType: typeof globalThis.Enum.RsvpStatus;
25089
+ }
25090
+ export const Going: Going;
25091
+ /**
25092
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#NotGoing)
25093
+ */
25094
+ export interface NotGoing extends globalThis.EnumItem {
25095
+ Name: "NotGoing";
25096
+ Value: 2;
25097
+ EnumType: typeof globalThis.Enum.RsvpStatus;
25098
+ }
25099
+ export const NotGoing: NotGoing;
25100
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RsvpStatus>;
25101
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RsvpStatus | undefined;
25102
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RsvpStatus | undefined;
25103
+ }
25104
+ export type RsvpStatus = RsvpStatus.None | RsvpStatus.Going | RsvpStatus.NotGoing;
25060
25105
  /**
25061
25106
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RtlTextSupport)
25062
25107
  */
@@ -33181,37 +33226,82 @@ declare namespace Enum {
33181
33226
  }
33182
33227
  export const OtherError: OtherError;
33183
33228
  /**
33184
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#CapturingAlready)
33229
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#ScreenSizeChanged)
33230
+ */
33231
+ export interface ScreenSizeChanged extends globalThis.EnumItem {
33232
+ Name: "ScreenSizeChanged";
33233
+ Value: 2;
33234
+ EnumType: typeof globalThis.Enum.VideoCaptureResult;
33235
+ }
33236
+ export const ScreenSizeChanged: ScreenSizeChanged;
33237
+ /**
33238
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#TimeLimitReached)
33239
+ */
33240
+ export interface TimeLimitReached extends globalThis.EnumItem {
33241
+ Name: "TimeLimitReached";
33242
+ Value: 3;
33243
+ EnumType: typeof globalThis.Enum.VideoCaptureResult;
33244
+ }
33245
+ export const TimeLimitReached: TimeLimitReached;
33246
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoCaptureResult>;
33247
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoCaptureResult | undefined;
33248
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoCaptureResult | undefined;
33249
+ }
33250
+ export type VideoCaptureResult = VideoCaptureResult.Success | VideoCaptureResult.OtherError | VideoCaptureResult.ScreenSizeChanged | VideoCaptureResult.TimeLimitReached;
33251
+ /**
33252
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureStartedResult)
33253
+ */
33254
+ export namespace VideoCaptureStartedResult {
33255
+ /**
33256
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureStartedResult#Success)
33257
+ */
33258
+ export interface Success extends globalThis.EnumItem {
33259
+ Name: "Success";
33260
+ Value: 0;
33261
+ EnumType: typeof globalThis.Enum.VideoCaptureStartedResult;
33262
+ }
33263
+ export const Success: Success;
33264
+ /**
33265
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureStartedResult#OtherError)
33266
+ */
33267
+ export interface OtherError extends globalThis.EnumItem {
33268
+ Name: "OtherError";
33269
+ Value: 1;
33270
+ EnumType: typeof globalThis.Enum.VideoCaptureStartedResult;
33271
+ }
33272
+ export const OtherError: OtherError;
33273
+ /**
33274
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureStartedResult#CapturingAlready)
33185
33275
  */
33186
33276
  export interface CapturingAlready extends globalThis.EnumItem {
33187
33277
  Name: "CapturingAlready";
33188
33278
  Value: 2;
33189
- EnumType: typeof globalThis.Enum.VideoCaptureResult;
33279
+ EnumType: typeof globalThis.Enum.VideoCaptureStartedResult;
33190
33280
  }
33191
33281
  export const CapturingAlready: CapturingAlready;
33192
33282
  /**
33193
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#NoDeviceSupport)
33283
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureStartedResult#NoDeviceSupport)
33194
33284
  */
33195
33285
  export interface NoDeviceSupport extends globalThis.EnumItem {
33196
33286
  Name: "NoDeviceSupport";
33197
33287
  Value: 3;
33198
- EnumType: typeof globalThis.Enum.VideoCaptureResult;
33288
+ EnumType: typeof globalThis.Enum.VideoCaptureStartedResult;
33199
33289
  }
33200
33290
  export const NoDeviceSupport: NoDeviceSupport;
33201
33291
  /**
33202
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#NoSpaceOnDevice)
33292
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureStartedResult#NoSpaceOnDevice)
33203
33293
  */
33204
33294
  export interface NoSpaceOnDevice extends globalThis.EnumItem {
33205
33295
  Name: "NoSpaceOnDevice";
33206
33296
  Value: 4;
33207
- EnumType: typeof globalThis.Enum.VideoCaptureResult;
33297
+ EnumType: typeof globalThis.Enum.VideoCaptureStartedResult;
33208
33298
  }
33209
33299
  export const NoSpaceOnDevice: NoSpaceOnDevice;
33210
- export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoCaptureResult>;
33211
- export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoCaptureResult | undefined;
33212
- export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoCaptureResult | undefined;
33300
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoCaptureStartedResult>;
33301
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoCaptureStartedResult | undefined;
33302
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoCaptureStartedResult | undefined;
33213
33303
  }
33214
- export type VideoCaptureResult = VideoCaptureResult.Success | VideoCaptureResult.OtherError | VideoCaptureResult.CapturingAlready | VideoCaptureResult.NoDeviceSupport | VideoCaptureResult.NoSpaceOnDevice;
33304
+ export type VideoCaptureStartedResult = VideoCaptureStartedResult.Success | VideoCaptureStartedResult.OtherError | VideoCaptureStartedResult.CapturingAlready | VideoCaptureStartedResult.NoDeviceSupport | VideoCaptureStartedResult.NoSpaceOnDevice;
33215
33305
  /**
33216
33306
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoDeviceCaptureQuality)
33217
33307
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.856",
3
+ "version": "1.0.858",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },