@lumiastream/lumia-types 3.3.5 → 3.3.6
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 +132 -0
- package/dist/custom-overlays.d.ts +132 -0
- package/dist/variables.types.d.ts +132 -0
- package/dist/variables.types.js +198 -0
- package/package.json +1 -1
|
@@ -1004,6 +1004,30 @@ export declare enum SystemVariables {
|
|
|
1004
1004
|
SESSION_DONATOR_LIST_WITH_AMOUNT = "session_donator_list_with_amount",
|
|
1005
1005
|
/** Raw donation total ignoring currency. Use as {{total_raw_donation_amount}}. */
|
|
1006
1006
|
TOTAL_RAW_DONATION_AMOUNT = "total_raw_donation_amount",
|
|
1007
|
+
/** Donation sum for the current calendar week. Use as {{week_donation_amount}}. */
|
|
1008
|
+
WEEK_DONATION_AMOUNT = "week_donation_amount",
|
|
1009
|
+
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
1010
|
+
MONTH_DONATION_AMOUNT = "month_donation_amount",
|
|
1011
|
+
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
1012
|
+
WEEK_DONATION_COUNT = "week_donation_count",
|
|
1013
|
+
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
1014
|
+
MONTH_DONATION_COUNT = "month_donation_count",
|
|
1015
|
+
/** Top donator for the current calendar week. Use as {{week_top_donator}}. */
|
|
1016
|
+
WEEK_TOP_DONATOR = "week_top_donator",
|
|
1017
|
+
/** Amount for WEEK_TOP_DONATOR. Use as {{week_top_donator_amount}}. */
|
|
1018
|
+
WEEK_TOP_DONATOR_AMOUNT = "week_top_donator_amount",
|
|
1019
|
+
/** Top donators this week (top 10, comma-separated usernames). Use as {{week_top_donator_list}}. */
|
|
1020
|
+
WEEK_TOP_DONATOR_LIST = "week_top_donator_list",
|
|
1021
|
+
/** Amounts for WEEK_TOP_DONATOR_LIST (parallel comma-separated). Use as {{week_top_donator_list_amount}}. */
|
|
1022
|
+
WEEK_TOP_DONATOR_LIST_AMOUNT = "week_top_donator_list_amount",
|
|
1023
|
+
/** Top donator for the current calendar month. Use as {{month_top_donator}}. */
|
|
1024
|
+
MONTH_TOP_DONATOR = "month_top_donator",
|
|
1025
|
+
/** Amount for MONTH_TOP_DONATOR. Use as {{month_top_donator_amount}}. */
|
|
1026
|
+
MONTH_TOP_DONATOR_AMOUNT = "month_top_donator_amount",
|
|
1027
|
+
/** Top donators this month. Use as {{month_top_donator_list}}. */
|
|
1028
|
+
MONTH_TOP_DONATOR_LIST = "month_top_donator_list",
|
|
1029
|
+
/** Amounts for MONTH_TOP_DONATOR_LIST. Use as {{month_top_donator_list_amount}}. */
|
|
1030
|
+
MONTH_TOP_DONATOR_LIST_AMOUNT = "month_top_donator_list_amount",
|
|
1007
1031
|
/** Raffle title. Use as {{raffle_title}}. */
|
|
1008
1032
|
RAFFLE_TITLE = "raffle_title",
|
|
1009
1033
|
/** Raffle description. Use as {{raffle_description}}. */
|
|
@@ -1092,14 +1116,32 @@ export declare enum SystemVariables {
|
|
|
1092
1116
|
TWITCH_CURRENT_FOLLOWERS = "twitch_current_followers",
|
|
1093
1117
|
/** Session followers count. Use as {{twitch_session_follower_count}}. */
|
|
1094
1118
|
TWITCH_SESSION_FOLLOWER_COUNT = "twitch_session_follower_count",
|
|
1119
|
+
/** Followers for the current calendar week. Use as {{twitch_week_follower_count}}. */
|
|
1120
|
+
TWITCH_WEEK_FOLLOWER_COUNT = "twitch_week_follower_count",
|
|
1121
|
+
/** Followers for the current calendar month. Use as {{twitch_month_follower_count}}. */
|
|
1122
|
+
TWITCH_MONTH_FOLLOWER_COUNT = "twitch_month_follower_count",
|
|
1095
1123
|
/** Current subscribers (comma-separated). Use as {{twitch_current_subscribers}}. */
|
|
1096
1124
|
TWITCH_CURRENT_SUBSCRIBERS = "twitch_current_subscribers",
|
|
1097
1125
|
/** Lifetime total subs. Use as {{twitch_total_subscriber_count}}. */
|
|
1098
1126
|
TWITCH_TOTAL_SUBSCRIBER_COUNT = "twitch_total_subscriber_count",
|
|
1099
1127
|
/** Session subs count. Use as {{twitch_session_subscribers_count}}. */
|
|
1100
1128
|
TWITCH_SESSION_SUBSCRIBERS_COUNT = "twitch_session_subscribers_count",
|
|
1129
|
+
/** Session NEW subscribers (excluding resubs / gifts). Use as {{twitch_session_new_subscribers_count}}. */
|
|
1130
|
+
TWITCH_SESSION_NEW_SUBSCRIBERS_COUNT = "twitch_session_new_subscribers_count",
|
|
1131
|
+
/** Session resubscribers (excluding new / gifts). Use as {{twitch_session_resub_subscribers_count}}. */
|
|
1132
|
+
TWITCH_SESSION_RESUB_SUBSCRIBERS_COUNT = "twitch_session_resub_subscribers_count",
|
|
1133
|
+
/** Session gifted subscribers. Use as {{twitch_session_gifted_subscribers_count}}. */
|
|
1134
|
+
TWITCH_SESSION_GIFTED_SUBSCRIBERS_COUNT = "twitch_session_gifted_subscribers_count",
|
|
1135
|
+
/** Subscribers for the current calendar week. Use as {{twitch_week_subscriber_count}}. */
|
|
1136
|
+
TWITCH_WEEK_SUBSCRIBER_COUNT = "twitch_week_subscriber_count",
|
|
1137
|
+
/** Subscribers for the current calendar month. Use as {{twitch_month_subscriber_count}}. */
|
|
1138
|
+
TWITCH_MONTH_SUBSCRIBER_COUNT = "twitch_month_subscriber_count",
|
|
1101
1139
|
/** Session gifts count. Use as {{twitch_session_gifts_count}}. */
|
|
1102
1140
|
TWITCH_SESSION_GIFTS_COUNT = "twitch_session_gifts_count",
|
|
1141
|
+
/** All-time top gifter. Use as {{twitch_alltime_top_gifter}}. */
|
|
1142
|
+
TWITCH_ALLTIME_TOP_GIFTER = "twitch_alltime_top_gifter",
|
|
1143
|
+
/** Lifetime gift count for TWITCH_ALLTIME_TOP_GIFTER. Use as {{twitch_alltime_top_gifter_amount}}. */
|
|
1144
|
+
TWITCH_ALLTIME_TOP_GIFTER_AMOUNT = "twitch_alltime_top_gifter_amount",
|
|
1103
1145
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
1104
1146
|
TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT = "twitch_total_gift_subscription_count",
|
|
1105
1147
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
@@ -1138,6 +1180,10 @@ export declare enum SystemVariables {
|
|
|
1138
1180
|
TWITCH_TOTAL_BITS_COUNT = "twitch_total_bits_count",
|
|
1139
1181
|
/** Session bits count. Use as {{twitch_session_bits_count}}. */
|
|
1140
1182
|
TWITCH_SESSION_BITS_COUNT = "twitch_session_bits_count",
|
|
1183
|
+
/** Bits for the current calendar week. Use as {{twitch_week_bits_count}}. */
|
|
1184
|
+
TWITCH_WEEK_BITS_COUNT = "twitch_week_bits_count",
|
|
1185
|
+
/** Bits for the current calendar month. Use as {{twitch_month_bits_count}}. */
|
|
1186
|
+
TWITCH_MONTH_BITS_COUNT = "twitch_month_bits_count",
|
|
1141
1187
|
/** Last bit sender. Use as {{twitch_last_bit}}. */
|
|
1142
1188
|
TWITCH_LAST_BIT = "twitch_last_bit",
|
|
1143
1189
|
/** Last bit amount. Use as {{twitch_last_bit_amount}}. */
|
|
@@ -1146,6 +1192,64 @@ export declare enum SystemVariables {
|
|
|
1146
1192
|
TWITCH_SESSION_BITS = "twitch_session_bits",
|
|
1147
1193
|
/** Session bits with amounts list. Use as {{twitch_session_bits_with_amount}}. */
|
|
1148
1194
|
TWITCH_SESSION_BITS_WITH_AMOUNT = "twitch_session_bits_with_amount",
|
|
1195
|
+
/** Top single cheer this session. Use as {{twitch_session_top_cheer}}. */
|
|
1196
|
+
TWITCH_SESSION_TOP_CHEER = "twitch_session_top_cheer",
|
|
1197
|
+
/** Amount for TWITCH_SESSION_TOP_CHEER. Use as {{twitch_session_top_cheer_amount}}. */
|
|
1198
|
+
TWITCH_SESSION_TOP_CHEER_AMOUNT = "twitch_session_top_cheer_amount",
|
|
1199
|
+
/** Top cheerer this session (by total bits). Use as {{twitch_session_top_cheerer}}. */
|
|
1200
|
+
TWITCH_SESSION_TOP_CHEERER = "twitch_session_top_cheerer",
|
|
1201
|
+
/** Total bits for TWITCH_SESSION_TOP_CHEERER. Use as {{twitch_session_top_cheerer_amount}}. */
|
|
1202
|
+
TWITCH_SESSION_TOP_CHEERER_AMOUNT = "twitch_session_top_cheerer_amount",
|
|
1203
|
+
/** Top cheerer for the current calendar week. Use as {{twitch_week_top_cheerer}}. */
|
|
1204
|
+
TWITCH_WEEK_TOP_CHEERER = "twitch_week_top_cheerer",
|
|
1205
|
+
/** Total bits for TWITCH_WEEK_TOP_CHEERER. Use as {{twitch_week_top_cheerer_amount}}. */
|
|
1206
|
+
TWITCH_WEEK_TOP_CHEERER_AMOUNT = "twitch_week_top_cheerer_amount",
|
|
1207
|
+
/** Top cheerer for the current calendar month. Use as {{twitch_month_top_cheerer}}. */
|
|
1208
|
+
TWITCH_MONTH_TOP_CHEERER = "twitch_month_top_cheerer",
|
|
1209
|
+
/** Total bits for TWITCH_MONTH_TOP_CHEERER. Use as {{twitch_month_top_cheerer_amount}}. */
|
|
1210
|
+
TWITCH_MONTH_TOP_CHEERER_AMOUNT = "twitch_month_top_cheerer_amount",
|
|
1211
|
+
/** Whether a hype train is currently active (true/false). Use as {{twitch_hypetrain_active}}. */
|
|
1212
|
+
TWITCH_HYPETRAIN_ACTIVE = "twitch_hypetrain_active",
|
|
1213
|
+
/** Current hype train level. Use as {{twitch_hypetrain_level}}. */
|
|
1214
|
+
TWITCH_HYPETRAIN_LEVEL = "twitch_hypetrain_level",
|
|
1215
|
+
/** Current hype train progress toward the next level. Use as {{twitch_hypetrain_progress}}. */
|
|
1216
|
+
TWITCH_HYPETRAIN_PROGRESS = "twitch_hypetrain_progress",
|
|
1217
|
+
/** Target value to reach the next hype train level. Use as {{twitch_hypetrain_level_goal}}. */
|
|
1218
|
+
TWITCH_HYPETRAIN_LEVEL_GOAL = "twitch_hypetrain_level_goal",
|
|
1219
|
+
/** Total contributions this hype train (running sum). Use as {{twitch_hypetrain_total}}. */
|
|
1220
|
+
TWITCH_HYPETRAIN_TOTAL = "twitch_hypetrain_total",
|
|
1221
|
+
/** Top contributor for the current hype train. Use as {{twitch_hypetrain_top_contributor}}. */
|
|
1222
|
+
TWITCH_HYPETRAIN_TOP_CONTRIBUTOR = "twitch_hypetrain_top_contributor",
|
|
1223
|
+
/** Amount contributed by TWITCH_HYPETRAIN_TOP_CONTRIBUTOR. Use as {{twitch_hypetrain_top_contributor_amount}}. */
|
|
1224
|
+
TWITCH_HYPETRAIN_TOP_CONTRIBUTOR_AMOUNT = "twitch_hypetrain_top_contributor_amount",
|
|
1225
|
+
/** All-time top cheerer (by total bits). Use as {{twitch_alltime_top_cheerer}}. */
|
|
1226
|
+
TWITCH_ALLTIME_TOP_CHEERER = "twitch_alltime_top_cheerer",
|
|
1227
|
+
/** Total bits for TWITCH_ALLTIME_TOP_CHEERER. Use as {{twitch_alltime_top_cheerer_amount}}. */
|
|
1228
|
+
TWITCH_ALLTIME_TOP_CHEERER_AMOUNT = "twitch_alltime_top_cheerer_amount",
|
|
1229
|
+
/** Top cheerers list (top 10, comma-separated usernames, sorted by total bits). Use as {{top_cheerer_list}}. */
|
|
1230
|
+
TOP_CHEERER_LIST = "top_cheerer_list",
|
|
1231
|
+
/** Total bits for TOP_CHEERER_LIST (parallel comma-separated). Use as {{top_cheerer_list_amount}}. */
|
|
1232
|
+
TOP_CHEERER_LIST_AMOUNT = "top_cheerer_list_amount",
|
|
1233
|
+
/** Top cheerers this week (top 10, comma-separated usernames). Use as {{week_top_cheerer_list}}. */
|
|
1234
|
+
WEEK_TOP_CHEERER_LIST = "week_top_cheerer_list",
|
|
1235
|
+
/** Total bits for WEEK_TOP_CHEERER_LIST (parallel comma-separated). Use as {{week_top_cheerer_list_amount}}. */
|
|
1236
|
+
WEEK_TOP_CHEERER_LIST_AMOUNT = "week_top_cheerer_list_amount",
|
|
1237
|
+
/** Top cheerers this month. Use as {{month_top_cheerer_list}}. */
|
|
1238
|
+
MONTH_TOP_CHEERER_LIST = "month_top_cheerer_list",
|
|
1239
|
+
/** Total bits for MONTH_TOP_CHEERER_LIST. Use as {{month_top_cheerer_list_amount}}. */
|
|
1240
|
+
MONTH_TOP_CHEERER_LIST_AMOUNT = "month_top_cheerer_list_amount",
|
|
1241
|
+
/** Top gifters list (top 10, comma-separated usernames, sorted by lifetime gifted subs). Use as {{top_gifter_list}}. */
|
|
1242
|
+
TOP_GIFTER_LIST = "top_gifter_list",
|
|
1243
|
+
/** Total gifts for TOP_GIFTER_LIST (parallel comma-separated). Use as {{top_gifter_list_amount}}. */
|
|
1244
|
+
TOP_GIFTER_LIST_AMOUNT = "top_gifter_list_amount",
|
|
1245
|
+
/** Top gifters this week. Use as {{week_top_gifter_list}}. */
|
|
1246
|
+
WEEK_TOP_GIFTER_LIST = "week_top_gifter_list",
|
|
1247
|
+
/** Total gifts for WEEK_TOP_GIFTER_LIST. Use as {{week_top_gifter_list_amount}}. */
|
|
1248
|
+
WEEK_TOP_GIFTER_LIST_AMOUNT = "week_top_gifter_list_amount",
|
|
1249
|
+
/** Top gifters this month. Use as {{month_top_gifter_list}}. */
|
|
1250
|
+
MONTH_TOP_GIFTER_LIST = "month_top_gifter_list",
|
|
1251
|
+
/** Total gifts for MONTH_TOP_GIFTER_LIST. Use as {{month_top_gifter_list_amount}}. */
|
|
1252
|
+
MONTH_TOP_GIFTER_LIST_AMOUNT = "month_top_gifter_list_amount",
|
|
1149
1253
|
/** Last clip ID. Use as {{twitch_last_clip_id}}. */
|
|
1150
1254
|
TWITCH_LAST_CLIP_ID = "twitch_last_clip_id",
|
|
1151
1255
|
/** Last clip URL. Use as {{twitch_last_clip_url}}. */
|
|
@@ -1192,6 +1296,10 @@ export declare enum SystemVariables {
|
|
|
1192
1296
|
YOUTUBE_LAST_CHATTER = "youtube_last_chatter",
|
|
1193
1297
|
/** Session subscriber count. Use as {{youtube_session_subscriber_count}}. */
|
|
1194
1298
|
YOUTUBE_SESSION_SUBSCRIBER_COUNT = "youtube_session_subscriber_count",
|
|
1299
|
+
/** Subscribers for the current calendar week. Use as {{youtube_week_subscriber_count}}. */
|
|
1300
|
+
YOUTUBE_WEEK_SUBSCRIBER_COUNT = "youtube_week_subscriber_count",
|
|
1301
|
+
/** Subscribers for the current calendar month. Use as {{youtube_month_subscriber_count}}. */
|
|
1302
|
+
YOUTUBE_MONTH_SUBSCRIBER_COUNT = "youtube_month_subscriber_count",
|
|
1195
1303
|
/** Lifetime subscriber count. Use as {{youtube_total_subscriber_count}}. */
|
|
1196
1304
|
YOUTUBE_TOTAL_SUBSCRIBER_COUNT = "youtube_total_subscriber_count",
|
|
1197
1305
|
/** Session SuperChat count. Use as {{youtube_session_superchat_count}}. */
|
|
@@ -1210,6 +1318,10 @@ export declare enum SystemVariables {
|
|
|
1210
1318
|
YOUTUBE_TOTAL_MEMBER_COUNT = "youtube_total_member_count",
|
|
1211
1319
|
/** Session member count. Use as {{youtube_session_member_count}}. */
|
|
1212
1320
|
YOUTUBE_SESSION_MEMBER_COUNT = "youtube_session_member_count",
|
|
1321
|
+
/** Members for the current calendar week. Use as {{youtube_week_member_count}}. */
|
|
1322
|
+
YOUTUBE_WEEK_MEMBER_COUNT = "youtube_week_member_count",
|
|
1323
|
+
/** Members for the current calendar month. Use as {{youtube_month_member_count}}. */
|
|
1324
|
+
YOUTUBE_MONTH_MEMBER_COUNT = "youtube_month_member_count",
|
|
1213
1325
|
/** Last member. Use as {{youtube_last_member}}. */
|
|
1214
1326
|
YOUTUBE_LAST_MEMBER = "youtube_last_member",
|
|
1215
1327
|
/** Session members (list). Use as {{youtube_session_members}}. */
|
|
@@ -1254,10 +1366,18 @@ export declare enum SystemVariables {
|
|
|
1254
1366
|
FACEBOOK_TOTAL_FOLLOWER_COUNT = "facebook_total_follower_count",
|
|
1255
1367
|
/** Session follower count. Use as {{facebook_session_follower_count}}. */
|
|
1256
1368
|
FACEBOOK_SESSION_FOLLOWER_COUNT = "facebook_session_follower_count",
|
|
1369
|
+
/** Followers for the current calendar week. Use as {{facebook_week_follower_count}}. */
|
|
1370
|
+
FACEBOOK_WEEK_FOLLOWER_COUNT = "facebook_week_follower_count",
|
|
1371
|
+
/** Followers for the current calendar month. Use as {{facebook_month_follower_count}}. */
|
|
1372
|
+
FACEBOOK_MONTH_FOLLOWER_COUNT = "facebook_month_follower_count",
|
|
1257
1373
|
/** Lifetime fan count. Use as {{facebook_total_fan_count}}. */
|
|
1258
1374
|
FACEBOOK_TOTAL_FAN_COUNT = "facebook_total_fan_count",
|
|
1259
1375
|
/** Session fan count. Use as {{facebook_session_fan_count}}. */
|
|
1260
1376
|
FACEBOOK_SESSION_FAN_COUNT = "facebook_session_fan_count",
|
|
1377
|
+
/** Fans for the current calendar week. Use as {{facebook_week_fan_count}}. */
|
|
1378
|
+
FACEBOOK_WEEK_FAN_COUNT = "facebook_week_fan_count",
|
|
1379
|
+
/** Fans for the current calendar month. Use as {{facebook_month_fan_count}}. */
|
|
1380
|
+
FACEBOOK_MONTH_FAN_COUNT = "facebook_month_fan_count",
|
|
1261
1381
|
/** Session reaction count. Use as {{facebook_reaction_count}}. */
|
|
1262
1382
|
FACEBOOK_REACTION_COUNT = "facebook_reaction_count",
|
|
1263
1383
|
/** Last Stars sender. Use as {{facebook_last_star}}. */
|
|
@@ -1286,6 +1406,10 @@ export declare enum SystemVariables {
|
|
|
1286
1406
|
TIKTOK_TOTAL_FOLLOWER_COUNT = "tiktok_total_follower_count",
|
|
1287
1407
|
/** Session follower count. Use as {{tiktok_session_follower_count}}. */
|
|
1288
1408
|
TIKTOK_SESSION_FOLLOWER_COUNT = "tiktok_session_follower_count",
|
|
1409
|
+
/** Followers for the current calendar week. Use as {{tiktok_week_follower_count}}. */
|
|
1410
|
+
TIKTOK_WEEK_FOLLOWER_COUNT = "tiktok_week_follower_count",
|
|
1411
|
+
/** Followers for the current calendar month. Use as {{tiktok_month_follower_count}}. */
|
|
1412
|
+
TIKTOK_MONTH_FOLLOWER_COUNT = "tiktok_month_follower_count",
|
|
1289
1413
|
/** Session super fan count. Use as {{tiktok_session_super_fan_count}}. */
|
|
1290
1414
|
TIKTOK_SESSION_SUPER_FAN_COUNT = "tiktok_session_super_fan_count",
|
|
1291
1415
|
/** Session share count. Use as {{tiktok_session_share_count}}. */
|
|
@@ -1348,10 +1472,18 @@ export declare enum SystemVariables {
|
|
|
1348
1472
|
KICK_TOTAL_FOLLOWER_COUNT = "kick_total_follower_count",
|
|
1349
1473
|
/** Session follower count. Use as {{kick_session_follower_count}}. */
|
|
1350
1474
|
KICK_SESSION_FOLLOWER_COUNT = "kick_session_follower_count",
|
|
1475
|
+
/** Followers for the current calendar week. Use as {{kick_week_follower_count}}. */
|
|
1476
|
+
KICK_WEEK_FOLLOWER_COUNT = "kick_week_follower_count",
|
|
1477
|
+
/** Followers for the current calendar month. Use as {{kick_month_follower_count}}. */
|
|
1478
|
+
KICK_MONTH_FOLLOWER_COUNT = "kick_month_follower_count",
|
|
1351
1479
|
/** Lifetime total subs. Use as {{kick_total_subscriber_count}}. */
|
|
1352
1480
|
KICK_TOTAL_SUBSCRIBER_COUNT = "kick_total_subscriber_count",
|
|
1353
1481
|
/** Session subs count. Use as {{kick_session_subscriber_count}}. */
|
|
1354
1482
|
KICK_SESSION_SUBSCRIBER_COUNT = "kick_session_subscriber_count",
|
|
1483
|
+
/** Subscribers for the current calendar week. Use as {{kick_week_subscriber_count}}. */
|
|
1484
|
+
KICK_WEEK_SUBSCRIBER_COUNT = "kick_week_subscriber_count",
|
|
1485
|
+
/** Subscribers for the current calendar month. Use as {{kick_month_subscriber_count}}. */
|
|
1486
|
+
KICK_MONTH_SUBSCRIBER_COUNT = "kick_month_subscriber_count",
|
|
1355
1487
|
/** Session gifts count. Use as {{kick_session_gifts_count}}. */
|
|
1356
1488
|
KICK_SESSION_GIFTS_COUNT = "kick_session_gifts_count",
|
|
1357
1489
|
/** Session subscribers list. Use as {{kick_session_subscribers}}. */
|
|
@@ -1004,6 +1004,30 @@ export declare enum SystemVariables {
|
|
|
1004
1004
|
SESSION_DONATOR_LIST_WITH_AMOUNT = "session_donator_list_with_amount",
|
|
1005
1005
|
/** Raw donation total ignoring currency. Use as {{total_raw_donation_amount}}. */
|
|
1006
1006
|
TOTAL_RAW_DONATION_AMOUNT = "total_raw_donation_amount",
|
|
1007
|
+
/** Donation sum for the current calendar week. Use as {{week_donation_amount}}. */
|
|
1008
|
+
WEEK_DONATION_AMOUNT = "week_donation_amount",
|
|
1009
|
+
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
1010
|
+
MONTH_DONATION_AMOUNT = "month_donation_amount",
|
|
1011
|
+
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
1012
|
+
WEEK_DONATION_COUNT = "week_donation_count",
|
|
1013
|
+
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
1014
|
+
MONTH_DONATION_COUNT = "month_donation_count",
|
|
1015
|
+
/** Top donator for the current calendar week. Use as {{week_top_donator}}. */
|
|
1016
|
+
WEEK_TOP_DONATOR = "week_top_donator",
|
|
1017
|
+
/** Amount for WEEK_TOP_DONATOR. Use as {{week_top_donator_amount}}. */
|
|
1018
|
+
WEEK_TOP_DONATOR_AMOUNT = "week_top_donator_amount",
|
|
1019
|
+
/** Top donators this week (top 10, comma-separated usernames). Use as {{week_top_donator_list}}. */
|
|
1020
|
+
WEEK_TOP_DONATOR_LIST = "week_top_donator_list",
|
|
1021
|
+
/** Amounts for WEEK_TOP_DONATOR_LIST (parallel comma-separated). Use as {{week_top_donator_list_amount}}. */
|
|
1022
|
+
WEEK_TOP_DONATOR_LIST_AMOUNT = "week_top_donator_list_amount",
|
|
1023
|
+
/** Top donator for the current calendar month. Use as {{month_top_donator}}. */
|
|
1024
|
+
MONTH_TOP_DONATOR = "month_top_donator",
|
|
1025
|
+
/** Amount for MONTH_TOP_DONATOR. Use as {{month_top_donator_amount}}. */
|
|
1026
|
+
MONTH_TOP_DONATOR_AMOUNT = "month_top_donator_amount",
|
|
1027
|
+
/** Top donators this month. Use as {{month_top_donator_list}}. */
|
|
1028
|
+
MONTH_TOP_DONATOR_LIST = "month_top_donator_list",
|
|
1029
|
+
/** Amounts for MONTH_TOP_DONATOR_LIST. Use as {{month_top_donator_list_amount}}. */
|
|
1030
|
+
MONTH_TOP_DONATOR_LIST_AMOUNT = "month_top_donator_list_amount",
|
|
1007
1031
|
/** Raffle title. Use as {{raffle_title}}. */
|
|
1008
1032
|
RAFFLE_TITLE = "raffle_title",
|
|
1009
1033
|
/** Raffle description. Use as {{raffle_description}}. */
|
|
@@ -1092,14 +1116,32 @@ export declare enum SystemVariables {
|
|
|
1092
1116
|
TWITCH_CURRENT_FOLLOWERS = "twitch_current_followers",
|
|
1093
1117
|
/** Session followers count. Use as {{twitch_session_follower_count}}. */
|
|
1094
1118
|
TWITCH_SESSION_FOLLOWER_COUNT = "twitch_session_follower_count",
|
|
1119
|
+
/** Followers for the current calendar week. Use as {{twitch_week_follower_count}}. */
|
|
1120
|
+
TWITCH_WEEK_FOLLOWER_COUNT = "twitch_week_follower_count",
|
|
1121
|
+
/** Followers for the current calendar month. Use as {{twitch_month_follower_count}}. */
|
|
1122
|
+
TWITCH_MONTH_FOLLOWER_COUNT = "twitch_month_follower_count",
|
|
1095
1123
|
/** Current subscribers (comma-separated). Use as {{twitch_current_subscribers}}. */
|
|
1096
1124
|
TWITCH_CURRENT_SUBSCRIBERS = "twitch_current_subscribers",
|
|
1097
1125
|
/** Lifetime total subs. Use as {{twitch_total_subscriber_count}}. */
|
|
1098
1126
|
TWITCH_TOTAL_SUBSCRIBER_COUNT = "twitch_total_subscriber_count",
|
|
1099
1127
|
/** Session subs count. Use as {{twitch_session_subscribers_count}}. */
|
|
1100
1128
|
TWITCH_SESSION_SUBSCRIBERS_COUNT = "twitch_session_subscribers_count",
|
|
1129
|
+
/** Session NEW subscribers (excluding resubs / gifts). Use as {{twitch_session_new_subscribers_count}}. */
|
|
1130
|
+
TWITCH_SESSION_NEW_SUBSCRIBERS_COUNT = "twitch_session_new_subscribers_count",
|
|
1131
|
+
/** Session resubscribers (excluding new / gifts). Use as {{twitch_session_resub_subscribers_count}}. */
|
|
1132
|
+
TWITCH_SESSION_RESUB_SUBSCRIBERS_COUNT = "twitch_session_resub_subscribers_count",
|
|
1133
|
+
/** Session gifted subscribers. Use as {{twitch_session_gifted_subscribers_count}}. */
|
|
1134
|
+
TWITCH_SESSION_GIFTED_SUBSCRIBERS_COUNT = "twitch_session_gifted_subscribers_count",
|
|
1135
|
+
/** Subscribers for the current calendar week. Use as {{twitch_week_subscriber_count}}. */
|
|
1136
|
+
TWITCH_WEEK_SUBSCRIBER_COUNT = "twitch_week_subscriber_count",
|
|
1137
|
+
/** Subscribers for the current calendar month. Use as {{twitch_month_subscriber_count}}. */
|
|
1138
|
+
TWITCH_MONTH_SUBSCRIBER_COUNT = "twitch_month_subscriber_count",
|
|
1101
1139
|
/** Session gifts count. Use as {{twitch_session_gifts_count}}. */
|
|
1102
1140
|
TWITCH_SESSION_GIFTS_COUNT = "twitch_session_gifts_count",
|
|
1141
|
+
/** All-time top gifter. Use as {{twitch_alltime_top_gifter}}. */
|
|
1142
|
+
TWITCH_ALLTIME_TOP_GIFTER = "twitch_alltime_top_gifter",
|
|
1143
|
+
/** Lifetime gift count for TWITCH_ALLTIME_TOP_GIFTER. Use as {{twitch_alltime_top_gifter_amount}}. */
|
|
1144
|
+
TWITCH_ALLTIME_TOP_GIFTER_AMOUNT = "twitch_alltime_top_gifter_amount",
|
|
1103
1145
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
1104
1146
|
TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT = "twitch_total_gift_subscription_count",
|
|
1105
1147
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
@@ -1138,6 +1180,10 @@ export declare enum SystemVariables {
|
|
|
1138
1180
|
TWITCH_TOTAL_BITS_COUNT = "twitch_total_bits_count",
|
|
1139
1181
|
/** Session bits count. Use as {{twitch_session_bits_count}}. */
|
|
1140
1182
|
TWITCH_SESSION_BITS_COUNT = "twitch_session_bits_count",
|
|
1183
|
+
/** Bits for the current calendar week. Use as {{twitch_week_bits_count}}. */
|
|
1184
|
+
TWITCH_WEEK_BITS_COUNT = "twitch_week_bits_count",
|
|
1185
|
+
/** Bits for the current calendar month. Use as {{twitch_month_bits_count}}. */
|
|
1186
|
+
TWITCH_MONTH_BITS_COUNT = "twitch_month_bits_count",
|
|
1141
1187
|
/** Last bit sender. Use as {{twitch_last_bit}}. */
|
|
1142
1188
|
TWITCH_LAST_BIT = "twitch_last_bit",
|
|
1143
1189
|
/** Last bit amount. Use as {{twitch_last_bit_amount}}. */
|
|
@@ -1146,6 +1192,64 @@ export declare enum SystemVariables {
|
|
|
1146
1192
|
TWITCH_SESSION_BITS = "twitch_session_bits",
|
|
1147
1193
|
/** Session bits with amounts list. Use as {{twitch_session_bits_with_amount}}. */
|
|
1148
1194
|
TWITCH_SESSION_BITS_WITH_AMOUNT = "twitch_session_bits_with_amount",
|
|
1195
|
+
/** Top single cheer this session. Use as {{twitch_session_top_cheer}}. */
|
|
1196
|
+
TWITCH_SESSION_TOP_CHEER = "twitch_session_top_cheer",
|
|
1197
|
+
/** Amount for TWITCH_SESSION_TOP_CHEER. Use as {{twitch_session_top_cheer_amount}}. */
|
|
1198
|
+
TWITCH_SESSION_TOP_CHEER_AMOUNT = "twitch_session_top_cheer_amount",
|
|
1199
|
+
/** Top cheerer this session (by total bits). Use as {{twitch_session_top_cheerer}}. */
|
|
1200
|
+
TWITCH_SESSION_TOP_CHEERER = "twitch_session_top_cheerer",
|
|
1201
|
+
/** Total bits for TWITCH_SESSION_TOP_CHEERER. Use as {{twitch_session_top_cheerer_amount}}. */
|
|
1202
|
+
TWITCH_SESSION_TOP_CHEERER_AMOUNT = "twitch_session_top_cheerer_amount",
|
|
1203
|
+
/** Top cheerer for the current calendar week. Use as {{twitch_week_top_cheerer}}. */
|
|
1204
|
+
TWITCH_WEEK_TOP_CHEERER = "twitch_week_top_cheerer",
|
|
1205
|
+
/** Total bits for TWITCH_WEEK_TOP_CHEERER. Use as {{twitch_week_top_cheerer_amount}}. */
|
|
1206
|
+
TWITCH_WEEK_TOP_CHEERER_AMOUNT = "twitch_week_top_cheerer_amount",
|
|
1207
|
+
/** Top cheerer for the current calendar month. Use as {{twitch_month_top_cheerer}}. */
|
|
1208
|
+
TWITCH_MONTH_TOP_CHEERER = "twitch_month_top_cheerer",
|
|
1209
|
+
/** Total bits for TWITCH_MONTH_TOP_CHEERER. Use as {{twitch_month_top_cheerer_amount}}. */
|
|
1210
|
+
TWITCH_MONTH_TOP_CHEERER_AMOUNT = "twitch_month_top_cheerer_amount",
|
|
1211
|
+
/** Whether a hype train is currently active (true/false). Use as {{twitch_hypetrain_active}}. */
|
|
1212
|
+
TWITCH_HYPETRAIN_ACTIVE = "twitch_hypetrain_active",
|
|
1213
|
+
/** Current hype train level. Use as {{twitch_hypetrain_level}}. */
|
|
1214
|
+
TWITCH_HYPETRAIN_LEVEL = "twitch_hypetrain_level",
|
|
1215
|
+
/** Current hype train progress toward the next level. Use as {{twitch_hypetrain_progress}}. */
|
|
1216
|
+
TWITCH_HYPETRAIN_PROGRESS = "twitch_hypetrain_progress",
|
|
1217
|
+
/** Target value to reach the next hype train level. Use as {{twitch_hypetrain_level_goal}}. */
|
|
1218
|
+
TWITCH_HYPETRAIN_LEVEL_GOAL = "twitch_hypetrain_level_goal",
|
|
1219
|
+
/** Total contributions this hype train (running sum). Use as {{twitch_hypetrain_total}}. */
|
|
1220
|
+
TWITCH_HYPETRAIN_TOTAL = "twitch_hypetrain_total",
|
|
1221
|
+
/** Top contributor for the current hype train. Use as {{twitch_hypetrain_top_contributor}}. */
|
|
1222
|
+
TWITCH_HYPETRAIN_TOP_CONTRIBUTOR = "twitch_hypetrain_top_contributor",
|
|
1223
|
+
/** Amount contributed by TWITCH_HYPETRAIN_TOP_CONTRIBUTOR. Use as {{twitch_hypetrain_top_contributor_amount}}. */
|
|
1224
|
+
TWITCH_HYPETRAIN_TOP_CONTRIBUTOR_AMOUNT = "twitch_hypetrain_top_contributor_amount",
|
|
1225
|
+
/** All-time top cheerer (by total bits). Use as {{twitch_alltime_top_cheerer}}. */
|
|
1226
|
+
TWITCH_ALLTIME_TOP_CHEERER = "twitch_alltime_top_cheerer",
|
|
1227
|
+
/** Total bits for TWITCH_ALLTIME_TOP_CHEERER. Use as {{twitch_alltime_top_cheerer_amount}}. */
|
|
1228
|
+
TWITCH_ALLTIME_TOP_CHEERER_AMOUNT = "twitch_alltime_top_cheerer_amount",
|
|
1229
|
+
/** Top cheerers list (top 10, comma-separated usernames, sorted by total bits). Use as {{top_cheerer_list}}. */
|
|
1230
|
+
TOP_CHEERER_LIST = "top_cheerer_list",
|
|
1231
|
+
/** Total bits for TOP_CHEERER_LIST (parallel comma-separated). Use as {{top_cheerer_list_amount}}. */
|
|
1232
|
+
TOP_CHEERER_LIST_AMOUNT = "top_cheerer_list_amount",
|
|
1233
|
+
/** Top cheerers this week (top 10, comma-separated usernames). Use as {{week_top_cheerer_list}}. */
|
|
1234
|
+
WEEK_TOP_CHEERER_LIST = "week_top_cheerer_list",
|
|
1235
|
+
/** Total bits for WEEK_TOP_CHEERER_LIST (parallel comma-separated). Use as {{week_top_cheerer_list_amount}}. */
|
|
1236
|
+
WEEK_TOP_CHEERER_LIST_AMOUNT = "week_top_cheerer_list_amount",
|
|
1237
|
+
/** Top cheerers this month. Use as {{month_top_cheerer_list}}. */
|
|
1238
|
+
MONTH_TOP_CHEERER_LIST = "month_top_cheerer_list",
|
|
1239
|
+
/** Total bits for MONTH_TOP_CHEERER_LIST. Use as {{month_top_cheerer_list_amount}}. */
|
|
1240
|
+
MONTH_TOP_CHEERER_LIST_AMOUNT = "month_top_cheerer_list_amount",
|
|
1241
|
+
/** Top gifters list (top 10, comma-separated usernames, sorted by lifetime gifted subs). Use as {{top_gifter_list}}. */
|
|
1242
|
+
TOP_GIFTER_LIST = "top_gifter_list",
|
|
1243
|
+
/** Total gifts for TOP_GIFTER_LIST (parallel comma-separated). Use as {{top_gifter_list_amount}}. */
|
|
1244
|
+
TOP_GIFTER_LIST_AMOUNT = "top_gifter_list_amount",
|
|
1245
|
+
/** Top gifters this week. Use as {{week_top_gifter_list}}. */
|
|
1246
|
+
WEEK_TOP_GIFTER_LIST = "week_top_gifter_list",
|
|
1247
|
+
/** Total gifts for WEEK_TOP_GIFTER_LIST. Use as {{week_top_gifter_list_amount}}. */
|
|
1248
|
+
WEEK_TOP_GIFTER_LIST_AMOUNT = "week_top_gifter_list_amount",
|
|
1249
|
+
/** Top gifters this month. Use as {{month_top_gifter_list}}. */
|
|
1250
|
+
MONTH_TOP_GIFTER_LIST = "month_top_gifter_list",
|
|
1251
|
+
/** Total gifts for MONTH_TOP_GIFTER_LIST. Use as {{month_top_gifter_list_amount}}. */
|
|
1252
|
+
MONTH_TOP_GIFTER_LIST_AMOUNT = "month_top_gifter_list_amount",
|
|
1149
1253
|
/** Last clip ID. Use as {{twitch_last_clip_id}}. */
|
|
1150
1254
|
TWITCH_LAST_CLIP_ID = "twitch_last_clip_id",
|
|
1151
1255
|
/** Last clip URL. Use as {{twitch_last_clip_url}}. */
|
|
@@ -1192,6 +1296,10 @@ export declare enum SystemVariables {
|
|
|
1192
1296
|
YOUTUBE_LAST_CHATTER = "youtube_last_chatter",
|
|
1193
1297
|
/** Session subscriber count. Use as {{youtube_session_subscriber_count}}. */
|
|
1194
1298
|
YOUTUBE_SESSION_SUBSCRIBER_COUNT = "youtube_session_subscriber_count",
|
|
1299
|
+
/** Subscribers for the current calendar week. Use as {{youtube_week_subscriber_count}}. */
|
|
1300
|
+
YOUTUBE_WEEK_SUBSCRIBER_COUNT = "youtube_week_subscriber_count",
|
|
1301
|
+
/** Subscribers for the current calendar month. Use as {{youtube_month_subscriber_count}}. */
|
|
1302
|
+
YOUTUBE_MONTH_SUBSCRIBER_COUNT = "youtube_month_subscriber_count",
|
|
1195
1303
|
/** Lifetime subscriber count. Use as {{youtube_total_subscriber_count}}. */
|
|
1196
1304
|
YOUTUBE_TOTAL_SUBSCRIBER_COUNT = "youtube_total_subscriber_count",
|
|
1197
1305
|
/** Session SuperChat count. Use as {{youtube_session_superchat_count}}. */
|
|
@@ -1210,6 +1318,10 @@ export declare enum SystemVariables {
|
|
|
1210
1318
|
YOUTUBE_TOTAL_MEMBER_COUNT = "youtube_total_member_count",
|
|
1211
1319
|
/** Session member count. Use as {{youtube_session_member_count}}. */
|
|
1212
1320
|
YOUTUBE_SESSION_MEMBER_COUNT = "youtube_session_member_count",
|
|
1321
|
+
/** Members for the current calendar week. Use as {{youtube_week_member_count}}. */
|
|
1322
|
+
YOUTUBE_WEEK_MEMBER_COUNT = "youtube_week_member_count",
|
|
1323
|
+
/** Members for the current calendar month. Use as {{youtube_month_member_count}}. */
|
|
1324
|
+
YOUTUBE_MONTH_MEMBER_COUNT = "youtube_month_member_count",
|
|
1213
1325
|
/** Last member. Use as {{youtube_last_member}}. */
|
|
1214
1326
|
YOUTUBE_LAST_MEMBER = "youtube_last_member",
|
|
1215
1327
|
/** Session members (list). Use as {{youtube_session_members}}. */
|
|
@@ -1254,10 +1366,18 @@ export declare enum SystemVariables {
|
|
|
1254
1366
|
FACEBOOK_TOTAL_FOLLOWER_COUNT = "facebook_total_follower_count",
|
|
1255
1367
|
/** Session follower count. Use as {{facebook_session_follower_count}}. */
|
|
1256
1368
|
FACEBOOK_SESSION_FOLLOWER_COUNT = "facebook_session_follower_count",
|
|
1369
|
+
/** Followers for the current calendar week. Use as {{facebook_week_follower_count}}. */
|
|
1370
|
+
FACEBOOK_WEEK_FOLLOWER_COUNT = "facebook_week_follower_count",
|
|
1371
|
+
/** Followers for the current calendar month. Use as {{facebook_month_follower_count}}. */
|
|
1372
|
+
FACEBOOK_MONTH_FOLLOWER_COUNT = "facebook_month_follower_count",
|
|
1257
1373
|
/** Lifetime fan count. Use as {{facebook_total_fan_count}}. */
|
|
1258
1374
|
FACEBOOK_TOTAL_FAN_COUNT = "facebook_total_fan_count",
|
|
1259
1375
|
/** Session fan count. Use as {{facebook_session_fan_count}}. */
|
|
1260
1376
|
FACEBOOK_SESSION_FAN_COUNT = "facebook_session_fan_count",
|
|
1377
|
+
/** Fans for the current calendar week. Use as {{facebook_week_fan_count}}. */
|
|
1378
|
+
FACEBOOK_WEEK_FAN_COUNT = "facebook_week_fan_count",
|
|
1379
|
+
/** Fans for the current calendar month. Use as {{facebook_month_fan_count}}. */
|
|
1380
|
+
FACEBOOK_MONTH_FAN_COUNT = "facebook_month_fan_count",
|
|
1261
1381
|
/** Session reaction count. Use as {{facebook_reaction_count}}. */
|
|
1262
1382
|
FACEBOOK_REACTION_COUNT = "facebook_reaction_count",
|
|
1263
1383
|
/** Last Stars sender. Use as {{facebook_last_star}}. */
|
|
@@ -1286,6 +1406,10 @@ export declare enum SystemVariables {
|
|
|
1286
1406
|
TIKTOK_TOTAL_FOLLOWER_COUNT = "tiktok_total_follower_count",
|
|
1287
1407
|
/** Session follower count. Use as {{tiktok_session_follower_count}}. */
|
|
1288
1408
|
TIKTOK_SESSION_FOLLOWER_COUNT = "tiktok_session_follower_count",
|
|
1409
|
+
/** Followers for the current calendar week. Use as {{tiktok_week_follower_count}}. */
|
|
1410
|
+
TIKTOK_WEEK_FOLLOWER_COUNT = "tiktok_week_follower_count",
|
|
1411
|
+
/** Followers for the current calendar month. Use as {{tiktok_month_follower_count}}. */
|
|
1412
|
+
TIKTOK_MONTH_FOLLOWER_COUNT = "tiktok_month_follower_count",
|
|
1289
1413
|
/** Session super fan count. Use as {{tiktok_session_super_fan_count}}. */
|
|
1290
1414
|
TIKTOK_SESSION_SUPER_FAN_COUNT = "tiktok_session_super_fan_count",
|
|
1291
1415
|
/** Session share count. Use as {{tiktok_session_share_count}}. */
|
|
@@ -1348,10 +1472,18 @@ export declare enum SystemVariables {
|
|
|
1348
1472
|
KICK_TOTAL_FOLLOWER_COUNT = "kick_total_follower_count",
|
|
1349
1473
|
/** Session follower count. Use as {{kick_session_follower_count}}. */
|
|
1350
1474
|
KICK_SESSION_FOLLOWER_COUNT = "kick_session_follower_count",
|
|
1475
|
+
/** Followers for the current calendar week. Use as {{kick_week_follower_count}}. */
|
|
1476
|
+
KICK_WEEK_FOLLOWER_COUNT = "kick_week_follower_count",
|
|
1477
|
+
/** Followers for the current calendar month. Use as {{kick_month_follower_count}}. */
|
|
1478
|
+
KICK_MONTH_FOLLOWER_COUNT = "kick_month_follower_count",
|
|
1351
1479
|
/** Lifetime total subs. Use as {{kick_total_subscriber_count}}. */
|
|
1352
1480
|
KICK_TOTAL_SUBSCRIBER_COUNT = "kick_total_subscriber_count",
|
|
1353
1481
|
/** Session subs count. Use as {{kick_session_subscriber_count}}. */
|
|
1354
1482
|
KICK_SESSION_SUBSCRIBER_COUNT = "kick_session_subscriber_count",
|
|
1483
|
+
/** Subscribers for the current calendar week. Use as {{kick_week_subscriber_count}}. */
|
|
1484
|
+
KICK_WEEK_SUBSCRIBER_COUNT = "kick_week_subscriber_count",
|
|
1485
|
+
/** Subscribers for the current calendar month. Use as {{kick_month_subscriber_count}}. */
|
|
1486
|
+
KICK_MONTH_SUBSCRIBER_COUNT = "kick_month_subscriber_count",
|
|
1355
1487
|
/** Session gifts count. Use as {{kick_session_gifts_count}}. */
|
|
1356
1488
|
KICK_SESSION_GIFTS_COUNT = "kick_session_gifts_count",
|
|
1357
1489
|
/** Session subscribers list. Use as {{kick_session_subscribers}}. */
|
|
@@ -158,6 +158,30 @@ export declare enum SystemVariables {
|
|
|
158
158
|
SESSION_DONATOR_LIST_WITH_AMOUNT = "session_donator_list_with_amount",
|
|
159
159
|
/** Raw donation total ignoring currency. Use as {{total_raw_donation_amount}}. */
|
|
160
160
|
TOTAL_RAW_DONATION_AMOUNT = "total_raw_donation_amount",
|
|
161
|
+
/** Donation sum for the current calendar week. Use as {{week_donation_amount}}. */
|
|
162
|
+
WEEK_DONATION_AMOUNT = "week_donation_amount",
|
|
163
|
+
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
164
|
+
MONTH_DONATION_AMOUNT = "month_donation_amount",
|
|
165
|
+
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
166
|
+
WEEK_DONATION_COUNT = "week_donation_count",
|
|
167
|
+
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
168
|
+
MONTH_DONATION_COUNT = "month_donation_count",
|
|
169
|
+
/** Top donator for the current calendar week. Use as {{week_top_donator}}. */
|
|
170
|
+
WEEK_TOP_DONATOR = "week_top_donator",
|
|
171
|
+
/** Amount for WEEK_TOP_DONATOR. Use as {{week_top_donator_amount}}. */
|
|
172
|
+
WEEK_TOP_DONATOR_AMOUNT = "week_top_donator_amount",
|
|
173
|
+
/** Top donators this week (top 10, comma-separated usernames). Use as {{week_top_donator_list}}. */
|
|
174
|
+
WEEK_TOP_DONATOR_LIST = "week_top_donator_list",
|
|
175
|
+
/** Amounts for WEEK_TOP_DONATOR_LIST (parallel comma-separated). Use as {{week_top_donator_list_amount}}. */
|
|
176
|
+
WEEK_TOP_DONATOR_LIST_AMOUNT = "week_top_donator_list_amount",
|
|
177
|
+
/** Top donator for the current calendar month. Use as {{month_top_donator}}. */
|
|
178
|
+
MONTH_TOP_DONATOR = "month_top_donator",
|
|
179
|
+
/** Amount for MONTH_TOP_DONATOR. Use as {{month_top_donator_amount}}. */
|
|
180
|
+
MONTH_TOP_DONATOR_AMOUNT = "month_top_donator_amount",
|
|
181
|
+
/** Top donators this month. Use as {{month_top_donator_list}}. */
|
|
182
|
+
MONTH_TOP_DONATOR_LIST = "month_top_donator_list",
|
|
183
|
+
/** Amounts for MONTH_TOP_DONATOR_LIST. Use as {{month_top_donator_list_amount}}. */
|
|
184
|
+
MONTH_TOP_DONATOR_LIST_AMOUNT = "month_top_donator_list_amount",
|
|
161
185
|
/** Raffle title. Use as {{raffle_title}}. */
|
|
162
186
|
RAFFLE_TITLE = "raffle_title",
|
|
163
187
|
/** Raffle description. Use as {{raffle_description}}. */
|
|
@@ -246,14 +270,32 @@ export declare enum SystemVariables {
|
|
|
246
270
|
TWITCH_CURRENT_FOLLOWERS = "twitch_current_followers",
|
|
247
271
|
/** Session followers count. Use as {{twitch_session_follower_count}}. */
|
|
248
272
|
TWITCH_SESSION_FOLLOWER_COUNT = "twitch_session_follower_count",
|
|
273
|
+
/** Followers for the current calendar week. Use as {{twitch_week_follower_count}}. */
|
|
274
|
+
TWITCH_WEEK_FOLLOWER_COUNT = "twitch_week_follower_count",
|
|
275
|
+
/** Followers for the current calendar month. Use as {{twitch_month_follower_count}}. */
|
|
276
|
+
TWITCH_MONTH_FOLLOWER_COUNT = "twitch_month_follower_count",
|
|
249
277
|
/** Current subscribers (comma-separated). Use as {{twitch_current_subscribers}}. */
|
|
250
278
|
TWITCH_CURRENT_SUBSCRIBERS = "twitch_current_subscribers",
|
|
251
279
|
/** Lifetime total subs. Use as {{twitch_total_subscriber_count}}. */
|
|
252
280
|
TWITCH_TOTAL_SUBSCRIBER_COUNT = "twitch_total_subscriber_count",
|
|
253
281
|
/** Session subs count. Use as {{twitch_session_subscribers_count}}. */
|
|
254
282
|
TWITCH_SESSION_SUBSCRIBERS_COUNT = "twitch_session_subscribers_count",
|
|
283
|
+
/** Session NEW subscribers (excluding resubs / gifts). Use as {{twitch_session_new_subscribers_count}}. */
|
|
284
|
+
TWITCH_SESSION_NEW_SUBSCRIBERS_COUNT = "twitch_session_new_subscribers_count",
|
|
285
|
+
/** Session resubscribers (excluding new / gifts). Use as {{twitch_session_resub_subscribers_count}}. */
|
|
286
|
+
TWITCH_SESSION_RESUB_SUBSCRIBERS_COUNT = "twitch_session_resub_subscribers_count",
|
|
287
|
+
/** Session gifted subscribers. Use as {{twitch_session_gifted_subscribers_count}}. */
|
|
288
|
+
TWITCH_SESSION_GIFTED_SUBSCRIBERS_COUNT = "twitch_session_gifted_subscribers_count",
|
|
289
|
+
/** Subscribers for the current calendar week. Use as {{twitch_week_subscriber_count}}. */
|
|
290
|
+
TWITCH_WEEK_SUBSCRIBER_COUNT = "twitch_week_subscriber_count",
|
|
291
|
+
/** Subscribers for the current calendar month. Use as {{twitch_month_subscriber_count}}. */
|
|
292
|
+
TWITCH_MONTH_SUBSCRIBER_COUNT = "twitch_month_subscriber_count",
|
|
255
293
|
/** Session gifts count. Use as {{twitch_session_gifts_count}}. */
|
|
256
294
|
TWITCH_SESSION_GIFTS_COUNT = "twitch_session_gifts_count",
|
|
295
|
+
/** All-time top gifter. Use as {{twitch_alltime_top_gifter}}. */
|
|
296
|
+
TWITCH_ALLTIME_TOP_GIFTER = "twitch_alltime_top_gifter",
|
|
297
|
+
/** Lifetime gift count for TWITCH_ALLTIME_TOP_GIFTER. Use as {{twitch_alltime_top_gifter_amount}}. */
|
|
298
|
+
TWITCH_ALLTIME_TOP_GIFTER_AMOUNT = "twitch_alltime_top_gifter_amount",
|
|
257
299
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
258
300
|
TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT = "twitch_total_gift_subscription_count",
|
|
259
301
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
@@ -292,6 +334,10 @@ export declare enum SystemVariables {
|
|
|
292
334
|
TWITCH_TOTAL_BITS_COUNT = "twitch_total_bits_count",
|
|
293
335
|
/** Session bits count. Use as {{twitch_session_bits_count}}. */
|
|
294
336
|
TWITCH_SESSION_BITS_COUNT = "twitch_session_bits_count",
|
|
337
|
+
/** Bits for the current calendar week. Use as {{twitch_week_bits_count}}. */
|
|
338
|
+
TWITCH_WEEK_BITS_COUNT = "twitch_week_bits_count",
|
|
339
|
+
/** Bits for the current calendar month. Use as {{twitch_month_bits_count}}. */
|
|
340
|
+
TWITCH_MONTH_BITS_COUNT = "twitch_month_bits_count",
|
|
295
341
|
/** Last bit sender. Use as {{twitch_last_bit}}. */
|
|
296
342
|
TWITCH_LAST_BIT = "twitch_last_bit",
|
|
297
343
|
/** Last bit amount. Use as {{twitch_last_bit_amount}}. */
|
|
@@ -300,6 +346,64 @@ export declare enum SystemVariables {
|
|
|
300
346
|
TWITCH_SESSION_BITS = "twitch_session_bits",
|
|
301
347
|
/** Session bits with amounts list. Use as {{twitch_session_bits_with_amount}}. */
|
|
302
348
|
TWITCH_SESSION_BITS_WITH_AMOUNT = "twitch_session_bits_with_amount",
|
|
349
|
+
/** Top single cheer this session. Use as {{twitch_session_top_cheer}}. */
|
|
350
|
+
TWITCH_SESSION_TOP_CHEER = "twitch_session_top_cheer",
|
|
351
|
+
/** Amount for TWITCH_SESSION_TOP_CHEER. Use as {{twitch_session_top_cheer_amount}}. */
|
|
352
|
+
TWITCH_SESSION_TOP_CHEER_AMOUNT = "twitch_session_top_cheer_amount",
|
|
353
|
+
/** Top cheerer this session (by total bits). Use as {{twitch_session_top_cheerer}}. */
|
|
354
|
+
TWITCH_SESSION_TOP_CHEERER = "twitch_session_top_cheerer",
|
|
355
|
+
/** Total bits for TWITCH_SESSION_TOP_CHEERER. Use as {{twitch_session_top_cheerer_amount}}. */
|
|
356
|
+
TWITCH_SESSION_TOP_CHEERER_AMOUNT = "twitch_session_top_cheerer_amount",
|
|
357
|
+
/** Top cheerer for the current calendar week. Use as {{twitch_week_top_cheerer}}. */
|
|
358
|
+
TWITCH_WEEK_TOP_CHEERER = "twitch_week_top_cheerer",
|
|
359
|
+
/** Total bits for TWITCH_WEEK_TOP_CHEERER. Use as {{twitch_week_top_cheerer_amount}}. */
|
|
360
|
+
TWITCH_WEEK_TOP_CHEERER_AMOUNT = "twitch_week_top_cheerer_amount",
|
|
361
|
+
/** Top cheerer for the current calendar month. Use as {{twitch_month_top_cheerer}}. */
|
|
362
|
+
TWITCH_MONTH_TOP_CHEERER = "twitch_month_top_cheerer",
|
|
363
|
+
/** Total bits for TWITCH_MONTH_TOP_CHEERER. Use as {{twitch_month_top_cheerer_amount}}. */
|
|
364
|
+
TWITCH_MONTH_TOP_CHEERER_AMOUNT = "twitch_month_top_cheerer_amount",
|
|
365
|
+
/** Whether a hype train is currently active (true/false). Use as {{twitch_hypetrain_active}}. */
|
|
366
|
+
TWITCH_HYPETRAIN_ACTIVE = "twitch_hypetrain_active",
|
|
367
|
+
/** Current hype train level. Use as {{twitch_hypetrain_level}}. */
|
|
368
|
+
TWITCH_HYPETRAIN_LEVEL = "twitch_hypetrain_level",
|
|
369
|
+
/** Current hype train progress toward the next level. Use as {{twitch_hypetrain_progress}}. */
|
|
370
|
+
TWITCH_HYPETRAIN_PROGRESS = "twitch_hypetrain_progress",
|
|
371
|
+
/** Target value to reach the next hype train level. Use as {{twitch_hypetrain_level_goal}}. */
|
|
372
|
+
TWITCH_HYPETRAIN_LEVEL_GOAL = "twitch_hypetrain_level_goal",
|
|
373
|
+
/** Total contributions this hype train (running sum). Use as {{twitch_hypetrain_total}}. */
|
|
374
|
+
TWITCH_HYPETRAIN_TOTAL = "twitch_hypetrain_total",
|
|
375
|
+
/** Top contributor for the current hype train. Use as {{twitch_hypetrain_top_contributor}}. */
|
|
376
|
+
TWITCH_HYPETRAIN_TOP_CONTRIBUTOR = "twitch_hypetrain_top_contributor",
|
|
377
|
+
/** Amount contributed by TWITCH_HYPETRAIN_TOP_CONTRIBUTOR. Use as {{twitch_hypetrain_top_contributor_amount}}. */
|
|
378
|
+
TWITCH_HYPETRAIN_TOP_CONTRIBUTOR_AMOUNT = "twitch_hypetrain_top_contributor_amount",
|
|
379
|
+
/** All-time top cheerer (by total bits). Use as {{twitch_alltime_top_cheerer}}. */
|
|
380
|
+
TWITCH_ALLTIME_TOP_CHEERER = "twitch_alltime_top_cheerer",
|
|
381
|
+
/** Total bits for TWITCH_ALLTIME_TOP_CHEERER. Use as {{twitch_alltime_top_cheerer_amount}}. */
|
|
382
|
+
TWITCH_ALLTIME_TOP_CHEERER_AMOUNT = "twitch_alltime_top_cheerer_amount",
|
|
383
|
+
/** Top cheerers list (top 10, comma-separated usernames, sorted by total bits). Use as {{top_cheerer_list}}. */
|
|
384
|
+
TOP_CHEERER_LIST = "top_cheerer_list",
|
|
385
|
+
/** Total bits for TOP_CHEERER_LIST (parallel comma-separated). Use as {{top_cheerer_list_amount}}. */
|
|
386
|
+
TOP_CHEERER_LIST_AMOUNT = "top_cheerer_list_amount",
|
|
387
|
+
/** Top cheerers this week (top 10, comma-separated usernames). Use as {{week_top_cheerer_list}}. */
|
|
388
|
+
WEEK_TOP_CHEERER_LIST = "week_top_cheerer_list",
|
|
389
|
+
/** Total bits for WEEK_TOP_CHEERER_LIST (parallel comma-separated). Use as {{week_top_cheerer_list_amount}}. */
|
|
390
|
+
WEEK_TOP_CHEERER_LIST_AMOUNT = "week_top_cheerer_list_amount",
|
|
391
|
+
/** Top cheerers this month. Use as {{month_top_cheerer_list}}. */
|
|
392
|
+
MONTH_TOP_CHEERER_LIST = "month_top_cheerer_list",
|
|
393
|
+
/** Total bits for MONTH_TOP_CHEERER_LIST. Use as {{month_top_cheerer_list_amount}}. */
|
|
394
|
+
MONTH_TOP_CHEERER_LIST_AMOUNT = "month_top_cheerer_list_amount",
|
|
395
|
+
/** Top gifters list (top 10, comma-separated usernames, sorted by lifetime gifted subs). Use as {{top_gifter_list}}. */
|
|
396
|
+
TOP_GIFTER_LIST = "top_gifter_list",
|
|
397
|
+
/** Total gifts for TOP_GIFTER_LIST (parallel comma-separated). Use as {{top_gifter_list_amount}}. */
|
|
398
|
+
TOP_GIFTER_LIST_AMOUNT = "top_gifter_list_amount",
|
|
399
|
+
/** Top gifters this week. Use as {{week_top_gifter_list}}. */
|
|
400
|
+
WEEK_TOP_GIFTER_LIST = "week_top_gifter_list",
|
|
401
|
+
/** Total gifts for WEEK_TOP_GIFTER_LIST. Use as {{week_top_gifter_list_amount}}. */
|
|
402
|
+
WEEK_TOP_GIFTER_LIST_AMOUNT = "week_top_gifter_list_amount",
|
|
403
|
+
/** Top gifters this month. Use as {{month_top_gifter_list}}. */
|
|
404
|
+
MONTH_TOP_GIFTER_LIST = "month_top_gifter_list",
|
|
405
|
+
/** Total gifts for MONTH_TOP_GIFTER_LIST. Use as {{month_top_gifter_list_amount}}. */
|
|
406
|
+
MONTH_TOP_GIFTER_LIST_AMOUNT = "month_top_gifter_list_amount",
|
|
303
407
|
/** Last clip ID. Use as {{twitch_last_clip_id}}. */
|
|
304
408
|
TWITCH_LAST_CLIP_ID = "twitch_last_clip_id",
|
|
305
409
|
/** Last clip URL. Use as {{twitch_last_clip_url}}. */
|
|
@@ -346,6 +450,10 @@ export declare enum SystemVariables {
|
|
|
346
450
|
YOUTUBE_LAST_CHATTER = "youtube_last_chatter",
|
|
347
451
|
/** Session subscriber count. Use as {{youtube_session_subscriber_count}}. */
|
|
348
452
|
YOUTUBE_SESSION_SUBSCRIBER_COUNT = "youtube_session_subscriber_count",
|
|
453
|
+
/** Subscribers for the current calendar week. Use as {{youtube_week_subscriber_count}}. */
|
|
454
|
+
YOUTUBE_WEEK_SUBSCRIBER_COUNT = "youtube_week_subscriber_count",
|
|
455
|
+
/** Subscribers for the current calendar month. Use as {{youtube_month_subscriber_count}}. */
|
|
456
|
+
YOUTUBE_MONTH_SUBSCRIBER_COUNT = "youtube_month_subscriber_count",
|
|
349
457
|
/** Lifetime subscriber count. Use as {{youtube_total_subscriber_count}}. */
|
|
350
458
|
YOUTUBE_TOTAL_SUBSCRIBER_COUNT = "youtube_total_subscriber_count",
|
|
351
459
|
/** Session SuperChat count. Use as {{youtube_session_superchat_count}}. */
|
|
@@ -364,6 +472,10 @@ export declare enum SystemVariables {
|
|
|
364
472
|
YOUTUBE_TOTAL_MEMBER_COUNT = "youtube_total_member_count",
|
|
365
473
|
/** Session member count. Use as {{youtube_session_member_count}}. */
|
|
366
474
|
YOUTUBE_SESSION_MEMBER_COUNT = "youtube_session_member_count",
|
|
475
|
+
/** Members for the current calendar week. Use as {{youtube_week_member_count}}. */
|
|
476
|
+
YOUTUBE_WEEK_MEMBER_COUNT = "youtube_week_member_count",
|
|
477
|
+
/** Members for the current calendar month. Use as {{youtube_month_member_count}}. */
|
|
478
|
+
YOUTUBE_MONTH_MEMBER_COUNT = "youtube_month_member_count",
|
|
367
479
|
/** Last member. Use as {{youtube_last_member}}. */
|
|
368
480
|
YOUTUBE_LAST_MEMBER = "youtube_last_member",
|
|
369
481
|
/** Session members (list). Use as {{youtube_session_members}}. */
|
|
@@ -408,10 +520,18 @@ export declare enum SystemVariables {
|
|
|
408
520
|
FACEBOOK_TOTAL_FOLLOWER_COUNT = "facebook_total_follower_count",
|
|
409
521
|
/** Session follower count. Use as {{facebook_session_follower_count}}. */
|
|
410
522
|
FACEBOOK_SESSION_FOLLOWER_COUNT = "facebook_session_follower_count",
|
|
523
|
+
/** Followers for the current calendar week. Use as {{facebook_week_follower_count}}. */
|
|
524
|
+
FACEBOOK_WEEK_FOLLOWER_COUNT = "facebook_week_follower_count",
|
|
525
|
+
/** Followers for the current calendar month. Use as {{facebook_month_follower_count}}. */
|
|
526
|
+
FACEBOOK_MONTH_FOLLOWER_COUNT = "facebook_month_follower_count",
|
|
411
527
|
/** Lifetime fan count. Use as {{facebook_total_fan_count}}. */
|
|
412
528
|
FACEBOOK_TOTAL_FAN_COUNT = "facebook_total_fan_count",
|
|
413
529
|
/** Session fan count. Use as {{facebook_session_fan_count}}. */
|
|
414
530
|
FACEBOOK_SESSION_FAN_COUNT = "facebook_session_fan_count",
|
|
531
|
+
/** Fans for the current calendar week. Use as {{facebook_week_fan_count}}. */
|
|
532
|
+
FACEBOOK_WEEK_FAN_COUNT = "facebook_week_fan_count",
|
|
533
|
+
/** Fans for the current calendar month. Use as {{facebook_month_fan_count}}. */
|
|
534
|
+
FACEBOOK_MONTH_FAN_COUNT = "facebook_month_fan_count",
|
|
415
535
|
/** Session reaction count. Use as {{facebook_reaction_count}}. */
|
|
416
536
|
FACEBOOK_REACTION_COUNT = "facebook_reaction_count",
|
|
417
537
|
/** Last Stars sender. Use as {{facebook_last_star}}. */
|
|
@@ -440,6 +560,10 @@ export declare enum SystemVariables {
|
|
|
440
560
|
TIKTOK_TOTAL_FOLLOWER_COUNT = "tiktok_total_follower_count",
|
|
441
561
|
/** Session follower count. Use as {{tiktok_session_follower_count}}. */
|
|
442
562
|
TIKTOK_SESSION_FOLLOWER_COUNT = "tiktok_session_follower_count",
|
|
563
|
+
/** Followers for the current calendar week. Use as {{tiktok_week_follower_count}}. */
|
|
564
|
+
TIKTOK_WEEK_FOLLOWER_COUNT = "tiktok_week_follower_count",
|
|
565
|
+
/** Followers for the current calendar month. Use as {{tiktok_month_follower_count}}. */
|
|
566
|
+
TIKTOK_MONTH_FOLLOWER_COUNT = "tiktok_month_follower_count",
|
|
443
567
|
/** Session super fan count. Use as {{tiktok_session_super_fan_count}}. */
|
|
444
568
|
TIKTOK_SESSION_SUPER_FAN_COUNT = "tiktok_session_super_fan_count",
|
|
445
569
|
/** Session share count. Use as {{tiktok_session_share_count}}. */
|
|
@@ -502,10 +626,18 @@ export declare enum SystemVariables {
|
|
|
502
626
|
KICK_TOTAL_FOLLOWER_COUNT = "kick_total_follower_count",
|
|
503
627
|
/** Session follower count. Use as {{kick_session_follower_count}}. */
|
|
504
628
|
KICK_SESSION_FOLLOWER_COUNT = "kick_session_follower_count",
|
|
629
|
+
/** Followers for the current calendar week. Use as {{kick_week_follower_count}}. */
|
|
630
|
+
KICK_WEEK_FOLLOWER_COUNT = "kick_week_follower_count",
|
|
631
|
+
/** Followers for the current calendar month. Use as {{kick_month_follower_count}}. */
|
|
632
|
+
KICK_MONTH_FOLLOWER_COUNT = "kick_month_follower_count",
|
|
505
633
|
/** Lifetime total subs. Use as {{kick_total_subscriber_count}}. */
|
|
506
634
|
KICK_TOTAL_SUBSCRIBER_COUNT = "kick_total_subscriber_count",
|
|
507
635
|
/** Session subs count. Use as {{kick_session_subscriber_count}}. */
|
|
508
636
|
KICK_SESSION_SUBSCRIBER_COUNT = "kick_session_subscriber_count",
|
|
637
|
+
/** Subscribers for the current calendar week. Use as {{kick_week_subscriber_count}}. */
|
|
638
|
+
KICK_WEEK_SUBSCRIBER_COUNT = "kick_week_subscriber_count",
|
|
639
|
+
/** Subscribers for the current calendar month. Use as {{kick_month_subscriber_count}}. */
|
|
640
|
+
KICK_MONTH_SUBSCRIBER_COUNT = "kick_month_subscriber_count",
|
|
509
641
|
/** Session gifts count. Use as {{kick_session_gifts_count}}. */
|
|
510
642
|
KICK_SESSION_GIFTS_COUNT = "kick_session_gifts_count",
|
|
511
643
|
/** Session subscribers list. Use as {{kick_session_subscribers}}. */
|
package/dist/variables.types.js
CHANGED
|
@@ -164,6 +164,30 @@ var SystemVariables;
|
|
|
164
164
|
SystemVariables["SESSION_DONATOR_LIST_WITH_AMOUNT"] = "session_donator_list_with_amount";
|
|
165
165
|
/** Raw donation total ignoring currency. Use as {{total_raw_donation_amount}}. */
|
|
166
166
|
SystemVariables["TOTAL_RAW_DONATION_AMOUNT"] = "total_raw_donation_amount";
|
|
167
|
+
/** Donation sum for the current calendar week. Use as {{week_donation_amount}}. */
|
|
168
|
+
SystemVariables["WEEK_DONATION_AMOUNT"] = "week_donation_amount";
|
|
169
|
+
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
170
|
+
SystemVariables["MONTH_DONATION_AMOUNT"] = "month_donation_amount";
|
|
171
|
+
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
172
|
+
SystemVariables["WEEK_DONATION_COUNT"] = "week_donation_count";
|
|
173
|
+
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
174
|
+
SystemVariables["MONTH_DONATION_COUNT"] = "month_donation_count";
|
|
175
|
+
/** Top donator for the current calendar week. Use as {{week_top_donator}}. */
|
|
176
|
+
SystemVariables["WEEK_TOP_DONATOR"] = "week_top_donator";
|
|
177
|
+
/** Amount for WEEK_TOP_DONATOR. Use as {{week_top_donator_amount}}. */
|
|
178
|
+
SystemVariables["WEEK_TOP_DONATOR_AMOUNT"] = "week_top_donator_amount";
|
|
179
|
+
/** Top donators this week (top 10, comma-separated usernames). Use as {{week_top_donator_list}}. */
|
|
180
|
+
SystemVariables["WEEK_TOP_DONATOR_LIST"] = "week_top_donator_list";
|
|
181
|
+
/** Amounts for WEEK_TOP_DONATOR_LIST (parallel comma-separated). Use as {{week_top_donator_list_amount}}. */
|
|
182
|
+
SystemVariables["WEEK_TOP_DONATOR_LIST_AMOUNT"] = "week_top_donator_list_amount";
|
|
183
|
+
/** Top donator for the current calendar month. Use as {{month_top_donator}}. */
|
|
184
|
+
SystemVariables["MONTH_TOP_DONATOR"] = "month_top_donator";
|
|
185
|
+
/** Amount for MONTH_TOP_DONATOR. Use as {{month_top_donator_amount}}. */
|
|
186
|
+
SystemVariables["MONTH_TOP_DONATOR_AMOUNT"] = "month_top_donator_amount";
|
|
187
|
+
/** Top donators this month. Use as {{month_top_donator_list}}. */
|
|
188
|
+
SystemVariables["MONTH_TOP_DONATOR_LIST"] = "month_top_donator_list";
|
|
189
|
+
/** Amounts for MONTH_TOP_DONATOR_LIST. Use as {{month_top_donator_list_amount}}. */
|
|
190
|
+
SystemVariables["MONTH_TOP_DONATOR_LIST_AMOUNT"] = "month_top_donator_list_amount";
|
|
167
191
|
// ─────────────────────────────────── Games ────────────────────────────────────
|
|
168
192
|
/** Raffle title. Use as {{raffle_title}}. */
|
|
169
193
|
SystemVariables["RAFFLE_TITLE"] = "raffle_title";
|
|
@@ -254,14 +278,32 @@ var SystemVariables;
|
|
|
254
278
|
SystemVariables["TWITCH_CURRENT_FOLLOWERS"] = "twitch_current_followers";
|
|
255
279
|
/** Session followers count. Use as {{twitch_session_follower_count}}. */
|
|
256
280
|
SystemVariables["TWITCH_SESSION_FOLLOWER_COUNT"] = "twitch_session_follower_count";
|
|
281
|
+
/** Followers for the current calendar week. Use as {{twitch_week_follower_count}}. */
|
|
282
|
+
SystemVariables["TWITCH_WEEK_FOLLOWER_COUNT"] = "twitch_week_follower_count";
|
|
283
|
+
/** Followers for the current calendar month. Use as {{twitch_month_follower_count}}. */
|
|
284
|
+
SystemVariables["TWITCH_MONTH_FOLLOWER_COUNT"] = "twitch_month_follower_count";
|
|
257
285
|
/** Current subscribers (comma-separated). Use as {{twitch_current_subscribers}}. */
|
|
258
286
|
SystemVariables["TWITCH_CURRENT_SUBSCRIBERS"] = "twitch_current_subscribers";
|
|
259
287
|
/** Lifetime total subs. Use as {{twitch_total_subscriber_count}}. */
|
|
260
288
|
SystemVariables["TWITCH_TOTAL_SUBSCRIBER_COUNT"] = "twitch_total_subscriber_count";
|
|
261
289
|
/** Session subs count. Use as {{twitch_session_subscribers_count}}. */
|
|
262
290
|
SystemVariables["TWITCH_SESSION_SUBSCRIBERS_COUNT"] = "twitch_session_subscribers_count";
|
|
291
|
+
/** Session NEW subscribers (excluding resubs / gifts). Use as {{twitch_session_new_subscribers_count}}. */
|
|
292
|
+
SystemVariables["TWITCH_SESSION_NEW_SUBSCRIBERS_COUNT"] = "twitch_session_new_subscribers_count";
|
|
293
|
+
/** Session resubscribers (excluding new / gifts). Use as {{twitch_session_resub_subscribers_count}}. */
|
|
294
|
+
SystemVariables["TWITCH_SESSION_RESUB_SUBSCRIBERS_COUNT"] = "twitch_session_resub_subscribers_count";
|
|
295
|
+
/** Session gifted subscribers. Use as {{twitch_session_gifted_subscribers_count}}. */
|
|
296
|
+
SystemVariables["TWITCH_SESSION_GIFTED_SUBSCRIBERS_COUNT"] = "twitch_session_gifted_subscribers_count";
|
|
297
|
+
/** Subscribers for the current calendar week. Use as {{twitch_week_subscriber_count}}. */
|
|
298
|
+
SystemVariables["TWITCH_WEEK_SUBSCRIBER_COUNT"] = "twitch_week_subscriber_count";
|
|
299
|
+
/** Subscribers for the current calendar month. Use as {{twitch_month_subscriber_count}}. */
|
|
300
|
+
SystemVariables["TWITCH_MONTH_SUBSCRIBER_COUNT"] = "twitch_month_subscriber_count";
|
|
263
301
|
/** Session gifts count. Use as {{twitch_session_gifts_count}}. */
|
|
264
302
|
SystemVariables["TWITCH_SESSION_GIFTS_COUNT"] = "twitch_session_gifts_count";
|
|
303
|
+
/** All-time top gifter. Use as {{twitch_alltime_top_gifter}}. */
|
|
304
|
+
SystemVariables["TWITCH_ALLTIME_TOP_GIFTER"] = "twitch_alltime_top_gifter";
|
|
305
|
+
/** Lifetime gift count for TWITCH_ALLTIME_TOP_GIFTER. Use as {{twitch_alltime_top_gifter_amount}}. */
|
|
306
|
+
SystemVariables["TWITCH_ALLTIME_TOP_GIFTER_AMOUNT"] = "twitch_alltime_top_gifter_amount";
|
|
265
307
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
266
308
|
SystemVariables["TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT"] = "twitch_total_gift_subscription_count";
|
|
267
309
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
@@ -300,6 +342,10 @@ var SystemVariables;
|
|
|
300
342
|
SystemVariables["TWITCH_TOTAL_BITS_COUNT"] = "twitch_total_bits_count";
|
|
301
343
|
/** Session bits count. Use as {{twitch_session_bits_count}}. */
|
|
302
344
|
SystemVariables["TWITCH_SESSION_BITS_COUNT"] = "twitch_session_bits_count";
|
|
345
|
+
/** Bits for the current calendar week. Use as {{twitch_week_bits_count}}. */
|
|
346
|
+
SystemVariables["TWITCH_WEEK_BITS_COUNT"] = "twitch_week_bits_count";
|
|
347
|
+
/** Bits for the current calendar month. Use as {{twitch_month_bits_count}}. */
|
|
348
|
+
SystemVariables["TWITCH_MONTH_BITS_COUNT"] = "twitch_month_bits_count";
|
|
303
349
|
/** Last bit sender. Use as {{twitch_last_bit}}. */
|
|
304
350
|
SystemVariables["TWITCH_LAST_BIT"] = "twitch_last_bit";
|
|
305
351
|
/** Last bit amount. Use as {{twitch_last_bit_amount}}. */
|
|
@@ -308,6 +354,64 @@ var SystemVariables;
|
|
|
308
354
|
SystemVariables["TWITCH_SESSION_BITS"] = "twitch_session_bits";
|
|
309
355
|
/** Session bits with amounts list. Use as {{twitch_session_bits_with_amount}}. */
|
|
310
356
|
SystemVariables["TWITCH_SESSION_BITS_WITH_AMOUNT"] = "twitch_session_bits_with_amount";
|
|
357
|
+
/** Top single cheer this session. Use as {{twitch_session_top_cheer}}. */
|
|
358
|
+
SystemVariables["TWITCH_SESSION_TOP_CHEER"] = "twitch_session_top_cheer";
|
|
359
|
+
/** Amount for TWITCH_SESSION_TOP_CHEER. Use as {{twitch_session_top_cheer_amount}}. */
|
|
360
|
+
SystemVariables["TWITCH_SESSION_TOP_CHEER_AMOUNT"] = "twitch_session_top_cheer_amount";
|
|
361
|
+
/** Top cheerer this session (by total bits). Use as {{twitch_session_top_cheerer}}. */
|
|
362
|
+
SystemVariables["TWITCH_SESSION_TOP_CHEERER"] = "twitch_session_top_cheerer";
|
|
363
|
+
/** Total bits for TWITCH_SESSION_TOP_CHEERER. Use as {{twitch_session_top_cheerer_amount}}. */
|
|
364
|
+
SystemVariables["TWITCH_SESSION_TOP_CHEERER_AMOUNT"] = "twitch_session_top_cheerer_amount";
|
|
365
|
+
/** Top cheerer for the current calendar week. Use as {{twitch_week_top_cheerer}}. */
|
|
366
|
+
SystemVariables["TWITCH_WEEK_TOP_CHEERER"] = "twitch_week_top_cheerer";
|
|
367
|
+
/** Total bits for TWITCH_WEEK_TOP_CHEERER. Use as {{twitch_week_top_cheerer_amount}}. */
|
|
368
|
+
SystemVariables["TWITCH_WEEK_TOP_CHEERER_AMOUNT"] = "twitch_week_top_cheerer_amount";
|
|
369
|
+
/** Top cheerer for the current calendar month. Use as {{twitch_month_top_cheerer}}. */
|
|
370
|
+
SystemVariables["TWITCH_MONTH_TOP_CHEERER"] = "twitch_month_top_cheerer";
|
|
371
|
+
/** Total bits for TWITCH_MONTH_TOP_CHEERER. Use as {{twitch_month_top_cheerer_amount}}. */
|
|
372
|
+
SystemVariables["TWITCH_MONTH_TOP_CHEERER_AMOUNT"] = "twitch_month_top_cheerer_amount";
|
|
373
|
+
/** Whether a hype train is currently active (true/false). Use as {{twitch_hypetrain_active}}. */
|
|
374
|
+
SystemVariables["TWITCH_HYPETRAIN_ACTIVE"] = "twitch_hypetrain_active";
|
|
375
|
+
/** Current hype train level. Use as {{twitch_hypetrain_level}}. */
|
|
376
|
+
SystemVariables["TWITCH_HYPETRAIN_LEVEL"] = "twitch_hypetrain_level";
|
|
377
|
+
/** Current hype train progress toward the next level. Use as {{twitch_hypetrain_progress}}. */
|
|
378
|
+
SystemVariables["TWITCH_HYPETRAIN_PROGRESS"] = "twitch_hypetrain_progress";
|
|
379
|
+
/** Target value to reach the next hype train level. Use as {{twitch_hypetrain_level_goal}}. */
|
|
380
|
+
SystemVariables["TWITCH_HYPETRAIN_LEVEL_GOAL"] = "twitch_hypetrain_level_goal";
|
|
381
|
+
/** Total contributions this hype train (running sum). Use as {{twitch_hypetrain_total}}. */
|
|
382
|
+
SystemVariables["TWITCH_HYPETRAIN_TOTAL"] = "twitch_hypetrain_total";
|
|
383
|
+
/** Top contributor for the current hype train. Use as {{twitch_hypetrain_top_contributor}}. */
|
|
384
|
+
SystemVariables["TWITCH_HYPETRAIN_TOP_CONTRIBUTOR"] = "twitch_hypetrain_top_contributor";
|
|
385
|
+
/** Amount contributed by TWITCH_HYPETRAIN_TOP_CONTRIBUTOR. Use as {{twitch_hypetrain_top_contributor_amount}}. */
|
|
386
|
+
SystemVariables["TWITCH_HYPETRAIN_TOP_CONTRIBUTOR_AMOUNT"] = "twitch_hypetrain_top_contributor_amount";
|
|
387
|
+
/** All-time top cheerer (by total bits). Use as {{twitch_alltime_top_cheerer}}. */
|
|
388
|
+
SystemVariables["TWITCH_ALLTIME_TOP_CHEERER"] = "twitch_alltime_top_cheerer";
|
|
389
|
+
/** Total bits for TWITCH_ALLTIME_TOP_CHEERER. Use as {{twitch_alltime_top_cheerer_amount}}. */
|
|
390
|
+
SystemVariables["TWITCH_ALLTIME_TOP_CHEERER_AMOUNT"] = "twitch_alltime_top_cheerer_amount";
|
|
391
|
+
/** Top cheerers list (top 10, comma-separated usernames, sorted by total bits). Use as {{top_cheerer_list}}. */
|
|
392
|
+
SystemVariables["TOP_CHEERER_LIST"] = "top_cheerer_list";
|
|
393
|
+
/** Total bits for TOP_CHEERER_LIST (parallel comma-separated). Use as {{top_cheerer_list_amount}}. */
|
|
394
|
+
SystemVariables["TOP_CHEERER_LIST_AMOUNT"] = "top_cheerer_list_amount";
|
|
395
|
+
/** Top cheerers this week (top 10, comma-separated usernames). Use as {{week_top_cheerer_list}}. */
|
|
396
|
+
SystemVariables["WEEK_TOP_CHEERER_LIST"] = "week_top_cheerer_list";
|
|
397
|
+
/** Total bits for WEEK_TOP_CHEERER_LIST (parallel comma-separated). Use as {{week_top_cheerer_list_amount}}. */
|
|
398
|
+
SystemVariables["WEEK_TOP_CHEERER_LIST_AMOUNT"] = "week_top_cheerer_list_amount";
|
|
399
|
+
/** Top cheerers this month. Use as {{month_top_cheerer_list}}. */
|
|
400
|
+
SystemVariables["MONTH_TOP_CHEERER_LIST"] = "month_top_cheerer_list";
|
|
401
|
+
/** Total bits for MONTH_TOP_CHEERER_LIST. Use as {{month_top_cheerer_list_amount}}. */
|
|
402
|
+
SystemVariables["MONTH_TOP_CHEERER_LIST_AMOUNT"] = "month_top_cheerer_list_amount";
|
|
403
|
+
/** Top gifters list (top 10, comma-separated usernames, sorted by lifetime gifted subs). Use as {{top_gifter_list}}. */
|
|
404
|
+
SystemVariables["TOP_GIFTER_LIST"] = "top_gifter_list";
|
|
405
|
+
/** Total gifts for TOP_GIFTER_LIST (parallel comma-separated). Use as {{top_gifter_list_amount}}. */
|
|
406
|
+
SystemVariables["TOP_GIFTER_LIST_AMOUNT"] = "top_gifter_list_amount";
|
|
407
|
+
/** Top gifters this week. Use as {{week_top_gifter_list}}. */
|
|
408
|
+
SystemVariables["WEEK_TOP_GIFTER_LIST"] = "week_top_gifter_list";
|
|
409
|
+
/** Total gifts for WEEK_TOP_GIFTER_LIST. Use as {{week_top_gifter_list_amount}}. */
|
|
410
|
+
SystemVariables["WEEK_TOP_GIFTER_LIST_AMOUNT"] = "week_top_gifter_list_amount";
|
|
411
|
+
/** Top gifters this month. Use as {{month_top_gifter_list}}. */
|
|
412
|
+
SystemVariables["MONTH_TOP_GIFTER_LIST"] = "month_top_gifter_list";
|
|
413
|
+
/** Total gifts for MONTH_TOP_GIFTER_LIST. Use as {{month_top_gifter_list_amount}}. */
|
|
414
|
+
SystemVariables["MONTH_TOP_GIFTER_LIST_AMOUNT"] = "month_top_gifter_list_amount";
|
|
311
415
|
/** Last clip ID. Use as {{twitch_last_clip_id}}. */
|
|
312
416
|
SystemVariables["TWITCH_LAST_CLIP_ID"] = "twitch_last_clip_id";
|
|
313
417
|
/** Last clip URL. Use as {{twitch_last_clip_url}}. */
|
|
@@ -355,6 +459,10 @@ var SystemVariables;
|
|
|
355
459
|
SystemVariables["YOUTUBE_LAST_CHATTER"] = "youtube_last_chatter";
|
|
356
460
|
/** Session subscriber count. Use as {{youtube_session_subscriber_count}}. */
|
|
357
461
|
SystemVariables["YOUTUBE_SESSION_SUBSCRIBER_COUNT"] = "youtube_session_subscriber_count";
|
|
462
|
+
/** Subscribers for the current calendar week. Use as {{youtube_week_subscriber_count}}. */
|
|
463
|
+
SystemVariables["YOUTUBE_WEEK_SUBSCRIBER_COUNT"] = "youtube_week_subscriber_count";
|
|
464
|
+
/** Subscribers for the current calendar month. Use as {{youtube_month_subscriber_count}}. */
|
|
465
|
+
SystemVariables["YOUTUBE_MONTH_SUBSCRIBER_COUNT"] = "youtube_month_subscriber_count";
|
|
358
466
|
/** Lifetime subscriber count. Use as {{youtube_total_subscriber_count}}. */
|
|
359
467
|
SystemVariables["YOUTUBE_TOTAL_SUBSCRIBER_COUNT"] = "youtube_total_subscriber_count";
|
|
360
468
|
/** Session SuperChat count. Use as {{youtube_session_superchat_count}}. */
|
|
@@ -373,6 +481,10 @@ var SystemVariables;
|
|
|
373
481
|
SystemVariables["YOUTUBE_TOTAL_MEMBER_COUNT"] = "youtube_total_member_count";
|
|
374
482
|
/** Session member count. Use as {{youtube_session_member_count}}. */
|
|
375
483
|
SystemVariables["YOUTUBE_SESSION_MEMBER_COUNT"] = "youtube_session_member_count";
|
|
484
|
+
/** Members for the current calendar week. Use as {{youtube_week_member_count}}. */
|
|
485
|
+
SystemVariables["YOUTUBE_WEEK_MEMBER_COUNT"] = "youtube_week_member_count";
|
|
486
|
+
/** Members for the current calendar month. Use as {{youtube_month_member_count}}. */
|
|
487
|
+
SystemVariables["YOUTUBE_MONTH_MEMBER_COUNT"] = "youtube_month_member_count";
|
|
376
488
|
/** Last member. Use as {{youtube_last_member}}. */
|
|
377
489
|
SystemVariables["YOUTUBE_LAST_MEMBER"] = "youtube_last_member";
|
|
378
490
|
/** Session members (list). Use as {{youtube_session_members}}. */
|
|
@@ -418,10 +530,18 @@ var SystemVariables;
|
|
|
418
530
|
SystemVariables["FACEBOOK_TOTAL_FOLLOWER_COUNT"] = "facebook_total_follower_count";
|
|
419
531
|
/** Session follower count. Use as {{facebook_session_follower_count}}. */
|
|
420
532
|
SystemVariables["FACEBOOK_SESSION_FOLLOWER_COUNT"] = "facebook_session_follower_count";
|
|
533
|
+
/** Followers for the current calendar week. Use as {{facebook_week_follower_count}}. */
|
|
534
|
+
SystemVariables["FACEBOOK_WEEK_FOLLOWER_COUNT"] = "facebook_week_follower_count";
|
|
535
|
+
/** Followers for the current calendar month. Use as {{facebook_month_follower_count}}. */
|
|
536
|
+
SystemVariables["FACEBOOK_MONTH_FOLLOWER_COUNT"] = "facebook_month_follower_count";
|
|
421
537
|
/** Lifetime fan count. Use as {{facebook_total_fan_count}}. */
|
|
422
538
|
SystemVariables["FACEBOOK_TOTAL_FAN_COUNT"] = "facebook_total_fan_count";
|
|
423
539
|
/** Session fan count. Use as {{facebook_session_fan_count}}. */
|
|
424
540
|
SystemVariables["FACEBOOK_SESSION_FAN_COUNT"] = "facebook_session_fan_count";
|
|
541
|
+
/** Fans for the current calendar week. Use as {{facebook_week_fan_count}}. */
|
|
542
|
+
SystemVariables["FACEBOOK_WEEK_FAN_COUNT"] = "facebook_week_fan_count";
|
|
543
|
+
/** Fans for the current calendar month. Use as {{facebook_month_fan_count}}. */
|
|
544
|
+
SystemVariables["FACEBOOK_MONTH_FAN_COUNT"] = "facebook_month_fan_count";
|
|
425
545
|
/** Session reaction count. Use as {{facebook_reaction_count}}. */
|
|
426
546
|
SystemVariables["FACEBOOK_REACTION_COUNT"] = "facebook_reaction_count";
|
|
427
547
|
/** Last Stars sender. Use as {{facebook_last_star}}. */
|
|
@@ -451,6 +571,10 @@ var SystemVariables;
|
|
|
451
571
|
SystemVariables["TIKTOK_TOTAL_FOLLOWER_COUNT"] = "tiktok_total_follower_count";
|
|
452
572
|
/** Session follower count. Use as {{tiktok_session_follower_count}}. */
|
|
453
573
|
SystemVariables["TIKTOK_SESSION_FOLLOWER_COUNT"] = "tiktok_session_follower_count";
|
|
574
|
+
/** Followers for the current calendar week. Use as {{tiktok_week_follower_count}}. */
|
|
575
|
+
SystemVariables["TIKTOK_WEEK_FOLLOWER_COUNT"] = "tiktok_week_follower_count";
|
|
576
|
+
/** Followers for the current calendar month. Use as {{tiktok_month_follower_count}}. */
|
|
577
|
+
SystemVariables["TIKTOK_MONTH_FOLLOWER_COUNT"] = "tiktok_month_follower_count";
|
|
454
578
|
/** Session super fan count. Use as {{tiktok_session_super_fan_count}}. */
|
|
455
579
|
SystemVariables["TIKTOK_SESSION_SUPER_FAN_COUNT"] = "tiktok_session_super_fan_count";
|
|
456
580
|
/** Session share count. Use as {{tiktok_session_share_count}}. */
|
|
@@ -514,10 +638,18 @@ var SystemVariables;
|
|
|
514
638
|
SystemVariables["KICK_TOTAL_FOLLOWER_COUNT"] = "kick_total_follower_count";
|
|
515
639
|
/** Session follower count. Use as {{kick_session_follower_count}}. */
|
|
516
640
|
SystemVariables["KICK_SESSION_FOLLOWER_COUNT"] = "kick_session_follower_count";
|
|
641
|
+
/** Followers for the current calendar week. Use as {{kick_week_follower_count}}. */
|
|
642
|
+
SystemVariables["KICK_WEEK_FOLLOWER_COUNT"] = "kick_week_follower_count";
|
|
643
|
+
/** Followers for the current calendar month. Use as {{kick_month_follower_count}}. */
|
|
644
|
+
SystemVariables["KICK_MONTH_FOLLOWER_COUNT"] = "kick_month_follower_count";
|
|
517
645
|
/** Lifetime total subs. Use as {{kick_total_subscriber_count}}. */
|
|
518
646
|
SystemVariables["KICK_TOTAL_SUBSCRIBER_COUNT"] = "kick_total_subscriber_count";
|
|
519
647
|
/** Session subs count. Use as {{kick_session_subscriber_count}}. */
|
|
520
648
|
SystemVariables["KICK_SESSION_SUBSCRIBER_COUNT"] = "kick_session_subscriber_count";
|
|
649
|
+
/** Subscribers for the current calendar week. Use as {{kick_week_subscriber_count}}. */
|
|
650
|
+
SystemVariables["KICK_WEEK_SUBSCRIBER_COUNT"] = "kick_week_subscriber_count";
|
|
651
|
+
/** Subscribers for the current calendar month. Use as {{kick_month_subscriber_count}}. */
|
|
652
|
+
SystemVariables["KICK_MONTH_SUBSCRIBER_COUNT"] = "kick_month_subscriber_count";
|
|
521
653
|
/** Session gifts count. Use as {{kick_session_gifts_count}}. */
|
|
522
654
|
SystemVariables["KICK_SESSION_GIFTS_COUNT"] = "kick_session_gifts_count";
|
|
523
655
|
/** Session subscribers list. Use as {{kick_session_subscribers}}. */
|
|
@@ -948,6 +1080,18 @@ exports.AllVariables = {
|
|
|
948
1080
|
'session_donation_count',
|
|
949
1081
|
'session_donator_list',
|
|
950
1082
|
'session_donator_list_with_amount',
|
|
1083
|
+
'week_donation_amount',
|
|
1084
|
+
'month_donation_amount',
|
|
1085
|
+
'week_donation_count',
|
|
1086
|
+
'month_donation_count',
|
|
1087
|
+
'week_top_donator',
|
|
1088
|
+
'week_top_donator_amount',
|
|
1089
|
+
'week_top_donator_list',
|
|
1090
|
+
'week_top_donator_list_amount',
|
|
1091
|
+
'month_top_donator',
|
|
1092
|
+
'month_top_donator_amount',
|
|
1093
|
+
'month_top_donator_list',
|
|
1094
|
+
'month_top_donator_list_amount',
|
|
951
1095
|
'raffle_title',
|
|
952
1096
|
'raffle_description',
|
|
953
1097
|
'raffle_entries',
|
|
@@ -1482,8 +1626,12 @@ exports.AllVariables = {
|
|
|
1482
1626
|
'facebook_last_chatter',
|
|
1483
1627
|
'facebook_total_follower_count',
|
|
1484
1628
|
'facebook_session_follower_count',
|
|
1629
|
+
'facebook_week_follower_count',
|
|
1630
|
+
'facebook_month_follower_count',
|
|
1485
1631
|
'facebook_total_fan_count',
|
|
1486
1632
|
'facebook_session_fan_count',
|
|
1633
|
+
'facebook_week_fan_count',
|
|
1634
|
+
'facebook_month_fan_count',
|
|
1487
1635
|
'facebook_reaction_count',
|
|
1488
1636
|
'facebook_last_star',
|
|
1489
1637
|
'facebook_last_star_amount',
|
|
@@ -1871,8 +2019,12 @@ exports.AllVariables = {
|
|
|
1871
2019
|
'kick_current_viewer_count',
|
|
1872
2020
|
'kick_total_follower_count',
|
|
1873
2021
|
'kick_session_follower_count',
|
|
2022
|
+
'kick_week_follower_count',
|
|
2023
|
+
'kick_month_follower_count',
|
|
1874
2024
|
'kick_total_subscriber_count',
|
|
1875
2025
|
'kick_session_subscriber_count',
|
|
2026
|
+
'kick_week_subscriber_count',
|
|
2027
|
+
'kick_month_subscriber_count',
|
|
1876
2028
|
'kick_session_gifts_count',
|
|
1877
2029
|
'kick_session_subscribers',
|
|
1878
2030
|
'kick_last_kicks',
|
|
@@ -2059,6 +2211,8 @@ exports.AllVariables = {
|
|
|
2059
2211
|
'tiktok_current_viewer_count',
|
|
2060
2212
|
'tiktok_total_follower_count',
|
|
2061
2213
|
'tiktok_session_follower_count',
|
|
2214
|
+
'tiktok_week_follower_count',
|
|
2215
|
+
'tiktok_month_follower_count',
|
|
2062
2216
|
'tiktok_session_super_fan_count',
|
|
2063
2217
|
'tiktok_session_share_count',
|
|
2064
2218
|
'tiktok_last_follower',
|
|
@@ -2147,11 +2301,20 @@ exports.AllVariables = {
|
|
|
2147
2301
|
'twitch_total_follower_count',
|
|
2148
2302
|
'twitch_current_followers',
|
|
2149
2303
|
'twitch_session_follower_count',
|
|
2304
|
+
'twitch_week_follower_count',
|
|
2305
|
+
'twitch_month_follower_count',
|
|
2150
2306
|
'twitch_current_subscribers',
|
|
2151
2307
|
'twitch_total_subscriber_count',
|
|
2152
2308
|
'twitch_session_subscribers_count',
|
|
2309
|
+
'twitch_session_new_subscribers_count',
|
|
2310
|
+
'twitch_session_resub_subscribers_count',
|
|
2311
|
+
'twitch_session_gifted_subscribers_count',
|
|
2312
|
+
'twitch_week_subscriber_count',
|
|
2313
|
+
'twitch_month_subscriber_count',
|
|
2153
2314
|
'twitch_session_gifts_count',
|
|
2154
2315
|
'twitch_total_gift_subscription_count',
|
|
2316
|
+
'twitch_alltime_top_gifter',
|
|
2317
|
+
'twitch_alltime_top_gifter_amount',
|
|
2155
2318
|
'twitch_current_mods',
|
|
2156
2319
|
'twitch_last_follower',
|
|
2157
2320
|
'twitch_session_follower',
|
|
@@ -2170,10 +2333,41 @@ exports.AllVariables = {
|
|
|
2170
2333
|
'twitch_session_raiders',
|
|
2171
2334
|
'twitch_total_bits_count',
|
|
2172
2335
|
'twitch_session_bits_count',
|
|
2336
|
+
'twitch_week_bits_count',
|
|
2337
|
+
'twitch_month_bits_count',
|
|
2173
2338
|
'twitch_last_bit',
|
|
2174
2339
|
'twitch_last_bit_amount',
|
|
2175
2340
|
'twitch_session_bits',
|
|
2176
2341
|
'twitch_session_bits_with_amount',
|
|
2342
|
+
'twitch_session_top_cheer',
|
|
2343
|
+
'twitch_session_top_cheer_amount',
|
|
2344
|
+
'twitch_session_top_cheerer',
|
|
2345
|
+
'twitch_session_top_cheerer_amount',
|
|
2346
|
+
'twitch_week_top_cheerer',
|
|
2347
|
+
'twitch_week_top_cheerer_amount',
|
|
2348
|
+
'twitch_month_top_cheerer',
|
|
2349
|
+
'twitch_month_top_cheerer_amount',
|
|
2350
|
+
'twitch_hypetrain_active',
|
|
2351
|
+
'twitch_hypetrain_level',
|
|
2352
|
+
'twitch_hypetrain_progress',
|
|
2353
|
+
'twitch_hypetrain_level_goal',
|
|
2354
|
+
'twitch_hypetrain_total',
|
|
2355
|
+
'twitch_hypetrain_top_contributor',
|
|
2356
|
+
'twitch_hypetrain_top_contributor_amount',
|
|
2357
|
+
'twitch_alltime_top_cheerer',
|
|
2358
|
+
'twitch_alltime_top_cheerer_amount',
|
|
2359
|
+
'top_cheerer_list',
|
|
2360
|
+
'top_cheerer_list_amount',
|
|
2361
|
+
'week_top_cheerer_list',
|
|
2362
|
+
'week_top_cheerer_list_amount',
|
|
2363
|
+
'month_top_cheerer_list',
|
|
2364
|
+
'month_top_cheerer_list_amount',
|
|
2365
|
+
'top_gifter_list',
|
|
2366
|
+
'top_gifter_list_amount',
|
|
2367
|
+
'week_top_gifter_list',
|
|
2368
|
+
'week_top_gifter_list_amount',
|
|
2369
|
+
'month_top_gifter_list',
|
|
2370
|
+
'month_top_gifter_list_amount',
|
|
2177
2371
|
'twitch_last_clip_id',
|
|
2178
2372
|
'twitch_last_clip_url',
|
|
2179
2373
|
'twitch_last_clip_thumbnail_url',
|
|
@@ -2400,6 +2594,8 @@ exports.AllVariables = {
|
|
|
2400
2594
|
'youtube_previous_first_chatter_count',
|
|
2401
2595
|
'youtube_last_chatter',
|
|
2402
2596
|
'youtube_session_subscriber_count',
|
|
2597
|
+
'youtube_week_subscriber_count',
|
|
2598
|
+
'youtube_month_subscriber_count',
|
|
2403
2599
|
'youtube_total_subscriber_count',
|
|
2404
2600
|
'youtube_session_superchat_count',
|
|
2405
2601
|
'youtube_last_superchatter',
|
|
@@ -2409,6 +2605,8 @@ exports.AllVariables = {
|
|
|
2409
2605
|
'youtube_session_superstickers',
|
|
2410
2606
|
'youtube_total_member_count',
|
|
2411
2607
|
'youtube_session_member_count',
|
|
2608
|
+
'youtube_week_member_count',
|
|
2609
|
+
'youtube_month_member_count',
|
|
2412
2610
|
'youtube_last_member',
|
|
2413
2611
|
'youtube_session_members',
|
|
2414
2612
|
'youtube_last_subscriber',
|