@rbxts/types 1.0.790 → 1.0.791

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.
@@ -19,6 +19,7 @@ interface Services {
19
19
  AssetImportService: AssetImportService;
20
20
  AssetManagerService: AssetManagerService;
21
21
  AssetService: AssetService;
22
+ AudioFocusService: AudioFocusService;
22
23
  AvatarChatService: AvatarChatService;
23
24
  AvatarCreationService: AvatarCreationService;
24
25
  AvatarEditorService: AvatarEditorService;
@@ -495,6 +496,7 @@ interface Instances extends Services, CreatableInstances {
495
496
  BubbleChatConfiguration: BubbleChatConfiguration;
496
497
  CatalogPages: CatalogPages;
497
498
  ChannelSelectorSoundEffect: ChannelSelectorSoundEffect;
499
+ ChannelTabsConfiguration: ChannelTabsConfiguration;
498
500
  CharacterAppearance: CharacterAppearance;
499
501
  ChatInputBarConfiguration: ChatInputBarConfiguration;
500
502
  ChatWindowConfiguration: ChatWindowConfiguration;
@@ -3043,6 +3045,17 @@ interface AudioFlanger extends Instance {
3043
3045
  GetConnectedWires(this: AudioFlanger, pin: string): unknown;
3044
3046
  }
3045
3047
 
3048
+ interface AudioFocusService extends Instance {
3049
+ /**
3050
+ * **DO NOT USE!**
3051
+ *
3052
+ * This field exists to force TypeScript to recognize this as a nominal type
3053
+ * @hidden
3054
+ * @deprecated
3055
+ */
3056
+ readonly _nominal_AudioFocusService: unique symbol;
3057
+ }
3058
+
3046
3059
  interface AudioListener extends Instance {
3047
3060
  /**
3048
3061
  * **DO NOT USE!**
@@ -16901,9 +16914,6 @@ interface Humanoid extends Instance {
16901
16914
  * GetLimb will throw an error if the [Part's](https://developer.roblox.com/en-us/api-reference/class/Part) parent is not set to the [Humanoid's](https://developer.roblox.com/en-us/api-reference/class/Humanoid) parent.
16902
16915
  */
16903
16916
  GetLimb(this: Humanoid, part: BasePart): Enum.Limb;
16904
- /**
16905
- * Tags: NotBrowsable
16906
- */
16907
16917
  GetMoveVelocity(this: Humanoid): Vector3;
16908
16918
  /**
16909
16919
  * This function returns an array of all [AnimationTracks](https://developer.roblox.com/en-us/api-reference/class/AnimationTrack) that are currently being played on the [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid).
@@ -34892,6 +34902,35 @@ interface BubbleChatConfiguration extends TextChatConfigurations {
34892
34902
  VerticalStudsOffset: number;
34893
34903
  }
34894
34904
 
34905
+ interface ChannelTabsConfiguration extends TextChatConfigurations {
34906
+ /**
34907
+ * **DO NOT USE!**
34908
+ *
34909
+ * This field exists to force TypeScript to recognize this as a nominal type
34910
+ * @hidden
34911
+ * @deprecated
34912
+ */
34913
+ readonly _nominal_ChannelTabsConfiguration: unique symbol;
34914
+ /**
34915
+ * Tags: NotReplicated
34916
+ */
34917
+ readonly AbsolutePosition: Vector2;
34918
+ /**
34919
+ * Tags: NotReplicated
34920
+ */
34921
+ readonly AbsoluteSize: Vector2;
34922
+ BackgroundColor3: Color3;
34923
+ BackgroundTransparency: number;
34924
+ Enabled: boolean;
34925
+ FontFace: Font;
34926
+ HoverBackgroundColor3: Color3;
34927
+ SelectedTabTextColor3: Color3;
34928
+ TextColor3: Color3;
34929
+ TextSize: number;
34930
+ TextStrokeColor3: Color3;
34931
+ TextStrokeTransparency: number;
34932
+ }
34933
+
34895
34934
  interface ChatInputBarConfiguration extends TextChatConfigurations {
34896
34935
  /**
34897
34936
  * **DO NOT USE!**
@@ -36036,6 +36075,7 @@ interface UIDragDetector extends UIComponent {
36036
36075
  */
36037
36076
  readonly _nominal_UIDragDetector: unique symbol;
36038
36077
  ActivatedCursorIcon: string;
36078
+ BoundingBehavior: Enum.UIDragDetectorBoundingBehavior;
36039
36079
  BoundingUI: GuiBase2d | undefined;
36040
36080
  CursorIcon: string;
36041
36081
  DragAxis: Vector2;
@@ -16744,6 +16744,107 @@ declare namespace Enum {
16744
16744
  }
16745
16745
  export type ScrollingDirection = ScrollingDirection.X | ScrollingDirection.Y | ScrollingDirection.XY;
16746
16746
 
16747
+ export namespace SecurityCapability {
16748
+ export interface RunClientScript extends globalThis.EnumItem {
16749
+ Name: "RunClientScript";
16750
+ Value: 0;
16751
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16752
+ }
16753
+
16754
+ export const RunClientScript: RunClientScript;
16755
+
16756
+ export interface RunServerScript extends globalThis.EnumItem {
16757
+ Name: "RunServerScript";
16758
+ Value: 1;
16759
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16760
+ }
16761
+
16762
+ export const RunServerScript: RunServerScript;
16763
+
16764
+ export interface AccessOutsideWrite extends globalThis.EnumItem {
16765
+ Name: "AccessOutsideWrite";
16766
+ Value: 2;
16767
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16768
+ }
16769
+
16770
+ export const AccessOutsideWrite: AccessOutsideWrite;
16771
+
16772
+ export interface AssetRequire extends globalThis.EnumItem {
16773
+ Name: "AssetRequire";
16774
+ Value: 3;
16775
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16776
+ }
16777
+
16778
+ export const AssetRequire: AssetRequire;
16779
+
16780
+ export interface LoadString extends globalThis.EnumItem {
16781
+ Name: "LoadString";
16782
+ Value: 4;
16783
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16784
+ }
16785
+
16786
+ export const LoadString: LoadString;
16787
+
16788
+ export interface ScriptGlobals extends globalThis.EnumItem {
16789
+ Name: "ScriptGlobals";
16790
+ Value: 5;
16791
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16792
+ }
16793
+
16794
+ export const ScriptGlobals: ScriptGlobals;
16795
+
16796
+ export interface CreateInstances extends globalThis.EnumItem {
16797
+ Name: "CreateInstances";
16798
+ Value: 6;
16799
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16800
+ }
16801
+
16802
+ export const CreateInstances: CreateInstances;
16803
+
16804
+ export interface Basic extends globalThis.EnumItem {
16805
+ Name: "Basic";
16806
+ Value: 7;
16807
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16808
+ }
16809
+
16810
+ export const Basic: Basic;
16811
+
16812
+ export interface Audio extends globalThis.EnumItem {
16813
+ Name: "Audio";
16814
+ Value: 8;
16815
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16816
+ }
16817
+
16818
+ export const Audio: Audio;
16819
+
16820
+ export interface DataStore extends globalThis.EnumItem {
16821
+ Name: "DataStore";
16822
+ Value: 9;
16823
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16824
+ }
16825
+
16826
+ export const DataStore: DataStore;
16827
+
16828
+ export interface Network extends globalThis.EnumItem {
16829
+ Name: "Network";
16830
+ Value: 10;
16831
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16832
+ }
16833
+
16834
+ export const Network: Network;
16835
+
16836
+ export interface Physics extends globalThis.EnumItem {
16837
+ Name: "Physics";
16838
+ Value: 11;
16839
+ EnumType: typeof globalThis.Enum.SecurityCapability;
16840
+ }
16841
+
16842
+ export const Physics: Physics;
16843
+
16844
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
16845
+ }
16846
+ 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;
16847
+
16747
16848
  export namespace SelectionBehavior {
16748
16849
  export interface Escape extends globalThis.EnumItem {
16749
16850
  Name: "Escape";
@@ -20845,6 +20946,35 @@ declare namespace Enum {
20845
20946
  }
20846
20947
  export type TweenStatus = TweenStatus.Canceled | TweenStatus.Completed;
20847
20948
 
20949
+ export namespace UIDragDetectorBoundingBehavior {
20950
+ export interface Automatic extends globalThis.EnumItem {
20951
+ Name: "Automatic";
20952
+ Value: 0;
20953
+ EnumType: typeof globalThis.Enum.UIDragDetectorBoundingBehavior;
20954
+ }
20955
+
20956
+ export const Automatic: Automatic;
20957
+
20958
+ export interface EntireObject extends globalThis.EnumItem {
20959
+ Name: "EntireObject";
20960
+ Value: 1;
20961
+ EnumType: typeof globalThis.Enum.UIDragDetectorBoundingBehavior;
20962
+ }
20963
+
20964
+ export const EntireObject: EntireObject;
20965
+
20966
+ export interface HitPoint extends globalThis.EnumItem {
20967
+ Name: "HitPoint";
20968
+ Value: 2;
20969
+ EnumType: typeof globalThis.Enum.UIDragDetectorBoundingBehavior;
20970
+ }
20971
+
20972
+ export const HitPoint: HitPoint;
20973
+
20974
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorBoundingBehavior>;
20975
+ }
20976
+ export type UIDragDetectorBoundingBehavior = UIDragDetectorBoundingBehavior.Automatic | UIDragDetectorBoundingBehavior.EntireObject | UIDragDetectorBoundingBehavior.HitPoint;
20977
+
20848
20978
  export namespace UIDragDetectorDragRelativity {
20849
20979
  export interface Absolute extends globalThis.EnumItem {
20850
20980
  Name: "Absolute";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.790",
3
+ "version": "1.0.791",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },