@rbxts/types 1.0.911 → 1.0.912

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.
@@ -735,7 +735,6 @@ interface Instances extends Services, CreatableInstances {
735
735
  }
736
736
  interface Objects extends Instances {
737
737
  AnimationNode: AnimationNode;
738
- AuroraHandle: AuroraHandle;
739
738
  Capture: Capture;
740
739
  ConfigSnapshot: ConfigSnapshot;
741
740
  EditableImage: EditableImage;
@@ -743,6 +742,7 @@ interface Objects extends Instances {
743
742
  ExecutedRemoteCommand: ExecutedRemoteCommand;
744
743
  MLSession: MLSession;
745
744
  Object: RBXObject;
745
+ OutputLink: OutputLink;
746
746
  ScreenshotCapture: ScreenshotCapture;
747
747
  TerrainIterateOperation: TerrainIterateOperation;
748
748
  TerrainModifyOperation: TerrainModifyOperation;
@@ -826,35 +826,6 @@ interface AnimationNode extends RBXObject {
826
826
  */
827
827
  readonly _nominal_AnimationNode: unique symbol;
828
828
  }
829
- /**
830
- * - **Tags**: NotCreatable
831
- *
832
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
833
- *
834
- * @deprecated
835
- */
836
- interface AuroraHandle extends RBXObject {
837
- /**
838
- * **DO NOT USE!**
839
- *
840
- * This field exists to force TypeScript to recognize this as a nominal type
841
- * @hidden
842
- * @deprecated
843
- */
844
- readonly _nominal_AuroraHandle: unique symbol;
845
- /**
846
- * - **ThreadSafety**: Unsafe
847
- *
848
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#Destroy)
849
- */
850
- Destroy(this: AuroraHandle): void;
851
- /**
852
- * - **ThreadSafety**: Unsafe
853
- *
854
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#ForEach)
855
- */
856
- ForEach(this: AuroraHandle, iterator: Callback): void;
857
- }
858
829
  /**
859
830
  * A class which defines a piece of content, such as a screenshot or video, taken in-experience.
860
831
  *
@@ -3028,7 +2999,7 @@ interface AdService extends Instance {
3028
2999
  readonly VideoAdClosed: RBXScriptSignal<(adShown: boolean) => void>;
3029
3000
  }
3030
3001
  /**
3031
- * Collection of methods that allows developers to track how users interact with their experiences.
3002
+ * Collection of methods that allows you to track how users interact with your experiences.
3032
3003
  *
3033
3004
  * - **Tags**: NotCreatable, Service, NotReplicated
3034
3005
  *
@@ -3052,7 +3023,7 @@ interface AnalyticsService extends Instance {
3052
3023
  * - **Tags**:
3053
3024
  *
3054
3025
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireCustomEvent)
3055
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3026
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3056
3027
  * @param player The player who triggered the custom event. `nil` if not player related.
3057
3028
  * @param eventCategory User defined category. This should be the name of the event.
3058
3029
  * @param customData Optional. User defined data, could be a string, a number or a table.
@@ -3069,7 +3040,7 @@ interface AnalyticsService extends Instance {
3069
3040
  * - **Tags**:
3070
3041
  *
3071
3042
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireEvent)
3072
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3043
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3073
3044
  * @param category 'The category of event to report. Cannot contain the following characters: comma `,`, double quote `"` or newline characters `\r\n`'.
3074
3045
  * @param value A value to be serialized and reported. Serialized length must not exceed 1 KiB, or 1024 bytes.
3075
3046
  *
@@ -3085,7 +3056,7 @@ interface AnalyticsService extends Instance {
3085
3056
  * - **Tags**:
3086
3057
  *
3087
3058
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireInGameEconomyEvent)
3088
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3059
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3089
3060
  * @param player The player who triggered the economy event.
3090
3061
  * @param itemName The name of the item.
3091
3062
  * @param economyAction Indicates the acquisition or spending of an in game resource.
@@ -3112,7 +3083,7 @@ interface AnalyticsService extends Instance {
3112
3083
  * - **Tags**:
3113
3084
  *
3114
3085
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireLogEvent)
3115
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3086
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3116
3087
  * @param player The player who triggered the error event, `nil` if not player related.
3117
3088
  * @param logLevel The specified log level (e.g. Debug, Error).
3118
3089
  * @param message User defined message.
@@ -3134,7 +3105,7 @@ interface AnalyticsService extends Instance {
3134
3105
  * - **Tags**:
3135
3106
  *
3136
3107
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FirePlayerProgressionEvent)
3137
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3108
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3138
3109
  * @param player The player who triggered the event.
3139
3110
  * @param category A user defined category for progression.
3140
3111
  * @param progressionStatus Indicates the status of the progression.
@@ -3161,7 +3132,7 @@ interface AnalyticsService extends Instance {
3161
3132
  * - **ThreadSafety**: Unsafe
3162
3133
  *
3163
3134
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogCustomEvent)
3164
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3135
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3165
3136
  * @param player The user who triggered the event.
3166
3137
  * @param eventName The name of the custom event.
3167
3138
  * @param value The value of the event that will be used in aggregation.
@@ -3174,7 +3145,7 @@ interface AnalyticsService extends Instance {
3174
3145
  * - **ThreadSafety**: Unsafe
3175
3146
  *
3176
3147
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogEconomyEvent)
3177
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3148
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3178
3149
  * @param player The user who triggered the event.
3179
3150
  * @param flowType Should specify the direction that currency is flowing using `AnalyticsEconomyFlowType`.
3180
3151
  * @param currencyType The name of the currency being added or removed, for example `"gold"`, `"gems"`, or `"energy"`. Limited to 5 unique currency types per experience.
@@ -3191,7 +3162,7 @@ interface AnalyticsService extends Instance {
3191
3162
  * - **ThreadSafety**: Unsafe
3192
3163
  *
3193
3164
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogFunnelStepEvent)
3194
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3165
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3195
3166
  * @param player The user who triggered the event.
3196
3167
  * @param funnelName The name of the funnel. This should be the same for all steps in the funnel. Limited to 10 unique funnels per experience.
3197
3168
  * @param funnelSessionId Optional unique identifier for the funnel session. This should be the same for all steps in the funnel. Note that this field is only necessary for **recurring** funnels, for example a purchase flow funnel or an item upgrade funnel. If you don't have a natural funnel session identifier, it's recommended to use `HttpService:GenerateGUID()`.
@@ -3206,7 +3177,7 @@ interface AnalyticsService extends Instance {
3206
3177
  * - **ThreadSafety**: Unsafe
3207
3178
  *
3208
3179
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogOnboardingFunnelStepEvent)
3209
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3180
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3210
3181
  * @param player The user who triggered the event.
3211
3182
  * @param step The step number in the funnel. This should be unique for each step in the funnel. All funnels start at step 1. Limited to steps 1-100. Note that if any steps are skipped, the intermediate steps will be considered completed.
3212
3183
  * @param stepName Optional name of the step in the funnel. This field is only used for display purposes in Roblox-provided charts.
@@ -3219,7 +3190,7 @@ interface AnalyticsService extends Instance {
3219
3190
  * - **ThreadSafety**: Unsafe
3220
3191
  *
3221
3192
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionCompleteEvent)
3222
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3193
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3223
3194
  * @param player The player who triggered the event.
3224
3195
  * @param progressionPathName
3225
3196
  * @param level
@@ -3233,7 +3204,7 @@ interface AnalyticsService extends Instance {
3233
3204
  * - **ThreadSafety**: Unsafe
3234
3205
  *
3235
3206
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionEvent)
3236
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3207
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3237
3208
  * @param player The player who triggered the event.
3238
3209
  * @param progressionPathName
3239
3210
  * @param status
@@ -3248,7 +3219,7 @@ interface AnalyticsService extends Instance {
3248
3219
  * - **ThreadSafety**: Unsafe
3249
3220
  *
3250
3221
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionFailEvent)
3251
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3222
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3252
3223
  * @param player The user who triggered the event.
3253
3224
  * @param progressionPathName
3254
3225
  * @param level
@@ -3262,7 +3233,7 @@ interface AnalyticsService extends Instance {
3262
3233
  * - **ThreadSafety**: Unsafe
3263
3234
  *
3264
3235
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionStartEvent)
3265
- * @param this Collection of methods that allows developers to track how users interact with their experiences.
3236
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3266
3237
  * @param player The player who triggered the event.
3267
3238
  * @param progressionPathName
3268
3239
  * @param level
@@ -3270,6 +3241,13 @@ interface AnalyticsService extends Instance {
3270
3241
  * @param customFields
3271
3242
  */
3272
3243
  LogProgressionStartEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
3244
+ /**
3245
+ * - **ThreadSafety**: Unsafe
3246
+ * - **Tags**: Yields
3247
+ *
3248
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#GetPlayerSegmentsAsync)
3249
+ */
3250
+ GetPlayerSegmentsAsync(this: AnalyticsService, player: Player): object;
3273
3251
  }
3274
3252
  /**
3275
3253
  * References an animation asset which can be loaded by an `AnimationController`.
@@ -4325,6 +4303,13 @@ interface AssetService extends Instance {
4325
4303
  * @returns The `CreateAssetResult` and asset version number pair if successful.
4326
4304
  */
4327
4305
  CreateAssetVersionAsync(this: AssetService, object: RBXObject, assetType: CastsToEnum<Enum.AssetType>, assetId: number, requestParameters?: object): unknown;
4306
+ /**
4307
+ * - **ThreadSafety**: Unsafe
4308
+ * - **Tags**: Yields
4309
+ *
4310
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateDataModelContentAsync)
4311
+ */
4312
+ CreateDataModelContentAsync(this: AssetService, content: Content, options?: object): unknown;
4328
4313
  /**
4329
4314
  * Creates a new `EditableImage` object populated with the given image.
4330
4315
  *
@@ -7571,7 +7556,7 @@ interface AuroraScriptService extends Instance {
7571
7556
  *
7572
7557
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#CreateCollection)
7573
7558
  */
7574
- CreateCollection(this: AuroraScriptService, query: string, root?: Instance): AuroraHandle;
7559
+ CreateCollection(this: AuroraScriptService, query: string, root?: Instance): CollectionHandle;
7575
7560
  /**
7576
7561
  * - **ThreadSafety**: Safe
7577
7562
  * - **Tags**: CustomLuaState
@@ -7753,12 +7738,6 @@ interface AuroraService extends Instance {
7753
7738
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
7754
7739
  */
7755
7740
  readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
7756
- /**
7757
- * - **ThreadSafety**: Unsafe
7758
- *
7759
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Rollback)
7760
- */
7761
- readonly Rollback: RBXScriptSignal<(worldStepId: number) => void>;
7762
7741
  /**
7763
7742
  * - **ThreadSafety**: Unsafe
7764
7743
  *
@@ -9314,6 +9293,12 @@ interface RootImportData extends BaseImportData {
9314
9293
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#RigVisualization)
9315
9294
  */
9316
9295
  RigVisualization: boolean;
9296
+ /**
9297
+ * - **ThreadSafety**: ReadSafe
9298
+ *
9299
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ScaleFactor)
9300
+ */
9301
+ ScaleFactor: number;
9317
9302
  /**
9318
9303
  * - **ThreadSafety**: ReadSafe
9319
9304
  *
@@ -10925,7 +10910,7 @@ interface CaptureService extends Instance {
10925
10910
  *
10926
10911
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#UploadCaptureAsync)
10927
10912
  * @param this A service which provides control over screenshot and video capture features.
10928
- * @param capture a capture object of type `Capture`
10913
+ * @param capture The `Capture` to upload.
10929
10914
  * @returns Tuple of (result: `UploadCaptureResult`, assetId: `number`)
10930
10915
  */
10931
10916
  UploadCaptureAsync(this: CaptureService, capture: Capture): unknown;
@@ -15561,6 +15546,8 @@ interface DataStoreService extends Instance {
15561
15546
  */
15562
15547
  GetRequestBudgetForRequestType(this: DataStoreService, requestType: CastsToEnum<Enum.DataStoreRequestType>): number;
15563
15548
  /**
15549
+ * Sets the rate limit for a given request type per minute.
15550
+ *
15564
15551
  * - **ThreadSafety**: Unsafe
15565
15552
  *
15566
15553
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataStoreService#SetRateLimitForRequestType)
@@ -19055,6 +19042,8 @@ interface GuiButton extends GuiObject {
19055
19042
  */
19056
19043
  readonly MouseButton2Up: RBXScriptSignal<(x: number, y: number) => void>;
19057
19044
  /**
19045
+ * Fires when a right-click is detected on desktop, long press detected on mobile, or triangle / Y activated in UI navigation mode on console. This function is not available yet.
19046
+ *
19058
19047
  * - **ThreadSafety**: Unsafe
19059
19048
  *
19060
19049
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#SecondaryActivated)
@@ -20512,6 +20501,24 @@ interface VideoFrame extends GuiObject {
20512
20501
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#Resolution)
20513
20502
  */
20514
20503
  readonly Resolution: Vector2;
20504
+ /**
20505
+ * - **ThreadSafety**: ReadSafe
20506
+ *
20507
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMaxDistance)
20508
+ */
20509
+ RollOffMaxDistance: number;
20510
+ /**
20511
+ * - **ThreadSafety**: ReadSafe
20512
+ *
20513
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMinDistance)
20514
+ */
20515
+ RollOffMinDistance: number;
20516
+ /**
20517
+ * - **ThreadSafety**: ReadSafe
20518
+ *
20519
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMode)
20520
+ */
20521
+ RollOffMode: Enum.RollOffMode;
20515
20522
  /**
20516
20523
  * Indicates the length of the `VideoFrame.Video` in seconds.
20517
20524
  *
@@ -28027,8 +28034,6 @@ interface MLService extends Instance {
28027
28034
  CreateSessionAsync(this: MLService, assetId: string): MLSession;
28028
28035
  }
28029
28036
  /**
28030
- * - **Tags**: NotBrowsable
28031
- *
28032
28037
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
28033
28038
  */
28034
28039
  interface MakeupDescription extends Instance {
@@ -35523,6 +35528,7 @@ interface Player extends Instance {
35523
35528
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescription)
35524
35529
  * @param this An object that represents a presently connected client to the experience.
35525
35530
  * @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
35531
+ * @param assetTypeVerification The asset type verification mode.
35526
35532
  *
35527
35533
  * @deprecated LoadCharacterWithHumanoidDescriptionAsync
35528
35534
  */
@@ -35536,8 +35542,9 @@ interface Player extends Instance {
35536
35542
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescriptionAsync)
35537
35543
  * @param this An object that represents a presently connected client to the experience.
35538
35544
  * @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
35545
+ * @param assetTypeVerification The asset type verification mode.
35539
35546
  */
35540
- LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription): void;
35547
+ LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
35541
35548
  /**
35542
35549
  * Requests that the server stream to the player around the specified location.
35543
35550
  *
@@ -38058,6 +38065,12 @@ interface RunService extends Instance {
38058
38065
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#RenderStepped)
38059
38066
  */
38060
38067
  readonly RenderStepped: RBXScriptSignal<(deltaTime: number) => void>;
38068
+ /**
38069
+ * - **ThreadSafety**: Unsafe
38070
+ *
38071
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Rollback)
38072
+ */
38073
+ readonly Rollback: RBXScriptSignal<(time: number) => void>;
38061
38074
  /**
38062
38075
  * Fires every frame, prior to the physics simulation.
38063
38076
  *
@@ -41804,6 +41817,12 @@ interface StyleRule extends StyleBase {
41804
41817
  * @param value Property value to set, for example `Color3.new(1, 0, 0.25)`.
41805
41818
  */
41806
41819
  SetProperty(this: StyleRule, name: string, value: unknown): void;
41820
+ /**
41821
+ * - **ThreadSafety**: Unsafe
41822
+ *
41823
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetPropertyTransition)
41824
+ */
41825
+ SetPropertyTransition(this: StyleRule, property: string, transitionParams: unknown): void;
41807
41826
  /**
41808
41827
  * - **ThreadSafety**: Unsafe
41809
41828
  *
@@ -41903,8 +41922,6 @@ interface StyleLink extends Instance {
41903
41922
  StyleSheet: StyleSheet | undefined;
41904
41923
  }
41905
41924
  /**
41906
- * - **Tags**: NotBrowsable
41907
- *
41908
41925
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
41909
41926
  */
41910
41927
  interface StyleQuery extends Instance {
@@ -45234,6 +45251,20 @@ interface UICorner extends UIComponent {
45234
45251
  * @deprecated
45235
45252
  */
45236
45253
  readonly _nominal_UICorner: unique symbol;
45254
+ /**
45255
+ * - **ThreadSafety**: ReadSafe
45256
+ * - **Tags**: Hidden, NotReplicated
45257
+ *
45258
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#BottomLeftRadius)
45259
+ */
45260
+ set BottomLeftRadius(value: UDim);
45261
+ /**
45262
+ * - **ThreadSafety**: ReadSafe
45263
+ * - **Tags**: Hidden, NotReplicated
45264
+ *
45265
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#BottomRightRadius)
45266
+ */
45267
+ set BottomRightRadius(value: UDim);
45237
45268
  /**
45238
45269
  * Determines the radius of the component.
45239
45270
  *
@@ -45242,6 +45273,20 @@ interface UICorner extends UIComponent {
45242
45273
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#CornerRadius)
45243
45274
  */
45244
45275
  CornerRadius: UDim;
45276
+ /**
45277
+ * - **ThreadSafety**: ReadSafe
45278
+ * - **Tags**: Hidden, NotReplicated
45279
+ *
45280
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#TopLeftRadius)
45281
+ */
45282
+ set TopLeftRadius(value: UDim);
45283
+ /**
45284
+ * - **ThreadSafety**: ReadSafe
45285
+ * - **Tags**: Hidden, NotReplicated
45286
+ *
45287
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#TopRightRadius)
45288
+ */
45289
+ set TopRightRadius(value: UDim);
45245
45290
  }
45246
45291
  /**
45247
45292
  * Instance which facilitates and encourages interaction with UI elements in an experience.
@@ -46105,6 +46150,8 @@ interface UIScale extends UIComponent {
46105
46150
  Scale: number;
46106
46151
  }
46107
46152
  /**
46153
+ * - **Tags**: NotBrowsable
46154
+ *
46108
46155
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
46109
46156
  */
46110
46157
  interface UIShadow extends UIComponent {
@@ -48850,6 +48897,21 @@ interface MLSession extends RBXObject {
48850
48897
  */
48851
48898
  ForwardAsync(this: MLSession, data: object): object;
48852
48899
  }
48900
+ /**
48901
+ * - **Tags**: NotCreatable, NotReplicated
48902
+ *
48903
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OutputLink)
48904
+ */
48905
+ interface OutputLink extends RBXObject {
48906
+ /**
48907
+ * **DO NOT USE!**
48908
+ *
48909
+ * This field exists to force TypeScript to recognize this as a nominal type
48910
+ * @hidden
48911
+ * @deprecated
48912
+ */
48913
+ readonly _nominal_OutputLink: unique symbol;
48914
+ }
48853
48915
  /**
48854
48916
  * - **Tags**: NotCreatable, NotReplicated
48855
48917
  *
@@ -787,7 +787,6 @@ interface Instances extends Services, CreatableInstances {
787
787
  }
788
788
  interface Objects extends Instances {
789
789
  AnimationNode: AnimationNode;
790
- AuroraHandle: AuroraHandle;
791
790
  Capture: Capture;
792
791
  ConfigSnapshot: ConfigSnapshot;
793
792
  EditableImage: EditableImage;
@@ -795,6 +794,7 @@ interface Objects extends Instances {
795
794
  ExecutedRemoteCommand: ExecutedRemoteCommand;
796
795
  MLSession: MLSession;
797
796
  Object: RBXObject;
797
+ OutputLink: OutputLink;
798
798
  ScreenshotCapture: ScreenshotCapture;
799
799
  TerrainIterateOperation: TerrainIterateOperation;
800
800
  TerrainModifyOperation: TerrainModifyOperation;
@@ -838,23 +838,6 @@ interface AnimationNode extends RBXObject {
838
838
  */
839
839
  readonly _nominal_AnimationNode: unique symbol;
840
840
  }
841
- /**
842
- * - **Tags**: NotCreatable
843
- *
844
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
845
- *
846
- * @deprecated
847
- */
848
- interface AuroraHandle extends RBXObject {
849
- /**
850
- * **DO NOT USE!**
851
- *
852
- * This field exists to force TypeScript to recognize this as a nominal type
853
- * @hidden
854
- * @deprecated
855
- */
856
- readonly _nominal_AuroraHandle: unique symbol;
857
- }
858
841
  /**
859
842
  * A class which defines a piece of content, such as a screenshot or video, taken in-experience.
860
843
  *
@@ -1150,7 +1133,7 @@ interface AdService extends Instance {
1150
1133
  readonly _nominal_AdService: unique symbol;
1151
1134
  }
1152
1135
  /**
1153
- * Collection of methods that allows developers to track how users interact with their experiences.
1136
+ * Collection of methods that allows you to track how users interact with your experiences.
1154
1137
  *
1155
1138
  * - **Tags**: NotCreatable, Service, NotReplicated
1156
1139
  *
@@ -8337,8 +8320,6 @@ interface MLService extends Instance {
8337
8320
  readonly _nominal_MLService: unique symbol;
8338
8321
  }
8339
8322
  /**
8340
- * - **Tags**: NotBrowsable
8341
- *
8342
8323
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
8343
8324
  */
8344
8325
  interface MakeupDescription extends Instance {
@@ -14210,8 +14191,6 @@ interface StyleLink extends Instance {
14210
14191
  readonly _nominal_StyleLink: unique symbol;
14211
14192
  }
14212
14193
  /**
14213
- * - **Tags**: NotBrowsable
14214
- *
14215
14194
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
14216
14195
  */
14217
14196
  interface StyleQuery extends Instance {
@@ -15539,6 +15518,8 @@ interface UIScale extends UIComponent {
15539
15518
  readonly _nominal_UIScale: unique symbol;
15540
15519
  }
15541
15520
  /**
15521
+ * - **Tags**: NotBrowsable
15522
+ *
15542
15523
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
15543
15524
  */
15544
15525
  interface UIShadow extends UIComponent {
@@ -16259,6 +16240,21 @@ interface MLSession extends RBXObject {
16259
16240
  */
16260
16241
  readonly _nominal_MLSession: unique symbol;
16261
16242
  }
16243
+ /**
16244
+ * - **Tags**: NotCreatable, NotReplicated
16245
+ *
16246
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OutputLink)
16247
+ */
16248
+ interface OutputLink extends RBXObject {
16249
+ /**
16250
+ * **DO NOT USE!**
16251
+ *
16252
+ * This field exists to force TypeScript to recognize this as a nominal type
16253
+ * @hidden
16254
+ * @deprecated
16255
+ */
16256
+ readonly _nominal_OutputLink: unique symbol;
16257
+ }
16262
16258
  /**
16263
16259
  * - **Tags**: NotCreatable, NotReplicated
16264
16260
  *
@@ -400,6 +400,69 @@ declare namespace Enum {
400
400
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActionType | undefined;
401
401
  }
402
402
  export type ActionType = ActionType.Nothing | ActionType.Pause | ActionType.Lose | ActionType.Draw | ActionType.Win;
403
+ /**
404
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus)
405
+ */
406
+ export namespace ActivePayerStatus {
407
+ /**
408
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Unknown)
409
+ */
410
+ export interface Unknown extends globalThis.EnumItem {
411
+ Name: "Unknown";
412
+ Value: 0;
413
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
414
+ }
415
+ export const Unknown: Unknown;
416
+ /**
417
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Never)
418
+ */
419
+ export interface Never extends globalThis.EnumItem {
420
+ Name: "Never";
421
+ Value: 1;
422
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
423
+ }
424
+ export const Never: Never;
425
+ /**
426
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Lapsed)
427
+ */
428
+ export interface Lapsed extends globalThis.EnumItem {
429
+ Name: "Lapsed";
430
+ Value: 2;
431
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
432
+ }
433
+ export const Lapsed: Lapsed;
434
+ /**
435
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Casual50Percent)
436
+ */
437
+ export interface Casual50Percent extends globalThis.EnumItem {
438
+ Name: "Casual50Percent";
439
+ Value: 3;
440
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
441
+ }
442
+ export const Casual50Percent: Casual50Percent;
443
+ /**
444
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Intermediate35Percent)
445
+ */
446
+ export interface Intermediate35Percent extends globalThis.EnumItem {
447
+ Name: "Intermediate35Percent";
448
+ Value: 4;
449
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
450
+ }
451
+ export const Intermediate35Percent: Intermediate35Percent;
452
+ /**
453
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Top15Percent)
454
+ */
455
+ export interface Top15Percent extends globalThis.EnumItem {
456
+ Name: "Top15Percent";
457
+ Value: 5;
458
+ EnumType: typeof globalThis.Enum.ActivePayerStatus;
459
+ }
460
+ export const Top15Percent: Top15Percent;
461
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActivePayerStatus>;
462
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ActivePayerStatus | undefined;
463
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ActivePayerStatus | undefined;
464
+ }
465
+ export type ActivePayerStatus = ActivePayerStatus.Unknown | ActivePayerStatus.Never | ActivePayerStatus.Lapsed | ActivePayerStatus.Casual50Percent | ActivePayerStatus.Intermediate35Percent | ActivePayerStatus.Top15Percent;
403
466
  /**
404
467
  * The CFrame value in which the body mover constraint is expressed.
405
468
  *
@@ -1672,6 +1735,33 @@ declare namespace Enum {
1672
1735
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
1673
1736
  }
1674
1737
  export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.Finished | AnimationNodeInterruptible.Trigger;
1738
+ /**
1739
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePhaseSync)
1740
+ */
1741
+ export namespace AnimationNodePhaseSync {
1742
+ /**
1743
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePhaseSync#Synced)
1744
+ */
1745
+ export interface Synced extends globalThis.EnumItem {
1746
+ Name: "Synced";
1747
+ Value: 0;
1748
+ EnumType: typeof globalThis.Enum.AnimationNodePhaseSync;
1749
+ }
1750
+ export const Synced: Synced;
1751
+ /**
1752
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePhaseSync#Unsynced)
1753
+ */
1754
+ export interface Unsynced extends globalThis.EnumItem {
1755
+ Name: "Unsynced";
1756
+ Value: 1;
1757
+ EnumType: typeof globalThis.Enum.AnimationNodePhaseSync;
1758
+ }
1759
+ export const Unsynced: Unsynced;
1760
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodePhaseSync>;
1761
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodePhaseSync | undefined;
1762
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodePhaseSync | undefined;
1763
+ }
1764
+ export type AnimationNodePhaseSync = AnimationNodePhaseSync.Synced | AnimationNodePhaseSync.Unsynced;
1675
1765
  /**
1676
1766
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
1677
1767
  */
@@ -1776,14 +1866,18 @@ declare namespace Enum {
1776
1866
  }
1777
1867
  export const AddNode: AddNode;
1778
1868
  /**
1779
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#BlendNode)
1869
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#OverNode)
1780
1870
  */
1781
- export interface BlendNode extends globalThis.EnumItem {
1782
- Name: "BlendNode";
1871
+ export interface OverNode extends globalThis.EnumItem {
1872
+ Name: "OverNode";
1783
1873
  Value: 2;
1784
1874
  EnumType: typeof globalThis.Enum.AnimationNodeType;
1785
1875
  }
1786
- export const BlendNode: BlendNode;
1876
+ export const OverNode: OverNode;
1877
+ /**
1878
+ * @deprecated renamed to OverNode
1879
+ */
1880
+ export const BlendNode: OverNode;
1787
1881
  /**
1788
1882
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
1789
1883
  */
@@ -1887,7 +1981,7 @@ declare namespace Enum {
1887
1981
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeType | undefined;
1888
1982
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
1889
1983
  }
1890
- export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.BlendNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
1984
+ export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.OverNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
1891
1985
  /**
1892
1986
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor)
1893
1987
  */
@@ -9506,6 +9600,60 @@ declare namespace Enum {
9506
9600
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateAssetResult | undefined;
9507
9601
  }
9508
9602
  export type CreateAssetResult = CreateAssetResult.Success | CreateAssetResult.PermissionDenied | CreateAssetResult.UploadFailed | CreateAssetResult.Unknown;
9603
+ /**
9604
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult)
9605
+ */
9606
+ export namespace CreateContentResult {
9607
+ /**
9608
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Success)
9609
+ */
9610
+ export interface Success extends globalThis.EnumItem {
9611
+ Name: "Success";
9612
+ Value: 1;
9613
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9614
+ }
9615
+ export const Success: Success;
9616
+ /**
9617
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#PermissionDenied)
9618
+ */
9619
+ export interface PermissionDenied extends globalThis.EnumItem {
9620
+ Name: "PermissionDenied";
9621
+ Value: 2;
9622
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9623
+ }
9624
+ export const PermissionDenied: PermissionDenied;
9625
+ /**
9626
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#UploadFailed)
9627
+ */
9628
+ export interface UploadFailed extends globalThis.EnumItem {
9629
+ Name: "UploadFailed";
9630
+ Value: 3;
9631
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9632
+ }
9633
+ export const UploadFailed: UploadFailed;
9634
+ /**
9635
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Unknown)
9636
+ */
9637
+ export interface Unknown extends globalThis.EnumItem {
9638
+ Name: "Unknown";
9639
+ Value: 4;
9640
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9641
+ }
9642
+ export const Unknown: Unknown;
9643
+ /**
9644
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#StorageLimitExceeded)
9645
+ */
9646
+ export interface StorageLimitExceeded extends globalThis.EnumItem {
9647
+ Name: "StorageLimitExceeded";
9648
+ Value: 5;
9649
+ EnumType: typeof globalThis.Enum.CreateContentResult;
9650
+ }
9651
+ export const StorageLimitExceeded: StorageLimitExceeded;
9652
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreateContentResult>;
9653
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreateContentResult | undefined;
9654
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateContentResult | undefined;
9655
+ }
9656
+ export type CreateContentResult = CreateContentResult.Success | CreateContentResult.PermissionDenied | CreateContentResult.UploadFailed | CreateContentResult.Unknown | CreateContentResult.StorageLimitExceeded;
9509
9657
  /**
9510
9658
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateOutfitFailure)
9511
9659
  */
@@ -9837,11 +9985,7 @@ declare namespace Enum {
9837
9985
  }
9838
9986
  export const RemoveVersionAsync: RemoveVersionAsync;
9839
9987
  /**
9840
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9841
- *
9842
- *
9843
- *
9844
- * Refers to `GetAsync()`, `GetVersionAsync()`, `GetVersionAtTimeAsync()`, and the read of `UpdateAsync()` for `DataStore`.
9988
+ * Refers to `GetAsync()`, `GetVersionAsync()`, `GetVersionAtTimeAsync()`, and the read of `UpdateAsync()` for `DataStore`.
9845
9989
  *
9846
9990
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRead)
9847
9991
  */
@@ -9852,11 +9996,7 @@ declare namespace Enum {
9852
9996
  }
9853
9997
  export const StandardRead: StandardRead;
9854
9998
  /**
9855
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9856
- *
9857
- *
9858
- *
9859
- * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `DataStore`.
9999
+ * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `DataStore`.
9860
10000
  *
9861
10001
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardWrite)
9862
10002
  */
@@ -9867,11 +10007,7 @@ declare namespace Enum {
9867
10007
  }
9868
10008
  export const StandardWrite: StandardWrite;
9869
10009
  /**
9870
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9871
- *
9872
- *
9873
- *
9874
- * Refers to `ListDataStoresAsync()`, and `ListKeysAsync()` and `ListVersionsAsync()` for `DataStore`.
10010
+ * Refers to `ListDataStoresAsync()`, and `ListKeysAsync()` and `ListVersionsAsync()` for `DataStore`.
9875
10011
  *
9876
10012
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardList)
9877
10013
  */
@@ -9882,11 +10018,7 @@ declare namespace Enum {
9882
10018
  }
9883
10019
  export const StandardList: StandardList;
9884
10020
  /**
9885
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9886
- *
9887
- *
9888
- *
9889
- * Refers to `RemoveAsync()` for `DataStore`.
10021
+ * Refers to `RemoveAsync()` for `DataStore`.
9890
10022
  *
9891
10023
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRemove)
9892
10024
  */
@@ -9897,11 +10029,7 @@ declare namespace Enum {
9897
10029
  }
9898
10030
  export const StandardRemove: StandardRemove;
9899
10031
  /**
9900
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9901
- *
9902
- *
9903
- *
9904
- * Refers to `GetAsync()` and the read of `UpdateAsync()` for `OrderedDataStore`.
10032
+ * Refers to `GetAsync()` and the read of `UpdateAsync()` for `OrderedDataStore`.
9905
10033
  *
9906
10034
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRead)
9907
10035
  */
@@ -9912,11 +10040,7 @@ declare namespace Enum {
9912
10040
  }
9913
10041
  export const OrderedRead: OrderedRead;
9914
10042
  /**
9915
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9916
- *
9917
- *
9918
- *
9919
- * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `OrderedDataStore`.
10043
+ * Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `OrderedDataStore`.
9920
10044
  *
9921
10045
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedWrite)
9922
10046
  */
@@ -9927,11 +10051,7 @@ declare namespace Enum {
9927
10051
  }
9928
10052
  export const OrderedWrite: OrderedWrite;
9929
10053
  /**
9930
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9931
- *
9932
- *
9933
- *
9934
- * Refers to `GetSortedAsync()` for `OrderedDataStore`. GetRequestBudgetForRequestType()`with this enum will return`0`.
10054
+ * Refers to `GetSortedAsync()` for `OrderedDataStore`. GetRequestBudgetForRequestType()`with this enum will return`0`.
9935
10055
  *
9936
10056
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedList)
9937
10057
  */
@@ -9942,11 +10062,7 @@ declare namespace Enum {
9942
10062
  }
9943
10063
  export const OrderedList: OrderedList;
9944
10064
  /**
9945
- * This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
9946
- *
9947
- *
9948
- *
9949
- * Refers to `RemoveAsync()` for `OrderedDataStore`.
10065
+ * Refers to `RemoveAsync()` for `OrderedDataStore`.
9950
10066
  *
9951
10067
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRemove)
9952
10068
  */
@@ -25330,6 +25446,42 @@ declare namespace Enum {
25330
25446
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerExitReason | undefined;
25331
25447
  }
25332
25448
  export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
25449
+ /**
25450
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus)
25451
+ */
25452
+ export namespace PlayerPlatformSpenderStatus {
25453
+ /**
25454
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Unknown)
25455
+ */
25456
+ export interface Unknown extends globalThis.EnumItem {
25457
+ Name: "Unknown";
25458
+ Value: 0;
25459
+ EnumType: typeof globalThis.Enum.PlayerPlatformSpenderStatus;
25460
+ }
25461
+ export const Unknown: Unknown;
25462
+ /**
25463
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Active)
25464
+ */
25465
+ export interface Active extends globalThis.EnumItem {
25466
+ Name: "Active";
25467
+ Value: 1;
25468
+ EnumType: typeof globalThis.Enum.PlayerPlatformSpenderStatus;
25469
+ }
25470
+ export const Active: Active;
25471
+ /**
25472
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#OtherPayer)
25473
+ */
25474
+ export interface OtherPayer extends globalThis.EnumItem {
25475
+ Name: "OtherPayer";
25476
+ Value: 2;
25477
+ EnumType: typeof globalThis.Enum.PlayerPlatformSpenderStatus;
25478
+ }
25479
+ export const OtherPayer: OtherPayer;
25480
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerPlatformSpenderStatus>;
25481
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerPlatformSpenderStatus | undefined;
25482
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerPlatformSpenderStatus | undefined;
25483
+ }
25484
+ export type PlayerPlatformSpenderStatus = PlayerPlatformSpenderStatus.Unknown | PlayerPlatformSpenderStatus.Active | PlayerPlatformSpenderStatus.OtherPayer;
25333
25485
  /**
25334
25486
  * Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
25335
25487
  *
@@ -38772,6 +38924,69 @@ declare namespace Enum {
38772
38924
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WeldConstraintPreserve | undefined;
38773
38925
  }
38774
38926
  export type WeldConstraintPreserve = WeldConstraintPreserve.All | WeldConstraintPreserve.None | WeldConstraintPreserve.Touching;
38927
+ /**
38928
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed)
38929
+ */
38930
+ export namespace WhenUserFirstPlayed {
38931
+ /**
38932
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Unknown)
38933
+ */
38934
+ export interface Unknown extends globalThis.EnumItem {
38935
+ Name: "Unknown";
38936
+ Value: 0;
38937
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38938
+ }
38939
+ export const Unknown: Unknown;
38940
+ /**
38941
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days0To30)
38942
+ */
38943
+ export interface Days0To30 extends globalThis.EnumItem {
38944
+ Name: "Days0To30";
38945
+ Value: 1;
38946
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38947
+ }
38948
+ export const Days0To30: Days0To30;
38949
+ /**
38950
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days31To90)
38951
+ */
38952
+ export interface Days31To90 extends globalThis.EnumItem {
38953
+ Name: "Days31To90";
38954
+ Value: 2;
38955
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38956
+ }
38957
+ export const Days31To90: Days31To90;
38958
+ /**
38959
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days91To180)
38960
+ */
38961
+ export interface Days91To180 extends globalThis.EnumItem {
38962
+ Name: "Days91To180";
38963
+ Value: 3;
38964
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38965
+ }
38966
+ export const Days91To180: Days91To180;
38967
+ /**
38968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days181To365)
38969
+ */
38970
+ export interface Days181To365 extends globalThis.EnumItem {
38971
+ Name: "Days181To365";
38972
+ Value: 4;
38973
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38974
+ }
38975
+ export const Days181To365: Days181To365;
38976
+ /**
38977
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days366Plus)
38978
+ */
38979
+ export interface Days366Plus extends globalThis.EnumItem {
38980
+ Name: "Days366Plus";
38981
+ Value: 5;
38982
+ EnumType: typeof globalThis.Enum.WhenUserFirstPlayed;
38983
+ }
38984
+ export const Days366Plus: Days366Plus;
38985
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WhenUserFirstPlayed>;
38986
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WhenUserFirstPlayed | undefined;
38987
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WhenUserFirstPlayed | undefined;
38988
+ }
38989
+ export type WhenUserFirstPlayed = WhenUserFirstPlayed.Unknown | WhenUserFirstPlayed.Days0To30 | WhenUserFirstPlayed.Days31To90 | WhenUserFirstPlayed.Days91To180 | WhenUserFirstPlayed.Days181To365 | WhenUserFirstPlayed.Days366Plus;
38775
38990
  /**
38776
38991
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhisperChatPrivacyMode)
38777
38992
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.911",
3
+ "version": "1.0.912",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },