@lumiastream/lumia-types 3.0.3 → 3.0.5
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 10 times.',
|
|
111
|
+
// metric: 'totalFirstChatters',
|
|
112
|
+
// threshold: 10,
|
|
113
|
+
// icon: 'LooksOne',
|
|
114
|
+
// color: 'violet',
|
|
115
|
+
// },
|
|
116
|
+
// {
|
|
117
|
+
// id: 'first-chatter-legend',
|
|
118
|
+
// label: 'Opening Act',
|
|
119
|
+
// description: 'Claimed first chatter 20 times.',
|
|
120
|
+
// metric: 'totalFirstChatters',
|
|
121
|
+
// threshold: 20,
|
|
122
|
+
// icon: 'EmojiEvents',
|
|
123
|
+
// color: 'gold',
|
|
124
|
+
// },
|
|
88
125
|
// ───────── Channel Points ─────────
|
|
89
126
|
{
|
|
90
127
|
id: 'twitch-points-spark',
|
|
@@ -119,9 +156,9 @@ exports.VIEWER_PROFILE_ACHIEVEMENTS = [
|
|
|
119
156
|
{
|
|
120
157
|
id: 'twitch-points-beacon',
|
|
121
158
|
label: 'Points Beacon',
|
|
122
|
-
description: 'Spent
|
|
159
|
+
description: 'Spent 10,000 channel points.',
|
|
123
160
|
metric: 'totalPointsSpent',
|
|
124
|
-
threshold:
|
|
161
|
+
threshold: 10000,
|
|
125
162
|
connectionKeys: ['twitch'],
|
|
126
163
|
icon: 'TrendingUp',
|
|
127
164
|
color: 'emerald',
|
|
@@ -129,9 +166,9 @@ exports.VIEWER_PROFILE_ACHIEVEMENTS = [
|
|
|
129
166
|
{
|
|
130
167
|
id: 'twitch-points-tycoon',
|
|
131
168
|
label: 'Points Tycoon',
|
|
132
|
-
description: 'Spent
|
|
169
|
+
description: 'Spent 20,000 channel points.',
|
|
133
170
|
metric: 'totalPointsSpent',
|
|
134
|
-
threshold:
|
|
171
|
+
threshold: 20000,
|
|
135
172
|
connectionKeys: ['twitch'],
|
|
136
173
|
icon: 'WorkspacePremium',
|
|
137
174
|
color: 'gold',
|