@lumiastream/lumia-types 3.6.4 → 3.6.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.js +332 -34
- package/dist/custom-overlays/custom-overlays.d.ts +28 -0
- package/dist/custom-overlays.d.ts +28 -0
- package/dist/esm/alert.types.js +334 -36
- package/dist/esm/index.js +2 -2
- package/dist/esm/tiktok_gifts.js +4 -0
- package/dist/esm/variables.types.js +28 -6
- package/dist/esm/youtube_superstickers.js +4 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -1
- package/dist/tiktok_gifts.d.ts +4 -0
- package/dist/tiktok_gifts.js +5 -1
- package/dist/variables.types.d.ts +28 -0
- package/dist/variables.types.js +28 -6
- package/dist/youtube_superstickers.d.ts +4 -0
- package/dist/youtube_superstickers.js +5 -1
- package/package.json +1 -1
|
@@ -797,6 +797,20 @@ export declare enum SystemVariables {
|
|
|
797
797
|
SPOTIFY_NOW_PLAYING_URI = "spotify_now_playing_uri",
|
|
798
798
|
/** Now playing track duration in seconds. Use as {{spotify_now_playing_duration}}. */
|
|
799
799
|
SPOTIFY_NOW_PLAYING_DURATION = "spotify_now_playing_duration",
|
|
800
|
+
/** Now playing track position in seconds at the last play/pause/seek anchor. Use as {{spotify_now_playing_progress}}. */
|
|
801
|
+
SPOTIFY_NOW_PLAYING_PROGRESS = "spotify_now_playing_progress",
|
|
802
|
+
/** Epoch ms when the progress anchor was captured (for client-side interpolation). Use as {{spotify_now_playing_progress_ts}}. */
|
|
803
|
+
SPOTIFY_NOW_PLAYING_PROGRESS_TS = "spotify_now_playing_progress_ts",
|
|
804
|
+
/** Whether playback is currently advancing (true/false). Use as {{spotify_now_playing_is_playing}}. */
|
|
805
|
+
SPOTIFY_NOW_PLAYING_IS_PLAYING = "spotify_now_playing_is_playing",
|
|
806
|
+
/** Now playing album name. Use as {{spotify_now_playing_album}}. */
|
|
807
|
+
SPOTIFY_NOW_PLAYING_ALBUM = "spotify_now_playing_album",
|
|
808
|
+
/** Now playing album release year. Use as {{spotify_now_playing_release_year}}. */
|
|
809
|
+
SPOTIFY_NOW_PLAYING_RELEASE_YEAR = "spotify_now_playing_release_year",
|
|
810
|
+
/** Now playing track popularity score 0-100 from Spotify. Use as {{spotify_now_playing_popularity}}. */
|
|
811
|
+
SPOTIFY_NOW_PLAYING_POPULARITY = "spotify_now_playing_popularity",
|
|
812
|
+
/** Upcoming queue as a JSON array of {name, artist, image, uri, url}. Use as {{spotify_now_playing_queue}}. */
|
|
813
|
+
SPOTIFY_NOW_PLAYING_QUEUE = "spotify_now_playing_queue",
|
|
800
814
|
/** Next song title. Use as {{spotify_next_song}}. */
|
|
801
815
|
SPOTIFY_NEXT_SONG = "spotify_next_song",
|
|
802
816
|
/** Next song artwork URL. Use as {{spotify_next_image}}. */
|
|
@@ -823,6 +837,14 @@ export declare enum SystemVariables {
|
|
|
823
837
|
YOUTUBEMUSIC_NOW_PLAYING_URL = "youtubemusic_now_playing_url",
|
|
824
838
|
/** Now playing track duration in seconds. Use as {{youtubemusic_now_playing_duration}}. */
|
|
825
839
|
YOUTUBEMUSIC_NOW_PLAYING_DURATION = "youtubemusic_now_playing_duration",
|
|
840
|
+
/** Now playing track position in seconds at the last play/pause/seek anchor. Use as {{youtubemusic_now_playing_progress}}. */
|
|
841
|
+
YOUTUBEMUSIC_NOW_PLAYING_PROGRESS = "youtubemusic_now_playing_progress",
|
|
842
|
+
/** Epoch ms when the progress anchor was captured (for client-side interpolation). Use as {{youtubemusic_now_playing_progress_ts}}. */
|
|
843
|
+
YOUTUBEMUSIC_NOW_PLAYING_PROGRESS_TS = "youtubemusic_now_playing_progress_ts",
|
|
844
|
+
/** Whether playback is currently advancing (true/false). Use as {{youtubemusic_now_playing_is_playing}}. */
|
|
845
|
+
YOUTUBEMUSIC_NOW_PLAYING_IS_PLAYING = "youtubemusic_now_playing_is_playing",
|
|
846
|
+
/** Upcoming queue as a JSON array of {name, artist, image, uri, url}. Use as {{youtubemusic_now_playing_queue}}. */
|
|
847
|
+
YOUTUBEMUSIC_NOW_PLAYING_QUEUE = "youtubemusic_now_playing_queue",
|
|
826
848
|
/** Next song title. Use as {{youtubemusic_next_song}}. */
|
|
827
849
|
YOUTUBEMUSIC_NEXT_SONG = "youtubemusic_next_song",
|
|
828
850
|
/** Next song artwork URL. Use as {{youtubemusic_next_image}}. */
|
|
@@ -879,6 +901,12 @@ export declare enum SystemVariables {
|
|
|
879
901
|
VLC_NOW_PLAYING_URL = "vlc_now_playing_url",
|
|
880
902
|
/** Now playing media duration in seconds. Use as {{vlc_now_playing_duration}}. */
|
|
881
903
|
VLC_NOW_PLAYING_DURATION = "vlc_now_playing_duration",
|
|
904
|
+
/** Now playing media position in seconds at the last play/pause/seek anchor. Use as {{vlc_now_playing_progress}}. */
|
|
905
|
+
VLC_NOW_PLAYING_PROGRESS = "vlc_now_playing_progress",
|
|
906
|
+
/** Epoch ms when the progress anchor was captured (for client-side interpolation). Use as {{vlc_now_playing_progress_ts}}. */
|
|
907
|
+
VLC_NOW_PLAYING_PROGRESS_TS = "vlc_now_playing_progress_ts",
|
|
908
|
+
/** Whether playback is currently advancing (true/false). Use as {{vlc_now_playing_is_playing}}. */
|
|
909
|
+
VLC_NOW_PLAYING_IS_PLAYING = "vlc_now_playing_is_playing",
|
|
882
910
|
/** Media URI. Use as {{vlc_now_playing_uri}}. */
|
|
883
911
|
VLC_NOW_PLAYING_URI = "vlc_now_playing_uri",
|
|
884
912
|
/** Voice changer on (true/false). Use as {{voicemod_voice_changer_on}}. */
|
package/dist/variables.types.js
CHANGED
|
@@ -807,8 +807,20 @@ var SystemVariables;
|
|
|
807
807
|
SystemVariables["SPOTIFY_NOW_PLAYING_URI"] = "spotify_now_playing_uri";
|
|
808
808
|
/** Now playing track duration in seconds. Use as {{spotify_now_playing_duration}}. */
|
|
809
809
|
SystemVariables["SPOTIFY_NOW_PLAYING_DURATION"] = "spotify_now_playing_duration";
|
|
810
|
-
|
|
811
|
-
|
|
810
|
+
/** Now playing track position in seconds at the last play/pause/seek anchor. Use as {{spotify_now_playing_progress}}. */
|
|
811
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_PROGRESS"] = "spotify_now_playing_progress";
|
|
812
|
+
/** Epoch ms when the progress anchor was captured (for client-side interpolation). Use as {{spotify_now_playing_progress_ts}}. */
|
|
813
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_PROGRESS_TS"] = "spotify_now_playing_progress_ts";
|
|
814
|
+
/** Whether playback is currently advancing (true/false). Use as {{spotify_now_playing_is_playing}}. */
|
|
815
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_IS_PLAYING"] = "spotify_now_playing_is_playing";
|
|
816
|
+
/** Now playing album name. Use as {{spotify_now_playing_album}}. */
|
|
817
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_ALBUM"] = "spotify_now_playing_album";
|
|
818
|
+
/** Now playing album release year. Use as {{spotify_now_playing_release_year}}. */
|
|
819
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_RELEASE_YEAR"] = "spotify_now_playing_release_year";
|
|
820
|
+
/** Now playing track popularity score 0-100 from Spotify. Use as {{spotify_now_playing_popularity}}. */
|
|
821
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_POPULARITY"] = "spotify_now_playing_popularity";
|
|
822
|
+
/** Upcoming queue as a JSON array of {name, artist, image, uri, url}. Use as {{spotify_now_playing_queue}}. */
|
|
823
|
+
SystemVariables["SPOTIFY_NOW_PLAYING_QUEUE"] = "spotify_now_playing_queue";
|
|
812
824
|
/** Next song title. Use as {{spotify_next_song}}. */
|
|
813
825
|
SystemVariables["SPOTIFY_NEXT_SONG"] = "spotify_next_song";
|
|
814
826
|
/** Next song artwork URL. Use as {{spotify_next_image}}. */
|
|
@@ -836,8 +848,14 @@ var SystemVariables;
|
|
|
836
848
|
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_URL"] = "youtubemusic_now_playing_url";
|
|
837
849
|
/** Now playing track duration in seconds. Use as {{youtubemusic_now_playing_duration}}. */
|
|
838
850
|
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_DURATION"] = "youtubemusic_now_playing_duration";
|
|
839
|
-
|
|
840
|
-
|
|
851
|
+
/** Now playing track position in seconds at the last play/pause/seek anchor. Use as {{youtubemusic_now_playing_progress}}. */
|
|
852
|
+
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_PROGRESS"] = "youtubemusic_now_playing_progress";
|
|
853
|
+
/** Epoch ms when the progress anchor was captured (for client-side interpolation). Use as {{youtubemusic_now_playing_progress_ts}}. */
|
|
854
|
+
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_PROGRESS_TS"] = "youtubemusic_now_playing_progress_ts";
|
|
855
|
+
/** Whether playback is currently advancing (true/false). Use as {{youtubemusic_now_playing_is_playing}}. */
|
|
856
|
+
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_IS_PLAYING"] = "youtubemusic_now_playing_is_playing";
|
|
857
|
+
/** Upcoming queue as a JSON array of {name, artist, image, uri, url}. Use as {{youtubemusic_now_playing_queue}}. */
|
|
858
|
+
SystemVariables["YOUTUBEMUSIC_NOW_PLAYING_QUEUE"] = "youtubemusic_now_playing_queue";
|
|
841
859
|
/** Next song title. Use as {{youtubemusic_next_song}}. */
|
|
842
860
|
SystemVariables["YOUTUBEMUSIC_NEXT_SONG"] = "youtubemusic_next_song";
|
|
843
861
|
/** Next song artwork URL. Use as {{youtubemusic_next_image}}. */
|
|
@@ -896,8 +914,12 @@ var SystemVariables;
|
|
|
896
914
|
SystemVariables["VLC_NOW_PLAYING_URL"] = "vlc_now_playing_url";
|
|
897
915
|
/** Now playing media duration in seconds. Use as {{vlc_now_playing_duration}}. */
|
|
898
916
|
SystemVariables["VLC_NOW_PLAYING_DURATION"] = "vlc_now_playing_duration";
|
|
899
|
-
|
|
900
|
-
|
|
917
|
+
/** Now playing media position in seconds at the last play/pause/seek anchor. Use as {{vlc_now_playing_progress}}. */
|
|
918
|
+
SystemVariables["VLC_NOW_PLAYING_PROGRESS"] = "vlc_now_playing_progress";
|
|
919
|
+
/** Epoch ms when the progress anchor was captured (for client-side interpolation). Use as {{vlc_now_playing_progress_ts}}. */
|
|
920
|
+
SystemVariables["VLC_NOW_PLAYING_PROGRESS_TS"] = "vlc_now_playing_progress_ts";
|
|
921
|
+
/** Whether playback is currently advancing (true/false). Use as {{vlc_now_playing_is_playing}}. */
|
|
922
|
+
SystemVariables["VLC_NOW_PLAYING_IS_PLAYING"] = "vlc_now_playing_is_playing";
|
|
901
923
|
/** Media URI. Use as {{vlc_now_playing_uri}}. */
|
|
902
924
|
SystemVariables["VLC_NOW_PLAYING_URI"] = "vlc_now_playing_uri";
|
|
903
925
|
// ────────────────────────────────── Voicemod ──────────────────────────────────
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.YoutubeSuperstickersData = void 0;
|
|
3
|
+
exports.YoutubeSuperstickerImageSelections = exports.YoutubeSuperstickersData = void 0;
|
|
4
4
|
exports.YoutubeSuperstickersData = [
|
|
5
5
|
{
|
|
6
6
|
value: 'pearfect_hey_you_ja_v2',
|
|
@@ -1767,3 +1767,7 @@ exports.YoutubeSuperstickersData = [
|
|
|
1767
1767
|
searchText: "masher_super_effective Video game controller punches and kicks in between the words 'Super Effective' 50.00 USD",
|
|
1768
1768
|
},
|
|
1769
1769
|
];
|
|
1770
|
+
exports.YoutubeSuperstickerImageSelections = exports.YoutubeSuperstickersData.map((sticker) => ({
|
|
1771
|
+
label: `${sticker.label} (${sticker.helperText})`,
|
|
1772
|
+
value: sticker.imageUrl,
|
|
1773
|
+
}));
|