@umituz/react-native-ai-generation-content 1.37.6 → 1.37.8

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.
Files changed (46) hide show
  1. package/package.json +1 -1
  2. package/src/domains/scenarios/domain/Scenario.ts +8 -574
  3. package/src/domains/scenarios/domain/category.types.ts +87 -0
  4. package/src/domains/scenarios/domain/scenario-category.enum.ts +78 -0
  5. package/src/domains/scenarios/domain/scenario-ids/activities-sports.ids.ts +34 -0
  6. package/src/domains/scenarios/domain/scenario-ids/ai-features.ids.ts +21 -0
  7. package/src/domains/scenarios/domain/scenario-ids/celebrations-social.ids.ts +23 -0
  8. package/src/domains/scenarios/domain/scenario-ids/cinematic-artistic.ids.ts +18 -0
  9. package/src/domains/scenarios/domain/scenario-ids/culture-nature.ids.ts +33 -0
  10. package/src/domains/scenarios/domain/scenario-ids/daily-home.ids.ts +34 -0
  11. package/src/domains/scenarios/domain/scenario-ids/exotic-worlds.ids.ts +38 -0
  12. package/src/domains/scenarios/domain/scenario-ids/fantasy-scifi.ids.ts +47 -0
  13. package/src/domains/scenarios/domain/scenario-ids/historical-fashion.ids.ts +20 -0
  14. package/src/domains/scenarios/domain/scenario-ids/hobbies-career.ids.ts +19 -0
  15. package/src/domains/scenarios/domain/scenario-ids/index.ts +42 -0
  16. package/src/domains/scenarios/domain/scenario-ids/intimate-romantic.ids.ts +43 -0
  17. package/src/domains/scenarios/domain/scenario-ids/lifestyle.ids.ts +29 -0
  18. package/src/domains/scenarios/domain/scenario-ids/movie-legends.ids.ts +35 -0
  19. package/src/domains/scenarios/domain/scenario-ids/thematic-worlds.ids.ts +46 -0
  20. package/src/domains/scenarios/domain/scenario-ids/time-family.ids.ts +14 -0
  21. package/src/domains/scenarios/domain/scenario-ids/wedding.ids.ts +20 -0
  22. package/src/domains/scenarios/domain/scenario.types.ts +2 -177
  23. package/src/domains/scenarios/index.ts +8 -5
  24. package/src/domains/scenarios/infrastructure/ScenariosData.ts +15 -205
  25. package/src/domains/scenarios/infrastructure/data/movie-legends/action-fantasy.ts +58 -0
  26. package/src/domains/scenarios/infrastructure/data/movie-legends/index.ts +16 -0
  27. package/src/domains/scenarios/infrastructure/data/movie-legends/musical-dance.ts +58 -0
  28. package/src/domains/scenarios/infrastructure/data/movie-legends/period-drama.ts +58 -0
  29. package/src/domains/scenarios/infrastructure/data/movie-legends/romantic.ts +90 -0
  30. package/src/domains/scenarios/infrastructure/data/scenario-groups/activities.ts +52 -0
  31. package/src/domains/scenarios/infrastructure/data/scenario-groups/adventure-fantasy.ts +46 -0
  32. package/src/domains/scenarios/infrastructure/data/scenario-groups/arts-entertainment.ts +34 -0
  33. package/src/domains/scenarios/infrastructure/data/scenario-groups/index.ts +10 -0
  34. package/src/domains/scenarios/infrastructure/data/scenario-groups/lifestyle.ts +42 -0
  35. package/src/domains/scenarios/infrastructure/data/scenario-groups/relationships.ts +30 -0
  36. package/src/domains/scenarios/infrastructure/data/wedding/celebrations.ts +74 -0
  37. package/src/domains/scenarios/infrastructure/data/wedding/ceremonies.ts +74 -0
  38. package/src/domains/scenarios/infrastructure/data/wedding/index.ts +14 -0
  39. package/src/domains/scenarios/infrastructure/data/wedding/preparation.ts +106 -0
  40. package/src/domains/scenarios/presentation/containers/CategoryNavigationContainer.tsx +4 -7
  41. package/src/domains/scenarios/presentation/hooks/useHierarchicalScenarios.ts +4 -3
  42. package/src/domains/scenarios/presentation/screens/HierarchicalScenarioListScreen.tsx +3 -2
  43. package/src/domains/scenarios/presentation/screens/MainCategoryScreen.tsx +3 -3
  44. package/src/domains/scenarios/presentation/screens/SubCategoryScreen.tsx +3 -3
  45. package/src/domains/scenarios/infrastructure/data/movie-legends-scenarios.ts +0 -229
  46. package/src/domains/scenarios/infrastructure/data/wedding-scenarios.ts +0 -234
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.37.6",
3
+ "version": "1.37.8",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -1,580 +1,16 @@
1
- export enum ScenarioCategory {
2
- // Time & Future
3
- TIME_TRAVEL = "time_travel",
4
-
5
- // Relationships
6
- FAMILY = "family",
7
- INTIMATE = "intimate",
8
- WEDDING = "wedding",
9
-
10
- // Travel & Places
11
- TRAVEL = "travel",
12
- CULTURAL = "cultural",
13
-
14
- // History & Eras
15
- HISTORICAL = "historical",
16
-
17
- // Fantasy & Fiction
18
- FANTASY = "fantasy",
19
- SCI_FI = "sci_fi",
20
-
21
- // Arts & Entertainment
22
- ARTISTIC = "artistic",
23
- CINEMATIC = "cinematic",
24
- PERFORMANCE = "performance",
25
- CREATIVE = "creative",
26
-
27
- // Fashion & Style
28
- FASHION = "fashion",
29
- FESTIVAL = "festival",
30
-
31
- // Activities & Hobbies
32
- HOBBIES = "hobbies",
33
- SPORTS = "sports",
34
- EXTREME = "extreme",
35
- GAMING = "gaming",
36
-
37
- // Professional
38
- CAREER = "career",
39
- EDUCATION = "education",
40
-
41
- // Lifestyle
42
- LIFESTYLE = "lifestyle",
43
- LUXURY = "luxury",
44
- CULINARY = "culinary",
45
- SEASONAL = "seasonal",
46
- ANIMALS = "animals",
47
-
48
- // New Categories
49
- CELEBRATIONS = "celebrations",
50
- HOME_LIFE = "home_life",
51
- WELLNESS = "wellness",
52
- BUCKET_LIST = "bucket_list",
53
- SOCIAL_MEDIA = "social_media",
54
-
55
- // Even More Categories
56
- MYTHOLOGY = "mythology",
57
- FUTURE_TECH = "future_tech",
58
- ACTION_STEALTH = "action_stealth",
59
- ECOLOGY = "ecology",
60
- NOSTALGIA = "nostalgia",
61
-
62
- // The Grand Expansion
63
- MYSTICAL = "mystical",
64
- SUPERHEROES = "superheroes",
65
- VILLAINOUS = "villainous",
66
- ELITE = "elite",
67
- GOTHIC = "gothic",
68
-
69
- // Relationship Deepening
70
- CONNECTION = "connection",
71
- DAILY_ESSENCE = "daily_essence",
72
-
73
- // Iconic Media
74
- MOVIE_LEGENDS = "movie_legends",
75
- ICONIC_MOMENTS = "iconic_moments",
76
-
77
- // Arts & Performance
78
- FOLKLORE = "folklore",
79
- MUSIC = "music",
80
-
81
- // Speculative & Adventure
82
- STEAMPUNK = "steampunk",
83
- ADVENTURE = "adventure",
84
-
85
- // Pure Emotion
86
- AFFECTION = "affection",
87
- ROMANTIC_KISSES = "romantic_kisses",
88
-
89
- // High-Tension Romance
90
- SULTRY = "sultry",
91
- STOLEN_MOMENTS = "stolen_moments",
92
- URBAN_NIGHTS = "urban_nights",
93
- VINTAGE_SUMMER = "vintage_summer",
94
- ART_STUDIO = "art_studio",
95
-
96
- // Final Flourish
97
- DARK_ACADEMIA = "dark_academia",
98
- CASINO = "casino",
99
- POST_APOCALYPTIC = "post_apocalyptic",
100
- RETRO_ARCADE = "retro_arcade",
101
- COZY_PLUSH = "cozy_plush",
102
-
103
- // Final, Final Flourish
104
- PIRATE_ERA = "pirate_era",
105
- SAMURAI = "samurai",
106
- SURREAL_DREAMS = "surreal_dreams",
107
- MAGICAL_REALISM = "magical_realism",
108
- VINTAGE_CIRCUS = "vintage_circus",
109
-
110
- // The Infinite Expansion
111
- ELEMENTAL = "elemental",
112
- SPEED_DEMONS = "speed_demons",
113
- UNDERWATER = "underwater",
114
- ARABIAN_NIGHTS = "arabian_nights",
115
- PREHISTORIC = "prehistoric",
116
- }
117
-
118
- export enum ScenarioId {
119
- // Time Travel
120
- FIVE_YEARS = "5_years",
121
- TEN_YEARS = "10_years",
122
-
123
- // Family
124
- OLD_AGE = "old_age",
125
- FUTURE_CHILD = "future_child",
126
- PARENTHOOD = "parenthood",
127
- ANNIVERSARY = "anniversary",
128
-
129
- // Wedding Journey
130
- PROPOSAL = "proposal",
131
- ENGAGEMENT_PARTY = "engagement_party",
132
- DRESS_SHOPPING = "dress_shopping",
133
- ENGAGEMENT_SHOOT = "engagement_shoot",
134
- BRIDAL_SHOWER = "bridal_shower",
135
- BACHELOR_PARTY = "bachelor_party",
136
- CHURCH_WEDDING = "church_wedding",
137
- GARDEN_WEDDING = "garden_wedding",
138
- BEACH_WEDDING = "beach_wedding",
139
- CASTLE_WEDDING = "castle_wedding",
140
- RECEPTION_PARTY = "reception_party",
141
- FIRST_DANCE = "first_dance",
142
- CAKE_CUTTING = "cake_cutting",
143
- HONEYMOON = "honeymoon",
144
-
145
- // Lifestyle
146
- VACATION = "vacation",
147
- SUCCESS = "success",
148
- ADVENTURE = "adventure",
149
- COTTAGECORE = "cottagecore",
150
- RED_CARPET = "red_carpet",
151
- FITNESS = "fitness",
152
- COOKING = "cooking",
153
-
154
- // Historical
155
- ROARING_20S = "roaring_20s",
156
- VICTORIAN = "victorian",
157
- WILD_WEST = "wild_west",
158
- VIKING = "viking",
159
-
160
- // Festival
161
- CARNIVAL = "carnival",
162
- MUSIC_FESTIVAL = "music_festival",
163
- HALLOWEEN = "halloween",
164
-
165
- // Cinematic
166
- SECRET_AGENT = "secret_agent",
167
- FILM_NOIR = "film_noir",
168
- SPACE_OPERA = "space_opera",
169
- WES_ANDERSON = "wes_anderson",
170
-
171
- // Artistic
172
- OIL_PAINTING = "oil_painting",
173
- POP_ART = "pop_art",
174
- MARBLE_STATUE = "marble_statue",
175
- ANIME_DREAM = "anime_dream",
176
-
177
- // Hobbies
178
- POTTERY = "pottery",
179
- BALLROOM_DANCE = "ballroom_dance",
180
- GAMER_DUO = "gamer_duo",
181
- MUSICIANS = "musicians",
182
-
183
- // Fashion
184
- DISCO_70S = "disco_70s",
185
- STEAMPUNK = "steampunk",
186
- HIGH_FASHION = "high_fashion",
187
- GRUNGE_90S = "grunge_90s",
188
-
189
- // Fantasy
190
- SURVIVORS = "survivors",
191
- CYBERPUNK = "cyberpunk",
192
- ROYALTY = "royalty",
193
- SUPERHERO = "superhero",
194
- SPACE = "space",
195
- MEDIEVAL = "medieval",
196
-
197
- // Career
198
- ENTREPRENEURS = "entrepreneurs",
199
- ARTISTS = "artists",
200
- SCIENTISTS = "scientists",
201
-
202
- // Travel
203
- PARIS = "paris",
204
- TOKYO = "tokyo",
205
- SANTORINI = "santorini",
206
- SAFARI = "safari",
207
- BALI = "bali",
208
- NEW_YORK = "new_york",
209
- VENICE = "venice",
210
- AURORA = "aurora",
211
-
212
- // Other
213
- WINTER_CABIN = "winter_cabin",
214
- VINTAGE_90S = "vintage_90s",
215
- ANIME_HIGHSCHOOL = "anime_highschool",
216
- RETRO_VAPORWAVE = "retro_vaporwave",
217
- MARS_2050 = "mars_2050",
218
-
219
- // Intimate & Romantic
220
- LUXURY_SPA = "luxury_spa",
221
- BUBBLE_BATH = "bubble_bath",
222
- SUNRISE_BED = "sunrise_bed",
223
- WINE_TASTING = "wine_tasting",
224
- ROSE_PETALS = "rose_petals",
225
- PRIVATE_BEACH = "private_beach",
226
- MASQUERADE = "masquerade",
227
- MOONLIGHT_BALCONY = "moonlight_balcony",
228
-
229
- // Sports & Active
230
- SKI_RESORT = "ski_resort",
231
-
232
- // Extreme Adventures
233
- SKYDIVING = "skydiving",
234
-
235
- // Performance & Stage
236
- CONCERT_STARS = "concert_stars",
237
-
238
- // Luxury & Wealth
239
- YACHT_LIFE = "yacht_life",
240
-
241
- // Seasonal & Nature
242
- CHERRY_BLOSSOM = "cherry_blossom",
243
-
244
- // Education & Career
245
- GRADUATION = "graduation",
246
-
247
- // Gaming & Tech
248
- ESPORTS = "esports",
249
-
250
- // Food & Culinary
251
- VINEYARD = "vineyard",
252
-
253
- // Animals & Pets
254
- HORSE_RIDING = "horse_riding",
255
-
256
- // Creative Arts
257
- PHOTOGRAPHY_DUO = "photography_duo",
258
-
259
- // Celebrations
260
- CHRISTMAS = "christmas",
261
- NEW_YEARS = "new_years",
262
- VALENTINES = "valentines",
263
- BIRTHDAY = "birthday",
264
- HALLOWEEN_DUO = "halloween_duo",
265
-
266
- // Home Life
267
- MORNING_COFFEE = "morning_coffee",
268
- MOVIE_NIGHT = "movie_night",
269
- COZY_SUNDAY = "cozy_sunday",
270
- BREAKFAST_IN_BED = "breakfast_in_bed",
271
- BEDTIME_CUDDLES = "bedtime_cuddles",
272
- READING_TOGETHER = "reading_together",
273
-
274
- // Wellness
275
- YOGA_TOGETHER = "yoga_together",
276
- RUNNING_PARTNERS = "running_partners",
277
- SWIMMING_DUO = "swimming_duo",
278
- HEALTHY_COOKING = "healthy_cooking",
279
-
280
- // Bucket List
281
- HOT_AIR_BALLOON = "hot_air_balloon",
282
- SCUBA_DIVING = "scuba_diving",
283
- THEME_PARK = "theme_park",
284
- CIRCUS_PERFORMANCE = "circus_performance",
285
-
286
- // Social Media
287
- INSTAGRAM_COUPLE = "instagram_couple",
288
- TIKTOK_STARS = "tiktok_stars",
289
- INFLUENCER_LIFE = "influencer_life",
290
- YOUTUBE_VLOG = "youtube_vlog",
291
- TREND_CHALLENGE = "trend_challenge",
292
-
293
- // Mythology
294
- GREEK_GODS = "greek_gods",
295
- NORSE_VALHALLA = "norse_valhalla",
296
- ATLANTIS_ROYALTY = "atlantis_royalty",
297
- GUARDIAN_ANGELS = "guardian_angels",
298
-
299
- // Future Tech
300
- CYBERNETIC_DUO = "cybernetic_duo",
301
- NEO_TOKYO = "neo_tokyo",
302
- AI_COMMAND = "ai_command",
303
- ANDROID_LOVERS = "android_lovers",
304
-
305
- // Action & Stealth
306
- ELITE_HEIST = "elite_heist",
307
- TOP_GUN = "top_gun",
308
- SURVIVALISTS = "survivalists",
309
- SECRET_AGENTS_DUO = "secret_agents_duo",
310
-
311
- // Ecology
312
- TREEHOUSE_KINGDOM = "treehouse_kingdom",
313
- VERTICAL_FOREST = "vertical_forest",
314
- OCEAN_PROTECTORS = "ocean_protectors",
315
- ECO_WARRIORS = "eco_warriors",
316
-
317
- // Nostalgia
318
- FLOWER_POWER = "flower_power",
319
- NEON_80S = "neon_80s",
320
- GRUNGE_90S_STYLE = "grunge_90s_style",
321
- Y2K_FUTURE = "y2k_future",
322
-
323
- // Mystical
324
- WIZARD_ACADEMY = "wizard_academy",
325
- ENCHANTED_FOREST = "enchanted_forest",
326
- ALCHEMISTS = "alchemists",
327
- CELESTIAL_VOYAGE = "celestial_voyage",
328
-
329
- // Superheroes
330
- HEROIC_DUO = "heroic_duo",
331
- SECRET_HIDEOUT = "secret_hideout",
332
- GALACTIC_PROTECTORS = "galactic_protectors",
333
- STREET_VIGILANTES = "street_vigilantes",
334
-
335
- // Villainous
336
- MASTERMINDS = "masterminds",
337
- CHAOS_BRINGERS = "chaos_bringers",
338
- HIGH_STAKES_THIEVES = "high_stakes_thieves",
339
- DARK_EMPIRE_RULERS = "dark_empire_rulers",
340
-
341
- // Elite
342
- PRIVATE_ISLAND = "private_island",
343
- ROYAL_PALACE_LIVING = "royal_palace_living",
344
- MEGA_YACHT_PARTY = "mega_yacht_party",
345
- PENTHOUSE_GALA = "penthouse_gala",
346
-
347
- // Gothic
348
- VAMPIRE_ROYALTY = "vampire_royalty",
349
- WEREWOLF_PACK = "werewolf_pack",
350
- VICTORIAN_GHOSTS = "victorian_ghosts",
351
- GOTHIC_CATHEDRAL = "gothic_cathedral",
352
-
353
- // Connection & Emotional Depth
354
- SOULMATE_CONNECTION = "soulmate_connection",
355
- FUTURE_VISIONS = "future_visions",
356
- SURPRISE_REVEAL = "surprise_reveal",
357
- DEEP_CONVERSATION = "deep_conversation",
358
- SUPPORTIVE_EMBRACE = "supportive_embrace",
359
- UNSPOKEN_BOND = "unspoken_bond",
360
- GROWING_OLD_TOGETHER_DEPTH = "growing_old_together_depth",
361
-
362
- // Daily Essence (Real-life Mundane Joys)
363
- NEW_HOME_CHAOS = "new_home_chaos",
364
- LAUNDRY_FUN_DAY = "laundry_fun_day",
365
- MIDNIGHT_KITCHEN_SNACK = "midnight_kitchen_snack",
366
- GARDEN_GROWTH_STEPS = "garden_growth_steps",
367
- STORM_SHELTER_BOARDGAMES = "storm_shelter_boardgames",
368
- FURNITURE_ASSEMBLY_TEST = "furniture_assembly_test",
369
- RAINY_WINDOW_WATCH = "rainy_window_watch",
370
-
371
- // Movie Legends (Iconic Poses)
372
- TITANIC_BOW = "titanic_bow",
373
- SMITH_BACK_TO_BACK = "smith_back_to_back",
374
- PULP_FICTION_DANCE = "pulp_fiction_dance",
375
- MATRIX_BULLET_TIME = "matrix_bullet_time",
376
- LA_LA_LAND_DANCE = "la_la_land_dance",
377
- GATSBY_CHEERS = "gatsby_cheers",
378
- ROMEO_AQUARIUM = "romeo_aquarium",
379
- NOTEBOOK_RAIN = "notebook_rain",
380
- GHOST_POTTERY = "ghost_pottery",
381
- SPIDERMAN_KISS = "spiderman_kiss",
382
- DIRTY_DANCING_LIFT = "dirty_dancing_lift",
383
- PRETTY_WOMAN_BALCONY = "pretty_woman_balcony",
384
- TWILIGHT_MEADOW = "twilight_meadow",
385
- PRIDE_PREJUDICE_WALK = "pride_prejudice_walk",
386
- ETERNAL_SUNSHINE_ICE = "eternal_sunshine_ice",
387
- CASABLANCA_FAREWELL = "casablanca_farewell",
388
- TIFFANYS_RAIN = "tiffanys_rain",
389
- STAR_IS_BORN_LOOK = "star_is_born_look",
390
- GHOST_DEW_DROP = "ghost_dew_drop",
391
-
392
- // Iconic Moments (Art, History & Pop Culture)
393
- KLIMT_THE_KISS = "klimt_the_kiss",
394
- TIMES_SQUARE_KISS = "times_square_kiss",
395
- AMERICAN_GOTHIC_POSE = "american_gothic_pose",
396
- ABBEY_ROAD_WALK = "abbey_road_walk",
397
- LENNON_YOKO_POSE = "lennon_yoko_pose",
398
- SKY_LUNCH_POSE = "sky_lunch_pose",
399
- MAGRITTE_LOVERS = "magritte_lovers",
400
- CREATION_TOUCH = "creation_touch",
401
-
402
- // Folklore & Fairy Tales
403
- RED_RIDING_HOOD = "red_riding_hood",
404
- CINDERELLA_BALL = "cinderella_ball",
405
- ROBIN_HOOD_MARIAN = "robin_hood_marian",
406
- ALICE_WONDERLAND = "alice_wonderland",
407
- BEAUTY_BEAST_DANCE = "beauty_beast_dance",
408
-
409
- // Music & Rockstars
410
- CONCERT_STAGE = "concert_stage",
411
- RECORDING_STUDIO = "recording_studio",
412
- TOUR_BUS_LIFE = "tour_bus_life",
413
- VINYL_SHOP_DATE = "vinyl_shop_date",
414
- JAZZ_CLUB_DUO = "jazz_club_duo",
415
-
416
- // Steampunk
417
- AIRSHIP_CAPTAINS = "airship_captains",
418
- CLOCKWORK_INVENTORS = "clockwork_inventors",
419
- STEAM_GALA = "steam_gala",
420
- MECHANICAL_FORGE = "mechanical_forge",
421
-
422
- // Adventure
423
- TREASURE_HUNTERS = "treasure_hunters",
424
- JUNGLE_EXPLORATION = "jungle_exploration",
425
- ARCTIC_EXPEDITION = "arctic_expedition",
426
- SEA_MONSTERS = "sea_monsters",
427
-
428
- // Affection & Hugs
429
- BACK_HUG_SURPRISE = "back_hug_surprise",
430
- REUNION_EMBRACE = "reunion_embrace",
431
- COZY_BLANKET_HUG = "cozy_blanket_hug",
432
- BEAR_HUG_LIFT = "bear_hug_lift",
433
- RAINY_STREET_EMBRACE = "rainy_street_embrace",
434
- KITCHEN_WARMTH_HUG = "kitchen_warmth_hug",
435
-
436
- // Romantic Kisses
437
- FIRST_KISS_MOMENT = "first_kiss_moment",
438
- FOREHEAD_KISS_GENTLE = "forehead_kiss_gentle",
439
- HAND_KISS_ELEGANCE = "hand_kiss_elegance",
440
- SUNSET_KISS_SILHOUETTE = "sunset_kiss_silhouette",
441
- ESKIMO_KISS_PLAYFUL = "eskimo_kiss_playful",
442
- WEDDING_KISS_ALTAR = "wedding_kiss_altar",
443
- RAINY_KISS_PASSION = "rainy_kiss_passion",
444
-
445
- // Sultry Romance (High Tension, Tasteful)
446
- MAGNETIC_GAZE = "magnetic_gaze",
447
- STEAMY_MIRROR_SILHOUETTE = "steamy_mirror_silhouette",
448
- SILK_AND_SHADOWS = "silk_and_shadows",
449
- PASSIONATE_WHISPER = "passionate_whisper",
450
- LOVERS_FIREPLACE_INTIMACY = "lovers_fireplace_intimacy",
451
- TANGLED_SHEETS_MOMENT = "tangled_sheets_moment",
452
-
453
- // Stolen Moments (Secret Tension)
454
- UNDER_TABLE_HAND_HOLD = "under_table_hand_hold",
455
- CROWD_STOLEN_LOOK = "crowd_stolen_look",
456
- ELEVATOR_PROXIMITY = "elevator_proximity",
457
- LIBRARY_SECRET_KISS = "library_secret_kiss",
458
- BACKSTAGE_TENSION = "backstage_tension",
459
-
460
- // Urban Nights (Modern Tension)
461
- RAINY_CAR_INTIMACY = "rainy_car_intimacy",
462
- ROOFTOP_EDGE_CITY = "rooftop_edge_city",
463
- SUBWAY_LATE_NIGHT = "subway_late_night",
464
- NEON_ALLEY_WHISPER = "neon_alley_whisper",
465
-
466
- // Vintage Summer
467
- ICE_CREAM_DATE = "ice_cream_date",
468
- VINTAGE_CONVERTIBLE = "vintage_convertible",
469
- RETRO_BEACH_DAY = "retro_beach_day",
470
- DRIVE_IN_CINEMA = "drive_in_cinema",
471
-
472
- // Art Studio
473
- CANVAS_TOGETHER = "canvas_together",
474
- PORTRAIT_SKETCHING = "portrait_sketching",
475
- SCULPTING_LOVE = "sculpting_love",
476
- GALLERY_WALK = "gallery_walk",
477
-
478
- // Dark Academia
479
- SECRET_LIBRARY_STUDY = "secret_library_study",
480
- OXFORD_ACADEMIC_WALK = "oxford_academic_walk",
481
- POETRY_CANDLELIGHT = "poetry_candlelight",
482
-
483
- // Casino Royale
484
- HIGH_ROLLER_ROULETTE = "high_roller_roulette",
485
- MARTINI_POWER_COUPLE = "martini_power_couple",
486
- CASINO_HEIST_ESCAPE = "casino_heist_escape",
487
-
488
- // Post-Apocalyptic
489
- LAST_SURVIVORS_CABIN = "last_survivors_cabin",
490
- WASTELAND_RAIDERS = "wasteland_raiders",
491
- CITY_RECLAIMED_NATURE = "city_reclaimed_nature",
492
-
493
- // Retro Arcade
494
- ARCADE_HIGH_SCORE = "arcade_high_score",
495
- NEON_ARCADE_DATE = "neon_arcade_date",
496
- PIZZA_PIXELS_80S = "pizza_pixels_80s",
497
-
498
- // Cozy Plush
499
- PAJAMA_PILLOW_FIGHT = "pajama_pillow_fight",
500
- GIANT_TEDDY_MOVIE = "giant_teddy_movie",
501
- CLOUD_NINE_SOFTNESS = "cloud_nine_softness",
502
-
503
- // Pirate Era
504
- STORMY_DECK_LEADERSHIP = "stormy_deck_leadership",
505
- TREASURE_CAVE_DISCOVERY = "treasure_cave_discovery",
506
- ISLAND_PARADISE_LONELY = "island_paradise_lonely",
507
-
508
- // Samurai Spirit
509
- SAKURA_PATH_TRADITION = "sakura_path_tradition",
510
- ZEN_GARDEN_TEA = "zen_garden_tea",
511
- DOJO_TRAINING_BOND = "dojo_training_bond",
512
-
513
- // Surreal Dreams
514
- FLOATING_ARCHITECTURE_DANCE = "floating_architecture_dance",
515
- CLOCKWORK_SKY_MOMENT = "clockwork_sky_moment",
516
- MIRROR_WORLD_REFLECTIONS = "mirror_world_reflections",
517
-
518
- // Magical Realism
519
- INDOOR_FOREST_LIVING = "indoor_forest_living",
520
- LEVITATING_COFFEE_BREAK = "levitating_coffee_break",
521
- STARLIT_ROOM_GALAXY = "starlit_room_galaxy",
522
-
523
- // Vintage Circus
524
- RINGMASTER_POSER = "ringmaster_poser",
525
- HIGH_WIRE_BALANCE = "high_wire_balance",
526
- MYSTIC_TENT_SECRETS = "mystic_tent_secrets",
527
-
528
- // Elemental Masters
529
- FIRE_ICE_DYNAMIC = "fire_ice_dynamic",
530
- EARTH_SHAPER_STRENGTH = "earth_shaper_strength",
531
- STORM_BRINGER_POWER = "storm_bringer_power",
532
-
533
- // Speed Demons
534
- GRID_START_READY = "grid_start_ready",
535
- STREET_DRIFT_NEON = "street_drift_neon",
536
- CHAMPIONS_PODIUM_WIN = "champions_podium_win",
537
-
538
- // Underwater Kingdom
539
- CORAL_THRONE_ROYALTY = "coral_throne_royalty",
540
- SUNKEN_LIBRARY_MYSTERY = "sunken_library_mystery",
541
- DEEP_SEA_GLOW = "deep_sea_glow",
542
-
543
- // Arabian Nights
544
- FLYING_CARPET_RIDE = "flying_carpet_ride",
545
- PALACE_OASIS_RELAX = "palace_oasis_relax",
546
- DESERT_CARAVAN_SUNSET = "desert_caravan_sunset",
547
-
548
- // Prehistoric World
549
- DINO_RIDER_ADVENTURE = "dino_rider_adventure",
550
- CAVE_ART_FIRE = "cave_art_fire",
551
- VALLEY_OF_TITANS = "valley_of_titans",
1
+ /**
2
+ * Scenario Domain
3
+ * Core types and interfaces for AI generation scenarios
4
+ */
552
5
 
553
- CUSTOM = "custom",
6
+ import { ScenarioCategory } from "./scenario-category.enum";
7
+ import type { ScenarioId } from "./scenario-ids";
554
8
 
555
- // AI Features (not content scenarios, but registered for outputType)
556
- AI_HUG = "ai-hug",
557
- AI_KISS = "ai-kiss",
558
- TEXT_TO_VIDEO = "text-to-video",
559
- IMAGE_TO_VIDEO = "image-to-video",
560
- TEXT_TO_IMAGE = "text-to-image",
561
- REMOVE_BACKGROUND = "remove-background",
562
- UPSCALE = "upscale",
563
- FACE_SWAP = "face-swap",
564
- ANIME_SELFIE = "anime-selfie",
565
- PHOTO_RESTORE = "photo-restore",
566
- REMOVE_OBJECT = "remove-object",
567
- REPLACE_BACKGROUND = "replace-background",
568
- }
9
+ export { ScenarioCategory } from "./scenario-category.enum";
10
+ export { ScenarioId } from "./scenario-ids";
569
11
 
570
12
  export type ScenarioOutputType = "image" | "video";
571
13
 
572
- /**
573
- * Scenario input type - determines required photo count
574
- * single: Requires exactly 1 photo (solo transformations)
575
- * dual: Requires exactly 2 photos (couple interactions)
576
- * text: No photo required (text-only prompts)
577
- */
578
14
  export type ScenarioInputType = "single" | "dual" | "text";
579
15
 
580
16
  export interface GeneratingMessages {
@@ -595,9 +31,7 @@ export interface Scenario {
595
31
  storyTemplate: string;
596
32
  requiresPhoto?: boolean;
597
33
  hidden?: boolean;
598
- /** Output type - optional, apps should configure via createScenariosForApp() */
599
34
  outputType?: ScenarioOutputType;
600
- /** Input type - determines required photo count. Default: "single" */
601
35
  inputType?: ScenarioInputType;
602
36
  model?: string;
603
37
  enabled?: boolean;
@@ -0,0 +1,87 @@
1
+ /**
2
+ * Scenario Presentation Types
3
+ * Types for scenario navigation and display
4
+ */
5
+
6
+ export interface MainCategory {
7
+ readonly id: string;
8
+ readonly titleKey: string;
9
+ readonly descriptionKey?: string;
10
+ readonly icon?: string;
11
+ readonly emoji?: string;
12
+ readonly image?: string;
13
+ readonly order: number;
14
+ readonly subCategoryIds: readonly string[];
15
+ }
16
+
17
+ export interface SubCategory {
18
+ readonly id: string;
19
+ readonly titleKey: string;
20
+ readonly descriptionKey?: string;
21
+ readonly icon?: string;
22
+ readonly emoji?: string;
23
+ readonly image?: string;
24
+ readonly mainCategoryId: string;
25
+ readonly scenarioCategories: readonly string[];
26
+ readonly order: number;
27
+ }
28
+
29
+ export interface CategoryInfo {
30
+ readonly id: string;
31
+ readonly name: string;
32
+ readonly description?: string;
33
+ }
34
+
35
+ export interface ScenarioSelectorConfig {
36
+ readonly titleKey: string;
37
+ readonly subtitleKey: string;
38
+ readonly showCategoryFilter: boolean;
39
+ readonly enableSearch: boolean;
40
+ readonly pageSize: number;
41
+ }
42
+
43
+ export interface ScenarioPreviewTranslations {
44
+ readonly continueButton: string;
45
+ readonly whatToExpect: string;
46
+ }
47
+
48
+ export interface ScenarioConfig {
49
+ readonly id: string;
50
+ readonly aiPrompt: string;
51
+ readonly storyTemplate?: string;
52
+ readonly title: string;
53
+ }
54
+
55
+ export interface VisualStyleOption {
56
+ readonly id: string;
57
+ readonly icon: string;
58
+ readonly labelKey: string;
59
+ }
60
+
61
+ export interface InspirationChipData {
62
+ readonly id: string;
63
+ readonly labelKey: string;
64
+ readonly promptKey: string;
65
+ }
66
+
67
+ export interface MagicPromptConfig {
68
+ readonly headerKey: string;
69
+ readonly headlinePart1Key: string;
70
+ readonly headlinePart2Key: string;
71
+ readonly subtitleKey: string;
72
+ readonly inputLabelKey: string;
73
+ readonly surpriseButtonKey: string;
74
+ readonly placeholderKey: string;
75
+ readonly styleTitleKey: string;
76
+ readonly inspirationTitleKey: string;
77
+ readonly continueKey: string;
78
+ readonly maxLength: number;
79
+ readonly minLength: number;
80
+ }
81
+
82
+ export type CoupleFeatureId = string;
83
+
84
+ export interface CoupleFeatureSelection {
85
+ readonly featureId: CoupleFeatureId | null;
86
+ readonly [key: string]: CoupleFeatureId | string | boolean | number | null | undefined;
87
+ }