@lumiastream/lumia-types 2.5.8 → 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 -1
- package/dist/custom-overlays.d.ts +17 -1
- package/dist/variables.types.d.ts +14 -0
- package/dist/variables.types.js +15 -0
- 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" />
|
|
@@ -1415,6 +1419,18 @@ export declare enum SystemVariables {
|
|
|
1415
1419
|
SLOBS_PREVIOUS_SCENE = "slobs_previous_scene",
|
|
1416
1420
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
1417
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",
|
|
1418
1434
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
1419
1435
|
STREAMERBOT_LAST_ACTION = "streamerbot_last_action",
|
|
1420
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" />
|
|
@@ -1415,6 +1419,18 @@ export declare enum SystemVariables {
|
|
|
1415
1419
|
SLOBS_PREVIOUS_SCENE = "slobs_previous_scene",
|
|
1416
1420
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
1417
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",
|
|
1418
1434
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
1419
1435
|
STREAMERBOT_LAST_ACTION = "streamerbot_last_action",
|
|
1420
1436
|
/** Current VTS model. Use as {{vtubestudio_current_model}}. */
|
|
@@ -619,6 +619,18 @@ export declare enum SystemVariables {
|
|
|
619
619
|
SLOBS_PREVIOUS_SCENE = "slobs_previous_scene",
|
|
620
620
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
621
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",
|
|
622
634
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
623
635
|
STREAMERBOT_LAST_ACTION = "streamerbot_last_action",
|
|
624
636
|
/** Current VTS model. Use as {{vtubestudio_current_model}}. */
|
|
@@ -757,6 +769,8 @@ export declare const AllVariables: {
|
|
|
757
769
|
streamStopping: never[];
|
|
758
770
|
recordingStarting: never[];
|
|
759
771
|
recordingStopping: never[];
|
|
772
|
+
switchScene: string[];
|
|
773
|
+
switchVerticalScene: string[];
|
|
760
774
|
};
|
|
761
775
|
};
|
|
762
776
|
nowplaying: {
|
package/dist/variables.types.js
CHANGED
|
@@ -644,6 +644,19 @@ var SystemVariables;
|
|
|
644
644
|
SystemVariables["SLOBS_PREVIOUS_SCENE"] = "slobs_previous_scene";
|
|
645
645
|
/** Current scene collection. Use as {{slobs_current_scene_collection}}. */
|
|
646
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";
|
|
647
660
|
// ───────────────────────────────── Streamer.bot ────────────────────────────────
|
|
648
661
|
/** Last Streamer.bot action. Use as {{streamerbot_last_action}}. */
|
|
649
662
|
SystemVariables["STREAMERBOT_LAST_ACTION"] = "streamerbot_last_action";
|
|
@@ -1369,6 +1382,8 @@ exports.AllVariables = {
|
|
|
1369
1382
|
streamStopping: [],
|
|
1370
1383
|
recordingStarting: [],
|
|
1371
1384
|
recordingStopping: [],
|
|
1385
|
+
switchScene: ['scene', 'previousScene'],
|
|
1386
|
+
switchVerticalScene: ['scene', 'previousScene'],
|
|
1372
1387
|
},
|
|
1373
1388
|
},
|
|
1374
1389
|
nowplaying: {
|