@rbxts/types 1.0.883 → 1.0.884

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.
@@ -464,6 +464,7 @@ interface CreatableInstances {
464
464
  StudioCallout: StudioCallout;
465
465
  StyleDerive: StyleDerive;
466
466
  StyleLink: StyleLink;
467
+ StyleQuery: StyleQuery;
467
468
  StyleRule: StyleRule;
468
469
  StyleSheet: StyleSheet;
469
470
  SunRaysEffect: SunRaysEffect;
@@ -492,7 +493,6 @@ interface CreatableInstances {
492
493
  TremoloSoundEffect: TremoloSoundEffect;
493
494
  TrussPart: TrussPart;
494
495
  UIAspectRatioConstraint: UIAspectRatioConstraint;
495
- UIContainerQuery: UIContainerQuery;
496
496
  UICorner: UICorner;
497
497
  UIDragDetector: UIDragDetector;
498
498
  UIFlexItem: UIFlexItem;
@@ -1711,7 +1711,7 @@ interface EditableMesh extends RBXObject {
1711
1711
  */
1712
1712
  GetVerticesWithAttribute(this: EditableMesh, id: number): Array<unknown>;
1713
1713
  /**
1714
- * Returns an array of face IDs that use the given color ID.
1714
+ * Returns an array of vertex IDs that use the given color ID.
1715
1715
  *
1716
1716
  * - **ThreadSafety**: Unsafe
1717
1717
  * - **Tags**: CustomLuaState
@@ -5261,6 +5261,12 @@ interface AudioEmitter extends Instance {
5261
5261
  * @deprecated
5262
5262
  */
5263
5263
  readonly _nominal_AudioEmitter: unique symbol;
5264
+ /**
5265
+ * - **ThreadSafety**: ReadSafe
5266
+ *
5267
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#AcousticSimulationEnabled)
5268
+ */
5269
+ AcousticSimulationEnabled: boolean;
5264
5270
  /**
5265
5271
  * Controls which `AudioListeners` are capable of hearing this `AudioEmitter`.
5266
5272
  *
@@ -5273,8 +5279,11 @@ interface AudioEmitter extends Instance {
5273
5279
  * Controls how detailed the audio simulation should be for this `AudioEmitter`.
5274
5280
  *
5275
5281
  * - **ThreadSafety**: ReadSafe
5282
+ * - **Tags**:
5276
5283
  *
5277
5284
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#SimulationFidelity)
5285
+ *
5286
+ * @deprecated AcousticSimulationEnabled
5278
5287
  */
5279
5288
  SimulationFidelity: Enum.AudioSimulationFidelity;
5280
5289
  /**
@@ -5864,6 +5873,12 @@ interface AudioListener extends Instance {
5864
5873
  * @deprecated
5865
5874
  */
5866
5875
  readonly _nominal_AudioListener: unique symbol;
5876
+ /**
5877
+ * - **ThreadSafety**: ReadSafe
5878
+ *
5879
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#AcousticSimulationEnabled)
5880
+ */
5881
+ AcousticSimulationEnabled: boolean;
5867
5882
  /**
5868
5883
  * Controls which `AudioEmitters` are audible to this `AudioListener`.
5869
5884
  *
@@ -5876,8 +5891,11 @@ interface AudioListener extends Instance {
5876
5891
  * Controls how detailed the audio simulation should be for this `AudioListener`.
5877
5892
  *
5878
5893
  * - **ThreadSafety**: ReadSafe
5894
+ * - **Tags**:
5879
5895
  *
5880
5896
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#SimulationFidelity)
5897
+ *
5898
+ * @deprecated AcousticSimulationEnabled
5881
5899
  */
5882
5900
  SimulationFidelity: Enum.AudioSimulationFidelity;
5883
5901
  /**
@@ -6591,6 +6609,8 @@ interface AudioSearchParams extends Instance {
6591
6609
  Title: string;
6592
6610
  }
6593
6611
  /**
6612
+ * Converts spoken audio into text.
6613
+ *
6594
6614
  * - **Tags**: NotBrowsable
6595
6615
  *
6596
6616
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
@@ -6605,18 +6625,24 @@ interface AudioSpeechToText extends Instance {
6605
6625
  */
6606
6626
  readonly _nominal_AudioSpeechToText: unique symbol;
6607
6627
  /**
6628
+ * Whether the `AudioSpeechToText` object is enabled for processing input audio into text.
6629
+ *
6608
6630
  * - **ThreadSafety**: ReadSafe
6609
6631
  *
6610
6632
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Enabled)
6611
6633
  */
6612
6634
  Enabled: boolean;
6613
6635
  /**
6636
+ * The text resulting from the conversion of speech audio.
6637
+ *
6614
6638
  * - **ThreadSafety**: ReadSafe
6615
6639
  *
6616
6640
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Text)
6617
6641
  */
6618
6642
  Text: string;
6619
6643
  /**
6644
+ * Whether the `AudioSpeechToText` object is detecting speech in the incoming audio signal.
6645
+ *
6620
6646
  * - **ThreadSafety**: ReadSafe
6621
6647
  * - **Tags**: NotReplicated
6622
6648
  *
@@ -6624,14 +6650,18 @@ interface AudioSpeechToText extends Instance {
6624
6650
  */
6625
6651
  readonly VoiceDetected: boolean;
6626
6652
  /**
6653
+ * Returns an array of `Wires` that are connected to the specified pin.
6654
+ *
6627
6655
  * - **ThreadSafety**: Unsafe
6628
6656
  *
6629
6657
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
6630
- * @param this
6658
+ * @param this Converts spoken audio into text.
6631
6659
  * @param pin
6632
6660
  */
6633
6661
  GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
6634
6662
  /**
6663
+ * Fires when another instance is connected to or disconnected from the `AudioSpeechToText` via a `Wire`.
6664
+ *
6635
6665
  * - **ThreadSafety**: Unsafe
6636
6666
  *
6637
6667
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#WiringChanged)
@@ -19147,14 +19177,18 @@ interface BillboardGui extends LayerCollector {
19147
19177
  * Determines the distance in studs at which the `BillboardGui` will stop scaling larger in size.
19148
19178
  *
19149
19179
  * - **ThreadSafety**: ReadSafe
19180
+ * - **Tags**:
19150
19181
  *
19151
19182
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BillboardGui#DistanceLowerLimit)
19183
+ *
19184
+ * @deprecated
19152
19185
  */
19153
19186
  DistanceLowerLimit: number;
19154
19187
  /**
19155
19188
  * Determines the size `CurrentDistance` increments and decrements in studs as the player's camera moves closer and further from the `BillboardGui`.
19156
19189
  *
19157
19190
  * - **ThreadSafety**: ReadSafe
19191
+ * - **Tags**: NotReplicated
19158
19192
  *
19159
19193
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BillboardGui#DistanceStep)
19160
19194
  */
@@ -19163,8 +19197,11 @@ interface BillboardGui extends LayerCollector {
19163
19197
  * Determines the distance in studs at which the `BillboardGui` will stop scaling smaller in size.
19164
19198
  *
19165
19199
  * - **ThreadSafety**: ReadSafe
19200
+ * - **Tags**:
19166
19201
  *
19167
19202
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BillboardGui#DistanceUpperLimit)
19203
+ *
19204
+ * @deprecated
19168
19205
  */
19169
19206
  DistanceUpperLimit: number;
19170
19207
  /**
@@ -21323,6 +21360,8 @@ interface HapticEffect extends Instance {
21323
21360
  */
21324
21361
  Stop(this: HapticEffect): void;
21325
21362
  /**
21363
+ * Fires when the `HapticEffect` has completed playback and stopped.
21364
+ *
21326
21365
  * - **ThreadSafety**: Unsafe
21327
21366
  *
21328
21367
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Ended)
@@ -23994,6 +24033,12 @@ interface IncrementalPatchBuilder extends Instance {
23994
24033
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/IncrementalPatchBuilder#SerializePatch)
23995
24034
  */
23996
24035
  SerializePatch: boolean;
24036
+ /**
24037
+ * - **ThreadSafety**: ReadSafe
24038
+ *
24039
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/IncrementalPatchBuilder#UseFileLevelCompressionInsteadOfChunk)
24040
+ */
24041
+ UseFileLevelCompressionInsteadOfChunk: boolean;
23997
24042
  /**
23998
24043
  * - **ThreadSafety**: ReadSafe
23999
24044
  *
@@ -27440,6 +27485,12 @@ interface ModerationService extends Instance {
27440
27485
  * @deprecated
27441
27486
  */
27442
27487
  readonly _nominal_ModerationService: unique symbol;
27488
+ /**
27489
+ * - **ThreadSafety**: Unsafe
27490
+ *
27491
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#CreateReviewableContentKey)
27492
+ */
27493
+ CreateReviewableContentKey(this: ModerationService, content: Content): string;
27443
27494
  /**
27444
27495
  * - **ThreadSafety**: Unsafe
27445
27496
  * - **Tags**: Yields
@@ -29869,6 +29920,8 @@ interface MeshPart extends TriangleMeshPart {
29869
29920
  * - **Tags**: Hidden
29870
29921
  *
29871
29922
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshPart#HasJointOffset)
29923
+ *
29924
+ * @deprecated
29872
29925
  */
29873
29926
  get HasJointOffset(): boolean;
29874
29927
  /**
@@ -29883,6 +29936,8 @@ interface MeshPart extends TriangleMeshPart {
29883
29936
  * - **Tags**: Hidden
29884
29937
  *
29885
29938
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshPart#JointOffset)
29939
+ *
29940
+ * @deprecated
29886
29941
  */
29887
29942
  get JointOffset(): Vector3;
29888
29943
  /**
@@ -32014,7 +32069,7 @@ interface ParticleEmitter extends Instance {
32014
32069
  */
32015
32070
  FlipbookIncompatible: string;
32016
32071
  /**
32017
- * Determines the layout of the flipbook texture. Must be None, Grid2x2, Grid4x4, or Grid8x8.
32072
+ * Determines the layout of the flipbook texture. Must be None, Grid2x2, Grid4x4, Grid8x8 or Custom.
32018
32073
  *
32019
32074
  * - **ThreadSafety**: ReadSafe
32020
32075
  *
@@ -32030,12 +32085,16 @@ interface ParticleEmitter extends Instance {
32030
32085
  */
32031
32086
  FlipbookMode: Enum.ParticleFlipbookMode;
32032
32087
  /**
32088
+ * Defines the number of horizontal frames in a custom flipbook layout.
32089
+ *
32033
32090
  * - **ThreadSafety**: ReadSafe
32034
32091
  *
32035
32092
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookSizeX)
32036
32093
  */
32037
32094
  FlipbookSizeX: number;
32038
32095
  /**
32096
+ * Defines the number of vertical frames in a custom flipbook layout.
32097
+ *
32039
32098
  * - **ThreadSafety**: ReadSafe
32040
32099
  *
32041
32100
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookSizeY)
@@ -37381,6 +37440,13 @@ interface SocialService extends Instance {
37381
37440
  * @returns An array of dictionaries representing the members of the specified party who are currently in the experience.
37382
37441
  */
37383
37442
  GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
37443
+ /**
37444
+ * - **ThreadSafety**: Unsafe
37445
+ * - **Tags**: Yields
37446
+ *
37447
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptFeedbackSubmissionAsync)
37448
+ */
37449
+ PromptFeedbackSubmissionAsync(this: SocialService): void;
37384
37450
  /**
37385
37451
  * - **ThreadSafety**: Unsafe
37386
37452
  * - **Tags**: Yields
@@ -39502,6 +39568,46 @@ interface StyleLink extends Instance {
39502
39568
  */
39503
39569
  StyleSheet: StyleSheet | undefined;
39504
39570
  }
39571
+ /**
39572
+ * - **Tags**: NotReplicated, NotBrowsable
39573
+ *
39574
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
39575
+ */
39576
+ interface StyleQuery extends Instance {
39577
+ /**
39578
+ * **DO NOT USE!**
39579
+ *
39580
+ * This field exists to force TypeScript to recognize this as a nominal type
39581
+ * @hidden
39582
+ * @deprecated
39583
+ */
39584
+ readonly _nominal_StyleQuery: unique symbol;
39585
+ /**
39586
+ * - **ThreadSafety**: ReadSafe
39587
+ *
39588
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#AspectRatioRange)
39589
+ */
39590
+ AspectRatioRange: NumberRange;
39591
+ /**
39592
+ * - **ThreadSafety**: ReadSafe
39593
+ * - **Tags**: NotReplicated
39594
+ *
39595
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#IsActive)
39596
+ */
39597
+ readonly IsActive: boolean;
39598
+ /**
39599
+ * - **ThreadSafety**: ReadSafe
39600
+ *
39601
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#MaxSize)
39602
+ */
39603
+ MaxSize: Vector2;
39604
+ /**
39605
+ * - **ThreadSafety**: ReadSafe
39606
+ *
39607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#MinSize)
39608
+ */
39609
+ MinSize: Vector2;
39610
+ }
39505
39611
  /**
39506
39612
  * - **Tags**: NotCreatable, Service, NotReplicated
39507
39613
  *
@@ -42448,19 +42554,19 @@ interface TweenService extends Instance {
42448
42554
  */
42449
42555
  GetValue(this: TweenService, alpha: number, easingStyle: CastsToEnum<Enum.EasingStyle>, easingDirection: CastsToEnum<Enum.EasingDirection>): number;
42450
42556
  /**
42451
- * Calculates a value simulating a critically damped spring.
42557
+ * Smoothly interpolates a value towards a target, simulating a critically damped spring.
42452
42558
  *
42453
42559
  * - **ThreadSafety**: Safe
42454
42560
  *
42455
42561
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TweenService#SmoothDamp)
42456
42562
  * @param this Used to create `Tweens` which interpolate, or tween, the properties of instances.
42457
- * @param current The current position.
42458
- * @param target The target position.
42459
- * @param velocity The initial velocity at which the current position should approach the target position.
42460
- * @param smoothTime The duration in which the total smoothing operation should take place.
42461
- * @param maxSpeed The maximum speed at which the current position should approach the target position.
42462
- * @param dt The rate at which the smoothing operation should be applied.
42463
- * @returns The new position and velocity calculated from the smoothing operation.
42563
+ * @param current The current value to smooth.
42564
+ * @param target The target value to reach.
42565
+ * @param velocity The current velocity with which the current value should approach the target value. You shouldn't modify this value between calls yourself, it's used to store the stateful velocity. In most cases, initialize this with `0`, `zero`, `zero`, or `identity` depending on the type, or if needed, with your initial velocity.
42566
+ * @param smoothTime The duration over which the total smoothing operation should take place. Note that since this is a damped spring, there's no guarantee `current` will be exactly `target` after this time, but it will be close. Smaller values result in quicker smoothing.
42567
+ * @param maxSpeed The maximum speed at which the current value should approach the target value. Leaving this nil defaults to `huge`, meaning the velocity isn't clamped.
42568
+ * @param dt The rate at which the smoothing operation should be applied. If left nil, the current engine delta time will be used.
42569
+ * @returns The new value and new velocity calculated from the smoothing operation.
42464
42570
  */
42465
42571
  SmoothDamp<T extends number | Vector2 | Vector3 | CFrame>(this: TweenService, current: T, target: T, velocity: T, smoothTime: number, maxSpeed?: number, dt?: number): LuaTuple<[
42466
42572
  T,
@@ -42634,46 +42740,6 @@ interface UITextSizeConstraint extends UIConstraint {
42634
42740
  */
42635
42741
  MinTextSize: number;
42636
42742
  }
42637
- /**
42638
- * - **Tags**: NotReplicated, NotBrowsable
42639
- *
42640
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery)
42641
- */
42642
- interface UIContainerQuery extends UIComponent {
42643
- /**
42644
- * **DO NOT USE!**
42645
- *
42646
- * This field exists to force TypeScript to recognize this as a nominal type
42647
- * @hidden
42648
- * @deprecated
42649
- */
42650
- readonly _nominal_UIContainerQuery: unique symbol;
42651
- /**
42652
- * - **ThreadSafety**: ReadSafe
42653
- *
42654
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#AspectRatioRange)
42655
- */
42656
- AspectRatioRange: NumberRange;
42657
- /**
42658
- * - **ThreadSafety**: ReadSafe
42659
- * - **Tags**: NotReplicated
42660
- *
42661
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#IsActive)
42662
- */
42663
- readonly IsActive: boolean;
42664
- /**
42665
- * - **ThreadSafety**: ReadSafe
42666
- *
42667
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#MaxSize)
42668
- */
42669
- MaxSize: Vector2;
42670
- /**
42671
- * - **ThreadSafety**: ReadSafe
42672
- *
42673
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#MinSize)
42674
- */
42675
- MinSize: Vector2;
42676
- }
42677
42743
  /**
42678
42744
  * UI modifier which applies deformation to corners of its parent `GuiObject`.
42679
42745
  *
@@ -43581,12 +43647,16 @@ interface UIStroke extends UIComponent {
43581
43647
  */
43582
43648
  ApplyStrokeMode: Enum.ApplyStrokeMode;
43583
43649
  /**
43650
+ * Specifies an additional offset to the stroke's position, relative to the parent's minimum height or width.
43651
+ *
43584
43652
  * - **ThreadSafety**: ReadSafe
43585
43653
  *
43586
43654
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#BorderOffset)
43587
43655
  */
43588
43656
  BorderOffset: UDim;
43589
43657
  /**
43658
+ * Determines the stroke's position on its parent's border.
43659
+ *
43590
43660
  * - **ThreadSafety**: ReadSafe
43591
43661
  *
43592
43662
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#BorderStrokePosition)
@@ -43617,6 +43687,8 @@ interface UIStroke extends UIComponent {
43617
43687
  */
43618
43688
  LineJoinMode: Enum.LineJoinMode;
43619
43689
  /**
43690
+ * Determines whether the stroke's `Thickness` will be measured in pixels or be relative to the parent.
43691
+ *
43620
43692
  * - **ThreadSafety**: ReadSafe
43621
43693
  *
43622
43694
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#StrokeSizingMode)
@@ -43639,6 +43711,8 @@ interface UIStroke extends UIComponent {
43639
43711
  */
43640
43712
  Transparency: number;
43641
43713
  /**
43714
+ * Determines the order in which the stroke renders relative to sibling `UIStroke` instances.
43715
+ *
43642
43716
  * - **ThreadSafety**: ReadSafe
43643
43717
  *
43644
43718
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#ZIndex)
@@ -45964,6 +46038,8 @@ interface Wire extends Instance {
45964
46038
  TargetName: string;
45965
46039
  }
45966
46040
  /**
46041
+ * - **Tags**: NotBrowsable
46042
+ *
45967
46043
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
45968
46044
  */
45969
46045
  interface WrapTextureTransfer extends Instance {
@@ -484,6 +484,7 @@ interface CreatableInstances {
484
484
  StudioCallout: StudioCallout;
485
485
  StyleDerive: StyleDerive;
486
486
  StyleLink: StyleLink;
487
+ StyleQuery: StyleQuery;
487
488
  StyleRule: StyleRule;
488
489
  StyleSheet: StyleSheet;
489
490
  SunRaysEffect: SunRaysEffect;
@@ -512,7 +513,6 @@ interface CreatableInstances {
512
513
  TremoloSoundEffect: TremoloSoundEffect;
513
514
  TrussPart: TrussPart;
514
515
  UIAspectRatioConstraint: UIAspectRatioConstraint;
515
- UIContainerQuery: UIContainerQuery;
516
516
  UICorner: UICorner;
517
517
  UIDragDetector: UIDragDetector;
518
518
  UIFlexItem: UIFlexItem;
@@ -1883,6 +1883,8 @@ interface AudioSearchParams extends Instance {
1883
1883
  readonly _nominal_AudioSearchParams: unique symbol;
1884
1884
  }
1885
1885
  /**
1886
+ * Converts spoken audio into text.
1887
+ *
1886
1888
  * - **Tags**: NotBrowsable
1887
1889
  *
1888
1890
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
@@ -13277,6 +13279,21 @@ interface StyleLink extends Instance {
13277
13279
  */
13278
13280
  readonly _nominal_StyleLink: unique symbol;
13279
13281
  }
13282
+ /**
13283
+ * - **Tags**: NotReplicated, NotBrowsable
13284
+ *
13285
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
13286
+ */
13287
+ interface StyleQuery extends Instance {
13288
+ /**
13289
+ * **DO NOT USE!**
13290
+ *
13291
+ * This field exists to force TypeScript to recognize this as a nominal type
13292
+ * @hidden
13293
+ * @deprecated
13294
+ */
13295
+ readonly _nominal_StyleQuery: unique symbol;
13296
+ }
13280
13297
  /**
13281
13298
  * - **Tags**: NotCreatable, Service, NotReplicated
13282
13299
  *
@@ -14361,21 +14378,6 @@ interface UITextSizeConstraint extends UIConstraint {
14361
14378
  */
14362
14379
  readonly _nominal_UITextSizeConstraint: unique symbol;
14363
14380
  }
14364
- /**
14365
- * - **Tags**: NotReplicated, NotBrowsable
14366
- *
14367
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery)
14368
- */
14369
- interface UIContainerQuery extends UIComponent {
14370
- /**
14371
- * **DO NOT USE!**
14372
- *
14373
- * This field exists to force TypeScript to recognize this as a nominal type
14374
- * @hidden
14375
- * @deprecated
14376
- */
14377
- readonly _nominal_UIContainerQuery: unique symbol;
14378
- }
14379
14381
  /**
14380
14382
  * UI modifier which applies deformation to corners of its parent `GuiObject`.
14381
14383
  *
@@ -15192,6 +15194,8 @@ interface Wire extends Instance {
15192
15194
  readonly _nominal_Wire: unique symbol;
15193
15195
  }
15194
15196
  /**
15197
+ * - **Tags**: NotBrowsable
15198
+ *
15195
15199
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
15196
15200
  */
15197
15201
  interface WrapTextureTransfer extends Instance {
@@ -1722,6 +1722,42 @@ declare namespace Enum {
1722
1722
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimatorRetargetingMode | undefined;
1723
1723
  }
1724
1724
  export type AnimatorRetargetingMode = AnimatorRetargetingMode.Default | AnimatorRetargetingMode.Disabled | AnimatorRetargetingMode.Enabled;
1725
+ /**
1726
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference)
1727
+ */
1728
+ export namespace AnnotationChannelContentPreference {
1729
+ /**
1730
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference#None)
1731
+ */
1732
+ export interface None extends globalThis.EnumItem {
1733
+ Name: "None";
1734
+ Value: 0;
1735
+ EnumType: typeof globalThis.Enum.AnnotationChannelContentPreference;
1736
+ }
1737
+ export const None: None;
1738
+ /**
1739
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference#All)
1740
+ */
1741
+ export interface All extends globalThis.EnumItem {
1742
+ Name: "All";
1743
+ Value: 1;
1744
+ EnumType: typeof globalThis.Enum.AnnotationChannelContentPreference;
1745
+ }
1746
+ export const All: All;
1747
+ /**
1748
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationChannelContentPreference#Unknown)
1749
+ */
1750
+ export interface Unknown extends globalThis.EnumItem {
1751
+ Name: "Unknown";
1752
+ Value: 2;
1753
+ EnumType: typeof globalThis.Enum.AnnotationChannelContentPreference;
1754
+ }
1755
+ export const Unknown: Unknown;
1756
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationChannelContentPreference>;
1757
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationChannelContentPreference | undefined;
1758
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationChannelContentPreference | undefined;
1759
+ }
1760
+ export type AnnotationChannelContentPreference = AnnotationChannelContentPreference.None | AnnotationChannelContentPreference.All | AnnotationChannelContentPreference.Unknown;
1725
1761
  /**
1726
1762
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationEditingMode)
1727
1763
  */
@@ -1758,6 +1794,51 @@ declare namespace Enum {
1758
1794
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationEditingMode | undefined;
1759
1795
  }
1760
1796
  export type AnnotationEditingMode = AnnotationEditingMode.None | AnnotationEditingMode.PlacingNew | AnnotationEditingMode.WritingNew;
1797
+ /**
1798
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference)
1799
+ */
1800
+ export namespace AnnotationPlaceContentPreference {
1801
+ /**
1802
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#None)
1803
+ */
1804
+ export interface None extends globalThis.EnumItem {
1805
+ Name: "None";
1806
+ Value: 0;
1807
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1808
+ }
1809
+ export const None: None;
1810
+ /**
1811
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#All)
1812
+ */
1813
+ export interface All extends globalThis.EnumItem {
1814
+ Name: "All";
1815
+ Value: 1;
1816
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1817
+ }
1818
+ export const All: All;
1819
+ /**
1820
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#MentionsAndReplies)
1821
+ */
1822
+ export interface MentionsAndReplies extends globalThis.EnumItem {
1823
+ Name: "MentionsAndReplies";
1824
+ Value: 2;
1825
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1826
+ }
1827
+ export const MentionsAndReplies: MentionsAndReplies;
1828
+ /**
1829
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationPlaceContentPreference#Unknown)
1830
+ */
1831
+ export interface Unknown extends globalThis.EnumItem {
1832
+ Name: "Unknown";
1833
+ Value: 3;
1834
+ EnumType: typeof globalThis.Enum.AnnotationPlaceContentPreference;
1835
+ }
1836
+ export const Unknown: Unknown;
1837
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationPlaceContentPreference>;
1838
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationPlaceContentPreference | undefined;
1839
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationPlaceContentPreference | undefined;
1840
+ }
1841
+ export type AnnotationPlaceContentPreference = AnnotationPlaceContentPreference.None | AnnotationPlaceContentPreference.All | AnnotationPlaceContentPreference.MentionsAndReplies | AnnotationPlaceContentPreference.Unknown;
1761
1842
  /**
1762
1843
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus)
1763
1844
  */
@@ -5237,10 +5318,18 @@ declare namespace Enum {
5237
5318
  }
5238
5319
  export type BorderMode = BorderMode.Outline | BorderMode.Middle | BorderMode.Inset;
5239
5320
  /**
5321
+ * Used by `UIStroke.BorderStrokePosition` to determine the stroke's position on its parent's border.
5322
+ *
5240
5323
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition)
5241
5324
  */
5242
5325
  export namespace BorderStrokePosition {
5243
5326
  /**
5327
+ * The stroke renders on the outer border of the parent UI element.
5328
+ *
5329
+ *
5330
+ *
5331
+ * ![](https://prod.docsiteassets.roblox.com/../../../assets/ui/ui-objects/UIStroke-BorderStrokePosition-Outer.png)
5332
+ *
5244
5333
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Outer)
5245
5334
  */
5246
5335
  export interface Outer extends globalThis.EnumItem {
@@ -5250,6 +5339,12 @@ declare namespace Enum {
5250
5339
  }
5251
5340
  export const Outer: Outer;
5252
5341
  /**
5342
+ * The stroke renders on the center border of the parent UI element.
5343
+ *
5344
+ *
5345
+ *
5346
+ * ![](https://prod.docsiteassets.roblox.com/../../../assets/ui/ui-objects/UIStroke-BorderStrokePosition-Center.png)
5347
+ *
5253
5348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Center)
5254
5349
  */
5255
5350
  export interface Center extends globalThis.EnumItem {
@@ -5259,6 +5354,12 @@ declare namespace Enum {
5259
5354
  }
5260
5355
  export const Center: Center;
5261
5356
  /**
5357
+ * The stroke renders on the inner border of the parent UI element.
5358
+ *
5359
+ *
5360
+ *
5361
+ * ![](https://prod.docsiteassets.roblox.com/../../../assets/ui/ui-objects/UIStroke-BorderStrokePosition-Inner.png)
5362
+ *
5262
5363
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BorderStrokePosition#Inner)
5263
5364
  */
5264
5365
  export interface Inner extends globalThis.EnumItem {
@@ -9623,16 +9724,18 @@ declare namespace Enum {
9623
9724
  }
9624
9725
  export const PhysicsCollision: PhysicsCollision;
9625
9726
  /**
9626
- * Physics bodies and the components that control their behavior.
9627
- *
9628
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#PhysicsParts)
9727
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#BaseParts)
9629
9728
  */
9630
- export interface PhysicsParts extends globalThis.EnumItem {
9631
- Name: "PhysicsParts";
9729
+ export interface BaseParts extends globalThis.EnumItem {
9730
+ Name: "BaseParts";
9632
9731
  Value: 7;
9633
9732
  EnumType: typeof globalThis.Enum.DeveloperMemoryTag;
9634
9733
  }
9635
- export const PhysicsParts: PhysicsParts;
9734
+ export const BaseParts: BaseParts;
9735
+ /**
9736
+ * @deprecated renamed to BaseParts
9737
+ */
9738
+ export const PhysicsParts: BaseParts;
9636
9739
  /**
9637
9740
  * Rendering solid models (stuff made with Union, Negate, etc.).
9638
9741
  *
@@ -9809,7 +9912,7 @@ declare namespace Enum {
9809
9912
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeveloperMemoryTag | undefined;
9810
9913
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeveloperMemoryTag | undefined;
9811
9914
  }
9812
- export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.PhysicsParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG | DeveloperMemoryTag.GraphicsSlimModels;
9915
+ export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.BaseParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG | DeveloperMemoryTag.GraphicsSlimModels;
9813
9916
  /**
9814
9917
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceFeatureType)
9815
9918
  */
@@ -10859,6 +10962,114 @@ declare namespace Enum {
10859
10962
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceAuthScope | undefined;
10860
10963
  }
10861
10964
  export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
10965
+ /**
10966
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode)
10967
+ */
10968
+ export namespace ExperienceStateRecordingLoadMode {
10969
+ /**
10970
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode#NewReplay)
10971
+ */
10972
+ export interface NewReplay extends globalThis.EnumItem {
10973
+ Name: "NewReplay";
10974
+ Value: 0;
10975
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadMode;
10976
+ }
10977
+ export const NewReplay: NewReplay;
10978
+ /**
10979
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode#ContiguousSlice)
10980
+ */
10981
+ export interface ContiguousSlice extends globalThis.EnumItem {
10982
+ Name: "ContiguousSlice";
10983
+ Value: 1;
10984
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadMode;
10985
+ }
10986
+ export const ContiguousSlice: ContiguousSlice;
10987
+ /**
10988
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode#NoncontiguousSlice)
10989
+ */
10990
+ export interface NoncontiguousSlice extends globalThis.EnumItem {
10991
+ Name: "NoncontiguousSlice";
10992
+ Value: 2;
10993
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadMode;
10994
+ }
10995
+ export const NoncontiguousSlice: NoncontiguousSlice;
10996
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateRecordingLoadMode>;
10997
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateRecordingLoadMode | undefined;
10998
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateRecordingLoadMode | undefined;
10999
+ }
11000
+ export type ExperienceStateRecordingLoadMode = ExperienceStateRecordingLoadMode.NewReplay | ExperienceStateRecordingLoadMode.ContiguousSlice | ExperienceStateRecordingLoadMode.NoncontiguousSlice;
11001
+ /**
11002
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadSourceType)
11003
+ */
11004
+ export namespace ExperienceStateRecordingLoadSourceType {
11005
+ /**
11006
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadSourceType#S3Url)
11007
+ */
11008
+ export interface S3Url extends globalThis.EnumItem {
11009
+ Name: "S3Url";
11010
+ Value: 0;
11011
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadSourceType;
11012
+ }
11013
+ export const S3Url: S3Url;
11014
+ /**
11015
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadSourceType#File)
11016
+ */
11017
+ export interface File extends globalThis.EnumItem {
11018
+ Name: "File";
11019
+ Value: 1;
11020
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingLoadSourceType;
11021
+ }
11022
+ export const File: File;
11023
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateRecordingLoadSourceType>;
11024
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateRecordingLoadSourceType | undefined;
11025
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateRecordingLoadSourceType | undefined;
11026
+ }
11027
+ export type ExperienceStateRecordingLoadSourceType = ExperienceStateRecordingLoadSourceType.S3Url | ExperienceStateRecordingLoadSourceType.File;
11028
+ /**
11029
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode)
11030
+ */
11031
+ export namespace ExperienceStateRecordingPlaybackMode {
11032
+ /**
11033
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Undefined)
11034
+ */
11035
+ export interface Undefined extends globalThis.EnumItem {
11036
+ Name: "Undefined";
11037
+ Value: 0;
11038
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11039
+ }
11040
+ export const Undefined: Undefined;
11041
+ /**
11042
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Stopped)
11043
+ */
11044
+ export interface Stopped extends globalThis.EnumItem {
11045
+ Name: "Stopped";
11046
+ Value: 1;
11047
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11048
+ }
11049
+ export const Stopped: Stopped;
11050
+ /**
11051
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Playing)
11052
+ */
11053
+ export interface Playing extends globalThis.EnumItem {
11054
+ Name: "Playing";
11055
+ Value: 2;
11056
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11057
+ }
11058
+ export const Playing: Playing;
11059
+ /**
11060
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingPlaybackMode#Rewinding)
11061
+ */
11062
+ export interface Rewinding extends globalThis.EnumItem {
11063
+ Name: "Rewinding";
11064
+ Value: 3;
11065
+ EnumType: typeof globalThis.Enum.ExperienceStateRecordingPlaybackMode;
11066
+ }
11067
+ export const Rewinding: Rewinding;
11068
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateRecordingPlaybackMode>;
11069
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateRecordingPlaybackMode | undefined;
11070
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateRecordingPlaybackMode | undefined;
11071
+ }
11072
+ export type ExperienceStateRecordingPlaybackMode = ExperienceStateRecordingPlaybackMode.Undefined | ExperienceStateRecordingPlaybackMode.Stopped | ExperienceStateRecordingPlaybackMode.Playing | ExperienceStateRecordingPlaybackMode.Rewinding;
10862
11073
  /**
10863
11074
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExplosionType)
10864
11075
  */
@@ -22574,6 +22785,51 @@ declare namespace Enum {
22574
22785
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicsSteppingMethod | undefined;
22575
22786
  }
22576
22787
  export type PhysicsSteppingMethod = PhysicsSteppingMethod.Default | PhysicsSteppingMethod.Fixed | PhysicsSteppingMethod.Adaptive;
22788
+ /**
22789
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference)
22790
+ */
22791
+ export namespace PlaceContentPreference {
22792
+ /**
22793
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#None)
22794
+ */
22795
+ export interface None extends globalThis.EnumItem {
22796
+ Name: "None";
22797
+ Value: 0;
22798
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22799
+ }
22800
+ export const None: None;
22801
+ /**
22802
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#All)
22803
+ */
22804
+ export interface All extends globalThis.EnumItem {
22805
+ Name: "All";
22806
+ Value: 1;
22807
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22808
+ }
22809
+ export const All: All;
22810
+ /**
22811
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#MentionsAndReplies)
22812
+ */
22813
+ export interface MentionsAndReplies extends globalThis.EnumItem {
22814
+ Name: "MentionsAndReplies";
22815
+ Value: 2;
22816
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22817
+ }
22818
+ export const MentionsAndReplies: MentionsAndReplies;
22819
+ /**
22820
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference#Unknown)
22821
+ */
22822
+ export interface Unknown extends globalThis.EnumItem {
22823
+ Name: "Unknown";
22824
+ Value: 3;
22825
+ EnumType: typeof globalThis.Enum.PlaceContentPreference;
22826
+ }
22827
+ export const Unknown: Unknown;
22828
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlaceContentPreference>;
22829
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlaceContentPreference | undefined;
22830
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlaceContentPreference | undefined;
22831
+ }
22832
+ export type PlaceContentPreference = PlaceContentPreference.None | PlaceContentPreference.All | PlaceContentPreference.MentionsAndReplies | PlaceContentPreference.Unknown;
22577
22833
  /**
22578
22834
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlacePublishType)
22579
22835
  */
@@ -24623,6 +24879,42 @@ declare namespace Enum {
24623
24879
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationActionType | undefined;
24624
24880
  }
24625
24881
  export type RecommendationActionType = RecommendationActionType.AddReaction | RecommendationActionType.RemoveReaction | RecommendationActionType.Share | RecommendationActionType.Report | RecommendationActionType.Comment | RecommendationActionType.Play | RecommendationActionType.Purchase;
24882
+ /**
24883
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent)
24884
+ */
24885
+ export namespace RecommendationDepartureIntent {
24886
+ /**
24887
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent#Neutral)
24888
+ */
24889
+ export interface Neutral extends globalThis.EnumItem {
24890
+ Name: "Neutral";
24891
+ Value: 0;
24892
+ EnumType: typeof globalThis.Enum.RecommendationDepartureIntent;
24893
+ }
24894
+ export const Neutral: Neutral;
24895
+ /**
24896
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent#Positive)
24897
+ */
24898
+ export interface Positive extends globalThis.EnumItem {
24899
+ Name: "Positive";
24900
+ Value: 1;
24901
+ EnumType: typeof globalThis.Enum.RecommendationDepartureIntent;
24902
+ }
24903
+ export const Positive: Positive;
24904
+ /**
24905
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationDepartureIntent#Negative)
24906
+ */
24907
+ export interface Negative extends globalThis.EnumItem {
24908
+ Name: "Negative";
24909
+ Value: 2;
24910
+ EnumType: typeof globalThis.Enum.RecommendationDepartureIntent;
24911
+ }
24912
+ export const Negative: Negative;
24913
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationDepartureIntent>;
24914
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationDepartureIntent | undefined;
24915
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationDepartureIntent | undefined;
24916
+ }
24917
+ export type RecommendationDepartureIntent = RecommendationDepartureIntent.Neutral | RecommendationDepartureIntent.Positive | RecommendationDepartureIntent.Negative;
24626
24918
  /**
24627
24919
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType)
24628
24920
  */
@@ -24636,11 +24928,56 @@ declare namespace Enum {
24636
24928
  EnumType: typeof globalThis.Enum.RecommendationImpressionType;
24637
24929
  }
24638
24930
  export const View: View;
24931
+ /**
24932
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#NotViewable)
24933
+ */
24934
+ export interface NotViewable extends globalThis.EnumItem {
24935
+ Name: "NotViewable";
24936
+ Value: 1;
24937
+ EnumType: typeof globalThis.Enum.RecommendationImpressionType;
24938
+ }
24939
+ export const NotViewable: NotViewable;
24639
24940
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationImpressionType>;
24640
24941
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationImpressionType | undefined;
24641
24942
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationImpressionType | undefined;
24642
24943
  }
24643
- export type RecommendationImpressionType = RecommendationImpressionType.View;
24944
+ export type RecommendationImpressionType = RecommendationImpressionType.View | RecommendationImpressionType.NotViewable;
24945
+ /**
24946
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType)
24947
+ */
24948
+ export namespace RecommendationItemContentType {
24949
+ /**
24950
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Static)
24951
+ */
24952
+ export interface Static extends globalThis.EnumItem {
24953
+ Name: "Static";
24954
+ Value: 0;
24955
+ EnumType: typeof globalThis.Enum.RecommendationItemContentType;
24956
+ }
24957
+ export const Static: Static;
24958
+ /**
24959
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Dynamic)
24960
+ */
24961
+ export interface Dynamic extends globalThis.EnumItem {
24962
+ Name: "Dynamic";
24963
+ Value: 1;
24964
+ EnumType: typeof globalThis.Enum.RecommendationItemContentType;
24965
+ }
24966
+ export const Dynamic: Dynamic;
24967
+ /**
24968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Interactive)
24969
+ */
24970
+ export interface Interactive extends globalThis.EnumItem {
24971
+ Name: "Interactive";
24972
+ Value: 2;
24973
+ EnumType: typeof globalThis.Enum.RecommendationItemContentType;
24974
+ }
24975
+ export const Interactive: Interactive;
24976
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationItemContentType>;
24977
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationItemContentType | undefined;
24978
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationItemContentType | undefined;
24979
+ }
24980
+ export type RecommendationItemContentType = RecommendationItemContentType.Static | RecommendationItemContentType.Dynamic | RecommendationItemContentType.Interactive;
24644
24981
  /**
24645
24982
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility)
24646
24983
  */
@@ -27857,10 +28194,14 @@ declare namespace Enum {
27857
28194
  }
27858
28195
  export type StreamingPauseMode = StreamingPauseMode.Default | StreamingPauseMode.Disabled | StreamingPauseMode.ClientPhysicsPause;
27859
28196
  /**
28197
+ * Used by `UIStroke.StrokeSizingMode` to determine whether the stroke's `Thickness` will be measured in pixels or be relative to the parent.
28198
+ *
27860
28199
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StrokeSizingMode)
27861
28200
  */
27862
28201
  export namespace StrokeSizingMode {
27863
28202
  /**
28203
+ * `Thickness` is measured in pixels.
28204
+ *
27864
28205
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StrokeSizingMode#FixedSize)
27865
28206
  */
27866
28207
  export interface FixedSize extends globalThis.EnumItem {
@@ -27870,6 +28211,8 @@ declare namespace Enum {
27870
28211
  }
27871
28212
  export const FixedSize: FixedSize;
27872
28213
  /**
28214
+ * `Thickness` is relative to minimum parent width or height. If stroke is on text, thickness is relative to font size.
28215
+ *
27873
28216
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StrokeSizingMode#ScaledSize)
27874
28217
  */
27875
28218
  export interface ScaledSize extends globalThis.EnumItem {
@@ -30409,12 +30752,21 @@ declare namespace Enum {
30409
30752
  EnumType: typeof globalThis.Enum.TeamCreateErrorState;
30410
30753
  }
30411
30754
  export const PlaceSizeApproachingLimit: PlaceSizeApproachingLimit;
30755
+ /**
30756
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeamCreateErrorState#PlaceUploadFailing)
30757
+ */
30758
+ export interface PlaceUploadFailing extends globalThis.EnumItem {
30759
+ Name: "PlaceUploadFailing";
30760
+ Value: 2;
30761
+ EnumType: typeof globalThis.Enum.TeamCreateErrorState;
30762
+ }
30763
+ export const PlaceUploadFailing: PlaceUploadFailing;
30412
30764
  /**
30413
30765
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeamCreateErrorState#NoError)
30414
30766
  */
30415
30767
  export interface NoError extends globalThis.EnumItem {
30416
30768
  Name: "NoError";
30417
- Value: 2;
30769
+ Value: 3;
30418
30770
  EnumType: typeof globalThis.Enum.TeamCreateErrorState;
30419
30771
  }
30420
30772
  export const NoError: NoError;
@@ -30422,7 +30774,7 @@ declare namespace Enum {
30422
30774
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeamCreateErrorState | undefined;
30423
30775
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeamCreateErrorState | undefined;
30424
30776
  }
30425
- export type TeamCreateErrorState = TeamCreateErrorState.PlaceSizeTooLarge | TeamCreateErrorState.PlaceSizeApproachingLimit | TeamCreateErrorState.NoError;
30777
+ export type TeamCreateErrorState = TeamCreateErrorState.PlaceSizeTooLarge | TeamCreateErrorState.PlaceSizeApproachingLimit | TeamCreateErrorState.PlaceUploadFailing | TeamCreateErrorState.NoError;
30426
30778
  /**
30427
30779
  * Enum used by `Lighting.Technology` to represent the different lighting systems available for rendering the 3D world.
30428
30780
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.883",
3
+ "version": "1.0.884",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },