@lumiastream/lumia-types 1.0.8 → 1.0.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 +9 -1
- package/dist/activity.types.js +8 -0
- package/dist/alert.types.js +48 -0
- package/dist/event.types.d.ts +1 -0
- package/dist/event.types.js +1 -0
- package/package.json +4 -4
package/dist/activity.types.d.ts
CHANGED
|
@@ -255,7 +255,11 @@ export declare enum LumiaAlertValues {
|
|
|
255
255
|
VTUBESTUDIO_ANIMATION_END = "vtubestudio-animationEnd",
|
|
256
256
|
VTUBESTUDIO_ITEM_ADDED = "vtubestudio-itemAdded",
|
|
257
257
|
VTUBESTUDIO_ITEM_REMOVED = "vtubestudio-itemRemoved",
|
|
258
|
-
VTUBESTUDIO_BACKGROUND_CHANGED = "vtubestudio-backgroundChanged"
|
|
258
|
+
VTUBESTUDIO_BACKGROUND_CHANGED = "vtubestudio-backgroundChanged",
|
|
259
|
+
MELD_STREAM_STARTING = "meld-streamStarting",
|
|
260
|
+
MELD_STREAM_STOPPING = "meld-streamStopping",
|
|
261
|
+
MELD_RECORDING_STARTING = "meld-recordingStarting",
|
|
262
|
+
MELD_RECORDING_STOPPING = "meld-recordingStopping"
|
|
259
263
|
}
|
|
260
264
|
export declare const LumiaAlertFriendlyValues: {
|
|
261
265
|
"lumiastream-lumiaOpened": string;
|
|
@@ -427,6 +431,10 @@ export declare const LumiaAlertFriendlyValues: {
|
|
|
427
431
|
"vtubestudio-itemAdded": string;
|
|
428
432
|
"vtubestudio-itemRemoved": string;
|
|
429
433
|
"vtubestudio-backgroundChanged": string;
|
|
434
|
+
"meld-streamStarting": string;
|
|
435
|
+
"meld-streamStopping": string;
|
|
436
|
+
"meld-recordingStarting": string;
|
|
437
|
+
"meld-recordingStopping": string;
|
|
430
438
|
};
|
|
431
439
|
export declare enum LumiaActivityOriginTypes {
|
|
432
440
|
SYSTEM = "system",// Settings, Shortcut, or API
|
package/dist/activity.types.js
CHANGED
|
@@ -269,6 +269,10 @@ var LumiaAlertValues;
|
|
|
269
269
|
LumiaAlertValues["VTUBESTUDIO_ITEM_ADDED"] = "vtubestudio-itemAdded";
|
|
270
270
|
LumiaAlertValues["VTUBESTUDIO_ITEM_REMOVED"] = "vtubestudio-itemRemoved";
|
|
271
271
|
LumiaAlertValues["VTUBESTUDIO_BACKGROUND_CHANGED"] = "vtubestudio-backgroundChanged";
|
|
272
|
+
LumiaAlertValues["MELD_STREAM_STARTING"] = "meld-streamStarting";
|
|
273
|
+
LumiaAlertValues["MELD_STREAM_STOPPING"] = "meld-streamStopping";
|
|
274
|
+
LumiaAlertValues["MELD_RECORDING_STARTING"] = "meld-recordingStarting";
|
|
275
|
+
LumiaAlertValues["MELD_RECORDING_STOPPING"] = "meld-recordingStopping";
|
|
272
276
|
})(LumiaAlertValues || (exports.LumiaAlertValues = LumiaAlertValues = {}));
|
|
273
277
|
exports.LumiaAlertFriendlyValues = {
|
|
274
278
|
[LumiaAlertValues.LUMIASTREAM_LUMIA_OPENED]: 'Lumia Opened',
|
|
@@ -442,6 +446,10 @@ exports.LumiaAlertFriendlyValues = {
|
|
|
442
446
|
[LumiaAlertValues.VTUBESTUDIO_ITEM_ADDED]: 'Vtube Item Added',
|
|
443
447
|
[LumiaAlertValues.VTUBESTUDIO_ITEM_REMOVED]: 'Vtube Item Removed',
|
|
444
448
|
[LumiaAlertValues.VTUBESTUDIO_BACKGROUND_CHANGED]: 'Vtube Background Changed',
|
|
449
|
+
[LumiaAlertValues.MELD_STREAM_STARTING]: 'Meld Stream Starting',
|
|
450
|
+
[LumiaAlertValues.MELD_STREAM_STOPPING]: 'Meld Stream Stopping',
|
|
451
|
+
[LumiaAlertValues.MELD_RECORDING_STARTING]: 'Meld Recording Starting',
|
|
452
|
+
[LumiaAlertValues.MELD_RECORDING_STOPPING]: 'Meld Recording Stopping',
|
|
445
453
|
};
|
|
446
454
|
// Where did the Activity Originate from: Chat, alerts, shortcut, api, etc.
|
|
447
455
|
var LumiaActivityOriginTypes;
|
package/dist/alert.types.js
CHANGED
|
@@ -6881,4 +6881,52 @@ exports.LumiaAlertConfigs = {
|
|
|
6881
6881
|
},
|
|
6882
6882
|
],
|
|
6883
6883
|
},
|
|
6884
|
+
[activity_types_1.LumiaAlertValues.MELD_STREAM_STARTING]: {
|
|
6885
|
+
connection: event_types_1.LumiaIntegrations.MELD,
|
|
6886
|
+
message: '{{name}} is starting',
|
|
6887
|
+
acceptedVariables: ['name'],
|
|
6888
|
+
quickActions: [
|
|
6889
|
+
{
|
|
6890
|
+
label: 'Stream Starting',
|
|
6891
|
+
dynamic: { value: 'Go Bright' },
|
|
6892
|
+
},
|
|
6893
|
+
],
|
|
6894
|
+
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }],
|
|
6895
|
+
},
|
|
6896
|
+
[activity_types_1.LumiaAlertValues.MELD_STREAM_STOPPING]: {
|
|
6897
|
+
connection: event_types_1.LumiaIntegrations.MELD,
|
|
6898
|
+
message: '{{name}} is stopping',
|
|
6899
|
+
acceptedVariables: ['name'],
|
|
6900
|
+
quickActions: [
|
|
6901
|
+
{
|
|
6902
|
+
label: 'Stream Stop',
|
|
6903
|
+
dynamic: { value: 'Go Bright' },
|
|
6904
|
+
},
|
|
6905
|
+
],
|
|
6906
|
+
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }],
|
|
6907
|
+
},
|
|
6908
|
+
[activity_types_1.LumiaAlertValues.MELD_RECORDING_STARTING]: {
|
|
6909
|
+
connection: event_types_1.LumiaIntegrations.MELD,
|
|
6910
|
+
message: '{{name}} is starting',
|
|
6911
|
+
acceptedVariables: ['name'],
|
|
6912
|
+
quickActions: [
|
|
6913
|
+
{
|
|
6914
|
+
label: 'Recording Started',
|
|
6915
|
+
dynamic: { value: 'Go Bright' },
|
|
6916
|
+
},
|
|
6917
|
+
],
|
|
6918
|
+
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }],
|
|
6919
|
+
},
|
|
6920
|
+
[activity_types_1.LumiaAlertValues.MELD_RECORDING_STOPPING]: {
|
|
6921
|
+
connection: event_types_1.LumiaIntegrations.MELD,
|
|
6922
|
+
message: '{{name}} is stopping',
|
|
6923
|
+
acceptedVariables: ['name'],
|
|
6924
|
+
quickActions: [
|
|
6925
|
+
{
|
|
6926
|
+
label: 'Recording Stop',
|
|
6927
|
+
dynamic: { value: 'Go Bright' },
|
|
6928
|
+
},
|
|
6929
|
+
],
|
|
6930
|
+
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }],
|
|
6931
|
+
},
|
|
6884
6932
|
};
|
package/dist/event.types.d.ts
CHANGED
package/dist/event.types.js
CHANGED
|
@@ -38,6 +38,7 @@ var LumiaIntegrations;
|
|
|
38
38
|
LumiaIntegrations["FOURTHWALL"] = "fourthwall";
|
|
39
39
|
LumiaIntegrations["CROWDCONTROL"] = "crowdcontrol";
|
|
40
40
|
LumiaIntegrations["VTUBESTUDIO"] = "vtubestudio";
|
|
41
|
+
LumiaIntegrations["MELD"] = "meld";
|
|
41
42
|
LumiaIntegrations["GAMESGLOW"] = "gamesglow";
|
|
42
43
|
})(LumiaIntegrations || (exports.LumiaIntegrations = LumiaIntegrations = {}));
|
|
43
44
|
var LumiaEventTypes;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumiastream/lumia-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types/node": "^20.
|
|
21
|
-
"tslib": "^2.
|
|
22
|
-
"typescript": "^5.
|
|
20
|
+
"@types/node": "^20.17.9",
|
|
21
|
+
"tslib": "^2.8.1",
|
|
22
|
+
"typescript": "^5.7.2"
|
|
23
23
|
}
|
|
24
24
|
}
|