@rbxts/types 1.0.857 → 1.0.859

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.
@@ -65,13 +65,13 @@ interface Services {
65
65
  ExperienceNotificationService: ExperienceNotificationService;
66
66
  ExperienceService: ExperienceService;
67
67
  ExperienceStateCaptureService: ExperienceStateCaptureService;
68
+ ExperienceStateRecordingService: ExperienceStateRecordingService;
68
69
  ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
69
70
  FaceAnimatorService: FaceAnimatorService;
70
71
  FacialAgeEstimationService: FacialAgeEstimationService;
71
72
  FacialAnimationRecordingService: FacialAnimationRecordingService;
72
73
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
73
74
  FeatureRestrictionManager: FeatureRestrictionManager;
74
- FeedService: FeedService;
75
75
  GamepadService: GamepadService;
76
76
  GamePassService: GamePassService;
77
77
  GenerationService: GenerationService;
@@ -113,6 +113,7 @@ interface Services {
113
113
  MetaBreakpointManager: MetaBreakpointManager;
114
114
  MLModelDeliveryService: MLModelDeliveryService;
115
115
  MLService: MLService;
116
+ Moderation: Moderation;
116
117
  OmniRecommendationsService: OmniRecommendationsService;
117
118
  OpenCloudService: OpenCloudService;
118
119
  PackageUIService: PackageUIService;
@@ -135,6 +136,7 @@ interface Services {
135
136
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
136
137
  ProximityPromptService: ProximityPromptService;
137
138
  PublishService: PublishService;
139
+ RecommendationService: RecommendationService;
138
140
  ReflectionService: ReflectionService;
139
141
  RemoteCursorService: RemoteCursorService;
140
142
  RemoteDebuggerServer: RemoteDebuggerServer;
@@ -162,6 +164,7 @@ interface Services {
162
164
  SessionService: SessionService;
163
165
  SharedTableRegistry: SharedTableRegistry;
164
166
  SlimContentProvider: SlimContentProvider;
167
+ SlimService: SlimService;
165
168
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
166
169
  SnippetService: SnippetService;
167
170
  SocialService: SocialService;
@@ -260,6 +263,7 @@ interface CreatableInstances {
260
263
  AudioRecorder: AudioRecorder;
261
264
  AudioReverb: AudioReverb;
262
265
  AudioSearchParams: AudioSearchParams;
266
+ AudioSpeechToText: AudioSpeechToText;
263
267
  AudioTextToSpeech: AudioTextToSpeech;
264
268
  AuroraScript: AuroraScript;
265
269
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -577,7 +581,6 @@ interface Instances extends Services, CreatableInstances {
577
581
  FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
578
582
  FacsImportData: FacsImportData;
579
583
  Feature: Feature;
580
- FeedPages: FeedPages;
581
584
  FormFactorPart: FormFactorPart;
582
585
  FriendPages: FriendPages;
583
586
  GenericSettings: GenericSettings;
@@ -641,6 +644,7 @@ interface Instances extends Services, CreatableInstances {
641
644
  PostEffect: PostEffect;
642
645
  PVAdornment: PVAdornment;
643
646
  PVInstance: PVInstance;
647
+ RecommendationPages: RecommendationPages;
644
648
  RobloxSerializableInstance: RobloxSerializableInstance;
645
649
  RootImportData: RootImportData;
646
650
  ScreenshotHud: ScreenshotHud;
@@ -3622,6 +3626,12 @@ interface AssetService extends Instance {
3622
3626
  * @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
3623
3627
  */
3624
3628
  CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
3629
+ /**
3630
+ * - **ThreadSafety**: Unsafe
3631
+ *
3632
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
3633
+ */
3634
+ CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
3625
3635
  /**
3626
3636
  * Uploads a new asset to Roblox from the given object.
3627
3637
  *
@@ -4916,6 +4926,8 @@ interface AudioEmitter extends Instance {
4916
4926
  */
4917
4927
  GetAngleAttenuation(this: AudioEmitter): object;
4918
4928
  /**
4929
+ * Calculates how audible this emitter is for a particular `AudioListener`.
4930
+ *
4919
4931
  * - **ThreadSafety**: Unsafe
4920
4932
  *
4921
4933
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetAudibilityFor)
@@ -4951,6 +4963,8 @@ interface AudioEmitter extends Instance {
4951
4963
  */
4952
4964
  GetInputPins(this: AudioEmitter): Array<unknown>;
4953
4965
  /**
4966
+ * Lists all `AudioListeners` that are capable of hearing this emitter.
4967
+ *
4954
4968
  * - **ThreadSafety**: Unsafe
4955
4969
  *
4956
4970
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetInteractingListeners)
@@ -5450,6 +5464,8 @@ interface AudioListener extends Instance {
5450
5464
  */
5451
5465
  GetAngleAttenuation(this: AudioListener): object;
5452
5466
  /**
5467
+ * Calculates how audible an `AudioEmitter` is for this listener
5468
+ *
5453
5469
  * - **ThreadSafety**: Unsafe
5454
5470
  *
5455
5471
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetAudibilityFor)
@@ -5485,6 +5501,8 @@ interface AudioListener extends Instance {
5485
5501
  */
5486
5502
  GetInputPins(this: AudioListener): Array<unknown>;
5487
5503
  /**
5504
+ * Lists all `AudioEmitters` that this listener is capable of hearing.
5505
+ *
5488
5506
  * - **ThreadSafety**: Unsafe
5489
5507
  *
5490
5508
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetInteractingEmitters)
@@ -6138,6 +6156,54 @@ interface AudioSearchParams extends Instance {
6138
6156
  */
6139
6157
  Title: string;
6140
6158
  }
6159
+ /**
6160
+ * - **Tags**: NotBrowsable
6161
+ *
6162
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
6163
+ */
6164
+ interface AudioSpeechToText extends Instance {
6165
+ /**
6166
+ * **DO NOT USE!**
6167
+ *
6168
+ * This field exists to force TypeScript to recognize this as a nominal type
6169
+ * @hidden
6170
+ * @deprecated
6171
+ */
6172
+ readonly _nominal_AudioSpeechToText: unique symbol;
6173
+ /**
6174
+ * - **ThreadSafety**: ReadSafe
6175
+ *
6176
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Enabled)
6177
+ */
6178
+ Enabled: boolean;
6179
+ /**
6180
+ * - **ThreadSafety**: ReadSafe
6181
+ *
6182
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Text)
6183
+ */
6184
+ Text: string;
6185
+ /**
6186
+ * - **ThreadSafety**: ReadSafe
6187
+ * - **Tags**: NotReplicated
6188
+ *
6189
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#VoiceDetected)
6190
+ */
6191
+ readonly VoiceDetected: boolean;
6192
+ /**
6193
+ * - **ThreadSafety**: Unsafe
6194
+ *
6195
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
6196
+ * @param this
6197
+ * @param pin
6198
+ */
6199
+ GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
6200
+ /**
6201
+ * - **ThreadSafety**: Unsafe
6202
+ *
6203
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#WiringChanged)
6204
+ */
6205
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
6206
+ }
6141
6207
  /**
6142
6208
  * Plays text as speech audio.
6143
6209
  *
@@ -6348,6 +6414,12 @@ interface AuroraScriptObject extends Instance {
6348
6414
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#FrameId)
6349
6415
  */
6350
6416
  FrameId: number;
6417
+ /**
6418
+ * - **ThreadSafety**: ReadSafe
6419
+ *
6420
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#LODLevel)
6421
+ */
6422
+ LODLevel: number;
6351
6423
  }
6352
6424
  /**
6353
6425
  * - **Tags**: NotCreatable, Service
@@ -6454,6 +6526,12 @@ interface AuroraService extends Instance {
6454
6526
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetPropertyIsInput)
6455
6527
  */
6456
6528
  SetPropertyIsInput(this: AuroraService, target: Instance, propertyName: string, isInput: boolean): void;
6529
+ /**
6530
+ * - **ThreadSafety**: Unsafe
6531
+ *
6532
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#ShowDebugVisualizer)
6533
+ */
6534
+ ShowDebugVisualizer(this: AuroraService, state: boolean): void;
6457
6535
  /**
6458
6536
  * - **ThreadSafety**: Unsafe
6459
6537
  *
@@ -6658,12 +6736,14 @@ interface AvatarCreationService extends Instance {
6658
6736
  */
6659
6737
  LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
6660
6738
  /**
6739
+ * Prepares in-experience avatar for preview.
6740
+ *
6661
6741
  * - **ThreadSafety**: Unsafe
6662
6742
  * - **Tags**: Yields
6663
6743
  *
6664
6744
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PrepareAvatarForPreviewAsync)
6665
6745
  * @param this A service to support developer avatar creators.
6666
- * @param humanoidModel
6746
+ * @param humanoidModel The `Model` containing `MeshPart` children with `WrapDeformer` instances that require HSR data updating for preview.
6667
6747
  */
6668
6748
  PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
6669
6749
  /**
@@ -6741,6 +6821,8 @@ interface AvatarCreationService extends Instance {
6741
6821
  */
6742
6822
  ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
6743
6823
  /**
6824
+ * Fires when an in-experience-created avatar's moderation status has been updated from pending.
6825
+ *
6744
6826
  * - **ThreadSafety**: Unsafe
6745
6827
  *
6746
6828
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarModerationCompleted)
@@ -14557,6 +14639,21 @@ interface ExperienceStateCaptureService extends Instance {
14557
14639
  */
14558
14640
  readonly _nominal_ExperienceStateCaptureService: unique symbol;
14559
14641
  }
14642
+ /**
14643
+ * - **Tags**: NotCreatable, Service, NotReplicated
14644
+ *
14645
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExperienceStateRecordingService)
14646
+ */
14647
+ interface ExperienceStateRecordingService extends Instance {
14648
+ /**
14649
+ * **DO NOT USE!**
14650
+ *
14651
+ * This field exists to force TypeScript to recognize this as a nominal type
14652
+ * @hidden
14653
+ * @deprecated
14654
+ */
14655
+ readonly _nominal_ExperienceStateRecordingService: unique symbol;
14656
+ }
14560
14657
  /**
14561
14658
  * - **Tags**: NotReplicated
14562
14659
  *
@@ -15057,42 +15154,6 @@ interface FeatureRestrictionManager extends Instance {
15057
15154
  */
15058
15155
  readonly _nominal_FeatureRestrictionManager: unique symbol;
15059
15156
  }
15060
- /**
15061
- * - **Tags**: NotCreatable, Service
15062
- *
15063
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
15064
- */
15065
- interface FeedService extends Instance {
15066
- /**
15067
- * **DO NOT USE!**
15068
- *
15069
- * This field exists to force TypeScript to recognize this as a nominal type
15070
- * @hidden
15071
- * @deprecated
15072
- */
15073
- readonly _nominal_FeedService: unique symbol;
15074
- /**
15075
- * - **ThreadSafety**: Unsafe
15076
- * - **Tags**: Yields
15077
- *
15078
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#BatchRemoveFeedItemsAsync)
15079
- */
15080
- BatchRemoveFeedItemsAsync(this: FeedService, feedItemIds: Array<unknown>): void;
15081
- /**
15082
- * - **ThreadSafety**: Unsafe
15083
- * - **Tags**: Yields
15084
- *
15085
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#GetFeedItemsAsync)
15086
- */
15087
- GetFeedItemsAsync(this: FeedService, getFeedRequest: object): FeedPages;
15088
- /**
15089
- * - **ThreadSafety**: Unsafe
15090
- * - **Tags**: Yields
15091
- *
15092
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#RegisterFeedItemsAsync)
15093
- */
15094
- RegisterFeedItemsAsync(this: FeedService, registerFeedItemsRequest: object): object;
15095
- }
15096
15157
  /**
15097
15158
  * A particle emitter with the visual aesthetic of fire.
15098
15159
  *
@@ -17513,6 +17574,12 @@ interface ScrollingFrame extends GuiObject {
17513
17574
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#BottomImage)
17514
17575
  */
17515
17576
  BottomImage: ContentId;
17577
+ /**
17578
+ * - **ThreadSafety**: ReadSafe
17579
+ *
17580
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#BottomImageContent)
17581
+ */
17582
+ BottomImageContent: Content;
17516
17583
  /**
17517
17584
  * Reflects the **current** positional offset of the canvas within the frame, in pixels, and sets the position of scroll bars accordingly.
17518
17585
  *
@@ -17553,6 +17620,12 @@ interface ScrollingFrame extends GuiObject {
17553
17620
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#MidImage)
17554
17621
  */
17555
17622
  MidImage: ContentId;
17623
+ /**
17624
+ * - **ThreadSafety**: ReadSafe
17625
+ *
17626
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#MidImageContent)
17627
+ */
17628
+ MidImageContent: Content;
17556
17629
  /**
17557
17630
  * Determines how the rendered scroll bar images are colorized.
17558
17631
  *
@@ -17601,6 +17674,12 @@ interface ScrollingFrame extends GuiObject {
17601
17674
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#TopImage)
17602
17675
  */
17603
17676
  TopImage: ContentId;
17677
+ /**
17678
+ * - **ThreadSafety**: ReadSafe
17679
+ *
17680
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#TopImageContent)
17681
+ */
17682
+ TopImageContent: Content;
17604
17683
  /**
17605
17684
  * Indicates whether `CanvasSize` is inset by `ScrollBarThickness` on the vertical axis.
17606
17685
  *
@@ -23225,6 +23304,12 @@ interface InputBinding extends Instance {
23225
23304
  * @deprecated
23226
23305
  */
23227
23306
  readonly _nominal_InputBinding: unique symbol;
23307
+ /**
23308
+ * - **ThreadSafety**: ReadSafe
23309
+ *
23310
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Backward)
23311
+ */
23312
+ Backward: Enum.KeyCode;
23228
23313
  /**
23229
23314
  * Specifies an alternate `KeyCode` for dispatching directionally "down" inputs to the parent `InputAction`.
23230
23315
  *
@@ -23233,6 +23318,12 @@ interface InputBinding extends Instance {
23233
23318
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Down)
23234
23319
  */
23235
23320
  Down: Enum.KeyCode;
23321
+ /**
23322
+ * - **ThreadSafety**: ReadSafe
23323
+ *
23324
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Forward)
23325
+ */
23326
+ Forward: Enum.KeyCode;
23236
23327
  /**
23237
23328
  * Specifies the `KeyCode` which triggers the parent `InputAction`.
23238
23329
  *
@@ -25507,6 +25598,8 @@ interface MLService extends Instance {
25507
25598
  * - **Tags**: Yields
25508
25599
  *
25509
25600
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLService#CreateSessionAsync)
25601
+ * @param this
25602
+ * @param assetId
25510
25603
  */
25511
25604
  CreateSessionAsync(this: MLService, assetId: string): MLSession;
25512
25605
  }
@@ -26176,12 +26269,14 @@ interface MemoryStoreQueue extends Instance {
26176
26269
  */
26177
26270
  AddAsync(this: MemoryStoreQueue, value: unknown, expiration: number, priority?: number): void;
26178
26271
  /**
26272
+ * Gets the size of the queue.
26273
+ *
26179
26274
  * - **ThreadSafety**: Unsafe
26180
26275
  * - **Tags**: Yields
26181
26276
  *
26182
26277
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreQueue#GetSizeAsync)
26183
26278
  * @param this Provides access to a queue within MemoryStore.
26184
- * @param excludeInvisible
26279
+ * @param excludeInvisible Determines whether to exclude invisible items from the size count.
26185
26280
  */
26186
26281
  GetSizeAsync(this: MemoryStoreQueue, excludeInvisible?: boolean): number;
26187
26282
  /**
@@ -26322,6 +26417,8 @@ interface MemoryStoreSortedMap extends Instance {
26322
26417
  sortKey?: string | number;
26323
26418
  }>;
26324
26419
  /**
26420
+ * Gets the size of the sorted map.
26421
+ *
26325
26422
  * - **ThreadSafety**: Unsafe
26326
26423
  * - **Tags**: Yields
26327
26424
  *
@@ -26489,6 +26586,46 @@ interface MetaBreakpointManager extends Instance {
26489
26586
  */
26490
26587
  readonly _nominal_MetaBreakpointManager: unique symbol;
26491
26588
  }
26589
+ /**
26590
+ * - **Tags**: NotCreatable, Service, NotReplicated
26591
+ *
26592
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation)
26593
+ */
26594
+ interface Moderation extends Instance {
26595
+ /**
26596
+ * **DO NOT USE!**
26597
+ *
26598
+ * This field exists to force TypeScript to recognize this as a nominal type
26599
+ * @hidden
26600
+ * @deprecated
26601
+ */
26602
+ readonly _nominal_Moderation: unique symbol;
26603
+ /**
26604
+ * - **ThreadSafety**: Unsafe
26605
+ * - **Tags**: Yields
26606
+ *
26607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalCreateReviewableContentAsync)
26608
+ * @param this
26609
+ * @param config
26610
+ */
26611
+ InternalCreateReviewableContentAsync(this: Moderation, config: object): string;
26612
+ /**
26613
+ * - **ThreadSafety**: Unsafe
26614
+ * - **Tags**: Yields
26615
+ *
26616
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalRequestReviewableContentReviewAsync)
26617
+ * @param this
26618
+ * @param config
26619
+ */
26620
+ InternalRequestReviewableContentReviewAsync(this: Moderation, config: object): void;
26621
+ /**
26622
+ * - **ThreadSafety**: Unsafe
26623
+ *
26624
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalProcessReviewableContentEvent)
26625
+ * @param event
26626
+ */
26627
+ InternalProcessReviewableContentEvent: ((event: object) => boolean) | undefined;
26628
+ }
26492
26629
  /**
26493
26630
  * Legacy object that contains members useful for pointer input.
26494
26631
  *
@@ -28449,6 +28586,9 @@ interface Terrain extends BasePart {
28449
28586
  * - **Tags**: CustomLuaState
28450
28587
  *
28451
28588
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ClearVoxelsAsync_beta)
28589
+ * @param this Terrain lets you to create dynamically morphable environments.
28590
+ * @param region
28591
+ * @param channelIds
28452
28592
  */
28453
28593
  ClearVoxelsAsync_beta(this: Terrain, region: Region3, channelIds: Array<unknown>): void;
28454
28594
  /**
@@ -28580,6 +28720,10 @@ interface Terrain extends BasePart {
28580
28720
  * - **Tags**: CustomLuaState
28581
28721
  *
28582
28722
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#IterateVoxelsAsync_beta)
28723
+ * @param this Terrain lets you to create dynamically morphable environments.
28724
+ * @param region
28725
+ * @param resolution
28726
+ * @param channelIds
28583
28727
  */
28584
28728
  IterateVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainIterateOperation;
28585
28729
  /**
@@ -28587,6 +28731,10 @@ interface Terrain extends BasePart {
28587
28731
  * - **Tags**: CustomLuaState
28588
28732
  *
28589
28733
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ModifyVoxelsAsync_beta)
28734
+ * @param this Terrain lets you to create dynamically morphable environments.
28735
+ * @param region
28736
+ * @param resolution
28737
+ * @param channelIds
28590
28738
  */
28591
28739
  ModifyVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainModifyOperation;
28592
28740
  /**
@@ -28641,6 +28789,10 @@ interface Terrain extends BasePart {
28641
28789
  * - **Tags**: CustomLuaState
28642
28790
  *
28643
28791
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ReadVoxelsAsync_beta)
28792
+ * @param this Terrain lets you to create dynamically morphable environments.
28793
+ * @param region
28794
+ * @param resolution
28795
+ * @param channelIds
28644
28796
  */
28645
28797
  ReadVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainReadOperation;
28646
28798
  /**
@@ -28788,6 +28940,10 @@ interface Terrain extends BasePart {
28788
28940
  * - **Tags**: CustomLuaState
28789
28941
  *
28790
28942
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#WriteVoxelsAsync_beta)
28943
+ * @param this Terrain lets you to create dynamically morphable environments.
28944
+ * @param region
28945
+ * @param resolution
28946
+ * @param channelIds
28791
28947
  */
28792
28948
  WriteVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainWriteOperation;
28793
28949
  }
@@ -29586,13 +29742,13 @@ interface Model extends PVInstance {
29586
29742
  */
29587
29743
  WorldPivot: CFrame;
29588
29744
  /**
29589
- * 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.
29745
+ * 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.
29590
29746
  *
29591
29747
  * - **ThreadSafety**: Unsafe
29592
29748
  *
29593
29749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#AddPersistentPlayer)
29594
29750
  * @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.
29595
- * @param playerInstance
29751
+ * @param playerInstance The `Player` to make this model persistent for.
29596
29752
  */
29597
29753
  AddPersistentPlayer(this: Model, playerInstance?: Player): void;
29598
29754
  /**
@@ -29719,13 +29875,13 @@ interface Model extends PVInstance {
29719
29875
  */
29720
29876
  MoveTo(this: Model, position: Vector3): void;
29721
29877
  /**
29722
- * 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.
29878
+ * 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.
29723
29879
  *
29724
29880
  * - **ThreadSafety**: Unsafe
29725
29881
  *
29726
29882
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#RemovePersistentPlayer)
29727
29883
  * @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.
29728
- * @param playerInstance
29884
+ * @param playerInstance The `Player` to make this model no longer persistent for.
29729
29885
  */
29730
29886
  RemovePersistentPlayer(this: Model, playerInstance?: Player): void;
29731
29887
  /**
@@ -30765,21 +30921,6 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
30765
30921
  */
30766
30922
  readonly _nominal_DataStoreVersionPages: unique symbol;
30767
30923
  }
30768
- /**
30769
- * - **Tags**: NotCreatable, NotReplicated
30770
- *
30771
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
30772
- */
30773
- interface FeedPages extends Pages {
30774
- /**
30775
- * **DO NOT USE!**
30776
- *
30777
- * This field exists to force TypeScript to recognize this as a nominal type
30778
- * @hidden
30779
- * @deprecated
30780
- */
30781
- readonly _nominal_FeedPages: unique symbol;
30782
- }
30783
30924
  /**
30784
30925
  * A special version of `Pages` that contains information about a player's friends.
30785
30926
  *
@@ -30871,6 +31012,21 @@ interface OutfitPages extends Pages<ReadonlyArray<{
30871
31012
  */
30872
31013
  readonly _nominal_OutfitPages: unique symbol;
30873
31014
  }
31015
+ /**
31016
+ * - **Tags**: NotCreatable, NotReplicated
31017
+ *
31018
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationPages)
31019
+ */
31020
+ interface RecommendationPages extends Pages {
31021
+ /**
31022
+ * **DO NOT USE!**
31023
+ *
31024
+ * This field exists to force TypeScript to recognize this as a nominal type
31025
+ * @hidden
31026
+ * @deprecated
31027
+ */
31028
+ readonly _nominal_RecommendationPages: unique symbol;
31029
+ }
30874
31030
  /**
30875
31031
  * - **Tags**: NotCreatable, NotReplicated
30876
31032
  *
@@ -32103,6 +32259,8 @@ interface Player extends Instance {
32103
32259
  */
32104
32260
  Neutral: boolean;
32105
32261
  /**
32262
+ * A unique identifier of the party a `Player` belongs to.
32263
+ *
32106
32264
  * - **ThreadSafety**: ReadSafe
32107
32265
  * - **Tags**: Hidden, NotReplicated
32108
32266
  *
@@ -34108,6 +34266,61 @@ interface RTAnimationTracker extends Instance {
34108
34266
  */
34109
34267
  readonly TrackerPrompt: RBXScriptSignal<(prompt: Enum.TrackerPromptEvent) => void>;
34110
34268
  }
34269
+ /**
34270
+ * - **Tags**: NotCreatable, Service
34271
+ *
34272
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService)
34273
+ */
34274
+ interface RecommendationService extends Instance {
34275
+ /**
34276
+ * **DO NOT USE!**
34277
+ *
34278
+ * This field exists to force TypeScript to recognize this as a nominal type
34279
+ * @hidden
34280
+ * @deprecated
34281
+ */
34282
+ readonly _nominal_RecommendationService: unique symbol;
34283
+ /**
34284
+ * - **ThreadSafety**: Unsafe
34285
+ *
34286
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#LogActionEvent)
34287
+ */
34288
+ LogActionEvent(this: RecommendationService, actionType: CastsToEnum<Enum.RecommendationActionType>, itemId: string, tracingId: string, actionEventDetails?: object): void;
34289
+ /**
34290
+ * - **ThreadSafety**: Unsafe
34291
+ *
34292
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#LogImpressionEvent)
34293
+ */
34294
+ LogImpressionEvent(this: RecommendationService, impressionType: CastsToEnum<Enum.RecommendationImpressionType>, itemId: string, tracingId: string, impressionEventDetails?: object): void;
34295
+ /**
34296
+ * - **ThreadSafety**: Unsafe
34297
+ * - **Tags**: Yields
34298
+ *
34299
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GenerateItemListAsync)
34300
+ */
34301
+ GenerateItemListAsync(this: RecommendationService, generateRecommendationItemListRequest: object): RecommendationPages;
34302
+ /**
34303
+ * - **ThreadSafety**: Unsafe
34304
+ * - **Tags**: Yields
34305
+ *
34306
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RegisterItemAsync)
34307
+ */
34308
+ RegisterItemAsync(this: RecommendationService, registerRecommendationItemsRequest: object): object;
34309
+ /**
34310
+ * - **ThreadSafety**: Unsafe
34311
+ * - **Tags**: Yields
34312
+ *
34313
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RemoveItemAsync)
34314
+ */
34315
+ RemoveItemAsync(this: RecommendationService, itemId: string): void;
34316
+ /**
34317
+ * - **ThreadSafety**: Unsafe
34318
+ * - **Tags**: Yields
34319
+ *
34320
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#UpdateItemAsync)
34321
+ */
34322
+ UpdateItemAsync(this: RecommendationService, updateRecommendationItemRequest: object): void;
34323
+ }
34111
34324
  /**
34112
34325
  * - **Tags**: NotCreatable, Service, NotReplicated
34113
34326
  *
@@ -35832,6 +36045,8 @@ interface Sky extends Instance {
35832
36045
  */
35833
36046
  SkyboxLf: ContentId;
35834
36047
  /**
36048
+ * Angle of the skybox, in degrees, with rotation order of **Y**, **X**, **Z**.
36049
+ *
35835
36050
  * - **ThreadSafety**: ReadSafe
35836
36051
  *
35837
36052
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
@@ -35878,6 +36093,21 @@ interface Sky extends Instance {
35878
36093
  */
35879
36094
  SunTextureId: ContentId;
35880
36095
  }
36096
+ /**
36097
+ * - **Tags**: NotCreatable, Service, NotReplicated
36098
+ *
36099
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimService)
36100
+ */
36101
+ interface SlimService extends Instance {
36102
+ /**
36103
+ * **DO NOT USE!**
36104
+ *
36105
+ * This field exists to force TypeScript to recognize this as a nominal type
36106
+ * @hidden
36107
+ * @deprecated
36108
+ */
36109
+ readonly _nominal_SlimService: unique symbol;
36110
+ }
35881
36111
  /**
35882
36112
  * A particle emitter with the visual aesthetic of smoke.
35883
36113
  *
@@ -35998,11 +36228,14 @@ interface SocialService extends Instance {
35998
36228
  */
35999
36229
  readonly _nominal_SocialService: unique symbol;
36000
36230
  /**
36231
+ * Returns a table of all presently connected `Player` objects whose `Player.PartyId` property matches the passed `partyId`.
36232
+ *
36001
36233
  * - **ThreadSafety**: Unsafe
36002
36234
  *
36003
36235
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPlayersByPartyId)
36004
36236
  * @param this Facilitates social functions that impact relationships made on the Roblox platform.
36005
36237
  * @param partyId
36238
+ * @returns A table of `Player` objects whose `Player.PartyId` property matches the passed `partyId`.
36006
36239
  */
36007
36240
  GetPlayersByPartyId(this: SocialService, partyId: string): Array<Instance>;
36008
36241
  /**
@@ -36072,14 +36305,35 @@ interface SocialService extends Instance {
36072
36305
  */
36073
36306
  CanSendGameInviteAsync(this: SocialService, player: Player, recipientId?: number): boolean;
36074
36307
  /**
36308
+ * - **ThreadSafety**: Unsafe
36309
+ * - **Tags**: Yields
36310
+ *
36311
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetEventRsvpStatusAsync)
36312
+ * @param this Facilitates social functions that impact relationships made on the Roblox platform.
36313
+ * @param eventId
36314
+ */
36315
+ GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
36316
+ /**
36317
+ * Returns an array of dictionaries containing data for all members of the specified party who are currently in the experience.
36318
+ *
36075
36319
  * - **ThreadSafety**: Unsafe
36076
36320
  * - **Tags**: Yields
36077
36321
  *
36078
36322
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
36079
36323
  * @param this Facilitates social functions that impact relationships made on the Roblox platform.
36080
36324
  * @param partyId
36325
+ * @returns An array of dictionaries representing the members of the specified party who are currently in the experience.
36081
36326
  */
36082
36327
  GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
36328
+ /**
36329
+ * - **ThreadSafety**: Unsafe
36330
+ * - **Tags**: Yields
36331
+ *
36332
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptRsvpToEventAsync)
36333
+ * @param this Facilitates social functions that impact relationships made on the Roblox platform.
36334
+ * @param eventId
36335
+ */
36336
+ PromptRsvpToEventAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
36083
36337
  /**
36084
36338
  * Fires when a player's call invite state changes.
36085
36339
  *
@@ -40240,6 +40494,8 @@ interface TextFilterResult extends Instance {
40240
40494
  */
40241
40495
  readonly _nominal_TextFilterResult: unique symbol;
40242
40496
  /**
40497
+ * **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.
40498
+ *
40243
40499
  * Returns the text in a properly filtered manner for the specified `Player.UserId`.
40244
40500
  *
40245
40501
  * - **ThreadSafety**: Unsafe
@@ -44411,6 +44667,8 @@ interface MLSession extends RBXObject {
44411
44667
  * - **Tags**: Yields
44412
44668
  *
44413
44669
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLSession#ForwardAsync)
44670
+ * @param this
44671
+ * @param data
44414
44672
  */
44415
44673
  ForwardAsync(this: MLSession, data: object): object;
44416
44674
  }
@@ -44432,6 +44690,8 @@ interface TerrainIterateOperation extends RBXObject {
44432
44690
  * - **ThreadSafety**: Unsafe
44433
44691
  *
44434
44692
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation#CommitBlock)
44693
+ * @param this
44694
+ * @param block
44435
44695
  */
44436
44696
  CommitBlock(this: TerrainIterateOperation, block: object): RBXScriptSignal;
44437
44697
  /**
@@ -44459,6 +44719,8 @@ interface TerrainModifyOperation extends RBXObject {
44459
44719
  * - **ThreadSafety**: Unsafe
44460
44720
  *
44461
44721
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation#CommitBlock)
44722
+ * @param this
44723
+ * @param block
44462
44724
  */
44463
44725
  CommitBlock(this: TerrainModifyOperation, block: object): RBXScriptSignal;
44464
44726
  /**
@@ -44507,6 +44769,8 @@ interface TerrainWriteOperation extends RBXObject {
44507
44769
  * - **ThreadSafety**: Unsafe
44508
44770
  *
44509
44771
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#CommitBlock)
44772
+ * @param this
44773
+ * @param block
44510
44774
  */
44511
44775
  CommitBlock(this: TerrainWriteOperation, block: object): RBXScriptSignal;
44512
44776
  /**
@@ -44514,6 +44778,7 @@ interface TerrainWriteOperation extends RBXObject {
44514
44778
  * - **Tags**: CustomLuaState
44515
44779
  *
44516
44780
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#GetBlock)
44781
+ * @param this
44517
44782
  */
44518
44783
  GetBlock(this: TerrainWriteOperation): object;
44519
44784
  }
@@ -68,13 +68,13 @@ interface Services {
68
68
  ExperienceNotificationService: ExperienceNotificationService;
69
69
  ExperienceService: ExperienceService;
70
70
  ExperienceStateCaptureService: ExperienceStateCaptureService;
71
+ ExperienceStateRecordingService: ExperienceStateRecordingService;
71
72
  ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
72
73
  FaceAnimatorService: FaceAnimatorService;
73
74
  FacialAgeEstimationService: FacialAgeEstimationService;
74
75
  FacialAnimationRecordingService: FacialAnimationRecordingService;
75
76
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
76
77
  FeatureRestrictionManager: FeatureRestrictionManager;
77
- FeedService: FeedService;
78
78
  GamepadService: GamepadService;
79
79
  GamePassService: GamePassService;
80
80
  GenerationService: GenerationService;
@@ -116,6 +116,7 @@ interface Services {
116
116
  MetaBreakpointManager: MetaBreakpointManager;
117
117
  MLModelDeliveryService: MLModelDeliveryService;
118
118
  MLService: MLService;
119
+ Moderation: Moderation;
119
120
  NetworkClient: NetworkClient;
120
121
  NetworkServer: NetworkServer;
121
122
  NetworkSettings: NetworkSettings;
@@ -144,6 +145,7 @@ interface Services {
144
145
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
145
146
  ProximityPromptService: ProximityPromptService;
146
147
  PublishService: PublishService;
148
+ RecommendationService: RecommendationService;
147
149
  ReflectionService: ReflectionService;
148
150
  RemoteCursorService: RemoteCursorService;
149
151
  RemoteDebuggerServer: RemoteDebuggerServer;
@@ -175,6 +177,7 @@ interface Services {
175
177
  SessionService: SessionService;
176
178
  SharedTableRegistry: SharedTableRegistry;
177
179
  SlimContentProvider: SlimContentProvider;
180
+ SlimService: SlimService;
178
181
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
179
182
  SnippetService: SnippetService;
180
183
  SocialService: SocialService;
@@ -278,6 +281,7 @@ interface CreatableInstances {
278
281
  AudioRecorder: AudioRecorder;
279
282
  AudioReverb: AudioReverb;
280
283
  AudioSearchParams: AudioSearchParams;
284
+ AudioSpeechToText: AudioSpeechToText;
281
285
  AudioTextToSpeech: AudioTextToSpeech;
282
286
  AuroraScript: AuroraScript;
283
287
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -603,7 +607,6 @@ interface Instances extends Services, CreatableInstances {
603
607
  FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
604
608
  FacsImportData: FacsImportData;
605
609
  Feature: Feature;
606
- FeedPages: FeedPages;
607
610
  File: File;
608
611
  FormFactorPart: FormFactorPart;
609
612
  FriendPages: FriendPages;
@@ -684,6 +687,7 @@ interface Instances extends Services, CreatableInstances {
684
687
  PVAdornment: PVAdornment;
685
688
  PVInstance: PVInstance;
686
689
  QWidgetPluginGui: QWidgetPluginGui;
690
+ RecommendationPages: RecommendationPages;
687
691
  RobloxSerializableInstance: RobloxSerializableInstance;
688
692
  RootImportData: RootImportData;
689
693
  RunningAverageItemDouble: RunningAverageItemDouble;
@@ -1822,6 +1826,21 @@ interface AudioSearchParams extends Instance {
1822
1826
  */
1823
1827
  readonly _nominal_AudioSearchParams: unique symbol;
1824
1828
  }
1829
+ /**
1830
+ * - **Tags**: NotBrowsable
1831
+ *
1832
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
1833
+ */
1834
+ interface AudioSpeechToText extends Instance {
1835
+ /**
1836
+ * **DO NOT USE!**
1837
+ *
1838
+ * This field exists to force TypeScript to recognize this as a nominal type
1839
+ * @hidden
1840
+ * @deprecated
1841
+ */
1842
+ readonly _nominal_AudioSpeechToText: unique symbol;
1843
+ }
1825
1844
  /**
1826
1845
  * Plays text as speech audio.
1827
1846
  *
@@ -4594,6 +4613,21 @@ interface ExperienceStateCaptureService extends Instance {
4594
4613
  */
4595
4614
  readonly _nominal_ExperienceStateCaptureService: unique symbol;
4596
4615
  }
4616
+ /**
4617
+ * - **Tags**: NotCreatable, Service, NotReplicated
4618
+ *
4619
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExperienceStateRecordingService)
4620
+ */
4621
+ interface ExperienceStateRecordingService extends Instance {
4622
+ /**
4623
+ * **DO NOT USE!**
4624
+ *
4625
+ * This field exists to force TypeScript to recognize this as a nominal type
4626
+ * @hidden
4627
+ * @deprecated
4628
+ */
4629
+ readonly _nominal_ExperienceStateRecordingService: unique symbol;
4630
+ }
4597
4631
  /**
4598
4632
  * - **Tags**: NotReplicated
4599
4633
  *
@@ -5326,21 +5360,6 @@ interface FeatureRestrictionManager extends Instance {
5326
5360
  */
5327
5361
  readonly _nominal_FeatureRestrictionManager: unique symbol;
5328
5362
  }
5329
- /**
5330
- * - **Tags**: NotCreatable, Service
5331
- *
5332
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
5333
- */
5334
- interface FeedService extends Instance {
5335
- /**
5336
- * **DO NOT USE!**
5337
- *
5338
- * This field exists to force TypeScript to recognize this as a nominal type
5339
- * @hidden
5340
- * @deprecated
5341
- */
5342
- readonly _nominal_FeedService: unique symbol;
5343
- }
5344
5363
  /**
5345
5364
  * An asset loaded from a file on disk.
5346
5365
  *
@@ -8118,6 +8137,21 @@ interface MetaBreakpointManager extends Instance {
8118
8137
  */
8119
8138
  readonly _nominal_MetaBreakpointManager: unique symbol;
8120
8139
  }
8140
+ /**
8141
+ * - **Tags**: NotCreatable, Service, NotReplicated
8142
+ *
8143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation)
8144
+ */
8145
+ interface Moderation extends Instance {
8146
+ /**
8147
+ * **DO NOT USE!**
8148
+ *
8149
+ * This field exists to force TypeScript to recognize this as a nominal type
8150
+ * @hidden
8151
+ * @deprecated
8152
+ */
8153
+ readonly _nominal_Moderation: unique symbol;
8154
+ }
8121
8155
  /**
8122
8156
  * Legacy object that contains members useful for pointer input.
8123
8157
  *
@@ -8970,6 +9004,12 @@ interface Workspace extends WorldRoot {
8970
9004
  * @deprecated
8971
9005
  */
8972
9006
  set InterpolationThrottling(value: Enum.InterpolationThrottlingMode);
9007
+ /**
9008
+ * - **ThreadSafety**: ReadSafe
9009
+ *
9010
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#LuauTypeCheckMode)
9011
+ */
9012
+ LuauTypeCheckMode: Enum.LuauTypeCheckMode;
8973
9013
  /**
8974
9014
  * Whether content streaming is enabled for the place.
8975
9015
  *
@@ -9217,21 +9257,6 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
9217
9257
  */
9218
9258
  readonly _nominal_DataStoreVersionPages: unique symbol;
9219
9259
  }
9220
- /**
9221
- * - **Tags**: NotCreatable, NotReplicated
9222
- *
9223
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
9224
- */
9225
- interface FeedPages extends Pages {
9226
- /**
9227
- * **DO NOT USE!**
9228
- *
9229
- * This field exists to force TypeScript to recognize this as a nominal type
9230
- * @hidden
9231
- * @deprecated
9232
- */
9233
- readonly _nominal_FeedPages: unique symbol;
9234
- }
9235
9260
  /**
9236
9261
  * A special version of `Pages` that contains information about a player's friends.
9237
9262
  *
@@ -9323,6 +9348,21 @@ interface OutfitPages extends Pages<ReadonlyArray<{
9323
9348
  */
9324
9349
  readonly _nominal_OutfitPages: unique symbol;
9325
9350
  }
9351
+ /**
9352
+ * - **Tags**: NotCreatable, NotReplicated
9353
+ *
9354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationPages)
9355
+ */
9356
+ interface RecommendationPages extends Pages {
9357
+ /**
9358
+ * **DO NOT USE!**
9359
+ *
9360
+ * This field exists to force TypeScript to recognize this as a nominal type
9361
+ * @hidden
9362
+ * @deprecated
9363
+ */
9364
+ readonly _nominal_RecommendationPages: unique symbol;
9365
+ }
9326
9366
  /**
9327
9367
  * - **Tags**: NotCreatable, NotReplicated
9328
9368
  *
@@ -10663,6 +10703,21 @@ interface RTAnimationTracker extends Instance {
10663
10703
  */
10664
10704
  readonly _nominal_RTAnimationTracker: unique symbol;
10665
10705
  }
10706
+ /**
10707
+ * - **Tags**: NotCreatable, Service
10708
+ *
10709
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService)
10710
+ */
10711
+ interface RecommendationService extends Instance {
10712
+ /**
10713
+ * **DO NOT USE!**
10714
+ *
10715
+ * This field exists to force TypeScript to recognize this as a nominal type
10716
+ * @hidden
10717
+ * @deprecated
10718
+ */
10719
+ readonly _nominal_RecommendationService: unique symbol;
10720
+ }
10666
10721
  /**
10667
10722
  * - **Tags**: NotCreatable, Service, NotReplicated
10668
10723
  *
@@ -11441,7 +11496,7 @@ interface ScriptEditorService extends Instance {
11441
11496
  * @param this This service is used for interacting with `ScriptDocument` instances.
11442
11497
  * @param script
11443
11498
  */
11444
- OpenScriptDocumentAsync(this: ScriptEditorService, script: LuaSourceContainer): unknown;
11499
+ OpenScriptDocumentAsync(this: ScriptEditorService, script: LuaSourceContainer, options?: object): unknown;
11445
11500
  /**
11446
11501
  * Generates new content from the old script and updates the script editor if it's open, or the `Script` instance if the script editor is closed.
11447
11502
  *
@@ -11985,6 +12040,21 @@ interface Sky extends Instance {
11985
12040
  */
11986
12041
  readonly _nominal_Sky: unique symbol;
11987
12042
  }
12043
+ /**
12044
+ * - **Tags**: NotCreatable, Service, NotReplicated
12045
+ *
12046
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimService)
12047
+ */
12048
+ interface SlimService extends Instance {
12049
+ /**
12050
+ * **DO NOT USE!**
12051
+ *
12052
+ * This field exists to force TypeScript to recognize this as a nominal type
12053
+ * @hidden
12054
+ * @deprecated
12055
+ */
12056
+ readonly _nominal_SlimService: unique symbol;
12057
+ }
11988
12058
  /**
11989
12059
  * A particle emitter with the visual aesthetic of smoke.
11990
12060
  *
@@ -3288,6 +3288,33 @@ declare namespace Enum {
3288
3288
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioWindowSize | undefined;
3289
3289
  }
3290
3290
  export type AudioWindowSize = AudioWindowSize.Small | AudioWindowSize.Medium | AudioWindowSize.Large;
3291
+ /**
3292
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode)
3293
+ */
3294
+ export namespace AuthorityMode {
3295
+ /**
3296
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Server)
3297
+ */
3298
+ export interface Server extends globalThis.EnumItem {
3299
+ Name: "Server";
3300
+ Value: 0;
3301
+ EnumType: typeof globalThis.Enum.AuthorityMode;
3302
+ }
3303
+ export const Server: Server;
3304
+ /**
3305
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Automatic)
3306
+ */
3307
+ export interface Automatic extends globalThis.EnumItem {
3308
+ Name: "Automatic";
3309
+ Value: 1;
3310
+ EnumType: typeof globalThis.Enum.AuthorityMode;
3311
+ }
3312
+ export const Automatic: Automatic;
3313
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AuthorityMode>;
3314
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AuthorityMode | undefined;
3315
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AuthorityMode | undefined;
3316
+ }
3317
+ export type AuthorityMode = AuthorityMode.Server | AuthorityMode.Automatic;
3291
3318
  /**
3292
3319
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutoIndentRule)
3293
3320
  */
@@ -11239,60 +11266,6 @@ declare namespace Enum {
11239
11266
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacsActionUnit | undefined;
11240
11267
  }
11241
11268
  export type FacsActionUnit = FacsActionUnit.ChinRaiserUpperLip | FacsActionUnit.ChinRaiser | FacsActionUnit.FlatPucker | FacsActionUnit.Funneler | FacsActionUnit.LowerLipSuck | FacsActionUnit.LipPresser | FacsActionUnit.LipsTogether | FacsActionUnit.MouthLeft | FacsActionUnit.MouthRight | FacsActionUnit.Pucker | FacsActionUnit.UpperLipSuck | FacsActionUnit.LeftCheekPuff | FacsActionUnit.LeftDimpler | FacsActionUnit.LeftLipCornerDown | FacsActionUnit.LeftLowerLipDepressor | FacsActionUnit.LeftLipCornerPuller | FacsActionUnit.LeftLipStretcher | FacsActionUnit.LeftUpperLipRaiser | FacsActionUnit.RightCheekPuff | FacsActionUnit.RightDimpler | FacsActionUnit.RightLipCornerDown | FacsActionUnit.RightLowerLipDepressor | FacsActionUnit.RightLipCornerPuller | FacsActionUnit.RightLipStretcher | FacsActionUnit.RightUpperLipRaiser | FacsActionUnit.JawDrop | FacsActionUnit.JawLeft | FacsActionUnit.JawRight | FacsActionUnit.Corrugator | FacsActionUnit.LeftBrowLowerer | FacsActionUnit.LeftOuterBrowRaiser | FacsActionUnit.LeftNoseWrinkler | FacsActionUnit.LeftInnerBrowRaiser | FacsActionUnit.RightBrowLowerer | FacsActionUnit.RightOuterBrowRaiser | FacsActionUnit.RightInnerBrowRaiser | FacsActionUnit.RightNoseWrinkler | FacsActionUnit.EyesLookDown | FacsActionUnit.EyesLookLeft | FacsActionUnit.EyesLookUp | FacsActionUnit.EyesLookRight | FacsActionUnit.LeftCheekRaiser | FacsActionUnit.LeftEyeUpperLidRaiser | FacsActionUnit.LeftEyeClosed | FacsActionUnit.RightCheekRaiser | FacsActionUnit.RightEyeUpperLidRaiser | FacsActionUnit.RightEyeClosed | FacsActionUnit.TongueDown | FacsActionUnit.TongueOut | FacsActionUnit.TongueUp;
11242
- /**
11243
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType)
11244
- */
11245
- export namespace FeedRankingScoreType {
11246
- /**
11247
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Content)
11248
- */
11249
- export interface Content extends globalThis.EnumItem {
11250
- Name: "Content";
11251
- Value: 0;
11252
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11253
- }
11254
- export const Content: Content;
11255
- /**
11256
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Final)
11257
- */
11258
- export interface Final extends globalThis.EnumItem {
11259
- Name: "Final";
11260
- Value: 1;
11261
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11262
- }
11263
- export const Final: Final;
11264
- /**
11265
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#GameJoin)
11266
- */
11267
- export interface GameJoin extends globalThis.EnumItem {
11268
- Name: "GameJoin";
11269
- Value: 2;
11270
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11271
- }
11272
- export const GameJoin: GameJoin;
11273
- /**
11274
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Interaction)
11275
- */
11276
- export interface Interaction extends globalThis.EnumItem {
11277
- Name: "Interaction";
11278
- Value: 3;
11279
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11280
- }
11281
- export const Interaction: Interaction;
11282
- /**
11283
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Sharing)
11284
- */
11285
- export interface Sharing extends globalThis.EnumItem {
11286
- Name: "Sharing";
11287
- Value: 4;
11288
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
11289
- }
11290
- export const Sharing: Sharing;
11291
- export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FeedRankingScoreType>;
11292
- export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FeedRankingScoreType | undefined;
11293
- export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FeedRankingScoreType | undefined;
11294
- }
11295
- export type FeedRankingScoreType = FeedRankingScoreType.Content | FeedRankingScoreType.Final | FeedRankingScoreType.GameJoin | FeedRankingScoreType.Interaction | FeedRankingScoreType.Sharing;
11296
11269
  /**
11297
11270
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FieldOfViewMode)
11298
11271
  */
@@ -15151,11 +15124,20 @@ declare namespace Enum {
15151
15124
  EnumType: typeof globalThis.Enum.InputActionType;
15152
15125
  }
15153
15126
  export const Direction2D: Direction2D;
15127
+ /**
15128
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction3D)
15129
+ */
15130
+ export interface Direction3D extends globalThis.EnumItem {
15131
+ Name: "Direction3D";
15132
+ Value: 3;
15133
+ EnumType: typeof globalThis.Enum.InputActionType;
15134
+ }
15135
+ export const Direction3D: Direction3D;
15154
15136
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputActionType>;
15155
15137
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputActionType | undefined;
15156
15138
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
15157
15139
  }
15158
- export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D;
15140
+ export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D;
15159
15141
  /**
15160
15142
  * The InputType Enum controls the SurfaceInputs of `Part`.
15161
15143
  *
@@ -19185,6 +19167,42 @@ declare namespace Enum {
19185
19167
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LocationType | undefined;
19186
19168
  }
19187
19169
  export type LocationType = LocationType.Character | LocationType.Camera | LocationType.ObjectPosition;
19170
+ /**
19171
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode)
19172
+ */
19173
+ export namespace LuauTypeCheckMode {
19174
+ /**
19175
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#NoCheck)
19176
+ */
19177
+ export interface NoCheck extends globalThis.EnumItem {
19178
+ Name: "NoCheck";
19179
+ Value: 0;
19180
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
19181
+ }
19182
+ export const NoCheck: NoCheck;
19183
+ /**
19184
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#Nonstrict)
19185
+ */
19186
+ export interface Nonstrict extends globalThis.EnumItem {
19187
+ Name: "Nonstrict";
19188
+ Value: 1;
19189
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
19190
+ }
19191
+ export const Nonstrict: Nonstrict;
19192
+ /**
19193
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#Strict)
19194
+ */
19195
+ export interface Strict extends globalThis.EnumItem {
19196
+ Name: "Strict";
19197
+ Value: 2;
19198
+ EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
19199
+ }
19200
+ export const Strict: Strict;
19201
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LuauTypeCheckMode>;
19202
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LuauTypeCheckMode | undefined;
19203
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
19204
+ }
19205
+ export type LuauTypeCheckMode = LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
19188
19206
  /**
19189
19207
  * The status of the BulkPurchasePrompt after player interaction.
19190
19208
  *
@@ -20514,6 +20532,10 @@ declare namespace Enum {
20514
20532
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
20515
20533
  }
20516
20534
  export const StreamingMesh: StreamingMesh;
20535
+ /**
20536
+ * @deprecated renamed to StreamingMesh
20537
+ */
20538
+ export const Enabled: StreamingMesh;
20517
20539
  /**
20518
20540
  * A lower resolution mesh will not be displayed.
20519
20541
  *
@@ -23975,6 +23997,123 @@ declare namespace Enum {
23975
23997
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RaycastFilterType | undefined;
23976
23998
  }
23977
23999
  export type RaycastFilterType = RaycastFilterType.Exclude | RaycastFilterType.Include;
24000
+ /**
24001
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType)
24002
+ */
24003
+ export namespace RecommendationActionType {
24004
+ /**
24005
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#AddReaction)
24006
+ */
24007
+ export interface AddReaction extends globalThis.EnumItem {
24008
+ Name: "AddReaction";
24009
+ Value: 0;
24010
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24011
+ }
24012
+ export const AddReaction: AddReaction;
24013
+ /**
24014
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#RemoveReaction)
24015
+ */
24016
+ export interface RemoveReaction extends globalThis.EnumItem {
24017
+ Name: "RemoveReaction";
24018
+ Value: 1;
24019
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24020
+ }
24021
+ export const RemoveReaction: RemoveReaction;
24022
+ /**
24023
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Share)
24024
+ */
24025
+ export interface Share extends globalThis.EnumItem {
24026
+ Name: "Share";
24027
+ Value: 2;
24028
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24029
+ }
24030
+ export const Share: Share;
24031
+ /**
24032
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Report)
24033
+ */
24034
+ export interface Report extends globalThis.EnumItem {
24035
+ Name: "Report";
24036
+ Value: 3;
24037
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24038
+ }
24039
+ export const Report: Report;
24040
+ /**
24041
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Comment)
24042
+ */
24043
+ export interface Comment extends globalThis.EnumItem {
24044
+ Name: "Comment";
24045
+ Value: 4;
24046
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24047
+ }
24048
+ export const Comment: Comment;
24049
+ /**
24050
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Play)
24051
+ */
24052
+ export interface Play extends globalThis.EnumItem {
24053
+ Name: "Play";
24054
+ Value: 5;
24055
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24056
+ }
24057
+ export const Play: Play;
24058
+ /**
24059
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Purchase)
24060
+ */
24061
+ export interface Purchase extends globalThis.EnumItem {
24062
+ Name: "Purchase";
24063
+ Value: 6;
24064
+ EnumType: typeof globalThis.Enum.RecommendationActionType;
24065
+ }
24066
+ export const Purchase: Purchase;
24067
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationActionType>;
24068
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationActionType | undefined;
24069
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationActionType | undefined;
24070
+ }
24071
+ export type RecommendationActionType = RecommendationActionType.AddReaction | RecommendationActionType.RemoveReaction | RecommendationActionType.Share | RecommendationActionType.Report | RecommendationActionType.Comment | RecommendationActionType.Play | RecommendationActionType.Purchase;
24072
+ /**
24073
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType)
24074
+ */
24075
+ export namespace RecommendationImpressionType {
24076
+ /**
24077
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#View)
24078
+ */
24079
+ export interface View extends globalThis.EnumItem {
24080
+ Name: "View";
24081
+ Value: 0;
24082
+ EnumType: typeof globalThis.Enum.RecommendationImpressionType;
24083
+ }
24084
+ export const View: View;
24085
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationImpressionType>;
24086
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationImpressionType | undefined;
24087
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationImpressionType | undefined;
24088
+ }
24089
+ export type RecommendationImpressionType = RecommendationImpressionType.View;
24090
+ /**
24091
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility)
24092
+ */
24093
+ export namespace RecommendationItemVisibility {
24094
+ /**
24095
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility#Private)
24096
+ */
24097
+ export interface Private extends globalThis.EnumItem {
24098
+ Name: "Private";
24099
+ Value: 0;
24100
+ EnumType: typeof globalThis.Enum.RecommendationItemVisibility;
24101
+ }
24102
+ export const Private: Private;
24103
+ /**
24104
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility#Public)
24105
+ */
24106
+ export interface Public extends globalThis.EnumItem {
24107
+ Name: "Public";
24108
+ Value: 1;
24109
+ EnumType: typeof globalThis.Enum.RecommendationItemVisibility;
24110
+ }
24111
+ export const Public: Public;
24112
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RecommendationItemVisibility>;
24113
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RecommendationItemVisibility | undefined;
24114
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RecommendationItemVisibility | undefined;
24115
+ }
24116
+ export type RecommendationItemVisibility = RecommendationItemVisibility.Private | RecommendationItemVisibility.Public;
23978
24117
  /**
23979
24118
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RejectCharacterDeletions)
23980
24119
  */
@@ -25057,6 +25196,42 @@ declare namespace Enum {
25057
25196
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RotationType | undefined;
25058
25197
  }
25059
25198
  export type RotationType = RotationType.MovementRelative | RotationType.CameraRelative;
25199
+ /**
25200
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus)
25201
+ */
25202
+ export namespace RsvpStatus {
25203
+ /**
25204
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#None)
25205
+ */
25206
+ export interface None extends globalThis.EnumItem {
25207
+ Name: "None";
25208
+ Value: 0;
25209
+ EnumType: typeof globalThis.Enum.RsvpStatus;
25210
+ }
25211
+ export const None: None;
25212
+ /**
25213
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#Going)
25214
+ */
25215
+ export interface Going extends globalThis.EnumItem {
25216
+ Name: "Going";
25217
+ Value: 1;
25218
+ EnumType: typeof globalThis.Enum.RsvpStatus;
25219
+ }
25220
+ export const Going: Going;
25221
+ /**
25222
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#NotGoing)
25223
+ */
25224
+ export interface NotGoing extends globalThis.EnumItem {
25225
+ Name: "NotGoing";
25226
+ Value: 2;
25227
+ EnumType: typeof globalThis.Enum.RsvpStatus;
25228
+ }
25229
+ export const NotGoing: NotGoing;
25230
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RsvpStatus>;
25231
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RsvpStatus | undefined;
25232
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RsvpStatus | undefined;
25233
+ }
25234
+ export type RsvpStatus = RsvpStatus.None | RsvpStatus.Going | RsvpStatus.NotGoing;
25060
25235
  /**
25061
25236
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RtlTextSupport)
25062
25237
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.857",
3
+ "version": "1.0.859",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },