@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.
- package/dist/custom-overlays/custom-overlays.d.ts +182 -6
- package/dist/custom-overlays.d.ts +182 -6
- package/dist/esm/variables.types.js +272 -6
- package/dist/index.d.ts +1 -1
- package/dist/variables.types.d.ts +190 -6
- package/dist/variables.types.js +272 -6
- package/package.json +1 -1
package/dist/variables.types.js
CHANGED
|
@@ -80,6 +80,10 @@ var SystemVariables;
|
|
|
80
80
|
SystemVariables["AI_PROMPT"] = "ai_prompt";
|
|
81
81
|
/** Current weather for a location via wttr.in. Returns a one-line summary like */
|
|
82
82
|
SystemVariables["WEATHER"] = "weather";
|
|
83
|
+
/** 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}}. */
|
|
84
|
+
SystemVariables["SAVE_LOCAL"] = "save_local";
|
|
85
|
+
/** 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}}. */
|
|
86
|
+
SystemVariables["LOAD_LOCAL"] = "load_local";
|
|
83
87
|
// ─────────────────────────────────── General Variables ───────────────────────
|
|
84
88
|
/** Commands URL/page. Use in overlays as {{commands_url}}. */
|
|
85
89
|
SystemVariables["COMMANDS_URL"] = "commands_url";
|
|
@@ -238,12 +242,16 @@ var SystemVariables;
|
|
|
238
242
|
SystemVariables["LAST_SUBSCRIBER"] = "last_subscriber";
|
|
239
243
|
/** All-time top gifter (any platform). Use as {{alltime_top_gifter}}. */
|
|
240
244
|
SystemVariables["ALLTIME_TOP_GIFTER"] = "alltime_top_gifter";
|
|
241
|
-
/**
|
|
242
|
-
SystemVariables["
|
|
243
|
-
/**
|
|
244
|
-
SystemVariables["
|
|
245
|
-
/**
|
|
246
|
-
SystemVariables["
|
|
245
|
+
/** Most recent gifter (any platform), { name, amount }. Use as {{last_gifter}} / {{last_gifter.amount}}. */
|
|
246
|
+
SystemVariables["LAST_GIFTER"] = "last_gifter";
|
|
247
|
+
/** Most recent gift recipient (any platform). Use as {{last_gifted}}. */
|
|
248
|
+
SystemVariables["LAST_GIFTED"] = "last_gifted";
|
|
249
|
+
/** Cheers (bits/kicks) this session across all platforms. Use as {{session_cheers_count}}. */
|
|
250
|
+
SystemVariables["SESSION_CHEERS_COUNT"] = "session_cheers_count";
|
|
251
|
+
/** Cheers this week across all platforms. Use as {{week_cheers_count}}. */
|
|
252
|
+
SystemVariables["WEEK_CHEERS_COUNT"] = "week_cheers_count";
|
|
253
|
+
/** Cheers this month across all platforms. Use as {{month_cheers_count}}. */
|
|
254
|
+
SystemVariables["MONTH_CHEERS_COUNT"] = "month_cheers_count";
|
|
247
255
|
/** Top cheerer (by total bits) this session. Use as {{session_top_cheerer}}. */
|
|
248
256
|
SystemVariables["SESSION_TOP_CHEERER"] = "session_top_cheerer";
|
|
249
257
|
/** Amount for SESSION_TOP_CHEERER. Use as {{session_top_cheerer_amount}}. */
|
|
@@ -264,6 +272,8 @@ var SystemVariables;
|
|
|
264
272
|
SystemVariables["SESSION_TOP_CHEER"] = "session_top_cheer";
|
|
265
273
|
/** Amount for SESSION_TOP_CHEER. Use as {{session_top_cheer_amount}}. */
|
|
266
274
|
SystemVariables["SESSION_TOP_CHEER_AMOUNT"] = "session_top_cheer_amount";
|
|
275
|
+
/** Most recent cheer (bits/kicks, any platform), { name, amount }. Use as {{last_cheer}} / {{last_cheer.amount}}. */
|
|
276
|
+
SystemVariables["LAST_CHEER"] = "last_cheer";
|
|
267
277
|
/** Most recent raider/host (any platform). Use as {{last_raider}}. */
|
|
268
278
|
SystemVariables["LAST_RAIDER"] = "last_raider";
|
|
269
279
|
/** Viewer count for LAST_RAIDER. Use as {{last_raid_amount}}. */
|
|
@@ -980,6 +990,179 @@ var SystemVariables;
|
|
|
980
990
|
SystemVariables["DONORDRIVE_GOAL_AMOUNT"] = "donordrive_goal_amount";
|
|
981
991
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
982
992
|
SystemVariables["DONORDRIVE_TOTAL_RAISED"] = "donordrive_total_raised";
|
|
993
|
+
// ────────────────────────────────── Twitch channel points ─────────────────────
|
|
994
|
+
/** (Twitch) Most recent channel-points redeemer name. Use as {{twitch_last_channel_points_redeemer}}. */
|
|
995
|
+
SystemVariables["TWITCH_LAST_CHANNEL_POINTS_REDEEMER"] = "twitch_last_channel_points_redeemer";
|
|
996
|
+
/** Cost for TWITCH_LAST_CHANNEL_POINTS_REDEEMER. Use as {{twitch_last_channel_points_amount}}. */
|
|
997
|
+
SystemVariables["TWITCH_LAST_CHANNEL_POINTS_AMOUNT"] = "twitch_last_channel_points_amount";
|
|
998
|
+
// ────────────────────────────────── Goals (cross-platform) ─────────────────────
|
|
999
|
+
/** Follower goal target. Use as {{follower_goal}}. */
|
|
1000
|
+
SystemVariables["FOLLOWER_GOAL"] = "follower_goal";
|
|
1001
|
+
/** Subscriber goal target. Use as {{subscriber_goal}}. */
|
|
1002
|
+
SystemVariables["SUBSCRIBER_GOAL"] = "subscriber_goal";
|
|
1003
|
+
/** Cheer/bits goal target. Use as {{cheer_goal}}. */
|
|
1004
|
+
SystemVariables["CHEER_GOAL"] = "cheer_goal";
|
|
1005
|
+
/** Tip/donation goal target. Use as {{tip_goal}}. */
|
|
1006
|
+
SystemVariables["TIP_GOAL"] = "tip_goal";
|
|
1007
|
+
/** Superchat goal target. Use as {{superchat_goal}}. */
|
|
1008
|
+
SystemVariables["SUPERCHAT_GOAL"] = "superchat_goal";
|
|
1009
|
+
/** Merch order count goal. Use as {{merch_goal_orders}}. */
|
|
1010
|
+
SystemVariables["MERCH_GOAL_ORDERS"] = "merch_goal_orders";
|
|
1011
|
+
/** Merch item count goal. Use as {{merch_goal_items}}. */
|
|
1012
|
+
SystemVariables["MERCH_GOAL_ITEMS"] = "merch_goal_items";
|
|
1013
|
+
/** Merch revenue goal. Use as {{merch_goal_total}}. */
|
|
1014
|
+
SystemVariables["MERCH_GOAL_TOTAL"] = "merch_goal_total";
|
|
1015
|
+
// ────────────────────────────────── Tip cumulative top-tippers (cross-platform) ─
|
|
1016
|
+
/** Top tipper this session (cumulative giver). Use as {{session_top_tipper}}. */
|
|
1017
|
+
SystemVariables["SESSION_TOP_TIPPER"] = "session_top_tipper";
|
|
1018
|
+
/** Amount for SESSION_TOP_TIPPER. Use as {{session_top_tipper_amount}}. */
|
|
1019
|
+
SystemVariables["SESSION_TOP_TIPPER_AMOUNT"] = "session_top_tipper_amount";
|
|
1020
|
+
/** Top tipper this week (cumulative giver). Use as {{week_top_tipper}}. */
|
|
1021
|
+
SystemVariables["WEEK_TOP_TIPPER"] = "week_top_tipper";
|
|
1022
|
+
/** Amount for WEEK_TOP_TIPPER. Use as {{week_top_tipper_amount}}. */
|
|
1023
|
+
SystemVariables["WEEK_TOP_TIPPER_AMOUNT"] = "week_top_tipper_amount";
|
|
1024
|
+
/** Top tipper this month (cumulative giver). Use as {{month_top_tipper}}. */
|
|
1025
|
+
SystemVariables["MONTH_TOP_TIPPER"] = "month_top_tipper";
|
|
1026
|
+
/** Amount for MONTH_TOP_TIPPER. Use as {{month_top_tipper_amount}}. */
|
|
1027
|
+
SystemVariables["MONTH_TOP_TIPPER_AMOUNT"] = "month_top_tipper_amount";
|
|
1028
|
+
/** All-time top tipper (cumulative giver). Use as {{alltime_top_tipper}}. */
|
|
1029
|
+
SystemVariables["ALLTIME_TOP_TIPPER"] = "alltime_top_tipper";
|
|
1030
|
+
/** Amount for ALLTIME_TOP_TIPPER. Use as {{alltime_top_tipper_amount}}. */
|
|
1031
|
+
SystemVariables["ALLTIME_TOP_TIPPER_AMOUNT"] = "alltime_top_tipper_amount";
|
|
1032
|
+
// ────────────────────────────────── Charity campaigns (cross-platform) ─────────
|
|
1033
|
+
/** Latest charity-campaign donor name. Use as {{last_charity_donator}}. */
|
|
1034
|
+
SystemVariables["LAST_CHARITY_DONATOR"] = "last_charity_donator";
|
|
1035
|
+
/** Amount for LAST_CHARITY_DONATOR. Use as {{last_charity_donation_amount}}. */
|
|
1036
|
+
SystemVariables["LAST_CHARITY_DONATION_AMOUNT"] = "last_charity_donation_amount";
|
|
1037
|
+
/** Largest single charity donation this session. Use as {{session_top_charity_donation}}. */
|
|
1038
|
+
SystemVariables["SESSION_TOP_CHARITY_DONATION"] = "session_top_charity_donation";
|
|
1039
|
+
/** Amount for SESSION_TOP_CHARITY_DONATION. Use as {{session_top_charity_donation_amount}}. */
|
|
1040
|
+
SystemVariables["SESSION_TOP_CHARITY_DONATION_AMOUNT"] = "session_top_charity_donation_amount";
|
|
1041
|
+
/** Largest single charity donation this week. Use as {{week_top_charity_donation}}. */
|
|
1042
|
+
SystemVariables["WEEK_TOP_CHARITY_DONATION"] = "week_top_charity_donation";
|
|
1043
|
+
/** Amount for WEEK_TOP_CHARITY_DONATION. Use as {{week_top_charity_donation_amount}}. */
|
|
1044
|
+
SystemVariables["WEEK_TOP_CHARITY_DONATION_AMOUNT"] = "week_top_charity_donation_amount";
|
|
1045
|
+
/** Largest single charity donation this month. Use as {{month_top_charity_donation}}. */
|
|
1046
|
+
SystemVariables["MONTH_TOP_CHARITY_DONATION"] = "month_top_charity_donation";
|
|
1047
|
+
/** Amount for MONTH_TOP_CHARITY_DONATION. Use as {{month_top_charity_donation_amount}}. */
|
|
1048
|
+
SystemVariables["MONTH_TOP_CHARITY_DONATION_AMOUNT"] = "month_top_charity_donation_amount";
|
|
1049
|
+
/** Largest single charity donation all-time. Use as {{alltime_top_charity_donation}}. */
|
|
1050
|
+
SystemVariables["ALLTIME_TOP_CHARITY_DONATION"] = "alltime_top_charity_donation";
|
|
1051
|
+
/** Amount for ALLTIME_TOP_CHARITY_DONATION. Use as {{alltime_top_charity_donation_amount}}. */
|
|
1052
|
+
SystemVariables["ALLTIME_TOP_CHARITY_DONATION_AMOUNT"] = "alltime_top_charity_donation_amount";
|
|
1053
|
+
/** Top charity donor this session (cumulative giver). Use as {{session_top_charity_donator}}. */
|
|
1054
|
+
SystemVariables["SESSION_TOP_CHARITY_DONATOR"] = "session_top_charity_donator";
|
|
1055
|
+
/** Amount for SESSION_TOP_CHARITY_DONATOR. Use as {{session_top_charity_donator_amount}}. */
|
|
1056
|
+
SystemVariables["SESSION_TOP_CHARITY_DONATOR_AMOUNT"] = "session_top_charity_donator_amount";
|
|
1057
|
+
/** Top charity donor this week (cumulative giver). Use as {{week_top_charity_donator}}. */
|
|
1058
|
+
SystemVariables["WEEK_TOP_CHARITY_DONATOR"] = "week_top_charity_donator";
|
|
1059
|
+
/** Amount for WEEK_TOP_CHARITY_DONATOR. Use as {{week_top_charity_donator_amount}}. */
|
|
1060
|
+
SystemVariables["WEEK_TOP_CHARITY_DONATOR_AMOUNT"] = "week_top_charity_donator_amount";
|
|
1061
|
+
/** Top charity donor this month (cumulative giver). Use as {{month_top_charity_donator}}. */
|
|
1062
|
+
SystemVariables["MONTH_TOP_CHARITY_DONATOR"] = "month_top_charity_donator";
|
|
1063
|
+
/** Amount for MONTH_TOP_CHARITY_DONATOR. Use as {{month_top_charity_donator_amount}}. */
|
|
1064
|
+
SystemVariables["MONTH_TOP_CHARITY_DONATOR_AMOUNT"] = "month_top_charity_donator_amount";
|
|
1065
|
+
/** All-time top charity donor (cumulative giver). Use as {{alltime_top_charity_donator}}. */
|
|
1066
|
+
SystemVariables["ALLTIME_TOP_CHARITY_DONATOR"] = "alltime_top_charity_donator";
|
|
1067
|
+
/** Amount for ALLTIME_TOP_CHARITY_DONATOR. Use as {{alltime_top_charity_donator_amount}}. */
|
|
1068
|
+
SystemVariables["ALLTIME_TOP_CHARITY_DONATOR_AMOUNT"] = "alltime_top_charity_donator_amount";
|
|
1069
|
+
// ────────────────────────────────── Cheer period tops (single biggest cheer) ──
|
|
1070
|
+
/** Largest single cheer this week. Use as {{week_top_cheer}}. */
|
|
1071
|
+
SystemVariables["WEEK_TOP_CHEER"] = "week_top_cheer";
|
|
1072
|
+
/** Amount for WEEK_TOP_CHEER. Use as {{week_top_cheer_amount}}. */
|
|
1073
|
+
SystemVariables["WEEK_TOP_CHEER_AMOUNT"] = "week_top_cheer_amount";
|
|
1074
|
+
/** Largest single cheer this month. Use as {{month_top_cheer}}. */
|
|
1075
|
+
SystemVariables["MONTH_TOP_CHEER"] = "month_top_cheer";
|
|
1076
|
+
/** Amount for MONTH_TOP_CHEER. Use as {{month_top_cheer_amount}}. */
|
|
1077
|
+
SystemVariables["MONTH_TOP_CHEER_AMOUNT"] = "month_top_cheer_amount";
|
|
1078
|
+
/** Largest single cheer all-time. Use as {{alltime_top_cheer}}. */
|
|
1079
|
+
SystemVariables["ALLTIME_TOP_CHEER"] = "alltime_top_cheer";
|
|
1080
|
+
/** Amount for ALLTIME_TOP_CHEER. Use as {{alltime_top_cheer_amount}}. */
|
|
1081
|
+
SystemVariables["ALLTIME_TOP_CHEER_AMOUNT"] = "alltime_top_cheer_amount";
|
|
1082
|
+
/** (Twitch) Largest single cheer this week. Use as {{twitch_week_top_cheer}}. */
|
|
1083
|
+
SystemVariables["TWITCH_WEEK_TOP_CHEER"] = "twitch_week_top_cheer";
|
|
1084
|
+
/** Amount for TWITCH_WEEK_TOP_CHEER. Use as {{twitch_week_top_cheer_amount}}. */
|
|
1085
|
+
SystemVariables["TWITCH_WEEK_TOP_CHEER_AMOUNT"] = "twitch_week_top_cheer_amount";
|
|
1086
|
+
/** (Twitch) Largest single cheer this month. Use as {{twitch_month_top_cheer}}. */
|
|
1087
|
+
SystemVariables["TWITCH_MONTH_TOP_CHEER"] = "twitch_month_top_cheer";
|
|
1088
|
+
/** Amount for TWITCH_MONTH_TOP_CHEER. Use as {{twitch_month_top_cheer_amount}}. */
|
|
1089
|
+
SystemVariables["TWITCH_MONTH_TOP_CHEER_AMOUNT"] = "twitch_month_top_cheer_amount";
|
|
1090
|
+
/** (Twitch) Largest single cheer all-time. Use as {{twitch_alltime_top_cheer}}. */
|
|
1091
|
+
SystemVariables["TWITCH_ALLTIME_TOP_CHEER"] = "twitch_alltime_top_cheer";
|
|
1092
|
+
/** Amount for TWITCH_ALLTIME_TOP_CHEER. Use as {{twitch_alltime_top_cheer_amount}}. */
|
|
1093
|
+
SystemVariables["TWITCH_ALLTIME_TOP_CHEER_AMOUNT"] = "twitch_alltime_top_cheer_amount";
|
|
1094
|
+
// ────────────────────────────────── YouTube superchat aggregations ─────────────
|
|
1095
|
+
/** (YouTube) Running superchat amount this session. Use as {{youtube_session_superchat_amount}}. */
|
|
1096
|
+
SystemVariables["YOUTUBE_SESSION_SUPERCHAT_AMOUNT"] = "youtube_session_superchat_amount";
|
|
1097
|
+
/** (YouTube) Running superchat amount this week. Use as {{youtube_week_superchat_amount}}. */
|
|
1098
|
+
SystemVariables["YOUTUBE_WEEK_SUPERCHAT_AMOUNT"] = "youtube_week_superchat_amount";
|
|
1099
|
+
/** (YouTube) Running superchat amount this month. Use as {{youtube_month_superchat_amount}}. */
|
|
1100
|
+
SystemVariables["YOUTUBE_MONTH_SUPERCHAT_AMOUNT"] = "youtube_month_superchat_amount";
|
|
1101
|
+
/** (YouTube) Running superchat amount all-time. Use as {{youtube_total_superchat_amount}}. */
|
|
1102
|
+
SystemVariables["YOUTUBE_TOTAL_SUPERCHAT_AMOUNT"] = "youtube_total_superchat_amount";
|
|
1103
|
+
/** (YouTube) Largest single superchat this session. Use as {{youtube_session_top_superchat}}. */
|
|
1104
|
+
SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHAT"] = "youtube_session_top_superchat";
|
|
1105
|
+
/** Amount for YOUTUBE_SESSION_TOP_SUPERCHAT. Use as {{youtube_session_top_superchat_amount}}. */
|
|
1106
|
+
SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHAT_AMOUNT"] = "youtube_session_top_superchat_amount";
|
|
1107
|
+
/** (YouTube) Largest single superchat this week. Use as {{youtube_week_top_superchat}}. */
|
|
1108
|
+
SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHAT"] = "youtube_week_top_superchat";
|
|
1109
|
+
/** Amount for YOUTUBE_WEEK_TOP_SUPERCHAT. Use as {{youtube_week_top_superchat_amount}}. */
|
|
1110
|
+
SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHAT_AMOUNT"] = "youtube_week_top_superchat_amount";
|
|
1111
|
+
/** (YouTube) Largest single superchat this month. Use as {{youtube_month_top_superchat}}. */
|
|
1112
|
+
SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHAT"] = "youtube_month_top_superchat";
|
|
1113
|
+
/** Amount for YOUTUBE_MONTH_TOP_SUPERCHAT. Use as {{youtube_month_top_superchat_amount}}. */
|
|
1114
|
+
SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHAT_AMOUNT"] = "youtube_month_top_superchat_amount";
|
|
1115
|
+
/** (YouTube) Largest single superchat all-time. Use as {{youtube_alltime_top_superchat}}. */
|
|
1116
|
+
SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHAT"] = "youtube_alltime_top_superchat";
|
|
1117
|
+
/** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHAT. Use as {{youtube_alltime_top_superchat_amount}}. */
|
|
1118
|
+
SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHAT_AMOUNT"] = "youtube_alltime_top_superchat_amount";
|
|
1119
|
+
/** (YouTube) Top superchatter this session (cumulative giver). Use as {{youtube_session_top_superchatter}}. */
|
|
1120
|
+
SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHATTER"] = "youtube_session_top_superchatter";
|
|
1121
|
+
/** Amount for YOUTUBE_SESSION_TOP_SUPERCHATTER. Use as {{youtube_session_top_superchatter_amount}}. */
|
|
1122
|
+
SystemVariables["YOUTUBE_SESSION_TOP_SUPERCHATTER_AMOUNT"] = "youtube_session_top_superchatter_amount";
|
|
1123
|
+
/** (YouTube) Top superchatter this week (cumulative giver). Use as {{youtube_week_top_superchatter}}. */
|
|
1124
|
+
SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHATTER"] = "youtube_week_top_superchatter";
|
|
1125
|
+
/** Amount for YOUTUBE_WEEK_TOP_SUPERCHATTER. Use as {{youtube_week_top_superchatter_amount}}. */
|
|
1126
|
+
SystemVariables["YOUTUBE_WEEK_TOP_SUPERCHATTER_AMOUNT"] = "youtube_week_top_superchatter_amount";
|
|
1127
|
+
/** (YouTube) Top superchatter this month (cumulative giver). Use as {{youtube_month_top_superchatter}}. */
|
|
1128
|
+
SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHATTER"] = "youtube_month_top_superchatter";
|
|
1129
|
+
/** Amount for YOUTUBE_MONTH_TOP_SUPERCHATTER. Use as {{youtube_month_top_superchatter_amount}}. */
|
|
1130
|
+
SystemVariables["YOUTUBE_MONTH_TOP_SUPERCHATTER_AMOUNT"] = "youtube_month_top_superchatter_amount";
|
|
1131
|
+
/** (YouTube) All-time top superchatter (cumulative giver). Use as {{youtube_alltime_top_superchatter}}. */
|
|
1132
|
+
SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHATTER"] = "youtube_alltime_top_superchatter";
|
|
1133
|
+
/** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHATTER. Use as {{youtube_alltime_top_superchatter_amount}}. */
|
|
1134
|
+
SystemVariables["YOUTUBE_ALLTIME_TOP_SUPERCHATTER_AMOUNT"] = "youtube_alltime_top_superchatter_amount";
|
|
1135
|
+
// ────────────────────────────────── Recent event lists (cross-platform) ────────
|
|
1136
|
+
/** Comma-separated list of recent followers. Use as {{recent_followers}}. */
|
|
1137
|
+
SystemVariables["RECENT_FOLLOWERS"] = "recent_followers";
|
|
1138
|
+
/** Comma-separated list of recent subscribers. Use as {{recent_subscribers}}. */
|
|
1139
|
+
SystemVariables["RECENT_SUBSCRIBERS"] = "recent_subscribers";
|
|
1140
|
+
/** Comma-separated list of recent hosts. Use as {{recent_hosts}}. */
|
|
1141
|
+
SystemVariables["RECENT_HOSTS"] = "recent_hosts";
|
|
1142
|
+
/** Comma-separated list of recent raiders. Use as {{recent_raiders}}. */
|
|
1143
|
+
SystemVariables["RECENT_RAIDERS"] = "recent_raiders";
|
|
1144
|
+
/** Parallel comma-separated viewer counts for RECENT_RAIDERS. Use as {{recent_raiders_amount}}. */
|
|
1145
|
+
SystemVariables["RECENT_RAIDERS_AMOUNT"] = "recent_raiders_amount";
|
|
1146
|
+
/** Comma-separated list of recent cheerers. Use as {{recent_cheers}}. */
|
|
1147
|
+
SystemVariables["RECENT_CHEERS"] = "recent_cheers";
|
|
1148
|
+
/** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
|
|
1149
|
+
SystemVariables["RECENT_CHEERS_AMOUNT"] = "recent_cheers_amount";
|
|
1150
|
+
/** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
|
|
1151
|
+
SystemVariables["RECENT_CHEER_PURCHASES"] = "recent_cheer_purchases";
|
|
1152
|
+
/** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
|
|
1153
|
+
SystemVariables["RECENT_CHEER_PURCHASES_AMOUNT"] = "recent_cheer_purchases_amount";
|
|
1154
|
+
/** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
|
|
1155
|
+
SystemVariables["RECENT_TIPS"] = "recent_tips";
|
|
1156
|
+
/** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
|
|
1157
|
+
SystemVariables["RECENT_TIPS_AMOUNT"] = "recent_tips_amount";
|
|
1158
|
+
/** Comma-separated list of recent superchatters. Use as {{recent_superchats}}. */
|
|
1159
|
+
SystemVariables["RECENT_SUPERCHATS"] = "recent_superchats";
|
|
1160
|
+
/** Parallel comma-separated superchat amounts for RECENT_SUPERCHATS. Use as {{recent_superchats_amount}}. */
|
|
1161
|
+
SystemVariables["RECENT_SUPERCHATS_AMOUNT"] = "recent_superchats_amount";
|
|
1162
|
+
/** Comma-separated list of recent charity donors. Use as {{recent_charity_donations}}. */
|
|
1163
|
+
SystemVariables["RECENT_CHARITY_DONATIONS"] = "recent_charity_donations";
|
|
1164
|
+
/** Parallel comma-separated donation amounts for RECENT_CHARITY_DONATIONS. Use as {{recent_charity_donations_amount}}. */
|
|
1165
|
+
SystemVariables["RECENT_CHARITY_DONATIONS_AMOUNT"] = "recent_charity_donations_amount";
|
|
983
1166
|
// ────────────────────────────────── Sensors ────────────────────────────────────
|
|
984
1167
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
985
1168
|
SystemVariables["HEARTRATE_BPM"] = "heartrate_bpm";
|
|
@@ -1266,6 +1449,61 @@ exports.AllVariables = {
|
|
|
1266
1449
|
'now_playing_beatport_id',
|
|
1267
1450
|
'now_playing_file_path',
|
|
1268
1451
|
'heartrate_bpm',
|
|
1452
|
+
'follower_goal',
|
|
1453
|
+
'subscriber_goal',
|
|
1454
|
+
'cheer_goal',
|
|
1455
|
+
'tip_goal',
|
|
1456
|
+
'superchat_goal',
|
|
1457
|
+
'merch_goal_orders',
|
|
1458
|
+
'merch_goal_items',
|
|
1459
|
+
'merch_goal_total',
|
|
1460
|
+
'session_top_tipper',
|
|
1461
|
+
'session_top_tipper_amount',
|
|
1462
|
+
'week_top_tipper',
|
|
1463
|
+
'week_top_tipper_amount',
|
|
1464
|
+
'month_top_tipper',
|
|
1465
|
+
'month_top_tipper_amount',
|
|
1466
|
+
'alltime_top_tipper',
|
|
1467
|
+
'alltime_top_tipper_amount',
|
|
1468
|
+
'last_charity_donator',
|
|
1469
|
+
'last_charity_donation_amount',
|
|
1470
|
+
'session_top_charity_donation',
|
|
1471
|
+
'session_top_charity_donation_amount',
|
|
1472
|
+
'week_top_charity_donation',
|
|
1473
|
+
'week_top_charity_donation_amount',
|
|
1474
|
+
'month_top_charity_donation',
|
|
1475
|
+
'month_top_charity_donation_amount',
|
|
1476
|
+
'alltime_top_charity_donation',
|
|
1477
|
+
'alltime_top_charity_donation_amount',
|
|
1478
|
+
'session_top_charity_donator',
|
|
1479
|
+
'session_top_charity_donator_amount',
|
|
1480
|
+
'week_top_charity_donator',
|
|
1481
|
+
'week_top_charity_donator_amount',
|
|
1482
|
+
'month_top_charity_donator',
|
|
1483
|
+
'month_top_charity_donator_amount',
|
|
1484
|
+
'alltime_top_charity_donator',
|
|
1485
|
+
'alltime_top_charity_donator_amount',
|
|
1486
|
+
'week_top_cheer',
|
|
1487
|
+
'week_top_cheer_amount',
|
|
1488
|
+
'month_top_cheer',
|
|
1489
|
+
'month_top_cheer_amount',
|
|
1490
|
+
'alltime_top_cheer',
|
|
1491
|
+
'alltime_top_cheer_amount',
|
|
1492
|
+
'recent_followers',
|
|
1493
|
+
'recent_subscribers',
|
|
1494
|
+
'recent_hosts',
|
|
1495
|
+
'recent_raiders',
|
|
1496
|
+
'recent_raiders_amount',
|
|
1497
|
+
'recent_cheers',
|
|
1498
|
+
'recent_cheers_amount',
|
|
1499
|
+
'recent_cheer_purchases',
|
|
1500
|
+
'recent_cheer_purchases_amount',
|
|
1501
|
+
'recent_tips',
|
|
1502
|
+
'recent_tips_amount',
|
|
1503
|
+
'recent_superchats',
|
|
1504
|
+
'recent_superchats_amount',
|
|
1505
|
+
'recent_charity_donations',
|
|
1506
|
+
'recent_charity_donations_amount',
|
|
1269
1507
|
],
|
|
1270
1508
|
chat: {
|
|
1271
1509
|
cooldowns: ['cooldown_time_remaining'],
|
|
@@ -2513,6 +2751,14 @@ exports.AllVariables = {
|
|
|
2513
2751
|
'twitch_hypetrain_top_contributor_amount',
|
|
2514
2752
|
'twitch_alltime_top_cheerer',
|
|
2515
2753
|
'twitch_alltime_top_cheerer_amount',
|
|
2754
|
+
'twitch_week_top_cheer',
|
|
2755
|
+
'twitch_week_top_cheer_amount',
|
|
2756
|
+
'twitch_month_top_cheer',
|
|
2757
|
+
'twitch_month_top_cheer_amount',
|
|
2758
|
+
'twitch_alltime_top_cheer',
|
|
2759
|
+
'twitch_alltime_top_cheer_amount',
|
|
2760
|
+
'twitch_last_channel_points_redeemer',
|
|
2761
|
+
'twitch_last_channel_points_amount',
|
|
2516
2762
|
'top_cheerer_list',
|
|
2517
2763
|
'top_cheerer_list_amount',
|
|
2518
2764
|
'week_top_cheerer_list',
|
|
@@ -2769,6 +3015,26 @@ exports.AllVariables = {
|
|
|
2769
3015
|
'youtube_month_subscriber_count',
|
|
2770
3016
|
'youtube_total_subscriber_count',
|
|
2771
3017
|
'youtube_session_superchat_count',
|
|
3018
|
+
'youtube_session_superchat_amount',
|
|
3019
|
+
'youtube_week_superchat_amount',
|
|
3020
|
+
'youtube_month_superchat_amount',
|
|
3021
|
+
'youtube_total_superchat_amount',
|
|
3022
|
+
'youtube_session_top_superchat',
|
|
3023
|
+
'youtube_session_top_superchat_amount',
|
|
3024
|
+
'youtube_week_top_superchat',
|
|
3025
|
+
'youtube_week_top_superchat_amount',
|
|
3026
|
+
'youtube_month_top_superchat',
|
|
3027
|
+
'youtube_month_top_superchat_amount',
|
|
3028
|
+
'youtube_alltime_top_superchat',
|
|
3029
|
+
'youtube_alltime_top_superchat_amount',
|
|
3030
|
+
'youtube_session_top_superchatter',
|
|
3031
|
+
'youtube_session_top_superchatter_amount',
|
|
3032
|
+
'youtube_week_top_superchatter',
|
|
3033
|
+
'youtube_week_top_superchatter_amount',
|
|
3034
|
+
'youtube_month_top_superchatter',
|
|
3035
|
+
'youtube_month_top_superchatter_amount',
|
|
3036
|
+
'youtube_alltime_top_superchatter',
|
|
3037
|
+
'youtube_alltime_top_superchatter_amount',
|
|
2772
3038
|
'youtube_last_superchatter',
|
|
2773
3039
|
'youtube_session_superchatters',
|
|
2774
3040
|
'youtube_session_supersticker_count',
|