@lumiastream/lumia-types 3.0.3 → 3.0.4
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type ViewerProfileAchievementMetric = 'totalCommands' | 'uniqueCommands' | 'totalChatbotCommands' | 'totalPointsCommands' | 'totalPointsSpent' | 'totalTwitchExtensionsCommands' | 'totalBitsSpent' | 'totalKicksSpent' | 'totalGiftSubscriptions' | 'totalMoneySpent' | 'totalAlerts' | 'uniqueAlerts' | 'totalCommandsAndAlerts' | 'daysActive' | 'allRounder';
|
|
1
|
+
export type ViewerProfileAchievementMetric = 'totalCommands' | 'uniqueCommands' | 'totalChatbotCommands' | 'totalFirstChatters' | 'totalPointsCommands' | 'totalPointsSpent' | 'totalTwitchExtensionsCommands' | 'totalBitsSpent' | 'totalKicksSpent' | 'totalGiftSubscriptions' | 'totalMoneySpent' | 'totalAlerts' | 'uniqueAlerts' | 'totalCommandsAndAlerts' | 'daysActive' | 'allRounder';
|
|
2
2
|
export type ViewerProfileAchievementColor = 'gold' | 'amber' | 'emerald' | 'sky' | 'rose' | 'orange' | 'teal' | 'cyan' | 'violet' | 'slate';
|
|
3
3
|
export type ViewerProfileAchievementDefinition = {
|
|
4
4
|
id: string;
|
|
@@ -85,6 +85,43 @@ exports.VIEWER_PROFILE_ACHIEVEMENTS = [
|
|
|
85
85
|
icon: 'Stars',
|
|
86
86
|
color: 'orange',
|
|
87
87
|
},
|
|
88
|
+
// ───────── First Chatter ─────────
|
|
89
|
+
{
|
|
90
|
+
id: 'first-chatter-debut',
|
|
91
|
+
label: 'First In',
|
|
92
|
+
description: 'Claimed first chatter 1 time.',
|
|
93
|
+
metric: 'totalFirstChatters',
|
|
94
|
+
threshold: 1,
|
|
95
|
+
icon: 'WavingHand',
|
|
96
|
+
color: 'sky',
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
id: 'first-chatter-streak',
|
|
100
|
+
label: 'Early Bird',
|
|
101
|
+
description: 'Claimed first chatter 5 times.',
|
|
102
|
+
metric: 'totalFirstChatters',
|
|
103
|
+
threshold: 5,
|
|
104
|
+
icon: 'Schedule',
|
|
105
|
+
color: 'teal',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
id: 'first-chatter-regular',
|
|
109
|
+
label: 'Front Row',
|
|
110
|
+
description: 'Claimed first chatter 25 times.',
|
|
111
|
+
metric: 'totalFirstChatters',
|
|
112
|
+
threshold: 25,
|
|
113
|
+
icon: 'LooksOne',
|
|
114
|
+
color: 'violet',
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
id: 'first-chatter-legend',
|
|
118
|
+
label: 'Opening Act',
|
|
119
|
+
description: 'Claimed first chatter 100 times.',
|
|
120
|
+
metric: 'totalFirstChatters',
|
|
121
|
+
threshold: 100,
|
|
122
|
+
icon: 'EmojiEvents',
|
|
123
|
+
color: 'gold',
|
|
124
|
+
},
|
|
88
125
|
// ───────── Channel Points ─────────
|
|
89
126
|
{
|
|
90
127
|
id: 'twitch-points-spark',
|