@oxyfoo/whymeet-types 0.0.10 → 0.0.11

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.
@@ -14,7 +14,7 @@ export interface SubIntention {
14
14
  tags: string[];
15
15
  }
16
16
  export declare const SUB_INTENTIONS: Record<IntentionKey, SubIntention[]>;
17
- export declare const INTEREST_CATEGORY_KEYS: readonly ["sports", "music", "nightlife", "gaming", "food", "culture", "outdoors", "wellness", "travel", "creative", "learning"];
17
+ export declare const INTEREST_CATEGORY_KEYS: readonly ["sports", "music", "nightlife", "gaming", "food", "culture", "cinema", "reading", "outdoors", "wellness", "travel", "creative", "learning", "tech", "cooking", "craft", "pro", "coaching"];
18
18
  export type InterestCategoryKey = (typeof INTEREST_CATEGORY_KEYS)[number];
19
19
  export interface InterestCategory {
20
20
  key: InterestCategoryKey;
@@ -219,11 +219,18 @@ export const INTEREST_CATEGORY_KEYS = [
219
219
  'gaming',
220
220
  'food',
221
221
  'culture',
222
+ 'cinema',
223
+ 'reading',
222
224
  'outdoors',
223
225
  'wellness',
224
226
  'travel',
225
227
  'creative',
226
- 'learning'
228
+ 'learning',
229
+ 'tech',
230
+ 'cooking',
231
+ 'craft',
232
+ 'pro',
233
+ 'coaching'
227
234
  ];
228
235
  export const INTEREST_CATEGORIES = [
229
236
  { key: 'sports', label: 'Sports', emoji: '⚽', description: 'Football, running, fitness…' },
@@ -231,10 +238,17 @@ export const INTEREST_CATEGORIES = [
231
238
  { key: 'nightlife', label: 'Sorties', emoji: '🌙', description: 'Bars, clubs, soirées…' },
232
239
  { key: 'gaming', label: 'Gaming', emoji: '🎮', description: 'Jeux vidéo, board games…' },
233
240
  { key: 'food', label: 'Food', emoji: '🍕', description: 'Restaurants, cuisine, food trips…' },
234
- { key: 'culture', label: 'Culture', emoji: '🎭', description: 'Musées, cinéma, théâtre…' },
241
+ { key: 'culture', label: 'Culture', emoji: '🎭', description: 'Musées, expos, théâtre…' },
242
+ { key: 'cinema', label: 'Ciné & séries', emoji: '🎬', description: 'Films, séries, documentaires…' },
243
+ { key: 'reading', label: 'Lecture', emoji: '📚', description: 'Romans, BD, manga, essais…' },
235
244
  { key: 'outdoors', label: 'Plein air', emoji: '🏔️', description: 'Rando, escalade, nature…' },
236
245
  { key: 'wellness', label: 'Bien-être', emoji: '🧘', description: 'Yoga, méditation, spa…' },
237
246
  { key: 'travel', label: 'Voyages', emoji: '✈️', description: 'Découvrir de nouveaux endroits' },
238
247
  { key: 'creative', label: 'Créatif', emoji: '🎨', description: 'Art, photo, écriture, DIY…' },
239
- { key: 'learning', label: 'Apprentissage', emoji: '📚', description: 'Langues, tech, sciences…' }
248
+ { key: 'learning', label: 'Apprentissage', emoji: '📖', description: 'Langues, sciences, histoire…' },
249
+ { key: 'tech', label: 'Tech', emoji: '💻', description: 'Code, IA, design, data…' },
250
+ { key: 'cooking', label: 'Cuisine', emoji: '👨‍🍳', description: 'Pâtisserie, gastronomie, cocktails…' },
251
+ { key: 'craft', label: 'Artisanat', emoji: '🔨', description: 'Bricolage, couture, menuiserie…' },
252
+ { key: 'pro', label: 'Pro', emoji: '💼', description: 'Domaines professionnels et études…' },
253
+ { key: 'coaching', label: 'Coaching', emoji: '🎓', description: 'Transmettre, coacher, enseigner…' }
240
254
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyfoo/whymeet-types",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "WhyMeet Types - Shared TypeScript types for the WhyMeet project.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",