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 Sep 28, 2023
1 parent 9209008 commit b5447e4
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 11 deletions.
54 changes: 53 additions & 1 deletion include/generated/None.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ interface Services {
ContextActionService: ContextActionService;
ControllerService: ControllerService;
CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
CreationDBService: CreationDBService;
CrossDMScriptChangeListener: CrossDMScriptChangeListener;
DataModelPatchService: DataModelPatchService;
DataStoreService: DataStoreService;
Expand Down Expand Up @@ -96,6 +97,7 @@ interface Services {
ProcessInstancePhysicsService: ProcessInstancePhysicsService;
ProximityPromptService: ProximityPromptService;
PublishService: PublishService;
ReflectionService: ReflectionService;
RemoteCursorService: RemoteCursorService;
RemoteDebuggerServer: RemoteDebuggerServer;
ReplicatedFirst: ReplicatedFirst;
Expand Down Expand Up @@ -167,6 +169,7 @@ interface Services {

interface CreatableInstances {
Accessory: Accessory;
AccessoryDescription: AccessoryDescription;
Accoutrement: Accoutrement;
Actor: Actor;
AdGui: AdGui;
Expand Down Expand Up @@ -1229,6 +1232,23 @@ interface Instance {
readonly Destroying: RBXScriptSignal<() => void>;
}

interface AccessoryDescription extends Instance {
/**
* **DO NOT USE!**
*
* This field exists to force TypeScript to recognize this as a nominal type
* @hidden
* @deprecated
*/
readonly _nominal_AccessoryDescription: unique symbol;
AccessoryType: Enum.AccessoryType;
AssetId: number;
Instance: Instance | undefined;
IsLayered: boolean;
Order: number;
Puffiness: number;
}

/** An Accoutrement is an object that welds its child [part](https://developer.roblox.com/en-us/api-reference/class/Part) called “Handle” to the Head of a player's character. The position and rotation of the Handle part can be changed with the [AttachmentPos](https://developer.roblox.com/en-us/api-reference/property/Accoutrement/AttachmentPos)/[Right](https://developer.roblox.com/en-us/api-reference/property/Accoutrement/AttachmentRight)/[Forward](https://developer.roblox.com/en-us/api-reference/property/Accoutrement/AttachmentForward)/[Up](https://developer.roblox.com/en-us/api-reference/property/Accoutrement/AttachmentUp) properties.
*
* Parts descending from an accoutrement will be massless when attached to other parts (e.g. with a Weld) as long as they are not the root part of the assembly returned by [GetRootPart()](https://developer.roblox.com/en-us/api-reference/function/BasePart/GetRootPart). [GetMass()](https://developer.roblox.com/en-us/api-reference/function/BasePart/GetMass) will return 0 for parts in this case and it will not add to the total mass or rotational inertia of the Assembly.
Expand Down Expand Up @@ -2127,6 +2147,14 @@ interface Animator extends Instance {
*/
readonly EvaluationThrottled: boolean;
PreferLodEnabled: boolean;
/**
* Tags: NotReplicated, NotBrowsable
*/
readonly RootMotion: CFrame;
/**
* Tags: NotReplicated, NotBrowsable
*/
readonly RootMotionWeight: number;
/**
* Given the current set of [AnimationTracks](https://developer.roblox.com/en-us/api-reference/class/AnimationTrack) playing, and their current times and play speeds, compute relative velocities between the parts and apply them to Motor6D.Part1 (the part which [Animator](https://developer.roblox.com/en-us/api-reference/class/Animator) considers the “child” part). These relative velocity calculations and assignments happen in the order provided.
*
Expand Down Expand Up @@ -2227,7 +2255,6 @@ interface AssetImportSession extends Instance {
*/
readonly _nominal_AssetImportSession: unique symbol;
readonly UploadComplete: RBXScriptSignal<(results: object) => void>;
readonly UploadCompleteDeprecated: RBXScriptSignal<(succeeded: boolean, errorMap: object) => void>;
readonly UploadProgress: RBXScriptSignal<(progressRatio: number) => void>;
}

Expand Down Expand Up @@ -3722,6 +3749,7 @@ interface RootImportData extends BaseImportData {
UseSceneOriginAsCFrame: boolean;
UseSceneOriginAsPivot: boolean;
UsesCages: boolean;
ValidateUgcBody: boolean;
WorldForward: Enum.NormalId;
WorldUp: Enum.NormalId;
}
Expand Down Expand Up @@ -9190,6 +9218,17 @@ interface CoreScriptDebuggingManagerHelper extends Instance {
readonly _nominal_CoreScriptDebuggingManagerHelper: unique symbol;
}

interface CreationDBService extends Instance {
/**
* **DO NOT USE!**
*
* This field exists to force TypeScript to recognize this as a nominal type
* @hidden
* @deprecated
*/
readonly _nominal_CreationDBService: unique symbol;
}

interface CrossDMScriptChangeListener extends Instance {
/**
* **DO NOT USE!**
Expand Down Expand Up @@ -15295,6 +15334,7 @@ interface HttpService extends Instance {
* * **false** - _db454790-7563-44ed-ab4b-397ff5df737b_
*/
GenerateGUID(this: HttpService, wrapInCurlyBraces?: boolean): string;
GetSecret(this: HttpService, key: string): Secret;
/**
* The JSONDecode function transforms a [JSON object or array](http://robloxdev.com/articles/JSON-Storage-Format) into a Lua [table](http://robloxdev.com/articles/Table) with the following characteristics:
*
Expand Down Expand Up @@ -29308,6 +29348,17 @@ interface PublishService extends Instance {
readonly _nominal_PublishService: unique symbol;
}

interface ReflectionService extends Instance {
/**
* **DO NOT USE!**
*
* This field exists to force TypeScript to recognize this as a nominal type
* @hidden
* @deprecated
*/
readonly _nominal_ReflectionService: unique symbol;
}

interface RemoteCursorService extends Instance {
/**
* **DO NOT USE!**
Expand Down Expand Up @@ -33912,6 +33963,7 @@ interface TextChatCommand extends Instance {
* @deprecated
*/
readonly _nominal_TextChatCommand: unique symbol;
AutocompleteVisible: boolean;
Enabled: boolean;
PrimaryAlias: string;
SecondaryAlias: string;
Expand Down
57 changes: 47 additions & 10 deletions include/generated/enums.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6168,6 +6168,35 @@ declare namespace Enum {
}
export type EasingStyle = EasingStyle.Linear | EasingStyle.Sine | EasingStyle.Back | EasingStyle.Quad | EasingStyle.Quart | EasingStyle.Quint | EasingStyle.Bounce | EasingStyle.Elastic | EasingStyle.Exponential | EasingStyle.Circular | EasingStyle.Cubic;

export namespace EditorLiveScripting {
export interface Default extends globalThis.EnumItem {
Name: "Default";
Value: 0;
EnumType: typeof globalThis.Enum.EditorLiveScripting;
}

export const Default: Default;

export interface Disabled extends globalThis.EnumItem {
Name: "Disabled";
Value: 1;
EnumType: typeof globalThis.Enum.EditorLiveScripting;
}

export const Disabled: Disabled;

export interface Enabled extends globalThis.EnumItem {
Name: "Enabled";
Value: 2;
EnumType: typeof globalThis.Enum.EditorLiveScripting;
}

export const Enabled: Enabled;

export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EditorLiveScripting>;
}
export type EditorLiveScripting = EditorLiveScripting.Default | EditorLiveScripting.Disabled | EditorLiveScripting.Enabled;

export namespace ElasticBehavior {
export interface WhenScrollable extends globalThis.EnumItem {
Name: "WhenScrollable";
Expand Down Expand Up @@ -15118,9 +15147,17 @@ declare namespace Enum {

export const CoreUISafeInsets: CoreUISafeInsets;

export interface TopbarSafeInsets extends globalThis.EnumItem {
Name: "TopbarSafeInsets";
Value: 3;
EnumType: typeof globalThis.Enum.ScreenInsets;
}

export const TopbarSafeInsets: TopbarSafeInsets;

export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScreenInsets>;
}
export type ScreenInsets = ScreenInsets.None | ScreenInsets.DeviceSafeInsets | ScreenInsets.CoreUISafeInsets;
export type ScreenInsets = ScreenInsets.None | ScreenInsets.DeviceSafeInsets | ScreenInsets.CoreUISafeInsets | ScreenInsets.TopbarSafeInsets;

export namespace ScreenOrientation {
export interface LandscapeLeft extends globalThis.EnumItem {
Expand Down Expand Up @@ -19065,13 +19102,13 @@ declare namespace Enum {
export type TrackerPromptEvent = TrackerPromptEvent.LODCameraRecommendDisable;

export namespace TriStateBoolean {
export interface Unknown extends globalThis.EnumItem {
Name: "Unknown";
Value: 0;
export interface False extends globalThis.EnumItem {
Name: "False";
Value: 2;
EnumType: typeof globalThis.Enum.TriStateBoolean;
}

export const Unknown: Unknown;
export const False: False;

export interface True extends globalThis.EnumItem {
Name: "True";
Expand All @@ -19081,17 +19118,17 @@ declare namespace Enum {

export const True: True;

export interface False extends globalThis.EnumItem {
Name: "False";
Value: 2;
export interface Unknown extends globalThis.EnumItem {
Name: "Unknown";
Value: 0;
EnumType: typeof globalThis.Enum.TriStateBoolean;
}

export const False: False;
export const Unknown: Unknown;

export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TriStateBoolean>;
}
export type TriStateBoolean = TriStateBoolean.Unknown | TriStateBoolean.True | TriStateBoolean.False;
export type TriStateBoolean = TriStateBoolean.False | TriStateBoolean.True | TriStateBoolean.Unknown;

export namespace TweenStatus {
export interface Canceled extends globalThis.EnumItem {
Expand Down

0 comments on commit b5447e4

Please sign in to comment.