@rbxts/types 1.0.887 → 1.0.888

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.
@@ -59,6 +59,7 @@ interface Services {
59
59
  DeviceIdService: DeviceIdService;
60
60
  DraggerService: DraggerService;
61
61
  EditableService: EditableService;
62
+ EncodingService: EncodingService;
62
63
  EventIngestService: EventIngestService;
63
64
  ExampleV2Service: ExampleV2Service;
64
65
  ExperienceAuthService: ExperienceAuthService;
@@ -215,6 +216,7 @@ interface Services {
215
216
  UIDragDetectorService: UIDragDetectorService;
216
217
  UniqueIdLookupService: UniqueIdLookupService;
217
218
  UnvalidatedAssetService: UnvalidatedAssetService;
219
+ UserGameSettings: UserGameSettings;
218
220
  UserInputService: UserInputService;
219
221
  UserService: UserService;
220
222
  VideoCaptureService: VideoCaptureService;
@@ -243,6 +245,8 @@ interface CreatableInstances {
243
245
  Animation: Animation;
244
246
  AnimationConstraint: AnimationConstraint;
245
247
  AnimationController: AnimationController;
248
+ AnimationGraphDefinition: AnimationGraphDefinition;
249
+ AnimationNodeDefinition: AnimationNodeDefinition;
246
250
  AnimationRigData: AnimationRigData;
247
251
  Animator: Animator;
248
252
  Annotation: Annotation;
@@ -698,13 +702,13 @@ interface Instances extends Services, CreatableInstances {
698
702
  UIConstraint: UIConstraint;
699
703
  UIGridStyleLayout: UIGridStyleLayout;
700
704
  UILayout: UILayout;
701
- UserGameSettings: UserGameSettings;
702
705
  UserSettings: UserSettings;
703
706
  ValueBase: ValueBase;
704
707
  WebSocketClient: WebSocketClient;
705
708
  WorldRoot: WorldRoot;
706
709
  }
707
710
  interface Objects extends Instances {
711
+ AnimationNode: AnimationNode;
708
712
  Capture: Capture;
709
713
  ConfigSnapshot: ConfigSnapshot;
710
714
  EditableImage: EditableImage;
@@ -778,6 +782,21 @@ interface RBXObject {
778
782
  */
779
783
  readonly Changed: unknown;
780
784
  }
785
+ /**
786
+ * - **Tags**: NotCreatable, NotReplicated
787
+ *
788
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNode)
789
+ */
790
+ interface AnimationNode extends RBXObject {
791
+ /**
792
+ * **DO NOT USE!**
793
+ *
794
+ * This field exists to force TypeScript to recognize this as a nominal type
795
+ * @hidden
796
+ * @deprecated
797
+ */
798
+ readonly _nominal_AnimationNode: unique symbol;
799
+ }
781
800
  /**
782
801
  * - **Tags**: NotCreatable, NotReplicated
783
802
  *
@@ -2446,6 +2465,13 @@ interface Instance extends RBXObject {
2446
2465
  * @returns Boolean indicating whether the property is modified from its code‑instantiated default.
2447
2466
  */
2448
2467
  IsPropertyModified(this: Instance, property: string): boolean;
2468
+ /**
2469
+ * - **ThreadSafety**: Unsafe
2470
+ * - **Tags**: CustomLuaState
2471
+ *
2472
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#QueryDescendants)
2473
+ */
2474
+ QueryDescendants(this: Instance, selectorGroup: string): Array<Instance>;
2449
2475
  /**
2450
2476
  * Removes a tag from the instance.
2451
2477
  *
@@ -3132,6 +3158,19 @@ interface AnimationClip extends Instance {
3132
3158
  */
3133
3159
  Priority: Enum.AnimationPriority;
3134
3160
  }
3161
+ /**
3162
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationGraphDefinition)
3163
+ */
3164
+ interface AnimationGraphDefinition extends AnimationClip {
3165
+ /**
3166
+ * **DO NOT USE!**
3167
+ *
3168
+ * This field exists to force TypeScript to recognize this as a nominal type
3169
+ * @hidden
3170
+ * @deprecated
3171
+ */
3172
+ readonly _nominal_AnimationGraphDefinition: unique symbol;
3173
+ }
3135
3174
  /**
3136
3175
  * Stores animation data in the form of curves for each individual channel to animate.
3137
3176
  *
@@ -3352,6 +3391,43 @@ interface AnimationFromVideoCreatorStudioService extends Instance {
3352
3391
  */
3353
3392
  readonly _nominal_AnimationFromVideoCreatorStudioService: unique symbol;
3354
3393
  }
3394
+ /**
3395
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition)
3396
+ */
3397
+ interface AnimationNodeDefinition extends Instance {
3398
+ /**
3399
+ * **DO NOT USE!**
3400
+ *
3401
+ * This field exists to force TypeScript to recognize this as a nominal type
3402
+ * @hidden
3403
+ * @deprecated
3404
+ */
3405
+ readonly _nominal_AnimationNodeDefinition: unique symbol;
3406
+ /**
3407
+ * - **ThreadSafety**: ReadSafe
3408
+ *
3409
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#NodeType)
3410
+ */
3411
+ NodeType: Enum.AnimationNodeType;
3412
+ /**
3413
+ * - **ThreadSafety**: Unsafe
3414
+ *
3415
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#GetConnectedWires)
3416
+ */
3417
+ GetConnectedWires(this: AnimationNodeDefinition, pin: string): Array<Instance>;
3418
+ /**
3419
+ * - **ThreadSafety**: Unsafe
3420
+ *
3421
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#GetInputPins)
3422
+ */
3423
+ GetInputPins(this: AnimationNodeDefinition): Array<unknown>;
3424
+ /**
3425
+ * - **ThreadSafety**: Unsafe
3426
+ *
3427
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#GetOutputPins)
3428
+ */
3429
+ GetOutputPins(this: AnimationNodeDefinition): Array<unknown>;
3430
+ }
3355
3431
  /**
3356
3432
  * Used to store information regarding the model an animation was authored for.
3357
3433
  *
@@ -4193,10 +4269,15 @@ interface AssetService extends Instance {
4193
4269
  PlaceId: number;
4194
4270
  }>;
4195
4271
  /**
4272
+ * Loads a `Model` instance given its asset ID. This is the modern replacement for `InsertService:LoadAsset()` and supports loading third-party assets.
4273
+ *
4196
4274
  * - **ThreadSafety**: Unsafe
4197
4275
  * - **Tags**: Yields
4198
4276
  *
4199
4277
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#LoadAssetAsync)
4278
+ * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
4279
+ * @param assetId The asset ID number of the asset being loaded.
4280
+ * @returns A `Model` instance containing the loaded asset.
4200
4281
  */
4201
4282
  LoadAssetAsync(this: AssetService, assetId: number): Instance | undefined;
4202
4283
  /**
@@ -15102,6 +15183,63 @@ interface EditableService extends Instance {
15102
15183
  */
15103
15184
  readonly _nominal_EditableService: unique symbol;
15104
15185
  }
15186
+ /**
15187
+ * - **Tags**: NotCreatable, Service, NotReplicated
15188
+ *
15189
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
15190
+ */
15191
+ interface EncodingService extends Instance {
15192
+ /**
15193
+ * **DO NOT USE!**
15194
+ *
15195
+ * This field exists to force TypeScript to recognize this as a nominal type
15196
+ * @hidden
15197
+ * @deprecated
15198
+ */
15199
+ readonly _nominal_EncodingService: unique symbol;
15200
+ /**
15201
+ * - **ThreadSafety**: Safe
15202
+ *
15203
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#Base64Decode)
15204
+ */
15205
+ Base64Decode(this: EncodingService, input: buffer): buffer;
15206
+ /**
15207
+ * - **ThreadSafety**: Safe
15208
+ *
15209
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#Base64Encode)
15210
+ */
15211
+ Base64Encode(this: EncodingService, input: buffer): buffer;
15212
+ /**
15213
+ * - **ThreadSafety**: Safe
15214
+ *
15215
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#CompressBuffer)
15216
+ */
15217
+ CompressBuffer(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>, compressionLevel?: number): buffer;
15218
+ /**
15219
+ * - **ThreadSafety**: Safe
15220
+ *
15221
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#ComputeBufferHash)
15222
+ */
15223
+ ComputeBufferHash(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.HashAlgorithm>): buffer;
15224
+ /**
15225
+ * - **ThreadSafety**: Safe
15226
+ *
15227
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#ComputeStringHash)
15228
+ */
15229
+ ComputeStringHash(this: EncodingService, input: string, algorithm: CastsToEnum<Enum.HashAlgorithm>): string;
15230
+ /**
15231
+ * - **ThreadSafety**: Safe
15232
+ *
15233
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#DecompressBuffer)
15234
+ */
15235
+ DecompressBuffer(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>): buffer;
15236
+ /**
15237
+ * - **ThreadSafety**: Safe
15238
+ *
15239
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#GetDecompressedBufferSize)
15240
+ */
15241
+ GetDecompressedBufferSize(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>): number | undefined;
15242
+ }
15105
15243
  /**
15106
15244
  * Represents a 3D rotation curve through a group of three `FloatCurves`.
15107
15245
  *
@@ -15903,7 +16041,7 @@ interface FeatureRestrictionManager extends Instance {
15903
16041
  readonly _nominal_FeatureRestrictionManager: unique symbol;
15904
16042
  }
15905
16043
  /**
15906
- * A particle emitter with the visual aesthetic of fire.
16044
+ * A preconfigured particle emitter with the visual aesthetic of fire.
15907
16045
  *
15908
16046
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Fire)
15909
16047
  */
@@ -15942,6 +16080,8 @@ interface Fire extends Instance {
15942
16080
  */
15943
16081
  Heat: number;
15944
16082
  /**
16083
+ * A multiplier for the `Fire` object's transparency that is only visible to the local client.
16084
+ *
15945
16085
  * - **ThreadSafety**: ReadSafe
15946
16086
  * - **Tags**: Hidden, NotReplicated
15947
16087
  *
@@ -15966,7 +16106,7 @@ interface Fire extends Instance {
15966
16106
  */
15967
16107
  Size: number;
15968
16108
  /**
15969
- * Value between 0-1 that controls the speed of the particle effect.
16109
+ * Controls the speed of the particle effect.
15970
16110
  *
15971
16111
  * - **ThreadSafety**: ReadSafe
15972
16112
  *
@@ -36091,12 +36231,18 @@ interface RuntimeContentService extends Instance {
36091
36231
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService#RuntimeContentFail)
36092
36232
  */
36093
36233
  readonly RuntimeContentFail: RBXScriptSignal<(id: string) => void>;
36234
+ /**
36235
+ * - **ThreadSafety**: Unsafe
36236
+ *
36237
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService#RuntimeContentLRCleanup)
36238
+ */
36239
+ readonly RuntimeContentLRCleanup: RBXScriptSignal<(id: string, priorityList: string) => void>;
36094
36240
  /**
36095
36241
  * - **ThreadSafety**: Unsafe
36096
36242
  *
36097
36243
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService#RuntimeContentQuery)
36098
36244
  */
36099
- readonly RuntimeContentQuery: RBXScriptSignal<(id: string, content: string) => void>;
36245
+ readonly RuntimeContentQuery: RBXScriptSignal<(id: string, expectedType: string, priorityList: string) => void>;
36100
36246
  /**
36101
36247
  * - **ThreadSafety**: Unsafe
36102
36248
  *
@@ -37571,6 +37717,13 @@ interface SocialService extends Instance {
37571
37717
  * @returns Returns an `RsvpStatus` indicating the player's current RSVP status for the event. If the player has not RSVP'd to the event, this will return `RsvpStatus.None`.
37572
37718
  */
37573
37719
  GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
37720
+ /**
37721
+ * - **ThreadSafety**: Unsafe
37722
+ * - **Tags**: Yields
37723
+ *
37724
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetExperienceEventAsync)
37725
+ */
37726
+ GetExperienceEventAsync(this: SocialService, eventId: string): object | undefined;
37574
37727
  /**
37575
37728
  * Returns an array of dictionaries containing data for all members of the specified party who are currently in the experience.
37576
37729
  *
@@ -37583,6 +37736,13 @@ interface SocialService extends Instance {
37583
37736
  * @returns An array of dictionaries representing the members of the specified party who are currently in the experience.
37584
37737
  */
37585
37738
  GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
37739
+ /**
37740
+ * - **ThreadSafety**: Unsafe
37741
+ * - **Tags**: Yields
37742
+ *
37743
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetUpcomingExperienceEventsAsync)
37744
+ */
37745
+ GetUpcomingExperienceEventsAsync(this: SocialService): Array<unknown>;
37586
37746
  /**
37587
37747
  * Prompts the player to submit feedback about the current experience.
37588
37748
  *
@@ -38077,7 +38237,7 @@ interface CompressorSoundEffect extends SoundEffect {
38077
38237
  */
38078
38238
  readonly _nominal_CompressorSoundEffect: unique symbol;
38079
38239
  /**
38080
- * The time the effect takes to become active after its Threshold has be reached.
38240
+ * The time the effect takes to become active after its `Threshold` has been reached.
38081
38241
  *
38082
38242
  * - **ThreadSafety**: ReadSafe
38083
38243
  *
@@ -38085,7 +38245,7 @@ interface CompressorSoundEffect extends SoundEffect {
38085
38245
  */
38086
38246
  Attack: number;
38087
38247
  /**
38088
- * The overall amplification applied to the effect's Sound or SoundGroup after attenuation of sounds above the threshold.
38248
+ * The overall amplification applied to the effect's `Sound` or `SoundGroup` after attenuation of sounds above the threshold.
38089
38249
  *
38090
38250
  * - **ThreadSafety**: ReadSafe
38091
38251
  *
@@ -38093,7 +38253,7 @@ interface CompressorSoundEffect extends SoundEffect {
38093
38253
  */
38094
38254
  GainMakeup: number;
38095
38255
  /**
38096
- * The ratio between the `CompressorSoundEffect.SideChain` sound effect, and this sound effect.
38256
+ * The ratio between the `SideChain` sound effect, and this sound effect.
38097
38257
  *
38098
38258
  * - **ThreadSafety**: ReadSafe
38099
38259
  *
@@ -38101,7 +38261,7 @@ interface CompressorSoundEffect extends SoundEffect {
38101
38261
  */
38102
38262
  Ratio: number;
38103
38263
  /**
38104
- * The time the effect takes to become inactive after its sound is below the Threshold.
38264
+ * The time the effect takes to become inactive after its sound is below the `Threshold`.
38105
38265
  *
38106
38266
  * - **ThreadSafety**: ReadSafe
38107
38267
  *
@@ -39008,7 +39168,7 @@ interface Stats extends Instance {
39008
39168
  */
39009
39169
  readonly FrameTime: number;
39010
39170
  /**
39011
- * A measurement of the total amount of time it takes for the server to update its Task Scheduler jobs in seconds.
39171
+ * A measurement of the total amount of time it takes for the server to update its task scheduler jobs in seconds.
39012
39172
  *
39013
39173
  * - **ThreadSafety**: ReadSafe
39014
39174
  * - **Tags**: NotReplicated
@@ -39019,7 +39179,7 @@ interface Stats extends Instance {
39019
39179
  /**
39020
39180
  * **Deprecated:**
39021
39181
  *
39022
- * A measurement of the total amount of time it takes long it takes for Roblox to update all of its Task Scheduler jobs, in milliseconds.
39182
+ * A measurement of the total amount of time it takes long it takes for Roblox to update all of its task scheduler jobs, in milliseconds.
39023
39183
  *
39024
39184
  * - **ThreadSafety**: ReadSafe
39025
39185
  * - **Tags**: NotReplicated
@@ -39210,7 +39370,7 @@ interface Stats extends Instance {
39210
39370
  */
39211
39371
  GetMemoryCategoryNames(this: Stats): Array<unknown>;
39212
39372
  /**
39213
- * Returns the number of megabytes that are being consumed by all available categories, or an empty array if `MemoryTrackingEnabled` is false.
39373
+ * Returns the number of megabytes that are being consumed by all available categories, or an empty array if `MemoryTrackingEnabled` is `false`.
39214
39374
  *
39215
39375
  * - **ThreadSafety**: Unsafe
39216
39376
  *
@@ -39219,7 +39379,7 @@ interface Stats extends Instance {
39219
39379
  */
39220
39380
  GetMemoryUsageMbAllCategories(this: Stats): Array<unknown>;
39221
39381
  /**
39222
- * Returns the number of megabytes that are being consumed in the specified `DeveloperMemoryTag` category, or 0 if `MemoryTrackingEnabled` is false.
39382
+ * Returns the number of megabytes that are being consumed in the specified `DeveloperMemoryTag` category, or `0` if `MemoryTrackingEnabled` is `false`.
39223
39383
  *
39224
39384
  * - **ThreadSafety**: Unsafe
39225
39385
  *
@@ -39229,7 +39389,7 @@ interface Stats extends Instance {
39229
39389
  */
39230
39390
  GetMemoryUsageMbForTag(this: Stats, tag: CastsToEnum<Enum.DeveloperMemoryTag>): number;
39231
39391
  /**
39232
- * Returns the total amount of memory being consumed by the current game session, in megabytes, or 0 if `MemoryTrackingEnabled` is false.
39392
+ * Returns the total amount of memory being consumed by the current game session, in megabytes.
39233
39393
  *
39234
39394
  * - **ThreadSafety**: Unsafe
39235
39395
  *
@@ -43927,7 +44087,7 @@ interface UnvalidatedAssetService extends Instance {
43927
44087
  /**
43928
44088
  * The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
43929
44089
  *
43930
- * - **Tags**: NotCreatable, UserSettings, NotReplicated
44090
+ * - **Tags**: NotCreatable, Service, NotReplicated
43931
44091
  *
43932
44092
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings)
43933
44093
  */
@@ -45451,6 +45611,8 @@ interface Vector3Value extends ValueBase {
45451
45611
  readonly Changed: RBXScriptSignal<(value: Vector3) => void>;
45452
45612
  }
45453
45613
  /**
45614
+ * A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45615
+ *
45454
45616
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve)
45455
45617
  */
45456
45618
  interface ValueCurve extends Instance {
@@ -45463,6 +45625,8 @@ interface ValueCurve extends Instance {
45463
45625
  */
45464
45626
  readonly _nominal_ValueCurve: unique symbol;
45465
45627
  /**
45628
+ * Number of keys in the value curve.
45629
+ *
45466
45630
  * - **ThreadSafety**: ReadSafe
45467
45631
  * - **Tags**: NotReplicated
45468
45632
  *
@@ -45470,6 +45634,8 @@ interface ValueCurve extends Instance {
45470
45634
  */
45471
45635
  readonly Length: number;
45472
45636
  /**
45637
+ * Read-only value indicating the type held in this curve.
45638
+ *
45473
45639
  * - **ThreadSafety**: ReadSafe
45474
45640
  * - **Tags**: NotReplicated
45475
45641
  *
@@ -45477,51 +45643,91 @@ interface ValueCurve extends Instance {
45477
45643
  */
45478
45644
  readonly ValueType: string;
45479
45645
  /**
45646
+ * Returns a copy of a key at a given index.
45647
+ *
45480
45648
  * - **ThreadSafety**: Unsafe
45481
45649
  *
45482
45650
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetKeyAtIndex)
45651
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45652
+ * @param index The index in the existing set of keys held by this `ValueCurve`.
45483
45653
  */
45484
45654
  GetKeyAtIndex(this: ValueCurve, index: number): ValueCurveKey;
45485
45655
  /**
45656
+ * Returns the index of the last and first key of a period of time.
45657
+ *
45486
45658
  * - **ThreadSafety**: Unsafe
45487
45659
  *
45488
45660
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetKeyIndicesAtTime)
45661
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45662
+ * @param time A time during the animation. Inputs will be clamped between `0` and the time of the last key held by this `ValueCurve`.
45489
45663
  */
45490
45664
  GetKeyIndicesAtTime(this: ValueCurve, time: number): Array<unknown>;
45491
45665
  /**
45666
+ * Returns a copy of all the keys in the ValueCurve as a Luau array of `ValueCurveKeys`.
45667
+ *
45492
45668
  * - **ThreadSafety**: Unsafe
45493
45669
  *
45494
45670
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetKeys)
45671
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45672
+ * @returns Array of `ValueCurveKeys`.
45495
45673
  */
45496
45674
  GetKeys(this: ValueCurve): Array<unknown>;
45497
45675
  /**
45676
+ * Samples the value curve at a given time passed as argument.
45677
+ *
45498
45678
  * - **ThreadSafety**: Unsafe
45499
45679
  *
45500
45680
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#GetValueAtTime)
45681
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45682
+ * @param time Time at which to sample the curve.
45683
+ * @returns Value of the curve at the requested `time`.
45501
45684
  */
45502
45685
  GetValueAtTime(this: ValueCurve, time: number): unknown | undefined;
45503
45686
  /**
45687
+ * Adds the key passed as an argument to this curve. If a key at the same time is found, it will be replaced.
45688
+ *
45504
45689
  * - **ThreadSafety**: Unsafe
45505
45690
  *
45506
45691
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#InsertKey)
45692
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45693
+ * @param key `ValueCurveKey` to insert.
45694
+ * @returns (see description)
45507
45695
  */
45508
45696
  InsertKey(this: ValueCurve, key: ValueCurveKey): Array<unknown>;
45509
45697
  /**
45698
+ * Creates a key for the given value and inserts it at the given time. If a key at the same time is found, it will be replaced.
45699
+ *
45510
45700
  * - **ThreadSafety**: Unsafe
45511
45701
  *
45512
45702
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#InsertKeyValue)
45703
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45704
+ * @param time Time at which to insert the new `ValueCurveKey`. - type: number
45705
+ * @param value Value of the inserted `ValueCurveKey`. - type: any
45706
+ * @param Interpolation Interpolation mode of the inserted `ValueCurveKey`. - type: KeyInterpolationMode
45707
+ * @returns (see description)
45513
45708
  */
45514
45709
  InsertKeyValue(this: ValueCurve, time: number, value: unknown, keyInterpolationMode?: CastsToEnum<Enum.KeyInterpolationMode>): Array<unknown>;
45515
45710
  /**
45711
+ * Removes a given number of keys starting from a given index.
45712
+ *
45516
45713
  * - **ThreadSafety**: Unsafe
45517
45714
  *
45518
45715
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#RemoveKeyAtIndex)
45716
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45717
+ * @param startingIndex Starting index from which to remove keys.
45718
+ * @param count Number of keys to remove.
45719
+ * @returns Number of keys removed.
45519
45720
  */
45520
45721
  RemoveKeyAtIndex(this: ValueCurve, startingIndex: number, count?: number): number;
45521
45722
  /**
45723
+ * Resets this curve's keys using the `ValueCurveKey` array passed as an argument.
45724
+ *
45522
45725
  * - **ThreadSafety**: Unsafe
45523
45726
  *
45524
45727
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve#SetKeys)
45728
+ * @param this A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
45729
+ * @param keys Array of `ValueCurveKeys`.
45730
+ * @returns Number of keys inserted.
45525
45731
  */
45526
45732
  SetKeys(this: ValueCurve, keys: Array<unknown>): number;
45527
45733
  }
@@ -46508,9 +46714,13 @@ interface WebStreamClient extends RBXObject {
46508
46714
  */
46509
46715
  Close(this: WebStreamClient): void;
46510
46716
  /**
46717
+ * Enqueues data to be transmitted to the server over the streaming connection.
46718
+ *
46511
46719
  * - **ThreadSafety**: Unsafe
46512
46720
  *
46513
46721
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#Send)
46722
+ * @param this Maintains a streaming connection.
46723
+ * @param data Text string to send to the server.
46514
46724
  */
46515
46725
  Send(this: WebStreamClient, data: string): void;
46516
46726
  /**
@@ -59,9 +59,11 @@ interface Services {
59
59
  DebuggerConnectionManager: DebuggerConnectionManager;
60
60
  DebuggerManager: DebuggerManager;
61
61
  DebuggerUIService: DebuggerUIService;
62
+ DebugSettings: DebugSettings;
62
63
  DeviceIdService: DeviceIdService;
63
64
  DraggerService: DraggerService;
64
65
  EditableService: EditableService;
66
+ EncodingService: EncodingService;
65
67
  EventIngestService: EventIngestService;
66
68
  ExampleV2Service: ExampleV2Service;
67
69
  ExperienceAuthService: ExperienceAuthService;
@@ -77,6 +79,7 @@ interface Services {
77
79
  FeatureRestrictionManager: FeatureRestrictionManager;
78
80
  GamepadService: GamepadService;
79
81
  GamePassService: GamePassService;
82
+ GameSettings: GameSettings;
80
83
  GenerationService: GenerationService;
81
84
  GenericChallengeService: GenericChallengeService;
82
85
  GeometryService: GeometryService;
@@ -107,6 +110,7 @@ interface Services {
107
110
  LogReporterService: LogReporterService;
108
111
  LogService: LogService;
109
112
  LSPFileSyncService: LSPFileSyncService;
113
+ LuaSettings: LuaSettings;
110
114
  LuauScriptAnalyzerService: LuauScriptAnalyzerService;
111
115
  MarketplaceService: MarketplaceService;
112
116
  MatchmakingService: MatchmakingService;
@@ -132,6 +136,7 @@ interface Services {
132
136
  PathfindingService: PathfindingService;
133
137
  PerformanceControlService: PerformanceControlService;
134
138
  PhysicsService: PhysicsService;
139
+ PhysicsSettings: PhysicsSettings;
135
140
  PlaceAssetIdsService: PlaceAssetIdsService;
136
141
  PlacesService: PlacesService;
137
142
  PlaceStatsService: PlaceStatsService;
@@ -232,6 +237,7 @@ interface Services {
232
237
  UIDragDetectorService: UIDragDetectorService;
233
238
  UniqueIdLookupService: UniqueIdLookupService;
234
239
  UnvalidatedAssetService: UnvalidatedAssetService;
240
+ UserGameSettings: UserGameSettings;
235
241
  UserInputService: UserInputService;
236
242
  UserService: UserService;
237
243
  VersionControlService: VersionControlService;
@@ -261,6 +267,8 @@ interface CreatableInstances {
261
267
  Animation: Animation;
262
268
  AnimationConstraint: AnimationConstraint;
263
269
  AnimationController: AnimationController;
270
+ AnimationGraphDefinition: AnimationGraphDefinition;
271
+ AnimationNodeDefinition: AnimationNodeDefinition;
264
272
  AnimationRigData: AnimationRigData;
265
273
  Animator: Animator;
266
274
  Annotation: Annotation;
@@ -611,7 +619,6 @@ interface Instances extends Services, CreatableInstances {
611
619
  DebuggerLuaResponse: DebuggerLuaResponse;
612
620
  DebuggerVariable: DebuggerVariable;
613
621
  DebuggerWatch: DebuggerWatch;
614
- DebugSettings: DebugSettings;
615
622
  DockWidgetPluginGui: DockWidgetPluginGui;
616
623
  DynamicRotate: DynamicRotate;
617
624
  EmotesPages: EmotesPages;
@@ -624,7 +631,6 @@ interface Instances extends Services, CreatableInstances {
624
631
  File: File;
625
632
  FormFactorPart: FormFactorPart;
626
633
  FriendPages: FriendPages;
627
- GameSettings: GameSettings;
628
634
  GenericSettings: GenericSettings;
629
635
  GlobalDataStore: GlobalDataStore;
630
636
  GlobalSettings: GlobalSettings;
@@ -648,7 +654,6 @@ interface Instances extends Services, CreatableInstances {
648
654
  Light: Light;
649
655
  LocalDebuggerConnection: LocalDebuggerConnection;
650
656
  LodDataEntity: LodDataEntity;
651
- LuaSettings: LuaSettings;
652
657
  LuaSourceContainer: LuaSourceContainer;
653
658
  ManualSurfaceJointInstance: ManualSurfaceJointInstance;
654
659
  MaterialImportData: MaterialImportData;
@@ -678,7 +683,6 @@ interface Instances extends Services, CreatableInstances {
678
683
  PausedState: PausedState;
679
684
  PausedStateBreakpoint: PausedStateBreakpoint;
680
685
  PausedStateException: PausedStateException;
681
- PhysicsSettings: PhysicsSettings;
682
686
  Platform: Platform;
683
687
  Player: Player;
684
688
  PlayerData: PlayerData;
@@ -750,13 +754,13 @@ interface Instances extends Services, CreatableInstances {
750
754
  UIConstraint: UIConstraint;
751
755
  UIGridStyleLayout: UIGridStyleLayout;
752
756
  UILayout: UILayout;
753
- UserGameSettings: UserGameSettings;
754
757
  UserSettings: UserSettings;
755
758
  ValueBase: ValueBase;
756
759
  WebSocketClient: WebSocketClient;
757
760
  WorldRoot: WorldRoot;
758
761
  }
759
762
  interface Objects extends Instances {
763
+ AnimationNode: AnimationNode;
760
764
  Capture: Capture;
761
765
  ConfigSnapshot: ConfigSnapshot;
762
766
  EditableImage: EditableImage;
@@ -790,6 +794,21 @@ interface RBXObject {
790
794
  */
791
795
  readonly _nominal_Object: unique symbol;
792
796
  }
797
+ /**
798
+ * - **Tags**: NotCreatable, NotReplicated
799
+ *
800
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNode)
801
+ */
802
+ interface AnimationNode extends RBXObject {
803
+ /**
804
+ * **DO NOT USE!**
805
+ *
806
+ * This field exists to force TypeScript to recognize this as a nominal type
807
+ * @hidden
808
+ * @deprecated
809
+ */
810
+ readonly _nominal_AnimationNode: unique symbol;
811
+ }
793
812
  /**
794
813
  * - **Tags**: NotCreatable, NotReplicated
795
814
  *
@@ -1108,6 +1127,19 @@ interface AnimationClip extends Instance {
1108
1127
  */
1109
1128
  readonly _nominal_AnimationClip: unique symbol;
1110
1129
  }
1130
+ /**
1131
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationGraphDefinition)
1132
+ */
1133
+ interface AnimationGraphDefinition extends AnimationClip {
1134
+ /**
1135
+ * **DO NOT USE!**
1136
+ *
1137
+ * This field exists to force TypeScript to recognize this as a nominal type
1138
+ * @hidden
1139
+ * @deprecated
1140
+ */
1141
+ readonly _nominal_AnimationGraphDefinition: unique symbol;
1142
+ }
1111
1143
  /**
1112
1144
  * Stores animation data in the form of curves for each individual channel to animate.
1113
1145
  *
@@ -1242,6 +1274,19 @@ interface AnimationFromVideoCreatorStudioService extends Instance {
1242
1274
  */
1243
1275
  readonly _nominal_AnimationFromVideoCreatorStudioService: unique symbol;
1244
1276
  }
1277
+ /**
1278
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition)
1279
+ */
1280
+ interface AnimationNodeDefinition extends Instance {
1281
+ /**
1282
+ * **DO NOT USE!**
1283
+ *
1284
+ * This field exists to force TypeScript to recognize this as a nominal type
1285
+ * @hidden
1286
+ * @deprecated
1287
+ */
1288
+ readonly _nominal_AnimationNodeDefinition: unique symbol;
1289
+ }
1245
1290
  /**
1246
1291
  * Used to store information regarding the model an animation was authored for.
1247
1292
  *
@@ -4280,7 +4325,7 @@ interface Debris extends Instance {
4280
4325
  /**
4281
4326
  * Collection of various developer-facing diagnostics information.
4282
4327
  *
4283
- * - **Tags**: NotCreatable, Settings, NotReplicated, NotBrowsable
4328
+ * - **Tags**: NotCreatable, Service, NotReplicated, NotBrowsable
4284
4329
  *
4285
4330
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings)
4286
4331
  */
@@ -4532,6 +4577,21 @@ interface EditableService extends Instance {
4532
4577
  */
4533
4578
  readonly _nominal_EditableService: unique symbol;
4534
4579
  }
4580
+ /**
4581
+ * - **Tags**: NotCreatable, Service, NotReplicated
4582
+ *
4583
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
4584
+ */
4585
+ interface EncodingService extends Instance {
4586
+ /**
4587
+ * **DO NOT USE!**
4588
+ *
4589
+ * This field exists to force TypeScript to recognize this as a nominal type
4590
+ * @hidden
4591
+ * @deprecated
4592
+ */
4593
+ readonly _nominal_EncodingService: unique symbol;
4594
+ }
4535
4595
  /**
4536
4596
  * Represents a 3D rotation curve through a group of three `FloatCurves`.
4537
4597
  *
@@ -5489,7 +5549,7 @@ interface File extends Instance {
5489
5549
  GetTemporaryId(this: File): ContentId;
5490
5550
  }
5491
5551
  /**
5492
- * A particle emitter with the visual aesthetic of fire.
5552
+ * A preconfigured particle emitter with the visual aesthetic of fire.
5493
5553
  *
5494
5554
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Fire)
5495
5555
  */
@@ -5568,7 +5628,7 @@ interface GamePassService extends Instance {
5568
5628
  /**
5569
5629
  * A container for miscellaneous in-game options.
5570
5630
  *
5571
- * - **Tags**: NotCreatable, Settings, NotReplicated, NotBrowsable
5631
+ * - **Tags**: NotCreatable, Service, NotReplicated, NotBrowsable
5572
5632
  *
5573
5633
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GameSettings)
5574
5634
  */
@@ -7695,7 +7755,7 @@ interface LogService extends Instance {
7695
7755
  readonly _nominal_LogService: unique symbol;
7696
7756
  }
7697
7757
  /**
7698
- * - **Tags**: NotCreatable, Settings, NotReplicated
7758
+ * - **Tags**: NotCreatable, Service, NotReplicated
7699
7759
  *
7700
7760
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LuaSettings)
7701
7761
  */
@@ -9715,7 +9775,7 @@ interface PhysicsService extends Instance {
9715
9775
  readonly _nominal_PhysicsService: unique symbol;
9716
9776
  }
9717
9777
  /**
9718
- * - **Tags**: NotCreatable, Settings, NotReplicated
9778
+ * - **Tags**: NotCreatable, Service, NotReplicated
9719
9779
  *
9720
9780
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings)
9721
9781
  */
@@ -14640,7 +14700,7 @@ interface UnvalidatedAssetService extends Instance {
14640
14700
  /**
14641
14701
  * The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
14642
14702
  *
14643
- * - **Tags**: NotCreatable, UserSettings, NotReplicated
14703
+ * - **Tags**: NotCreatable, Service, NotReplicated
14644
14704
  *
14645
14705
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings)
14646
14706
  */
@@ -14932,6 +14992,8 @@ interface Vector3Value extends ValueBase {
14932
14992
  readonly _nominal_Vector3Value: unique symbol;
14933
14993
  }
14934
14994
  /**
14995
+ * A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
14996
+ *
14935
14997
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve)
14936
14998
  */
14937
14999
  interface ValueCurve extends Instance {
@@ -1590,6 +1590,141 @@ declare namespace Enum {
1590
1590
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
1591
1591
  }
1592
1592
  export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
1593
+ /**
1594
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType)
1595
+ */
1596
+ export namespace AnimationNodeType {
1597
+ /**
1598
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#InvalidNode)
1599
+ */
1600
+ export interface InvalidNode extends globalThis.EnumItem {
1601
+ Name: "InvalidNode";
1602
+ Value: 0;
1603
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1604
+ }
1605
+ export const InvalidNode: InvalidNode;
1606
+ /**
1607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#AddNode)
1608
+ */
1609
+ export interface AddNode extends globalThis.EnumItem {
1610
+ Name: "AddNode";
1611
+ Value: 1;
1612
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1613
+ }
1614
+ export const AddNode: AddNode;
1615
+ /**
1616
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#BlendNode)
1617
+ */
1618
+ export interface BlendNode extends globalThis.EnumItem {
1619
+ Name: "BlendNode";
1620
+ Value: 2;
1621
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1622
+ }
1623
+ export const BlendNode: BlendNode;
1624
+ /**
1625
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
1626
+ */
1627
+ export interface Blend1DNode extends globalThis.EnumItem {
1628
+ Name: "Blend1DNode";
1629
+ Value: 3;
1630
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1631
+ }
1632
+ export const Blend1DNode: Blend1DNode;
1633
+ /**
1634
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend2DNode)
1635
+ */
1636
+ export interface Blend2DNode extends globalThis.EnumItem {
1637
+ Name: "Blend2DNode";
1638
+ Value: 4;
1639
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1640
+ }
1641
+ export const Blend2DNode: Blend2DNode;
1642
+ /**
1643
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#ClipNode)
1644
+ */
1645
+ export interface ClipNode extends globalThis.EnumItem {
1646
+ Name: "ClipNode";
1647
+ Value: 5;
1648
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1649
+ }
1650
+ export const ClipNode: ClipNode;
1651
+ /**
1652
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#GraphOutput)
1653
+ */
1654
+ export interface GraphOutput extends globalThis.EnumItem {
1655
+ Name: "GraphOutput";
1656
+ Value: 6;
1657
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1658
+ }
1659
+ export const GraphOutput: GraphOutput;
1660
+ /**
1661
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#MaskNode)
1662
+ */
1663
+ export interface MaskNode extends globalThis.EnumItem {
1664
+ Name: "MaskNode";
1665
+ Value: 7;
1666
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1667
+ }
1668
+ export const MaskNode: MaskNode;
1669
+ /**
1670
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#PrioritySelectNode)
1671
+ */
1672
+ export interface PrioritySelectNode extends globalThis.EnumItem {
1673
+ Name: "PrioritySelectNode";
1674
+ Value: 8;
1675
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1676
+ }
1677
+ export const PrioritySelectNode: PrioritySelectNode;
1678
+ /**
1679
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#RandomSequenceNode)
1680
+ */
1681
+ export interface RandomSequenceNode extends globalThis.EnumItem {
1682
+ Name: "RandomSequenceNode";
1683
+ Value: 9;
1684
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1685
+ }
1686
+ export const RandomSequenceNode: RandomSequenceNode;
1687
+ /**
1688
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SelectNode)
1689
+ */
1690
+ export interface SelectNode extends globalThis.EnumItem {
1691
+ Name: "SelectNode";
1692
+ Value: 10;
1693
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1694
+ }
1695
+ export const SelectNode: SelectNode;
1696
+ /**
1697
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SequenceNode)
1698
+ */
1699
+ export interface SequenceNode extends globalThis.EnumItem {
1700
+ Name: "SequenceNode";
1701
+ Value: 11;
1702
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1703
+ }
1704
+ export const SequenceNode: SequenceNode;
1705
+ /**
1706
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SpeedNode)
1707
+ */
1708
+ export interface SpeedNode extends globalThis.EnumItem {
1709
+ Name: "SpeedNode";
1710
+ Value: 12;
1711
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1712
+ }
1713
+ export const SpeedNode: SpeedNode;
1714
+ /**
1715
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SubtractNode)
1716
+ */
1717
+ export interface SubtractNode extends globalThis.EnumItem {
1718
+ Name: "SubtractNode";
1719
+ Value: 13;
1720
+ EnumType: typeof globalThis.Enum.AnimationNodeType;
1721
+ }
1722
+ export const SubtractNode: SubtractNode;
1723
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeType>;
1724
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeType | undefined;
1725
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
1726
+ }
1727
+ 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;
1593
1728
  /**
1594
1729
  * The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
1595
1730
  *
@@ -7548,6 +7683,28 @@ declare namespace Enum {
7548
7683
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
7549
7684
  }
7550
7685
  export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
7686
+ /**
7687
+ * A compression algorithm to use in `EncodingService` methods.
7688
+ *
7689
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompressionAlgorithm)
7690
+ */
7691
+ export namespace CompressionAlgorithm {
7692
+ /**
7693
+ * Used to perform compression using [Zstandard](https://en.wikipedia.org/wiki/Zstd) compression, also known as zstd.
7694
+ *
7695
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompressionAlgorithm#Zstd)
7696
+ */
7697
+ export interface Zstd extends globalThis.EnumItem {
7698
+ Name: "Zstd";
7699
+ Value: 0;
7700
+ EnumType: typeof globalThis.Enum.CompressionAlgorithm;
7701
+ }
7702
+ export const Zstd: Zstd;
7703
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompressionAlgorithm>;
7704
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompressionAlgorithm | undefined;
7705
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompressionAlgorithm | undefined;
7706
+ }
7707
+ export type CompressionAlgorithm = CompressionAlgorithm.Zstd;
7551
7708
  /**
7552
7709
  * The camera movement mode currently in-use by the client.
7553
7710
  *
@@ -9475,6 +9632,33 @@ declare namespace Enum {
9475
9632
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerStatus | undefined;
9476
9633
  }
9477
9634
  export type DebuggerStatus = DebuggerStatus.Success | DebuggerStatus.Timeout | DebuggerStatus.ConnectionLost | DebuggerStatus.InvalidResponse | DebuggerStatus.InternalError | DebuggerStatus.InvalidState | DebuggerStatus.RpcError | DebuggerStatus.InvalidArgument | DebuggerStatus.ConnectionClosed;
9635
+ /**
9636
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType)
9637
+ */
9638
+ export namespace DefaultScriptSyncFileType {
9639
+ /**
9640
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Lua)
9641
+ */
9642
+ export interface Lua extends globalThis.EnumItem {
9643
+ Name: "Lua";
9644
+ Value: 0;
9645
+ EnumType: typeof globalThis.Enum.DefaultScriptSyncFileType;
9646
+ }
9647
+ export const Lua: Lua;
9648
+ /**
9649
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Luau)
9650
+ */
9651
+ export interface Luau extends globalThis.EnumItem {
9652
+ Name: "Luau";
9653
+ Value: 1;
9654
+ EnumType: typeof globalThis.Enum.DefaultScriptSyncFileType;
9655
+ }
9656
+ export const Luau: Luau;
9657
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DefaultScriptSyncFileType>;
9658
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DefaultScriptSyncFileType | undefined;
9659
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DefaultScriptSyncFileType | undefined;
9660
+ }
9661
+ export type DefaultScriptSyncFileType = DefaultScriptSyncFileType.Lua | DefaultScriptSyncFileType.Luau;
9478
9662
  /**
9479
9663
  * Determines how the default camera handles objects that are in-between the camera and the camera subject.
9480
9664
  *
@@ -11099,6 +11283,70 @@ declare namespace Enum {
11099
11283
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceAuthScope | undefined;
11100
11284
  }
11101
11285
  export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
11286
+ /**
11287
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus)
11288
+ */
11289
+ export namespace ExperienceEventStatus {
11290
+ /**
11291
+ * The event is currently published and available.
11292
+ *
11293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Active)
11294
+ */
11295
+ export interface Active extends globalThis.EnumItem {
11296
+ Name: "Active";
11297
+ Value: 0;
11298
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11299
+ }
11300
+ export const Active: Active;
11301
+ /**
11302
+ * The event has been cancelled and will not occur.
11303
+ *
11304
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Cancelled)
11305
+ */
11306
+ export interface Cancelled extends globalThis.EnumItem {
11307
+ Name: "Cancelled";
11308
+ Value: 1;
11309
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11310
+ }
11311
+ export const Cancelled: Cancelled;
11312
+ /**
11313
+ * The event has been removed by moderation.
11314
+ *
11315
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Moderated)
11316
+ */
11317
+ export interface Moderated extends globalThis.EnumItem {
11318
+ Name: "Moderated";
11319
+ Value: 2;
11320
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11321
+ }
11322
+ export const Moderated: Moderated;
11323
+ /**
11324
+ * The event has been unpublished by the creator.
11325
+ *
11326
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Unpublished)
11327
+ */
11328
+ export interface Unpublished extends globalThis.EnumItem {
11329
+ Name: "Unpublished";
11330
+ Value: 3;
11331
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11332
+ }
11333
+ export const Unpublished: Unpublished;
11334
+ /**
11335
+ * The event status could not be determined.
11336
+ *
11337
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Unknown)
11338
+ */
11339
+ export interface Unknown extends globalThis.EnumItem {
11340
+ Name: "Unknown";
11341
+ Value: 4;
11342
+ EnumType: typeof globalThis.Enum.ExperienceEventStatus;
11343
+ }
11344
+ export const Unknown: Unknown;
11345
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceEventStatus>;
11346
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceEventStatus | undefined;
11347
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceEventStatus | undefined;
11348
+ }
11349
+ export type ExperienceEventStatus = ExperienceEventStatus.Active | ExperienceEventStatus.Cancelled | ExperienceEventStatus.Moderated | ExperienceEventStatus.Unpublished | ExperienceEventStatus.Unknown;
11102
11350
  /**
11103
11351
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode)
11104
11352
  */
@@ -14324,6 +14572,72 @@ declare namespace Enum {
14324
14572
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HapticEffectType | undefined;
14325
14573
  }
14326
14574
  export type HapticEffectType = HapticEffectType.Custom | HapticEffectType.UIHover | HapticEffectType.UIClick | HapticEffectType.UINotification | HapticEffectType.GameplayExplosion | HapticEffectType.GameplayCollision;
14575
+ /**
14576
+ * A Cryptographic hash function to use in `EncodingService` methods.
14577
+ *
14578
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm)
14579
+ */
14580
+ export namespace HashAlgorithm {
14581
+ /**
14582
+ * Used to compute a 256-bit (32-byte) hash digest using the [BLAKE2b](https://en.wikipedia.org/wiki/BLAKE2) algorithm.
14583
+ *
14584
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Blake2b)
14585
+ */
14586
+ export interface Blake2b extends globalThis.EnumItem {
14587
+ Name: "Blake2b";
14588
+ Value: 0;
14589
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14590
+ }
14591
+ export const Blake2b: Blake2b;
14592
+ /**
14593
+ * Used to compute a 256-bit (32-byte) hash digest using the [BLAKE3](https://en.wikipedia.org/wiki/BLAKE3) algorithm.
14594
+ *
14595
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Blake3)
14596
+ */
14597
+ export interface Blake3 extends globalThis.EnumItem {
14598
+ Name: "Blake3";
14599
+ Value: 1;
14600
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14601
+ }
14602
+ export const Blake3: Blake3;
14603
+ /**
14604
+ * Used to compute a 128-bit (16-byte) hash digest using the [MD5](https://en.wikipedia.org/wiki/MD5) algorithm.
14605
+ *
14606
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Md5)
14607
+ */
14608
+ export interface Md5 extends globalThis.EnumItem {
14609
+ Name: "Md5";
14610
+ Value: 2;
14611
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14612
+ }
14613
+ export const Md5: Md5;
14614
+ /**
14615
+ * Used to compute a 160-bit (20-byte) hash digest using the [SHA-1](https://en.wikipedia.org/wiki/SHA-1) algorithm.
14616
+ *
14617
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Sha1)
14618
+ */
14619
+ export interface Sha1 extends globalThis.EnumItem {
14620
+ Name: "Sha1";
14621
+ Value: 3;
14622
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14623
+ }
14624
+ export const Sha1: Sha1;
14625
+ /**
14626
+ * Used to compute a 256-bit (32-byte) hash digest using the [SHA256](https://en.wikipedia.org/wiki/SHA-2) algorithm.
14627
+ *
14628
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Sha256)
14629
+ */
14630
+ export interface Sha256 extends globalThis.EnumItem {
14631
+ Name: "Sha256";
14632
+ Value: 4;
14633
+ EnumType: typeof globalThis.Enum.HashAlgorithm;
14634
+ }
14635
+ export const Sha256: Sha256;
14636
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HashAlgorithm>;
14637
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HashAlgorithm | undefined;
14638
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HashAlgorithm | undefined;
14639
+ }
14640
+ export type HashAlgorithm = HashAlgorithm.Blake2b | HashAlgorithm.Blake3 | HashAlgorithm.Md5 | HashAlgorithm.Sha1 | HashAlgorithm.Sha256;
14327
14641
  /**
14328
14642
  * Controls how the `Highlight` effect displays with respect to other objects in the world.
14329
14643
  *
@@ -21227,15 +21541,6 @@ declare namespace Enum {
21227
21541
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21228
21542
  }
21229
21543
  export const StreamingMesh: StreamingMesh;
21230
- /**
21231
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
21232
- */
21233
- export interface SLIM extends globalThis.EnumItem {
21234
- Name: "SLIM";
21235
- Value: 2;
21236
- EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21237
- }
21238
- export const SLIM: SLIM;
21239
21544
  /**
21240
21545
  * A lower resolution mesh will not be displayed.
21241
21546
  *
@@ -21243,15 +21548,30 @@ declare namespace Enum {
21243
21548
  */
21244
21549
  export interface Disabled extends globalThis.EnumItem {
21245
21550
  Name: "Disabled";
21246
- Value: 3;
21551
+ Value: 2;
21247
21552
  EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21248
21553
  }
21249
21554
  export const Disabled: Disabled;
21555
+ /**
21556
+ * @deprecated renamed to Disabled
21557
+ */
21558
+ export const Deactivated: Disabled;
21559
+ /**
21560
+ * A Scalable Lightweight Interactive Model, or SLIM, model (a composite of all child parts of the model) renders at progressively lower resolutions at distances based on the streaming radius. Greatly improves visual quality over `StreamingMesh`.
21561
+ *
21562
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
21563
+ */
21564
+ export interface SLIM extends globalThis.EnumItem {
21565
+ Name: "SLIM";
21566
+ Value: 4;
21567
+ EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
21568
+ }
21569
+ export const SLIM: SLIM;
21250
21570
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModelLevelOfDetail>;
21251
21571
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelLevelOfDetail | undefined;
21252
21572
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelLevelOfDetail | undefined;
21253
21573
  }
21254
- export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.SLIM | ModelLevelOfDetail.Disabled;
21574
+ export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.Disabled | ModelLevelOfDetail.SLIM;
21255
21575
  /**
21256
21576
  * Controls how `Models` are sent to clients in experiences with instance streaming enabled.
21257
21577
  *
@@ -27649,11 +27969,101 @@ declare namespace Enum {
27649
27969
  EnumType: typeof globalThis.Enum.SecurityCapability;
27650
27970
  }
27651
27971
  export const CapabilityControl: CapabilityControl;
27972
+ /**
27973
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Plugin)
27974
+ */
27975
+ export interface Plugin extends globalThis.EnumItem {
27976
+ Name: "Plugin";
27977
+ Value: 23;
27978
+ EnumType: typeof globalThis.Enum.SecurityCapability;
27979
+ }
27980
+ export const Plugin: Plugin;
27981
+ /**
27982
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LocalUser)
27983
+ */
27984
+ export interface LocalUser extends globalThis.EnumItem {
27985
+ Name: "LocalUser";
27986
+ Value: 24;
27987
+ EnumType: typeof globalThis.Enum.SecurityCapability;
27988
+ }
27989
+ export const LocalUser: LocalUser;
27990
+ /**
27991
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#WritePlayer)
27992
+ */
27993
+ export interface WritePlayer extends globalThis.EnumItem {
27994
+ Name: "WritePlayer";
27995
+ Value: 25;
27996
+ EnumType: typeof globalThis.Enum.SecurityCapability;
27997
+ }
27998
+ export const WritePlayer: WritePlayer;
27999
+ /**
28000
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RobloxScript)
28001
+ */
28002
+ export interface RobloxScript extends globalThis.EnumItem {
28003
+ Name: "RobloxScript";
28004
+ Value: 26;
28005
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28006
+ }
28007
+ export const RobloxScript: RobloxScript;
28008
+ /**
28009
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RobloxEngine)
28010
+ */
28011
+ export interface RobloxEngine extends globalThis.EnumItem {
28012
+ Name: "RobloxEngine";
28013
+ Value: 27;
28014
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28015
+ }
28016
+ export const RobloxEngine: RobloxEngine;
28017
+ /**
28018
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Unassigned)
28019
+ */
28020
+ export interface Unassigned extends globalThis.EnumItem {
28021
+ Name: "Unassigned";
28022
+ Value: 28;
28023
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28024
+ }
28025
+ export const Unassigned: Unassigned;
28026
+ /**
28027
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#InternalTest)
28028
+ */
28029
+ export interface InternalTest extends globalThis.EnumItem {
28030
+ Name: "InternalTest";
28031
+ Value: 29;
28032
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28033
+ }
28034
+ export const InternalTest: InternalTest;
28035
+ /**
28036
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#PluginOrOpenCloud)
28037
+ */
28038
+ export interface PluginOrOpenCloud extends globalThis.EnumItem {
28039
+ Name: "PluginOrOpenCloud";
28040
+ Value: 30;
28041
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28042
+ }
28043
+ export const PluginOrOpenCloud: PluginOrOpenCloud;
28044
+ /**
28045
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Assistant)
28046
+ */
28047
+ export interface Assistant extends globalThis.EnumItem {
28048
+ Name: "Assistant";
28049
+ Value: 31;
28050
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28051
+ }
28052
+ export const Assistant: Assistant;
28053
+ /**
28054
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RemoteCommand)
28055
+ */
28056
+ export interface RemoteCommand extends globalThis.EnumItem {
28057
+ Name: "RemoteCommand";
28058
+ Value: 32;
28059
+ EnumType: typeof globalThis.Enum.SecurityCapability;
28060
+ }
28061
+ export const RemoteCommand: RemoteCommand;
27652
28062
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
27653
28063
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
27654
28064
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
27655
28065
  }
27656
- export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl;
28066
+ export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl | SecurityCapability.Plugin | SecurityCapability.LocalUser | SecurityCapability.WritePlayer | SecurityCapability.RobloxScript | SecurityCapability.RobloxEngine | SecurityCapability.Unassigned | SecurityCapability.InternalTest | SecurityCapability.PluginOrOpenCloud | SecurityCapability.Assistant | SecurityCapability.RemoteCommand;
27657
28067
  /**
27658
28068
  * Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
27659
28069
  *
@@ -34095,11 +34505,20 @@ declare namespace Enum {
34095
34505
  EnumType: typeof globalThis.Enum.UploadCaptureResult;
34096
34506
  }
34097
34507
  export const IneligibleCapture: IneligibleCapture;
34508
+ /**
34509
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadQuotaReached)
34510
+ */
34511
+ export interface UploadQuotaReached extends globalThis.EnumItem {
34512
+ Name: "UploadQuotaReached";
34513
+ Value: 5;
34514
+ EnumType: typeof globalThis.Enum.UploadCaptureResult;
34515
+ }
34516
+ export const UploadQuotaReached: UploadQuotaReached;
34098
34517
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
34099
34518
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
34100
34519
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
34101
34520
  }
34102
- export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture;
34521
+ export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached;
34103
34522
  /**
34104
34523
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
34105
34524
  */
@@ -36013,7 +36432,7 @@ declare namespace Enum {
36013
36432
  }
36014
36433
  export const SSE: SSE;
36015
36434
  /**
36016
- * The client can connect to any server that provides streaming data transfer (e.g. [chunked encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Transfer-Encoding)). It provides no guarantees about the stream format.
36435
+ * General purpose HTTP streaming client. It can connect to any server that provides streaming data transfer (e.g. [chunked encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Transfer-Encoding)). It provides no guarantees about the stream format.
36017
36436
  *
36018
36437
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#RawStream)
36019
36438
  */
@@ -36024,6 +36443,8 @@ declare namespace Enum {
36024
36443
  }
36025
36444
  export const RawStream: RawStream;
36026
36445
  /**
36446
+ * [WebSocket](https://en.wikipedia.org/wiki/WebSocket) client that provides a bidirectional communication channel over a TCP connection.
36447
+ *
36027
36448
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#WebSocket)
36028
36449
  */
36029
36450
  export interface WebSocket extends globalThis.EnumItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.887",
3
+ "version": "1.0.888",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },