@rbxts/types 1.0.778 → 1.0.779

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.
@@ -78,6 +78,7 @@ interface Services {
78
78
  LanguageService: LanguageService;
79
79
  LegacyStudioBridge: LegacyStudioBridge;
80
80
  Lighting: Lighting;
81
+ LinkingService: LinkingService;
81
82
  LiveScriptingService: LiveScriptingService;
82
83
  LocalizationService: LocalizationService;
83
84
  LodDataService: LodDataService;
@@ -2820,6 +2821,7 @@ interface AudioChorus extends Instance {
2820
2821
  * @deprecated
2821
2822
  */
2822
2823
  readonly _nominal_AudioChorus: unique symbol;
2824
+ Bypass: boolean;
2823
2825
  Depth: number;
2824
2826
  Mix: number;
2825
2827
  Rate: number;
@@ -2836,6 +2838,7 @@ interface AudioCompressor extends Instance {
2836
2838
  */
2837
2839
  readonly _nominal_AudioCompressor: unique symbol;
2838
2840
  Attack: number;
2841
+ Bypass: boolean;
2839
2842
  MakeupGain: number;
2840
2843
  Ratio: number;
2841
2844
  Release: number;
@@ -2883,6 +2886,7 @@ interface AudioDistortion extends Instance {
2883
2886
  * @deprecated
2884
2887
  */
2885
2888
  readonly _nominal_AudioDistortion: unique symbol;
2889
+ Bypass: boolean;
2886
2890
  Level: number;
2887
2891
  GetConnectedWires(this: AudioDistortion, pin: string): unknown;
2888
2892
  }
@@ -2896,6 +2900,7 @@ interface AudioEcho extends Instance {
2896
2900
  * @deprecated
2897
2901
  */
2898
2902
  readonly _nominal_AudioEcho: unique symbol;
2903
+ Bypass: boolean;
2899
2904
  DelayTime: number;
2900
2905
  DryLevel: number;
2901
2906
  Feedback: number;
@@ -2933,6 +2938,7 @@ interface AudioEqualizer extends Instance {
2933
2938
  * @deprecated
2934
2939
  */
2935
2940
  readonly _nominal_AudioEqualizer: unique symbol;
2941
+ Bypass: boolean;
2936
2942
  HighGain: number;
2937
2943
  LowGain: number;
2938
2944
  MidGain: number;
@@ -2949,6 +2955,7 @@ interface AudioFader extends Instance {
2949
2955
  * @deprecated
2950
2956
  */
2951
2957
  readonly _nominal_AudioFader: unique symbol;
2958
+ Bypass: boolean;
2952
2959
  Volume: number;
2953
2960
  GetConnectedWires(this: AudioFader, pin: string): unknown;
2954
2961
  }
@@ -2962,6 +2969,7 @@ interface AudioFlanger extends Instance {
2962
2969
  * @deprecated
2963
2970
  */
2964
2971
  readonly _nominal_AudioFlanger: unique symbol;
2972
+ Bypass: boolean;
2965
2973
  Depth: number;
2966
2974
  Mix: number;
2967
2975
  Rate: number;
@@ -2990,6 +2998,7 @@ interface AudioPitchShifter extends Instance {
2990
2998
  * @deprecated
2991
2999
  */
2992
3000
  readonly _nominal_AudioPitchShifter: unique symbol;
3001
+ Bypass: boolean;
2993
3002
  Pitch: number;
2994
3003
  GetConnectedWires(this: AudioPitchShifter, pin: string): unknown;
2995
3004
  }
@@ -3035,6 +3044,7 @@ interface AudioReverb extends Instance {
3035
3044
  * @deprecated
3036
3045
  */
3037
3046
  readonly _nominal_AudioReverb: unique symbol;
3047
+ Bypass: boolean;
3038
3048
  DecayRatio: number;
3039
3049
  DecayTime: number;
3040
3050
  Density: number;
@@ -21025,6 +21035,17 @@ interface Lighting extends Instance {
21025
21035
  readonly LightingChanged: RBXScriptSignal<(skyChanged: boolean) => void>;
21026
21036
  }
21027
21037
 
21038
+ interface LinkingService extends Instance {
21039
+ /**
21040
+ * **DO NOT USE!**
21041
+ *
21042
+ * This field exists to force TypeScript to recognize this as a nominal type
21043
+ * @hidden
21044
+ * @deprecated
21045
+ */
21046
+ readonly _nominal_LinkingService: unique symbol;
21047
+ }
21048
+
21028
21049
  interface LiveScriptingService extends Instance {
21029
21050
  /**
21030
21051
  * **DO NOT USE!**
@@ -13189,6 +13189,35 @@ declare namespace Enum {
13189
13189
  }
13190
13190
  export type MoveState = MoveState.Stopped | MoveState.Coasting | MoveState.Pushing | MoveState.Stopping | MoveState.AirFree;
13191
13191
 
13192
+ export namespace MoverConstraintRootBehaviorMode {
13193
+ export interface Default extends globalThis.EnumItem {
13194
+ Name: "Default";
13195
+ Value: 0;
13196
+ EnumType: typeof globalThis.Enum.MoverConstraintRootBehaviorMode;
13197
+ }
13198
+
13199
+ export const Default: Default;
13200
+
13201
+ export interface Disabled extends globalThis.EnumItem {
13202
+ Name: "Disabled";
13203
+ Value: 1;
13204
+ EnumType: typeof globalThis.Enum.MoverConstraintRootBehaviorMode;
13205
+ }
13206
+
13207
+ export const Disabled: Disabled;
13208
+
13209
+ export interface Enabled extends globalThis.EnumItem {
13210
+ Name: "Enabled";
13211
+ Value: 2;
13212
+ EnumType: typeof globalThis.Enum.MoverConstraintRootBehaviorMode;
13213
+ }
13214
+
13215
+ export const Enabled: Enabled;
13216
+
13217
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MoverConstraintRootBehaviorMode>;
13218
+ }
13219
+ export type MoverConstraintRootBehaviorMode = MoverConstraintRootBehaviorMode.Default | MoverConstraintRootBehaviorMode.Disabled | MoverConstraintRootBehaviorMode.Enabled;
13220
+
13192
13221
  export namespace MuteState {
13193
13222
  export interface Unmuted extends globalThis.EnumItem {
13194
13223
  Name: "Unmuted";
@@ -2219,6 +2219,12 @@ interface Secret {
2219
2219
  * @deprecated
2220
2220
  */
2221
2221
  readonly _nominal_Secret: unique symbol;
2222
+
2223
+ /** Prepends a string to the secret content. */
2224
+ AddPrefix(this: Secret, prefix: string): Secret;
2225
+
2226
+ /** Appends a string to the secret content. */
2227
+ AddSuffix(this: Secret, suffix: string): Secret;
2222
2228
  }
2223
2229
 
2224
2230
  declare const SharedTableNominal: unique symbol;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.778",
3
+ "version": "1.0.779",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },