@lumiastream/lumia-types 3.3.5 → 3.3.7-alpha.1
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/activity.types.d.ts +1 -0
- package/dist/activity.types.js +4 -0
- package/dist/custom-overlays/custom-overlays.d.ts +144 -0
- package/dist/custom-overlays.d.ts +144 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -1
- package/dist/songrequest.types.d.ts +157 -0
- package/dist/songrequest.types.js +80 -0
- package/dist/variables.types.d.ts +144 -0
- package/dist/variables.types.js +210 -0
- package/package.json +1 -1
package/dist/activity.types.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare enum LumiaActivityCommandTypes {
|
|
|
23
23
|
CHAT_COMMAND = "chat-command",
|
|
24
24
|
CHATBOT_COMMAND = "chatbot-command",
|
|
25
25
|
CHAT_MATCH = "chat-match",
|
|
26
|
+
SONG_REQUEST = "song-request",
|
|
26
27
|
TWITCH_POINTS = "twitch-points",
|
|
27
28
|
TWITCH_POINTS_OUTPUT = "twitch-points-output",
|
|
28
29
|
TWITCH_EXTENSION = "twitch-extension",
|
package/dist/activity.types.js
CHANGED
|
@@ -29,6 +29,10 @@ var LumiaActivityCommandTypes;
|
|
|
29
29
|
LumiaActivityCommandTypes["CHAT_COMMAND"] = "chat-command";
|
|
30
30
|
LumiaActivityCommandTypes["CHATBOT_COMMAND"] = "chatbot-command";
|
|
31
31
|
LumiaActivityCommandTypes["CHAT_MATCH"] = "chat-match";
|
|
32
|
+
// Marker for song-request items mirrored into ModQueue. When QueueEngine
|
|
33
|
+
// sees this type on an approve/deny path, it routes to SongRequestManager
|
|
34
|
+
// instead of the default chat-command execution.
|
|
35
|
+
LumiaActivityCommandTypes["SONG_REQUEST"] = "song-request";
|
|
32
36
|
LumiaActivityCommandTypes["TWITCH_POINTS"] = "twitch-points";
|
|
33
37
|
LumiaActivityCommandTypes["TWITCH_POINTS_OUTPUT"] = "twitch-points-output";
|
|
34
38
|
LumiaActivityCommandTypes["TWITCH_EXTENSION"] = "twitch-extension";
|
|
@@ -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}}. */
|
|
@@ -1168,6 +1272,10 @@ export declare enum SystemVariables {
|
|
|
1168
1272
|
TWITCH_CURRENT_POLL_ID = "twitch_current_poll_id",
|
|
1169
1273
|
/** Current prediction ID. Use as {{twitch_current_prediction_id}}. */
|
|
1170
1274
|
TWITCH_CURRENT_PREDICTION_ID = "twitch_current_prediction_id",
|
|
1275
|
+
/** Channel id. Use as {{youtube_channel_id}}. */
|
|
1276
|
+
YOUTUBE_CHANNEL_ID = "youtube_channel_id",
|
|
1277
|
+
/** Channel username (custom URL slug, falls back to channel title). Use as {{youtube_username}}. */
|
|
1278
|
+
YOUTUBE_USERNAME = "youtube_username",
|
|
1171
1279
|
/** Current viewer count. Use as {{youtube_current_viewer_count}}. */
|
|
1172
1280
|
YOUTUBE_CURRENT_VIEWER_COUNT = "youtube_current_viewer_count",
|
|
1173
1281
|
/** Total viewer count (stream). Use as {{youtube_total_viewer_count}}. */
|
|
@@ -1192,6 +1300,10 @@ export declare enum SystemVariables {
|
|
|
1192
1300
|
YOUTUBE_LAST_CHATTER = "youtube_last_chatter",
|
|
1193
1301
|
/** Session subscriber count. Use as {{youtube_session_subscriber_count}}. */
|
|
1194
1302
|
YOUTUBE_SESSION_SUBSCRIBER_COUNT = "youtube_session_subscriber_count",
|
|
1303
|
+
/** Subscribers for the current calendar week. Use as {{youtube_week_subscriber_count}}. */
|
|
1304
|
+
YOUTUBE_WEEK_SUBSCRIBER_COUNT = "youtube_week_subscriber_count",
|
|
1305
|
+
/** Subscribers for the current calendar month. Use as {{youtube_month_subscriber_count}}. */
|
|
1306
|
+
YOUTUBE_MONTH_SUBSCRIBER_COUNT = "youtube_month_subscriber_count",
|
|
1195
1307
|
/** Lifetime subscriber count. Use as {{youtube_total_subscriber_count}}. */
|
|
1196
1308
|
YOUTUBE_TOTAL_SUBSCRIBER_COUNT = "youtube_total_subscriber_count",
|
|
1197
1309
|
/** Session SuperChat count. Use as {{youtube_session_superchat_count}}. */
|
|
@@ -1210,6 +1322,10 @@ export declare enum SystemVariables {
|
|
|
1210
1322
|
YOUTUBE_TOTAL_MEMBER_COUNT = "youtube_total_member_count",
|
|
1211
1323
|
/** Session member count. Use as {{youtube_session_member_count}}. */
|
|
1212
1324
|
YOUTUBE_SESSION_MEMBER_COUNT = "youtube_session_member_count",
|
|
1325
|
+
/** Members for the current calendar week. Use as {{youtube_week_member_count}}. */
|
|
1326
|
+
YOUTUBE_WEEK_MEMBER_COUNT = "youtube_week_member_count",
|
|
1327
|
+
/** Members for the current calendar month. Use as {{youtube_month_member_count}}. */
|
|
1328
|
+
YOUTUBE_MONTH_MEMBER_COUNT = "youtube_month_member_count",
|
|
1213
1329
|
/** Last member. Use as {{youtube_last_member}}. */
|
|
1214
1330
|
YOUTUBE_LAST_MEMBER = "youtube_last_member",
|
|
1215
1331
|
/** Session members (list). Use as {{youtube_session_members}}. */
|
|
@@ -1238,6 +1354,10 @@ export declare enum SystemVariables {
|
|
|
1238
1354
|
YOUTUBE_TOTAL_VIDEO_COUNT = "youtube_total_video_count",
|
|
1239
1355
|
/** Total channel views. Use as {{youtube_total_view_count}}. */
|
|
1240
1356
|
YOUTUBE_TOTAL_VIEW_COUNT = "youtube_total_view_count",
|
|
1357
|
+
/** Page / user id. Use as {{facebook_user_id}}. */
|
|
1358
|
+
FACEBOOK_USER_ID = "facebook_user_id",
|
|
1359
|
+
/** Page / user username. Use as {{facebook_username}}. */
|
|
1360
|
+
FACEBOOK_USERNAME = "facebook_username",
|
|
1241
1361
|
/** Session chat count. Use as {{facebook_session_chat_count}}. */
|
|
1242
1362
|
FACEBOOK_SESSION_CHAT_COUNT = "facebook_session_chat_count",
|
|
1243
1363
|
/** Current first chatter. Use as {{facebook_current_first_chatter}}. */
|
|
@@ -1254,10 +1374,18 @@ export declare enum SystemVariables {
|
|
|
1254
1374
|
FACEBOOK_TOTAL_FOLLOWER_COUNT = "facebook_total_follower_count",
|
|
1255
1375
|
/** Session follower count. Use as {{facebook_session_follower_count}}. */
|
|
1256
1376
|
FACEBOOK_SESSION_FOLLOWER_COUNT = "facebook_session_follower_count",
|
|
1377
|
+
/** Followers for the current calendar week. Use as {{facebook_week_follower_count}}. */
|
|
1378
|
+
FACEBOOK_WEEK_FOLLOWER_COUNT = "facebook_week_follower_count",
|
|
1379
|
+
/** Followers for the current calendar month. Use as {{facebook_month_follower_count}}. */
|
|
1380
|
+
FACEBOOK_MONTH_FOLLOWER_COUNT = "facebook_month_follower_count",
|
|
1257
1381
|
/** Lifetime fan count. Use as {{facebook_total_fan_count}}. */
|
|
1258
1382
|
FACEBOOK_TOTAL_FAN_COUNT = "facebook_total_fan_count",
|
|
1259
1383
|
/** Session fan count. Use as {{facebook_session_fan_count}}. */
|
|
1260
1384
|
FACEBOOK_SESSION_FAN_COUNT = "facebook_session_fan_count",
|
|
1385
|
+
/** Fans for the current calendar week. Use as {{facebook_week_fan_count}}. */
|
|
1386
|
+
FACEBOOK_WEEK_FAN_COUNT = "facebook_week_fan_count",
|
|
1387
|
+
/** Fans for the current calendar month. Use as {{facebook_month_fan_count}}. */
|
|
1388
|
+
FACEBOOK_MONTH_FAN_COUNT = "facebook_month_fan_count",
|
|
1261
1389
|
/** Session reaction count. Use as {{facebook_reaction_count}}. */
|
|
1262
1390
|
FACEBOOK_REACTION_COUNT = "facebook_reaction_count",
|
|
1263
1391
|
/** Last Stars sender. Use as {{facebook_last_star}}. */
|
|
@@ -1268,6 +1396,10 @@ export declare enum SystemVariables {
|
|
|
1268
1396
|
FACEBOOK_SESSION_STARS = "facebook_session_stars",
|
|
1269
1397
|
/** Session Stars with amounts list. Use as {{facebook_session_stars_with_amount}}. */
|
|
1270
1398
|
FACEBOOK_SESSION_STARS_WITH_AMOUNT = "facebook_session_stars_with_amount",
|
|
1399
|
+
/** Channel user id. Use as {{tiktok_user_id}}. */
|
|
1400
|
+
TIKTOK_USER_ID = "tiktok_user_id",
|
|
1401
|
+
/** Channel username. Use as {{tiktok_username}}. */
|
|
1402
|
+
TIKTOK_USERNAME = "tiktok_username",
|
|
1271
1403
|
/** Session chat count. Use as {{tiktok_session_chat_count}}. */
|
|
1272
1404
|
TIKTOK_SESSION_CHAT_COUNT = "tiktok_session_chat_count",
|
|
1273
1405
|
/** Current first chatter. Use as {{tiktok_current_first_chatter}}. */
|
|
@@ -1286,6 +1418,10 @@ export declare enum SystemVariables {
|
|
|
1286
1418
|
TIKTOK_TOTAL_FOLLOWER_COUNT = "tiktok_total_follower_count",
|
|
1287
1419
|
/** Session follower count. Use as {{tiktok_session_follower_count}}. */
|
|
1288
1420
|
TIKTOK_SESSION_FOLLOWER_COUNT = "tiktok_session_follower_count",
|
|
1421
|
+
/** Followers for the current calendar week. Use as {{tiktok_week_follower_count}}. */
|
|
1422
|
+
TIKTOK_WEEK_FOLLOWER_COUNT = "tiktok_week_follower_count",
|
|
1423
|
+
/** Followers for the current calendar month. Use as {{tiktok_month_follower_count}}. */
|
|
1424
|
+
TIKTOK_MONTH_FOLLOWER_COUNT = "tiktok_month_follower_count",
|
|
1289
1425
|
/** Session super fan count. Use as {{tiktok_session_super_fan_count}}. */
|
|
1290
1426
|
TIKTOK_SESSION_SUPER_FAN_COUNT = "tiktok_session_super_fan_count",
|
|
1291
1427
|
/** Session share count. Use as {{tiktok_session_share_count}}. */
|
|
@@ -1348,10 +1484,18 @@ export declare enum SystemVariables {
|
|
|
1348
1484
|
KICK_TOTAL_FOLLOWER_COUNT = "kick_total_follower_count",
|
|
1349
1485
|
/** Session follower count. Use as {{kick_session_follower_count}}. */
|
|
1350
1486
|
KICK_SESSION_FOLLOWER_COUNT = "kick_session_follower_count",
|
|
1487
|
+
/** Followers for the current calendar week. Use as {{kick_week_follower_count}}. */
|
|
1488
|
+
KICK_WEEK_FOLLOWER_COUNT = "kick_week_follower_count",
|
|
1489
|
+
/** Followers for the current calendar month. Use as {{kick_month_follower_count}}. */
|
|
1490
|
+
KICK_MONTH_FOLLOWER_COUNT = "kick_month_follower_count",
|
|
1351
1491
|
/** Lifetime total subs. Use as {{kick_total_subscriber_count}}. */
|
|
1352
1492
|
KICK_TOTAL_SUBSCRIBER_COUNT = "kick_total_subscriber_count",
|
|
1353
1493
|
/** Session subs count. Use as {{kick_session_subscriber_count}}. */
|
|
1354
1494
|
KICK_SESSION_SUBSCRIBER_COUNT = "kick_session_subscriber_count",
|
|
1495
|
+
/** Subscribers for the current calendar week. Use as {{kick_week_subscriber_count}}. */
|
|
1496
|
+
KICK_WEEK_SUBSCRIBER_COUNT = "kick_week_subscriber_count",
|
|
1497
|
+
/** Subscribers for the current calendar month. Use as {{kick_month_subscriber_count}}. */
|
|
1498
|
+
KICK_MONTH_SUBSCRIBER_COUNT = "kick_month_subscriber_count",
|
|
1355
1499
|
/** Session gifts count. Use as {{kick_session_gifts_count}}. */
|
|
1356
1500
|
KICK_SESSION_GIFTS_COUNT = "kick_session_gifts_count",
|
|
1357
1501
|
/** 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}}. */
|
|
@@ -1168,6 +1272,10 @@ export declare enum SystemVariables {
|
|
|
1168
1272
|
TWITCH_CURRENT_POLL_ID = "twitch_current_poll_id",
|
|
1169
1273
|
/** Current prediction ID. Use as {{twitch_current_prediction_id}}. */
|
|
1170
1274
|
TWITCH_CURRENT_PREDICTION_ID = "twitch_current_prediction_id",
|
|
1275
|
+
/** Channel id. Use as {{youtube_channel_id}}. */
|
|
1276
|
+
YOUTUBE_CHANNEL_ID = "youtube_channel_id",
|
|
1277
|
+
/** Channel username (custom URL slug, falls back to channel title). Use as {{youtube_username}}. */
|
|
1278
|
+
YOUTUBE_USERNAME = "youtube_username",
|
|
1171
1279
|
/** Current viewer count. Use as {{youtube_current_viewer_count}}. */
|
|
1172
1280
|
YOUTUBE_CURRENT_VIEWER_COUNT = "youtube_current_viewer_count",
|
|
1173
1281
|
/** Total viewer count (stream). Use as {{youtube_total_viewer_count}}. */
|
|
@@ -1192,6 +1300,10 @@ export declare enum SystemVariables {
|
|
|
1192
1300
|
YOUTUBE_LAST_CHATTER = "youtube_last_chatter",
|
|
1193
1301
|
/** Session subscriber count. Use as {{youtube_session_subscriber_count}}. */
|
|
1194
1302
|
YOUTUBE_SESSION_SUBSCRIBER_COUNT = "youtube_session_subscriber_count",
|
|
1303
|
+
/** Subscribers for the current calendar week. Use as {{youtube_week_subscriber_count}}. */
|
|
1304
|
+
YOUTUBE_WEEK_SUBSCRIBER_COUNT = "youtube_week_subscriber_count",
|
|
1305
|
+
/** Subscribers for the current calendar month. Use as {{youtube_month_subscriber_count}}. */
|
|
1306
|
+
YOUTUBE_MONTH_SUBSCRIBER_COUNT = "youtube_month_subscriber_count",
|
|
1195
1307
|
/** Lifetime subscriber count. Use as {{youtube_total_subscriber_count}}. */
|
|
1196
1308
|
YOUTUBE_TOTAL_SUBSCRIBER_COUNT = "youtube_total_subscriber_count",
|
|
1197
1309
|
/** Session SuperChat count. Use as {{youtube_session_superchat_count}}. */
|
|
@@ -1210,6 +1322,10 @@ export declare enum SystemVariables {
|
|
|
1210
1322
|
YOUTUBE_TOTAL_MEMBER_COUNT = "youtube_total_member_count",
|
|
1211
1323
|
/** Session member count. Use as {{youtube_session_member_count}}. */
|
|
1212
1324
|
YOUTUBE_SESSION_MEMBER_COUNT = "youtube_session_member_count",
|
|
1325
|
+
/** Members for the current calendar week. Use as {{youtube_week_member_count}}. */
|
|
1326
|
+
YOUTUBE_WEEK_MEMBER_COUNT = "youtube_week_member_count",
|
|
1327
|
+
/** Members for the current calendar month. Use as {{youtube_month_member_count}}. */
|
|
1328
|
+
YOUTUBE_MONTH_MEMBER_COUNT = "youtube_month_member_count",
|
|
1213
1329
|
/** Last member. Use as {{youtube_last_member}}. */
|
|
1214
1330
|
YOUTUBE_LAST_MEMBER = "youtube_last_member",
|
|
1215
1331
|
/** Session members (list). Use as {{youtube_session_members}}. */
|
|
@@ -1238,6 +1354,10 @@ export declare enum SystemVariables {
|
|
|
1238
1354
|
YOUTUBE_TOTAL_VIDEO_COUNT = "youtube_total_video_count",
|
|
1239
1355
|
/** Total channel views. Use as {{youtube_total_view_count}}. */
|
|
1240
1356
|
YOUTUBE_TOTAL_VIEW_COUNT = "youtube_total_view_count",
|
|
1357
|
+
/** Page / user id. Use as {{facebook_user_id}}. */
|
|
1358
|
+
FACEBOOK_USER_ID = "facebook_user_id",
|
|
1359
|
+
/** Page / user username. Use as {{facebook_username}}. */
|
|
1360
|
+
FACEBOOK_USERNAME = "facebook_username",
|
|
1241
1361
|
/** Session chat count. Use as {{facebook_session_chat_count}}. */
|
|
1242
1362
|
FACEBOOK_SESSION_CHAT_COUNT = "facebook_session_chat_count",
|
|
1243
1363
|
/** Current first chatter. Use as {{facebook_current_first_chatter}}. */
|
|
@@ -1254,10 +1374,18 @@ export declare enum SystemVariables {
|
|
|
1254
1374
|
FACEBOOK_TOTAL_FOLLOWER_COUNT = "facebook_total_follower_count",
|
|
1255
1375
|
/** Session follower count. Use as {{facebook_session_follower_count}}. */
|
|
1256
1376
|
FACEBOOK_SESSION_FOLLOWER_COUNT = "facebook_session_follower_count",
|
|
1377
|
+
/** Followers for the current calendar week. Use as {{facebook_week_follower_count}}. */
|
|
1378
|
+
FACEBOOK_WEEK_FOLLOWER_COUNT = "facebook_week_follower_count",
|
|
1379
|
+
/** Followers for the current calendar month. Use as {{facebook_month_follower_count}}. */
|
|
1380
|
+
FACEBOOK_MONTH_FOLLOWER_COUNT = "facebook_month_follower_count",
|
|
1257
1381
|
/** Lifetime fan count. Use as {{facebook_total_fan_count}}. */
|
|
1258
1382
|
FACEBOOK_TOTAL_FAN_COUNT = "facebook_total_fan_count",
|
|
1259
1383
|
/** Session fan count. Use as {{facebook_session_fan_count}}. */
|
|
1260
1384
|
FACEBOOK_SESSION_FAN_COUNT = "facebook_session_fan_count",
|
|
1385
|
+
/** Fans for the current calendar week. Use as {{facebook_week_fan_count}}. */
|
|
1386
|
+
FACEBOOK_WEEK_FAN_COUNT = "facebook_week_fan_count",
|
|
1387
|
+
/** Fans for the current calendar month. Use as {{facebook_month_fan_count}}. */
|
|
1388
|
+
FACEBOOK_MONTH_FAN_COUNT = "facebook_month_fan_count",
|
|
1261
1389
|
/** Session reaction count. Use as {{facebook_reaction_count}}. */
|
|
1262
1390
|
FACEBOOK_REACTION_COUNT = "facebook_reaction_count",
|
|
1263
1391
|
/** Last Stars sender. Use as {{facebook_last_star}}. */
|
|
@@ -1268,6 +1396,10 @@ export declare enum SystemVariables {
|
|
|
1268
1396
|
FACEBOOK_SESSION_STARS = "facebook_session_stars",
|
|
1269
1397
|
/** Session Stars with amounts list. Use as {{facebook_session_stars_with_amount}}. */
|
|
1270
1398
|
FACEBOOK_SESSION_STARS_WITH_AMOUNT = "facebook_session_stars_with_amount",
|
|
1399
|
+
/** Channel user id. Use as {{tiktok_user_id}}. */
|
|
1400
|
+
TIKTOK_USER_ID = "tiktok_user_id",
|
|
1401
|
+
/** Channel username. Use as {{tiktok_username}}. */
|
|
1402
|
+
TIKTOK_USERNAME = "tiktok_username",
|
|
1271
1403
|
/** Session chat count. Use as {{tiktok_session_chat_count}}. */
|
|
1272
1404
|
TIKTOK_SESSION_CHAT_COUNT = "tiktok_session_chat_count",
|
|
1273
1405
|
/** Current first chatter. Use as {{tiktok_current_first_chatter}}. */
|
|
@@ -1286,6 +1418,10 @@ export declare enum SystemVariables {
|
|
|
1286
1418
|
TIKTOK_TOTAL_FOLLOWER_COUNT = "tiktok_total_follower_count",
|
|
1287
1419
|
/** Session follower count. Use as {{tiktok_session_follower_count}}. */
|
|
1288
1420
|
TIKTOK_SESSION_FOLLOWER_COUNT = "tiktok_session_follower_count",
|
|
1421
|
+
/** Followers for the current calendar week. Use as {{tiktok_week_follower_count}}. */
|
|
1422
|
+
TIKTOK_WEEK_FOLLOWER_COUNT = "tiktok_week_follower_count",
|
|
1423
|
+
/** Followers for the current calendar month. Use as {{tiktok_month_follower_count}}. */
|
|
1424
|
+
TIKTOK_MONTH_FOLLOWER_COUNT = "tiktok_month_follower_count",
|
|
1289
1425
|
/** Session super fan count. Use as {{tiktok_session_super_fan_count}}. */
|
|
1290
1426
|
TIKTOK_SESSION_SUPER_FAN_COUNT = "tiktok_session_super_fan_count",
|
|
1291
1427
|
/** Session share count. Use as {{tiktok_session_share_count}}. */
|
|
@@ -1348,10 +1484,18 @@ export declare enum SystemVariables {
|
|
|
1348
1484
|
KICK_TOTAL_FOLLOWER_COUNT = "kick_total_follower_count",
|
|
1349
1485
|
/** Session follower count. Use as {{kick_session_follower_count}}. */
|
|
1350
1486
|
KICK_SESSION_FOLLOWER_COUNT = "kick_session_follower_count",
|
|
1487
|
+
/** Followers for the current calendar week. Use as {{kick_week_follower_count}}. */
|
|
1488
|
+
KICK_WEEK_FOLLOWER_COUNT = "kick_week_follower_count",
|
|
1489
|
+
/** Followers for the current calendar month. Use as {{kick_month_follower_count}}. */
|
|
1490
|
+
KICK_MONTH_FOLLOWER_COUNT = "kick_month_follower_count",
|
|
1351
1491
|
/** Lifetime total subs. Use as {{kick_total_subscriber_count}}. */
|
|
1352
1492
|
KICK_TOTAL_SUBSCRIBER_COUNT = "kick_total_subscriber_count",
|
|
1353
1493
|
/** Session subs count. Use as {{kick_session_subscriber_count}}. */
|
|
1354
1494
|
KICK_SESSION_SUBSCRIBER_COUNT = "kick_session_subscriber_count",
|
|
1495
|
+
/** Subscribers for the current calendar week. Use as {{kick_week_subscriber_count}}. */
|
|
1496
|
+
KICK_WEEK_SUBSCRIBER_COUNT = "kick_week_subscriber_count",
|
|
1497
|
+
/** Subscribers for the current calendar month. Use as {{kick_month_subscriber_count}}. */
|
|
1498
|
+
KICK_MONTH_SUBSCRIBER_COUNT = "kick_month_subscriber_count",
|
|
1355
1499
|
/** Session gifts count. Use as {{kick_session_gifts_count}}. */
|
|
1356
1500
|
KICK_SESSION_GIFTS_COUNT = "kick_session_gifts_count",
|
|
1357
1501
|
/** Session subscribers list. Use as {{kick_session_subscribers}}. */
|
package/dist/index.d.ts
CHANGED
|
@@ -8,3 +8,4 @@ export { KickKicksData } from './kick_kicks';
|
|
|
8
8
|
export { TiktokGiftsData } from './tiktok_gifts';
|
|
9
9
|
export { YoutubeSuperstickersData } from './youtube_superstickers';
|
|
10
10
|
export { VIEWER_PROFILE_ACHIEVEMENTS, type ViewerProfileAchievementColor, type ViewerProfileAchievementDefinition, type ViewerProfileAchievementMetric, type ViewerProfileCollectionMode, type ViewerProfileCollectionRule, type ViewerProfileCollectionSettings, type ViewerProfileCollectionSource, } from './viewer_profile_achievements';
|
|
11
|
+
export { SongRequestStatus, SongRequestSource, SongRequestProvider, SongRequestPlaybackTarget, type SongRequestItem, type SongRequestConfig, type SongRequestState, type SongRequestQueueUpdatePayload, type SongRequestPendingUpdatePayload, type SongRequestNowPlayingPayload, type SongRequestAddParams, type SongRequestModerationParams, } from './songrequest.types';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.VIEWER_PROFILE_ACHIEVEMENTS = exports.YoutubeSuperstickersData = exports.TiktokGiftsData = exports.KickKicksData = exports.formatCondition = exports.getAcceptedVariableNames = exports.getAcceptedVariableName = exports.AllVariables = exports.ReservedVariables = exports.SystemVariables = exports.LumiaMapAlertTypeToEventListType = exports.LumiaEventListTypes = exports.LumiaEventTypes = exports.LumiaIntegrations = exports.LumiaAlertConfigs = exports.VariationCurrencySymbol = exports.LumiaVariationCurrency = exports.LumiaVariationConditions = exports.LumiaActivityTestType = exports.LumiaActivityNoValueTypes = exports.LumiaActivityApiValueType = exports.LumiaActivityOriginTypes = exports.LumiaAlertFriendlyValues = exports.LumiaAlertValues = exports.LumiaExternalActivityCommandTypes = exports.LumiaActivityCommandTypes = exports.LumiaStreamingSites = void 0;
|
|
3
|
+
exports.SongRequestPlaybackTarget = exports.SongRequestProvider = exports.SongRequestSource = exports.SongRequestStatus = exports.VIEWER_PROFILE_ACHIEVEMENTS = exports.YoutubeSuperstickersData = exports.TiktokGiftsData = exports.KickKicksData = exports.formatCondition = exports.getAcceptedVariableNames = exports.getAcceptedVariableName = exports.AllVariables = exports.ReservedVariables = exports.SystemVariables = exports.LumiaMapAlertTypeToEventListType = exports.LumiaEventListTypes = exports.LumiaEventTypes = exports.LumiaIntegrations = exports.LumiaAlertConfigs = exports.VariationCurrencySymbol = exports.LumiaVariationCurrency = exports.LumiaVariationConditions = exports.LumiaActivityTestType = exports.LumiaActivityNoValueTypes = exports.LumiaActivityApiValueType = exports.LumiaActivityOriginTypes = exports.LumiaAlertFriendlyValues = exports.LumiaAlertValues = exports.LumiaExternalActivityCommandTypes = exports.LumiaActivityCommandTypes = exports.LumiaStreamingSites = void 0;
|
|
4
4
|
var activity_types_1 = require("./activity.types");
|
|
5
5
|
Object.defineProperty(exports, "LumiaStreamingSites", { enumerable: true, get: function () { return activity_types_1.LumiaStreamingSites; } });
|
|
6
6
|
Object.defineProperty(exports, "LumiaActivityCommandTypes", { enumerable: true, get: function () { return activity_types_1.LumiaActivityCommandTypes; } });
|
|
@@ -38,3 +38,8 @@ var youtube_superstickers_1 = require("./youtube_superstickers");
|
|
|
38
38
|
Object.defineProperty(exports, "YoutubeSuperstickersData", { enumerable: true, get: function () { return youtube_superstickers_1.YoutubeSuperstickersData; } });
|
|
39
39
|
var viewer_profile_achievements_1 = require("./viewer_profile_achievements");
|
|
40
40
|
Object.defineProperty(exports, "VIEWER_PROFILE_ACHIEVEMENTS", { enumerable: true, get: function () { return viewer_profile_achievements_1.VIEWER_PROFILE_ACHIEVEMENTS; } });
|
|
41
|
+
var songrequest_types_1 = require("./songrequest.types");
|
|
42
|
+
Object.defineProperty(exports, "SongRequestStatus", { enumerable: true, get: function () { return songrequest_types_1.SongRequestStatus; } });
|
|
43
|
+
Object.defineProperty(exports, "SongRequestSource", { enumerable: true, get: function () { return songrequest_types_1.SongRequestSource; } });
|
|
44
|
+
Object.defineProperty(exports, "SongRequestProvider", { enumerable: true, get: function () { return songrequest_types_1.SongRequestProvider; } });
|
|
45
|
+
Object.defineProperty(exports, "SongRequestPlaybackTarget", { enumerable: true, get: function () { return songrequest_types_1.SongRequestPlaybackTarget; } });
|