@rbxts/types 1.0.944 → 1.0.945

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.
@@ -41569,21 +41569,21 @@ interface DataModel extends ServiceProvider<Services> {
41569
41569
  */
41570
41570
  readonly VIPServerOwnerId: number;
41571
41571
  /**
41572
+ * A reference to the `Workspace` service.
41573
+ *
41572
41574
  * - **ThreadSafety**: ReadSafe
41573
41575
  * - **Tags**: NotReplicated
41574
41576
  *
41575
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
41577
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#Workspace)
41576
41578
  */
41577
- readonly RunService: RunService | undefined;
41579
+ readonly Workspace: Workspace;
41578
41580
  /**
41579
- * A reference to the `Workspace` service.
41580
- *
41581
41581
  * - **ThreadSafety**: ReadSafe
41582
41582
  * - **Tags**: NotReplicated
41583
41583
  *
41584
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#Workspace)
41584
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
41585
41585
  */
41586
- readonly Workspace: Workspace;
41586
+ readonly RunService: RunService | undefined;
41587
41587
  /**
41588
41588
  * Binds a function to be called before the server shuts down.
41589
41589
  *
@@ -13964,46 +13964,46 @@ interface DataModel extends ServiceProvider<Services> {
13964
13964
  */
13965
13965
  readonly _nominal_DataModel: unique symbol;
13966
13966
  /**
13967
- * Sets the `DataModel.PlaceId` of the current game instance.
13967
+ * Returns a table containing basic information about the jobs performed by the task scheduler.
13968
13968
  *
13969
13969
  * - **ThreadSafety**: Unsafe
13970
13970
  *
13971
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#SetPlaceId)
13971
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetJobsInfo)
13972
13972
  * @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
13973
- * @param placeId The ID to set the `DataModel.PlaceId` to.
13973
+ * @returns A table containing information about the jobs performed by the task scheduler, see above for the format.
13974
13974
  */
13975
- SetPlaceId(this: DataModel, placeId: number): void;
13975
+ GetJobsInfo(this: DataModel): Array<unknown>;
13976
13976
  /**
13977
- * Sets the `DataModel.GameId` of the current game instance to the given `universeId`.
13977
+ * Returns an array of `Instances` associated with the given content URL.
13978
13978
  *
13979
13979
  * - **ThreadSafety**: Unsafe
13980
13980
  *
13981
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#SetUniverseId)
13981
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetObjects)
13982
13982
  * @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
13983
- * @param universeId The ID to set the `DataModel.GameId` to.
13983
+ * @param url The given content URL.
13984
+ * @returns An array of `Instances` associated with the content URL.
13984
13985
  */
13985
- SetUniverseId(this: DataModel, universeId: number): void;
13986
+ GetObjects(this: DataModel, url: ContentId): Array<Instance>;
13986
13987
  /**
13987
- * Returns a table containing basic information about the jobs performed by the task scheduler.
13988
+ * Sets the `DataModel.PlaceId` of the current game instance.
13988
13989
  *
13989
13990
  * - **ThreadSafety**: Unsafe
13990
13991
  *
13991
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetJobsInfo)
13992
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#SetPlaceId)
13992
13993
  * @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
13993
- * @returns A table containing information about the jobs performed by the task scheduler, see above for the format.
13994
+ * @param placeId The ID to set the `DataModel.PlaceId` to.
13994
13995
  */
13995
- GetJobsInfo(this: DataModel): Array<unknown>;
13996
+ SetPlaceId(this: DataModel, placeId: number): void;
13996
13997
  /**
13997
- * Returns an array of `Instances` associated with the given content URL.
13998
+ * Sets the `DataModel.GameId` of the current game instance to the given `universeId`.
13998
13999
  *
13999
14000
  * - **ThreadSafety**: Unsafe
14000
14001
  *
14001
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetObjects)
14002
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#SetUniverseId)
14002
14003
  * @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
14003
- * @param url The given content URL.
14004
- * @returns An array of `Instances` associated with the content URL.
14004
+ * @param universeId The ID to set the `DataModel.GameId` to.
14005
14005
  */
14006
- GetObjects(this: DataModel, url: ContentId): Array<Instance>;
14006
+ SetUniverseId(this: DataModel, universeId: number): void;
14007
14007
  }
14008
14008
  /**
14009
14009
  * The abstract class for settings database classes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.944",
3
+ "version": "1.0.945",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },