@lumiastream/lumia-types 3.3.7-alpha.3 → 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
  }
@@ -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
  }
@@ -858,6 +858,23 @@ export var SystemVariables;
858
858
  SystemVariables["VTUBESTUDIO_CURRENT_BACKGROUND"] = "vtubestudio_current_background";
859
859
  /** Last VTS hotkey triggered. Use as {{vtubestudio_last_hotkey_triggered}}. */
860
860
  SystemVariables["VTUBESTUDIO_LAST_HOTKEY_TRIGGERED"] = "vtubestudio_last_hotkey_triggered";
861
+ // ─────────────────────────────── Charity Campaigns ────────────────────────────
862
+ // Campaign totals from the polled-API charity integrations (Tiltify / Extra
863
+ // Life / DonorDrive). Written by their respective managers on every poll;
864
+ // goal_amount mirrors the campaign target the streamer set on the platform
865
+ // and total_raised mirrors the running raised total. Reset to 0 on Stop.
866
+ /** Tiltify campaign fundraising goal (currency value). Use as {{tiltify_goal_amount}}. */
867
+ SystemVariables["TILTIFY_GOAL_AMOUNT"] = "tiltify_goal_amount";
868
+ /** Tiltify campaign amount raised so far (currency value). Use as {{tiltify_total_raised}}. */
869
+ SystemVariables["TILTIFY_TOTAL_RAISED"] = "tiltify_total_raised";
870
+ /** Extra Life campaign fundraising goal (USD). Use as {{extralife_goal_amount}}. */
871
+ SystemVariables["EXTRALIFE_GOAL_AMOUNT"] = "extralife_goal_amount";
872
+ /** Extra Life campaign amount raised so far (USD). Use as {{extralife_total_raised}}. */
873
+ SystemVariables["EXTRALIFE_TOTAL_RAISED"] = "extralife_total_raised";
874
+ /** DonorDrive campaign fundraising goal. Use as {{donordrive_goal_amount}}. */
875
+ SystemVariables["DONORDRIVE_GOAL_AMOUNT"] = "donordrive_goal_amount";
876
+ /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
877
+ SystemVariables["DONORDRIVE_TOTAL_RAISED"] = "donordrive_total_raised";
861
878
  // ────────────────────────────────── Sensors ────────────────────────────────────
862
879
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
863
880
  SystemVariables["HEARTRATE_BPM"] = "heartrate_bpm";
@@ -1612,11 +1629,13 @@ export const AllVariables = {
1612
1629
  },
1613
1630
  },
1614
1631
  donordrive: {
1632
+ variables: ['donordrive_goal_amount', 'donordrive_total_raised'],
1615
1633
  alerts: {
1616
1634
  donation: ['username', 'currency', 'amount'],
1617
1635
  },
1618
1636
  },
1619
1637
  extralife: {
1638
+ variables: ['extralife_goal_amount', 'extralife_total_raised'],
1620
1639
  alerts: {
1621
1640
  donation: ['username', 'currency', 'amount'],
1622
1641
  },
@@ -2270,6 +2289,7 @@ export const AllVariables = {
2270
2289
  },
2271
2290
  },
2272
2291
  tiltify: {
2292
+ variables: ['tiltify_goal_amount', 'tiltify_total_raised'],
2273
2293
  alerts: {
2274
2294
  campaignDonation: ['username', 'currency', 'amount'],
2275
2295
  },
@@ -840,6 +840,18 @@ export declare enum SystemVariables {
840
840
  VTUBESTUDIO_CURRENT_BACKGROUND = "vtubestudio_current_background",
841
841
  /** Last VTS hotkey triggered. Use as {{vtubestudio_last_hotkey_triggered}}. */
842
842
  VTUBESTUDIO_LAST_HOTKEY_TRIGGERED = "vtubestudio_last_hotkey_triggered",
843
+ /** Tiltify campaign fundraising goal (currency value). Use as {{tiltify_goal_amount}}. */
844
+ TILTIFY_GOAL_AMOUNT = "tiltify_goal_amount",
845
+ /** Tiltify campaign amount raised so far (currency value). Use as {{tiltify_total_raised}}. */
846
+ TILTIFY_TOTAL_RAISED = "tiltify_total_raised",
847
+ /** Extra Life campaign fundraising goal (USD). Use as {{extralife_goal_amount}}. */
848
+ EXTRALIFE_GOAL_AMOUNT = "extralife_goal_amount",
849
+ /** Extra Life campaign amount raised so far (USD). Use as {{extralife_total_raised}}. */
850
+ EXTRALIFE_TOTAL_RAISED = "extralife_total_raised",
851
+ /** DonorDrive campaign fundraising goal. Use as {{donordrive_goal_amount}}. */
852
+ DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
853
+ /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
854
+ DONORDRIVE_TOTAL_RAISED = "donordrive_total_raised",
843
855
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
844
856
  HEARTRATE_BPM = "heartrate_bpm"
845
857
  }
@@ -904,11 +916,13 @@ export declare const AllVariables: {
904
916
  };
905
917
  };
906
918
  donordrive: {
919
+ variables: string[];
907
920
  alerts: {
908
921
  donation: string[];
909
922
  };
910
923
  };
911
924
  extralife: {
925
+ variables: string[];
912
926
  alerts: {
913
927
  donation: string[];
914
928
  };
@@ -1283,6 +1297,7 @@ export declare const AllVariables: {
1283
1297
  };
1284
1298
  };
1285
1299
  tiltify: {
1300
+ variables: string[];
1286
1301
  alerts: {
1287
1302
  campaignDonation: string[];
1288
1303
  };
@@ -863,6 +863,23 @@ var SystemVariables;
863
863
  SystemVariables["VTUBESTUDIO_CURRENT_BACKGROUND"] = "vtubestudio_current_background";
864
864
  /** Last VTS hotkey triggered. Use as {{vtubestudio_last_hotkey_triggered}}. */
865
865
  SystemVariables["VTUBESTUDIO_LAST_HOTKEY_TRIGGERED"] = "vtubestudio_last_hotkey_triggered";
866
+ // ─────────────────────────────── Charity Campaigns ────────────────────────────
867
+ // Campaign totals from the polled-API charity integrations (Tiltify / Extra
868
+ // Life / DonorDrive). Written by their respective managers on every poll;
869
+ // goal_amount mirrors the campaign target the streamer set on the platform
870
+ // and total_raised mirrors the running raised total. Reset to 0 on Stop.
871
+ /** Tiltify campaign fundraising goal (currency value). Use as {{tiltify_goal_amount}}. */
872
+ SystemVariables["TILTIFY_GOAL_AMOUNT"] = "tiltify_goal_amount";
873
+ /** Tiltify campaign amount raised so far (currency value). Use as {{tiltify_total_raised}}. */
874
+ SystemVariables["TILTIFY_TOTAL_RAISED"] = "tiltify_total_raised";
875
+ /** Extra Life campaign fundraising goal (USD). Use as {{extralife_goal_amount}}. */
876
+ SystemVariables["EXTRALIFE_GOAL_AMOUNT"] = "extralife_goal_amount";
877
+ /** Extra Life campaign amount raised so far (USD). Use as {{extralife_total_raised}}. */
878
+ SystemVariables["EXTRALIFE_TOTAL_RAISED"] = "extralife_total_raised";
879
+ /** DonorDrive campaign fundraising goal. Use as {{donordrive_goal_amount}}. */
880
+ SystemVariables["DONORDRIVE_GOAL_AMOUNT"] = "donordrive_goal_amount";
881
+ /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
882
+ SystemVariables["DONORDRIVE_TOTAL_RAISED"] = "donordrive_total_raised";
866
883
  // ────────────────────────────────── Sensors ────────────────────────────────────
867
884
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
868
885
  SystemVariables["HEARTRATE_BPM"] = "heartrate_bpm";
@@ -1617,11 +1634,13 @@ exports.AllVariables = {
1617
1634
  },
1618
1635
  },
1619
1636
  donordrive: {
1637
+ variables: ['donordrive_goal_amount', 'donordrive_total_raised'],
1620
1638
  alerts: {
1621
1639
  donation: ['username', 'currency', 'amount'],
1622
1640
  },
1623
1641
  },
1624
1642
  extralife: {
1643
+ variables: ['extralife_goal_amount', 'extralife_total_raised'],
1625
1644
  alerts: {
1626
1645
  donation: ['username', 'currency', 'amount'],
1627
1646
  },
@@ -2275,6 +2294,7 @@ exports.AllVariables = {
2275
2294
  },
2276
2295
  },
2277
2296
  tiltify: {
2297
+ variables: ['tiltify_goal_amount', 'tiltify_total_raised'],
2278
2298
  alerts: {
2279
2299
  campaignDonation: ['username', 'currency', 'amount'],
2280
2300
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumiastream/lumia-types",
3
- "version": "3.3.7-alpha.3",
3
+ "version": "3.3.7-alpha.5",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/esm/index.js",