From 90c174f0a4f98fef5a4b685fc3b28dc9375dcd9c Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 14 Oct 2024 07:24:53 +0000 Subject: [PATCH] Update generated files [skip ci] --- include/generated/None.d.ts | 80 ++++++++++++++++++++------- include/generated/PluginSecurity.d.ts | 28 ---------- include/generated/enums.d.ts | 68 ++++++++++++++++++++++- 3 files changed, 126 insertions(+), 50 deletions(-) diff --git a/include/generated/None.d.ts b/include/generated/None.d.ts index e092224f7..49f5e2407 100644 --- a/include/generated/None.d.ts +++ b/include/generated/None.d.ts @@ -159,6 +159,7 @@ interface Services { StudioPublishService: StudioPublishService; StudioScriptDebugEventListener: StudioScriptDebugEventListener; StudioSdkService: StudioSdkService; + StudioUserService: StudioUserService; StudioWidgetsService: StudioWidgetsService; StylingService: StylingService; TeamCreateData: TeamCreateData; @@ -225,6 +226,7 @@ interface CreatableInstances { AudioFader: AudioFader; AudioFilter: AudioFilter; AudioFlanger: AudioFlanger; + AudioLimiter: AudioLimiter; AudioListener: AudioListener; AudioPitchShifter: AudioPitchShifter; AudioPlayer: AudioPlayer; @@ -3064,6 +3066,21 @@ interface AudioFocusService extends Instance { readonly _nominal_AudioFocusService: unique symbol; } +interface AudioLimiter extends Instance { + /** + * **DO NOT USE!** + * + * This field exists to force TypeScript to recognize this as a nominal type + * @hidden + * @deprecated + */ + readonly _nominal_AudioLimiter: unique symbol; + Bypass: boolean; + MaxLevel: number; + Release: number; + GetConnectedWires(this: AudioLimiter, pin: string): Array; +} + interface AudioListener extends Instance { /** * **DO NOT USE!** @@ -3222,11 +3239,15 @@ interface AvatarCreationService extends Instance { /** * Tags: Yields */ - GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string): string; + GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string, options: object): string; /** * Tags: Yields */ GetAvatarGenerationConfig(this: AvatarCreationService): object; + /** + * Tags: Yields + */ + GetBatchTokenDetailsAsync(this: AvatarCreationService, tokenIds: Array): unknown; /** * Tags: Yields */ @@ -5126,9 +5147,11 @@ interface WrapDeformer extends BaseWrap { * @deprecated */ readonly _nominal_WrapDeformer: unique symbol; - Amount: number; - Enabled: boolean; - RenderMeshID: ContentId; + GetDeformedCFrame(this: WrapDeformer, originalCFrame: CFrame): CFrame; + /** + * Tags: Yields + */ + CreateEditableMeshAsync(this: WrapDeformer): EditableMesh; } /** 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 { readonly _nominal_Breakpoint: unique symbol; } -interface BubbleChatMessageProperties extends Instance { - /** - * **DO NOT USE!** - * - * This field exists to force TypeScript to recognize this as a nominal type - * @hidden - * @deprecated - */ - readonly _nominal_BubbleChatMessageProperties: unique symbol; - BackgroundColor3: Color3; - BackgroundTransparency: number; - FontFace: Font; - TailVisible: boolean; - TextColor3: Color3; - TextSize: number; -} - interface BulkImportService extends Instance { /** * **DO NOT USE!** @@ -22922,6 +22928,10 @@ interface ModuleScript extends LuaSourceContainer { * @deprecated */ LinkedSource: ContentId; + /** + * The code to be executed. + */ + Source: string; } interface LuauScriptAnalyzerService extends Instance { @@ -33852,6 +33862,17 @@ interface StudioSdkService extends Instance { readonly _nominal_StudioSdkService: unique symbol; } +interface StudioUserService extends Instance { + /** + * **DO NOT USE!** + * + * This field exists to force TypeScript to recognize this as a nominal type + * @hidden + * @deprecated + */ + readonly _nominal_StudioUserService: unique symbol; +} + interface StudioWidgetsService extends Instance { /** * **DO NOT USE!** @@ -35320,6 +35341,23 @@ interface TextChatMessageProperties extends Instance { Translation: string; } +interface BubbleChatMessageProperties extends TextChatMessageProperties { + /** + * **DO NOT USE!** + * + * This field exists to force TypeScript to recognize this as a nominal type + * @hidden + * @deprecated + */ + readonly _nominal_BubbleChatMessageProperties: unique symbol; + BackgroundColor3: Color3; + BackgroundTransparency: number; + FontFace: Font; + TailVisible: boolean; + TextColor3: Color3; + TextSize: number; +} + interface ChatWindowMessageProperties extends TextChatMessageProperties { /** * **DO NOT USE!** diff --git a/include/generated/PluginSecurity.d.ts b/include/generated/PluginSecurity.d.ts index 3ae67d3dd..0f105f157 100644 --- a/include/generated/PluginSecurity.d.ts +++ b/include/generated/PluginSecurity.d.ts @@ -272,19 +272,6 @@ interface BaseWrap extends Instance { ImportOrigin: CFrame; } -interface WrapDeformer extends BaseWrap { - /** - * **DO NOT USE!** - * - * This field exists to force TypeScript to recognize this as a nominal type - * @hidden - * @deprecated - */ - readonly _nominal_WrapDeformer: unique symbol; - Amount: number; - RenderMeshID: ContentId; -} - interface WrapLayer extends BaseWrap { /** * **DO NOT USE!** @@ -1182,21 +1169,6 @@ interface BaseScript extends LuaSourceContainer { RunContext: Enum.RunContext; } -interface ModuleScript extends LuaSourceContainer { - /** - * **DO NOT USE!** - * - * This field exists to force TypeScript to recognize this as a nominal type - * @hidden - * @deprecated - */ - readonly _nominal_ModuleScript: unique symbol; - /** - * The code to be executed. - */ - Source: string; -} - interface MaterialVariant extends Instance { /** * **DO NOT USE!** diff --git a/include/generated/enums.d.ts b/include/generated/enums.d.ts index c7fc7d8eb..b23c3c93a 100644 --- a/include/generated/enums.d.ts +++ b/include/generated/enums.d.ts @@ -5481,6 +5481,35 @@ declare namespace Enum { } export type ConnectionState = ConnectionState.Connected | ConnectionState.Disconnected; + export namespace ContentSourceType { + export interface None extends globalThis.EnumItem { + Name: "None"; + Value: 0; + EnumType: typeof globalThis.Enum.ContentSourceType; + } + + export const None: None; + + export interface Uri extends globalThis.EnumItem { + Name: "Uri"; + Value: 1; + EnumType: typeof globalThis.Enum.ContentSourceType; + } + + export const Uri: Uri; + + export interface Object extends globalThis.EnumItem { + Name: "Object"; + Value: 2; + EnumType: typeof globalThis.Enum.ContentSourceType; + } + + export const Object: Object; + + export function GetEnumItems(this: globalThis.Enum): Array; + } + export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object; + export namespace ContextActionPriority { export interface Low extends globalThis.EnumItem { Name: "Low"; @@ -15358,9 +15387,17 @@ declare namespace Enum { export const Bounce: Bounce; + export interface CubicV2 extends globalThis.EnumItem { + Name: "CubicV2"; + Value: 5; + EnumType: typeof globalThis.Enum.PoseEasingStyle; + } + + export const CubicV2: CubicV2; + export function GetEnumItems(this: globalThis.Enum): Array; } - export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce; + export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce | PoseEasingStyle.CubicV2; export namespace PositionAlignmentMode { export interface OneAttachment extends globalThis.EnumItem { @@ -16851,6 +16888,35 @@ declare namespace Enum { } export type RollOffMode = RollOffMode.Inverse | RollOffMode.Linear | RollOffMode.LinearSquare | RollOffMode.InverseTapered; + export namespace RolloutState { + export interface Default extends globalThis.EnumItem { + Name: "Default"; + Value: 0; + EnumType: typeof globalThis.Enum.RolloutState; + } + + export const Default: Default; + + export interface Disabled extends globalThis.EnumItem { + Name: "Disabled"; + Value: 1; + EnumType: typeof globalThis.Enum.RolloutState; + } + + export const Disabled: Disabled; + + export interface Enabled extends globalThis.EnumItem { + Name: "Enabled"; + Value: 2; + EnumType: typeof globalThis.Enum.RolloutState; + } + + export const Enabled: Enabled; + + export function GetEnumItems(this: globalThis.Enum): Array; + } + export type RolloutState = RolloutState.Default | RolloutState.Disabled | RolloutState.Enabled; + export namespace RotationOrder { export interface XYZ extends globalThis.EnumItem { Name: "XYZ";