@plexcord/types 1.19.6 → 1.19.8

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.
Files changed (46) hide show
  1. package/api/ChatButtons.d.ts +1 -1
  2. package/components/Switch.d.ts +8 -2
  3. package/locales/en.d.ts +118 -110
  4. package/package.json +1 -1
  5. package/plugins/_api/notices.d.ts +0 -6
  6. package/plugins/_api/userArea.d.ts +0 -2
  7. package/plugins/_core/settings.d.ts +0 -6
  8. package/plugins/betterUserArea/index.d.ts +9 -2
  9. package/plugins/bypassPinPrompt/index.d.ts +2 -8
  10. package/plugins/clipsEnhancements/index.d.ts +46 -11
  11. package/plugins/decor/index.d.ts +7 -0
  12. package/plugins/decor/ui/index.d.ts +1 -1
  13. package/plugins/devCompanion.dev/index.d.ts +2 -54
  14. package/plugins/githubRepos/components/GitHubReposComponent.d.ts +3 -2
  15. package/plugins/githubRepos/components/RepoCard.d.ts +3 -1
  16. package/plugins/githubRepos/index.d.ts +38 -2
  17. package/plugins/holyNotes/index.d.ts +7 -0
  18. package/plugins/ignoreActivities/index.d.ts +2 -4
  19. package/plugins/mediaPlaybackSpeed/index.d.ts +3 -3
  20. package/plugins/mentionAvatars/index.d.ts +1 -0
  21. package/plugins/{betterQuickReact → moreQuickReactions}/index.d.ts +33 -0
  22. package/plugins/musicControls/spotify/lyrics/components/util.d.ts +1 -1
  23. package/plugins/musicControls/tidal/lyrics/components/util.d.ts +1 -1
  24. package/plugins/plainFolderIcon/index.d.ts +1 -1
  25. package/plugins/questify/index.d.ts +15 -1
  26. package/plugins/questify/utils/components.d.ts +30 -13
  27. package/plugins/questify/utils/misc.d.ts +7 -1
  28. package/plugins/roleColorEverywhere/index.d.ts +10 -4
  29. package/plugins/showHiddenThings/index.d.ts +7 -0
  30. package/plugins/soundBoardLogger/utils.d.ts +1 -1
  31. package/plugins/superReactionTweaks/index.d.ts +2 -7
  32. package/plugins/unlimitedAccounts/index.d.ts +1 -1
  33. package/plugins/viewIcons/index.d.ts +1 -3
  34. package/plugins/webScreenShareFixes.web/index.d.ts +0 -15
  35. package/utils/text.d.ts +1 -1
  36. package/webpack/common/components.d.ts +2 -29
  37. package/webpack/common/index.d.ts +0 -1
  38. package/webpack/webpack.d.ts +15 -7
  39. package/plugins/devCompanion.dev/initWs.d.ts +0 -3
  40. package/plugins/devCompanion.dev/types/index.d.ts +0 -1
  41. package/plugins/devCompanion.dev/types/recieve.d.ts +0 -121
  42. package/plugins/devCompanion.dev/types/send.d.ts +0 -73
  43. package/plugins/devCompanion.dev/util.d.ts +0 -25
  44. package/plugins/timelessClips/index.d.ts +0 -37
  45. package/plugins/videoSpeed/index.d.ts +0 -37
  46. package/webpack/common/classes.d.ts +0 -2
@@ -75,7 +75,7 @@ export type ChatBarButtonData = {
75
75
  * Don't use this directly, use {@link addChatBarButton} and {@link removeChatBarButton} instead.
76
76
  */
77
77
  export declare const ChatBarButtonMap: Map<string, ChatBarButtonData>;
78
- export declare function _injectButtons(buttons: ReactNode[], props: ChatBarProps): ReactNode[] | undefined;
78
+ export declare function _injectButtons(buttons: ReactNode[], props: ChatBarProps): void;
79
79
  /**
80
80
  * The icon argument is used only for Settings UI. Your render function must still render an icon,
81
81
  * and it can be different from this one.
@@ -1,7 +1,13 @@
1
1
  import "./Switch.css";
2
+ import type { Ref } from "react";
2
3
  export interface SwitchProps {
3
- disabled?: boolean;
4
4
  checked: boolean;
5
5
  onChange: (checked: boolean) => void;
6
+ disabled?: boolean;
7
+ id?: string;
8
+ hasIcon?: boolean;
9
+ innerRef?: Ref<HTMLInputElement>;
10
+ "aria-describedby"?: string;
11
+ "aria-labelledby"?: string;
6
12
  }
7
- export declare function Switch({ checked, onChange, disabled }: SwitchProps): import("react").JSX.Element;
13
+ export declare function Switch({ checked, onChange, disabled, id, hasIcon, innerRef, ...ariaProps }: SwitchProps): import("react").JSX.Element;
package/locales/en.d.ts CHANGED
@@ -1340,7 +1340,7 @@ declare const translations: {
1340
1340
  };
1341
1341
  readonly allowNewlinesInCommands: {
1342
1342
  readonly label: "Allow Newlines in Commands";
1343
- readonly description: "Allow newlines in command inputs (Shift + Enter)";
1343
+ readonly description: "Allow newlines in command inputs (CTRL + Shift + Enter)";
1344
1344
  };
1345
1345
  };
1346
1346
  readonly command: {
@@ -1439,32 +1439,6 @@ declare const translations: {
1439
1439
  readonly name: "BetterPlusReacts";
1440
1440
  readonly description: "The amount of plus before :emoji: is the message to add it to";
1441
1441
  };
1442
- readonly betterQuickReact: {
1443
- readonly name: "BetterQuickReact";
1444
- readonly description: "Improves the quick react buttons in the message context menu.";
1445
- readonly option: {
1446
- readonly frequentEmojis: {
1447
- readonly label: "Frequent Emojis";
1448
- readonly description: "Use frequently used emojis instead of favourite emojis";
1449
- };
1450
- readonly rows: {
1451
- readonly label: "Rows";
1452
- readonly description: "Rows of quick reactions to display";
1453
- };
1454
- readonly columns: {
1455
- readonly label: "Columns";
1456
- readonly description: "Columns of quick reactions to display";
1457
- };
1458
- readonly compactMode: {
1459
- readonly label: "Compact Mode";
1460
- readonly description: "Scales the buttons to 75% of their original scale, whilst increasing the inner emoji to 125% scale. Emojis will be 93.75% of the original size. Recommended to have a minimum of 5 columns";
1461
- };
1462
- readonly scroll: {
1463
- readonly label: "Scroll";
1464
- readonly description: "Enable scrolling the list of emojis";
1465
- };
1466
- };
1467
- };
1468
1442
  readonly betterRoleContext: {
1469
1443
  readonly name: "BetterRoleContext";
1470
1444
  readonly description: "Adds options to copy role color / edit role / view role icon when right clicking roles in the user profile";
@@ -1655,6 +1629,10 @@ declare const translations: {
1655
1629
  readonly label: "Notification Sound";
1656
1630
  readonly description: "Whether the notification sound should be played";
1657
1631
  };
1632
+ readonly respectSilentPings: {
1633
+ readonly label: "Respect Silent Pings";
1634
+ readonly description: "Respect silent pings (@silent / suppress notifications)";
1635
+ };
1658
1636
  readonly statusToUse: {
1659
1637
  readonly label: "Status to Use";
1660
1638
  readonly description: "Status to use for whitelist";
@@ -2397,6 +2375,18 @@ declare const translations: {
2397
2375
  readonly only: "Only when beginning or end of activity name matches";
2398
2376
  readonly never: "Never";
2399
2377
  };
2378
+ readonly enableScreenshotKeybind: {
2379
+ readonly label: "Enable Screenshot Keybind";
2380
+ readonly description: "Enable the screenshot keybind feature";
2381
+ };
2382
+ readonly enableVoiceOnlyClips: {
2383
+ readonly label: "Enable Voice-Only Clips";
2384
+ readonly description: "Enable voice-only clips (audio without video)";
2385
+ };
2386
+ readonly enableAdvancedSignals: {
2387
+ readonly label: "Enable Advanced Signals";
2388
+ readonly description: "Enable advanced clip signals (auto-clip triggers)";
2389
+ };
2400
2390
  readonly clipsLink: {
2401
2391
  readonly label: "Clips Link";
2402
2392
  readonly link: "Change FPS and duration options in Clips settings!";
@@ -3578,16 +3568,9 @@ declare const translations: {
3578
3568
  readonly label: "Notify on Auto Connect";
3579
3569
  readonly description: "Whether to notify when Dev Companion has automatically connected.";
3580
3570
  };
3581
- readonly usePatchedModule: {
3582
- readonly label: "Use Patched Module";
3583
- readonly description: "On extract requests, reply with the current patched module (if it is patched) instead of the original.";
3584
- };
3585
- readonly reloadAfterToggle: {
3586
- readonly label: "Reload After Toggle";
3587
- readonly description: "Reload after a disable/enable plugin command is received.";
3588
- };
3589
3571
  };
3590
3572
  readonly toast: {
3573
+ readonly title: "Dev Companion Connected";
3591
3574
  readonly connected: "Connected to WebSocket";
3592
3575
  readonly disconnected: "Dev Companion Disconnected";
3593
3576
  readonly error: "Dev Companion Error";
@@ -3596,6 +3579,8 @@ declare const translations: {
3596
3579
  readonly close: "Close";
3597
3580
  readonly stopping: "Error while stopping plugin {{plugin}}";
3598
3581
  readonly starting: "Error while starting plugin {{plugin}}";
3582
+ readonly noMessage: "No Error Message";
3583
+ readonly noReason: "No Reason Provided";
3599
3584
  };
3600
3585
  };
3601
3586
  readonly disableCallIdle: {
@@ -4428,6 +4413,10 @@ declare const translations: {
4428
4413
  readonly label: "Show in Mini Profile";
4429
4414
  readonly description: "Show repositories in the mini profile popout";
4430
4415
  };
4416
+ readonly showRepositoryTab: {
4417
+ readonly label: "Show Repository Tab";
4418
+ readonly description: "Show repositories tab in profile modal (hides button in connections when enabled)";
4419
+ };
4431
4420
  };
4432
4421
  readonly error: {
4433
4422
  readonly error: "Error";
@@ -5912,6 +5901,36 @@ declare const translations: {
5912
5901
  readonly name: "MoreKaomoji";
5913
5902
  readonly description: "Adds more Kaomoji to discord. ヽ(´▽`)/";
5914
5903
  };
5904
+ readonly moreQuickReactions: {
5905
+ readonly name: "MoreQuickReactions";
5906
+ readonly description: "Improves the quick react buttons in the message context menu.";
5907
+ readonly option: {
5908
+ readonly reactionCount: {
5909
+ readonly label: "Reaction Count";
5910
+ readonly description: "Number of reactions (0-42)";
5911
+ };
5912
+ readonly frequentEmojis: {
5913
+ readonly label: "Frequent Emojis";
5914
+ readonly description: "Use frequently used emojis instead of favourite emojis";
5915
+ };
5916
+ readonly rows: {
5917
+ readonly label: "Rows";
5918
+ readonly description: "Rows of quick reactions to display";
5919
+ };
5920
+ readonly columns: {
5921
+ readonly label: "Columns";
5922
+ readonly description: "Columns of quick reactions to display";
5923
+ };
5924
+ readonly compactMode: {
5925
+ readonly label: "Compact Mode";
5926
+ readonly description: "Scales the buttons to 75% of their original scale, whilst increasing the inner emoji to 125% scale. Emojis will be 93.75% of the original size. Recommended to have a minimum of 5 columns";
5927
+ };
5928
+ readonly scroll: {
5929
+ readonly label: "Scroll";
5930
+ readonly description: "Enable scrolling the list of emojis";
5931
+ };
5932
+ };
5933
+ };
5915
5934
  readonly morse: {
5916
5935
  readonly name: "Morse";
5917
5936
  readonly description: "A slash command to translate to/from morse code.";
@@ -7087,6 +7106,11 @@ declare const translations: {
7087
7106
  readonly complete: "Complete {{remainTime}}";
7088
7107
  readonly completeImmediate: "Complete (Immediate)";
7089
7108
  };
7109
+ readonly reward: {
7110
+ readonly orbs: "{{completingText}} for {{orbQuantity}} Orbs.";
7111
+ readonly article: "{{completingText}} for {{itemName}}.";
7112
+ readonly unrecognized: "{{completingText}} for an unrecognized reward type.";
7113
+ };
7090
7114
  readonly notification: {
7091
7115
  readonly completed: {
7092
7116
  readonly title: "Quest Completed";
@@ -8577,16 +8601,6 @@ declare const translations: {
8577
8601
  readonly name: "ThemeAttributes";
8578
8602
  readonly description: "Adds data attributes to various elements for theming purposes";
8579
8603
  };
8580
- readonly timelessClips: {
8581
- readonly name: "TimelessClips";
8582
- readonly description: "Add a your own clip length";
8583
- readonly option: {
8584
- readonly clipLength: {
8585
- readonly label: "Clip Length";
8586
- readonly description: "Add clip length option in minutes";
8587
- };
8588
- };
8589
- };
8590
8604
  readonly timezones: {
8591
8605
  readonly name: "Timezones";
8592
8606
  readonly description: "Shows the local time of users in profiles and message headers";
@@ -9151,16 +9165,6 @@ declare const translations: {
9151
9165
  readonly placeholdersInfo: "The special placeholders {{USER}}, {{DISPLAY_NAME}}, {{NICKNAME}} and {{CHANNEL}} will be replaced with the user's name (nothing if it's yourself), the user's display name, the user's nickname on current server and the channel's name respectively";
9152
9166
  };
9153
9167
  };
9154
- readonly videoSpeed: {
9155
- readonly name: "VideoSpeed";
9156
- readonly description: "Allows you to change the speed of videos";
9157
- readonly option: {
9158
- readonly preservePitch: {
9159
- readonly label: "Preserve Pitch";
9160
- readonly description: "Should pitch be preserved when changing speed?";
9161
- };
9162
- };
9163
- };
9164
9168
  readonly viewIcons: {
9165
9169
  readonly name: "ViewIcons";
9166
9170
  readonly description: "Makes avatars and banners in user profiles clickable, adds View Icon/Banner entries in the user, server and group channel context menu.";
@@ -10930,7 +10934,7 @@ export declare const plugin: DeepKeyProxy<{
10930
10934
  };
10931
10935
  readonly allowNewlinesInCommands: {
10932
10936
  readonly label: "Allow Newlines in Commands";
10933
- readonly description: "Allow newlines in command inputs (Shift + Enter)";
10937
+ readonly description: "Allow newlines in command inputs (CTRL + Shift + Enter)";
10934
10938
  };
10935
10939
  };
10936
10940
  readonly command: {
@@ -11029,32 +11033,6 @@ export declare const plugin: DeepKeyProxy<{
11029
11033
  readonly name: "BetterPlusReacts";
11030
11034
  readonly description: "The amount of plus before :emoji: is the message to add it to";
11031
11035
  };
11032
- readonly betterQuickReact: {
11033
- readonly name: "BetterQuickReact";
11034
- readonly description: "Improves the quick react buttons in the message context menu.";
11035
- readonly option: {
11036
- readonly frequentEmojis: {
11037
- readonly label: "Frequent Emojis";
11038
- readonly description: "Use frequently used emojis instead of favourite emojis";
11039
- };
11040
- readonly rows: {
11041
- readonly label: "Rows";
11042
- readonly description: "Rows of quick reactions to display";
11043
- };
11044
- readonly columns: {
11045
- readonly label: "Columns";
11046
- readonly description: "Columns of quick reactions to display";
11047
- };
11048
- readonly compactMode: {
11049
- readonly label: "Compact Mode";
11050
- readonly description: "Scales the buttons to 75% of their original scale, whilst increasing the inner emoji to 125% scale. Emojis will be 93.75% of the original size. Recommended to have a minimum of 5 columns";
11051
- };
11052
- readonly scroll: {
11053
- readonly label: "Scroll";
11054
- readonly description: "Enable scrolling the list of emojis";
11055
- };
11056
- };
11057
- };
11058
11036
  readonly betterRoleContext: {
11059
11037
  readonly name: "BetterRoleContext";
11060
11038
  readonly description: "Adds options to copy role color / edit role / view role icon when right clicking roles in the user profile";
@@ -11245,6 +11223,10 @@ export declare const plugin: DeepKeyProxy<{
11245
11223
  readonly label: "Notification Sound";
11246
11224
  readonly description: "Whether the notification sound should be played";
11247
11225
  };
11226
+ readonly respectSilentPings: {
11227
+ readonly label: "Respect Silent Pings";
11228
+ readonly description: "Respect silent pings (@silent / suppress notifications)";
11229
+ };
11248
11230
  readonly statusToUse: {
11249
11231
  readonly label: "Status to Use";
11250
11232
  readonly description: "Status to use for whitelist";
@@ -11987,6 +11969,18 @@ export declare const plugin: DeepKeyProxy<{
11987
11969
  readonly only: "Only when beginning or end of activity name matches";
11988
11970
  readonly never: "Never";
11989
11971
  };
11972
+ readonly enableScreenshotKeybind: {
11973
+ readonly label: "Enable Screenshot Keybind";
11974
+ readonly description: "Enable the screenshot keybind feature";
11975
+ };
11976
+ readonly enableVoiceOnlyClips: {
11977
+ readonly label: "Enable Voice-Only Clips";
11978
+ readonly description: "Enable voice-only clips (audio without video)";
11979
+ };
11980
+ readonly enableAdvancedSignals: {
11981
+ readonly label: "Enable Advanced Signals";
11982
+ readonly description: "Enable advanced clip signals (auto-clip triggers)";
11983
+ };
11990
11984
  readonly clipsLink: {
11991
11985
  readonly label: "Clips Link";
11992
11986
  readonly link: "Change FPS and duration options in Clips settings!";
@@ -13168,16 +13162,9 @@ export declare const plugin: DeepKeyProxy<{
13168
13162
  readonly label: "Notify on Auto Connect";
13169
13163
  readonly description: "Whether to notify when Dev Companion has automatically connected.";
13170
13164
  };
13171
- readonly usePatchedModule: {
13172
- readonly label: "Use Patched Module";
13173
- readonly description: "On extract requests, reply with the current patched module (if it is patched) instead of the original.";
13174
- };
13175
- readonly reloadAfterToggle: {
13176
- readonly label: "Reload After Toggle";
13177
- readonly description: "Reload after a disable/enable plugin command is received.";
13178
- };
13179
13165
  };
13180
13166
  readonly toast: {
13167
+ readonly title: "Dev Companion Connected";
13181
13168
  readonly connected: "Connected to WebSocket";
13182
13169
  readonly disconnected: "Dev Companion Disconnected";
13183
13170
  readonly error: "Dev Companion Error";
@@ -13186,6 +13173,8 @@ export declare const plugin: DeepKeyProxy<{
13186
13173
  readonly close: "Close";
13187
13174
  readonly stopping: "Error while stopping plugin {{plugin}}";
13188
13175
  readonly starting: "Error while starting plugin {{plugin}}";
13176
+ readonly noMessage: "No Error Message";
13177
+ readonly noReason: "No Reason Provided";
13189
13178
  };
13190
13179
  };
13191
13180
  readonly disableCallIdle: {
@@ -14018,6 +14007,10 @@ export declare const plugin: DeepKeyProxy<{
14018
14007
  readonly label: "Show in Mini Profile";
14019
14008
  readonly description: "Show repositories in the mini profile popout";
14020
14009
  };
14010
+ readonly showRepositoryTab: {
14011
+ readonly label: "Show Repository Tab";
14012
+ readonly description: "Show repositories tab in profile modal (hides button in connections when enabled)";
14013
+ };
14021
14014
  };
14022
14015
  readonly error: {
14023
14016
  readonly error: "Error";
@@ -15502,6 +15495,36 @@ export declare const plugin: DeepKeyProxy<{
15502
15495
  readonly name: "MoreKaomoji";
15503
15496
  readonly description: "Adds more Kaomoji to discord. ヽ(´▽`)/";
15504
15497
  };
15498
+ readonly moreQuickReactions: {
15499
+ readonly name: "MoreQuickReactions";
15500
+ readonly description: "Improves the quick react buttons in the message context menu.";
15501
+ readonly option: {
15502
+ readonly reactionCount: {
15503
+ readonly label: "Reaction Count";
15504
+ readonly description: "Number of reactions (0-42)";
15505
+ };
15506
+ readonly frequentEmojis: {
15507
+ readonly label: "Frequent Emojis";
15508
+ readonly description: "Use frequently used emojis instead of favourite emojis";
15509
+ };
15510
+ readonly rows: {
15511
+ readonly label: "Rows";
15512
+ readonly description: "Rows of quick reactions to display";
15513
+ };
15514
+ readonly columns: {
15515
+ readonly label: "Columns";
15516
+ readonly description: "Columns of quick reactions to display";
15517
+ };
15518
+ readonly compactMode: {
15519
+ readonly label: "Compact Mode";
15520
+ readonly description: "Scales the buttons to 75% of their original scale, whilst increasing the inner emoji to 125% scale. Emojis will be 93.75% of the original size. Recommended to have a minimum of 5 columns";
15521
+ };
15522
+ readonly scroll: {
15523
+ readonly label: "Scroll";
15524
+ readonly description: "Enable scrolling the list of emojis";
15525
+ };
15526
+ };
15527
+ };
15505
15528
  readonly morse: {
15506
15529
  readonly name: "Morse";
15507
15530
  readonly description: "A slash command to translate to/from morse code.";
@@ -16677,6 +16700,11 @@ export declare const plugin: DeepKeyProxy<{
16677
16700
  readonly complete: "Complete {{remainTime}}";
16678
16701
  readonly completeImmediate: "Complete (Immediate)";
16679
16702
  };
16703
+ readonly reward: {
16704
+ readonly orbs: "{{completingText}} for {{orbQuantity}} Orbs.";
16705
+ readonly article: "{{completingText}} for {{itemName}}.";
16706
+ readonly unrecognized: "{{completingText}} for an unrecognized reward type.";
16707
+ };
16680
16708
  readonly notification: {
16681
16709
  readonly completed: {
16682
16710
  readonly title: "Quest Completed";
@@ -18167,16 +18195,6 @@ export declare const plugin: DeepKeyProxy<{
18167
18195
  readonly name: "ThemeAttributes";
18168
18196
  readonly description: "Adds data attributes to various elements for theming purposes";
18169
18197
  };
18170
- readonly timelessClips: {
18171
- readonly name: "TimelessClips";
18172
- readonly description: "Add a your own clip length";
18173
- readonly option: {
18174
- readonly clipLength: {
18175
- readonly label: "Clip Length";
18176
- readonly description: "Add clip length option in minutes";
18177
- };
18178
- };
18179
- };
18180
18198
  readonly timezones: {
18181
18199
  readonly name: "Timezones";
18182
18200
  readonly description: "Shows the local time of users in profiles and message headers";
@@ -18741,16 +18759,6 @@ export declare const plugin: DeepKeyProxy<{
18741
18759
  readonly placeholdersInfo: "The special placeholders {{USER}}, {{DISPLAY_NAME}}, {{NICKNAME}} and {{CHANNEL}} will be replaced with the user's name (nothing if it's yourself), the user's display name, the user's nickname on current server and the channel's name respectively";
18742
18760
  };
18743
18761
  };
18744
- readonly videoSpeed: {
18745
- readonly name: "VideoSpeed";
18746
- readonly description: "Allows you to change the speed of videos";
18747
- readonly option: {
18748
- readonly preservePitch: {
18749
- readonly label: "Preserve Pitch";
18750
- readonly description: "Should pitch be preserved when changing speed?";
18751
- };
18752
- };
18753
- };
18754
18762
  readonly viewIcons: {
18755
18763
  readonly name: "ViewIcons";
18756
18764
  readonly description: "Makes avatars and banners in user profiles clickable, adds View Icon/Banner entries in the user, server and group channel context menu.";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@plexcord/types",
3
3
  "private": false,
4
- "version": "1.19.6",
4
+ "version": "1.19.8",
5
5
  "description": "",
6
6
  "types": "index.d.ts",
7
7
  "scripts": {
@@ -11,15 +11,9 @@ declare const _default: {
11
11
  replacement: ({
12
12
  match: RegExp;
13
13
  replace: string;
14
- noWarn?: undefined;
15
- } | {
16
- match: RegExp;
17
- replace: (m: string, notice: string) => string;
18
- noWarn: true;
19
14
  } | {
20
15
  match: RegExp;
21
16
  replace: (m: string, _: string, notice: string) => string;
22
- noWarn?: undefined;
23
17
  })[];
24
18
  }[];
25
19
  } & Record<PropertyKey, any> & import("../../utils/types").Plugin;
@@ -14,8 +14,6 @@ declare const _default: {
14
14
  }[];
15
15
  renderButtons(props: {
16
16
  nameplate?: any;
17
- }, styles: {
18
- iconForeground?: string;
19
17
  }): import("react").JSX.Element[];
20
18
  shouldHideTooltips(): boolean;
21
19
  } & Record<PropertyKey, any> & import("../../utils/types").Plugin;
@@ -115,12 +115,6 @@ declare const _default: {
115
115
  match: RegExp;
116
116
  replace: (m: string, _buildOverride: string, makeRow: string, component: string, props: string) => string;
117
117
  })[];
118
- } | {
119
- find: string;
120
- replacement: {
121
- match: RegExp;
122
- replace: (_: string, settingsPanel: string, section: string, openUserSettings: string) => string;
123
- };
124
118
  } | {
125
119
  find: string;
126
120
  replacement: {
@@ -93,13 +93,20 @@ declare const _default: {
93
93
  restartNeeded: true;
94
94
  };
95
95
  }>, {}>;
96
- patches: {
96
+ patches: ({
97
97
  find: string;
98
98
  replacement: {
99
99
  match: RegExp;
100
100
  replace: string;
101
101
  };
102
102
  predicate: () => boolean;
103
- }[];
103
+ } | {
104
+ find: string;
105
+ replacement: {
106
+ match: RegExp;
107
+ replace: string;
108
+ }[];
109
+ predicate: () => boolean;
110
+ })[];
104
111
  } & Record<PropertyKey, any> & import("../../utils/types").Plugin;
105
112
  export default _default;
@@ -5,18 +5,12 @@ declare const _default: {
5
5
  name: string;
6
6
  id: bigint;
7
7
  }[];
8
- patches: ({
9
- find: string;
10
- replacement: {
11
- match: RegExp;
12
- replace: string;
13
- };
14
- } | {
8
+ patches: {
15
9
  find: string;
16
10
  replacement: {
17
11
  match: RegExp;
18
12
  replace: string;
19
13
  }[];
20
- })[];
14
+ }[];
21
15
  } & Record<PropertyKey, any> & import("../../utils/types").Plugin;
22
16
  export default _default;
@@ -1,4 +1,3 @@
1
- import { SelectOption } from "@plexcord/discord-types";
2
1
  import { OptionType } from "../../utils/types";
3
2
  declare const _default: {
4
3
  name: string;
@@ -22,6 +21,27 @@ declare const _default: {
22
21
  default: true;
23
22
  })[];
24
23
  };
24
+ enableScreenshotKeybind: {
25
+ label: () => string;
26
+ description: () => string;
27
+ type: OptionType.BOOLEAN;
28
+ default: true;
29
+ restartNeeded: true;
30
+ };
31
+ enableVoiceOnlyClips: {
32
+ label: () => string;
33
+ description: () => string;
34
+ type: OptionType.BOOLEAN;
35
+ default: true;
36
+ restartNeeded: true;
37
+ };
38
+ enableAdvancedSignals: {
39
+ label: () => string;
40
+ description: () => string;
41
+ type: OptionType.BOOLEAN;
42
+ default: true;
43
+ restartNeeded: true;
44
+ };
25
45
  clipsLink: {
26
46
  label: () => string;
27
47
  type: OptionType.COMPONENT;
@@ -43,6 +63,27 @@ declare const _default: {
43
63
  default: true;
44
64
  })[];
45
65
  };
66
+ enableScreenshotKeybind: {
67
+ label: () => string;
68
+ description: () => string;
69
+ type: OptionType.BOOLEAN;
70
+ default: true;
71
+ restartNeeded: true;
72
+ };
73
+ enableVoiceOnlyClips: {
74
+ label: () => string;
75
+ description: () => string;
76
+ type: OptionType.BOOLEAN;
77
+ default: true;
78
+ restartNeeded: true;
79
+ };
80
+ enableAdvancedSignals: {
81
+ label: () => string;
82
+ description: () => string;
83
+ type: OptionType.BOOLEAN;
84
+ default: true;
85
+ restartNeeded: true;
86
+ };
46
87
  clipsLink: {
47
88
  label: () => string;
48
89
  type: OptionType.COMPONENT;
@@ -50,21 +91,15 @@ declare const _default: {
50
91
  component: () => import("react").JSX.Element;
51
92
  };
52
93
  }>, {}>;
53
- patches: ({
54
- find: string;
55
- replacement: {
56
- match: RegExp;
57
- replace: string;
58
- }[];
59
- } | {
94
+ patches: {
60
95
  find: string;
61
96
  replacement: {
62
97
  match: RegExp;
63
98
  replace: string;
64
99
  };
65
- })[];
66
- patchTimeslots(timeslots: SelectOption[]): SelectOption[];
67
- patchFramerates(framerates: SelectOption[]): SelectOption[];
100
+ }[];
101
+ patchTimeslots(timeslots: any): any[];
102
+ patchFramerates(framerates: any): any[];
68
103
  getApplicationId(activityName: string): string | null | undefined;
69
104
  } & Record<PropertyKey, any> & import("../../utils/types").Plugin;
70
105
  export default _default;
@@ -31,6 +31,13 @@ declare const _default: {
31
31
  match: RegExp;
32
32
  replace: string;
33
33
  }[];
34
+ } | {
35
+ find: string;
36
+ replacement: {
37
+ match: RegExp;
38
+ replace: (_: string, rest: string, avatarDecoration: string, hasPurchase: string) => string;
39
+ };
40
+ group?: undefined;
34
41
  })[];
35
42
  settings: import("../../utils/types").DefinedSettings<{
36
43
  changeDecoration: {
@@ -1,4 +1,4 @@
1
1
  export declare const cl: (...args: import("../../../utils/css").ClassNameFactoryArg[]) => string;
2
- export declare const DecorationModalStyles: any;
2
+ export declare const DecorationModalClasses: Record<"spinner" | "modal" | "modalPreview" | "modalCloseButton", string>;
3
3
  export declare const requireAvatarDecorationModal: () => Promise<boolean>;
4
4
  export declare const requireCreateStickerModal: () => Promise<boolean>;