@lumiastream/lumia-types 3.4.5 → 3.4.7
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.d.ts +1 -0
- package/dist/alert.types.js +221 -102
- package/dist/esm/alert.types.js +221 -102
- package/dist/esm/variables.types.js +33 -31
- package/dist/variables.types.js +33 -31
- package/package.json +1 -1
package/dist/alert.types.js
CHANGED
|
@@ -101,9 +101,9 @@ exports.LumiaAlertConfigs = {
|
|
|
101
101
|
// lumia: {
|
|
102
102
|
[activity_types_1.LumiaAlertValues.LUMIASTREAM_DONATION]: {
|
|
103
103
|
connection: event_types_1.LumiaIntegrations.LUMIASTREAM,
|
|
104
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
104
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
105
105
|
eventlistMessage: 'Donation',
|
|
106
|
-
eventlistDetailedMessage: 'tipped {{
|
|
106
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
107
107
|
acceptedVariables: variables_types_1.AllVariables.lumiastream.alerts.donation,
|
|
108
108
|
quickActions: [
|
|
109
109
|
{
|
|
@@ -1237,7 +1237,7 @@ exports.LumiaAlertConfigs = {
|
|
|
1237
1237
|
quickActions: [
|
|
1238
1238
|
{
|
|
1239
1239
|
label: 'Gift 1 Sub',
|
|
1240
|
-
dynamic: { value: 1000, giftAmount: 1 },
|
|
1240
|
+
dynamic: { value: 1000, giftAmount: 1, amount: 1 },
|
|
1241
1241
|
extraSettings: {
|
|
1242
1242
|
username: 'lumiastream',
|
|
1243
1243
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
@@ -1246,6 +1246,7 @@ exports.LumiaAlertConfigs = {
|
|
|
1246
1246
|
recipients: 'worldlights',
|
|
1247
1247
|
recipientsRaw: [{ username: 'worldlights', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures', userId: '123', userLevels: { subscriber: true } }],
|
|
1248
1248
|
giftAmount: 1,
|
|
1249
|
+
amount: 1,
|
|
1249
1250
|
totalGifts: 1,
|
|
1250
1251
|
subMonths: 1,
|
|
1251
1252
|
tier: 'Tier 1',
|
|
@@ -1255,7 +1256,7 @@ exports.LumiaAlertConfigs = {
|
|
|
1255
1256
|
},
|
|
1256
1257
|
{
|
|
1257
1258
|
label: 'Gift 5 Subs',
|
|
1258
|
-
dynamic: { value: 1000, giftAmount: 5 },
|
|
1259
|
+
dynamic: { value: 1000, giftAmount: 5, amount: 5 },
|
|
1259
1260
|
extraSettings: {
|
|
1260
1261
|
username: 'lumiastream',
|
|
1261
1262
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
@@ -1270,6 +1271,7 @@ exports.LumiaAlertConfigs = {
|
|
|
1270
1271
|
{ username: 'rgblumia', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures', userId: '123', userLevels: { subscriber: true } },
|
|
1271
1272
|
],
|
|
1272
1273
|
giftAmount: 5,
|
|
1274
|
+
amount: 5,
|
|
1273
1275
|
totalGifts: 5,
|
|
1274
1276
|
subMonths: 1,
|
|
1275
1277
|
tier: 'Tier 1',
|
|
@@ -1308,6 +1310,13 @@ exports.LumiaAlertConfigs = {
|
|
|
1308
1310
|
required: true,
|
|
1309
1311
|
default: 1,
|
|
1310
1312
|
},
|
|
1313
|
+
{
|
|
1314
|
+
type: 'number',
|
|
1315
|
+
label: 'Amount',
|
|
1316
|
+
variableField: 'amount',
|
|
1317
|
+
required: false,
|
|
1318
|
+
default: 1,
|
|
1319
|
+
},
|
|
1311
1320
|
{
|
|
1312
1321
|
type: 'selection',
|
|
1313
1322
|
label: 'Sub Plan',
|
|
@@ -1824,18 +1833,18 @@ exports.LumiaAlertConfigs = {
|
|
|
1824
1833
|
quickActions: [
|
|
1825
1834
|
{
|
|
1826
1835
|
label: '10 viewers',
|
|
1827
|
-
dynamic: { value: 10 },
|
|
1828
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 10 },
|
|
1836
|
+
dynamic: { value: 10, amount: 10 },
|
|
1837
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 10, amount: 10 },
|
|
1829
1838
|
},
|
|
1830
1839
|
{
|
|
1831
1840
|
label: '50 viewers',
|
|
1832
|
-
dynamic: { value: 50 },
|
|
1833
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 50 },
|
|
1841
|
+
dynamic: { value: 50, amount: 50 },
|
|
1842
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 50, amount: 50 },
|
|
1834
1843
|
},
|
|
1835
1844
|
{
|
|
1836
1845
|
label: '100 viewers',
|
|
1837
|
-
dynamic: { value: 100 },
|
|
1838
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 100 },
|
|
1846
|
+
dynamic: { value: 100, amount: 100 },
|
|
1847
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 100, amount: 100 },
|
|
1839
1848
|
},
|
|
1840
1849
|
],
|
|
1841
1850
|
inputFields: [
|
|
@@ -1854,6 +1863,13 @@ exports.LumiaAlertConfigs = {
|
|
|
1854
1863
|
required: true,
|
|
1855
1864
|
default: 100,
|
|
1856
1865
|
},
|
|
1866
|
+
{
|
|
1867
|
+
type: 'number',
|
|
1868
|
+
label: 'Amount',
|
|
1869
|
+
variableField: 'amount',
|
|
1870
|
+
required: false,
|
|
1871
|
+
default: 100,
|
|
1872
|
+
},
|
|
1857
1873
|
],
|
|
1858
1874
|
LumiaVariationConditions: [
|
|
1859
1875
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -1873,18 +1889,18 @@ exports.LumiaAlertConfigs = {
|
|
|
1873
1889
|
quickActions: [
|
|
1874
1890
|
{
|
|
1875
1891
|
label: '10 viewers',
|
|
1876
|
-
dynamic: { value: 10 },
|
|
1877
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 10 },
|
|
1892
|
+
dynamic: { value: 10, amount: 10 },
|
|
1893
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 10, amount: 10 },
|
|
1878
1894
|
},
|
|
1879
1895
|
{
|
|
1880
1896
|
label: '50 viewers',
|
|
1881
|
-
dynamic: { value: 50 },
|
|
1882
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 50 },
|
|
1897
|
+
dynamic: { value: 50, amount: 50 },
|
|
1898
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 50, amount: 50 },
|
|
1883
1899
|
},
|
|
1884
1900
|
{
|
|
1885
1901
|
label: '100 viewers',
|
|
1886
|
-
dynamic: { value: 100 },
|
|
1887
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 100 },
|
|
1902
|
+
dynamic: { value: 100, amount: 100 },
|
|
1903
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 100, amount: 100 },
|
|
1888
1904
|
},
|
|
1889
1905
|
],
|
|
1890
1906
|
inputFields: [
|
|
@@ -1903,6 +1919,13 @@ exports.LumiaAlertConfigs = {
|
|
|
1903
1919
|
required: true,
|
|
1904
1920
|
default: 100,
|
|
1905
1921
|
},
|
|
1922
|
+
{
|
|
1923
|
+
type: 'number',
|
|
1924
|
+
label: 'Amount',
|
|
1925
|
+
variableField: 'amount',
|
|
1926
|
+
required: false,
|
|
1927
|
+
default: 100,
|
|
1928
|
+
},
|
|
1906
1929
|
],
|
|
1907
1930
|
LumiaVariationConditions: [
|
|
1908
1931
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -1938,18 +1961,18 @@ exports.LumiaAlertConfigs = {
|
|
|
1938
1961
|
quickActions: [
|
|
1939
1962
|
{
|
|
1940
1963
|
label: 'Progress 100',
|
|
1941
|
-
dynamic: { value: 100 },
|
|
1942
|
-
extraSettings: { level: 1, total: 100, progress: 100, goal: 4 },
|
|
1964
|
+
dynamic: { value: 100, amount: 100 },
|
|
1965
|
+
extraSettings: { level: 1, total: 100, progress: 100, goal: 4, amount: 100 },
|
|
1943
1966
|
},
|
|
1944
1967
|
{
|
|
1945
1968
|
label: 'Progress 200',
|
|
1946
|
-
dynamic: { value: 200 },
|
|
1947
|
-
extraSettings: { level: 1, total: 200, progress: 200, goal: 4 },
|
|
1969
|
+
dynamic: { value: 200, amount: 200 },
|
|
1970
|
+
extraSettings: { level: 1, total: 200, progress: 200, goal: 4, amount: 200 },
|
|
1948
1971
|
},
|
|
1949
1972
|
{
|
|
1950
1973
|
label: 'Progress 300',
|
|
1951
|
-
dynamic: { value: 300 },
|
|
1952
|
-
extraSettings: { level: 1, total: 300, progress: 300, goal: 4 },
|
|
1974
|
+
dynamic: { value: 300, amount: 300 },
|
|
1975
|
+
extraSettings: { level: 1, total: 300, progress: 300, goal: 4, amount: 300 },
|
|
1953
1976
|
},
|
|
1954
1977
|
],
|
|
1955
1978
|
inputFields: [
|
|
@@ -1961,6 +1984,13 @@ exports.LumiaAlertConfigs = {
|
|
|
1961
1984
|
required: false,
|
|
1962
1985
|
default: 100,
|
|
1963
1986
|
},
|
|
1987
|
+
{
|
|
1988
|
+
type: 'number',
|
|
1989
|
+
label: 'Amount',
|
|
1990
|
+
variableField: 'amount',
|
|
1991
|
+
required: false,
|
|
1992
|
+
default: 100,
|
|
1993
|
+
},
|
|
1964
1994
|
],
|
|
1965
1995
|
LumiaVariationConditions: [
|
|
1966
1996
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -1983,28 +2013,28 @@ exports.LumiaAlertConfigs = {
|
|
|
1983
2013
|
quickActions: [
|
|
1984
2014
|
{
|
|
1985
2015
|
label: 'Level 1',
|
|
1986
|
-
dynamic: { value: 1 },
|
|
1987
|
-
extraSettings: { level: 1, total: 0, progress: 0, goal: 5 },
|
|
2016
|
+
dynamic: { value: 1, amount: 1 },
|
|
2017
|
+
extraSettings: { level: 1, total: 0, progress: 0, goal: 5, amount: 1 },
|
|
1988
2018
|
},
|
|
1989
2019
|
{
|
|
1990
2020
|
label: 'Level 2',
|
|
1991
|
-
dynamic: { value: 2 },
|
|
1992
|
-
extraSettings: { level: 2, total: 100, progress: 100, goal: 5 },
|
|
2021
|
+
dynamic: { value: 2, amount: 2 },
|
|
2022
|
+
extraSettings: { level: 2, total: 100, progress: 100, goal: 5, amount: 2 },
|
|
1993
2023
|
},
|
|
1994
2024
|
{
|
|
1995
2025
|
label: 'Level 3',
|
|
1996
|
-
dynamic: { value: 3 },
|
|
1997
|
-
extraSettings: { level: 3, total: 100, progress: 100, goal: 5 },
|
|
2026
|
+
dynamic: { value: 3, amount: 3 },
|
|
2027
|
+
extraSettings: { level: 3, total: 100, progress: 100, goal: 5, amount: 3 },
|
|
1998
2028
|
},
|
|
1999
2029
|
{
|
|
2000
2030
|
label: 'Level 4',
|
|
2001
|
-
dynamic: { value: 4 },
|
|
2002
|
-
extraSettings: { level: 4, total: 100, progress: 100, goal: 5 },
|
|
2031
|
+
dynamic: { value: 4, amount: 4 },
|
|
2032
|
+
extraSettings: { level: 4, total: 100, progress: 100, goal: 5, amount: 4 },
|
|
2003
2033
|
},
|
|
2004
2034
|
{
|
|
2005
2035
|
label: 'Level 5',
|
|
2006
|
-
dynamic: { value: 5 },
|
|
2007
|
-
extraSettings: { level: 5, total: 100, progress: 100, goal: 5 },
|
|
2036
|
+
dynamic: { value: 5, amount: 5 },
|
|
2037
|
+
extraSettings: { level: 5, total: 100, progress: 100, goal: 5, amount: 5 },
|
|
2008
2038
|
},
|
|
2009
2039
|
],
|
|
2010
2040
|
inputFields: [
|
|
@@ -2016,6 +2046,13 @@ exports.LumiaAlertConfigs = {
|
|
|
2016
2046
|
required: false,
|
|
2017
2047
|
default: 2,
|
|
2018
2048
|
},
|
|
2049
|
+
{
|
|
2050
|
+
type: 'number',
|
|
2051
|
+
label: 'Amount',
|
|
2052
|
+
variableField: 'amount',
|
|
2053
|
+
required: false,
|
|
2054
|
+
default: 2,
|
|
2055
|
+
},
|
|
2019
2056
|
],
|
|
2020
2057
|
LumiaVariationConditions: [
|
|
2021
2058
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -2038,28 +2075,28 @@ exports.LumiaAlertConfigs = {
|
|
|
2038
2075
|
quickActions: [
|
|
2039
2076
|
{
|
|
2040
2077
|
label: 'Level 1',
|
|
2041
|
-
dynamic: { value: 1 },
|
|
2042
|
-
extraSettings: { level: 1, total: 0, progress: 0, goal: 5 },
|
|
2078
|
+
dynamic: { value: 1, amount: 1 },
|
|
2079
|
+
extraSettings: { level: 1, total: 0, progress: 0, goal: 5, amount: 1 },
|
|
2043
2080
|
},
|
|
2044
2081
|
{
|
|
2045
2082
|
label: 'Level 2',
|
|
2046
|
-
dynamic: { value: 2 },
|
|
2047
|
-
extraSettings: { level: 2, total: 100, progress: 100, goal: 5 },
|
|
2083
|
+
dynamic: { value: 2, amount: 2 },
|
|
2084
|
+
extraSettings: { level: 2, total: 100, progress: 100, goal: 5, amount: 2 },
|
|
2048
2085
|
},
|
|
2049
2086
|
{
|
|
2050
2087
|
label: 'Level 3',
|
|
2051
|
-
dynamic: { value: 3 },
|
|
2052
|
-
extraSettings: { level: 3, total: 100, progress: 100, goal: 5 },
|
|
2088
|
+
dynamic: { value: 3, amount: 3 },
|
|
2089
|
+
extraSettings: { level: 3, total: 100, progress: 100, goal: 5, amount: 3 },
|
|
2053
2090
|
},
|
|
2054
2091
|
{
|
|
2055
2092
|
label: 'Level 4',
|
|
2056
|
-
dynamic: { value: 4 },
|
|
2057
|
-
extraSettings: { level: 4, total: 100, progress: 100, goal: 5 },
|
|
2093
|
+
dynamic: { value: 4, amount: 4 },
|
|
2094
|
+
extraSettings: { level: 4, total: 100, progress: 100, goal: 5, amount: 4 },
|
|
2058
2095
|
},
|
|
2059
2096
|
{
|
|
2060
2097
|
label: 'Level 5',
|
|
2061
|
-
dynamic: { value: 5 },
|
|
2062
|
-
extraSettings: { level: 5, total: 100, progress: 100, goal: 5 },
|
|
2098
|
+
dynamic: { value: 5, amount: 5 },
|
|
2099
|
+
extraSettings: { level: 5, total: 100, progress: 100, goal: 5, amount: 5 },
|
|
2063
2100
|
},
|
|
2064
2101
|
],
|
|
2065
2102
|
inputFields: [
|
|
@@ -2071,6 +2108,13 @@ exports.LumiaAlertConfigs = {
|
|
|
2071
2108
|
required: false,
|
|
2072
2109
|
default: 2,
|
|
2073
2110
|
},
|
|
2111
|
+
{
|
|
2112
|
+
type: 'number',
|
|
2113
|
+
label: 'Amount',
|
|
2114
|
+
variableField: 'amount',
|
|
2115
|
+
required: false,
|
|
2116
|
+
default: 2,
|
|
2117
|
+
},
|
|
2074
2118
|
],
|
|
2075
2119
|
LumiaVariationConditions: [
|
|
2076
2120
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -2793,9 +2837,9 @@ exports.LumiaAlertConfigs = {
|
|
|
2793
2837
|
},
|
|
2794
2838
|
[activity_types_1.LumiaAlertValues.TWITCH_CHARITY_DONATION]: {
|
|
2795
2839
|
connection: event_types_1.LumiaIntegrations.TWITCH,
|
|
2796
|
-
message: '{{username}} just tipped {{amount}} to charity {{charity_name}}',
|
|
2840
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}} to charity {{charity_name}}',
|
|
2797
2841
|
eventlistMessage: 'Donation',
|
|
2798
|
-
eventlistDetailedMessage: 'tipped {{
|
|
2842
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}}',
|
|
2799
2843
|
acceptedVariables: variables_types_1.AllVariables.twitch.alerts.charityDonation,
|
|
2800
2844
|
quickActions: [
|
|
2801
2845
|
{
|
|
@@ -2900,10 +2944,10 @@ exports.LumiaAlertConfigs = {
|
|
|
2900
2944
|
},
|
|
2901
2945
|
[activity_types_1.LumiaAlertValues.TWITCH_CHARITY_CAMPAIGN_STARTED]: {
|
|
2902
2946
|
connection: event_types_1.LumiaIntegrations.TWITCH,
|
|
2903
|
-
message: 'Charity campaign {{charity_name}} started with a target of {{charity_target_amount}}',
|
|
2947
|
+
message: 'Charity campaign {{charity_name}} started with a target of {{currencySymbol}}{{charity_target_amount}}',
|
|
2904
2948
|
eventlistSpecialUsername: 'Twitch',
|
|
2905
2949
|
eventlistMessage: 'Charity campaign start',
|
|
2906
|
-
eventlistDetailedMessage: 'Charity campaign {{charity_name}} started with a target of {{charity_target_amount}}',
|
|
2950
|
+
eventlistDetailedMessage: 'Charity campaign {{charity_name}} started with a target of {{currencySymbol}}{{charity_target_amount}}',
|
|
2907
2951
|
acceptedVariables: variables_types_1.AllVariables.twitch.alerts.charityCampaignStarted,
|
|
2908
2952
|
quickActions: [
|
|
2909
2953
|
{
|
|
@@ -2963,10 +3007,10 @@ exports.LumiaAlertConfigs = {
|
|
|
2963
3007
|
},
|
|
2964
3008
|
[activity_types_1.LumiaAlertValues.TWITCH_CHARITY_CAMPAIGN_PROGRESSED]: {
|
|
2965
3009
|
connection: event_types_1.LumiaIntegrations.TWITCH,
|
|
2966
|
-
message: 'Charity campaign {{charity_name}} progressed to {{charity_amount}} with a target of {{charity_target_amount}}',
|
|
3010
|
+
message: 'Charity campaign {{charity_name}} progressed to {{currencySymbol}}{{charity_amount}} with a target of {{currencySymbol}}{{charity_target_amount}}',
|
|
2967
3011
|
eventlistSpecialUsername: 'Twitch',
|
|
2968
3012
|
eventlistMessage: 'Charity campaign progressed',
|
|
2969
|
-
eventlistDetailedMessage: 'Charity campaign {{charity_name}} progressed to {{charity_amount}} with a target of {{charity_target_amount}}',
|
|
3013
|
+
eventlistDetailedMessage: 'Charity campaign {{charity_name}} progressed to {{currencySymbol}}{{charity_amount}} with a target of {{currencySymbol}}{{charity_target_amount}}',
|
|
2970
3014
|
acceptedVariables: variables_types_1.AllVariables.twitch.alerts.charityCampaignProgressed,
|
|
2971
3015
|
quickActions: [
|
|
2972
3016
|
{
|
|
@@ -3024,10 +3068,10 @@ exports.LumiaAlertConfigs = {
|
|
|
3024
3068
|
},
|
|
3025
3069
|
[activity_types_1.LumiaAlertValues.TWITCH_CHARITY_CAMPAIGN_STOPPED]: {
|
|
3026
3070
|
connection: event_types_1.LumiaIntegrations.TWITCH,
|
|
3027
|
-
message: 'Charity campaign {{charity_name}} ended at amount {{charity_amount}} with a target of {{charity_target_amount}}',
|
|
3071
|
+
message: 'Charity campaign {{charity_name}} ended at amount {{currencySymbol}}{{charity_amount}} with a target of {{currencySymbol}}{{charity_target_amount}}',
|
|
3028
3072
|
eventlistSpecialUsername: 'Twitch',
|
|
3029
3073
|
eventlistMessage: 'Charity campaign ended',
|
|
3030
|
-
eventlistDetailedMessage: 'Charity campaign {{charity_name}} ended at amount {{charity_amount}} with a target of {{charity_target_amount}}',
|
|
3074
|
+
eventlistDetailedMessage: 'Charity campaign {{charity_name}} ended at amount {{currencySymbol}}{{charity_amount}} with a target of {{currencySymbol}}{{charity_target_amount}}',
|
|
3031
3075
|
acceptedVariables: variables_types_1.AllVariables.twitch.alerts.charityCampaignStopped,
|
|
3032
3076
|
quickActions: [
|
|
3033
3077
|
{
|
|
@@ -3400,9 +3444,10 @@ exports.LumiaAlertConfigs = {
|
|
|
3400
3444
|
quickActions: [
|
|
3401
3445
|
{
|
|
3402
3446
|
label: 'Ad Started',
|
|
3403
|
-
dynamic: { value: '60' },
|
|
3447
|
+
dynamic: { value: '60', amount: 60 },
|
|
3404
3448
|
extraSettings: {
|
|
3405
3449
|
length: '60',
|
|
3450
|
+
amount: 60,
|
|
3406
3451
|
is_automatic: false,
|
|
3407
3452
|
started_at: '2022-07-26T17:00:03.17106713Z',
|
|
3408
3453
|
},
|
|
@@ -3417,6 +3462,13 @@ exports.LumiaAlertConfigs = {
|
|
|
3417
3462
|
required: true,
|
|
3418
3463
|
default: '60',
|
|
3419
3464
|
},
|
|
3465
|
+
{
|
|
3466
|
+
type: 'number',
|
|
3467
|
+
label: 'Amount',
|
|
3468
|
+
variableField: 'amount',
|
|
3469
|
+
required: false,
|
|
3470
|
+
default: 60,
|
|
3471
|
+
},
|
|
3420
3472
|
],
|
|
3421
3473
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }, { type: LumiaVariationConditions.EQUAL_VARIABLE }],
|
|
3422
3474
|
},
|
|
@@ -3429,9 +3481,10 @@ exports.LumiaAlertConfigs = {
|
|
|
3429
3481
|
quickActions: [
|
|
3430
3482
|
{
|
|
3431
3483
|
label: 'Ad Stopped',
|
|
3432
|
-
dynamic: { value: '60' },
|
|
3484
|
+
dynamic: { value: '60', amount: 60 },
|
|
3433
3485
|
extraSettings: {
|
|
3434
3486
|
length: '60',
|
|
3487
|
+
amount: 60,
|
|
3435
3488
|
is_automatic: false,
|
|
3436
3489
|
started_at: '2022-07-26T17:00:03.17106713Z',
|
|
3437
3490
|
next_ad_starts: '1 hour, 5 minutes, 20 seconds',
|
|
@@ -3448,6 +3501,13 @@ exports.LumiaAlertConfigs = {
|
|
|
3448
3501
|
required: true,
|
|
3449
3502
|
default: '60',
|
|
3450
3503
|
},
|
|
3504
|
+
{
|
|
3505
|
+
type: 'number',
|
|
3506
|
+
label: 'Amount',
|
|
3507
|
+
variableField: 'amount',
|
|
3508
|
+
required: false,
|
|
3509
|
+
default: 60,
|
|
3510
|
+
},
|
|
3451
3511
|
],
|
|
3452
3512
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.RANDOM }, { type: LumiaVariationConditions.EQUAL_VARIABLE }],
|
|
3453
3513
|
},
|
|
@@ -4389,18 +4449,18 @@ exports.LumiaAlertConfigs = {
|
|
|
4389
4449
|
quickActions: [
|
|
4390
4450
|
{
|
|
4391
4451
|
label: '10 likes',
|
|
4392
|
-
dynamic: { value: 10 },
|
|
4393
|
-
extraSettings: { likes: 10, dislikes: 2 },
|
|
4452
|
+
dynamic: { value: 10, amount: 10 },
|
|
4453
|
+
extraSettings: { likes: 10, dislikes: 2, amount: 10 },
|
|
4394
4454
|
},
|
|
4395
4455
|
{
|
|
4396
4456
|
label: '20 likes',
|
|
4397
|
-
dynamic: { value: 20 },
|
|
4398
|
-
extraSettings: { likes: 20, dislikes: 2 },
|
|
4457
|
+
dynamic: { value: 20, amount: 20 },
|
|
4458
|
+
extraSettings: { likes: 20, dislikes: 2, amount: 20 },
|
|
4399
4459
|
},
|
|
4400
4460
|
{
|
|
4401
4461
|
label: '100 likes',
|
|
4402
|
-
dynamic: { value: 100 },
|
|
4403
|
-
extraSettings: { likes: 100, dislikes: 2 },
|
|
4462
|
+
dynamic: { value: 100, amount: 100 },
|
|
4463
|
+
extraSettings: { likes: 100, dislikes: 2, amount: 100 },
|
|
4404
4464
|
},
|
|
4405
4465
|
],
|
|
4406
4466
|
LumiaVariationConditions: [
|
|
@@ -4419,18 +4479,18 @@ exports.LumiaAlertConfigs = {
|
|
|
4419
4479
|
quickActions: [
|
|
4420
4480
|
{
|
|
4421
4481
|
label: '100 viewers',
|
|
4422
|
-
dynamic: { value: 100 },
|
|
4423
|
-
extraSettings: { viewers: 100 },
|
|
4482
|
+
dynamic: { value: 100, amount: 100 },
|
|
4483
|
+
extraSettings: { viewers: 100, amount: 100 },
|
|
4424
4484
|
},
|
|
4425
4485
|
{
|
|
4426
4486
|
label: '200 viewers',
|
|
4427
|
-
dynamic: { value: 200 },
|
|
4428
|
-
extraSettings: { viewers: 200 },
|
|
4487
|
+
dynamic: { value: 200, amount: 200 },
|
|
4488
|
+
extraSettings: { viewers: 200, amount: 200 },
|
|
4429
4489
|
},
|
|
4430
4490
|
{
|
|
4431
4491
|
label: '300 viewers',
|
|
4432
|
-
dynamic: { value: 300 },
|
|
4433
|
-
extraSettings: { viewers: 300 },
|
|
4492
|
+
dynamic: { value: 300, amount: 300 },
|
|
4493
|
+
extraSettings: { viewers: 300, amount: 300 },
|
|
4434
4494
|
},
|
|
4435
4495
|
],
|
|
4436
4496
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.GREATER_NUMBER, description: 'Viewers Greater Than' }],
|
|
@@ -4822,22 +4882,24 @@ exports.LumiaAlertConfigs = {
|
|
|
4822
4882
|
quickActions: [
|
|
4823
4883
|
{
|
|
4824
4884
|
label: '200 User Likes',
|
|
4825
|
-
dynamic: { value: 200 },
|
|
4885
|
+
dynamic: { value: 200, amount: 200 },
|
|
4826
4886
|
extraSettings: {
|
|
4827
4887
|
username: 'lumiastream',
|
|
4828
4888
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
4829
4889
|
userLikeCount: 200,
|
|
4830
4890
|
totalLikeCount: 1000,
|
|
4891
|
+
amount: 200,
|
|
4831
4892
|
},
|
|
4832
4893
|
},
|
|
4833
4894
|
{
|
|
4834
4895
|
label: '1000 User Likes',
|
|
4835
|
-
dynamic: { value: 1000 },
|
|
4896
|
+
dynamic: { value: 1000, amount: 1000 },
|
|
4836
4897
|
extraSettings: {
|
|
4837
4898
|
username: 'lumiastream',
|
|
4838
4899
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
4839
4900
|
userLikeCount: 1000,
|
|
4840
4901
|
totalLikeCount: 5000,
|
|
4902
|
+
amount: 1000,
|
|
4841
4903
|
},
|
|
4842
4904
|
},
|
|
4843
4905
|
],
|
|
@@ -4864,6 +4926,13 @@ exports.LumiaAlertConfigs = {
|
|
|
4864
4926
|
required: false,
|
|
4865
4927
|
default: 1000,
|
|
4866
4928
|
},
|
|
4929
|
+
{
|
|
4930
|
+
type: 'number',
|
|
4931
|
+
label: 'Amount',
|
|
4932
|
+
variableField: 'amount',
|
|
4933
|
+
required: false,
|
|
4934
|
+
default: 100,
|
|
4935
|
+
},
|
|
4867
4936
|
],
|
|
4868
4937
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.GREATER_NUMBER, description: 'User Like Count Greater Than' }],
|
|
4869
4938
|
},
|
|
@@ -4877,32 +4946,35 @@ exports.LumiaAlertConfigs = {
|
|
|
4877
4946
|
quickActions: [
|
|
4878
4947
|
{
|
|
4879
4948
|
label: '1000 Total Likes',
|
|
4880
|
-
dynamic: { value: 1000 },
|
|
4949
|
+
dynamic: { value: 1000, amount: 1000 },
|
|
4881
4950
|
extraSettings: {
|
|
4882
4951
|
username: 'lumiastream',
|
|
4883
4952
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
4884
4953
|
userLikeCount: 200,
|
|
4885
4954
|
totalLikeCount: 1000,
|
|
4955
|
+
amount: 1000,
|
|
4886
4956
|
},
|
|
4887
4957
|
},
|
|
4888
4958
|
{
|
|
4889
4959
|
label: '5000 Total Likes',
|
|
4890
|
-
dynamic: { value: 5000 },
|
|
4960
|
+
dynamic: { value: 5000, amount: 5000 },
|
|
4891
4961
|
extraSettings: {
|
|
4892
4962
|
username: 'lumiastream',
|
|
4893
4963
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
4894
4964
|
userLikeCount: 200,
|
|
4895
4965
|
totalLikeCount: 5000,
|
|
4966
|
+
amount: 5000,
|
|
4896
4967
|
},
|
|
4897
4968
|
},
|
|
4898
4969
|
{
|
|
4899
4970
|
label: '25000 Total Likes',
|
|
4900
|
-
dynamic: { value: 25000 },
|
|
4971
|
+
dynamic: { value: 25000, amount: 25000 },
|
|
4901
4972
|
extraSettings: {
|
|
4902
4973
|
username: 'lumiastream',
|
|
4903
4974
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
4904
4975
|
userLikeCount: 200,
|
|
4905
4976
|
totalLikeCount: 25000,
|
|
4977
|
+
amount: 25000,
|
|
4906
4978
|
},
|
|
4907
4979
|
},
|
|
4908
4980
|
],
|
|
@@ -4915,6 +4987,13 @@ exports.LumiaAlertConfigs = {
|
|
|
4915
4987
|
required: true,
|
|
4916
4988
|
default: 1000,
|
|
4917
4989
|
},
|
|
4990
|
+
{
|
|
4991
|
+
type: 'number',
|
|
4992
|
+
label: 'Amount',
|
|
4993
|
+
variableField: 'amount',
|
|
4994
|
+
required: false,
|
|
4995
|
+
default: 1000,
|
|
4996
|
+
},
|
|
4918
4997
|
],
|
|
4919
4998
|
LumiaVariationConditions: [{ type: LumiaVariationConditions.GREATER_NUMBER, description: 'Total Like Count Greater Than' }],
|
|
4920
4999
|
},
|
|
@@ -4927,7 +5006,7 @@ exports.LumiaAlertConfigs = {
|
|
|
4927
5006
|
quickActions: [
|
|
4928
5007
|
{
|
|
4929
5008
|
label: 'Rose worth 1 Coin',
|
|
4930
|
-
dynamic: { value: 1, name: 'Rose' },
|
|
5009
|
+
dynamic: { value: 1, name: 'Rose', amount: 1 },
|
|
4931
5010
|
extraSettings: {
|
|
4932
5011
|
username: 'lumiastream',
|
|
4933
5012
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
@@ -4938,12 +5017,13 @@ exports.LumiaAlertConfigs = {
|
|
|
4938
5017
|
value: 1,
|
|
4939
5018
|
coins: 1,
|
|
4940
5019
|
diamonds: 1,
|
|
5020
|
+
amount: 1,
|
|
4941
5021
|
giftPictureUrl: 'https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.png',
|
|
4942
5022
|
},
|
|
4943
5023
|
},
|
|
4944
5024
|
{
|
|
4945
5025
|
label: 'Pumpkin worth 100 Coins',
|
|
4946
|
-
dynamic: { value: 100, name: 'Pumpkin' },
|
|
5026
|
+
dynamic: { value: 100, name: 'Pumpkin', amount: 100 },
|
|
4947
5027
|
extraSettings: {
|
|
4948
5028
|
username: 'lumiastream',
|
|
4949
5029
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
@@ -4955,11 +5035,12 @@ exports.LumiaAlertConfigs = {
|
|
|
4955
5035
|
value: 100,
|
|
4956
5036
|
coins: 100,
|
|
4957
5037
|
diamonds: 50,
|
|
5038
|
+
amount: 100,
|
|
4958
5039
|
},
|
|
4959
5040
|
},
|
|
4960
5041
|
{
|
|
4961
5042
|
label: 'Boiling Cauldron worth 500 Coins',
|
|
4962
|
-
dynamic: { value: 500, name: 'Boiling Cauldron' },
|
|
5043
|
+
dynamic: { value: 500, name: 'Boiling Cauldron', amount: 500 },
|
|
4963
5044
|
extraSettings: {
|
|
4964
5045
|
username: 'lumiastream',
|
|
4965
5046
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
@@ -4971,6 +5052,7 @@ exports.LumiaAlertConfigs = {
|
|
|
4971
5052
|
value: 500,
|
|
4972
5053
|
coins: 500,
|
|
4973
5054
|
diamonds: 250,
|
|
5055
|
+
amount: 500,
|
|
4974
5056
|
},
|
|
4975
5057
|
},
|
|
4976
5058
|
],
|
|
@@ -4997,6 +5079,13 @@ exports.LumiaAlertConfigs = {
|
|
|
4997
5079
|
required: false,
|
|
4998
5080
|
default: 1,
|
|
4999
5081
|
},
|
|
5082
|
+
{
|
|
5083
|
+
type: 'number',
|
|
5084
|
+
label: 'Amount',
|
|
5085
|
+
variableField: 'amount',
|
|
5086
|
+
required: false,
|
|
5087
|
+
default: 1,
|
|
5088
|
+
},
|
|
5000
5089
|
],
|
|
5001
5090
|
LumiaVariationConditions: [
|
|
5002
5091
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -5075,8 +5164,8 @@ exports.LumiaAlertConfigs = {
|
|
|
5075
5164
|
quickActions: [
|
|
5076
5165
|
{
|
|
5077
5166
|
label: 'Treasure Chest',
|
|
5078
|
-
dynamic: { value: 50, name: 'lumiastream' },
|
|
5079
|
-
extraSettings: { username: 'lumiastream', diamondCount: 50, peopleCount: 5 },
|
|
5167
|
+
dynamic: { value: 50, name: 'lumiastream', amount: 50 },
|
|
5168
|
+
extraSettings: { username: 'lumiastream', diamondCount: 50, peopleCount: 5, amount: 50 },
|
|
5080
5169
|
},
|
|
5081
5170
|
],
|
|
5082
5171
|
inputFields: [
|
|
@@ -5095,6 +5184,13 @@ exports.LumiaAlertConfigs = {
|
|
|
5095
5184
|
required: false,
|
|
5096
5185
|
default: 50,
|
|
5097
5186
|
},
|
|
5187
|
+
{
|
|
5188
|
+
type: 'number',
|
|
5189
|
+
label: 'Amount',
|
|
5190
|
+
variableField: 'amount',
|
|
5191
|
+
required: false,
|
|
5192
|
+
default: 50,
|
|
5193
|
+
},
|
|
5098
5194
|
],
|
|
5099
5195
|
LumiaVariationConditions: [
|
|
5100
5196
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -5357,7 +5453,7 @@ exports.LumiaAlertConfigs = {
|
|
|
5357
5453
|
quickActions: [
|
|
5358
5454
|
{
|
|
5359
5455
|
label: 'Battle Progress',
|
|
5360
|
-
dynamic: { value: 100 },
|
|
5456
|
+
dynamic: { value: 100, amount: 100 },
|
|
5361
5457
|
extraSettings: {
|
|
5362
5458
|
battleId: '1',
|
|
5363
5459
|
battleLabel: 'lumiastream vs rivalstream',
|
|
@@ -5374,6 +5470,7 @@ exports.LumiaAlertConfigs = {
|
|
|
5374
5470
|
repeatCount: 1,
|
|
5375
5471
|
totalDiamondCount: 100,
|
|
5376
5472
|
battleStatus: 'scoreUpdate',
|
|
5473
|
+
amount: 100,
|
|
5377
5474
|
},
|
|
5378
5475
|
},
|
|
5379
5476
|
],
|
|
@@ -5385,6 +5482,13 @@ exports.LumiaAlertConfigs = {
|
|
|
5385
5482
|
required: false,
|
|
5386
5483
|
default: 'lumiastream vs rivalstream',
|
|
5387
5484
|
},
|
|
5485
|
+
{
|
|
5486
|
+
type: 'number',
|
|
5487
|
+
label: 'Amount',
|
|
5488
|
+
variableField: 'amount',
|
|
5489
|
+
required: false,
|
|
5490
|
+
default: 100,
|
|
5491
|
+
},
|
|
5388
5492
|
],
|
|
5389
5493
|
LumiaVariationConditions: [
|
|
5390
5494
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -5670,12 +5774,13 @@ exports.LumiaAlertConfigs = {
|
|
|
5670
5774
|
quickActions: [
|
|
5671
5775
|
{
|
|
5672
5776
|
label: 'Tier 1 Sub',
|
|
5673
|
-
dynamic: { value: '1' },
|
|
5777
|
+
dynamic: { value: '1', amount: 1 },
|
|
5674
5778
|
extraSettings: {
|
|
5675
5779
|
username: 'lumiastream',
|
|
5676
5780
|
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
5677
5781
|
message: 'Great Stream',
|
|
5678
5782
|
subMonths: 1,
|
|
5783
|
+
amount: 1,
|
|
5679
5784
|
tier: 'Tier 1',
|
|
5680
5785
|
subPlan: '1',
|
|
5681
5786
|
subPlanName: 'My Day ones',
|
|
@@ -5698,6 +5803,13 @@ exports.LumiaAlertConfigs = {
|
|
|
5698
5803
|
required: false,
|
|
5699
5804
|
default: 1,
|
|
5700
5805
|
},
|
|
5806
|
+
{
|
|
5807
|
+
type: 'number',
|
|
5808
|
+
label: 'Amount',
|
|
5809
|
+
variableField: 'amount',
|
|
5810
|
+
required: false,
|
|
5811
|
+
default: 1,
|
|
5812
|
+
},
|
|
5701
5813
|
{
|
|
5702
5814
|
type: 'text',
|
|
5703
5815
|
label: 'Message',
|
|
@@ -6077,18 +6189,18 @@ exports.LumiaAlertConfigs = {
|
|
|
6077
6189
|
quickActions: [
|
|
6078
6190
|
{
|
|
6079
6191
|
label: '10 viewers',
|
|
6080
|
-
dynamic: { value: 10 },
|
|
6081
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 10 },
|
|
6192
|
+
dynamic: { value: 10, amount: 10 },
|
|
6193
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 10, amount: 10 },
|
|
6082
6194
|
},
|
|
6083
6195
|
{
|
|
6084
6196
|
label: '50 viewers',
|
|
6085
|
-
dynamic: { value: 50 },
|
|
6086
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 50 },
|
|
6197
|
+
dynamic: { value: 50, amount: 50 },
|
|
6198
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 50, amount: 50 },
|
|
6087
6199
|
},
|
|
6088
6200
|
{
|
|
6089
6201
|
label: '100 viewers',
|
|
6090
|
-
dynamic: { value: 100 },
|
|
6091
|
-
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 100 },
|
|
6202
|
+
dynamic: { value: 100, amount: 100 },
|
|
6203
|
+
extraSettings: { username: 'lumiastream', avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png', viewers: 100, amount: 100 },
|
|
6092
6204
|
},
|
|
6093
6205
|
],
|
|
6094
6206
|
inputFields: [
|
|
@@ -6107,6 +6219,13 @@ exports.LumiaAlertConfigs = {
|
|
|
6107
6219
|
required: true,
|
|
6108
6220
|
default: 100,
|
|
6109
6221
|
},
|
|
6222
|
+
{
|
|
6223
|
+
type: 'number',
|
|
6224
|
+
label: 'Amount',
|
|
6225
|
+
variableField: 'amount',
|
|
6226
|
+
required: false,
|
|
6227
|
+
default: 100,
|
|
6228
|
+
},
|
|
6110
6229
|
],
|
|
6111
6230
|
LumiaVariationConditions: [
|
|
6112
6231
|
{ type: LumiaVariationConditions.RANDOM },
|
|
@@ -6227,9 +6346,9 @@ exports.LumiaAlertConfigs = {
|
|
|
6227
6346
|
// streamlabs: {
|
|
6228
6347
|
[activity_types_1.LumiaAlertValues.STREAMLABS_DONATION]: {
|
|
6229
6348
|
connection: event_types_1.LumiaIntegrations.STREAMLABS,
|
|
6230
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
6349
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
6231
6350
|
eventlistMessage: 'Donation',
|
|
6232
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6351
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
6233
6352
|
acceptedVariables: variables_types_1.AllVariables.streamlabs.alerts.donation,
|
|
6234
6353
|
quickActions: [
|
|
6235
6354
|
{
|
|
@@ -6308,9 +6427,9 @@ exports.LumiaAlertConfigs = {
|
|
|
6308
6427
|
},
|
|
6309
6428
|
[activity_types_1.LumiaAlertValues.STREAMLABS_CHARITY]: {
|
|
6310
6429
|
connection: event_types_1.LumiaIntegrations.STREAMLABS,
|
|
6311
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
6430
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
6312
6431
|
eventlistMessage: 'Donation',
|
|
6313
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6432
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
6314
6433
|
acceptedVariables: variables_types_1.AllVariables.streamlabs.alerts.charity,
|
|
6315
6434
|
quickActions: [
|
|
6316
6435
|
{
|
|
@@ -6512,9 +6631,9 @@ exports.LumiaAlertConfigs = {
|
|
|
6512
6631
|
// streamelements: {
|
|
6513
6632
|
[activity_types_1.LumiaAlertValues.STREAMELEMENTS_DONATION]: {
|
|
6514
6633
|
connection: event_types_1.LumiaIntegrations.STREAMELEMENTS,
|
|
6515
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
6634
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
6516
6635
|
eventlistMessage: 'Donation',
|
|
6517
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6636
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
6518
6637
|
acceptedVariables: variables_types_1.AllVariables.streamelements.alerts.donation,
|
|
6519
6638
|
quickActions: [
|
|
6520
6639
|
{
|
|
@@ -6597,8 +6716,8 @@ exports.LumiaAlertConfigs = {
|
|
|
6597
6716
|
// extralife: {
|
|
6598
6717
|
[activity_types_1.LumiaAlertValues.EXTRALIFE_DONATION]: {
|
|
6599
6718
|
connection: event_types_1.LumiaIntegrations.EXTRALIFE,
|
|
6600
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
6601
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6719
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
6720
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
6602
6721
|
acceptedVariables: variables_types_1.AllVariables.extralife.alerts.donation,
|
|
6603
6722
|
quickActions: [
|
|
6604
6723
|
{
|
|
@@ -6679,8 +6798,8 @@ exports.LumiaAlertConfigs = {
|
|
|
6679
6798
|
// donordrive: {
|
|
6680
6799
|
[activity_types_1.LumiaAlertValues.DONORDRIVE_DONATION]: {
|
|
6681
6800
|
connection: event_types_1.LumiaIntegrations.DONORDRIVE,
|
|
6682
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
6683
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6801
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
6802
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
6684
6803
|
acceptedVariables: variables_types_1.AllVariables.donordrive.alerts.donation,
|
|
6685
6804
|
quickActions: [
|
|
6686
6805
|
{
|
|
@@ -6761,9 +6880,9 @@ exports.LumiaAlertConfigs = {
|
|
|
6761
6880
|
// tiltify: {
|
|
6762
6881
|
[activity_types_1.LumiaAlertValues.TILTIFY_DONATION]: {
|
|
6763
6882
|
connection: event_types_1.LumiaIntegrations.TILTIFY,
|
|
6764
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
6883
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
6765
6884
|
eventlistMessage: 'Donation',
|
|
6766
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6885
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
6767
6886
|
acceptedVariables: variables_types_1.AllVariables.tiltify.alerts.campaignDonation,
|
|
6768
6887
|
quickActions: [
|
|
6769
6888
|
{
|
|
@@ -6844,9 +6963,9 @@ exports.LumiaAlertConfigs = {
|
|
|
6844
6963
|
// patreon: {
|
|
6845
6964
|
[activity_types_1.LumiaAlertValues.PATREON_PLEDGE]: {
|
|
6846
6965
|
connection: event_types_1.LumiaIntegrations.PATREON,
|
|
6847
|
-
message: '{{username}} just pledged {{amount}}',
|
|
6966
|
+
message: '{{username}} just pledged {{currencySymbol}}{{amount}}',
|
|
6848
6967
|
eventlistMessage: 'Donation',
|
|
6849
|
-
eventlistDetailedMessage: 'tipped {{
|
|
6968
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}}',
|
|
6850
6969
|
acceptedVariables: variables_types_1.AllVariables.patreon.alerts.campaignPledge,
|
|
6851
6970
|
quickActions: [
|
|
6852
6971
|
{
|
|
@@ -7004,9 +7123,9 @@ exports.LumiaAlertConfigs = {
|
|
|
7004
7123
|
// kofi: {
|
|
7005
7124
|
[activity_types_1.LumiaAlertValues.KOFI_DONATION]: {
|
|
7006
7125
|
connection: event_types_1.LumiaIntegrations.KOFI,
|
|
7007
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
7126
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
7008
7127
|
eventlistMessage: 'Donation',
|
|
7009
|
-
eventlistDetailedMessage: 'tipped {{
|
|
7128
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
7010
7129
|
acceptedVariables: variables_types_1.AllVariables.kofi.alerts.donation,
|
|
7011
7130
|
quickActions: [
|
|
7012
7131
|
{
|
|
@@ -7474,9 +7593,9 @@ exports.LumiaAlertConfigs = {
|
|
|
7474
7593
|
// fourthwall: {
|
|
7475
7594
|
[activity_types_1.LumiaAlertValues.FOURTHWALL_DONATION]: {
|
|
7476
7595
|
connection: event_types_1.LumiaIntegrations.FOURTHWALL,
|
|
7477
|
-
message: '{{username}} just tipped {{amount}}. They said {{message}}',
|
|
7596
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}. They said {{message}}',
|
|
7478
7597
|
eventlistMessage: 'Donation',
|
|
7479
|
-
eventlistDetailedMessage: 'tipped {{
|
|
7598
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
7480
7599
|
acceptedVariables: variables_types_1.AllVariables.fourthwall.alerts.donation,
|
|
7481
7600
|
quickActions: [
|
|
7482
7601
|
{
|
|
@@ -8752,9 +8871,9 @@ exports.LumiaAlertConfigs = {
|
|
|
8752
8871
|
// tipeeestream: {
|
|
8753
8872
|
[activity_types_1.LumiaAlertValues.TIPEEESTREAM_DONATION]: {
|
|
8754
8873
|
connection: event_types_1.LumiaIntegrations.TIPEEESTREAM,
|
|
8755
|
-
message: '{{username}} just tipped {{amount}}',
|
|
8874
|
+
message: '{{username}} just tipped {{currencySymbol}}{{amount}}',
|
|
8756
8875
|
eventlistMessage: 'Donation',
|
|
8757
|
-
eventlistDetailedMessage: 'tipped {{
|
|
8876
|
+
eventlistDetailedMessage: 'tipped {{currencySymbol}}{{amount}} "{{message}}"',
|
|
8758
8877
|
acceptedVariables: variables_types_1.AllVariables.tipeeestream.alerts.donation,
|
|
8759
8878
|
quickActions: [
|
|
8760
8879
|
{
|