@rbxts/types 1.0.858 → 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;
@@ -136,6 +136,7 @@ interface Services {
136
136
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
137
137
  ProximityPromptService: ProximityPromptService;
138
138
  PublishService: PublishService;
139
+ RecommendationService: RecommendationService;
139
140
  ReflectionService: ReflectionService;
140
141
  RemoteCursorService: RemoteCursorService;
141
142
  RemoteDebuggerServer: RemoteDebuggerServer;
@@ -163,6 +164,7 @@ interface Services {
163
164
  SessionService: SessionService;
164
165
  SharedTableRegistry: SharedTableRegistry;
165
166
  SlimContentProvider: SlimContentProvider;
167
+ SlimService: SlimService;
166
168
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
167
169
  SnippetService: SnippetService;
168
170
  SocialService: SocialService;
@@ -579,7 +581,6 @@ interface Instances extends Services, CreatableInstances {
579
581
  FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
580
582
  FacsImportData: FacsImportData;
581
583
  Feature: Feature;
582
- FeedPages: FeedPages;
583
584
  FormFactorPart: FormFactorPart;
584
585
  FriendPages: FriendPages;
585
586
  GenericSettings: GenericSettings;
@@ -643,6 +644,7 @@ interface Instances extends Services, CreatableInstances {
643
644
  PostEffect: PostEffect;
644
645
  PVAdornment: PVAdornment;
645
646
  PVInstance: PVInstance;
647
+ RecommendationPages: RecommendationPages;
646
648
  RobloxSerializableInstance: RobloxSerializableInstance;
647
649
  RootImportData: RootImportData;
648
650
  ScreenshotHud: ScreenshotHud;
@@ -3624,6 +3626,12 @@ interface AssetService extends Instance {
3624
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.
3625
3627
  */
3626
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;
3627
3635
  /**
3628
3636
  * Uploads a new asset to Roblox from the given object.
3629
3637
  *
@@ -6185,6 +6193,8 @@ interface AudioSpeechToText extends Instance {
6185
6193
  * - **ThreadSafety**: Unsafe
6186
6194
  *
6187
6195
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
6196
+ * @param this
6197
+ * @param pin
6188
6198
  */
6189
6199
  GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
6190
6200
  /**
@@ -6726,12 +6736,14 @@ interface AvatarCreationService extends Instance {
6726
6736
  */
6727
6737
  LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
6728
6738
  /**
6739
+ * Prepares in-experience avatar for preview.
6740
+ *
6729
6741
  * - **ThreadSafety**: Unsafe
6730
6742
  * - **Tags**: Yields
6731
6743
  *
6732
6744
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PrepareAvatarForPreviewAsync)
6733
6745
  * @param this A service to support developer avatar creators.
6734
- * @param humanoidModel
6746
+ * @param humanoidModel The `Model` containing `MeshPart` children with `WrapDeformer` instances that require HSR data updating for preview.
6735
6747
  */
6736
6748
  PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
6737
6749
  /**
@@ -6809,6 +6821,8 @@ interface AvatarCreationService extends Instance {
6809
6821
  */
6810
6822
  ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
6811
6823
  /**
6824
+ * Fires when an in-experience-created avatar's moderation status has been updated from pending.
6825
+ *
6812
6826
  * - **ThreadSafety**: Unsafe
6813
6827
  *
6814
6828
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarModerationCompleted)
@@ -14625,6 +14639,21 @@ interface ExperienceStateCaptureService extends Instance {
14625
14639
  */
14626
14640
  readonly _nominal_ExperienceStateCaptureService: unique symbol;
14627
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
+ }
14628
14657
  /**
14629
14658
  * - **Tags**: NotReplicated
14630
14659
  *
@@ -15125,42 +15154,6 @@ interface FeatureRestrictionManager extends Instance {
15125
15154
  */
15126
15155
  readonly _nominal_FeatureRestrictionManager: unique symbol;
15127
15156
  }
15128
- /**
15129
- * - **Tags**: NotCreatable, Service
15130
- *
15131
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
15132
- */
15133
- interface FeedService extends Instance {
15134
- /**
15135
- * **DO NOT USE!**
15136
- *
15137
- * This field exists to force TypeScript to recognize this as a nominal type
15138
- * @hidden
15139
- * @deprecated
15140
- */
15141
- readonly _nominal_FeedService: unique symbol;
15142
- /**
15143
- * - **ThreadSafety**: Unsafe
15144
- * - **Tags**: Yields
15145
- *
15146
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#BatchRemoveFeedItemsAsync)
15147
- */
15148
- BatchRemoveFeedItemsAsync(this: FeedService, feedItemIds: Array<unknown>): void;
15149
- /**
15150
- * - **ThreadSafety**: Unsafe
15151
- * - **Tags**: Yields
15152
- *
15153
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#GetFeedItemsAsync)
15154
- */
15155
- GetFeedItemsAsync(this: FeedService, getFeedRequest: object): FeedPages;
15156
- /**
15157
- * - **ThreadSafety**: Unsafe
15158
- * - **Tags**: Yields
15159
- *
15160
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#RegisterFeedItemsAsync)
15161
- */
15162
- RegisterFeedItemsAsync(this: FeedService, registerFeedItemsRequest: object): object;
15163
- }
15164
15157
  /**
15165
15158
  * A particle emitter with the visual aesthetic of fire.
15166
15159
  *
@@ -26612,6 +26605,8 @@ interface Moderation extends Instance {
26612
26605
  * - **Tags**: Yields
26613
26606
  *
26614
26607
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalCreateReviewableContentAsync)
26608
+ * @param this
26609
+ * @param config
26615
26610
  */
26616
26611
  InternalCreateReviewableContentAsync(this: Moderation, config: object): string;
26617
26612
  /**
@@ -26619,12 +26614,15 @@ interface Moderation extends Instance {
26619
26614
  * - **Tags**: Yields
26620
26615
  *
26621
26616
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalRequestReviewableContentReviewAsync)
26617
+ * @param this
26618
+ * @param config
26622
26619
  */
26623
26620
  InternalRequestReviewableContentReviewAsync(this: Moderation, config: object): void;
26624
26621
  /**
26625
26622
  * - **ThreadSafety**: Unsafe
26626
26623
  *
26627
26624
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalProcessReviewableContentEvent)
26625
+ * @param event
26628
26626
  */
26629
26627
  InternalProcessReviewableContentEvent: ((event: object) => boolean) | undefined;
26630
26628
  }
@@ -30923,21 +30921,6 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
30923
30921
  */
30924
30922
  readonly _nominal_DataStoreVersionPages: unique symbol;
30925
30923
  }
30926
- /**
30927
- * - **Tags**: NotCreatable, NotReplicated
30928
- *
30929
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
30930
- */
30931
- interface FeedPages extends Pages {
30932
- /**
30933
- * **DO NOT USE!**
30934
- *
30935
- * This field exists to force TypeScript to recognize this as a nominal type
30936
- * @hidden
30937
- * @deprecated
30938
- */
30939
- readonly _nominal_FeedPages: unique symbol;
30940
- }
30941
30924
  /**
30942
30925
  * A special version of `Pages` that contains information about a player's friends.
30943
30926
  *
@@ -31029,6 +31012,21 @@ interface OutfitPages extends Pages<ReadonlyArray<{
31029
31012
  */
31030
31013
  readonly _nominal_OutfitPages: unique symbol;
31031
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
+ }
31032
31030
  /**
31033
31031
  * - **Tags**: NotCreatable, NotReplicated
31034
31032
  *
@@ -34268,6 +34266,61 @@ interface RTAnimationTracker extends Instance {
34268
34266
  */
34269
34267
  readonly TrackerPrompt: RBXScriptSignal<(prompt: Enum.TrackerPromptEvent) => void>;
34270
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
+ }
34271
34324
  /**
34272
34325
  * - **Tags**: NotCreatable, Service, NotReplicated
34273
34326
  *
@@ -36040,6 +36093,21 @@ interface Sky extends Instance {
36040
36093
  */
36041
36094
  SunTextureId: ContentId;
36042
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
+ }
36043
36111
  /**
36044
36112
  * A particle emitter with the visual aesthetic of smoke.
36045
36113
  *
@@ -36241,6 +36309,8 @@ interface SocialService extends Instance {
36241
36309
  * - **Tags**: Yields
36242
36310
  *
36243
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
36244
36314
  */
36245
36315
  GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
36246
36316
  /**
@@ -36260,6 +36330,8 @@ interface SocialService extends Instance {
36260
36330
  * - **Tags**: Yields
36261
36331
  *
36262
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
36263
36335
  */
36264
36336
  PromptRsvpToEventAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
36265
36337
  /**
@@ -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;
@@ -145,6 +145,7 @@ interface Services {
145
145
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
146
146
  ProximityPromptService: ProximityPromptService;
147
147
  PublishService: PublishService;
148
+ RecommendationService: RecommendationService;
148
149
  ReflectionService: ReflectionService;
149
150
  RemoteCursorService: RemoteCursorService;
150
151
  RemoteDebuggerServer: RemoteDebuggerServer;
@@ -176,6 +177,7 @@ interface Services {
176
177
  SessionService: SessionService;
177
178
  SharedTableRegistry: SharedTableRegistry;
178
179
  SlimContentProvider: SlimContentProvider;
180
+ SlimService: SlimService;
179
181
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
180
182
  SnippetService: SnippetService;
181
183
  SocialService: SocialService;
@@ -605,7 +607,6 @@ interface Instances extends Services, CreatableInstances {
605
607
  FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
606
608
  FacsImportData: FacsImportData;
607
609
  Feature: Feature;
608
- FeedPages: FeedPages;
609
610
  File: File;
610
611
  FormFactorPart: FormFactorPart;
611
612
  FriendPages: FriendPages;
@@ -686,6 +687,7 @@ interface Instances extends Services, CreatableInstances {
686
687
  PVAdornment: PVAdornment;
687
688
  PVInstance: PVInstance;
688
689
  QWidgetPluginGui: QWidgetPluginGui;
690
+ RecommendationPages: RecommendationPages;
689
691
  RobloxSerializableInstance: RobloxSerializableInstance;
690
692
  RootImportData: RootImportData;
691
693
  RunningAverageItemDouble: RunningAverageItemDouble;
@@ -4611,6 +4613,21 @@ interface ExperienceStateCaptureService extends Instance {
4611
4613
  */
4612
4614
  readonly _nominal_ExperienceStateCaptureService: unique symbol;
4613
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
+ }
4614
4631
  /**
4615
4632
  * - **Tags**: NotReplicated
4616
4633
  *
@@ -5343,21 +5360,6 @@ interface FeatureRestrictionManager extends Instance {
5343
5360
  */
5344
5361
  readonly _nominal_FeatureRestrictionManager: unique symbol;
5345
5362
  }
5346
- /**
5347
- * - **Tags**: NotCreatable, Service
5348
- *
5349
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
5350
- */
5351
- interface FeedService extends Instance {
5352
- /**
5353
- * **DO NOT USE!**
5354
- *
5355
- * This field exists to force TypeScript to recognize this as a nominal type
5356
- * @hidden
5357
- * @deprecated
5358
- */
5359
- readonly _nominal_FeedService: unique symbol;
5360
- }
5361
5363
  /**
5362
5364
  * An asset loaded from a file on disk.
5363
5365
  *
@@ -9002,6 +9004,12 @@ interface Workspace extends WorldRoot {
9002
9004
  * @deprecated
9003
9005
  */
9004
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;
9005
9013
  /**
9006
9014
  * Whether content streaming is enabled for the place.
9007
9015
  *
@@ -9249,21 +9257,6 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
9249
9257
  */
9250
9258
  readonly _nominal_DataStoreVersionPages: unique symbol;
9251
9259
  }
9252
- /**
9253
- * - **Tags**: NotCreatable, NotReplicated
9254
- *
9255
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
9256
- */
9257
- interface FeedPages extends Pages {
9258
- /**
9259
- * **DO NOT USE!**
9260
- *
9261
- * This field exists to force TypeScript to recognize this as a nominal type
9262
- * @hidden
9263
- * @deprecated
9264
- */
9265
- readonly _nominal_FeedPages: unique symbol;
9266
- }
9267
9260
  /**
9268
9261
  * A special version of `Pages` that contains information about a player's friends.
9269
9262
  *
@@ -9355,6 +9348,21 @@ interface OutfitPages extends Pages<ReadonlyArray<{
9355
9348
  */
9356
9349
  readonly _nominal_OutfitPages: unique symbol;
9357
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
+ }
9358
9366
  /**
9359
9367
  * - **Tags**: NotCreatable, NotReplicated
9360
9368
  *
@@ -10695,6 +10703,21 @@ interface RTAnimationTracker extends Instance {
10695
10703
  */
10696
10704
  readonly _nominal_RTAnimationTracker: unique symbol;
10697
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
+ }
10698
10721
  /**
10699
10722
  * - **Tags**: NotCreatable, Service, NotReplicated
10700
10723
  *
@@ -11473,7 +11496,7 @@ interface ScriptEditorService extends Instance {
11473
11496
  * @param this This service is used for interacting with `ScriptDocument` instances.
11474
11497
  * @param script
11475
11498
  */
11476
- OpenScriptDocumentAsync(this: ScriptEditorService, script: LuaSourceContainer): unknown;
11499
+ OpenScriptDocumentAsync(this: ScriptEditorService, script: LuaSourceContainer, options?: object): unknown;
11477
11500
  /**
11478
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.
11479
11502
  *
@@ -12017,6 +12040,21 @@ interface Sky extends Instance {
12017
12040
  */
12018
12041
  readonly _nominal_Sky: unique symbol;
12019
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
+ }
12020
12058
  /**
12021
12059
  * A particle emitter with the visual aesthetic of smoke.
12022
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
  */
@@ -19194,6 +19167,42 @@ declare namespace Enum {
19194
19167
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LocationType | undefined;
19195
19168
  }
19196
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;
19197
19206
  /**
19198
19207
  * The status of the BulkPurchasePrompt after player interaction.
19199
19208
  *
@@ -20523,6 +20532,10 @@ declare namespace Enum {
20523
20532
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
20524
20533
  }
20525
20534
  export const StreamingMesh: StreamingMesh;
20535
+ /**
20536
+ * @deprecated renamed to StreamingMesh
20537
+ */
20538
+ export const Enabled: StreamingMesh;
20526
20539
  /**
20527
20540
  * A lower resolution mesh will not be displayed.
20528
20541
  *
@@ -23984,6 +23997,123 @@ declare namespace Enum {
23984
23997
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RaycastFilterType | undefined;
23985
23998
  }
23986
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;
23987
24117
  /**
23988
24118
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RejectCharacterDeletions)
23989
24119
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.858",
3
+ "version": "1.0.859",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },