@rbxts/types 1.0.846 → 1.0.848
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.
- package/include/generated/None.d.ts +475 -48
- package/include/generated/PluginSecurity.d.ts +94 -24
- package/include/generated/enums.d.ts +696 -34
- package/package.json +1 -1
|
@@ -69,9 +69,11 @@ interface Services {
|
|
|
69
69
|
ExperienceStateCaptureService: ExperienceStateCaptureService;
|
|
70
70
|
ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
|
|
71
71
|
FaceAnimatorService: FaceAnimatorService;
|
|
72
|
+
FacialAgeEstimationService: FacialAgeEstimationService;
|
|
72
73
|
FacialAnimationRecordingService: FacialAnimationRecordingService;
|
|
73
74
|
FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
|
|
74
75
|
FeatureRestrictionManager: FeatureRestrictionManager;
|
|
76
|
+
FeedService: FeedService;
|
|
75
77
|
GamepadService: GamepadService;
|
|
76
78
|
GamePassService: GamePassService;
|
|
77
79
|
GenerationService: GenerationService;
|
|
@@ -123,6 +125,7 @@ interface Services {
|
|
|
123
125
|
PathfindingService: PathfindingService;
|
|
124
126
|
PerformanceControlService: PerformanceControlService;
|
|
125
127
|
PhysicsService: PhysicsService;
|
|
128
|
+
PlaceAssetIdsService: PlaceAssetIdsService;
|
|
126
129
|
PlacesService: PlacesService;
|
|
127
130
|
PlaceStatsService: PlaceStatsService;
|
|
128
131
|
PlatformCloudStorageService: PlatformCloudStorageService;
|
|
@@ -192,6 +195,7 @@ interface Services {
|
|
|
192
195
|
StudioUserService: StudioUserService;
|
|
193
196
|
StudioWidgetsService: StudioWidgetsService;
|
|
194
197
|
StylingService: StylingService;
|
|
198
|
+
SystemThemeService: SystemThemeService;
|
|
195
199
|
TaskScheduler: TaskScheduler;
|
|
196
200
|
TeamCreateData: TeamCreateData;
|
|
197
201
|
TeamCreatePublishService: TeamCreatePublishService;
|
|
@@ -587,6 +591,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
587
591
|
FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
|
|
588
592
|
FacsImportData: FacsImportData;
|
|
589
593
|
Feature: Feature;
|
|
594
|
+
FeedPages: FeedPages;
|
|
590
595
|
File: File;
|
|
591
596
|
FormFactorPart: FormFactorPart;
|
|
592
597
|
FriendPages: FriendPages;
|
|
@@ -5003,6 +5008,21 @@ interface Texture extends Decal {
|
|
|
5003
5008
|
*/
|
|
5004
5009
|
readonly _nominal_Texture: unique symbol;
|
|
5005
5010
|
}
|
|
5011
|
+
/**
|
|
5012
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
5013
|
+
*
|
|
5014
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FacialAgeEstimationService)
|
|
5015
|
+
*/
|
|
5016
|
+
interface FacialAgeEstimationService extends Instance {
|
|
5017
|
+
/**
|
|
5018
|
+
* **DO NOT USE!**
|
|
5019
|
+
*
|
|
5020
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5021
|
+
* @hidden
|
|
5022
|
+
* @deprecated
|
|
5023
|
+
*/
|
|
5024
|
+
readonly _nominal_FacialAgeEstimationService: unique symbol;
|
|
5025
|
+
}
|
|
5006
5026
|
/**
|
|
5007
5027
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
5008
5028
|
*
|
|
@@ -5133,6 +5153,21 @@ interface FeatureRestrictionManager extends Instance {
|
|
|
5133
5153
|
*/
|
|
5134
5154
|
readonly _nominal_FeatureRestrictionManager: unique symbol;
|
|
5135
5155
|
}
|
|
5156
|
+
/**
|
|
5157
|
+
* - **Tags**: NotCreatable, Service
|
|
5158
|
+
*
|
|
5159
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
|
|
5160
|
+
*/
|
|
5161
|
+
interface FeedService extends Instance {
|
|
5162
|
+
/**
|
|
5163
|
+
* **DO NOT USE!**
|
|
5164
|
+
*
|
|
5165
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5166
|
+
* @hidden
|
|
5167
|
+
* @deprecated
|
|
5168
|
+
*/
|
|
5169
|
+
readonly _nominal_FeedService: unique symbol;
|
|
5170
|
+
}
|
|
5136
5171
|
/**
|
|
5137
5172
|
* An asset loaded from a file on disk.
|
|
5138
5173
|
*
|
|
@@ -6191,7 +6226,7 @@ interface ArcHandles extends HandlesBase {
|
|
|
6191
6226
|
readonly _nominal_ArcHandles: unique symbol;
|
|
6192
6227
|
}
|
|
6193
6228
|
/**
|
|
6194
|
-
*
|
|
6229
|
+
* Places 3D handles around any object that its `Adornee` is set to.
|
|
6195
6230
|
*
|
|
6196
6231
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Handles)
|
|
6197
6232
|
*/
|
|
@@ -7389,9 +7424,9 @@ interface AuroraScript extends LuaSourceContainer {
|
|
|
7389
7424
|
/**
|
|
7390
7425
|
* - **ThreadSafety**: ReadSafe
|
|
7391
7426
|
*
|
|
7392
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#
|
|
7427
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#EnableCulling)
|
|
7393
7428
|
*/
|
|
7394
|
-
|
|
7429
|
+
EnableCulling: boolean;
|
|
7395
7430
|
/**
|
|
7396
7431
|
* - **ThreadSafety**: ReadSafe
|
|
7397
7432
|
*
|
|
@@ -7401,27 +7436,15 @@ interface AuroraScript extends LuaSourceContainer {
|
|
|
7401
7436
|
/**
|
|
7402
7437
|
* - **ThreadSafety**: ReadSafe
|
|
7403
7438
|
*
|
|
7404
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#
|
|
7439
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODCriticality)
|
|
7405
7440
|
*/
|
|
7406
|
-
|
|
7407
|
-
/**
|
|
7408
|
-
* - **ThreadSafety**: ReadSafe
|
|
7409
|
-
*
|
|
7410
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODFrequencyFactor)
|
|
7411
|
-
*/
|
|
7412
|
-
LODFrequencyFactor: number;
|
|
7441
|
+
LODCriticality: number;
|
|
7413
7442
|
/**
|
|
7414
7443
|
* - **ThreadSafety**: ReadSafe
|
|
7415
7444
|
*
|
|
7416
7445
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Priority)
|
|
7417
7446
|
*/
|
|
7418
7447
|
Priority: number;
|
|
7419
|
-
/**
|
|
7420
|
-
* - **ThreadSafety**: ReadSafe
|
|
7421
|
-
*
|
|
7422
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#RunInParallel)
|
|
7423
|
-
*/
|
|
7424
|
-
RunInParallel: boolean;
|
|
7425
7448
|
/**
|
|
7426
7449
|
* - **ThreadSafety**: ReadSafe
|
|
7427
7450
|
*
|
|
@@ -7568,6 +7591,8 @@ interface MarketplaceService extends Instance {
|
|
|
7568
7591
|
readonly _nominal_MarketplaceService: unique symbol;
|
|
7569
7592
|
}
|
|
7570
7593
|
/**
|
|
7594
|
+
* The service responsible for managing custom matchmaking data.
|
|
7595
|
+
*
|
|
7571
7596
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
7572
7597
|
*
|
|
7573
7598
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
|
|
@@ -8965,6 +8990,21 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
|
|
|
8965
8990
|
*/
|
|
8966
8991
|
readonly _nominal_DataStoreVersionPages: unique symbol;
|
|
8967
8992
|
}
|
|
8993
|
+
/**
|
|
8994
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
8995
|
+
*
|
|
8996
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
|
|
8997
|
+
*/
|
|
8998
|
+
interface FeedPages extends Pages {
|
|
8999
|
+
/**
|
|
9000
|
+
* **DO NOT USE!**
|
|
9001
|
+
*
|
|
9002
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9003
|
+
* @hidden
|
|
9004
|
+
* @deprecated
|
|
9005
|
+
*/
|
|
9006
|
+
readonly _nominal_FeedPages: unique symbol;
|
|
9007
|
+
}
|
|
8968
9008
|
/**
|
|
8969
9009
|
* A special version of `Pages` that contains information about a player's friends.
|
|
8970
9010
|
*
|
|
@@ -9270,6 +9310,21 @@ interface PhysicsSettings extends Instance {
|
|
|
9270
9310
|
*/
|
|
9271
9311
|
readonly _nominal_PhysicsSettings: unique symbol;
|
|
9272
9312
|
}
|
|
9313
|
+
/**
|
|
9314
|
+
* - **Tags**: NotCreatable, Service
|
|
9315
|
+
*
|
|
9316
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlaceAssetIdsService)
|
|
9317
|
+
*/
|
|
9318
|
+
interface PlaceAssetIdsService extends Instance {
|
|
9319
|
+
/**
|
|
9320
|
+
* **DO NOT USE!**
|
|
9321
|
+
*
|
|
9322
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9323
|
+
* @hidden
|
|
9324
|
+
* @deprecated
|
|
9325
|
+
*/
|
|
9326
|
+
readonly _nominal_PlaceAssetIdsService: unique symbol;
|
|
9327
|
+
}
|
|
9273
9328
|
/**
|
|
9274
9329
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
9275
9330
|
*
|
|
@@ -9619,7 +9674,7 @@ interface Plugin extends Instance {
|
|
|
9619
9674
|
*/
|
|
9620
9675
|
GetSelectedRibbonTool(this: Plugin): Enum.RibbonTool;
|
|
9621
9676
|
/**
|
|
9622
|
-
* Retrieves a previously stored value with the given key, or nil if the given key doesn't exist.
|
|
9677
|
+
* Retrieves a previously stored value with the given key, or `nil` if the given key doesn't exist.
|
|
9623
9678
|
*
|
|
9624
9679
|
* - **ThreadSafety**: Unsafe
|
|
9625
9680
|
*
|
|
@@ -10052,7 +10107,7 @@ interface PluginMenu extends Instance {
|
|
|
10052
10107
|
*
|
|
10053
10108
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginMenu#ShowAsync)
|
|
10054
10109
|
* @param this A context menu that can be shown in Studio. Displays a list of `PluginActions` and supports submenus.
|
|
10055
|
-
* @returns The `PluginAction` item that was selected or nil
|
|
10110
|
+
* @returns The `PluginAction` item that was selected or `nil`.
|
|
10056
10111
|
*/
|
|
10057
10112
|
ShowAsync(this: PluginMenu): Instance | undefined;
|
|
10058
10113
|
}
|
|
@@ -11097,7 +11152,7 @@ interface ScriptEditorService extends Instance {
|
|
|
11097
11152
|
*/
|
|
11098
11153
|
DeregisterScriptAnalysisCallback(this: ScriptEditorService, name: string): void;
|
|
11099
11154
|
/**
|
|
11100
|
-
* Returns the open `ScriptDocument` corresponding to the given `LuaSourceContainer`, or nil if the given script is not open.
|
|
11155
|
+
* Returns the open `ScriptDocument` corresponding to the given `LuaSourceContainer`, or `nil` if the given script is not open.
|
|
11101
11156
|
*
|
|
11102
11157
|
* - **ThreadSafety**: Unsafe
|
|
11103
11158
|
*
|
|
@@ -12575,8 +12630,8 @@ interface StudioService extends Instance {
|
|
|
12575
12630
|
*
|
|
12576
12631
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFile)
|
|
12577
12632
|
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
12578
|
-
* @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is nil and allows the user to select any file type.
|
|
12579
|
-
* @returns The imported `File`. Returns nil if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
|
|
12633
|
+
* @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
|
|
12634
|
+
* @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
|
|
12580
12635
|
*/
|
|
12581
12636
|
PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
|
|
12582
12637
|
/**
|
|
@@ -12587,8 +12642,8 @@ interface StudioService extends Instance {
|
|
|
12587
12642
|
*
|
|
12588
12643
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFiles)
|
|
12589
12644
|
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
12590
|
-
* @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is nil and allows the user to select any file type.
|
|
12591
|
-
* @returns The imported `Files`. Returns an empty list if no files were selected. Returns nil if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
|
|
12645
|
+
* @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
|
|
12646
|
+
* @returns The imported `Files`. Returns an empty list if no files were selected. Returns `nil` if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
|
|
12592
12647
|
*/
|
|
12593
12648
|
PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
12594
12649
|
}
|
|
@@ -12814,6 +12869,21 @@ interface SurfaceAppearance extends Instance {
|
|
|
12814
12869
|
*/
|
|
12815
12870
|
set RoughnessMapContent(value: Content);
|
|
12816
12871
|
}
|
|
12872
|
+
/**
|
|
12873
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12874
|
+
*
|
|
12875
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SystemThemeService)
|
|
12876
|
+
*/
|
|
12877
|
+
interface SystemThemeService extends Instance {
|
|
12878
|
+
/**
|
|
12879
|
+
* **DO NOT USE!**
|
|
12880
|
+
*
|
|
12881
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12882
|
+
* @hidden
|
|
12883
|
+
* @deprecated
|
|
12884
|
+
*/
|
|
12885
|
+
readonly _nominal_SystemThemeService: unique symbol;
|
|
12886
|
+
}
|
|
12817
12887
|
/**
|
|
12818
12888
|
* Collection of settings for the *Task Scheduler* feature.
|
|
12819
12889
|
*
|