mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 08:09:40 +02:00
refactor(packages): consolidate 2 subscription packages into @manacore/subscriptions
Merged shared-subscription-types + shared-subscription-ui into @manacore/subscriptions. Updated imports in 15 web apps. Package count: 49 → 47 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
d70ab97a66
commit
1f3208384b
38 changed files with 115 additions and 211 deletions
195
packages/subscriptions/src/data/subscriptionData.json
Normal file
195
packages/subscriptions/src/data/subscriptionData.json
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
{
|
||||
"subscriptions": [
|
||||
{
|
||||
"id": "free",
|
||||
"name": "Mana Quelle Free",
|
||||
"nameEn": "Mana Source Free",
|
||||
"nameIt": "Mana Fonte Free",
|
||||
"price": 0,
|
||||
"priceUnit": "",
|
||||
"monthlyMana": 50,
|
||||
"canGiftMana": false,
|
||||
"popular": false,
|
||||
"billingCycle": "monthly",
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_S_v1",
|
||||
"name": "Mana Quelle S",
|
||||
"nameEn": "Mana Source S",
|
||||
"nameIt": "Mana Fonte S",
|
||||
"price": 4.99,
|
||||
"priceUnit": "/ Monat",
|
||||
"monthlyMana": 500,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "monthly",
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_S_Yearly_v1",
|
||||
"name": "Mana Quelle S",
|
||||
"nameEn": "Mana Source S",
|
||||
"nameIt": "Mana Fonte S",
|
||||
"price": 47.9,
|
||||
"priceUnit": "/ Jahr",
|
||||
"priceBreakdown": "(entspricht 3,99€ / Monat, 20% Rabatt)",
|
||||
"monthlyMana": 500,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "yearly",
|
||||
"monthlyEquivalent": 3.99,
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_M_v1",
|
||||
"name": "Mana Quelle M",
|
||||
"nameEn": "Mana Source M",
|
||||
"nameIt": "Mana Fonte M",
|
||||
"price": 9.99,
|
||||
"priceUnit": "/ Monat",
|
||||
"monthlyMana": 1000,
|
||||
"canGiftMana": true,
|
||||
"popular": true,
|
||||
"billingCycle": "monthly",
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_M_Yearly_v1",
|
||||
"name": "Mana Quelle M",
|
||||
"nameEn": "Mana Source M",
|
||||
"nameIt": "Mana Fonte M",
|
||||
"price": 95.9,
|
||||
"priceUnit": "/ Jahr",
|
||||
"priceBreakdown": "(entspricht 7,99€ / Monat, 20% Rabatt)",
|
||||
"monthlyMana": 1000,
|
||||
"canGiftMana": true,
|
||||
"popular": true,
|
||||
"billingCycle": "yearly",
|
||||
"monthlyEquivalent": 7.99,
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_L_v1",
|
||||
"name": "Mana Quelle L",
|
||||
"nameEn": "Mana Source L",
|
||||
"nameIt": "Mana Fonte L",
|
||||
"price": 19.99,
|
||||
"priceUnit": "/ Monat",
|
||||
"monthlyMana": 2000,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "monthly",
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_L_Yearly_v1",
|
||||
"name": "Mana Quelle L",
|
||||
"nameEn": "Mana Source L",
|
||||
"nameIt": "Mana Fonte L",
|
||||
"price": 191.9,
|
||||
"priceUnit": "/ Jahr",
|
||||
"priceBreakdown": "(entspricht 15,99€ / Monat, 20% Rabatt)",
|
||||
"monthlyMana": 2000,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "yearly",
|
||||
"monthlyEquivalent": 15.99,
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_XL_v1",
|
||||
"name": "Mana Quelle XL",
|
||||
"nameEn": "Mana Source XL",
|
||||
"nameIt": "Mana Fonte XL",
|
||||
"price": 39.99,
|
||||
"priceUnit": "/ Monat",
|
||||
"monthlyMana": 4000,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "monthly",
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_XL_Yearly_v1",
|
||||
"name": "Mana Quelle XL",
|
||||
"nameEn": "Mana Source XL",
|
||||
"nameIt": "Mana Fonte XL",
|
||||
"price": 383.9,
|
||||
"priceUnit": "/ Jahr",
|
||||
"priceBreakdown": "(entspricht 31,99€ / Monat, 20% Rabatt)",
|
||||
"monthlyMana": 4000,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "yearly",
|
||||
"monthlyEquivalent": 31.99,
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_XXL_v1",
|
||||
"name": "Mana Quelle XXL",
|
||||
"nameEn": "Mana Source XXL",
|
||||
"nameIt": "Mana Fonte XXL",
|
||||
"price": 99.99,
|
||||
"priceUnit": "/ Monat",
|
||||
"monthlyMana": 10000,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "monthly",
|
||||
"available": true
|
||||
},
|
||||
{
|
||||
"id": "Mana_Quelle_XXL_Yearly_v1",
|
||||
"name": "Mana Quelle XXL",
|
||||
"nameEn": "Mana Source XXL",
|
||||
"nameIt": "Mana Fonte XXL",
|
||||
"price": 959.9,
|
||||
"priceUnit": "/ Jahr",
|
||||
"priceBreakdown": "(entspricht 79,99€ / Monat, 20% Rabatt)",
|
||||
"monthlyMana": 10000,
|
||||
"canGiftMana": true,
|
||||
"popular": false,
|
||||
"billingCycle": "yearly",
|
||||
"monthlyEquivalent": 79.99,
|
||||
"available": true
|
||||
}
|
||||
],
|
||||
"packages": [
|
||||
{
|
||||
"id": "Mana_Potion_Small_v1",
|
||||
"name": "Kleiner Mana Trank",
|
||||
"nameEn": "Small Mana Potion",
|
||||
"nameIt": "Piccola Pozione di Mana",
|
||||
"manaAmount": 350,
|
||||
"price": 4.9,
|
||||
"popular": false
|
||||
},
|
||||
{
|
||||
"id": "Mana_Potion_Medium_v1",
|
||||
"name": "Mittlerer Mana Trank",
|
||||
"nameEn": "Medium Mana Potion",
|
||||
"nameIt": "Media Pozione di Mana",
|
||||
"manaAmount": 700,
|
||||
"price": 9.8,
|
||||
"popular": false
|
||||
},
|
||||
{
|
||||
"id": "Mana_Potion_Large_v1",
|
||||
"name": "Großer Mana Trank",
|
||||
"nameEn": "Large Mana Potion",
|
||||
"nameIt": "Grande Pozione di Mana",
|
||||
"manaAmount": 1400,
|
||||
"price": 19.6,
|
||||
"popular": false
|
||||
},
|
||||
{
|
||||
"id": "Mana_Potion_Giant_v2",
|
||||
"name": "Riesiger Mana Trank",
|
||||
"nameEn": "Giant Mana Potion",
|
||||
"nameIt": "Pozione di Mana Gigante",
|
||||
"manaAmount": 2800,
|
||||
"price": 39.2,
|
||||
"popular": false
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue