@lumiastream/lumia-types 3.3.7-alpha.2 → 3.3.7-alpha.5

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.
@@ -1686,6 +1686,18 @@ export declare enum SystemVariables {
1686
1686
  VTUBESTUDIO_CURRENT_BACKGROUND = "vtubestudio_current_background",
1687
1687
  /** Last VTS hotkey triggered. Use as {{vtubestudio_last_hotkey_triggered}}. */
1688
1688
  VTUBESTUDIO_LAST_HOTKEY_TRIGGERED = "vtubestudio_last_hotkey_triggered",
1689
+ /** Tiltify campaign fundraising goal (currency value). Use as {{tiltify_goal_amount}}. */
1690
+ TILTIFY_GOAL_AMOUNT = "tiltify_goal_amount",
1691
+ /** Tiltify campaign amount raised so far (currency value). Use as {{tiltify_total_raised}}. */
1692
+ TILTIFY_TOTAL_RAISED = "tiltify_total_raised",
1693
+ /** Extra Life campaign fundraising goal (USD). Use as {{extralife_goal_amount}}. */
1694
+ EXTRALIFE_GOAL_AMOUNT = "extralife_goal_amount",
1695
+ /** Extra Life campaign amount raised so far (USD). Use as {{extralife_total_raised}}. */
1696
+ EXTRALIFE_TOTAL_RAISED = "extralife_total_raised",
1697
+ /** DonorDrive campaign fundraising goal. Use as {{donordrive_goal_amount}}. */
1698
+ DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
1699
+ /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
1700
+ DONORDRIVE_TOTAL_RAISED = "donordrive_total_raised",
1689
1701
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
1690
1702
  HEARTRATE_BPM = "heartrate_bpm"
1691
1703
  }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConfigsFieldType = exports.CustomTabs = void 0;
4
+ exports.CustomTabs = {
5
+ HTML: "html",
6
+ JS: "js",
7
+ CSS: "css",
8
+ CONFIGS: "configs",
9
+ DATA: "data",
10
+ };
11
+ exports.ConfigsFieldType = {
12
+ INPUT: "input",
13
+ NUMBER: "number",
14
+ CHECKBOX: "checkbox",
15
+ DROPDOWN: "dropdown",
16
+ MULTISELECT: "multiselect",
17
+ COLORPICKER: "colorpicker",
18
+ FONTPICKER: "fontpicker",
19
+ SLIDER: "slider",
20
+ };
@@ -1686,6 +1686,18 @@ export declare enum SystemVariables {
1686
1686
  VTUBESTUDIO_CURRENT_BACKGROUND = "vtubestudio_current_background",
1687
1687
  /** Last VTS hotkey triggered. Use as {{vtubestudio_last_hotkey_triggered}}. */
1688
1688
  VTUBESTUDIO_LAST_HOTKEY_TRIGGERED = "vtubestudio_last_hotkey_triggered",
1689
+ /** Tiltify campaign fundraising goal (currency value). Use as {{tiltify_goal_amount}}. */
1690
+ TILTIFY_GOAL_AMOUNT = "tiltify_goal_amount",
1691
+ /** Tiltify campaign amount raised so far (currency value). Use as {{tiltify_total_raised}}. */
1692
+ TILTIFY_TOTAL_RAISED = "tiltify_total_raised",
1693
+ /** Extra Life campaign fundraising goal (USD). Use as {{extralife_goal_amount}}. */
1694
+ EXTRALIFE_GOAL_AMOUNT = "extralife_goal_amount",
1695
+ /** Extra Life campaign amount raised so far (USD). Use as {{extralife_total_raised}}. */
1696
+ EXTRALIFE_TOTAL_RAISED = "extralife_total_raised",
1697
+ /** DonorDrive campaign fundraising goal. Use as {{donordrive_goal_amount}}. */
1698
+ DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
1699
+ /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
1700
+ DONORDRIVE_TOTAL_RAISED = "donordrive_total_raised",
1689
1701
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
1690
1702
  HEARTRATE_BPM = "heartrate_bpm"
1691
1703
  }