@lumiastream/lumia-types 3.7.0 → 3.7.2
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.js +76 -12
- package/dist/custom-overlays/custom-overlays.d.ts +8 -2
- package/dist/custom-overlays.d.ts +8 -2
- package/dist/esm/alert.types.js +76 -12
- package/dist/esm/variables.types.js +9 -3
- package/dist/variables.types.d.ts +8 -2
- package/dist/variables.types.js +9 -3
- package/package.json +1 -1
package/dist/alert.types.js
CHANGED
|
@@ -442,6 +442,10 @@ exports.LumiaAlertConfigs = {
|
|
|
442
442
|
{
|
|
443
443
|
type: LumiaVariationConditions.EQUAL_USERNAME,
|
|
444
444
|
},
|
|
445
|
+
{
|
|
446
|
+
type: LumiaVariationConditions.EQUAL_STRING,
|
|
447
|
+
description: 'Item is equal to',
|
|
448
|
+
},
|
|
445
449
|
{ type: LumiaVariationConditions.EQUAL_VARIABLE },
|
|
446
450
|
],
|
|
447
451
|
},
|
|
@@ -1444,17 +1448,32 @@ exports.LumiaAlertConfigs = {
|
|
|
1444
1448
|
{
|
|
1445
1449
|
label: '100 bits',
|
|
1446
1450
|
dynamic: { value: 100 },
|
|
1447
|
-
extraSettings: {
|
|
1451
|
+
extraSettings: {
|
|
1452
|
+
username: 'lumiastream',
|
|
1453
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1454
|
+
amount: 100,
|
|
1455
|
+
contentImage: bitsImageUrl(100),
|
|
1456
|
+
},
|
|
1448
1457
|
},
|
|
1449
1458
|
{
|
|
1450
1459
|
label: '500 bits',
|
|
1451
1460
|
dynamic: { value: 500 },
|
|
1452
|
-
extraSettings: {
|
|
1461
|
+
extraSettings: {
|
|
1462
|
+
username: 'lumiastream',
|
|
1463
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1464
|
+
amount: 500,
|
|
1465
|
+
contentImage: bitsImageUrl(500),
|
|
1466
|
+
},
|
|
1453
1467
|
},
|
|
1454
1468
|
{
|
|
1455
1469
|
label: '1000 bits',
|
|
1456
1470
|
dynamic: { value: 1000 },
|
|
1457
|
-
extraSettings: {
|
|
1471
|
+
extraSettings: {
|
|
1472
|
+
username: 'lumiastream',
|
|
1473
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1474
|
+
amount: 1000,
|
|
1475
|
+
contentImage: bitsImageUrl(1000),
|
|
1476
|
+
},
|
|
1458
1477
|
},
|
|
1459
1478
|
],
|
|
1460
1479
|
inputFields: [
|
|
@@ -1771,17 +1790,32 @@ exports.LumiaAlertConfigs = {
|
|
|
1771
1790
|
{
|
|
1772
1791
|
label: '10 viewers',
|
|
1773
1792
|
dynamic: { value: 10, amount: 10 },
|
|
1774
|
-
extraSettings: {
|
|
1793
|
+
extraSettings: {
|
|
1794
|
+
username: 'lumiastream',
|
|
1795
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1796
|
+
viewers: 10,
|
|
1797
|
+
amount: 10,
|
|
1798
|
+
},
|
|
1775
1799
|
},
|
|
1776
1800
|
{
|
|
1777
1801
|
label: '50 viewers',
|
|
1778
1802
|
dynamic: { value: 50, amount: 50 },
|
|
1779
|
-
extraSettings: {
|
|
1803
|
+
extraSettings: {
|
|
1804
|
+
username: 'lumiastream',
|
|
1805
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1806
|
+
viewers: 50,
|
|
1807
|
+
amount: 50,
|
|
1808
|
+
},
|
|
1780
1809
|
},
|
|
1781
1810
|
{
|
|
1782
1811
|
label: '100 viewers',
|
|
1783
1812
|
dynamic: { value: 100, amount: 100 },
|
|
1784
|
-
extraSettings: {
|
|
1813
|
+
extraSettings: {
|
|
1814
|
+
username: 'lumiastream',
|
|
1815
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1816
|
+
viewers: 100,
|
|
1817
|
+
amount: 100,
|
|
1818
|
+
},
|
|
1785
1819
|
},
|
|
1786
1820
|
],
|
|
1787
1821
|
inputFields: [
|
|
@@ -1828,17 +1862,32 @@ exports.LumiaAlertConfigs = {
|
|
|
1828
1862
|
{
|
|
1829
1863
|
label: '10 viewers',
|
|
1830
1864
|
dynamic: { value: 10, amount: 10 },
|
|
1831
|
-
extraSettings: {
|
|
1865
|
+
extraSettings: {
|
|
1866
|
+
username: 'lumiastream',
|
|
1867
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1868
|
+
viewers: 10,
|
|
1869
|
+
amount: 10,
|
|
1870
|
+
},
|
|
1832
1871
|
},
|
|
1833
1872
|
{
|
|
1834
1873
|
label: '50 viewers',
|
|
1835
1874
|
dynamic: { value: 50, amount: 50 },
|
|
1836
|
-
extraSettings: {
|
|
1875
|
+
extraSettings: {
|
|
1876
|
+
username: 'lumiastream',
|
|
1877
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1878
|
+
viewers: 50,
|
|
1879
|
+
amount: 50,
|
|
1880
|
+
},
|
|
1837
1881
|
},
|
|
1838
1882
|
{
|
|
1839
1883
|
label: '100 viewers',
|
|
1840
1884
|
dynamic: { value: 100, amount: 100 },
|
|
1841
|
-
extraSettings: {
|
|
1885
|
+
extraSettings: {
|
|
1886
|
+
username: 'lumiastream',
|
|
1887
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1888
|
+
viewers: 100,
|
|
1889
|
+
amount: 100,
|
|
1890
|
+
},
|
|
1842
1891
|
},
|
|
1843
1892
|
],
|
|
1844
1893
|
inputFields: [
|
|
@@ -6454,17 +6503,32 @@ exports.LumiaAlertConfigs = {
|
|
|
6454
6503
|
{
|
|
6455
6504
|
label: '10 viewers',
|
|
6456
6505
|
dynamic: { value: 10, amount: 10 },
|
|
6457
|
-
extraSettings: {
|
|
6506
|
+
extraSettings: {
|
|
6507
|
+
username: 'lumiastream',
|
|
6508
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
6509
|
+
viewers: 10,
|
|
6510
|
+
amount: 10,
|
|
6511
|
+
},
|
|
6458
6512
|
},
|
|
6459
6513
|
{
|
|
6460
6514
|
label: '50 viewers',
|
|
6461
6515
|
dynamic: { value: 50, amount: 50 },
|
|
6462
|
-
extraSettings: {
|
|
6516
|
+
extraSettings: {
|
|
6517
|
+
username: 'lumiastream',
|
|
6518
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
6519
|
+
viewers: 50,
|
|
6520
|
+
amount: 50,
|
|
6521
|
+
},
|
|
6463
6522
|
},
|
|
6464
6523
|
{
|
|
6465
6524
|
label: '100 viewers',
|
|
6466
6525
|
dynamic: { value: 100, amount: 100 },
|
|
6467
|
-
extraSettings: {
|
|
6526
|
+
extraSettings: {
|
|
6527
|
+
username: 'lumiastream',
|
|
6528
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
6529
|
+
viewers: 100,
|
|
6530
|
+
amount: 100,
|
|
6531
|
+
},
|
|
6468
6532
|
},
|
|
6469
6533
|
],
|
|
6470
6534
|
inputFields: [
|
|
@@ -1259,6 +1259,14 @@ export declare enum SystemVariables {
|
|
|
1259
1259
|
WEEK_DONATION_AMOUNT = "week_donation_amount",
|
|
1260
1260
|
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
1261
1261
|
MONTH_DONATION_AMOUNT = "month_donation_amount",
|
|
1262
|
+
/** Session-wide gross money across every income source (tips, bits, subs, gift subs, super chats, super stickers, TikTok gifts, kicks, stars…), normalized to your default currency. Use as {{session_money_amount}}. */
|
|
1263
|
+
SESSION_MONEY_AMOUNT = "session_money_amount",
|
|
1264
|
+
/** Gross money across every income source for the current calendar week. Use as {{week_money_amount}}. */
|
|
1265
|
+
WEEK_MONEY_AMOUNT = "week_money_amount",
|
|
1266
|
+
/** Gross money across every income source for the current calendar month. Use as {{month_money_amount}}. */
|
|
1267
|
+
MONTH_MONEY_AMOUNT = "month_money_amount",
|
|
1268
|
+
/** All-time gross money across every income source. Use as {{total_money_amount}}. */
|
|
1269
|
+
TOTAL_MONEY_AMOUNT = "total_money_amount",
|
|
1262
1270
|
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
1263
1271
|
WEEK_DONATION_COUNT = "week_donation_count",
|
|
1264
1272
|
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
@@ -1891,8 +1899,6 @@ export declare enum SystemVariables {
|
|
|
1891
1899
|
SPOTIFY_NEXT_URL = "spotify_next_url",
|
|
1892
1900
|
/** Next song Spotify URI. Use as {{spotify_next_uri}}. */
|
|
1893
1901
|
SPOTIFY_NEXT_URI = "spotify_next_uri",
|
|
1894
|
-
/** Current queue (comma-separated). Use as {{spotify_queue}}. */
|
|
1895
|
-
SPOTIFY_QUEUE = "spotify_queue",
|
|
1896
1902
|
/** Now playing song title. Use as {{youtubemusic_now_playing_song}}. */
|
|
1897
1903
|
YOUTUBEMUSIC_NOW_PLAYING_SONG = "youtubemusic_now_playing_song",
|
|
1898
1904
|
/** Now playing artwork URL. Use as {{youtubemusic_now_playing_image}}. */
|
|
@@ -1259,6 +1259,14 @@ export declare enum SystemVariables {
|
|
|
1259
1259
|
WEEK_DONATION_AMOUNT = "week_donation_amount",
|
|
1260
1260
|
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
1261
1261
|
MONTH_DONATION_AMOUNT = "month_donation_amount",
|
|
1262
|
+
/** Session-wide gross money across every income source (tips, bits, subs, gift subs, super chats, super stickers, TikTok gifts, kicks, stars…), normalized to your default currency. Use as {{session_money_amount}}. */
|
|
1263
|
+
SESSION_MONEY_AMOUNT = "session_money_amount",
|
|
1264
|
+
/** Gross money across every income source for the current calendar week. Use as {{week_money_amount}}. */
|
|
1265
|
+
WEEK_MONEY_AMOUNT = "week_money_amount",
|
|
1266
|
+
/** Gross money across every income source for the current calendar month. Use as {{month_money_amount}}. */
|
|
1267
|
+
MONTH_MONEY_AMOUNT = "month_money_amount",
|
|
1268
|
+
/** All-time gross money across every income source. Use as {{total_money_amount}}. */
|
|
1269
|
+
TOTAL_MONEY_AMOUNT = "total_money_amount",
|
|
1262
1270
|
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
1263
1271
|
WEEK_DONATION_COUNT = "week_donation_count",
|
|
1264
1272
|
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
@@ -1891,8 +1899,6 @@ export declare enum SystemVariables {
|
|
|
1891
1899
|
SPOTIFY_NEXT_URL = "spotify_next_url",
|
|
1892
1900
|
/** Next song Spotify URI. Use as {{spotify_next_uri}}. */
|
|
1893
1901
|
SPOTIFY_NEXT_URI = "spotify_next_uri",
|
|
1894
|
-
/** Current queue (comma-separated). Use as {{spotify_queue}}. */
|
|
1895
|
-
SPOTIFY_QUEUE = "spotify_queue",
|
|
1896
1902
|
/** Now playing song title. Use as {{youtubemusic_now_playing_song}}. */
|
|
1897
1903
|
YOUTUBEMUSIC_NOW_PLAYING_SONG = "youtubemusic_now_playing_song",
|
|
1898
1904
|
/** Now playing artwork URL. Use as {{youtubemusic_now_playing_image}}. */
|
package/dist/esm/alert.types.js
CHANGED
|
@@ -439,6 +439,10 @@ export const LumiaAlertConfigs = {
|
|
|
439
439
|
{
|
|
440
440
|
type: LumiaVariationConditions.EQUAL_USERNAME,
|
|
441
441
|
},
|
|
442
|
+
{
|
|
443
|
+
type: LumiaVariationConditions.EQUAL_STRING,
|
|
444
|
+
description: 'Item is equal to',
|
|
445
|
+
},
|
|
442
446
|
{ type: LumiaVariationConditions.EQUAL_VARIABLE },
|
|
443
447
|
],
|
|
444
448
|
},
|
|
@@ -1441,17 +1445,32 @@ export const LumiaAlertConfigs = {
|
|
|
1441
1445
|
{
|
|
1442
1446
|
label: '100 bits',
|
|
1443
1447
|
dynamic: { value: 100 },
|
|
1444
|
-
extraSettings: {
|
|
1448
|
+
extraSettings: {
|
|
1449
|
+
username: 'lumiastream',
|
|
1450
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1451
|
+
amount: 100,
|
|
1452
|
+
contentImage: bitsImageUrl(100),
|
|
1453
|
+
},
|
|
1445
1454
|
},
|
|
1446
1455
|
{
|
|
1447
1456
|
label: '500 bits',
|
|
1448
1457
|
dynamic: { value: 500 },
|
|
1449
|
-
extraSettings: {
|
|
1458
|
+
extraSettings: {
|
|
1459
|
+
username: 'lumiastream',
|
|
1460
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1461
|
+
amount: 500,
|
|
1462
|
+
contentImage: bitsImageUrl(500),
|
|
1463
|
+
},
|
|
1450
1464
|
},
|
|
1451
1465
|
{
|
|
1452
1466
|
label: '1000 bits',
|
|
1453
1467
|
dynamic: { value: 1000 },
|
|
1454
|
-
extraSettings: {
|
|
1468
|
+
extraSettings: {
|
|
1469
|
+
username: 'lumiastream',
|
|
1470
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1471
|
+
amount: 1000,
|
|
1472
|
+
contentImage: bitsImageUrl(1000),
|
|
1473
|
+
},
|
|
1455
1474
|
},
|
|
1456
1475
|
],
|
|
1457
1476
|
inputFields: [
|
|
@@ -1768,17 +1787,32 @@ export const LumiaAlertConfigs = {
|
|
|
1768
1787
|
{
|
|
1769
1788
|
label: '10 viewers',
|
|
1770
1789
|
dynamic: { value: 10, amount: 10 },
|
|
1771
|
-
extraSettings: {
|
|
1790
|
+
extraSettings: {
|
|
1791
|
+
username: 'lumiastream',
|
|
1792
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1793
|
+
viewers: 10,
|
|
1794
|
+
amount: 10,
|
|
1795
|
+
},
|
|
1772
1796
|
},
|
|
1773
1797
|
{
|
|
1774
1798
|
label: '50 viewers',
|
|
1775
1799
|
dynamic: { value: 50, amount: 50 },
|
|
1776
|
-
extraSettings: {
|
|
1800
|
+
extraSettings: {
|
|
1801
|
+
username: 'lumiastream',
|
|
1802
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1803
|
+
viewers: 50,
|
|
1804
|
+
amount: 50,
|
|
1805
|
+
},
|
|
1777
1806
|
},
|
|
1778
1807
|
{
|
|
1779
1808
|
label: '100 viewers',
|
|
1780
1809
|
dynamic: { value: 100, amount: 100 },
|
|
1781
|
-
extraSettings: {
|
|
1810
|
+
extraSettings: {
|
|
1811
|
+
username: 'lumiastream',
|
|
1812
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1813
|
+
viewers: 100,
|
|
1814
|
+
amount: 100,
|
|
1815
|
+
},
|
|
1782
1816
|
},
|
|
1783
1817
|
],
|
|
1784
1818
|
inputFields: [
|
|
@@ -1825,17 +1859,32 @@ export const LumiaAlertConfigs = {
|
|
|
1825
1859
|
{
|
|
1826
1860
|
label: '10 viewers',
|
|
1827
1861
|
dynamic: { value: 10, amount: 10 },
|
|
1828
|
-
extraSettings: {
|
|
1862
|
+
extraSettings: {
|
|
1863
|
+
username: 'lumiastream',
|
|
1864
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1865
|
+
viewers: 10,
|
|
1866
|
+
amount: 10,
|
|
1867
|
+
},
|
|
1829
1868
|
},
|
|
1830
1869
|
{
|
|
1831
1870
|
label: '50 viewers',
|
|
1832
1871
|
dynamic: { value: 50, amount: 50 },
|
|
1833
|
-
extraSettings: {
|
|
1872
|
+
extraSettings: {
|
|
1873
|
+
username: 'lumiastream',
|
|
1874
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1875
|
+
viewers: 50,
|
|
1876
|
+
amount: 50,
|
|
1877
|
+
},
|
|
1834
1878
|
},
|
|
1835
1879
|
{
|
|
1836
1880
|
label: '100 viewers',
|
|
1837
1881
|
dynamic: { value: 100, amount: 100 },
|
|
1838
|
-
extraSettings: {
|
|
1882
|
+
extraSettings: {
|
|
1883
|
+
username: 'lumiastream',
|
|
1884
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
1885
|
+
viewers: 100,
|
|
1886
|
+
amount: 100,
|
|
1887
|
+
},
|
|
1839
1888
|
},
|
|
1840
1889
|
],
|
|
1841
1890
|
inputFields: [
|
|
@@ -6451,17 +6500,32 @@ export const LumiaAlertConfigs = {
|
|
|
6451
6500
|
{
|
|
6452
6501
|
label: '10 viewers',
|
|
6453
6502
|
dynamic: { value: 10, amount: 10 },
|
|
6454
|
-
extraSettings: {
|
|
6503
|
+
extraSettings: {
|
|
6504
|
+
username: 'lumiastream',
|
|
6505
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
6506
|
+
viewers: 10,
|
|
6507
|
+
amount: 10,
|
|
6508
|
+
},
|
|
6455
6509
|
},
|
|
6456
6510
|
{
|
|
6457
6511
|
label: '50 viewers',
|
|
6458
6512
|
dynamic: { value: 50, amount: 50 },
|
|
6459
|
-
extraSettings: {
|
|
6513
|
+
extraSettings: {
|
|
6514
|
+
username: 'lumiastream',
|
|
6515
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
6516
|
+
viewers: 50,
|
|
6517
|
+
amount: 50,
|
|
6518
|
+
},
|
|
6460
6519
|
},
|
|
6461
6520
|
{
|
|
6462
6521
|
label: '100 viewers',
|
|
6463
6522
|
dynamic: { value: 100, amount: 100 },
|
|
6464
|
-
extraSettings: {
|
|
6523
|
+
extraSettings: {
|
|
6524
|
+
username: 'lumiastream',
|
|
6525
|
+
avatar: 'https://static-cdn.jtvnw.net/jtv_user_pictures/2b1fa336-f9b2-42cf-bd2c-98675da74982-profile_image-70x70.png',
|
|
6526
|
+
viewers: 100,
|
|
6527
|
+
amount: 100,
|
|
6528
|
+
},
|
|
6465
6529
|
},
|
|
6466
6530
|
],
|
|
6467
6531
|
inputFields: [
|
|
@@ -184,6 +184,14 @@ export var SystemVariables;
|
|
|
184
184
|
SystemVariables["WEEK_DONATION_AMOUNT"] = "week_donation_amount";
|
|
185
185
|
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
186
186
|
SystemVariables["MONTH_DONATION_AMOUNT"] = "month_donation_amount";
|
|
187
|
+
/** Session-wide gross money across every income source (tips, bits, subs, gift subs, super chats, super stickers, TikTok gifts, kicks, stars…), normalized to your default currency. Use as {{session_money_amount}}. */
|
|
188
|
+
SystemVariables["SESSION_MONEY_AMOUNT"] = "session_money_amount";
|
|
189
|
+
/** Gross money across every income source for the current calendar week. Use as {{week_money_amount}}. */
|
|
190
|
+
SystemVariables["WEEK_MONEY_AMOUNT"] = "week_money_amount";
|
|
191
|
+
/** Gross money across every income source for the current calendar month. Use as {{month_money_amount}}. */
|
|
192
|
+
SystemVariables["MONTH_MONEY_AMOUNT"] = "month_money_amount";
|
|
193
|
+
/** All-time gross money across every income source. Use as {{total_money_amount}}. */
|
|
194
|
+
SystemVariables["TOTAL_MONEY_AMOUNT"] = "total_money_amount";
|
|
187
195
|
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
188
196
|
SystemVariables["WEEK_DONATION_COUNT"] = "week_donation_count";
|
|
189
197
|
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
@@ -828,8 +836,6 @@ export var SystemVariables;
|
|
|
828
836
|
SystemVariables["SPOTIFY_NEXT_URL"] = "spotify_next_url";
|
|
829
837
|
/** Next song Spotify URI. Use as {{spotify_next_uri}}. */
|
|
830
838
|
SystemVariables["SPOTIFY_NEXT_URI"] = "spotify_next_uri";
|
|
831
|
-
/** Current queue (comma-separated). Use as {{spotify_queue}}. */
|
|
832
|
-
SystemVariables["SPOTIFY_QUEUE"] = "spotify_queue";
|
|
833
839
|
// ─────────────────────────────── YouTube Music ────────────────────────────────
|
|
834
840
|
/** Now playing song title. Use as {{youtubemusic_now_playing_song}}. */
|
|
835
841
|
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_SONG"] = "youtubemusic_now_playing_song";
|
|
@@ -2568,7 +2574,7 @@ export const AllVariables = {
|
|
|
2568
2574
|
'spotify_next_id',
|
|
2569
2575
|
'spotify_next_url',
|
|
2570
2576
|
'spotify_next_uri',
|
|
2571
|
-
'
|
|
2577
|
+
'spotify_now_playing_queue',
|
|
2572
2578
|
],
|
|
2573
2579
|
alerts: {
|
|
2574
2580
|
switchSong: ['name', 'uri', 'image'],
|
|
@@ -191,6 +191,14 @@ export declare enum SystemVariables {
|
|
|
191
191
|
WEEK_DONATION_AMOUNT = "week_donation_amount",
|
|
192
192
|
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
193
193
|
MONTH_DONATION_AMOUNT = "month_donation_amount",
|
|
194
|
+
/** Session-wide gross money across every income source (tips, bits, subs, gift subs, super chats, super stickers, TikTok gifts, kicks, stars…), normalized to your default currency. Use as {{session_money_amount}}. */
|
|
195
|
+
SESSION_MONEY_AMOUNT = "session_money_amount",
|
|
196
|
+
/** Gross money across every income source for the current calendar week. Use as {{week_money_amount}}. */
|
|
197
|
+
WEEK_MONEY_AMOUNT = "week_money_amount",
|
|
198
|
+
/** Gross money across every income source for the current calendar month. Use as {{month_money_amount}}. */
|
|
199
|
+
MONTH_MONEY_AMOUNT = "month_money_amount",
|
|
200
|
+
/** All-time gross money across every income source. Use as {{total_money_amount}}. */
|
|
201
|
+
TOTAL_MONEY_AMOUNT = "total_money_amount",
|
|
194
202
|
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
195
203
|
WEEK_DONATION_COUNT = "week_donation_count",
|
|
196
204
|
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
@@ -823,8 +831,6 @@ export declare enum SystemVariables {
|
|
|
823
831
|
SPOTIFY_NEXT_URL = "spotify_next_url",
|
|
824
832
|
/** Next song Spotify URI. Use as {{spotify_next_uri}}. */
|
|
825
833
|
SPOTIFY_NEXT_URI = "spotify_next_uri",
|
|
826
|
-
/** Current queue (comma-separated). Use as {{spotify_queue}}. */
|
|
827
|
-
SPOTIFY_QUEUE = "spotify_queue",
|
|
828
834
|
/** Now playing song title. Use as {{youtubemusic_now_playing_song}}. */
|
|
829
835
|
YOUTUBEMUSIC_NOW_PLAYING_SONG = "youtubemusic_now_playing_song",
|
|
830
836
|
/** Now playing artwork URL. Use as {{youtubemusic_now_playing_image}}. */
|
package/dist/variables.types.js
CHANGED
|
@@ -189,6 +189,14 @@ var SystemVariables;
|
|
|
189
189
|
SystemVariables["WEEK_DONATION_AMOUNT"] = "week_donation_amount";
|
|
190
190
|
/** Donation sum for the current calendar month. Use as {{month_donation_amount}}. */
|
|
191
191
|
SystemVariables["MONTH_DONATION_AMOUNT"] = "month_donation_amount";
|
|
192
|
+
/** Session-wide gross money across every income source (tips, bits, subs, gift subs, super chats, super stickers, TikTok gifts, kicks, stars…), normalized to your default currency. Use as {{session_money_amount}}. */
|
|
193
|
+
SystemVariables["SESSION_MONEY_AMOUNT"] = "session_money_amount";
|
|
194
|
+
/** Gross money across every income source for the current calendar week. Use as {{week_money_amount}}. */
|
|
195
|
+
SystemVariables["WEEK_MONEY_AMOUNT"] = "week_money_amount";
|
|
196
|
+
/** Gross money across every income source for the current calendar month. Use as {{month_money_amount}}. */
|
|
197
|
+
SystemVariables["MONTH_MONEY_AMOUNT"] = "month_money_amount";
|
|
198
|
+
/** All-time gross money across every income source. Use as {{total_money_amount}}. */
|
|
199
|
+
SystemVariables["TOTAL_MONEY_AMOUNT"] = "total_money_amount";
|
|
192
200
|
/** Donation event count for the current calendar week. Use as {{week_donation_count}}. */
|
|
193
201
|
SystemVariables["WEEK_DONATION_COUNT"] = "week_donation_count";
|
|
194
202
|
/** Donation event count for the current calendar month. Use as {{month_donation_count}}. */
|
|
@@ -833,8 +841,6 @@ var SystemVariables;
|
|
|
833
841
|
SystemVariables["SPOTIFY_NEXT_URL"] = "spotify_next_url";
|
|
834
842
|
/** Next song Spotify URI. Use as {{spotify_next_uri}}. */
|
|
835
843
|
SystemVariables["SPOTIFY_NEXT_URI"] = "spotify_next_uri";
|
|
836
|
-
/** Current queue (comma-separated). Use as {{spotify_queue}}. */
|
|
837
|
-
SystemVariables["SPOTIFY_QUEUE"] = "spotify_queue";
|
|
838
844
|
// ─────────────────────────────── YouTube Music ────────────────────────────────
|
|
839
845
|
/** Now playing song title. Use as {{youtubemusic_now_playing_song}}. */
|
|
840
846
|
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_SONG"] = "youtubemusic_now_playing_song";
|
|
@@ -2573,7 +2579,7 @@ exports.AllVariables = {
|
|
|
2573
2579
|
'spotify_next_id',
|
|
2574
2580
|
'spotify_next_url',
|
|
2575
2581
|
'spotify_next_uri',
|
|
2576
|
-
'
|
|
2582
|
+
'spotify_now_playing_queue',
|
|
2577
2583
|
],
|
|
2578
2584
|
alerts: {
|
|
2579
2585
|
switchSong: ['name', 'uri', 'image'],
|