@lumiastream/lumia-types 1.0.9 → 1.0.10
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 +2 -0
- package/dist/activity.types.js +2 -0
- package/dist/alert.types.js +13 -2
- package/package.json +1 -1
package/dist/activity.types.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ export declare enum LumiaAlertValues {
|
|
|
100
100
|
LUMIASTREAM_VIEWERQUEUE_STARTED = "lumiastream-viewerqueueStarted",
|
|
101
101
|
LUMIASTREAM_VIEWERQUEUE_ENDED = "lumiastream-viewerqueueEnded",
|
|
102
102
|
LUMIASTREAM_ROULETTE_WINNER = "lumiastream-rouletteWinner",
|
|
103
|
+
LUMIASTREAM_SLOTS_WINNER = "lumiastream-slotsWinner",
|
|
103
104
|
TWITCH_EXTENSION = "twitch-extension",
|
|
104
105
|
TWITCH_POINTS = "twitch-points",
|
|
105
106
|
TWITCH_STREAM_LIVE = "twitch-streamLive",
|
|
@@ -277,6 +278,7 @@ export declare const LumiaAlertFriendlyValues: {
|
|
|
277
278
|
"lumiastream-viewerqueueStarted": string;
|
|
278
279
|
"lumiastream-viewerqueueEnded": string;
|
|
279
280
|
"lumiastream-rouletteWinner": string;
|
|
281
|
+
"lumiastream-slotsWinner": string;
|
|
280
282
|
"twitch-extension": string;
|
|
281
283
|
"twitch-points": string;
|
|
282
284
|
"twitch-streamLive": string;
|
package/dist/activity.types.js
CHANGED
|
@@ -111,6 +111,7 @@ var LumiaAlertValues;
|
|
|
111
111
|
LumiaAlertValues["LUMIASTREAM_VIEWERQUEUE_STARTED"] = "lumiastream-viewerqueueStarted";
|
|
112
112
|
LumiaAlertValues["LUMIASTREAM_VIEWERQUEUE_ENDED"] = "lumiastream-viewerqueueEnded";
|
|
113
113
|
LumiaAlertValues["LUMIASTREAM_ROULETTE_WINNER"] = "lumiastream-rouletteWinner";
|
|
114
|
+
LumiaAlertValues["LUMIASTREAM_SLOTS_WINNER"] = "lumiastream-slotsWinner";
|
|
114
115
|
LumiaAlertValues["TWITCH_EXTENSION"] = "twitch-extension";
|
|
115
116
|
LumiaAlertValues["TWITCH_POINTS"] = "twitch-points";
|
|
116
117
|
LumiaAlertValues["TWITCH_STREAM_LIVE"] = "twitch-streamLive";
|
|
@@ -290,6 +291,7 @@ exports.LumiaAlertFriendlyValues = {
|
|
|
290
291
|
[LumiaAlertValues.LUMIASTREAM_VIEWERQUEUE_STARTED]: 'Viewer Queue Started',
|
|
291
292
|
[LumiaAlertValues.LUMIASTREAM_VIEWERQUEUE_ENDED]: 'Viewer Queue Ended',
|
|
292
293
|
[LumiaAlertValues.LUMIASTREAM_ROULETTE_WINNER]: 'Roulette Winner',
|
|
294
|
+
[LumiaAlertValues.LUMIASTREAM_SLOTS_WINNER]: 'Slots Winner',
|
|
293
295
|
[LumiaAlertValues.TWITCH_EXTENSION]: 'Twitch Extension',
|
|
294
296
|
[LumiaAlertValues.TWITCH_POINTS]: 'Twitch Points',
|
|
295
297
|
[LumiaAlertValues.TWITCH_STREAM_LIVE]: 'Twitch Stream Live',
|
package/dist/alert.types.js
CHANGED
|
@@ -562,6 +562,17 @@ exports.LumiaAlertConfigs = {
|
|
|
562
562
|
inputFields: [],
|
|
563
563
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }, { type: LumiaVariationConditions.EQUAL_NUMBER }],
|
|
564
564
|
},
|
|
565
|
+
[activity_types_1.LumiaAlertValues.LUMIASTREAM_SLOTS_WINNER]: {
|
|
566
|
+
connection: event_types_1.LumiaIntegrations.LUMIASTREAM,
|
|
567
|
+
message: 'Congratulations {{username}} for winning {{outcome_amount}} {{loyalty_currency_name}}',
|
|
568
|
+
eventlistSpecialUsername: 'lumiastream',
|
|
569
|
+
eventlistMessage: 'Slots Winner',
|
|
570
|
+
eventlistDetailedMessage: 'Congratulations {{username}} for winning {{outcome_amount}} {{loyalty_currency_name}}',
|
|
571
|
+
acceptedVariables: ['username', 'outcome_amount', 'slots_combo'],
|
|
572
|
+
quickActions: [],
|
|
573
|
+
inputFields: [],
|
|
574
|
+
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }, { type: LumiaVariationConditions.EQUAL_NUMBER }, { type: LumiaVariationConditions.EQUAL_STRING }],
|
|
575
|
+
},
|
|
565
576
|
// twitch: {
|
|
566
577
|
[activity_types_1.LumiaAlertValues.TWITCH_EXTENSION]: {
|
|
567
578
|
connection: event_types_1.LumiaIntegrations.TWITCH,
|
|
@@ -790,7 +801,7 @@ exports.LumiaAlertConfigs = {
|
|
|
790
801
|
LumiaVariationConditions: [
|
|
791
802
|
{ type: LumiaVariationConditions.RANDOM },
|
|
792
803
|
{
|
|
793
|
-
type: LumiaVariationConditions.
|
|
804
|
+
type: LumiaVariationConditions.EQUAL_USERNAME,
|
|
794
805
|
},
|
|
795
806
|
],
|
|
796
807
|
},
|
|
@@ -2879,7 +2890,7 @@ exports.LumiaAlertConfigs = {
|
|
|
2879
2890
|
LumiaVariationConditions: [
|
|
2880
2891
|
{ type: LumiaVariationConditions.RANDOM },
|
|
2881
2892
|
{
|
|
2882
|
-
type: LumiaVariationConditions.
|
|
2893
|
+
type: LumiaVariationConditions.EQUAL_USERNAME,
|
|
2883
2894
|
},
|
|
2884
2895
|
],
|
|
2885
2896
|
},
|