@lumiastream/lumia-types 2.5.7 → 2.5.9
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 +5 -1
- package/dist/activity.types.js +4 -0
- package/dist/alert.types.js +58 -0
- package/dist/custom-overlays/custom-overlays.d.ts +17 -13
- package/dist/custom-overlays.d.ts +17 -13
- package/dist/variables.types.d.ts +14 -12
- package/dist/variables.types.js +15 -18
- package/package.json +1 -1
package/dist/activity.types.d.ts
CHANGED
|
@@ -518,7 +518,11 @@ export declare enum LumiaAlertValues {
|
|
|
518
518
|
/** Meld recording starting */
|
|
519
519
|
MELD_RECORDING_STARTING = "meld-recordingStarting",
|
|
520
520
|
/** Meld recording stopping */
|
|
521
|
-
MELD_RECORDING_STOPPING = "meld-recordingStopping"
|
|
521
|
+
MELD_RECORDING_STOPPING = "meld-recordingStopping",
|
|
522
|
+
/** Meld scene switched */
|
|
523
|
+
MELD_SWITCH_SCENE = "meld-switchScene",
|
|
524
|
+
/** Meld vertical scene switched */
|
|
525
|
+
MELD_SWITCH_VERTICAL_SCENE = "meld-switchVerticalScene"
|
|
522
526
|
}
|
|
523
527
|
export declare const LumiaAlertFriendlyValues: {
|
|
524
528
|
"lumiastream-lumiaOpened": string;
|
package/dist/activity.types.js
CHANGED
|
@@ -551,6 +551,10 @@ var LumiaAlertValues;
|
|
|
551
551
|
LumiaAlertValues["MELD_RECORDING_STARTING"] = "meld-recordingStarting";
|
|
552
552
|
/** Meld recording stopping */
|
|
553
553
|
LumiaAlertValues["MELD_RECORDING_STOPPING"] = "meld-recordingStopping";
|
|
554
|
+
/** Meld scene switched */
|
|
555
|
+
LumiaAlertValues["MELD_SWITCH_SCENE"] = "meld-switchScene";
|
|
556
|
+
/** Meld vertical scene switched */
|
|
557
|
+
LumiaAlertValues["MELD_SWITCH_VERTICAL_SCENE"] = "meld-switchVerticalScene";
|
|
554
558
|
})(LumiaAlertValues || (exports.LumiaAlertValues = LumiaAlertValues = {}));
|
|
555
559
|
exports.LumiaAlertFriendlyValues = {
|
|
556
560
|
[LumiaAlertValues.LUMIASTREAM_LUMIA_OPENED]: 'Lumia Opened',
|
package/dist/alert.types.js
CHANGED
|
@@ -8479,4 +8479,62 @@ exports.LumiaAlertConfigs = {
|
|
|
8479
8479
|
],
|
|
8480
8480
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }],
|
|
8481
8481
|
},
|
|
8482
|
+
[activity_types_1.LumiaAlertValues.MELD_SWITCH_SCENE]: {
|
|
8483
|
+
connection: event_types_1.LumiaIntegrations.MELD,
|
|
8484
|
+
message: 'Meld scene switched to {{scene}}',
|
|
8485
|
+
acceptedVariables: variables_types_1.AllVariables.meld.alerts.switchScene,
|
|
8486
|
+
quickActions: [
|
|
8487
|
+
{
|
|
8488
|
+
label: 'Scene Change',
|
|
8489
|
+
dynamic: { value: 'Lumia Scene' },
|
|
8490
|
+
extraSettings: { scene: 'Lumia Scene' },
|
|
8491
|
+
},
|
|
8492
|
+
],
|
|
8493
|
+
inputFields: [
|
|
8494
|
+
{
|
|
8495
|
+
type: 'text',
|
|
8496
|
+
label: 'Scene',
|
|
8497
|
+
dynamicField: 'value',
|
|
8498
|
+
variableField: 'scene',
|
|
8499
|
+
required: true,
|
|
8500
|
+
default: 'Lumia Scene',
|
|
8501
|
+
},
|
|
8502
|
+
],
|
|
8503
|
+
LumiaVariationConditions: [
|
|
8504
|
+
{ type: LumiaVariationConditions.RANDOM },
|
|
8505
|
+
{
|
|
8506
|
+
type: LumiaVariationConditions.EQUAL_STRING,
|
|
8507
|
+
description: 'Scene is equal to',
|
|
8508
|
+
},
|
|
8509
|
+
],
|
|
8510
|
+
},
|
|
8511
|
+
[activity_types_1.LumiaAlertValues.MELD_SWITCH_VERTICAL_SCENE]: {
|
|
8512
|
+
connection: event_types_1.LumiaIntegrations.MELD,
|
|
8513
|
+
message: 'Meld vertical scene switched to {{scene}}',
|
|
8514
|
+
acceptedVariables: variables_types_1.AllVariables.meld.alerts.switchVerticalScene,
|
|
8515
|
+
quickActions: [
|
|
8516
|
+
{
|
|
8517
|
+
label: 'Vertical Scene Change',
|
|
8518
|
+
dynamic: { value: 'Lumia Scene [Vertical]' },
|
|
8519
|
+
extraSettings: { scene: 'Lumia Scene [Vertical]' },
|
|
8520
|
+
},
|
|
8521
|
+
],
|
|
8522
|
+
inputFields: [
|
|
8523
|
+
{
|
|
8524
|
+
type: 'text',
|
|
8525
|
+
label: 'Vertical Scene',
|
|
8526
|
+
dynamicField: 'value',
|
|
8527
|
+
variableField: 'scene',
|
|
8528
|
+
required: true,
|
|
8529
|
+
default: 'Lumia Scene [Vertical]',
|
|
8530
|
+
},
|
|
8531
|
+
],
|
|
8532
|
+
LumiaVariationConditions: [
|
|
8533
|
+
{ type: LumiaVariationConditions.RANDOM },
|
|
8534
|
+
{
|
|
8535
|
+
type: LumiaVariationConditions.EQUAL_STRING,
|
|
8536
|
+
description: 'Vertical Scene is equal to',
|
|
8537
|
+
},
|
|
8538
|
+
],
|
|
8539
|
+
},
|
|
8482
8540
|
};
|
|
@@ -783,7 +783,11 @@ export declare enum LumiaAlertValues {
|
|
|
783
783
|
/** Meld recording starting */
|
|
784
784
|
MELD_RECORDING_STARTING = "meld-recordingStarting",
|
|
785
785
|
/** Meld recording stopping */
|
|
786
|
-
MELD_RECORDING_STOPPING = "meld-recordingStopping"
|
|
786
|
+
MELD_RECORDING_STOPPING = "meld-recordingStopping",
|
|
787
|
+
/** Meld scene switched */
|
|
788
|
+
MELD_SWITCH_SCENE = "meld-switchScene",
|
|
789
|
+
/** Meld vertical scene switched */
|
|
790
|
+
MELD_SWITCH_VERTICAL_SCENE = "meld-switchVerticalScene"
|
|
787
791
|
}
|
|
788
792
|
|
|
789
793
|
// <auto-generated-end name="LumiaAlertValues" />
|
|
@@ -987,12 +991,6 @@ export declare enum SystemVariables {
|
|
|
987
991
|
TWITCH_SESSION_GIFTS_COUNT = "twitch_session_gifts_count",
|
|
988
992
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
989
993
|
TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT = "twitch_total_gift_subscription_count",
|
|
990
|
-
/** Session gift members count. Use as {{twitch_session_gift_subscription_count}}. */
|
|
991
|
-
TWITCH_SESSION_GIFT_SUBSCRIPTION_COUNT = "twitch_session_gift_subscription_count",
|
|
992
|
-
/** Last gift member. Use as {{twitch_last_gift_subscription}}. */
|
|
993
|
-
TWITCH_LAST_GIFT_SUBSCRIPTION = "twitch_last_gift_subscription",
|
|
994
|
-
/** Session gift members (list). Use as {{twitch_session_gift_subscriptions}}. */
|
|
995
|
-
TWITCH_SESSION_GIFT_SUBSCRIPTIONS = "twitch_session_gift_subscriptions",
|
|
996
994
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
997
995
|
TWITCH_CURRENT_MODS = "twitch_current_mods",
|
|
998
996
|
/** Last follower. Use as {{twitch_last_follower}}. */
|
|
@@ -1251,12 +1249,6 @@ export declare enum SystemVariables {
|
|
|
1251
1249
|
KICK_LAST_SUBSCRIBER = "kick_last_subscriber",
|
|
1252
1250
|
/** Lifetime gift members count. Use as {{kick_total_gift_subscription_count}}. */
|
|
1253
1251
|
KICK_TOTAL_GIFT_SUBSCRIPTION_COUNT = "kick_total_gift_subscription_count",
|
|
1254
|
-
/** Session gift members count. Use as {{kick_session_gift_members_count}}. */
|
|
1255
|
-
KICK_SESSION_GIFT_SUBSCRIPTION_COUNT = "kick_session_gift_subscription_count",
|
|
1256
|
-
/** Last gift member. Use as {{kick_last_gift_member}}. */
|
|
1257
|
-
KICK_LAST_GIFT_SUBSCRIPTION = "kick_last_gift_subscription",
|
|
1258
|
-
/** Session gift members (list). Use as {{kick_session_gift_members}}. */
|
|
1259
|
-
KICK_SESSION_GIFT_SUBSCRIPTIONS = "kick_session_gift_subscriptions",
|
|
1260
1252
|
/** Get avatar by username. Use as {{kick_get_avatar}}. */
|
|
1261
1253
|
KICK_GET_AVATAR = "kick_get_avatar",
|
|
1262
1254
|
/** Live status (true/false). Use as {{trovo_live}}. */
|
|
@@ -1427,6 +1419,18 @@ export declare enum SystemVariables {
|
|
|
1427
1419
|
SLOBS_PREVIOUS_SCENE = "slobs_previous_scene",
|
|
1428
1420
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
1429
1421
|
SLOBS_CURRENT_SCENE_COLLECTION = "slobs_current_scene_collection",
|
|
1422
|
+
/** Is streaming (true/false). Use as {{meld_is_streaming}}. */
|
|
1423
|
+
MELD_IS_STREAMING = "meld_is_streaming",
|
|
1424
|
+
/** Is recording (true/false). Use as {{meld_is_recording}}. */
|
|
1425
|
+
MELD_IS_RECORDING = "meld_is_recording",
|
|
1426
|
+
/** Current scene. Use as {{meld_current_scene}}. */
|
|
1427
|
+
MELD_CURRENT_SCENE = "meld_current_scene",
|
|
1428
|
+
/** Previous scene. Use as {{meld_previous_scene}}. */
|
|
1429
|
+
MELD_PREVIOUS_SCENE = "meld_previous_scene",
|
|
1430
|
+
/** Current vertical scene. Use as {{meld_current_vertical_scene}}. */
|
|
1431
|
+
MELD_CURRENT_VERTICAL_SCENE = "meld_current_vertical_scene",
|
|
1432
|
+
/** Previous vertical scene. Use as {{meld_previous_vertical_scene}}. */
|
|
1433
|
+
MELD_PREVIOUS_VERTICAL_SCENE = "meld_previous_vertical_scene",
|
|
1430
1434
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
1431
1435
|
STREAMERBOT_LAST_ACTION = "streamerbot_last_action",
|
|
1432
1436
|
/** Current VTS model. Use as {{vtubestudio_current_model}}. */
|
|
@@ -783,7 +783,11 @@ export declare enum LumiaAlertValues {
|
|
|
783
783
|
/** Meld recording starting */
|
|
784
784
|
MELD_RECORDING_STARTING = "meld-recordingStarting",
|
|
785
785
|
/** Meld recording stopping */
|
|
786
|
-
MELD_RECORDING_STOPPING = "meld-recordingStopping"
|
|
786
|
+
MELD_RECORDING_STOPPING = "meld-recordingStopping",
|
|
787
|
+
/** Meld scene switched */
|
|
788
|
+
MELD_SWITCH_SCENE = "meld-switchScene",
|
|
789
|
+
/** Meld vertical scene switched */
|
|
790
|
+
MELD_SWITCH_VERTICAL_SCENE = "meld-switchVerticalScene"
|
|
787
791
|
}
|
|
788
792
|
|
|
789
793
|
// <auto-generated-end name="LumiaAlertValues" />
|
|
@@ -987,12 +991,6 @@ export declare enum SystemVariables {
|
|
|
987
991
|
TWITCH_SESSION_GIFTS_COUNT = "twitch_session_gifts_count",
|
|
988
992
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
989
993
|
TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT = "twitch_total_gift_subscription_count",
|
|
990
|
-
/** Session gift members count. Use as {{twitch_session_gift_subscription_count}}. */
|
|
991
|
-
TWITCH_SESSION_GIFT_SUBSCRIPTION_COUNT = "twitch_session_gift_subscription_count",
|
|
992
|
-
/** Last gift member. Use as {{twitch_last_gift_subscription}}. */
|
|
993
|
-
TWITCH_LAST_GIFT_SUBSCRIPTION = "twitch_last_gift_subscription",
|
|
994
|
-
/** Session gift members (list). Use as {{twitch_session_gift_subscriptions}}. */
|
|
995
|
-
TWITCH_SESSION_GIFT_SUBSCRIPTIONS = "twitch_session_gift_subscriptions",
|
|
996
994
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
997
995
|
TWITCH_CURRENT_MODS = "twitch_current_mods",
|
|
998
996
|
/** Last follower. Use as {{twitch_last_follower}}. */
|
|
@@ -1251,12 +1249,6 @@ export declare enum SystemVariables {
|
|
|
1251
1249
|
KICK_LAST_SUBSCRIBER = "kick_last_subscriber",
|
|
1252
1250
|
/** Lifetime gift members count. Use as {{kick_total_gift_subscription_count}}. */
|
|
1253
1251
|
KICK_TOTAL_GIFT_SUBSCRIPTION_COUNT = "kick_total_gift_subscription_count",
|
|
1254
|
-
/** Session gift members count. Use as {{kick_session_gift_members_count}}. */
|
|
1255
|
-
KICK_SESSION_GIFT_SUBSCRIPTION_COUNT = "kick_session_gift_subscription_count",
|
|
1256
|
-
/** Last gift member. Use as {{kick_last_gift_member}}. */
|
|
1257
|
-
KICK_LAST_GIFT_SUBSCRIPTION = "kick_last_gift_subscription",
|
|
1258
|
-
/** Session gift members (list). Use as {{kick_session_gift_members}}. */
|
|
1259
|
-
KICK_SESSION_GIFT_SUBSCRIPTIONS = "kick_session_gift_subscriptions",
|
|
1260
1252
|
/** Get avatar by username. Use as {{kick_get_avatar}}. */
|
|
1261
1253
|
KICK_GET_AVATAR = "kick_get_avatar",
|
|
1262
1254
|
/** Live status (true/false). Use as {{trovo_live}}. */
|
|
@@ -1427,6 +1419,18 @@ export declare enum SystemVariables {
|
|
|
1427
1419
|
SLOBS_PREVIOUS_SCENE = "slobs_previous_scene",
|
|
1428
1420
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
1429
1421
|
SLOBS_CURRENT_SCENE_COLLECTION = "slobs_current_scene_collection",
|
|
1422
|
+
/** Is streaming (true/false). Use as {{meld_is_streaming}}. */
|
|
1423
|
+
MELD_IS_STREAMING = "meld_is_streaming",
|
|
1424
|
+
/** Is recording (true/false). Use as {{meld_is_recording}}. */
|
|
1425
|
+
MELD_IS_RECORDING = "meld_is_recording",
|
|
1426
|
+
/** Current scene. Use as {{meld_current_scene}}. */
|
|
1427
|
+
MELD_CURRENT_SCENE = "meld_current_scene",
|
|
1428
|
+
/** Previous scene. Use as {{meld_previous_scene}}. */
|
|
1429
|
+
MELD_PREVIOUS_SCENE = "meld_previous_scene",
|
|
1430
|
+
/** Current vertical scene. Use as {{meld_current_vertical_scene}}. */
|
|
1431
|
+
MELD_CURRENT_VERTICAL_SCENE = "meld_current_vertical_scene",
|
|
1432
|
+
/** Previous vertical scene. Use as {{meld_previous_vertical_scene}}. */
|
|
1433
|
+
MELD_PREVIOUS_VERTICAL_SCENE = "meld_previous_vertical_scene",
|
|
1430
1434
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
1431
1435
|
STREAMERBOT_LAST_ACTION = "streamerbot_last_action",
|
|
1432
1436
|
/** Current VTS model. Use as {{vtubestudio_current_model}}. */
|
|
@@ -191,12 +191,6 @@ export declare enum SystemVariables {
|
|
|
191
191
|
TWITCH_SESSION_GIFTS_COUNT = "twitch_session_gifts_count",
|
|
192
192
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
193
193
|
TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT = "twitch_total_gift_subscription_count",
|
|
194
|
-
/** Session gift members count. Use as {{twitch_session_gift_subscription_count}}. */
|
|
195
|
-
TWITCH_SESSION_GIFT_SUBSCRIPTION_COUNT = "twitch_session_gift_subscription_count",
|
|
196
|
-
/** Last gift member. Use as {{twitch_last_gift_subscription}}. */
|
|
197
|
-
TWITCH_LAST_GIFT_SUBSCRIPTION = "twitch_last_gift_subscription",
|
|
198
|
-
/** Session gift members (list). Use as {{twitch_session_gift_subscriptions}}. */
|
|
199
|
-
TWITCH_SESSION_GIFT_SUBSCRIPTIONS = "twitch_session_gift_subscriptions",
|
|
200
194
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
201
195
|
TWITCH_CURRENT_MODS = "twitch_current_mods",
|
|
202
196
|
/** Last follower. Use as {{twitch_last_follower}}. */
|
|
@@ -455,12 +449,6 @@ export declare enum SystemVariables {
|
|
|
455
449
|
KICK_LAST_SUBSCRIBER = "kick_last_subscriber",
|
|
456
450
|
/** Lifetime gift members count. Use as {{kick_total_gift_subscription_count}}. */
|
|
457
451
|
KICK_TOTAL_GIFT_SUBSCRIPTION_COUNT = "kick_total_gift_subscription_count",
|
|
458
|
-
/** Session gift members count. Use as {{kick_session_gift_members_count}}. */
|
|
459
|
-
KICK_SESSION_GIFT_SUBSCRIPTION_COUNT = "kick_session_gift_subscription_count",
|
|
460
|
-
/** Last gift member. Use as {{kick_last_gift_member}}. */
|
|
461
|
-
KICK_LAST_GIFT_SUBSCRIPTION = "kick_last_gift_subscription",
|
|
462
|
-
/** Session gift members (list). Use as {{kick_session_gift_members}}. */
|
|
463
|
-
KICK_SESSION_GIFT_SUBSCRIPTIONS = "kick_session_gift_subscriptions",
|
|
464
452
|
/** Get avatar by username. Use as {{kick_get_avatar}}. */
|
|
465
453
|
KICK_GET_AVATAR = "kick_get_avatar",
|
|
466
454
|
/** Live status (true/false). Use as {{trovo_live}}. */
|
|
@@ -631,6 +619,18 @@ export declare enum SystemVariables {
|
|
|
631
619
|
SLOBS_PREVIOUS_SCENE = "slobs_previous_scene",
|
|
632
620
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
633
621
|
SLOBS_CURRENT_SCENE_COLLECTION = "slobs_current_scene_collection",
|
|
622
|
+
/** Is streaming (true/false). Use as {{meld_is_streaming}}. */
|
|
623
|
+
MELD_IS_STREAMING = "meld_is_streaming",
|
|
624
|
+
/** Is recording (true/false). Use as {{meld_is_recording}}. */
|
|
625
|
+
MELD_IS_RECORDING = "meld_is_recording",
|
|
626
|
+
/** Current scene. Use as {{meld_current_scene}}. */
|
|
627
|
+
MELD_CURRENT_SCENE = "meld_current_scene",
|
|
628
|
+
/** Previous scene. Use as {{meld_previous_scene}}. */
|
|
629
|
+
MELD_PREVIOUS_SCENE = "meld_previous_scene",
|
|
630
|
+
/** Current vertical scene. Use as {{meld_current_vertical_scene}}. */
|
|
631
|
+
MELD_CURRENT_VERTICAL_SCENE = "meld_current_vertical_scene",
|
|
632
|
+
/** Previous vertical scene. Use as {{meld_previous_vertical_scene}}. */
|
|
633
|
+
MELD_PREVIOUS_VERTICAL_SCENE = "meld_previous_vertical_scene",
|
|
634
634
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
635
635
|
STREAMERBOT_LAST_ACTION = "streamerbot_last_action",
|
|
636
636
|
/** Current VTS model. Use as {{vtubestudio_current_model}}. */
|
|
@@ -769,6 +769,8 @@ export declare const AllVariables: {
|
|
|
769
769
|
streamStopping: never[];
|
|
770
770
|
recordingStarting: never[];
|
|
771
771
|
recordingStopping: never[];
|
|
772
|
+
switchScene: string[];
|
|
773
|
+
switchVerticalScene: string[];
|
|
772
774
|
};
|
|
773
775
|
};
|
|
774
776
|
nowplaying: {
|
package/dist/variables.types.js
CHANGED
|
@@ -203,12 +203,6 @@ var SystemVariables;
|
|
|
203
203
|
SystemVariables["TWITCH_SESSION_GIFTS_COUNT"] = "twitch_session_gifts_count";
|
|
204
204
|
/** Lifetime gift members count. Use as {{twitch_total_gift_subscription_count}}. */
|
|
205
205
|
SystemVariables["TWITCH_TOTAL_GIFT_SUBSCRIPTION_COUNT"] = "twitch_total_gift_subscription_count";
|
|
206
|
-
/** Session gift members count. Use as {{twitch_session_gift_subscription_count}}. */
|
|
207
|
-
SystemVariables["TWITCH_SESSION_GIFT_SUBSCRIPTION_COUNT"] = "twitch_session_gift_subscription_count";
|
|
208
|
-
/** Last gift member. Use as {{twitch_last_gift_subscription}}. */
|
|
209
|
-
SystemVariables["TWITCH_LAST_GIFT_SUBSCRIPTION"] = "twitch_last_gift_subscription";
|
|
210
|
-
/** Session gift members (list). Use as {{twitch_session_gift_subscriptions}}. */
|
|
211
|
-
SystemVariables["TWITCH_SESSION_GIFT_SUBSCRIPTIONS"] = "twitch_session_gift_subscriptions";
|
|
212
206
|
/** Current moderators (comma-separated). Use as {{twitch_current_mods}}. */
|
|
213
207
|
SystemVariables["TWITCH_CURRENT_MODS"] = "twitch_current_mods";
|
|
214
208
|
/** Last follower. Use as {{twitch_last_follower}}. */
|
|
@@ -471,12 +465,6 @@ var SystemVariables;
|
|
|
471
465
|
SystemVariables["KICK_LAST_SUBSCRIBER"] = "kick_last_subscriber";
|
|
472
466
|
/** Lifetime gift members count. Use as {{kick_total_gift_subscription_count}}. */
|
|
473
467
|
SystemVariables["KICK_TOTAL_GIFT_SUBSCRIPTION_COUNT"] = "kick_total_gift_subscription_count";
|
|
474
|
-
/** Session gift members count. Use as {{kick_session_gift_members_count}}. */
|
|
475
|
-
SystemVariables["KICK_SESSION_GIFT_SUBSCRIPTION_COUNT"] = "kick_session_gift_subscription_count";
|
|
476
|
-
/** Last gift member. Use as {{kick_last_gift_member}}. */
|
|
477
|
-
SystemVariables["KICK_LAST_GIFT_SUBSCRIPTION"] = "kick_last_gift_subscription";
|
|
478
|
-
/** Session gift members (list). Use as {{kick_session_gift_members}}. */
|
|
479
|
-
SystemVariables["KICK_SESSION_GIFT_SUBSCRIPTIONS"] = "kick_session_gift_subscriptions";
|
|
480
468
|
/** Get avatar by username. Use as {{kick_get_avatar}}. */
|
|
481
469
|
SystemVariables["KICK_GET_AVATAR"] = "kick_get_avatar";
|
|
482
470
|
// ─────────────────────────────────── Trovo ────────────────────────────────────
|
|
@@ -656,6 +644,19 @@ var SystemVariables;
|
|
|
656
644
|
SystemVariables["SLOBS_PREVIOUS_SCENE"] = "slobs_previous_scene";
|
|
657
645
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
658
646
|
SystemVariables["SLOBS_CURRENT_SCENE_COLLECTION"] = "slobs_current_scene_collection";
|
|
647
|
+
// ───────────────────────────────────── Meld ───────────────────────────────────
|
|
648
|
+
/** Is streaming (true/false). Use as {{meld_is_streaming}}. */
|
|
649
|
+
SystemVariables["MELD_IS_STREAMING"] = "meld_is_streaming";
|
|
650
|
+
/** Is recording (true/false). Use as {{meld_is_recording}}. */
|
|
651
|
+
SystemVariables["MELD_IS_RECORDING"] = "meld_is_recording";
|
|
652
|
+
/** Current scene. Use as {{meld_current_scene}}. */
|
|
653
|
+
SystemVariables["MELD_CURRENT_SCENE"] = "meld_current_scene";
|
|
654
|
+
/** Previous scene. Use as {{meld_previous_scene}}. */
|
|
655
|
+
SystemVariables["MELD_PREVIOUS_SCENE"] = "meld_previous_scene";
|
|
656
|
+
/** Current vertical scene. Use as {{meld_current_vertical_scene}}. */
|
|
657
|
+
SystemVariables["MELD_CURRENT_VERTICAL_SCENE"] = "meld_current_vertical_scene";
|
|
658
|
+
/** Previous vertical scene. Use as {{meld_previous_vertical_scene}}. */
|
|
659
|
+
SystemVariables["MELD_PREVIOUS_VERTICAL_SCENE"] = "meld_previous_vertical_scene";
|
|
659
660
|
// ───────────────────────────────── Streamer.bot ────────────────────────────────
|
|
660
661
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
661
662
|
SystemVariables["STREAMERBOT_LAST_ACTION"] = "streamerbot_last_action";
|
|
@@ -1348,9 +1349,6 @@ exports.AllVariables = {
|
|
|
1348
1349
|
'kick_last_follower',
|
|
1349
1350
|
'kick_last_subscriber',
|
|
1350
1351
|
'kick_total_gift_subscription_count',
|
|
1351
|
-
'kick_session_gift_subscription_count',
|
|
1352
|
-
'kick_last_gift_subscription',
|
|
1353
|
-
'kick_session_gift_subscriptions',
|
|
1354
1352
|
'kick_get_avatar',
|
|
1355
1353
|
],
|
|
1356
1354
|
alerts: {
|
|
@@ -1384,6 +1382,8 @@ exports.AllVariables = {
|
|
|
1384
1382
|
streamStopping: [],
|
|
1385
1383
|
recordingStarting: [],
|
|
1386
1384
|
recordingStopping: [],
|
|
1385
|
+
switchScene: ['scene', 'previousScene'],
|
|
1386
|
+
switchVerticalScene: ['scene', 'previousScene'],
|
|
1387
1387
|
},
|
|
1388
1388
|
},
|
|
1389
1389
|
nowplaying: {
|
|
@@ -1628,9 +1628,6 @@ exports.AllVariables = {
|
|
|
1628
1628
|
'twitch_session_subscribers_count',
|
|
1629
1629
|
'twitch_session_gifts_count',
|
|
1630
1630
|
'twitch_total_gift_subscription_count',
|
|
1631
|
-
'twitch_session_gift_subscription_count',
|
|
1632
|
-
'twitch_last_gift_subscription',
|
|
1633
|
-
'twitch_session_gift_subscriptions',
|
|
1634
1631
|
'twitch_current_mods',
|
|
1635
1632
|
'twitch_last_follower',
|
|
1636
1633
|
'twitch_session_follower',
|