@lumiastream/lumia-types 3.4.5 → 3.4.6
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 +191 -72
- package/dist/esm/alert.types.js +191 -72
- package/dist/esm/variables.types.js +18 -16
- package/dist/variables.types.js +18 -16
- package/package.json +1 -1
package/dist/alert.types.d.ts
CHANGED
package/dist/alert.types.js
CHANGED
|
@@ -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 },
|
|
@@ -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 },
|