@lumiastream/lumia-types 3.6.1 → 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 +166 -0
- package/dist/custom-overlays.d.ts +166 -0
- package/dist/esm/variables.types.js +256 -0
- package/dist/variables.types.d.ts +166 -0
- package/dist/variables.types.js +256 -0
- package/package.json +1 -1
|
@@ -2027,6 +2027,172 @@ export declare enum SystemVariables {
|
|
|
2027
2027
|
DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
|
|
2028
2028
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
2029
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",
|
|
2030
2196
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
2031
2197
|
HEARTRATE_BPM = "heartrate_bpm"
|
|
2032
2198
|
}
|
|
@@ -2027,6 +2027,172 @@ export declare enum SystemVariables {
|
|
|
2027
2027
|
DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
|
|
2028
2028
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
2029
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",
|
|
2030
2196
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
2031
2197
|
HEARTRATE_BPM = "heartrate_bpm"
|
|
2032
2198
|
}
|
|
@@ -985,6 +985,179 @@ export var SystemVariables;
|
|
|
985
985
|
SystemVariables["DONORDRIVE_GOAL_AMOUNT"] = "donordrive_goal_amount";
|
|
986
986
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
987
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";
|
|
988
1161
|
// ────────────────────────────────── Sensors ────────────────────────────────────
|
|
989
1162
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
990
1163
|
SystemVariables["HEARTRATE_BPM"] = "heartrate_bpm";
|
|
@@ -1271,6 +1444,61 @@ export const AllVariables = {
|
|
|
1271
1444
|
'now_playing_beatport_id',
|
|
1272
1445
|
'now_playing_file_path',
|
|
1273
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',
|
|
1274
1502
|
],
|
|
1275
1503
|
chat: {
|
|
1276
1504
|
cooldowns: ['cooldown_time_remaining'],
|
|
@@ -2518,6 +2746,14 @@ export const AllVariables = {
|
|
|
2518
2746
|
'twitch_hypetrain_top_contributor_amount',
|
|
2519
2747
|
'twitch_alltime_top_cheerer',
|
|
2520
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',
|
|
2521
2757
|
'top_cheerer_list',
|
|
2522
2758
|
'top_cheerer_list_amount',
|
|
2523
2759
|
'week_top_cheerer_list',
|
|
@@ -2774,6 +3010,26 @@ export const AllVariables = {
|
|
|
2774
3010
|
'youtube_month_subscriber_count',
|
|
2775
3011
|
'youtube_total_subscriber_count',
|
|
2776
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',
|
|
2777
3033
|
'youtube_last_superchatter',
|
|
2778
3034
|
'youtube_session_superchatters',
|
|
2779
3035
|
'youtube_session_supersticker_count',
|
|
@@ -959,6 +959,172 @@ export declare enum SystemVariables {
|
|
|
959
959
|
DONORDRIVE_GOAL_AMOUNT = "donordrive_goal_amount",
|
|
960
960
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
961
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",
|
|
962
1128
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
963
1129
|
HEARTRATE_BPM = "heartrate_bpm"
|
|
964
1130
|
}
|
package/dist/variables.types.js
CHANGED
|
@@ -990,6 +990,179 @@ var SystemVariables;
|
|
|
990
990
|
SystemVariables["DONORDRIVE_GOAL_AMOUNT"] = "donordrive_goal_amount";
|
|
991
991
|
/** DonorDrive campaign amount raised so far. Use as {{donordrive_total_raised}}. */
|
|
992
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";
|
|
993
1166
|
// ────────────────────────────────── Sensors ────────────────────────────────────
|
|
994
1167
|
/** Heart rate BPM (Pulsoid/Hyperate). Use as {{heartrate_bpm}}. */
|
|
995
1168
|
SystemVariables["HEARTRATE_BPM"] = "heartrate_bpm";
|
|
@@ -1276,6 +1449,61 @@ exports.AllVariables = {
|
|
|
1276
1449
|
'now_playing_beatport_id',
|
|
1277
1450
|
'now_playing_file_path',
|
|
1278
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',
|
|
1279
1507
|
],
|
|
1280
1508
|
chat: {
|
|
1281
1509
|
cooldowns: ['cooldown_time_remaining'],
|
|
@@ -2523,6 +2751,14 @@ exports.AllVariables = {
|
|
|
2523
2751
|
'twitch_hypetrain_top_contributor_amount',
|
|
2524
2752
|
'twitch_alltime_top_cheerer',
|
|
2525
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',
|
|
2526
2762
|
'top_cheerer_list',
|
|
2527
2763
|
'top_cheerer_list_amount',
|
|
2528
2764
|
'week_top_cheerer_list',
|
|
@@ -2779,6 +3015,26 @@ exports.AllVariables = {
|
|
|
2779
3015
|
'youtube_month_subscriber_count',
|
|
2780
3016
|
'youtube_total_subscriber_count',
|
|
2781
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',
|
|
2782
3038
|
'youtube_last_superchatter',
|
|
2783
3039
|
'youtube_session_superchatters',
|
|
2784
3040
|
'youtube_session_supersticker_count',
|