@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
|
@@ -1154,6 +1154,10 @@ export declare enum SystemVariables {
|
|
|
1154
1154
|
AI_PROMPT = "ai_prompt",
|
|
1155
1155
|
/** Current weather for a location via wttr.in. Returns a one-line summary like */
|
|
1156
1156
|
WEATHER = "weather",
|
|
1157
|
+
/** 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}}. */
|
|
1158
|
+
SAVE_LOCAL = "save_local",
|
|
1159
|
+
/** 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}}. */
|
|
1160
|
+
LOAD_LOCAL = "load_local",
|
|
1157
1161
|
/** Commands URL/page. Use in overlays as {{commands_url}}. */
|
|
1158
1162
|
COMMANDS_URL = "commands_url",
|
|
1159
1163
|
/** Session start time (ISO). Use as {{session_start_date}}. */
|
|
@@ -1303,12 +1307,16 @@ export declare enum SystemVariables {
|
|
|
1303
1307
|
LAST_SUBSCRIBER = "last_subscriber",
|
|
1304
1308
|
/** All-time top gifter (any platform). Use as {{alltime_top_gifter}}. */
|
|
1305
1309
|
ALLTIME_TOP_GIFTER = "alltime_top_gifter",
|
|
1306
|
-
/**
|
|
1307
|
-
|
|
1308
|
-
/**
|
|
1309
|
-
|
|
1310
|
-
/**
|
|
1311
|
-
|
|
1310
|
+
/** Most recent gifter (any platform), { name, amount }. Use as {{last_gifter}} / {{last_gifter.amount}}. */
|
|
1311
|
+
LAST_GIFTER = "last_gifter",
|
|
1312
|
+
/** Most recent gift recipient (any platform). Use as {{last_gifted}}. */
|
|
1313
|
+
LAST_GIFTED = "last_gifted",
|
|
1314
|
+
/** Cheers (bits/kicks) this session across all platforms. Use as {{session_cheers_count}}. */
|
|
1315
|
+
SESSION_CHEERS_COUNT = "session_cheers_count",
|
|
1316
|
+
/** Cheers this week across all platforms. Use as {{week_cheers_count}}. */
|
|
1317
|
+
WEEK_CHEERS_COUNT = "week_cheers_count",
|
|
1318
|
+
/** Cheers this month across all platforms. Use as {{month_cheers_count}}. */
|
|
1319
|
+
MONTH_CHEERS_COUNT = "month_cheers_count",
|
|
1312
1320
|
/** Top cheerer (by total bits) this session. Use as {{session_top_cheerer}}. */
|
|
1313
1321
|
SESSION_TOP_CHEERER = "session_top_cheerer",
|
|
1314
1322
|
/** Amount for SESSION_TOP_CHEERER. Use as {{session_top_cheerer_amount}}. */
|
|
@@ -1329,6 +1337,8 @@ export declare enum SystemVariables {
|
|
|
1329
1337
|
SESSION_TOP_CHEER = "session_top_cheer",
|
|
1330
1338
|
/** Amount for SESSION_TOP_CHEER. Use as {{session_top_cheer_amount}}. */
|
|
1331
1339
|
SESSION_TOP_CHEER_AMOUNT = "session_top_cheer_amount",
|
|
1340
|
+
/** Most recent cheer (bits/kicks, any platform), { name, amount }. Use as {{last_cheer}} / {{last_cheer.amount}}. */
|
|
1341
|
+
LAST_CHEER = "last_cheer",
|
|
1332
1342
|
/** Most recent raider/host (any platform). Use as {{last_raider}}. */
|
|
1333
1343
|
LAST_RAIDER = "last_raider",
|
|
1334
1344
|
/** Viewer count for LAST_RAIDER. Use as {{last_raid_amount}}. */
|
|
@@ -2017,6 +2027,172 @@ export declare enum SystemVariables {
|
|
|
2017
2027
|
DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
|
|
2018
2028
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
2019
2029
|
DONORDRIVE_TOTAL_RAISED = "donordrive_total_raised",
|
|
2030
|
+
/** (Twitch) Most recent channel-points redeemer name. Use as {{twitch_last_channel_points_redeemer}}. */
|
|
2031
|
+
TWITCH_LAST_CHANNEL_POINTS_REDEEMER = "twitch_last_channel_points_redeemer",
|
|
2032
|
+
/** Cost for TWITCH_LAST_CHANNEL_POINTS_REDEEMER. Use as {{twitch_last_channel_points_amount}}. */
|
|
2033
|
+
TWITCH_LAST_CHANNEL_POINTS_AMOUNT = "twitch_last_channel_points_amount",
|
|
2034
|
+
/** Follower goal target. Use as {{follower_goal}}. */
|
|
2035
|
+
FOLLOWER_GOAL = "follower_goal",
|
|
2036
|
+
/** Subscriber goal target. Use as {{subscriber_goal}}. */
|
|
2037
|
+
SUBSCRIBER_GOAL = "subscriber_goal",
|
|
2038
|
+
/** Cheer/bits goal target. Use as {{cheer_goal}}. */
|
|
2039
|
+
CHEER_GOAL = "cheer_goal",
|
|
2040
|
+
/** Tip/donation goal target. Use as {{tip_goal}}. */
|
|
2041
|
+
TIP_GOAL = "tip_goal",
|
|
2042
|
+
/** Superchat goal target. Use as {{superchat_goal}}. */
|
|
2043
|
+
SUPERCHAT_GOAL = "superchat_goal",
|
|
2044
|
+
/** Merch order count goal. Use as {{merch_goal_orders}}. */
|
|
2045
|
+
MERCH_GOAL_ORDERS = "merch_goal_orders",
|
|
2046
|
+
/** Merch item count goal. Use as {{merch_goal_items}}. */
|
|
2047
|
+
MERCH_GOAL_ITEMS = "merch_goal_items",
|
|
2048
|
+
/** Merch revenue goal. Use as {{merch_goal_total}}. */
|
|
2049
|
+
MERCH_GOAL_TOTAL = "merch_goal_total",
|
|
2050
|
+
/** Top tipper this session (cumulative giver). Use as {{session_top_tipper}}. */
|
|
2051
|
+
SESSION_TOP_TIPPER = "session_top_tipper",
|
|
2052
|
+
/** Amount for SESSION_TOP_TIPPER. Use as {{session_top_tipper_amount}}. */
|
|
2053
|
+
SESSION_TOP_TIPPER_AMOUNT = "session_top_tipper_amount",
|
|
2054
|
+
/** Top tipper this week (cumulative giver). Use as {{week_top_tipper}}. */
|
|
2055
|
+
WEEK_TOP_TIPPER = "week_top_tipper",
|
|
2056
|
+
/** Amount for WEEK_TOP_TIPPER. Use as {{week_top_tipper_amount}}. */
|
|
2057
|
+
WEEK_TOP_TIPPER_AMOUNT = "week_top_tipper_amount",
|
|
2058
|
+
/** Top tipper this month (cumulative giver). Use as {{month_top_tipper}}. */
|
|
2059
|
+
MONTH_TOP_TIPPER = "month_top_tipper",
|
|
2060
|
+
/** Amount for MONTH_TOP_TIPPER. Use as {{month_top_tipper_amount}}. */
|
|
2061
|
+
MONTH_TOP_TIPPER_AMOUNT = "month_top_tipper_amount",
|
|
2062
|
+
/** All-time top tipper (cumulative giver). Use as {{alltime_top_tipper}}. */
|
|
2063
|
+
ALLTIME_TOP_TIPPER = "alltime_top_tipper",
|
|
2064
|
+
/** Amount for ALLTIME_TOP_TIPPER. Use as {{alltime_top_tipper_amount}}. */
|
|
2065
|
+
ALLTIME_TOP_TIPPER_AMOUNT = "alltime_top_tipper_amount",
|
|
2066
|
+
/** Latest charity-campaign donor name. Use as {{last_charity_donator}}. */
|
|
2067
|
+
LAST_CHARITY_DONATOR = "last_charity_donator",
|
|
2068
|
+
/** Amount for LAST_CHARITY_DONATOR. Use as {{last_charity_donation_amount}}. */
|
|
2069
|
+
LAST_CHARITY_DONATION_AMOUNT = "last_charity_donation_amount",
|
|
2070
|
+
/** Largest single charity donation this session. Use as {{session_top_charity_donation}}. */
|
|
2071
|
+
SESSION_TOP_CHARITY_DONATION = "session_top_charity_donation",
|
|
2072
|
+
/** Amount for SESSION_TOP_CHARITY_DONATION. Use as {{session_top_charity_donation_amount}}. */
|
|
2073
|
+
SESSION_TOP_CHARITY_DONATION_AMOUNT = "session_top_charity_donation_amount",
|
|
2074
|
+
/** Largest single charity donation this week. Use as {{week_top_charity_donation}}. */
|
|
2075
|
+
WEEK_TOP_CHARITY_DONATION = "week_top_charity_donation",
|
|
2076
|
+
/** Amount for WEEK_TOP_CHARITY_DONATION. Use as {{week_top_charity_donation_amount}}. */
|
|
2077
|
+
WEEK_TOP_CHARITY_DONATION_AMOUNT = "week_top_charity_donation_amount",
|
|
2078
|
+
/** Largest single charity donation this month. Use as {{month_top_charity_donation}}. */
|
|
2079
|
+
MONTH_TOP_CHARITY_DONATION = "month_top_charity_donation",
|
|
2080
|
+
/** Amount for MONTH_TOP_CHARITY_DONATION. Use as {{month_top_charity_donation_amount}}. */
|
|
2081
|
+
MONTH_TOP_CHARITY_DONATION_AMOUNT = "month_top_charity_donation_amount",
|
|
2082
|
+
/** Largest single charity donation all-time. Use as {{alltime_top_charity_donation}}. */
|
|
2083
|
+
ALLTIME_TOP_CHARITY_DONATION = "alltime_top_charity_donation",
|
|
2084
|
+
/** Amount for ALLTIME_TOP_CHARITY_DONATION. Use as {{alltime_top_charity_donation_amount}}. */
|
|
2085
|
+
ALLTIME_TOP_CHARITY_DONATION_AMOUNT = "alltime_top_charity_donation_amount",
|
|
2086
|
+
/** Top charity donor this session (cumulative giver). Use as {{session_top_charity_donator}}. */
|
|
2087
|
+
SESSION_TOP_CHARITY_DONATOR = "session_top_charity_donator",
|
|
2088
|
+
/** Amount for SESSION_TOP_CHARITY_DONATOR. Use as {{session_top_charity_donator_amount}}. */
|
|
2089
|
+
SESSION_TOP_CHARITY_DONATOR_AMOUNT = "session_top_charity_donator_amount",
|
|
2090
|
+
/** Top charity donor this week (cumulative giver). Use as {{week_top_charity_donator}}. */
|
|
2091
|
+
WEEK_TOP_CHARITY_DONATOR = "week_top_charity_donator",
|
|
2092
|
+
/** Amount for WEEK_TOP_CHARITY_DONATOR. Use as {{week_top_charity_donator_amount}}. */
|
|
2093
|
+
WEEK_TOP_CHARITY_DONATOR_AMOUNT = "week_top_charity_donator_amount",
|
|
2094
|
+
/** Top charity donor this month (cumulative giver). Use as {{month_top_charity_donator}}. */
|
|
2095
|
+
MONTH_TOP_CHARITY_DONATOR = "month_top_charity_donator",
|
|
2096
|
+
/** Amount for MONTH_TOP_CHARITY_DONATOR. Use as {{month_top_charity_donator_amount}}. */
|
|
2097
|
+
MONTH_TOP_CHARITY_DONATOR_AMOUNT = "month_top_charity_donator_amount",
|
|
2098
|
+
/** All-time top charity donor (cumulative giver). Use as {{alltime_top_charity_donator}}. */
|
|
2099
|
+
ALLTIME_TOP_CHARITY_DONATOR = "alltime_top_charity_donator",
|
|
2100
|
+
/** Amount for ALLTIME_TOP_CHARITY_DONATOR. Use as {{alltime_top_charity_donator_amount}}. */
|
|
2101
|
+
ALLTIME_TOP_CHARITY_DONATOR_AMOUNT = "alltime_top_charity_donator_amount",
|
|
2102
|
+
/** Largest single cheer this week. Use as {{week_top_cheer}}. */
|
|
2103
|
+
WEEK_TOP_CHEER = "week_top_cheer",
|
|
2104
|
+
/** Amount for WEEK_TOP_CHEER. Use as {{week_top_cheer_amount}}. */
|
|
2105
|
+
WEEK_TOP_CHEER_AMOUNT = "week_top_cheer_amount",
|
|
2106
|
+
/** Largest single cheer this month. Use as {{month_top_cheer}}. */
|
|
2107
|
+
MONTH_TOP_CHEER = "month_top_cheer",
|
|
2108
|
+
/** Amount for MONTH_TOP_CHEER. Use as {{month_top_cheer_amount}}. */
|
|
2109
|
+
MONTH_TOP_CHEER_AMOUNT = "month_top_cheer_amount",
|
|
2110
|
+
/** Largest single cheer all-time. Use as {{alltime_top_cheer}}. */
|
|
2111
|
+
ALLTIME_TOP_CHEER = "alltime_top_cheer",
|
|
2112
|
+
/** Amount for ALLTIME_TOP_CHEER. Use as {{alltime_top_cheer_amount}}. */
|
|
2113
|
+
ALLTIME_TOP_CHEER_AMOUNT = "alltime_top_cheer_amount",
|
|
2114
|
+
/** (Twitch) Largest single cheer this week. Use as {{twitch_week_top_cheer}}. */
|
|
2115
|
+
TWITCH_WEEK_TOP_CHEER = "twitch_week_top_cheer",
|
|
2116
|
+
/** Amount for TWITCH_WEEK_TOP_CHEER. Use as {{twitch_week_top_cheer_amount}}. */
|
|
2117
|
+
TWITCH_WEEK_TOP_CHEER_AMOUNT = "twitch_week_top_cheer_amount",
|
|
2118
|
+
/** (Twitch) Largest single cheer this month. Use as {{twitch_month_top_cheer}}. */
|
|
2119
|
+
TWITCH_MONTH_TOP_CHEER = "twitch_month_top_cheer",
|
|
2120
|
+
/** Amount for TWITCH_MONTH_TOP_CHEER. Use as {{twitch_month_top_cheer_amount}}. */
|
|
2121
|
+
TWITCH_MONTH_TOP_CHEER_AMOUNT = "twitch_month_top_cheer_amount",
|
|
2122
|
+
/** (Twitch) Largest single cheer all-time. Use as {{twitch_alltime_top_cheer}}. */
|
|
2123
|
+
TWITCH_ALLTIME_TOP_CHEER = "twitch_alltime_top_cheer",
|
|
2124
|
+
/** Amount for TWITCH_ALLTIME_TOP_CHEER. Use as {{twitch_alltime_top_cheer_amount}}. */
|
|
2125
|
+
TWITCH_ALLTIME_TOP_CHEER_AMOUNT = "twitch_alltime_top_cheer_amount",
|
|
2126
|
+
/** (YouTube) Running superchat amount this session. Use as {{youtube_session_superchat_amount}}. */
|
|
2127
|
+
YOUTUBE_SESSION_SUPERCHAT_AMOUNT = "youtube_session_superchat_amount",
|
|
2128
|
+
/** (YouTube) Running superchat amount this week. Use as {{youtube_week_superchat_amount}}. */
|
|
2129
|
+
YOUTUBE_WEEK_SUPERCHAT_AMOUNT = "youtube_week_superchat_amount",
|
|
2130
|
+
/** (YouTube) Running superchat amount this month. Use as {{youtube_month_superchat_amount}}. */
|
|
2131
|
+
YOUTUBE_MONTH_SUPERCHAT_AMOUNT = "youtube_month_superchat_amount",
|
|
2132
|
+
/** (YouTube) Running superchat amount all-time. Use as {{youtube_total_superchat_amount}}. */
|
|
2133
|
+
YOUTUBE_TOTAL_SUPERCHAT_AMOUNT = "youtube_total_superchat_amount",
|
|
2134
|
+
/** (YouTube) Largest single superchat this session. Use as {{youtube_session_top_superchat}}. */
|
|
2135
|
+
YOUTUBE_SESSION_TOP_SUPERCHAT = "youtube_session_top_superchat",
|
|
2136
|
+
/** Amount for YOUTUBE_SESSION_TOP_SUPERCHAT. Use as {{youtube_session_top_superchat_amount}}. */
|
|
2137
|
+
YOUTUBE_SESSION_TOP_SUPERCHAT_AMOUNT = "youtube_session_top_superchat_amount",
|
|
2138
|
+
/** (YouTube) Largest single superchat this week. Use as {{youtube_week_top_superchat}}. */
|
|
2139
|
+
YOUTUBE_WEEK_TOP_SUPERCHAT = "youtube_week_top_superchat",
|
|
2140
|
+
/** Amount for YOUTUBE_WEEK_TOP_SUPERCHAT. Use as {{youtube_week_top_superchat_amount}}. */
|
|
2141
|
+
YOUTUBE_WEEK_TOP_SUPERCHAT_AMOUNT = "youtube_week_top_superchat_amount",
|
|
2142
|
+
/** (YouTube) Largest single superchat this month. Use as {{youtube_month_top_superchat}}. */
|
|
2143
|
+
YOUTUBE_MONTH_TOP_SUPERCHAT = "youtube_month_top_superchat",
|
|
2144
|
+
/** Amount for YOUTUBE_MONTH_TOP_SUPERCHAT. Use as {{youtube_month_top_superchat_amount}}. */
|
|
2145
|
+
YOUTUBE_MONTH_TOP_SUPERCHAT_AMOUNT = "youtube_month_top_superchat_amount",
|
|
2146
|
+
/** (YouTube) Largest single superchat all-time. Use as {{youtube_alltime_top_superchat}}. */
|
|
2147
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHAT = "youtube_alltime_top_superchat",
|
|
2148
|
+
/** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHAT. Use as {{youtube_alltime_top_superchat_amount}}. */
|
|
2149
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHAT_AMOUNT = "youtube_alltime_top_superchat_amount",
|
|
2150
|
+
/** (YouTube) Top superchatter this session (cumulative giver). Use as {{youtube_session_top_superchatter}}. */
|
|
2151
|
+
YOUTUBE_SESSION_TOP_SUPERCHATTER = "youtube_session_top_superchatter",
|
|
2152
|
+
/** Amount for YOUTUBE_SESSION_TOP_SUPERCHATTER. Use as {{youtube_session_top_superchatter_amount}}. */
|
|
2153
|
+
YOUTUBE_SESSION_TOP_SUPERCHATTER_AMOUNT = "youtube_session_top_superchatter_amount",
|
|
2154
|
+
/** (YouTube) Top superchatter this week (cumulative giver). Use as {{youtube_week_top_superchatter}}. */
|
|
2155
|
+
YOUTUBE_WEEK_TOP_SUPERCHATTER = "youtube_week_top_superchatter",
|
|
2156
|
+
/** Amount for YOUTUBE_WEEK_TOP_SUPERCHATTER. Use as {{youtube_week_top_superchatter_amount}}. */
|
|
2157
|
+
YOUTUBE_WEEK_TOP_SUPERCHATTER_AMOUNT = "youtube_week_top_superchatter_amount",
|
|
2158
|
+
/** (YouTube) Top superchatter this month (cumulative giver). Use as {{youtube_month_top_superchatter}}. */
|
|
2159
|
+
YOUTUBE_MONTH_TOP_SUPERCHATTER = "youtube_month_top_superchatter",
|
|
2160
|
+
/** Amount for YOUTUBE_MONTH_TOP_SUPERCHATTER. Use as {{youtube_month_top_superchatter_amount}}. */
|
|
2161
|
+
YOUTUBE_MONTH_TOP_SUPERCHATTER_AMOUNT = "youtube_month_top_superchatter_amount",
|
|
2162
|
+
/** (YouTube) All-time top superchatter (cumulative giver). Use as {{youtube_alltime_top_superchatter}}. */
|
|
2163
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHATTER = "youtube_alltime_top_superchatter",
|
|
2164
|
+
/** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHATTER. Use as {{youtube_alltime_top_superchatter_amount}}. */
|
|
2165
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHATTER_AMOUNT = "youtube_alltime_top_superchatter_amount",
|
|
2166
|
+
/** Comma-separated list of recent followers. Use as {{recent_followers}}. */
|
|
2167
|
+
RECENT_FOLLOWERS = "recent_followers",
|
|
2168
|
+
/** Comma-separated list of recent subscribers. Use as {{recent_subscribers}}. */
|
|
2169
|
+
RECENT_SUBSCRIBERS = "recent_subscribers",
|
|
2170
|
+
/** Comma-separated list of recent hosts. Use as {{recent_hosts}}. */
|
|
2171
|
+
RECENT_HOSTS = "recent_hosts",
|
|
2172
|
+
/** Comma-separated list of recent raiders. Use as {{recent_raiders}}. */
|
|
2173
|
+
RECENT_RAIDERS = "recent_raiders",
|
|
2174
|
+
/** Parallel comma-separated viewer counts for RECENT_RAIDERS. Use as {{recent_raiders_amount}}. */
|
|
2175
|
+
RECENT_RAIDERS_AMOUNT = "recent_raiders_amount",
|
|
2176
|
+
/** Comma-separated list of recent cheerers. Use as {{recent_cheers}}. */
|
|
2177
|
+
RECENT_CHEERS = "recent_cheers",
|
|
2178
|
+
/** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
|
|
2179
|
+
RECENT_CHEERS_AMOUNT = "recent_cheers_amount",
|
|
2180
|
+
/** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
|
|
2181
|
+
RECENT_CHEER_PURCHASES = "recent_cheer_purchases",
|
|
2182
|
+
/** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
|
|
2183
|
+
RECENT_CHEER_PURCHASES_AMOUNT = "recent_cheer_purchases_amount",
|
|
2184
|
+
/** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
|
|
2185
|
+
RECENT_TIPS = "recent_tips",
|
|
2186
|
+
/** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
|
|
2187
|
+
RECENT_TIPS_AMOUNT = "recent_tips_amount",
|
|
2188
|
+
/** Comma-separated list of recent superchatters. Use as {{recent_superchats}}. */
|
|
2189
|
+
RECENT_SUPERCHATS = "recent_superchats",
|
|
2190
|
+
/** Parallel comma-separated superchat amounts for RECENT_SUPERCHATS. Use as {{recent_superchats_amount}}. */
|
|
2191
|
+
RECENT_SUPERCHATS_AMOUNT = "recent_superchats_amount",
|
|
2192
|
+
/** Comma-separated list of recent charity donors. Use as {{recent_charity_donations}}. */
|
|
2193
|
+
RECENT_CHARITY_DONATIONS = "recent_charity_donations",
|
|
2194
|
+
/** Parallel comma-separated donation amounts for RECENT_CHARITY_DONATIONS. Use as {{recent_charity_donations_amount}}. */
|
|
2195
|
+
RECENT_CHARITY_DONATIONS_AMOUNT = "recent_charity_donations_amount",
|
|
2020
2196
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
2021
2197
|
HEARTRATE_BPM = "heartrate_bpm"
|
|
2022
2198
|
}
|
|
@@ -1154,6 +1154,10 @@ export declare enum SystemVariables {
|
|
|
1154
1154
|
AI_PROMPT = "ai_prompt",
|
|
1155
1155
|
/** Current weather for a location via wttr.in. Returns a one-line summary like */
|
|
1156
1156
|
WEATHER = "weather",
|
|
1157
|
+
/** 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}}. */
|
|
1158
|
+
SAVE_LOCAL = "save_local",
|
|
1159
|
+
/** 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}}. */
|
|
1160
|
+
LOAD_LOCAL = "load_local",
|
|
1157
1161
|
/** Commands URL/page. Use in overlays as {{commands_url}}. */
|
|
1158
1162
|
COMMANDS_URL = "commands_url",
|
|
1159
1163
|
/** Session start time (ISO). Use as {{session_start_date}}. */
|
|
@@ -1303,12 +1307,16 @@ export declare enum SystemVariables {
|
|
|
1303
1307
|
LAST_SUBSCRIBER = "last_subscriber",
|
|
1304
1308
|
/** All-time top gifter (any platform). Use as {{alltime_top_gifter}}. */
|
|
1305
1309
|
ALLTIME_TOP_GIFTER = "alltime_top_gifter",
|
|
1306
|
-
/**
|
|
1307
|
-
|
|
1308
|
-
/**
|
|
1309
|
-
|
|
1310
|
-
/**
|
|
1311
|
-
|
|
1310
|
+
/** Most recent gifter (any platform), { name, amount }. Use as {{last_gifter}} / {{last_gifter.amount}}. */
|
|
1311
|
+
LAST_GIFTER = "last_gifter",
|
|
1312
|
+
/** Most recent gift recipient (any platform). Use as {{last_gifted}}. */
|
|
1313
|
+
LAST_GIFTED = "last_gifted",
|
|
1314
|
+
/** Cheers (bits/kicks) this session across all platforms. Use as {{session_cheers_count}}. */
|
|
1315
|
+
SESSION_CHEERS_COUNT = "session_cheers_count",
|
|
1316
|
+
/** Cheers this week across all platforms. Use as {{week_cheers_count}}. */
|
|
1317
|
+
WEEK_CHEERS_COUNT = "week_cheers_count",
|
|
1318
|
+
/** Cheers this month across all platforms. Use as {{month_cheers_count}}. */
|
|
1319
|
+
MONTH_CHEERS_COUNT = "month_cheers_count",
|
|
1312
1320
|
/** Top cheerer (by total bits) this session. Use as {{session_top_cheerer}}. */
|
|
1313
1321
|
SESSION_TOP_CHEERER = "session_top_cheerer",
|
|
1314
1322
|
/** Amount for SESSION_TOP_CHEERER. Use as {{session_top_cheerer_amount}}. */
|
|
@@ -1329,6 +1337,8 @@ export declare enum SystemVariables {
|
|
|
1329
1337
|
SESSION_TOP_CHEER = "session_top_cheer",
|
|
1330
1338
|
/** Amount for SESSION_TOP_CHEER. Use as {{session_top_cheer_amount}}. */
|
|
1331
1339
|
SESSION_TOP_CHEER_AMOUNT = "session_top_cheer_amount",
|
|
1340
|
+
/** Most recent cheer (bits/kicks, any platform), { name, amount }. Use as {{last_cheer}} / {{last_cheer.amount}}. */
|
|
1341
|
+
LAST_CHEER = "last_cheer",
|
|
1332
1342
|
/** Most recent raider/host (any platform). Use as {{last_raider}}. */
|
|
1333
1343
|
LAST_RAIDER = "last_raider",
|
|
1334
1344
|
/** Viewer count for LAST_RAIDER. Use as {{last_raid_amount}}. */
|
|
@@ -2017,6 +2027,172 @@ export declare enum SystemVariables {
|
|
|
2017
2027
|
DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
|
|
2018
2028
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
2019
2029
|
DONORDRIVE_TOTAL_RAISED = "donordrive_total_raised",
|
|
2030
|
+
/** (Twitch) Most recent channel-points redeemer name. Use as {{twitch_last_channel_points_redeemer}}. */
|
|
2031
|
+
TWITCH_LAST_CHANNEL_POINTS_REDEEMER = "twitch_last_channel_points_redeemer",
|
|
2032
|
+
/** Cost for TWITCH_LAST_CHANNEL_POINTS_REDEEMER. Use as {{twitch_last_channel_points_amount}}. */
|
|
2033
|
+
TWITCH_LAST_CHANNEL_POINTS_AMOUNT = "twitch_last_channel_points_amount",
|
|
2034
|
+
/** Follower goal target. Use as {{follower_goal}}. */
|
|
2035
|
+
FOLLOWER_GOAL = "follower_goal",
|
|
2036
|
+
/** Subscriber goal target. Use as {{subscriber_goal}}. */
|
|
2037
|
+
SUBSCRIBER_GOAL = "subscriber_goal",
|
|
2038
|
+
/** Cheer/bits goal target. Use as {{cheer_goal}}. */
|
|
2039
|
+
CHEER_GOAL = "cheer_goal",
|
|
2040
|
+
/** Tip/donation goal target. Use as {{tip_goal}}. */
|
|
2041
|
+
TIP_GOAL = "tip_goal",
|
|
2042
|
+
/** Superchat goal target. Use as {{superchat_goal}}. */
|
|
2043
|
+
SUPERCHAT_GOAL = "superchat_goal",
|
|
2044
|
+
/** Merch order count goal. Use as {{merch_goal_orders}}. */
|
|
2045
|
+
MERCH_GOAL_ORDERS = "merch_goal_orders",
|
|
2046
|
+
/** Merch item count goal. Use as {{merch_goal_items}}. */
|
|
2047
|
+
MERCH_GOAL_ITEMS = "merch_goal_items",
|
|
2048
|
+
/** Merch revenue goal. Use as {{merch_goal_total}}. */
|
|
2049
|
+
MERCH_GOAL_TOTAL = "merch_goal_total",
|
|
2050
|
+
/** Top tipper this session (cumulative giver). Use as {{session_top_tipper}}. */
|
|
2051
|
+
SESSION_TOP_TIPPER = "session_top_tipper",
|
|
2052
|
+
/** Amount for SESSION_TOP_TIPPER. Use as {{session_top_tipper_amount}}. */
|
|
2053
|
+
SESSION_TOP_TIPPER_AMOUNT = "session_top_tipper_amount",
|
|
2054
|
+
/** Top tipper this week (cumulative giver). Use as {{week_top_tipper}}. */
|
|
2055
|
+
WEEK_TOP_TIPPER = "week_top_tipper",
|
|
2056
|
+
/** Amount for WEEK_TOP_TIPPER. Use as {{week_top_tipper_amount}}. */
|
|
2057
|
+
WEEK_TOP_TIPPER_AMOUNT = "week_top_tipper_amount",
|
|
2058
|
+
/** Top tipper this month (cumulative giver). Use as {{month_top_tipper}}. */
|
|
2059
|
+
MONTH_TOP_TIPPER = "month_top_tipper",
|
|
2060
|
+
/** Amount for MONTH_TOP_TIPPER. Use as {{month_top_tipper_amount}}. */
|
|
2061
|
+
MONTH_TOP_TIPPER_AMOUNT = "month_top_tipper_amount",
|
|
2062
|
+
/** All-time top tipper (cumulative giver). Use as {{alltime_top_tipper}}. */
|
|
2063
|
+
ALLTIME_TOP_TIPPER = "alltime_top_tipper",
|
|
2064
|
+
/** Amount for ALLTIME_TOP_TIPPER. Use as {{alltime_top_tipper_amount}}. */
|
|
2065
|
+
ALLTIME_TOP_TIPPER_AMOUNT = "alltime_top_tipper_amount",
|
|
2066
|
+
/** Latest charity-campaign donor name. Use as {{last_charity_donator}}. */
|
|
2067
|
+
LAST_CHARITY_DONATOR = "last_charity_donator",
|
|
2068
|
+
/** Amount for LAST_CHARITY_DONATOR. Use as {{last_charity_donation_amount}}. */
|
|
2069
|
+
LAST_CHARITY_DONATION_AMOUNT = "last_charity_donation_amount",
|
|
2070
|
+
/** Largest single charity donation this session. Use as {{session_top_charity_donation}}. */
|
|
2071
|
+
SESSION_TOP_CHARITY_DONATION = "session_top_charity_donation",
|
|
2072
|
+
/** Amount for SESSION_TOP_CHARITY_DONATION. Use as {{session_top_charity_donation_amount}}. */
|
|
2073
|
+
SESSION_TOP_CHARITY_DONATION_AMOUNT = "session_top_charity_donation_amount",
|
|
2074
|
+
/** Largest single charity donation this week. Use as {{week_top_charity_donation}}. */
|
|
2075
|
+
WEEK_TOP_CHARITY_DONATION = "week_top_charity_donation",
|
|
2076
|
+
/** Amount for WEEK_TOP_CHARITY_DONATION. Use as {{week_top_charity_donation_amount}}. */
|
|
2077
|
+
WEEK_TOP_CHARITY_DONATION_AMOUNT = "week_top_charity_donation_amount",
|
|
2078
|
+
/** Largest single charity donation this month. Use as {{month_top_charity_donation}}. */
|
|
2079
|
+
MONTH_TOP_CHARITY_DONATION = "month_top_charity_donation",
|
|
2080
|
+
/** Amount for MONTH_TOP_CHARITY_DONATION. Use as {{month_top_charity_donation_amount}}. */
|
|
2081
|
+
MONTH_TOP_CHARITY_DONATION_AMOUNT = "month_top_charity_donation_amount",
|
|
2082
|
+
/** Largest single charity donation all-time. Use as {{alltime_top_charity_donation}}. */
|
|
2083
|
+
ALLTIME_TOP_CHARITY_DONATION = "alltime_top_charity_donation",
|
|
2084
|
+
/** Amount for ALLTIME_TOP_CHARITY_DONATION. Use as {{alltime_top_charity_donation_amount}}. */
|
|
2085
|
+
ALLTIME_TOP_CHARITY_DONATION_AMOUNT = "alltime_top_charity_donation_amount",
|
|
2086
|
+
/** Top charity donor this session (cumulative giver). Use as {{session_top_charity_donator}}. */
|
|
2087
|
+
SESSION_TOP_CHARITY_DONATOR = "session_top_charity_donator",
|
|
2088
|
+
/** Amount for SESSION_TOP_CHARITY_DONATOR. Use as {{session_top_charity_donator_amount}}. */
|
|
2089
|
+
SESSION_TOP_CHARITY_DONATOR_AMOUNT = "session_top_charity_donator_amount",
|
|
2090
|
+
/** Top charity donor this week (cumulative giver). Use as {{week_top_charity_donator}}. */
|
|
2091
|
+
WEEK_TOP_CHARITY_DONATOR = "week_top_charity_donator",
|
|
2092
|
+
/** Amount for WEEK_TOP_CHARITY_DONATOR. Use as {{week_top_charity_donator_amount}}. */
|
|
2093
|
+
WEEK_TOP_CHARITY_DONATOR_AMOUNT = "week_top_charity_donator_amount",
|
|
2094
|
+
/** Top charity donor this month (cumulative giver). Use as {{month_top_charity_donator}}. */
|
|
2095
|
+
MONTH_TOP_CHARITY_DONATOR = "month_top_charity_donator",
|
|
2096
|
+
/** Amount for MONTH_TOP_CHARITY_DONATOR. Use as {{month_top_charity_donator_amount}}. */
|
|
2097
|
+
MONTH_TOP_CHARITY_DONATOR_AMOUNT = "month_top_charity_donator_amount",
|
|
2098
|
+
/** All-time top charity donor (cumulative giver). Use as {{alltime_top_charity_donator}}. */
|
|
2099
|
+
ALLTIME_TOP_CHARITY_DONATOR = "alltime_top_charity_donator",
|
|
2100
|
+
/** Amount for ALLTIME_TOP_CHARITY_DONATOR. Use as {{alltime_top_charity_donator_amount}}. */
|
|
2101
|
+
ALLTIME_TOP_CHARITY_DONATOR_AMOUNT = "alltime_top_charity_donator_amount",
|
|
2102
|
+
/** Largest single cheer this week. Use as {{week_top_cheer}}. */
|
|
2103
|
+
WEEK_TOP_CHEER = "week_top_cheer",
|
|
2104
|
+
/** Amount for WEEK_TOP_CHEER. Use as {{week_top_cheer_amount}}. */
|
|
2105
|
+
WEEK_TOP_CHEER_AMOUNT = "week_top_cheer_amount",
|
|
2106
|
+
/** Largest single cheer this month. Use as {{month_top_cheer}}. */
|
|
2107
|
+
MONTH_TOP_CHEER = "month_top_cheer",
|
|
2108
|
+
/** Amount for MONTH_TOP_CHEER. Use as {{month_top_cheer_amount}}. */
|
|
2109
|
+
MONTH_TOP_CHEER_AMOUNT = "month_top_cheer_amount",
|
|
2110
|
+
/** Largest single cheer all-time. Use as {{alltime_top_cheer}}. */
|
|
2111
|
+
ALLTIME_TOP_CHEER = "alltime_top_cheer",
|
|
2112
|
+
/** Amount for ALLTIME_TOP_CHEER. Use as {{alltime_top_cheer_amount}}. */
|
|
2113
|
+
ALLTIME_TOP_CHEER_AMOUNT = "alltime_top_cheer_amount",
|
|
2114
|
+
/** (Twitch) Largest single cheer this week. Use as {{twitch_week_top_cheer}}. */
|
|
2115
|
+
TWITCH_WEEK_TOP_CHEER = "twitch_week_top_cheer",
|
|
2116
|
+
/** Amount for TWITCH_WEEK_TOP_CHEER. Use as {{twitch_week_top_cheer_amount}}. */
|
|
2117
|
+
TWITCH_WEEK_TOP_CHEER_AMOUNT = "twitch_week_top_cheer_amount",
|
|
2118
|
+
/** (Twitch) Largest single cheer this month. Use as {{twitch_month_top_cheer}}. */
|
|
2119
|
+
TWITCH_MONTH_TOP_CHEER = "twitch_month_top_cheer",
|
|
2120
|
+
/** Amount for TWITCH_MONTH_TOP_CHEER. Use as {{twitch_month_top_cheer_amount}}. */
|
|
2121
|
+
TWITCH_MONTH_TOP_CHEER_AMOUNT = "twitch_month_top_cheer_amount",
|
|
2122
|
+
/** (Twitch) Largest single cheer all-time. Use as {{twitch_alltime_top_cheer}}. */
|
|
2123
|
+
TWITCH_ALLTIME_TOP_CHEER = "twitch_alltime_top_cheer",
|
|
2124
|
+
/** Amount for TWITCH_ALLTIME_TOP_CHEER. Use as {{twitch_alltime_top_cheer_amount}}. */
|
|
2125
|
+
TWITCH_ALLTIME_TOP_CHEER_AMOUNT = "twitch_alltime_top_cheer_amount",
|
|
2126
|
+
/** (YouTube) Running superchat amount this session. Use as {{youtube_session_superchat_amount}}. */
|
|
2127
|
+
YOUTUBE_SESSION_SUPERCHAT_AMOUNT = "youtube_session_superchat_amount",
|
|
2128
|
+
/** (YouTube) Running superchat amount this week. Use as {{youtube_week_superchat_amount}}. */
|
|
2129
|
+
YOUTUBE_WEEK_SUPERCHAT_AMOUNT = "youtube_week_superchat_amount",
|
|
2130
|
+
/** (YouTube) Running superchat amount this month. Use as {{youtube_month_superchat_amount}}. */
|
|
2131
|
+
YOUTUBE_MONTH_SUPERCHAT_AMOUNT = "youtube_month_superchat_amount",
|
|
2132
|
+
/** (YouTube) Running superchat amount all-time. Use as {{youtube_total_superchat_amount}}. */
|
|
2133
|
+
YOUTUBE_TOTAL_SUPERCHAT_AMOUNT = "youtube_total_superchat_amount",
|
|
2134
|
+
/** (YouTube) Largest single superchat this session. Use as {{youtube_session_top_superchat}}. */
|
|
2135
|
+
YOUTUBE_SESSION_TOP_SUPERCHAT = "youtube_session_top_superchat",
|
|
2136
|
+
/** Amount for YOUTUBE_SESSION_TOP_SUPERCHAT. Use as {{youtube_session_top_superchat_amount}}. */
|
|
2137
|
+
YOUTUBE_SESSION_TOP_SUPERCHAT_AMOUNT = "youtube_session_top_superchat_amount",
|
|
2138
|
+
/** (YouTube) Largest single superchat this week. Use as {{youtube_week_top_superchat}}. */
|
|
2139
|
+
YOUTUBE_WEEK_TOP_SUPERCHAT = "youtube_week_top_superchat",
|
|
2140
|
+
/** Amount for YOUTUBE_WEEK_TOP_SUPERCHAT. Use as {{youtube_week_top_superchat_amount}}. */
|
|
2141
|
+
YOUTUBE_WEEK_TOP_SUPERCHAT_AMOUNT = "youtube_week_top_superchat_amount",
|
|
2142
|
+
/** (YouTube) Largest single superchat this month. Use as {{youtube_month_top_superchat}}. */
|
|
2143
|
+
YOUTUBE_MONTH_TOP_SUPERCHAT = "youtube_month_top_superchat",
|
|
2144
|
+
/** Amount for YOUTUBE_MONTH_TOP_SUPERCHAT. Use as {{youtube_month_top_superchat_amount}}. */
|
|
2145
|
+
YOUTUBE_MONTH_TOP_SUPERCHAT_AMOUNT = "youtube_month_top_superchat_amount",
|
|
2146
|
+
/** (YouTube) Largest single superchat all-time. Use as {{youtube_alltime_top_superchat}}. */
|
|
2147
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHAT = "youtube_alltime_top_superchat",
|
|
2148
|
+
/** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHAT. Use as {{youtube_alltime_top_superchat_amount}}. */
|
|
2149
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHAT_AMOUNT = "youtube_alltime_top_superchat_amount",
|
|
2150
|
+
/** (YouTube) Top superchatter this session (cumulative giver). Use as {{youtube_session_top_superchatter}}. */
|
|
2151
|
+
YOUTUBE_SESSION_TOP_SUPERCHATTER = "youtube_session_top_superchatter",
|
|
2152
|
+
/** Amount for YOUTUBE_SESSION_TOP_SUPERCHATTER. Use as {{youtube_session_top_superchatter_amount}}. */
|
|
2153
|
+
YOUTUBE_SESSION_TOP_SUPERCHATTER_AMOUNT = "youtube_session_top_superchatter_amount",
|
|
2154
|
+
/** (YouTube) Top superchatter this week (cumulative giver). Use as {{youtube_week_top_superchatter}}. */
|
|
2155
|
+
YOUTUBE_WEEK_TOP_SUPERCHATTER = "youtube_week_top_superchatter",
|
|
2156
|
+
/** Amount for YOUTUBE_WEEK_TOP_SUPERCHATTER. Use as {{youtube_week_top_superchatter_amount}}. */
|
|
2157
|
+
YOUTUBE_WEEK_TOP_SUPERCHATTER_AMOUNT = "youtube_week_top_superchatter_amount",
|
|
2158
|
+
/** (YouTube) Top superchatter this month (cumulative giver). Use as {{youtube_month_top_superchatter}}. */
|
|
2159
|
+
YOUTUBE_MONTH_TOP_SUPERCHATTER = "youtube_month_top_superchatter",
|
|
2160
|
+
/** Amount for YOUTUBE_MONTH_TOP_SUPERCHATTER. Use as {{youtube_month_top_superchatter_amount}}. */
|
|
2161
|
+
YOUTUBE_MONTH_TOP_SUPERCHATTER_AMOUNT = "youtube_month_top_superchatter_amount",
|
|
2162
|
+
/** (YouTube) All-time top superchatter (cumulative giver). Use as {{youtube_alltime_top_superchatter}}. */
|
|
2163
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHATTER = "youtube_alltime_top_superchatter",
|
|
2164
|
+
/** Amount for YOUTUBE_ALLTIME_TOP_SUPERCHATTER. Use as {{youtube_alltime_top_superchatter_amount}}. */
|
|
2165
|
+
YOUTUBE_ALLTIME_TOP_SUPERCHATTER_AMOUNT = "youtube_alltime_top_superchatter_amount",
|
|
2166
|
+
/** Comma-separated list of recent followers. Use as {{recent_followers}}. */
|
|
2167
|
+
RECENT_FOLLOWERS = "recent_followers",
|
|
2168
|
+
/** Comma-separated list of recent subscribers. Use as {{recent_subscribers}}. */
|
|
2169
|
+
RECENT_SUBSCRIBERS = "recent_subscribers",
|
|
2170
|
+
/** Comma-separated list of recent hosts. Use as {{recent_hosts}}. */
|
|
2171
|
+
RECENT_HOSTS = "recent_hosts",
|
|
2172
|
+
/** Comma-separated list of recent raiders. Use as {{recent_raiders}}. */
|
|
2173
|
+
RECENT_RAIDERS = "recent_raiders",
|
|
2174
|
+
/** Parallel comma-separated viewer counts for RECENT_RAIDERS. Use as {{recent_raiders_amount}}. */
|
|
2175
|
+
RECENT_RAIDERS_AMOUNT = "recent_raiders_amount",
|
|
2176
|
+
/** Comma-separated list of recent cheerers. Use as {{recent_cheers}}. */
|
|
2177
|
+
RECENT_CHEERS = "recent_cheers",
|
|
2178
|
+
/** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
|
|
2179
|
+
RECENT_CHEERS_AMOUNT = "recent_cheers_amount",
|
|
2180
|
+
/** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
|
|
2181
|
+
RECENT_CHEER_PURCHASES = "recent_cheer_purchases",
|
|
2182
|
+
/** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
|
|
2183
|
+
RECENT_CHEER_PURCHASES_AMOUNT = "recent_cheer_purchases_amount",
|
|
2184
|
+
/** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
|
|
2185
|
+
RECENT_TIPS = "recent_tips",
|
|
2186
|
+
/** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
|
|
2187
|
+
RECENT_TIPS_AMOUNT = "recent_tips_amount",
|
|
2188
|
+
/** Comma-separated list of recent superchatters. Use as {{recent_superchats}}. */
|
|
2189
|
+
RECENT_SUPERCHATS = "recent_superchats",
|
|
2190
|
+
/** Parallel comma-separated superchat amounts for RECENT_SUPERCHATS. Use as {{recent_superchats_amount}}. */
|
|
2191
|
+
RECENT_SUPERCHATS_AMOUNT = "recent_superchats_amount",
|
|
2192
|
+
/** Comma-separated list of recent charity donors. Use as {{recent_charity_donations}}. */
|
|
2193
|
+
RECENT_CHARITY_DONATIONS = "recent_charity_donations",
|
|
2194
|
+
/** Parallel comma-separated donation amounts for RECENT_CHARITY_DONATIONS. Use as {{recent_charity_donations_amount}}. */
|
|
2195
|
+
RECENT_CHARITY_DONATIONS_AMOUNT = "recent_charity_donations_amount",
|
|
2020
2196
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
2021
2197
|
HEARTRATE_BPM = "heartrate_bpm"
|
|
2022
2198
|
}
|