@rbxts/types 1.0.810 → 1.0.811

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.
@@ -159,6 +159,7 @@ interface Services {
159
159
  StudioPublishService: StudioPublishService;
160
160
  StudioScriptDebugEventListener: StudioScriptDebugEventListener;
161
161
  StudioSdkService: StudioSdkService;
162
+ StudioUserService: StudioUserService;
162
163
  StudioWidgetsService: StudioWidgetsService;
163
164
  StylingService: StylingService;
164
165
  TeamCreateData: TeamCreateData;
@@ -225,6 +226,7 @@ interface CreatableInstances {
225
226
  AudioFader: AudioFader;
226
227
  AudioFilter: AudioFilter;
227
228
  AudioFlanger: AudioFlanger;
229
+ AudioLimiter: AudioLimiter;
228
230
  AudioListener: AudioListener;
229
231
  AudioPitchShifter: AudioPitchShifter;
230
232
  AudioPlayer: AudioPlayer;
@@ -3064,6 +3066,21 @@ interface AudioFocusService extends Instance {
3064
3066
  readonly _nominal_AudioFocusService: unique symbol;
3065
3067
  }
3066
3068
 
3069
+ interface AudioLimiter extends Instance {
3070
+ /**
3071
+ * **DO NOT USE!**
3072
+ *
3073
+ * This field exists to force TypeScript to recognize this as a nominal type
3074
+ * @hidden
3075
+ * @deprecated
3076
+ */
3077
+ readonly _nominal_AudioLimiter: unique symbol;
3078
+ Bypass: boolean;
3079
+ MaxLevel: number;
3080
+ Release: number;
3081
+ GetConnectedWires(this: AudioLimiter, pin: string): Array<Instance>;
3082
+ }
3083
+
3067
3084
  interface AudioListener extends Instance {
3068
3085
  /**
3069
3086
  * **DO NOT USE!**
@@ -3222,11 +3239,15 @@ interface AvatarCreationService extends Instance {
3222
3239
  /**
3223
3240
  * Tags: Yields
3224
3241
  */
3225
- GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string): string;
3242
+ GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string, options: object): string;
3226
3243
  /**
3227
3244
  * Tags: Yields
3228
3245
  */
3229
3246
  GetAvatarGenerationConfig(this: AvatarCreationService): object;
3247
+ /**
3248
+ * Tags: Yields
3249
+ */
3250
+ GetBatchTokenDetailsAsync(this: AvatarCreationService, tokenIds: Array<any>): unknown;
3230
3251
  /**
3231
3252
  * Tags: Yields
3232
3253
  */
@@ -5126,9 +5147,11 @@ interface WrapDeformer extends BaseWrap {
5126
5147
  * @deprecated
5127
5148
  */
5128
5149
  readonly _nominal_WrapDeformer: unique symbol;
5129
- Amount: number;
5130
- Enabled: boolean;
5131
- RenderMeshID: ContentId;
5150
+ GetDeformedCFrame(this: WrapDeformer, originalCFrame: CFrame): CFrame;
5151
+ /**
5152
+ * Tags: Yields
5153
+ */
5154
+ CreateEditableMeshAsync(this: WrapDeformer): EditableMesh;
5132
5155
  }
5133
5156
 
5134
5157
  /** The WrapLayer object defines a 3D accessory's inner and outer surfaces and other properties related to layering accessories. These surfaces, or the Inner Cage and Outer Cage, are similar to collision boxes, and describe the surfaces of which other 3D accessories can be placed without clipping or breaking.
@@ -6301,23 +6324,6 @@ interface Breakpoint extends Instance {
6301
6324
  readonly _nominal_Breakpoint: unique symbol;
6302
6325
  }
6303
6326
 
6304
- interface BubbleChatMessageProperties extends Instance {
6305
- /**
6306
- * **DO NOT USE!**
6307
- *
6308
- * This field exists to force TypeScript to recognize this as a nominal type
6309
- * @hidden
6310
- * @deprecated
6311
- */
6312
- readonly _nominal_BubbleChatMessageProperties: unique symbol;
6313
- BackgroundColor3: Color3;
6314
- BackgroundTransparency: number;
6315
- FontFace: Font;
6316
- TailVisible: boolean;
6317
- TextColor3: Color3;
6318
- TextSize: number;
6319
- }
6320
-
6321
6327
  interface BulkImportService extends Instance {
6322
6328
  /**
6323
6329
  * **DO NOT USE!**
@@ -22922,6 +22928,10 @@ interface ModuleScript extends LuaSourceContainer {
22922
22928
  * @deprecated
22923
22929
  */
22924
22930
  LinkedSource: ContentId;
22931
+ /**
22932
+ * The code to be executed.
22933
+ */
22934
+ Source: string;
22925
22935
  }
22926
22936
 
22927
22937
  interface LuauScriptAnalyzerService extends Instance {
@@ -33852,6 +33862,17 @@ interface StudioSdkService extends Instance {
33852
33862
  readonly _nominal_StudioSdkService: unique symbol;
33853
33863
  }
33854
33864
 
33865
+ interface StudioUserService extends Instance {
33866
+ /**
33867
+ * **DO NOT USE!**
33868
+ *
33869
+ * This field exists to force TypeScript to recognize this as a nominal type
33870
+ * @hidden
33871
+ * @deprecated
33872
+ */
33873
+ readonly _nominal_StudioUserService: unique symbol;
33874
+ }
33875
+
33855
33876
  interface StudioWidgetsService extends Instance {
33856
33877
  /**
33857
33878
  * **DO NOT USE!**
@@ -35320,6 +35341,23 @@ interface TextChatMessageProperties extends Instance {
35320
35341
  Translation: string;
35321
35342
  }
35322
35343
 
35344
+ interface BubbleChatMessageProperties extends TextChatMessageProperties {
35345
+ /**
35346
+ * **DO NOT USE!**
35347
+ *
35348
+ * This field exists to force TypeScript to recognize this as a nominal type
35349
+ * @hidden
35350
+ * @deprecated
35351
+ */
35352
+ readonly _nominal_BubbleChatMessageProperties: unique symbol;
35353
+ BackgroundColor3: Color3;
35354
+ BackgroundTransparency: number;
35355
+ FontFace: Font;
35356
+ TailVisible: boolean;
35357
+ TextColor3: Color3;
35358
+ TextSize: number;
35359
+ }
35360
+
35323
35361
  interface ChatWindowMessageProperties extends TextChatMessageProperties {
35324
35362
  /**
35325
35363
  * **DO NOT USE!**
@@ -272,19 +272,6 @@ interface BaseWrap extends Instance {
272
272
  ImportOrigin: CFrame;
273
273
  }
274
274
 
275
- interface WrapDeformer extends BaseWrap {
276
- /**
277
- * **DO NOT USE!**
278
- *
279
- * This field exists to force TypeScript to recognize this as a nominal type
280
- * @hidden
281
- * @deprecated
282
- */
283
- readonly _nominal_WrapDeformer: unique symbol;
284
- Amount: number;
285
- RenderMeshID: ContentId;
286
- }
287
-
288
275
  interface WrapLayer extends BaseWrap {
289
276
  /**
290
277
  * **DO NOT USE!**
@@ -1182,21 +1169,6 @@ interface BaseScript extends LuaSourceContainer {
1182
1169
  RunContext: Enum.RunContext;
1183
1170
  }
1184
1171
 
1185
- interface ModuleScript extends LuaSourceContainer {
1186
- /**
1187
- * **DO NOT USE!**
1188
- *
1189
- * This field exists to force TypeScript to recognize this as a nominal type
1190
- * @hidden
1191
- * @deprecated
1192
- */
1193
- readonly _nominal_ModuleScript: unique symbol;
1194
- /**
1195
- * The code to be executed.
1196
- */
1197
- Source: string;
1198
- }
1199
-
1200
1172
  interface MaterialVariant extends Instance {
1201
1173
  /**
1202
1174
  * **DO NOT USE!**
@@ -5481,6 +5481,35 @@ declare namespace Enum {
5481
5481
  }
5482
5482
  export type ConnectionState = ConnectionState.Connected | ConnectionState.Disconnected;
5483
5483
 
5484
+ export namespace ContentSourceType {
5485
+ export interface None extends globalThis.EnumItem {
5486
+ Name: "None";
5487
+ Value: 0;
5488
+ EnumType: typeof globalThis.Enum.ContentSourceType;
5489
+ }
5490
+
5491
+ export const None: None;
5492
+
5493
+ export interface Uri extends globalThis.EnumItem {
5494
+ Name: "Uri";
5495
+ Value: 1;
5496
+ EnumType: typeof globalThis.Enum.ContentSourceType;
5497
+ }
5498
+
5499
+ export const Uri: Uri;
5500
+
5501
+ export interface Object extends globalThis.EnumItem {
5502
+ Name: "Object";
5503
+ Value: 2;
5504
+ EnumType: typeof globalThis.Enum.ContentSourceType;
5505
+ }
5506
+
5507
+ export const Object: Object;
5508
+
5509
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContentSourceType>;
5510
+ }
5511
+ export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;
5512
+
5484
5513
  export namespace ContextActionPriority {
5485
5514
  export interface Low extends globalThis.EnumItem {
5486
5515
  Name: "Low";
@@ -15358,9 +15387,17 @@ declare namespace Enum {
15358
15387
 
15359
15388
  export const Bounce: Bounce;
15360
15389
 
15390
+ export interface CubicV2 extends globalThis.EnumItem {
15391
+ Name: "CubicV2";
15392
+ Value: 5;
15393
+ EnumType: typeof globalThis.Enum.PoseEasingStyle;
15394
+ }
15395
+
15396
+ export const CubicV2: CubicV2;
15397
+
15361
15398
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PoseEasingStyle>;
15362
15399
  }
15363
- export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce;
15400
+ export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce | PoseEasingStyle.CubicV2;
15364
15401
 
15365
15402
  export namespace PositionAlignmentMode {
15366
15403
  export interface OneAttachment extends globalThis.EnumItem {
@@ -16851,6 +16888,35 @@ declare namespace Enum {
16851
16888
  }
16852
16889
  export type RollOffMode = RollOffMode.Inverse | RollOffMode.Linear | RollOffMode.LinearSquare | RollOffMode.InverseTapered;
16853
16890
 
16891
+ export namespace RolloutState {
16892
+ export interface Default extends globalThis.EnumItem {
16893
+ Name: "Default";
16894
+ Value: 0;
16895
+ EnumType: typeof globalThis.Enum.RolloutState;
16896
+ }
16897
+
16898
+ export const Default: Default;
16899
+
16900
+ export interface Disabled extends globalThis.EnumItem {
16901
+ Name: "Disabled";
16902
+ Value: 1;
16903
+ EnumType: typeof globalThis.Enum.RolloutState;
16904
+ }
16905
+
16906
+ export const Disabled: Disabled;
16907
+
16908
+ export interface Enabled extends globalThis.EnumItem {
16909
+ Name: "Enabled";
16910
+ Value: 2;
16911
+ EnumType: typeof globalThis.Enum.RolloutState;
16912
+ }
16913
+
16914
+ export const Enabled: Enabled;
16915
+
16916
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RolloutState>;
16917
+ }
16918
+ export type RolloutState = RolloutState.Default | RolloutState.Disabled | RolloutState.Enabled;
16919
+
16854
16920
  export namespace RotationOrder {
16855
16921
  export interface XYZ extends globalThis.EnumItem {
16856
16922
  Name: "XYZ";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.810",
3
+ "version": "1.0.811",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },