@lumiastream/lumia-types 2.7.8 → 2.7.9
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' | 'totalMoneySpent' | 'totalAlerts' | 'uniqueAlerts' | 'totalCommandsAndAlerts' | 'daysActive' | 'allRounder';
|
|
1
|
+
export type ViewerProfileAchievementMetric = 'totalCommands' | 'uniqueCommands' | 'totalChatbotCommands' | '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;
|
|
@@ -305,6 +305,34 @@ exports.VIEWER_PROFILE_ACHIEVEMENTS = [
|
|
|
305
305
|
icon: 'MonetizationOn',
|
|
306
306
|
color: 'gold',
|
|
307
307
|
},
|
|
308
|
+
// ───────── Gift Subscriptions ─────────
|
|
309
|
+
{
|
|
310
|
+
id: 'gift-spark',
|
|
311
|
+
label: 'Gift Spark',
|
|
312
|
+
description: 'Gifted 5 subscriptions.',
|
|
313
|
+
metric: 'totalGiftSubscriptions',
|
|
314
|
+
threshold: 5,
|
|
315
|
+
icon: 'CardGiftcard',
|
|
316
|
+
color: 'rose',
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
id: 'gift-burst',
|
|
320
|
+
label: 'Gift Burst',
|
|
321
|
+
description: 'Gifted 25 subscriptions.',
|
|
322
|
+
metric: 'totalGiftSubscriptions',
|
|
323
|
+
threshold: 25,
|
|
324
|
+
icon: 'Redeem',
|
|
325
|
+
color: 'rose',
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
id: 'gift-legend',
|
|
329
|
+
label: 'Gift Legend',
|
|
330
|
+
description: 'Gifted 100 subscriptions.',
|
|
331
|
+
metric: 'totalGiftSubscriptions',
|
|
332
|
+
threshold: 100,
|
|
333
|
+
icon: 'WorkspacePremium',
|
|
334
|
+
color: 'gold',
|
|
335
|
+
},
|
|
308
336
|
// ───────── Alerts ─────────
|
|
309
337
|
{
|
|
310
338
|
id: 'alert-storm',
|