@rbxts/types 1.0.752 → 1.0.754

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.
@@ -6,6 +6,7 @@
6
6
 
7
7
  interface Services {
8
8
  AccountService: AccountService;
9
+ ActivityHistoryService: ActivityHistoryService;
9
10
  AnalyticsService: AnalyticsService;
10
11
  AnimationClipProvider: AnimationClipProvider;
11
12
  AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
@@ -103,6 +104,7 @@ interface Services {
103
104
  PluginPolicyService: PluginPolicyService;
104
105
  PolicyService: PolicyService;
105
106
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
107
+ ProjectFolderService: ProjectFolderService;
106
108
  ProximityPromptService: ProximityPromptService;
107
109
  PublishService: PublishService;
108
110
  ReflectionService: ReflectionService;
@@ -170,7 +172,6 @@ interface Services {
170
172
  VideoCaptureService: VideoCaptureService;
171
173
  VideoService: VideoService;
172
174
  VisibilityCheckDispatcher: VisibilityCheckDispatcher;
173
- VisibilityService: VisibilityService;
174
175
  VoiceChatInternal: VoiceChatInternal;
175
176
  VoiceChatService: VoiceChatService;
176
177
  VRService: VRService;
@@ -1354,6 +1355,18 @@ interface Hat extends Accoutrement {
1354
1355
  readonly _nominal_Hat: unique symbol;
1355
1356
  }
1356
1357
 
1358
+ interface ActivityHistoryService extends Instance {
1359
+ /**
1360
+ * **DO NOT USE!**
1361
+ *
1362
+ * This field exists to force TypeScript to recognize this as a nominal type
1363
+ * @hidden
1364
+ * @deprecated
1365
+ */
1366
+ readonly _nominal_ActivityHistoryService: unique symbol;
1367
+ readonly onEventNotificationReceived: RBXScriptSignal<() => void>;
1368
+ }
1369
+
1357
1370
  interface AdPortal extends Instance {
1358
1371
  /**
1359
1372
  * **DO NOT USE!**
@@ -9430,6 +9443,7 @@ interface ControllerManager extends Instance {
9430
9443
  GroundSensor: ControllerSensor | undefined;
9431
9444
  MovingDirection: Vector3;
9432
9445
  RootPart: BasePart | undefined;
9446
+ UpDirection: Vector3;
9433
9447
  }
9434
9448
 
9435
9449
  /** Container class for the [HumanoidController](https://developer.roblox.com/en-us/api-reference/class/HumanoidController) among other classes. */
@@ -29476,6 +29490,17 @@ interface ProcessInstancePhysicsService extends Instance {
29476
29490
  readonly _nominal_ProcessInstancePhysicsService: unique symbol;
29477
29491
  }
29478
29492
 
29493
+ interface ProjectFolderService extends Instance {
29494
+ /**
29495
+ * **DO NOT USE!**
29496
+ *
29497
+ * This field exists to force TypeScript to recognize this as a nominal type
29498
+ * @hidden
29499
+ * @deprecated
29500
+ */
29501
+ readonly _nominal_ProjectFolderService: unique symbol;
29502
+ }
29503
+
29479
29504
  /** The ProximityPrompt is an object that allows developers to prompt users to interact with an object in the 3D world, such as opening a door or picking up an item.
29480
29505
  *
29481
29506
  * ProximityPrompts work when parented to a [Part](https://developer.roblox.com/en-us/api-reference/class/Part), [Model](https://developer.roblox.com/en-us/api-reference/class/Model), or [Attachment](https://developer.roblox.com/en-us/api-reference/class/Attachment) in the workspace.
@@ -37738,6 +37763,10 @@ interface VRService extends Instance {
37738
37763
  * Tags: NotReplicated
37739
37764
  */
37740
37765
  AutomaticScaling: Enum.VRScaling;
37766
+ /**
37767
+ * Tags: NotBrowsable
37768
+ */
37769
+ AvatarGestures: boolean;
37741
37770
  /**
37742
37771
  * Tags: NotReplicated
37743
37772
  */
@@ -38356,17 +38385,6 @@ interface VisibilityCheckDispatcher extends Instance {
38356
38385
  readonly _nominal_VisibilityCheckDispatcher: unique symbol;
38357
38386
  }
38358
38387
 
38359
- interface VisibilityService extends Instance {
38360
- /**
38361
- * **DO NOT USE!**
38362
- *
38363
- * This field exists to force TypeScript to recognize this as a nominal type
38364
- * @hidden
38365
- * @deprecated
38366
- */
38367
- readonly _nominal_VisibilityService: unique symbol;
38368
- }
38369
-
38370
38388
  interface VoiceChatInternal extends Instance {
38371
38389
  /**
38372
38390
  * **DO NOT USE!**
@@ -4568,9 +4568,6 @@ interface VoiceChatService extends Instance {
4568
4568
  */
4569
4569
  readonly _nominal_VoiceChatService: unique symbol;
4570
4570
  EnableDefaultVoice: boolean;
4571
- /**
4572
- * Tags: NotBrowsable
4573
- */
4574
4571
  UseAudioApi: Enum.AudioApiRollout;
4575
4572
  }
4576
4573
 
@@ -2896,3 +2896,9 @@ type AttributeValue =
2896
2896
  | NumberRange
2897
2897
  | Rect
2898
2898
  | Font;
2899
+
2900
+ declare const enum RobloxEmoji {
2901
+ Robux = "",
2902
+ Premium = "",
2903
+ Verified = "",
2904
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.752",
3
+ "version": "1.0.754",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },