Skip to content

Commit

Permalink
Update generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Oct 13, 2024
1 parent ef39d35 commit 00ed60f
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 126 deletions.
80 changes: 21 additions & 59 deletions include/generated/None.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ interface Services {
StudioPublishService: StudioPublishService;
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
StudioSdkService: StudioSdkService;
StudioUserService: StudioUserService;
StudioWidgetsService: StudioWidgetsService;
StylingService: StylingService;
TeamCreateData: TeamCreateData;
Expand Down Expand Up @@ -226,7 +225,6 @@ interface CreatableInstances {
AudioFader: AudioFader;
AudioFilter: AudioFilter;
AudioFlanger: AudioFlanger;
AudioLimiter: AudioLimiter;
AudioListener: AudioListener;
AudioPitchShifter: AudioPitchShifter;
AudioPlayer: AudioPlayer;
Expand Down Expand Up @@ -3066,21 +3064,6 @@ 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<Instance>;
}

interface AudioListener extends Instance {
/**
* **DO NOT USE!**
Expand Down Expand Up @@ -3239,15 +3222,11 @@ interface AvatarCreationService extends Instance {
/**
* Tags: Yields
*/
GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string, options: object): string;
GenerateAvatarPreviewAsync2(this: AvatarCreationService, sessionId: string, fileId: string, textPrompt: string): string;
/**
* Tags: Yields
*/
GetAvatarGenerationConfig(this: AvatarCreationService): object;
/**
* Tags: Yields
*/
GetBatchTokenDetailsAsync(this: AvatarCreationService, tokenIds: Array<any>): unknown;
/**
* Tags: Yields
*/
Expand Down Expand Up @@ -5147,11 +5126,9 @@ interface WrapDeformer extends BaseWrap {
* @deprecated
*/
readonly _nominal_WrapDeformer: unique symbol;
GetDeformedCFrame(this: WrapDeformer, originalCFrame: CFrame): CFrame;
/**
* Tags: Yields
*/
CreateEditableMeshAsync(this: WrapDeformer): EditableMesh;
Amount: number;
Enabled: boolean;
RenderMeshID: ContentId;
}

/** 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.
Expand Down Expand Up @@ -6324,6 +6301,23 @@ 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!**
Expand Down Expand Up @@ -22928,10 +22922,6 @@ interface ModuleScript extends LuaSourceContainer {
* @deprecated
*/
LinkedSource: ContentId;
/**
* The code to be executed.
*/
Source: string;
}

interface LuauScriptAnalyzerService extends Instance {
Expand Down Expand Up @@ -33862,17 +33852,6 @@ 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!**
Expand Down Expand Up @@ -35341,23 +35320,6 @@ 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!**
Expand Down
28 changes: 28 additions & 0 deletions include/generated/PluginSecurity.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,19 @@ 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!**
Expand Down Expand Up @@ -1169,6 +1182,21 @@ 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!**
Expand Down
68 changes: 1 addition & 67 deletions include/generated/enums.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5481,35 +5481,6 @@ 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<globalThis.Enum.ContentSourceType>;
}
export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;

export namespace ContextActionPriority {
export interface Low extends globalThis.EnumItem {
Name: "Low";
Expand Down Expand Up @@ -15387,17 +15358,9 @@ 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<globalThis.Enum.PoseEasingStyle>;
}
export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce | PoseEasingStyle.CubicV2;
export type PoseEasingStyle = PoseEasingStyle.Linear | PoseEasingStyle.Constant | PoseEasingStyle.Elastic | PoseEasingStyle.Cubic | PoseEasingStyle.Bounce;

export namespace PositionAlignmentMode {
export interface OneAttachment extends globalThis.EnumItem {
Expand Down Expand Up @@ -16888,35 +16851,6 @@ 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<globalThis.Enum.RolloutState>;
}
export type RolloutState = RolloutState.Default | RolloutState.Disabled | RolloutState.Enabled;

export namespace RotationOrder {
export interface XYZ extends globalThis.EnumItem {
Name: "XYZ";
Expand Down

0 comments on commit 00ed60f

Please sign in to comment.