@lumiastream/lumia-types 3.6.0 → 3.6.2

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.
@@ -75,6 +75,10 @@ export var SystemVariables;
75
75
  SystemVariables["AI_PROMPT"] = "ai_prompt";
76
76
  /** Current weather for a location via wttr.in. Returns a one-line summary like */
77
77
  SystemVariables["WEATHER"] = "weather";
78
+ /** Save a value to local storage (persists across restarts, kept out of the variables list) and return it. Example: {{save_local=highscore,100}}. Use as {{save_local}}. */
79
+ SystemVariables["SAVE_LOCAL"] = "save_local";
80
+ /** Load a value saved with save_local; optional fallback when the key is unset. Example: {{load_local=highscore}} or {{load_local=highscore,0}}. Use as {{load_local}}. */
81
+ SystemVariables["LOAD_LOCAL"] = "load_local";
78
82
  // ─────────────────────────────────── General Variables ───────────────────────
79
83
  /** Commands URL/page. Use in overlays as {{commands_url}}. */
80
84
  SystemVariables["COMMANDS_URL"] = "commands_url";
@@ -233,12 +237,16 @@ export var SystemVariables;
233
237
  SystemVariables["LAST_SUBSCRIBER"] = "last_subscriber";
234
238
  /** All-time top gifter (any platform). Use as {{alltime_top_gifter}}. */
235
239
  SystemVariables["ALLTIME_TOP_GIFTER"] = "alltime_top_gifter";
236
- /** Bits/cheers count this session. Use as {{session_bits_count}}. */
237
- SystemVariables["SESSION_BITS_COUNT"] = "session_bits_count";
238
- /** Bits/cheers count this week. Use as {{week_bits_count}}. */
239
- SystemVariables["WEEK_BITS_COUNT"] = "week_bits_count";
240
- /** Bits/cheers count this month. Use as {{month_bits_count}}. */
241
- SystemVariables["MONTH_BITS_COUNT"] = "month_bits_count";
240
+ /** Most recent gifter (any platform), { name, amount }. Use as {{last_gifter}} / {{last_gifter.amount}}. */
241
+ SystemVariables["LAST_GIFTER"] = "last_gifter";
242
+ /** Most recent gift recipient (any platform). Use as {{last_gifted}}. */
243
+ SystemVariables["LAST_GIFTED"] = "last_gifted";
244
+ /** Cheers (bits/kicks) this session across all platforms. Use as {{session_cheers_count}}. */
245
+ SystemVariables["SESSION_CHEERS_COUNT"] = "session_cheers_count";
246
+ /** Cheers this week across all platforms. Use as {{week_cheers_count}}. */
247
+ SystemVariables["WEEK_CHEERS_COUNT"] = "week_cheers_count";
248
+ /** Cheers this month across all platforms. Use as {{month_cheers_count}}. */
249
+ SystemVariables["MONTH_CHEERS_COUNT"] = "month_cheers_count";
242
250
  /** Top cheerer (by total bits) this session. Use as {{session_top_cheerer}}. */
243
251
  SystemVariables["SESSION_TOP_CHEERER"] = "session_top_cheerer";
244
252
  /** Amount for SESSION_TOP_CHEERER. Use as {{session_top_cheerer_amount}}. */
@@ -259,6 +267,8 @@ export var SystemVariables;
259
267
  SystemVariables["SESSION_TOP_CHEER"] = "session_top_cheer";
260
268
  /** Amount for SESSION_TOP_CHEER. Use as {{session_top_cheer_amount}}. */
261
269
  SystemVariables["SESSION_TOP_CHEER_AMOUNT"] = "session_top_cheer_amount";
270
+ /** Most recent cheer (bits/kicks, any platform), { name, amount }. Use as {{last_cheer}} / {{last_cheer.amount}}. */
271
+ SystemVariables["LAST_CHEER"] = "last_cheer";
262
272
  /** Most recent raider/host (any platform). Use as {{last_raider}}. */
263
273
  SystemVariables["LAST_RAIDER"] = "last_raider";
264
274
  /** Viewer count for LAST_RAIDER. Use as {{last_raid_amount}}. */
@@ -975,6 +985,179 @@ export var SystemVariables;
975
985
  SystemVariables["DONORDRIVE_GOAL_AMOUNT"] = "donordrive_goal_amount";
976
986
  /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
977
987
  SystemVariables["DONORDRIVE_TOTAL_RAISED"] = "donordrive_total_raised";
988
+ // ────────────────────────────────── Twitch channel points ─────────────────────
989
+ /** (Twitch) Most recent channel-points redeemer name. Use as {{twitch_last_channel_points_redeemer}}. */
990
+ SystemVariables["TWITCH_LAST_CHANNEL_POINTS_REDEEMER"] = "twitch_last_channel_points_redeemer";
991
+ /** Cost for TWITCH_LAST_CHANNEL_POINTS_REDEEMER. Use as {{twitch_last_channel_points_amount}}. */
992
+ SystemVariables["TWITCH_LAST_CHANNEL_POINTS_AMOUNT"] = "twitch_last_channel_points_amount";
993
+ // ────────────────────────────────── Goals (cross-platform) ─────────────────────
994
+ /** Follower goal target. Use as {{follower_goal}}. */
995
+ SystemVariables["FOLLOWER_GOAL"] = "follower_goal";
996
+ /** Subscriber goal target. Use as {{subscriber_goal}}. */
997
+ SystemVariables["SUBSCRIBER_GOAL"] = "subscriber_goal";
998
+ /** Cheer/bits goal target. Use as {{cheer_goal}}. */
999
+ SystemVariables["CHEER_GOAL"] = "cheer_goal";
1000
+ /** Tip/donation goal target. Use as {{tip_goal}}. */
1001
+ SystemVariables["TIP_GOAL"] = "tip_goal";
1002
+ /** Superchat goal target. Use as {{superchat_goal}}. */
1003
+ SystemVariables["SUPERCHAT_GOAL"] = "superchat_goal";
1004
+ /** Merch order count goal. Use as {{merch_goal_orders}}. */
1005
+ SystemVariables["MERCH_GOAL_ORDERS"] = "merch_goal_orders";
1006
+ /** Merch item count goal. Use as {{merch_goal_items}}. */
1007
+ SystemVariables["MERCH_GOAL_ITEMS"] = "merch_goal_items";
1008
+ /** Merch revenue goal. Use as {{merch_goal_total}}. */
1009
+ SystemVariables["MERCH_GOAL_TOTAL"] = "merch_goal_total";
1010
+ // ────────────────────────────────── Tip cumulative top-tippers (cross-platform) ─
1011
+ /** Top tipper this session (cumulative giver). Use as {{session_top_tipper}}. */
1012
+ SystemVariables["SESSION_TOP_TIPPER"] = "session_top_tipper";
1013
+ /** Amount for SESSION_TOP_TIPPER. Use as {{session_top_tipper_amount}}. */
1014
+ SystemVariables["SESSION_TOP_TIPPER_AMOUNT"] = "session_top_tipper_amount";
1015
+ /** Top tipper this week (cumulative giver). Use as {{week_top_tipper}}. */
1016
+ SystemVariables["WEEK_TOP_TIPPER"] = "week_top_tipper";
1017
+ /** Amount for WEEK_TOP_TIPPER. Use as {{week_top_tipper_amount}}. */
1018
+ SystemVariables["WEEK_TOP_TIPPER_AMOUNT"] = "week_top_tipper_amount";
1019
+ /** Top tipper this month (cumulative giver). Use as {{month_top_tipper}}. */
1020
+ SystemVariables["MONTH_TOP_TIPPER"] = "month_top_tipper";
1021
+ /** Amount for MONTH_TOP_TIPPER. Use as {{month_top_tipper_amount}}. */
1022
+ SystemVariables["MONTH_TOP_TIPPER_AMOUNT"] = "month_top_tipper_amount";
1023
+ /** All-time top tipper (cumulative giver). Use as {{alltime_top_tipper}}. */
1024
+ SystemVariables["ALLTIME_TOP_TIPPER"] = "alltime_top_tipper";
1025
+ /** Amount for ALLTIME_TOP_TIPPER. Use as {{alltime_top_tipper_amount}}. */
1026
+ SystemVariables["ALLTIME_TOP_TIPPER_AMOUNT"] = "alltime_top_tipper_amount";
1027
+ // ────────────────────────────────── Charity campaigns (cross-platform) ─────────
1028
+ /** Latest charity-campaign donor name. Use as {{last_charity_donator}}. */
1029
+ SystemVariables["LAST_CHARITY_DONATOR"] = "last_charity_donator";
1030
+ /** Amount for LAST_CHARITY_DONATOR. Use as {{last_charity_donation_amount}}. */
1031
+ SystemVariables["LAST_CHARITY_DONATION_AMOUNT"] = "last_charity_donation_amount";
1032
+ /** Largest single charity donation this session. Use as {{session_top_charity_donation}}. */
1033
+ SystemVariables["SESSION_TOP_CHARITY_DONATION"] = "session_top_charity_donation";
1034
+ /** Amount for SESSION_TOP_CHARITY_DONATION. Use as {{session_top_charity_donation_amount}}. */
1035
+ SystemVariables["SESSION_TOP_CHARITY_DONATION_AMOUNT"] = "session_top_charity_donation_amount";
1036
+ /** Largest single charity donation this week. Use as {{week_top_charity_donation}}. */
1037
+ SystemVariables["WEEK_TOP_CHARITY_DONATION"] = "week_top_charity_donation";
1038
+ /** Amount for WEEK_TOP_CHARITY_DONATION. Use as {{week_top_charity_donation_amount}}. */
1039
+ SystemVariables["WEEK_TOP_CHARITY_DONATION_AMOUNT"] = "week_top_charity_donation_amount";
1040
+ /** Largest single charity donation this month. Use as {{month_top_charity_donation}}. */
1041
+ SystemVariables["MONTH_TOP_CHARITY_DONATION"] = "month_top_charity_donation";
1042
+ /** Amount for MONTH_TOP_CHARITY_DONATION. Use as {{month_top_charity_donation_amount}}. */
1043
+ SystemVariables["MONTH_TOP_CHARITY_DONATION_AMOUNT"] = "month_top_charity_donation_amount";
1044
+ /** Largest single charity donation all-time. Use as {{alltime_top_charity_donation}}. */
1045
+ SystemVariables["ALLTIME_TOP_CHARITY_DONATION"] = "alltime_top_charity_donation";
1046
+ /** Amount for ALLTIME_TOP_CHARITY_DONATION. Use as {{alltime_top_charity_donation_amount}}. */
1047
+ SystemVariables["ALLTIME_TOP_CHARITY_DONATION_AMOUNT"] = "alltime_top_charity_donation_amount";
1048
+ /** Top charity donor this session (cumulative giver). Use as {{session_top_charity_donator}}. */
1049
+ SystemVariables["SESSION_TOP_CHARITY_DONATOR"] = "session_top_charity_donator";
1050
+ /** Amount for SESSION_TOP_CHARITY_DONATOR. Use as {{session_top_charity_donator_amount}}. */
1051
+ SystemVariables["SESSION_TOP_CHARITY_DONATOR_AMOUNT"] = "session_top_charity_donator_amount";
1052
+ /** Top charity donor this week (cumulative giver). Use as {{week_top_charity_donator}}. */
1053
+ SystemVariables["WEEK_TOP_CHARITY_DONATOR"] = "week_top_charity_donator";
1054
+ /** Amount for WEEK_TOP_CHARITY_DONATOR. Use as {{week_top_charity_donator_amount}}. */
1055
+ SystemVariables["WEEK_TOP_CHARITY_DONATOR_AMOUNT"] = "week_top_charity_donator_amount";
1056
+ /** Top charity donor this month (cumulative giver). Use as {{month_top_charity_donator}}. */
1057
+ SystemVariables["MONTH_TOP_CHARITY_DONATOR"] = "month_top_charity_donator";
1058
+ /** Amount for MONTH_TOP_CHARITY_DONATOR. Use as {{month_top_charity_donator_amount}}. */
1059
+ SystemVariables["MONTH_TOP_CHARITY_DONATOR_AMOUNT"] = "month_top_charity_donator_amount";
1060
+ /** All-time top charity donor (cumulative giver). Use as {{alltime_top_charity_donator}}. */
1061
+ SystemVariables["ALLTIME_TOP_CHARITY_DONATOR"] = "alltime_top_charity_donator";
1062
+ /** Amount for ALLTIME_TOP_CHARITY_DONATOR. Use as {{alltime_top_charity_donator_amount}}. */
1063
+ SystemVariables["ALLTIME_TOP_CHARITY_DONATOR_AMOUNT"] = "alltime_top_charity_donator_amount";
1064
+ // ────────────────────────────────── Cheer period tops (single biggest cheer) ──
1065
+ /** Largest single cheer this week. Use as {{week_top_cheer}}. */
1066
+ SystemVariables["WEEK_TOP_CHEER"] = "week_top_cheer";
1067
+ /** Amount for WEEK_TOP_CHEER. Use as {{week_top_cheer_amount}}. */
1068
+ SystemVariables["WEEK_TOP_CHEER_AMOUNT"] = "week_top_cheer_amount";
1069
+ /** Largest single cheer this month. Use as {{month_top_cheer}}. */
1070
+ SystemVariables["MONTH_TOP_CHEER"] = "month_top_cheer";
1071
+ /** Amount for MONTH_TOP_CHEER. Use as {{month_top_cheer_amount}}. */
1072
+ SystemVariables["MONTH_TOP_CHEER_AMOUNT"] = "month_top_cheer_amount";
1073
+ /** Largest single cheer all-time. Use as {{alltime_top_cheer}}. */
1074
+ SystemVariables["ALLTIME_TOP_CHEER"] = "alltime_top_cheer";
1075
+ /** Amount for ALLTIME_TOP_CHEER. Use as {{alltime_top_cheer_amount}}. */
1076
+ SystemVariables["ALLTIME_TOP_CHEER_AMOUNT"] = "alltime_top_cheer_amount";
1077
+ /** (Twitch) Largest single cheer this week. Use as {{twitch_week_top_cheer}}. */
1078
+ SystemVariables["TWITCH_WEEK_TOP_CHEER"] = "twitch_week_top_cheer";
1079
+ /** Amount for TWITCH_WEEK_TOP_CHEER. Use as {{twitch_week_top_cheer_amount}}. */
1080
+ SystemVariables["TWITCH_WEEK_TOP_CHEER_AMOUNT"] = "twitch_week_top_cheer_amount";
1081
+ /** (Twitch) Largest single cheer this month. Use as {{twitch_month_top_cheer}}. */
1082
+ SystemVariables["TWITCH_MONTH_TOP_CHEER"] = "twitch_month_top_cheer";
1083
+ /** Amount for TWITCH_MONTH_TOP_CHEER. Use as {{twitch_month_top_cheer_amount}}. */
1084
+ SystemVariables["TWITCH_MONTH_TOP_CHEER_AMOUNT"] = "twitch_month_top_cheer_amount";
1085
+ /** (Twitch) Largest single cheer all-time. Use as {{twitch_alltime_top_cheer}}. */
1086
+ SystemVariables["TWITCH_ALLTIME_TOP_CHEER"] = "twitch_alltime_top_cheer";
1087
+ /** Amount for TWITCH_ALLTIME_TOP_CHEER. Use as {{twitch_alltime_top_cheer_amount}}. */
1088
+ SystemVariables["TWITCH_ALLTIME_TOP_CHEER_AMOUNT"] = "twitch_alltime_top_cheer_amount";
1089
+ // ────────────────────────────────── YouTube superchat aggregations ─────────────
1090
+ /** (YouTube) Running superchat amount this session. Use as {{youtube_session_superchat_amount}}. */
1091
+ SystemVariables["YOUTUBE_SESSION_SUPERCHAT_AMOUNT"] = "youtube_session_superchat_amount";
1092
+ /** (YouTube) Running superchat amount this week. Use as {{youtube_week_superchat_amount}}. */
1093
+ SystemVariables["YOUTUBE_WEEK_SUPERCHAT_AMOUNT"] = "youtube_week_superchat_amount";
1094
+ /** (YouTube) Running superchat amount this month. Use as {{youtube_month_superchat_amount}}. */
1095
+ SystemVariables["YOUTUBE_MONTH_SUPERCHAT_AMOUNT"] = "youtube_month_superchat_amount";
1096
+ /** (YouTube) Running superchat amount all-time. Use as {{youtube_total_superchat_amount}}. */
1097
+ SystemVariables["YOUTUBE_TOTAL_SUPERCHAT_AMOUNT"] = "youtube_total_superchat_amount";
1098
+ /** (YouTube) Largest single superchat this session. Use as {{youtube_session_top_superchat}}. */
1099
+ SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHAT"] = "youtube_session_top_superchat";
1100
+ /** Amount for YOUTUBE_SESSION_TOP_SUPERCHAT. Use as {{youtube_session_top_superchat_amount}}. */
1101
+ SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHAT_AMOUNT"] = "youtube_session_top_superchat_amount";
1102
+ /** (YouTube) Largest single superchat this week. Use as {{youtube_week_top_superchat}}. */
1103
+ SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHAT"] = "youtube_week_top_superchat";
1104
+ /** Amount for YOUTUBE_WEEK_TOP_SUPERCHAT. Use as {{youtube_week_top_superchat_amount}}. */
1105
+ SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHAT_AMOUNT"] = "youtube_week_top_superchat_amount";
1106
+ /** (YouTube) Largest single superchat this month. Use as {{youtube_month_top_superchat}}. */
1107
+ SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHAT"] = "youtube_month_top_superchat";
1108
+ /** Amount for YOUTUBE_MONTH_TOP_SUPERCHAT. Use as {{youtube_month_top_superchat_amount}}. */
1109
+ SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHAT_AMOUNT"] = "youtube_month_top_superchat_amount";
1110
+ /** (YouTube) Largest single superchat all-time. Use as {{youtube_alltime_top_superchat}}. */
1111
+ SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHAT"] = "youtube_alltime_top_superchat";
1112
+ /** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHAT. Use as {{youtube_alltime_top_superchat_amount}}. */
1113
+ SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHAT_AMOUNT"] = "youtube_alltime_top_superchat_amount";
1114
+ /** (YouTube) Top superchatter this session (cumulative giver). Use as {{youtube_session_top_superchatter}}. */
1115
+ SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHATTER"] = "youtube_session_top_superchatter";
1116
+ /** Amount for YOUTUBE_SESSION_TOP_SUPERCHATTER. Use as {{youtube_session_top_superchatter_amount}}. */
1117
+ SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHATTER_AMOUNT"] = "youtube_session_top_superchatter_amount";
1118
+ /** (YouTube) Top superchatter this week (cumulative giver). Use as {{youtube_week_top_superchatter}}. */
1119
+ SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHATTER"] = "youtube_week_top_superchatter";
1120
+ /** Amount for YOUTUBE_WEEK_TOP_SUPERCHATTER. Use as {{youtube_week_top_superchatter_amount}}. */
1121
+ SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHATTER_AMOUNT"] = "youtube_week_top_superchatter_amount";
1122
+ /** (YouTube) Top superchatter this month (cumulative giver). Use as {{youtube_month_top_superchatter}}. */
1123
+ SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHATTER"] = "youtube_month_top_superchatter";
1124
+ /** Amount for YOUTUBE_MONTH_TOP_SUPERCHATTER. Use as {{youtube_month_top_superchatter_amount}}. */
1125
+ SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHATTER_AMOUNT"] = "youtube_month_top_superchatter_amount";
1126
+ /** (YouTube) All-time top superchatter (cumulative giver). Use as {{youtube_alltime_top_superchatter}}. */
1127
+ SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHATTER"] = "youtube_alltime_top_superchatter";
1128
+ /** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHATTER. Use as {{youtube_alltime_top_superchatter_amount}}. */
1129
+ SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHATTER_AMOUNT"] = "youtube_alltime_top_superchatter_amount";
1130
+ // ────────────────────────────────── Recent event lists (cross-platform) ────────
1131
+ /** Comma-separated list of recent followers. Use as {{recent_followers}}. */
1132
+ SystemVariables["RECENT_FOLLOWERS"] = "recent_followers";
1133
+ /** Comma-separated list of recent subscribers. Use as {{recent_subscribers}}. */
1134
+ SystemVariables["RECENT_SUBSCRIBERS"] = "recent_subscribers";
1135
+ /** Comma-separated list of recent hosts. Use as {{recent_hosts}}. */
1136
+ SystemVariables["RECENT_HOSTS"] = "recent_hosts";
1137
+ /** Comma-separated list of recent raiders. Use as {{recent_raiders}}. */
1138
+ SystemVariables["RECENT_RAIDERS"] = "recent_raiders";
1139
+ /** Parallel comma-separated viewer counts for RECENT_RAIDERS. Use as {{recent_raiders_amount}}. */
1140
+ SystemVariables["RECENT_RAIDERS_AMOUNT"] = "recent_raiders_amount";
1141
+ /** Comma-separated list of recent cheerers. Use as {{recent_cheers}}. */
1142
+ SystemVariables["RECENT_CHEERS"] = "recent_cheers";
1143
+ /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
1144
+ SystemVariables["RECENT_CHEERS_AMOUNT"] = "recent_cheers_amount";
1145
+ /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
1146
+ SystemVariables["RECENT_CHEER_PURCHASES"] = "recent_cheer_purchases";
1147
+ /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
1148
+ SystemVariables["RECENT_CHEER_PURCHASES_AMOUNT"] = "recent_cheer_purchases_amount";
1149
+ /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
1150
+ SystemVariables["RECENT_TIPS"] = "recent_tips";
1151
+ /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
1152
+ SystemVariables["RECENT_TIPS_AMOUNT"] = "recent_tips_amount";
1153
+ /** Comma-separated list of recent superchatters. Use as {{recent_superchats}}. */
1154
+ SystemVariables["RECENT_SUPERCHATS"] = "recent_superchats";
1155
+ /** Parallel comma-separated superchat amounts for RECENT_SUPERCHATS. Use as {{recent_superchats_amount}}. */
1156
+ SystemVariables["RECENT_SUPERCHATS_AMOUNT"] = "recent_superchats_amount";
1157
+ /** Comma-separated list of recent charity donors. Use as {{recent_charity_donations}}. */
1158
+ SystemVariables["RECENT_CHARITY_DONATIONS"] = "recent_charity_donations";
1159
+ /** Parallel comma-separated donation amounts for RECENT_CHARITY_DONATIONS. Use as {{recent_charity_donations_amount}}. */
1160
+ SystemVariables["RECENT_CHARITY_DONATIONS_AMOUNT"] = "recent_charity_donations_amount";
978
1161
  // ────────────────────────────────── Sensors ────────────────────────────────────
979
1162
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
980
1163
  SystemVariables["HEARTRATE_BPM"] = "heartrate_bpm";
@@ -1261,6 +1444,61 @@ export const AllVariables = {
1261
1444
  'now_playing_beatport_id',
1262
1445
  'now_playing_file_path',
1263
1446
  'heartrate_bpm',
1447
+ 'follower_goal',
1448
+ 'subscriber_goal',
1449
+ 'cheer_goal',
1450
+ 'tip_goal',
1451
+ 'superchat_goal',
1452
+ 'merch_goal_orders',
1453
+ 'merch_goal_items',
1454
+ 'merch_goal_total',
1455
+ 'session_top_tipper',
1456
+ 'session_top_tipper_amount',
1457
+ 'week_top_tipper',
1458
+ 'week_top_tipper_amount',
1459
+ 'month_top_tipper',
1460
+ 'month_top_tipper_amount',
1461
+ 'alltime_top_tipper',
1462
+ 'alltime_top_tipper_amount',
1463
+ 'last_charity_donator',
1464
+ 'last_charity_donation_amount',
1465
+ 'session_top_charity_donation',
1466
+ 'session_top_charity_donation_amount',
1467
+ 'week_top_charity_donation',
1468
+ 'week_top_charity_donation_amount',
1469
+ 'month_top_charity_donation',
1470
+ 'month_top_charity_donation_amount',
1471
+ 'alltime_top_charity_donation',
1472
+ 'alltime_top_charity_donation_amount',
1473
+ 'session_top_charity_donator',
1474
+ 'session_top_charity_donator_amount',
1475
+ 'week_top_charity_donator',
1476
+ 'week_top_charity_donator_amount',
1477
+ 'month_top_charity_donator',
1478
+ 'month_top_charity_donator_amount',
1479
+ 'alltime_top_charity_donator',
1480
+ 'alltime_top_charity_donator_amount',
1481
+ 'week_top_cheer',
1482
+ 'week_top_cheer_amount',
1483
+ 'month_top_cheer',
1484
+ 'month_top_cheer_amount',
1485
+ 'alltime_top_cheer',
1486
+ 'alltime_top_cheer_amount',
1487
+ 'recent_followers',
1488
+ 'recent_subscribers',
1489
+ 'recent_hosts',
1490
+ 'recent_raiders',
1491
+ 'recent_raiders_amount',
1492
+ 'recent_cheers',
1493
+ 'recent_cheers_amount',
1494
+ 'recent_cheer_purchases',
1495
+ 'recent_cheer_purchases_amount',
1496
+ 'recent_tips',
1497
+ 'recent_tips_amount',
1498
+ 'recent_superchats',
1499
+ 'recent_superchats_amount',
1500
+ 'recent_charity_donations',
1501
+ 'recent_charity_donations_amount',
1264
1502
  ],
1265
1503
  chat: {
1266
1504
  cooldowns: ['cooldown_time_remaining'],
@@ -2508,6 +2746,14 @@ export const AllVariables = {
2508
2746
  'twitch_hypetrain_top_contributor_amount',
2509
2747
  'twitch_alltime_top_cheerer',
2510
2748
  'twitch_alltime_top_cheerer_amount',
2749
+ 'twitch_week_top_cheer',
2750
+ 'twitch_week_top_cheer_amount',
2751
+ 'twitch_month_top_cheer',
2752
+ 'twitch_month_top_cheer_amount',
2753
+ 'twitch_alltime_top_cheer',
2754
+ 'twitch_alltime_top_cheer_amount',
2755
+ 'twitch_last_channel_points_redeemer',
2756
+ 'twitch_last_channel_points_amount',
2511
2757
  'top_cheerer_list',
2512
2758
  'top_cheerer_list_amount',
2513
2759
  'week_top_cheerer_list',
@@ -2764,6 +3010,26 @@ export const AllVariables = {
2764
3010
  'youtube_month_subscriber_count',
2765
3011
  'youtube_total_subscriber_count',
2766
3012
  'youtube_session_superchat_count',
3013
+ 'youtube_session_superchat_amount',
3014
+ 'youtube_week_superchat_amount',
3015
+ 'youtube_month_superchat_amount',
3016
+ 'youtube_total_superchat_amount',
3017
+ 'youtube_session_top_superchat',
3018
+ 'youtube_session_top_superchat_amount',
3019
+ 'youtube_week_top_superchat',
3020
+ 'youtube_week_top_superchat_amount',
3021
+ 'youtube_month_top_superchat',
3022
+ 'youtube_month_top_superchat_amount',
3023
+ 'youtube_alltime_top_superchat',
3024
+ 'youtube_alltime_top_superchat_amount',
3025
+ 'youtube_session_top_superchatter',
3026
+ 'youtube_session_top_superchatter_amount',
3027
+ 'youtube_week_top_superchatter',
3028
+ 'youtube_week_top_superchatter_amount',
3029
+ 'youtube_month_top_superchatter',
3030
+ 'youtube_month_top_superchatter_amount',
3031
+ 'youtube_alltime_top_superchatter',
3032
+ 'youtube_alltime_top_superchatter_amount',
2767
3033
  'youtube_last_superchatter',
2768
3034
  'youtube_session_superchatters',
2769
3035
  'youtube_session_supersticker_count',
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ export { LumiaStreamingSites, LumiaActivityCommandTypes, LumiaExternalActivityCo
2
2
  export { LumiaVariationConditions, LumiaVariationCurrency, VariationCurrencySymbol, LumiaRedemptionCurrency, LumiaRedemptionCurrencySymbol, LumiaAlertConfigs, LumiaDynamicCondition, type LumiaSelectionOption, } from './alert.types';
3
3
  export { ILumiaSendPack, ILumiaEvent, ILumiaEventChatCommandBody, ILumiaEventChatBody, ILumiaEventAlertBody, ILumiaEventStateBody, ILumiaLight, LumiaIntegrations, LumiaEventTypes, } from './event.types';
4
4
  export { LumiaEventListTypes, LumiaMapAlertTypeToEventListType, AlertsToFilter, PlatformsToFilter, LumiaEventListTypeColors, getEventListCategoryColor } from './eventlist.types';
5
- export { SystemVariables, ReservedVariables, AllVariables, getAcceptedVariableName, getAcceptedVariableNames, type LumiaAcceptedVariable, type LumiaAcceptedVariableDefinition, } from './variables.types';
5
+ export { SystemVariables, ReservedVariables, AllVariables, getAcceptedVariableName, getAcceptedVariableNames, type LumiaAcceptedVariable, type LumiaAcceptedVariableDefinition, type CountableVariableValue, type DonatorVariableValue, } from './variables.types';
6
6
  export { formatCondition } from './helpers';
7
7
  export { EMULATE_EXAMPLE_AVATAR_URL, getExampleAlertVariableValue, buildExampleAlertVariables, coerceNumericAlertFields, aliasContentImageFromLegacy, isRedundantInputField, syncLinkedVariableFields, type InputFieldLike, } from './emulate.helpers';
8
8
  export { KickKicksData } from './kick_kicks';
@@ -7,6 +7,14 @@ export interface LumiaAcceptedVariableDefinition {
7
7
  export type LumiaAcceptedVariable = string | LumiaAcceptedVariableDefinition;
8
8
  export declare const getAcceptedVariableName: (entry: LumiaAcceptedVariable) => string;
9
9
  export declare const getAcceptedVariableNames: (entries: LumiaAcceptedVariable[]) => string[];
10
+ export type CountableVariableValue = {
11
+ name: string;
12
+ amount: number;
13
+ };
14
+ export type DonatorVariableValue = CountableVariableValue & {
15
+ currency: string;
16
+ currencySymbol: string;
17
+ };
10
18
  export declare enum SystemVariables {
11
19
  /** Read from a local file. Example: {{read_file=C:\path\file.txt}}. Use in overlays as {{read_file}}. */
12
20
  READ_FILE = "read_file",
@@ -78,6 +86,10 @@ export declare enum SystemVariables {
78
86
  AI_PROMPT = "ai_prompt",
79
87
  /** Current weather for a location via wttr.in. Returns a one-line summary like */
80
88
  WEATHER = "weather",
89
+ /** Save a value to local storage (persists across restarts, kept out of the variables list) and return it. Example: {{save_local=highscore,100}}. Use as {{save_local}}. */
90
+ SAVE_LOCAL = "save_local",
91
+ /** Load a value saved with save_local; optional fallback when the key is unset. Example: {{load_local=highscore}} or {{load_local=highscore,0}}. Use as {{load_local}}. */
92
+ LOAD_LOCAL = "load_local",
81
93
  /** Commands URL/page. Use in overlays as {{commands_url}}. */
82
94
  COMMANDS_URL = "commands_url",
83
95
  /** Session start time (ISO). Use as {{session_start_date}}. */
@@ -227,12 +239,16 @@ export declare enum SystemVariables {
227
239
  LAST_SUBSCRIBER = "last_subscriber",
228
240
  /** All-time top gifter (any platform). Use as {{alltime_top_gifter}}. */
229
241
  ALLTIME_TOP_GIFTER = "alltime_top_gifter",
230
- /** Bits/cheers count this session. Use as {{session_bits_count}}. */
231
- SESSION_BITS_COUNT = "session_bits_count",
232
- /** Bits/cheers count this week. Use as {{week_bits_count}}. */
233
- WEEK_BITS_COUNT = "week_bits_count",
234
- /** Bits/cheers count this month. Use as {{month_bits_count}}. */
235
- MONTH_BITS_COUNT = "month_bits_count",
242
+ /** Most recent gifter (any platform), { name, amount }. Use as {{last_gifter}} / {{last_gifter.amount}}. */
243
+ LAST_GIFTER = "last_gifter",
244
+ /** Most recent gift recipient (any platform). Use as {{last_gifted}}. */
245
+ LAST_GIFTED = "last_gifted",
246
+ /** Cheers (bits/kicks) this session across all platforms. Use as {{session_cheers_count}}. */
247
+ SESSION_CHEERS_COUNT = "session_cheers_count",
248
+ /** Cheers this week across all platforms. Use as {{week_cheers_count}}. */
249
+ WEEK_CHEERS_COUNT = "week_cheers_count",
250
+ /** Cheers this month across all platforms. Use as {{month_cheers_count}}. */
251
+ MONTH_CHEERS_COUNT = "month_cheers_count",
236
252
  /** Top cheerer (by total bits) this session. Use as {{session_top_cheerer}}. */
237
253
  SESSION_TOP_CHEERER = "session_top_cheerer",
238
254
  /** Amount for SESSION_TOP_CHEERER. Use as {{session_top_cheerer_amount}}. */
@@ -253,6 +269,8 @@ export declare enum SystemVariables {
253
269
  SESSION_TOP_CHEER = "session_top_cheer",
254
270
  /** Amount for SESSION_TOP_CHEER. Use as {{session_top_cheer_amount}}. */
255
271
  SESSION_TOP_CHEER_AMOUNT = "session_top_cheer_amount",
272
+ /** Most recent cheer (bits/kicks, any platform), { name, amount }. Use as {{last_cheer}} / {{last_cheer.amount}}. */
273
+ LAST_CHEER = "last_cheer",
256
274
  /** Most recent raider/host (any platform). Use as {{last_raider}}. */
257
275
  LAST_RAIDER = "last_raider",
258
276
  /** Viewer count for LAST_RAIDER. Use as {{last_raid_amount}}. */
@@ -941,6 +959,172 @@ export declare enum SystemVariables {
941
959
  DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
942
960
  /** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
943
961
  DONORDRIVE_TOTAL_RAISED = "donordrive_total_raised",
962
+ /** (Twitch) Most recent channel-points redeemer name. Use as {{twitch_last_channel_points_redeemer}}. */
963
+ TWITCH_LAST_CHANNEL_POINTS_REDEEMER = "twitch_last_channel_points_redeemer",
964
+ /** Cost for TWITCH_LAST_CHANNEL_POINTS_REDEEMER. Use as {{twitch_last_channel_points_amount}}. */
965
+ TWITCH_LAST_CHANNEL_POINTS_AMOUNT = "twitch_last_channel_points_amount",
966
+ /** Follower goal target. Use as {{follower_goal}}. */
967
+ FOLLOWER_GOAL = "follower_goal",
968
+ /** Subscriber goal target. Use as {{subscriber_goal}}. */
969
+ SUBSCRIBER_GOAL = "subscriber_goal",
970
+ /** Cheer/bits goal target. Use as {{cheer_goal}}. */
971
+ CHEER_GOAL = "cheer_goal",
972
+ /** Tip/donation goal target. Use as {{tip_goal}}. */
973
+ TIP_GOAL = "tip_goal",
974
+ /** Superchat goal target. Use as {{superchat_goal}}. */
975
+ SUPERCHAT_GOAL = "superchat_goal",
976
+ /** Merch order count goal. Use as {{merch_goal_orders}}. */
977
+ MERCH_GOAL_ORDERS = "merch_goal_orders",
978
+ /** Merch item count goal. Use as {{merch_goal_items}}. */
979
+ MERCH_GOAL_ITEMS = "merch_goal_items",
980
+ /** Merch revenue goal. Use as {{merch_goal_total}}. */
981
+ MERCH_GOAL_TOTAL = "merch_goal_total",
982
+ /** Top tipper this session (cumulative giver). Use as {{session_top_tipper}}. */
983
+ SESSION_TOP_TIPPER = "session_top_tipper",
984
+ /** Amount for SESSION_TOP_TIPPER. Use as {{session_top_tipper_amount}}. */
985
+ SESSION_TOP_TIPPER_AMOUNT = "session_top_tipper_amount",
986
+ /** Top tipper this week (cumulative giver). Use as {{week_top_tipper}}. */
987
+ WEEK_TOP_TIPPER = "week_top_tipper",
988
+ /** Amount for WEEK_TOP_TIPPER. Use as {{week_top_tipper_amount}}. */
989
+ WEEK_TOP_TIPPER_AMOUNT = "week_top_tipper_amount",
990
+ /** Top tipper this month (cumulative giver). Use as {{month_top_tipper}}. */
991
+ MONTH_TOP_TIPPER = "month_top_tipper",
992
+ /** Amount for MONTH_TOP_TIPPER. Use as {{month_top_tipper_amount}}. */
993
+ MONTH_TOP_TIPPER_AMOUNT = "month_top_tipper_amount",
994
+ /** All-time top tipper (cumulative giver). Use as {{alltime_top_tipper}}. */
995
+ ALLTIME_TOP_TIPPER = "alltime_top_tipper",
996
+ /** Amount for ALLTIME_TOP_TIPPER. Use as {{alltime_top_tipper_amount}}. */
997
+ ALLTIME_TOP_TIPPER_AMOUNT = "alltime_top_tipper_amount",
998
+ /** Latest charity-campaign donor name. Use as {{last_charity_donator}}. */
999
+ LAST_CHARITY_DONATOR = "last_charity_donator",
1000
+ /** Amount for LAST_CHARITY_DONATOR. Use as {{last_charity_donation_amount}}. */
1001
+ LAST_CHARITY_DONATION_AMOUNT = "last_charity_donation_amount",
1002
+ /** Largest single charity donation this session. Use as {{session_top_charity_donation}}. */
1003
+ SESSION_TOP_CHARITY_DONATION = "session_top_charity_donation",
1004
+ /** Amount for SESSION_TOP_CHARITY_DONATION. Use as {{session_top_charity_donation_amount}}. */
1005
+ SESSION_TOP_CHARITY_DONATION_AMOUNT = "session_top_charity_donation_amount",
1006
+ /** Largest single charity donation this week. Use as {{week_top_charity_donation}}. */
1007
+ WEEK_TOP_CHARITY_DONATION = "week_top_charity_donation",
1008
+ /** Amount for WEEK_TOP_CHARITY_DONATION. Use as {{week_top_charity_donation_amount}}. */
1009
+ WEEK_TOP_CHARITY_DONATION_AMOUNT = "week_top_charity_donation_amount",
1010
+ /** Largest single charity donation this month. Use as {{month_top_charity_donation}}. */
1011
+ MONTH_TOP_CHARITY_DONATION = "month_top_charity_donation",
1012
+ /** Amount for MONTH_TOP_CHARITY_DONATION. Use as {{month_top_charity_donation_amount}}. */
1013
+ MONTH_TOP_CHARITY_DONATION_AMOUNT = "month_top_charity_donation_amount",
1014
+ /** Largest single charity donation all-time. Use as {{alltime_top_charity_donation}}. */
1015
+ ALLTIME_TOP_CHARITY_DONATION = "alltime_top_charity_donation",
1016
+ /** Amount for ALLTIME_TOP_CHARITY_DONATION. Use as {{alltime_top_charity_donation_amount}}. */
1017
+ ALLTIME_TOP_CHARITY_DONATION_AMOUNT = "alltime_top_charity_donation_amount",
1018
+ /** Top charity donor this session (cumulative giver). Use as {{session_top_charity_donator}}. */
1019
+ SESSION_TOP_CHARITY_DONATOR = "session_top_charity_donator",
1020
+ /** Amount for SESSION_TOP_CHARITY_DONATOR. Use as {{session_top_charity_donator_amount}}. */
1021
+ SESSION_TOP_CHARITY_DONATOR_AMOUNT = "session_top_charity_donator_amount",
1022
+ /** Top charity donor this week (cumulative giver). Use as {{week_top_charity_donator}}. */
1023
+ WEEK_TOP_CHARITY_DONATOR = "week_top_charity_donator",
1024
+ /** Amount for WEEK_TOP_CHARITY_DONATOR. Use as {{week_top_charity_donator_amount}}. */
1025
+ WEEK_TOP_CHARITY_DONATOR_AMOUNT = "week_top_charity_donator_amount",
1026
+ /** Top charity donor this month (cumulative giver). Use as {{month_top_charity_donator}}. */
1027
+ MONTH_TOP_CHARITY_DONATOR = "month_top_charity_donator",
1028
+ /** Amount for MONTH_TOP_CHARITY_DONATOR. Use as {{month_top_charity_donator_amount}}. */
1029
+ MONTH_TOP_CHARITY_DONATOR_AMOUNT = "month_top_charity_donator_amount",
1030
+ /** All-time top charity donor (cumulative giver). Use as {{alltime_top_charity_donator}}. */
1031
+ ALLTIME_TOP_CHARITY_DONATOR = "alltime_top_charity_donator",
1032
+ /** Amount for ALLTIME_TOP_CHARITY_DONATOR. Use as {{alltime_top_charity_donator_amount}}. */
1033
+ ALLTIME_TOP_CHARITY_DONATOR_AMOUNT = "alltime_top_charity_donator_amount",
1034
+ /** Largest single cheer this week. Use as {{week_top_cheer}}. */
1035
+ WEEK_TOP_CHEER = "week_top_cheer",
1036
+ /** Amount for WEEK_TOP_CHEER. Use as {{week_top_cheer_amount}}. */
1037
+ WEEK_TOP_CHEER_AMOUNT = "week_top_cheer_amount",
1038
+ /** Largest single cheer this month. Use as {{month_top_cheer}}. */
1039
+ MONTH_TOP_CHEER = "month_top_cheer",
1040
+ /** Amount for MONTH_TOP_CHEER. Use as {{month_top_cheer_amount}}. */
1041
+ MONTH_TOP_CHEER_AMOUNT = "month_top_cheer_amount",
1042
+ /** Largest single cheer all-time. Use as {{alltime_top_cheer}}. */
1043
+ ALLTIME_TOP_CHEER = "alltime_top_cheer",
1044
+ /** Amount for ALLTIME_TOP_CHEER. Use as {{alltime_top_cheer_amount}}. */
1045
+ ALLTIME_TOP_CHEER_AMOUNT = "alltime_top_cheer_amount",
1046
+ /** (Twitch) Largest single cheer this week. Use as {{twitch_week_top_cheer}}. */
1047
+ TWITCH_WEEK_TOP_CHEER = "twitch_week_top_cheer",
1048
+ /** Amount for TWITCH_WEEK_TOP_CHEER. Use as {{twitch_week_top_cheer_amount}}. */
1049
+ TWITCH_WEEK_TOP_CHEER_AMOUNT = "twitch_week_top_cheer_amount",
1050
+ /** (Twitch) Largest single cheer this month. Use as {{twitch_month_top_cheer}}. */
1051
+ TWITCH_MONTH_TOP_CHEER = "twitch_month_top_cheer",
1052
+ /** Amount for TWITCH_MONTH_TOP_CHEER. Use as {{twitch_month_top_cheer_amount}}. */
1053
+ TWITCH_MONTH_TOP_CHEER_AMOUNT = "twitch_month_top_cheer_amount",
1054
+ /** (Twitch) Largest single cheer all-time. Use as {{twitch_alltime_top_cheer}}. */
1055
+ TWITCH_ALLTIME_TOP_CHEER = "twitch_alltime_top_cheer",
1056
+ /** Amount for TWITCH_ALLTIME_TOP_CHEER. Use as {{twitch_alltime_top_cheer_amount}}. */
1057
+ TWITCH_ALLTIME_TOP_CHEER_AMOUNT = "twitch_alltime_top_cheer_amount",
1058
+ /** (YouTube) Running superchat amount this session. Use as {{youtube_session_superchat_amount}}. */
1059
+ YOUTUBE_SESSION_SUPERCHAT_AMOUNT = "youtube_session_superchat_amount",
1060
+ /** (YouTube) Running superchat amount this week. Use as {{youtube_week_superchat_amount}}. */
1061
+ YOUTUBE_WEEK_SUPERCHAT_AMOUNT = "youtube_week_superchat_amount",
1062
+ /** (YouTube) Running superchat amount this month. Use as {{youtube_month_superchat_amount}}. */
1063
+ YOUTUBE_MONTH_SUPERCHAT_AMOUNT = "youtube_month_superchat_amount",
1064
+ /** (YouTube) Running superchat amount all-time. Use as {{youtube_total_superchat_amount}}. */
1065
+ YOUTUBE_TOTAL_SUPERCHAT_AMOUNT = "youtube_total_superchat_amount",
1066
+ /** (YouTube) Largest single superchat this session. Use as {{youtube_session_top_superchat}}. */
1067
+ YOUTUBE_SESSION_TOP_SUPERCHAT = "youtube_session_top_superchat",
1068
+ /** Amount for YOUTUBE_SESSION_TOP_SUPERCHAT. Use as {{youtube_session_top_superchat_amount}}. */
1069
+ YOUTUBE_SESSION_TOP_SUPERCHAT_AMOUNT = "youtube_session_top_superchat_amount",
1070
+ /** (YouTube) Largest single superchat this week. Use as {{youtube_week_top_superchat}}. */
1071
+ YOUTUBE_WEEK_TOP_SUPERCHAT = "youtube_week_top_superchat",
1072
+ /** Amount for YOUTUBE_WEEK_TOP_SUPERCHAT. Use as {{youtube_week_top_superchat_amount}}. */
1073
+ YOUTUBE_WEEK_TOP_SUPERCHAT_AMOUNT = "youtube_week_top_superchat_amount",
1074
+ /** (YouTube) Largest single superchat this month. Use as {{youtube_month_top_superchat}}. */
1075
+ YOUTUBE_MONTH_TOP_SUPERCHAT = "youtube_month_top_superchat",
1076
+ /** Amount for YOUTUBE_MONTH_TOP_SUPERCHAT. Use as {{youtube_month_top_superchat_amount}}. */
1077
+ YOUTUBE_MONTH_TOP_SUPERCHAT_AMOUNT = "youtube_month_top_superchat_amount",
1078
+ /** (YouTube) Largest single superchat all-time. Use as {{youtube_alltime_top_superchat}}. */
1079
+ YOUTUBE_ALLTIME_TOP_SUPERCHAT = "youtube_alltime_top_superchat",
1080
+ /** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHAT. Use as {{youtube_alltime_top_superchat_amount}}. */
1081
+ YOUTUBE_ALLTIME_TOP_SUPERCHAT_AMOUNT = "youtube_alltime_top_superchat_amount",
1082
+ /** (YouTube) Top superchatter this session (cumulative giver). Use as {{youtube_session_top_superchatter}}. */
1083
+ YOUTUBE_SESSION_TOP_SUPERCHATTER = "youtube_session_top_superchatter",
1084
+ /** Amount for YOUTUBE_SESSION_TOP_SUPERCHATTER. Use as {{youtube_session_top_superchatter_amount}}. */
1085
+ YOUTUBE_SESSION_TOP_SUPERCHATTER_AMOUNT = "youtube_session_top_superchatter_amount",
1086
+ /** (YouTube) Top superchatter this week (cumulative giver). Use as {{youtube_week_top_superchatter}}. */
1087
+ YOUTUBE_WEEK_TOP_SUPERCHATTER = "youtube_week_top_superchatter",
1088
+ /** Amount for YOUTUBE_WEEK_TOP_SUPERCHATTER. Use as {{youtube_week_top_superchatter_amount}}. */
1089
+ YOUTUBE_WEEK_TOP_SUPERCHATTER_AMOUNT = "youtube_week_top_superchatter_amount",
1090
+ /** (YouTube) Top superchatter this month (cumulative giver). Use as {{youtube_month_top_superchatter}}. */
1091
+ YOUTUBE_MONTH_TOP_SUPERCHATTER = "youtube_month_top_superchatter",
1092
+ /** Amount for YOUTUBE_MONTH_TOP_SUPERCHATTER. Use as {{youtube_month_top_superchatter_amount}}. */
1093
+ YOUTUBE_MONTH_TOP_SUPERCHATTER_AMOUNT = "youtube_month_top_superchatter_amount",
1094
+ /** (YouTube) All-time top superchatter (cumulative giver). Use as {{youtube_alltime_top_superchatter}}. */
1095
+ YOUTUBE_ALLTIME_TOP_SUPERCHATTER = "youtube_alltime_top_superchatter",
1096
+ /** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHATTER. Use as {{youtube_alltime_top_superchatter_amount}}. */
1097
+ YOUTUBE_ALLTIME_TOP_SUPERCHATTER_AMOUNT = "youtube_alltime_top_superchatter_amount",
1098
+ /** Comma-separated list of recent followers. Use as {{recent_followers}}. */
1099
+ RECENT_FOLLOWERS = "recent_followers",
1100
+ /** Comma-separated list of recent subscribers. Use as {{recent_subscribers}}. */
1101
+ RECENT_SUBSCRIBERS = "recent_subscribers",
1102
+ /** Comma-separated list of recent hosts. Use as {{recent_hosts}}. */
1103
+ RECENT_HOSTS = "recent_hosts",
1104
+ /** Comma-separated list of recent raiders. Use as {{recent_raiders}}. */
1105
+ RECENT_RAIDERS = "recent_raiders",
1106
+ /** Parallel comma-separated viewer counts for RECENT_RAIDERS. Use as {{recent_raiders_amount}}. */
1107
+ RECENT_RAIDERS_AMOUNT = "recent_raiders_amount",
1108
+ /** Comma-separated list of recent cheerers. Use as {{recent_cheers}}. */
1109
+ RECENT_CHEERS = "recent_cheers",
1110
+ /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
1111
+ RECENT_CHEERS_AMOUNT = "recent_cheers_amount",
1112
+ /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
1113
+ RECENT_CHEER_PURCHASES = "recent_cheer_purchases",
1114
+ /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
1115
+ RECENT_CHEER_PURCHASES_AMOUNT = "recent_cheer_purchases_amount",
1116
+ /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
1117
+ RECENT_TIPS = "recent_tips",
1118
+ /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
1119
+ RECENT_TIPS_AMOUNT = "recent_tips_amount",
1120
+ /** Comma-separated list of recent superchatters. Use as {{recent_superchats}}. */
1121
+ RECENT_SUPERCHATS = "recent_superchats",
1122
+ /** Parallel comma-separated superchat amounts for RECENT_SUPERCHATS. Use as {{recent_superchats_amount}}. */
1123
+ RECENT_SUPERCHATS_AMOUNT = "recent_superchats_amount",
1124
+ /** Comma-separated list of recent charity donors. Use as {{recent_charity_donations}}. */
1125
+ RECENT_CHARITY_DONATIONS = "recent_charity_donations",
1126
+ /** Parallel comma-separated donation amounts for RECENT_CHARITY_DONATIONS. Use as {{recent_charity_donations_amount}}. */
1127
+ RECENT_CHARITY_DONATIONS_AMOUNT = "recent_charity_donations_amount",
944
1128
  /** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
945
1129
  HEARTRATE_BPM = "heartrate_bpm"
946
1130
  }