@lumiastream/lumia-types 3.3.5-beta.1 → 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/alert.types.js +18 -0
- package/dist/custom-overlays/custom-overlays.d.ts +132 -0
- package/dist/custom-overlays.d.ts +132 -0
- package/dist/variables.types.d.ts +334 -21
- package/dist/variables.types.js +533 -47
- package/package.json +1 -1
|
@@ -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}}. */
|
|
@@ -705,24 +837,24 @@ export declare const AllVariables: {
|
|
|
705
837
|
variables: string[];
|
|
706
838
|
chat: {
|
|
707
839
|
cooldowns: string[];
|
|
708
|
-
command: string[];
|
|
709
|
-
chatbotCommand: string[];
|
|
840
|
+
command: (string | LumiaAcceptedVariableDefinition)[];
|
|
841
|
+
chatbotCommand: (string | LumiaAcceptedVariableDefinition)[];
|
|
710
842
|
twitchPoints: string[];
|
|
711
843
|
kickPoints: string[];
|
|
712
844
|
twitchExtensions: string[];
|
|
713
845
|
fileWatcher: string[];
|
|
714
846
|
chatmatch: string[];
|
|
715
|
-
commands: string[];
|
|
716
|
-
shoutout: string[];
|
|
717
|
-
followage: string[];
|
|
718
|
-
uptime: string[];
|
|
719
|
-
aichat: string[];
|
|
720
|
-
loyaltyPoints: string[];
|
|
721
|
-
roulette: string[];
|
|
722
|
-
duel: string[];
|
|
723
|
-
slots: string[];
|
|
724
|
-
raffleEntry: string[];
|
|
725
|
-
viewerQueueEntry: string[];
|
|
847
|
+
commands: (string | LumiaAcceptedVariableDefinition)[];
|
|
848
|
+
shoutout: (string | LumiaAcceptedVariableDefinition)[];
|
|
849
|
+
followage: (string | LumiaAcceptedVariableDefinition)[];
|
|
850
|
+
uptime: (string | LumiaAcceptedVariableDefinition)[];
|
|
851
|
+
aichat: (string | LumiaAcceptedVariableDefinition)[];
|
|
852
|
+
loyaltyPoints: (string | LumiaAcceptedVariableDefinition)[];
|
|
853
|
+
roulette: (string | LumiaAcceptedVariableDefinition)[];
|
|
854
|
+
duel: (string | LumiaAcceptedVariableDefinition)[];
|
|
855
|
+
slots: (string | LumiaAcceptedVariableDefinition)[];
|
|
856
|
+
raffleEntry: (string | LumiaAcceptedVariableDefinition)[];
|
|
857
|
+
viewerQueueEntry: (string | LumiaAcceptedVariableDefinition)[];
|
|
726
858
|
};
|
|
727
859
|
alerts: {
|
|
728
860
|
lumiaOpened: string[];
|
|
@@ -781,7 +913,7 @@ export declare const AllVariables: {
|
|
|
781
913
|
reaction: string[];
|
|
782
914
|
star: string[];
|
|
783
915
|
support: string[];
|
|
784
|
-
subscriptionGift: string[];
|
|
916
|
+
subscriptionGift: (string | LumiaAcceptedVariableDefinition)[];
|
|
785
917
|
share: string[];
|
|
786
918
|
};
|
|
787
919
|
};
|
|
@@ -793,6 +925,28 @@ export declare const AllVariables: {
|
|
|
793
925
|
subscriptionExpired: string[];
|
|
794
926
|
commission: string[];
|
|
795
927
|
shopOrder: (string | {
|
|
928
|
+
name: string;
|
|
929
|
+
example: {
|
|
930
|
+
id: string;
|
|
931
|
+
name: string;
|
|
932
|
+
slug: string;
|
|
933
|
+
description: string;
|
|
934
|
+
imageUrl: string;
|
|
935
|
+
variantName: string;
|
|
936
|
+
sku: string;
|
|
937
|
+
quantity: number;
|
|
938
|
+
size: string;
|
|
939
|
+
color: string;
|
|
940
|
+
colorSwatch: string;
|
|
941
|
+
attributes: string;
|
|
942
|
+
unitPrice: number;
|
|
943
|
+
price: number;
|
|
944
|
+
variant: null;
|
|
945
|
+
}[];
|
|
946
|
+
} | {
|
|
947
|
+
name: string;
|
|
948
|
+
example: string[];
|
|
949
|
+
} | {
|
|
796
950
|
name: string;
|
|
797
951
|
example: {
|
|
798
952
|
id: string;
|
|
@@ -812,10 +966,169 @@ export declare const AllVariables: {
|
|
|
812
966
|
variant: null;
|
|
813
967
|
};
|
|
814
968
|
})[];
|
|
815
|
-
giftPurchase: string
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
969
|
+
giftPurchase: (string | {
|
|
970
|
+
name: string;
|
|
971
|
+
example: {
|
|
972
|
+
id: string;
|
|
973
|
+
name: string;
|
|
974
|
+
slug: string;
|
|
975
|
+
description: string;
|
|
976
|
+
imageUrl: string;
|
|
977
|
+
variantName: string;
|
|
978
|
+
sku: string;
|
|
979
|
+
quantity: number;
|
|
980
|
+
size: string;
|
|
981
|
+
color: string;
|
|
982
|
+
colorSwatch: string;
|
|
983
|
+
attributes: string;
|
|
984
|
+
unitPrice: number;
|
|
985
|
+
price: number;
|
|
986
|
+
variant: null;
|
|
987
|
+
};
|
|
988
|
+
} | {
|
|
989
|
+
name: string;
|
|
990
|
+
example: {
|
|
991
|
+
id: string;
|
|
992
|
+
status: string;
|
|
993
|
+
winner: {
|
|
994
|
+
username: string;
|
|
995
|
+
email: string;
|
|
996
|
+
selectedAt: string;
|
|
997
|
+
redeemUri: string;
|
|
998
|
+
};
|
|
999
|
+
orderId: string;
|
|
1000
|
+
orderFriendlyId: string;
|
|
1001
|
+
promotionId: string;
|
|
1002
|
+
}[];
|
|
1003
|
+
} | {
|
|
1004
|
+
name: string;
|
|
1005
|
+
example: {
|
|
1006
|
+
username: string;
|
|
1007
|
+
email: string;
|
|
1008
|
+
status: string;
|
|
1009
|
+
selectedAt: string;
|
|
1010
|
+
redeemUri: string;
|
|
1011
|
+
orderId: string;
|
|
1012
|
+
orderFriendlyId: string;
|
|
1013
|
+
promotionId: string;
|
|
1014
|
+
}[];
|
|
1015
|
+
} | {
|
|
1016
|
+
name: string;
|
|
1017
|
+
example: string[];
|
|
1018
|
+
})[];
|
|
1019
|
+
giveawayStarted: (string | {
|
|
1020
|
+
name: string;
|
|
1021
|
+
example: {
|
|
1022
|
+
username: string;
|
|
1023
|
+
email: string;
|
|
1024
|
+
status: string;
|
|
1025
|
+
selectedAt: string;
|
|
1026
|
+
redeemUri: string;
|
|
1027
|
+
orderId: string;
|
|
1028
|
+
orderFriendlyId: string;
|
|
1029
|
+
promotionId: string;
|
|
1030
|
+
}[];
|
|
1031
|
+
} | {
|
|
1032
|
+
name: string;
|
|
1033
|
+
example: string[];
|
|
1034
|
+
} | {
|
|
1035
|
+
name: string;
|
|
1036
|
+
example: {
|
|
1037
|
+
id: string;
|
|
1038
|
+
status: string;
|
|
1039
|
+
winner: {
|
|
1040
|
+
username: string;
|
|
1041
|
+
email: string;
|
|
1042
|
+
selectedAt: string;
|
|
1043
|
+
redeemUri: string;
|
|
1044
|
+
};
|
|
1045
|
+
orderId: string;
|
|
1046
|
+
orderFriendlyId: string;
|
|
1047
|
+
promotionId: string;
|
|
1048
|
+
}[];
|
|
1049
|
+
} | {
|
|
1050
|
+
name: string;
|
|
1051
|
+
example: {
|
|
1052
|
+
id: string;
|
|
1053
|
+
name: string;
|
|
1054
|
+
slug: string;
|
|
1055
|
+
description: string;
|
|
1056
|
+
imageUrl: string;
|
|
1057
|
+
variantName: string;
|
|
1058
|
+
sku: string;
|
|
1059
|
+
quantity: number;
|
|
1060
|
+
size: string;
|
|
1061
|
+
color: string;
|
|
1062
|
+
colorSwatch: string;
|
|
1063
|
+
attributes: string;
|
|
1064
|
+
unitPrice: number;
|
|
1065
|
+
price: number;
|
|
1066
|
+
variant: null;
|
|
1067
|
+
};
|
|
1068
|
+
})[];
|
|
1069
|
+
giveawayEnded: (string | {
|
|
1070
|
+
name: string;
|
|
1071
|
+
example: {
|
|
1072
|
+
username: string;
|
|
1073
|
+
email: string;
|
|
1074
|
+
status: string;
|
|
1075
|
+
selectedAt: string;
|
|
1076
|
+
redeemUri: string;
|
|
1077
|
+
orderId: string;
|
|
1078
|
+
orderFriendlyId: string;
|
|
1079
|
+
promotionId: string;
|
|
1080
|
+
}[];
|
|
1081
|
+
} | {
|
|
1082
|
+
name: string;
|
|
1083
|
+
example: string[];
|
|
1084
|
+
} | {
|
|
1085
|
+
name: string;
|
|
1086
|
+
example: {
|
|
1087
|
+
id: string;
|
|
1088
|
+
status: string;
|
|
1089
|
+
winner: {
|
|
1090
|
+
username: string;
|
|
1091
|
+
email: string;
|
|
1092
|
+
selectedAt: string;
|
|
1093
|
+
redeemUri: string;
|
|
1094
|
+
};
|
|
1095
|
+
orderId: string;
|
|
1096
|
+
orderFriendlyId: string;
|
|
1097
|
+
promotionId: string;
|
|
1098
|
+
}[];
|
|
1099
|
+
} | {
|
|
1100
|
+
name: string;
|
|
1101
|
+
example: {
|
|
1102
|
+
id: string;
|
|
1103
|
+
name: string;
|
|
1104
|
+
slug: string;
|
|
1105
|
+
description: string;
|
|
1106
|
+
imageUrl: string;
|
|
1107
|
+
variantName: string;
|
|
1108
|
+
sku: string;
|
|
1109
|
+
quantity: number;
|
|
1110
|
+
size: string;
|
|
1111
|
+
color: string;
|
|
1112
|
+
colorSwatch: string;
|
|
1113
|
+
attributes: string;
|
|
1114
|
+
unitPrice: number;
|
|
1115
|
+
price: number;
|
|
1116
|
+
variant: null;
|
|
1117
|
+
};
|
|
1118
|
+
})[];
|
|
1119
|
+
thankyouSent: (string | {
|
|
1120
|
+
name: string;
|
|
1121
|
+
example: {
|
|
1122
|
+
id: string;
|
|
1123
|
+
type: string;
|
|
1124
|
+
shopId: string;
|
|
1125
|
+
supporter: {
|
|
1126
|
+
username: string;
|
|
1127
|
+
email: string;
|
|
1128
|
+
message: string;
|
|
1129
|
+
};
|
|
1130
|
+
};
|
|
1131
|
+
})[];
|
|
819
1132
|
newsletterSubscribed: string[];
|
|
820
1133
|
};
|
|
821
1134
|
};
|
|
@@ -828,7 +1141,7 @@ export declare const AllVariables: {
|
|
|
828
1141
|
sessionFollowers: string[];
|
|
829
1142
|
subscriber: string[];
|
|
830
1143
|
sessionSubs: string[];
|
|
831
|
-
subscriptionGift: string[];
|
|
1144
|
+
subscriptionGift: (string | LumiaAcceptedVariableDefinition)[];
|
|
832
1145
|
sessionGiftSubscriptions: string[];
|
|
833
1146
|
kicks: string[];
|
|
834
1147
|
sessionKicks: string[];
|
|
@@ -991,7 +1304,7 @@ export declare const AllVariables: {
|
|
|
991
1304
|
sessionFollowers: string[];
|
|
992
1305
|
subscriber: string[];
|
|
993
1306
|
sessionSubs: string[];
|
|
994
|
-
giftSubscription: string[];
|
|
1307
|
+
giftSubscription: (string | LumiaAcceptedVariableDefinition)[];
|
|
995
1308
|
sessionGiftSubscriptions: string[];
|
|
996
1309
|
bits: string[];
|
|
997
1310
|
bitsCombo: string[];
|
|
@@ -1079,7 +1392,7 @@ export declare const AllVariables: {
|
|
|
1079
1392
|
sessionSubs: string[];
|
|
1080
1393
|
member: string[];
|
|
1081
1394
|
sessionMembers: string[];
|
|
1082
|
-
giftMembers: string[];
|
|
1395
|
+
giftMembers: (string | LumiaAcceptedVariableDefinition)[];
|
|
1083
1396
|
sessionGiftMembers: string[];
|
|
1084
1397
|
gifts: string[];
|
|
1085
1398
|
sessionGifts: string[];
|