@umituz/react-native-ai-generation-content 1.58.6 → 1.59.1
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.
- package/package.json +1 -1
- package/src/domain/interfaces/ai-provider.interface.ts +1 -1
- package/src/domains/scenarios/domain/Scenario.ts +7 -8
- package/src/domains/scenarios/index.ts +9 -12
- package/src/domains/scenarios/domain/category-groups.ts +0 -104
- package/src/domains/scenarios/domain/scenario-category.enum.ts +0 -78
- package/src/domains/scenarios/domain/scenario-ids/activities-sports.ids.ts +0 -34
- package/src/domains/scenarios/domain/scenario-ids/ai-features.ids.ts +0 -19
- package/src/domains/scenarios/domain/scenario-ids/celebrations-social.ids.ts +0 -23
- package/src/domains/scenarios/domain/scenario-ids/cinematic-artistic.ids.ts +0 -23
- package/src/domains/scenarios/domain/scenario-ids/culture-nature.ids.ts +0 -33
- package/src/domains/scenarios/domain/scenario-ids/daily-home.ids.ts +0 -34
- package/src/domains/scenarios/domain/scenario-ids/exotic-worlds.ids.ts +0 -38
- package/src/domains/scenarios/domain/scenario-ids/fantasy-scifi.ids.ts +0 -52
- package/src/domains/scenarios/domain/scenario-ids/historical-fashion.ids.ts +0 -24
- package/src/domains/scenarios/domain/scenario-ids/hobbies-career.ids.ts +0 -22
- package/src/domains/scenarios/domain/scenario-ids/index.ts +0 -44
- package/src/domains/scenarios/domain/scenario-ids/intimate-romantic.ids.ts +0 -6
- package/src/domains/scenarios/domain/scenario-ids/lifestyle.ids.ts +0 -39
- package/src/domains/scenarios/domain/scenario-ids/movie-legends.ids.ts +0 -6
- package/src/domains/scenarios/domain/scenario-ids/solo-scenarios.ids.ts +0 -50
- package/src/domains/scenarios/domain/scenario-ids/thematic-worlds.ids.ts +0 -46
- package/src/domains/scenarios/domain/scenario-ids/time-family.ids.ts +0 -14
- package/src/domains/scenarios/domain/scenario-ids/wedding.ids.ts +0 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.59.1",
|
|
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",
|
|
@@ -141,7 +141,7 @@ export interface ImageFeatureInputData {
|
|
|
141
141
|
export interface VideoFeatureInputData {
|
|
142
142
|
/** Source image (required for image-to-video, optional for text-to-video) */
|
|
143
143
|
sourceImageBase64?: string;
|
|
144
|
-
/** Target image (optional, used for dual-image features
|
|
144
|
+
/** Target image (optional, used for dual-image features) */
|
|
145
145
|
targetImageBase64?: string;
|
|
146
146
|
/** Generation prompt (required for text-to-video) */
|
|
147
147
|
prompt?: string;
|
|
@@ -1,14 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Scenario Domain
|
|
3
3
|
* Core types and interfaces for AI generation scenarios
|
|
4
|
+
* Note: ScenarioId and ScenarioCategory should be defined in the app, not here
|
|
4
5
|
*/
|
|
5
6
|
|
|
6
|
-
import { ScenarioCategory } from "./scenario-category.enum";
|
|
7
|
-
import type { ScenarioId } from "./scenario-ids";
|
|
8
|
-
|
|
9
|
-
export { ScenarioCategory } from "./scenario-category.enum";
|
|
10
|
-
export { ScenarioId } from "./scenario-ids";
|
|
11
|
-
|
|
12
7
|
export type ScenarioOutputType = "image" | "video";
|
|
13
8
|
|
|
14
9
|
export type ScenarioInputType = "single" | "dual" | "text";
|
|
@@ -26,9 +21,13 @@ export interface GeneratingMessages {
|
|
|
26
21
|
hint?: string;
|
|
27
22
|
}
|
|
28
23
|
|
|
24
|
+
/**
|
|
25
|
+
* Scenario interface
|
|
26
|
+
* id and category are strings - apps define their own ScenarioId and ScenarioCategory types
|
|
27
|
+
*/
|
|
29
28
|
export interface Scenario {
|
|
30
|
-
id:
|
|
31
|
-
category?:
|
|
29
|
+
id: string;
|
|
30
|
+
category?: string;
|
|
32
31
|
title: string;
|
|
33
32
|
description: string;
|
|
34
33
|
icon: string;
|
|
@@ -1,20 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Scenarios Domain
|
|
3
|
-
*
|
|
3
|
+
* Generic AI generation scenario infrastructure
|
|
4
|
+
* Note: ScenarioId and ScenarioCategory should be defined in each app
|
|
4
5
|
*/
|
|
5
6
|
|
|
6
7
|
// Types
|
|
7
|
-
export type {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
GENERAL_CATEGORIES,
|
|
15
|
-
MULTI_PERSON_CATEGORIES,
|
|
16
|
-
ALL_CATEGORIES,
|
|
17
|
-
} from "./domain/category-groups";
|
|
8
|
+
export type {
|
|
9
|
+
ScenarioOutputType,
|
|
10
|
+
ScenarioInputType,
|
|
11
|
+
ScenarioPromptType,
|
|
12
|
+
GeneratingMessages,
|
|
13
|
+
Scenario,
|
|
14
|
+
} from "./domain/Scenario";
|
|
18
15
|
|
|
19
16
|
// Scenario Helpers - For app-level configuration
|
|
20
17
|
export {
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Category Groups
|
|
3
|
-
* Pre-defined category groups for easy filtering
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import { ScenarioCategory } from "./scenario-category.enum";
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* TRUE single person categories - scenarios with prompts for ONE person only
|
|
10
|
-
* These are guaranteed to work with single-photo input
|
|
11
|
-
*/
|
|
12
|
-
export const TRUE_SOLO_CATEGORIES: readonly ScenarioCategory[] = [
|
|
13
|
-
ScenarioCategory.SOLO_FANTASY,
|
|
14
|
-
ScenarioCategory.SOLO_ADVENTURE,
|
|
15
|
-
ScenarioCategory.SOLO_CINEMATIC,
|
|
16
|
-
ScenarioCategory.SOLO_ARTISTIC,
|
|
17
|
-
ScenarioCategory.SOLO_ACTION,
|
|
18
|
-
ScenarioCategory.SOLO_MYTHOLOGY,
|
|
19
|
-
ScenarioCategory.SOLO_SPORTS,
|
|
20
|
-
];
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* General categories - scenarios that work with various content types
|
|
24
|
-
*/
|
|
25
|
-
export const GENERAL_CATEGORIES: readonly ScenarioCategory[] = [
|
|
26
|
-
ScenarioCategory.FANTASY,
|
|
27
|
-
ScenarioCategory.ADVENTURE,
|
|
28
|
-
ScenarioCategory.SPORTS,
|
|
29
|
-
ScenarioCategory.ARTISTIC,
|
|
30
|
-
ScenarioCategory.CINEMATIC,
|
|
31
|
-
ScenarioCategory.CREATIVE,
|
|
32
|
-
ScenarioCategory.FASHION,
|
|
33
|
-
ScenarioCategory.HOBBIES,
|
|
34
|
-
ScenarioCategory.EXTREME,
|
|
35
|
-
ScenarioCategory.GAMING,
|
|
36
|
-
ScenarioCategory.CAREER,
|
|
37
|
-
ScenarioCategory.EDUCATION,
|
|
38
|
-
ScenarioCategory.LIFESTYLE,
|
|
39
|
-
ScenarioCategory.LUXURY,
|
|
40
|
-
ScenarioCategory.CULINARY,
|
|
41
|
-
ScenarioCategory.SEASONAL,
|
|
42
|
-
ScenarioCategory.ANIMALS,
|
|
43
|
-
ScenarioCategory.CELEBRATIONS,
|
|
44
|
-
ScenarioCategory.WELLNESS,
|
|
45
|
-
ScenarioCategory.BUCKET_LIST,
|
|
46
|
-
ScenarioCategory.SOCIAL_MEDIA,
|
|
47
|
-
ScenarioCategory.MYTHOLOGY,
|
|
48
|
-
ScenarioCategory.FUTURE_TECH,
|
|
49
|
-
ScenarioCategory.ACTION_STEALTH,
|
|
50
|
-
ScenarioCategory.ECOLOGY,
|
|
51
|
-
ScenarioCategory.NOSTALGIA,
|
|
52
|
-
ScenarioCategory.MYSTICAL,
|
|
53
|
-
ScenarioCategory.SUPERHEROES,
|
|
54
|
-
ScenarioCategory.VILLAINOUS,
|
|
55
|
-
ScenarioCategory.ELITE,
|
|
56
|
-
ScenarioCategory.GOTHIC,
|
|
57
|
-
ScenarioCategory.DAILY_ESSENCE,
|
|
58
|
-
ScenarioCategory.FOLKLORE,
|
|
59
|
-
ScenarioCategory.MUSIC,
|
|
60
|
-
ScenarioCategory.STEAMPUNK,
|
|
61
|
-
ScenarioCategory.PERFORMANCE,
|
|
62
|
-
ScenarioCategory.FESTIVAL,
|
|
63
|
-
ScenarioCategory.HISTORICAL,
|
|
64
|
-
ScenarioCategory.CULTURAL,
|
|
65
|
-
ScenarioCategory.SCI_FI,
|
|
66
|
-
ScenarioCategory.TRAVEL,
|
|
67
|
-
ScenarioCategory.VINTAGE_SUMMER,
|
|
68
|
-
ScenarioCategory.DARK_ACADEMIA,
|
|
69
|
-
ScenarioCategory.RETRO_ARCADE,
|
|
70
|
-
ScenarioCategory.COZY_PLUSH,
|
|
71
|
-
ScenarioCategory.PIRATE_ERA,
|
|
72
|
-
ScenarioCategory.SAMURAI,
|
|
73
|
-
ScenarioCategory.SURREAL_DREAMS,
|
|
74
|
-
ScenarioCategory.MAGICAL_REALISM,
|
|
75
|
-
ScenarioCategory.VINTAGE_CIRCUS,
|
|
76
|
-
ScenarioCategory.ELEMENTAL,
|
|
77
|
-
ScenarioCategory.SPEED_DEMONS,
|
|
78
|
-
ScenarioCategory.UNDERWATER,
|
|
79
|
-
ScenarioCategory.ARABIAN_NIGHTS,
|
|
80
|
-
ScenarioCategory.PREHISTORIC,
|
|
81
|
-
ScenarioCategory.POST_APOCALYPTIC,
|
|
82
|
-
];
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* Multi-person categories - scenarios that may involve multiple people
|
|
86
|
-
* Note: Does NOT include intimate/romantic content (App Store Guidelines 1.1)
|
|
87
|
-
*/
|
|
88
|
-
export const MULTI_PERSON_CATEGORIES: readonly ScenarioCategory[] = [
|
|
89
|
-
ScenarioCategory.WEDDING,
|
|
90
|
-
ScenarioCategory.FAMILY,
|
|
91
|
-
ScenarioCategory.TIME_TRAVEL,
|
|
92
|
-
ScenarioCategory.HOME_LIFE,
|
|
93
|
-
ScenarioCategory.ART_STUDIO,
|
|
94
|
-
ScenarioCategory.URBAN_NIGHTS,
|
|
95
|
-
ScenarioCategory.CASINO,
|
|
96
|
-
];
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* All categories
|
|
100
|
-
*/
|
|
101
|
-
export const ALL_CATEGORIES: readonly ScenarioCategory[] = [
|
|
102
|
-
...GENERAL_CATEGORIES,
|
|
103
|
-
...MULTI_PERSON_CATEGORIES,
|
|
104
|
-
];
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Scenario Category Enum
|
|
3
|
-
* Categories for grouping AI generation scenarios
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export enum ScenarioCategory {
|
|
7
|
-
TIME_TRAVEL = "time_travel",
|
|
8
|
-
FAMILY = "family",
|
|
9
|
-
WEDDING = "wedding",
|
|
10
|
-
TRAVEL = "travel",
|
|
11
|
-
CULTURAL = "cultural",
|
|
12
|
-
HISTORICAL = "historical",
|
|
13
|
-
FANTASY = "fantasy",
|
|
14
|
-
SCI_FI = "sci_fi",
|
|
15
|
-
ARTISTIC = "artistic",
|
|
16
|
-
CINEMATIC = "cinematic",
|
|
17
|
-
PERFORMANCE = "performance",
|
|
18
|
-
CREATIVE = "creative",
|
|
19
|
-
FASHION = "fashion",
|
|
20
|
-
FESTIVAL = "festival",
|
|
21
|
-
HOBBIES = "hobbies",
|
|
22
|
-
SPORTS = "sports",
|
|
23
|
-
EXTREME = "extreme",
|
|
24
|
-
GAMING = "gaming",
|
|
25
|
-
CAREER = "career",
|
|
26
|
-
EDUCATION = "education",
|
|
27
|
-
LIFESTYLE = "lifestyle",
|
|
28
|
-
LUXURY = "luxury",
|
|
29
|
-
CULINARY = "culinary",
|
|
30
|
-
SEASONAL = "seasonal",
|
|
31
|
-
ANIMALS = "animals",
|
|
32
|
-
CELEBRATIONS = "celebrations",
|
|
33
|
-
HOME_LIFE = "home_life",
|
|
34
|
-
WELLNESS = "wellness",
|
|
35
|
-
BUCKET_LIST = "bucket_list",
|
|
36
|
-
SOCIAL_MEDIA = "social_media",
|
|
37
|
-
MYTHOLOGY = "mythology",
|
|
38
|
-
FUTURE_TECH = "future_tech",
|
|
39
|
-
ACTION_STEALTH = "action_stealth",
|
|
40
|
-
ECOLOGY = "ecology",
|
|
41
|
-
NOSTALGIA = "nostalgia",
|
|
42
|
-
MYSTICAL = "mystical",
|
|
43
|
-
SUPERHEROES = "superheroes",
|
|
44
|
-
VILLAINOUS = "villainous",
|
|
45
|
-
ELITE = "elite",
|
|
46
|
-
GOTHIC = "gothic",
|
|
47
|
-
DAILY_ESSENCE = "daily_essence",
|
|
48
|
-
FOLKLORE = "folklore",
|
|
49
|
-
MUSIC = "music",
|
|
50
|
-
STEAMPUNK = "steampunk",
|
|
51
|
-
ADVENTURE = "adventure",
|
|
52
|
-
URBAN_NIGHTS = "urban_nights",
|
|
53
|
-
VINTAGE_SUMMER = "vintage_summer",
|
|
54
|
-
ART_STUDIO = "art_studio",
|
|
55
|
-
DARK_ACADEMIA = "dark_academia",
|
|
56
|
-
CASINO = "casino",
|
|
57
|
-
POST_APOCALYPTIC = "post_apocalyptic",
|
|
58
|
-
RETRO_ARCADE = "retro_arcade",
|
|
59
|
-
COZY_PLUSH = "cozy_plush",
|
|
60
|
-
PIRATE_ERA = "pirate_era",
|
|
61
|
-
SAMURAI = "samurai",
|
|
62
|
-
SURREAL_DREAMS = "surreal_dreams",
|
|
63
|
-
MAGICAL_REALISM = "magical_realism",
|
|
64
|
-
VINTAGE_CIRCUS = "vintage_circus",
|
|
65
|
-
ELEMENTAL = "elemental",
|
|
66
|
-
SPEED_DEMONS = "speed_demons",
|
|
67
|
-
UNDERWATER = "underwater",
|
|
68
|
-
ARABIAN_NIGHTS = "arabian_nights",
|
|
69
|
-
PREHISTORIC = "prehistoric",
|
|
70
|
-
// True single-person categories
|
|
71
|
-
SOLO_FANTASY = "solo_fantasy",
|
|
72
|
-
SOLO_ADVENTURE = "solo_adventure",
|
|
73
|
-
SOLO_CINEMATIC = "solo_cinematic",
|
|
74
|
-
SOLO_ARTISTIC = "solo_artistic",
|
|
75
|
-
SOLO_ACTION = "solo_action",
|
|
76
|
-
SOLO_MYTHOLOGY = "solo_mythology",
|
|
77
|
-
SOLO_SPORTS = "solo_sports",
|
|
78
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Activities & Sports Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const ACTIVITIES_SPORTS_IDS = {
|
|
6
|
-
// Sports
|
|
7
|
-
SKI_RESORT: "ski_resort",
|
|
8
|
-
// Extreme
|
|
9
|
-
SKYDIVING: "skydiving",
|
|
10
|
-
// Performance
|
|
11
|
-
CONCERT_STARS: "concert_stars",
|
|
12
|
-
// Luxury
|
|
13
|
-
YACHT_LIFE: "yacht_life",
|
|
14
|
-
// Seasonal
|
|
15
|
-
CHERRY_BLOSSOM: "cherry_blossom",
|
|
16
|
-
// Culinary
|
|
17
|
-
VINEYARD: "vineyard",
|
|
18
|
-
// Animals
|
|
19
|
-
HORSE_RIDING: "horse_riding",
|
|
20
|
-
// Adventure
|
|
21
|
-
TREASURE_HUNTERS: "treasure_hunters",
|
|
22
|
-
JUNGLE_EXPLORATION: "jungle_exploration",
|
|
23
|
-
ARCTIC_EXPEDITION: "arctic_expedition",
|
|
24
|
-
SEA_MONSTERS: "sea_monsters",
|
|
25
|
-
// Action & Stealth
|
|
26
|
-
ELITE_HEIST: "elite_heist",
|
|
27
|
-
TOP_GUN: "top_gun",
|
|
28
|
-
SURVIVALISTS: "survivalists",
|
|
29
|
-
SECRET_AGENTS_DUO: "secret_agents_duo",
|
|
30
|
-
// Speed Demons
|
|
31
|
-
GRID_START_READY: "grid_start_ready",
|
|
32
|
-
STREET_DRIFT_NEON: "street_drift_neon",
|
|
33
|
-
CHAMPIONS_PODIUM_WIN: "champions_podium_win",
|
|
34
|
-
} as const;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* AI Features & Special Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const AI_FEATURES_IDS = {
|
|
6
|
-
// Special
|
|
7
|
-
CUSTOM: "custom",
|
|
8
|
-
// AI Features
|
|
9
|
-
TEXT_TO_VIDEO: "text-to-video",
|
|
10
|
-
IMAGE_TO_VIDEO: "image-to-video",
|
|
11
|
-
TEXT_TO_IMAGE: "text-to-image",
|
|
12
|
-
REMOVE_BACKGROUND: "remove-background",
|
|
13
|
-
UPSCALE: "upscale",
|
|
14
|
-
FACE_SWAP: "face-swap",
|
|
15
|
-
ANIME_SELFIE: "anime-selfie",
|
|
16
|
-
PHOTO_RESTORE: "photo-restore",
|
|
17
|
-
REMOVE_OBJECT: "remove-object",
|
|
18
|
-
REPLACE_BACKGROUND: "replace-background",
|
|
19
|
-
} as const;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Celebrations & Social Media Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const CELEBRATIONS_SOCIAL_IDS = {
|
|
6
|
-
// Celebrations
|
|
7
|
-
CHRISTMAS: "christmas",
|
|
8
|
-
NEW_YEARS: "new_years",
|
|
9
|
-
VALENTINES: "valentines",
|
|
10
|
-
BIRTHDAY: "birthday",
|
|
11
|
-
HALLOWEEN_DUO: "halloween_duo",
|
|
12
|
-
// Social Media
|
|
13
|
-
INSTAGRAM_COUPLE: "instagram_couple",
|
|
14
|
-
TIKTOK_STARS: "tiktok_stars",
|
|
15
|
-
INFLUENCER_LIFE: "influencer_life",
|
|
16
|
-
YOUTUBE_VLOG: "youtube_vlog",
|
|
17
|
-
TREND_CHALLENGE: "trend_challenge",
|
|
18
|
-
// Bucket List
|
|
19
|
-
HOT_AIR_BALLOON: "hot_air_balloon",
|
|
20
|
-
SCUBA_DIVING: "scuba_diving",
|
|
21
|
-
THEME_PARK: "theme_park",
|
|
22
|
-
CIRCUS_PERFORMANCE: "circus_performance",
|
|
23
|
-
} as const;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Cinematic & Artistic Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const CINEMATIC_ARTISTIC_IDS = {
|
|
6
|
-
// Cinematic
|
|
7
|
-
SECRET_AGENT: "secret_agent",
|
|
8
|
-
FILM_NOIR: "film_noir",
|
|
9
|
-
SPACE_OPERA: "space_opera",
|
|
10
|
-
WES_ANDERSON: "wes_anderson",
|
|
11
|
-
// Artistic
|
|
12
|
-
OIL_PAINTING: "oil_painting",
|
|
13
|
-
POP_ART: "pop_art",
|
|
14
|
-
MARBLE_STATUE: "marble_statue",
|
|
15
|
-
ANIME_DREAM: "anime_dream",
|
|
16
|
-
// Creative
|
|
17
|
-
PHOTOGRAPHY_DUO: "photography_duo",
|
|
18
|
-
// New
|
|
19
|
-
MOVIE_PREMIERE: "movie_premiere",
|
|
20
|
-
STREET_ART_MURAL: "street_art_mural",
|
|
21
|
-
VR_GAMING: "vr_gaming",
|
|
22
|
-
FASHION_WEEK: "fashion_week",
|
|
23
|
-
} as const;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Culture, Nature & Ecology Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const CULTURE_NATURE_IDS = {
|
|
6
|
-
// Ecology
|
|
7
|
-
TREEHOUSE_KINGDOM: "treehouse_kingdom",
|
|
8
|
-
VERTICAL_FOREST: "vertical_forest",
|
|
9
|
-
OCEAN_PROTECTORS: "ocean_protectors",
|
|
10
|
-
ECO_WARRIORS: "eco_warriors",
|
|
11
|
-
// Nostalgia
|
|
12
|
-
FLOWER_POWER: "flower_power",
|
|
13
|
-
NEON_80S: "neon_80s",
|
|
14
|
-
GRUNGE_90S_STYLE: "grunge_90s_style",
|
|
15
|
-
Y2K_FUTURE: "y2k_future",
|
|
16
|
-
// Folklore
|
|
17
|
-
RED_RIDING_HOOD: "red_riding_hood",
|
|
18
|
-
CINDERELLA_BALL: "cinderella_ball",
|
|
19
|
-
ROBIN_HOOD_MARIAN: "robin_hood_marian",
|
|
20
|
-
ALICE_WONDERLAND: "alice_wonderland",
|
|
21
|
-
BEAUTY_BEAST_DANCE: "beauty_beast_dance",
|
|
22
|
-
// Music
|
|
23
|
-
CONCERT_STAGE: "concert_stage",
|
|
24
|
-
RECORDING_STUDIO: "recording_studio",
|
|
25
|
-
TOUR_BUS_LIFE: "tour_bus_life",
|
|
26
|
-
VINYL_SHOP_DATE: "vinyl_shop_date",
|
|
27
|
-
JAZZ_CLUB_DUO: "jazz_club_duo",
|
|
28
|
-
// Elite
|
|
29
|
-
PRIVATE_ISLAND: "private_island",
|
|
30
|
-
ROYAL_PALACE_LIVING: "royal_palace_living",
|
|
31
|
-
MEGA_YACHT_PARTY: "mega_yacht_party",
|
|
32
|
-
PENTHOUSE_GALA: "penthouse_gala",
|
|
33
|
-
} as const;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Daily Life & Home Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const DAILY_HOME_IDS = {
|
|
6
|
-
// Connection
|
|
7
|
-
SOULMATE_CONNECTION: "soulmate_connection",
|
|
8
|
-
FUTURE_VISIONS: "future_visions",
|
|
9
|
-
SURPRISE_REVEAL: "surprise_reveal",
|
|
10
|
-
DEEP_CONVERSATION: "deep_conversation",
|
|
11
|
-
SUPPORTIVE_EMBRACE: "supportive_embrace",
|
|
12
|
-
UNSPOKEN_BOND: "unspoken_bond",
|
|
13
|
-
GROWING_OLD_TOGETHER_DEPTH: "growing_old_together_depth",
|
|
14
|
-
// Daily Essence
|
|
15
|
-
NEW_HOME_CHAOS: "new_home_chaos",
|
|
16
|
-
LAUNDRY_FUN_DAY: "laundry_fun_day",
|
|
17
|
-
MIDNIGHT_KITCHEN_SNACK: "midnight_kitchen_snack",
|
|
18
|
-
GARDEN_GROWTH_STEPS: "garden_growth_steps",
|
|
19
|
-
STORM_SHELTER_BOARDGAMES: "storm_shelter_boardgames",
|
|
20
|
-
FURNITURE_ASSEMBLY_TEST: "furniture_assembly_test",
|
|
21
|
-
RAINY_WINDOW_WATCH: "rainy_window_watch",
|
|
22
|
-
// Home Life
|
|
23
|
-
MORNING_COFFEE: "morning_coffee",
|
|
24
|
-
MOVIE_NIGHT: "movie_night",
|
|
25
|
-
COZY_SUNDAY: "cozy_sunday",
|
|
26
|
-
BREAKFAST_IN_BED: "breakfast_in_bed",
|
|
27
|
-
BEDTIME_CUDDLES: "bedtime_cuddles",
|
|
28
|
-
READING_TOGETHER: "reading_together",
|
|
29
|
-
// Wellness
|
|
30
|
-
YOGA_TOGETHER: "yoga_together",
|
|
31
|
-
RUNNING_PARTNERS: "running_partners",
|
|
32
|
-
SWIMMING_DUO: "swimming_duo",
|
|
33
|
-
HEALTHY_COOKING: "healthy_cooking",
|
|
34
|
-
} as const;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Exotic Worlds Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const EXOTIC_WORLDS_IDS = {
|
|
6
|
-
// Pirate Era
|
|
7
|
-
STORMY_DECK_LEADERSHIP: "stormy_deck_leadership",
|
|
8
|
-
TREASURE_CAVE_DISCOVERY: "treasure_cave_discovery",
|
|
9
|
-
ISLAND_PARADISE_LONELY: "island_paradise_lonely",
|
|
10
|
-
// Samurai
|
|
11
|
-
SAKURA_PATH_TRADITION: "sakura_path_tradition",
|
|
12
|
-
ZEN_GARDEN_TEA: "zen_garden_tea",
|
|
13
|
-
DOJO_TRAINING_BOND: "dojo_training_bond",
|
|
14
|
-
// Surreal Dreams
|
|
15
|
-
FLOATING_ARCHITECTURE_DANCE: "floating_architecture_dance",
|
|
16
|
-
CLOCKWORK_SKY_MOMENT: "clockwork_sky_moment",
|
|
17
|
-
MIRROR_WORLD_REFLECTIONS: "mirror_world_reflections",
|
|
18
|
-
// Magical Realism
|
|
19
|
-
INDOOR_FOREST_LIVING: "indoor_forest_living",
|
|
20
|
-
LEVITATING_COFFEE_BREAK: "levitating_coffee_break",
|
|
21
|
-
STARLIT_ROOM_GALAXY: "starlit_room_galaxy",
|
|
22
|
-
// Vintage Circus
|
|
23
|
-
RINGMASTER_POSER: "ringmaster_poser",
|
|
24
|
-
HIGH_WIRE_BALANCE: "high_wire_balance",
|
|
25
|
-
MYSTIC_TENT_SECRETS: "mystic_tent_secrets",
|
|
26
|
-
// Underwater
|
|
27
|
-
CORAL_THRONE_ROYALTY: "coral_throne_royalty",
|
|
28
|
-
SUNKEN_LIBRARY_MYSTERY: "sunken_library_mystery",
|
|
29
|
-
DEEP_SEA_GLOW: "deep_sea_glow",
|
|
30
|
-
// Arabian Nights
|
|
31
|
-
FLYING_CARPET_RIDE: "flying_carpet_ride",
|
|
32
|
-
PALACE_OASIS_RELAX: "palace_oasis_relax",
|
|
33
|
-
DESERT_CARAVAN_SUNSET: "desert_caravan_sunset",
|
|
34
|
-
// Prehistoric
|
|
35
|
-
DINO_RIDER_ADVENTURE: "dino_rider_adventure",
|
|
36
|
-
CAVE_ART_FIRE: "cave_art_fire",
|
|
37
|
-
VALLEY_OF_TITANS: "valley_of_titans",
|
|
38
|
-
} as const;
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fantasy & Sci-Fi Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const FANTASY_SCIFI_IDS = {
|
|
6
|
-
// Fantasy
|
|
7
|
-
SURVIVORS: "survivors",
|
|
8
|
-
CYBERPUNK: "cyberpunk",
|
|
9
|
-
ROYALTY: "royalty",
|
|
10
|
-
SUPERHERO: "superhero",
|
|
11
|
-
SPACE: "space",
|
|
12
|
-
MEDIEVAL: "medieval",
|
|
13
|
-
// Mystical
|
|
14
|
-
WIZARD_ACADEMY: "wizard_academy",
|
|
15
|
-
ENCHANTED_FOREST: "enchanted_forest",
|
|
16
|
-
ALCHEMISTS: "alchemists",
|
|
17
|
-
CELESTIAL_VOYAGE: "celestial_voyage",
|
|
18
|
-
// Superheroes
|
|
19
|
-
HEROIC_DUO: "heroic_duo",
|
|
20
|
-
SECRET_HIDEOUT: "secret_hideout",
|
|
21
|
-
GALACTIC_PROTECTORS: "galactic_protectors",
|
|
22
|
-
STREET_VIGILANTES: "street_vigilantes",
|
|
23
|
-
// Villainous
|
|
24
|
-
MASTERMINDS: "masterminds",
|
|
25
|
-
CHAOS_BRINGERS: "chaos_bringers",
|
|
26
|
-
HIGH_STAKES_THIEVES: "high_stakes_thieves",
|
|
27
|
-
DARK_EMPIRE_RULERS: "dark_empire_rulers",
|
|
28
|
-
// Gothic
|
|
29
|
-
VAMPIRE_ROYALTY: "vampire_royalty",
|
|
30
|
-
WEREWOLF_PACK: "werewolf_pack",
|
|
31
|
-
VICTORIAN_GHOSTS: "victorian_ghosts",
|
|
32
|
-
GOTHIC_CATHEDRAL: "gothic_cathedral",
|
|
33
|
-
// Mythology
|
|
34
|
-
GREEK_GODS: "greek_gods",
|
|
35
|
-
NORSE_VALHALLA: "norse_valhalla",
|
|
36
|
-
ATLANTIS_ROYALTY: "atlantis_royalty",
|
|
37
|
-
GUARDIAN_ANGELS: "guardian_angels",
|
|
38
|
-
// Future Tech
|
|
39
|
-
CYBERNETIC_DUO: "cybernetic_duo",
|
|
40
|
-
NEO_TOKYO: "neo_tokyo",
|
|
41
|
-
AI_COMMAND: "ai_command",
|
|
42
|
-
ANDROID_LOVERS: "android_lovers",
|
|
43
|
-
// Elemental
|
|
44
|
-
EARTH_SHAPER_STRENGTH: "earth_shaper_strength",
|
|
45
|
-
STORM_BRINGER_POWER: "storm_bringer_power",
|
|
46
|
-
// New
|
|
47
|
-
FANTASY_KINGDOM: "fantasy_kingdom",
|
|
48
|
-
CYBERPUNK_CITY: "cyberpunk_city",
|
|
49
|
-
SKYDIVING_THRILL: "skydiving_thrill",
|
|
50
|
-
SUPERHERO_DUO: "superhero_duo",
|
|
51
|
-
MYSTIC_FOREST: "mystic_forest",
|
|
52
|
-
} as const;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Historical & Fashion Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const HISTORICAL_FASHION_IDS = {
|
|
6
|
-
// Historical
|
|
7
|
-
ROARING_20S: "roaring_20s",
|
|
8
|
-
VICTORIAN: "victorian",
|
|
9
|
-
WILD_WEST: "wild_west",
|
|
10
|
-
VIKING: "viking",
|
|
11
|
-
// Festival
|
|
12
|
-
CARNIVAL: "carnival",
|
|
13
|
-
MUSIC_FESTIVAL: "music_festival",
|
|
14
|
-
HALLOWEEN: "halloween",
|
|
15
|
-
// Fashion
|
|
16
|
-
DISCO_70S: "disco_70s",
|
|
17
|
-
STEAMPUNK: "steampunk",
|
|
18
|
-
HIGH_FASHION: "high_fashion",
|
|
19
|
-
GRUNGE_90S: "grunge_90s",
|
|
20
|
-
// New
|
|
21
|
-
VICTORIAN_ERA: "victorian_era",
|
|
22
|
-
ENCHANTED_FOREST_FOLKLORE: "enchanted_forest_folklore",
|
|
23
|
-
FIFTIES_DINER: "fifties_diner",
|
|
24
|
-
} as const;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Hobbies, Career & Education Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const HOBBIES_CAREER_IDS = {
|
|
6
|
-
// Hobbies
|
|
7
|
-
POTTERY: "pottery",
|
|
8
|
-
BALLROOM_DANCE: "ballroom_dance",
|
|
9
|
-
GAMER_DUO: "gamer_duo",
|
|
10
|
-
MUSICIANS: "musicians",
|
|
11
|
-
// Career
|
|
12
|
-
ENTREPRENEURS: "entrepreneurs",
|
|
13
|
-
ARTISTS: "artists",
|
|
14
|
-
SCIENTISTS: "scientists",
|
|
15
|
-
// Education
|
|
16
|
-
GRADUATION: "graduation",
|
|
17
|
-
// Gaming
|
|
18
|
-
ESPORTS: "esports",
|
|
19
|
-
// New
|
|
20
|
-
POWER_COUPLE_OFFICE: "power_couple_office",
|
|
21
|
-
GRADUATION_DAY: "graduation_day",
|
|
22
|
-
} as const;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Scenario IDs
|
|
3
|
-
* Combined from all category files
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import { TIME_FAMILY_IDS } from "./time-family.ids";
|
|
7
|
-
import { WEDDING_IDS } from "./wedding.ids";
|
|
8
|
-
import { LIFESTYLE_IDS } from "./lifestyle.ids";
|
|
9
|
-
import { HISTORICAL_FASHION_IDS } from "./historical-fashion.ids";
|
|
10
|
-
import { CINEMATIC_ARTISTIC_IDS } from "./cinematic-artistic.ids";
|
|
11
|
-
import { HOBBIES_CAREER_IDS } from "./hobbies-career.ids";
|
|
12
|
-
import { FANTASY_SCIFI_IDS } from "./fantasy-scifi.ids";
|
|
13
|
-
import { INTIMATE_ROMANTIC_IDS } from "./intimate-romantic.ids";
|
|
14
|
-
import { MOVIE_LEGENDS_IDS } from "./movie-legends.ids";
|
|
15
|
-
import { ACTIVITIES_SPORTS_IDS } from "./activities-sports.ids";
|
|
16
|
-
import { DAILY_HOME_IDS } from "./daily-home.ids";
|
|
17
|
-
import { CELEBRATIONS_SOCIAL_IDS } from "./celebrations-social.ids";
|
|
18
|
-
import { CULTURE_NATURE_IDS } from "./culture-nature.ids";
|
|
19
|
-
import { THEMATIC_WORLDS_IDS } from "./thematic-worlds.ids";
|
|
20
|
-
import { EXOTIC_WORLDS_IDS } from "./exotic-worlds.ids";
|
|
21
|
-
import { AI_FEATURES_IDS } from "./ai-features.ids";
|
|
22
|
-
import { SOLO_SCENARIOS_IDS } from "./solo-scenarios.ids";
|
|
23
|
-
|
|
24
|
-
export const ScenarioId = {
|
|
25
|
-
...TIME_FAMILY_IDS,
|
|
26
|
-
...WEDDING_IDS,
|
|
27
|
-
...LIFESTYLE_IDS,
|
|
28
|
-
...HISTORICAL_FASHION_IDS,
|
|
29
|
-
...CINEMATIC_ARTISTIC_IDS,
|
|
30
|
-
...HOBBIES_CAREER_IDS,
|
|
31
|
-
...FANTASY_SCIFI_IDS,
|
|
32
|
-
...INTIMATE_ROMANTIC_IDS,
|
|
33
|
-
...MOVIE_LEGENDS_IDS,
|
|
34
|
-
...ACTIVITIES_SPORTS_IDS,
|
|
35
|
-
...DAILY_HOME_IDS,
|
|
36
|
-
...CELEBRATIONS_SOCIAL_IDS,
|
|
37
|
-
...CULTURE_NATURE_IDS,
|
|
38
|
-
...THEMATIC_WORLDS_IDS,
|
|
39
|
-
...EXOTIC_WORLDS_IDS,
|
|
40
|
-
...AI_FEATURES_IDS,
|
|
41
|
-
...SOLO_SCENARIOS_IDS,
|
|
42
|
-
} as const;
|
|
43
|
-
|
|
44
|
-
export type ScenarioId = (typeof ScenarioId)[keyof typeof ScenarioId];
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Lifestyle & Travel Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const LIFESTYLE_IDS = {
|
|
6
|
-
// Lifestyle
|
|
7
|
-
VACATION: "vacation",
|
|
8
|
-
SUCCESS: "success",
|
|
9
|
-
ADVENTURE: "adventure",
|
|
10
|
-
COTTAGECORE: "cottagecore",
|
|
11
|
-
RED_CARPET: "red_carpet",
|
|
12
|
-
FITNESS: "fitness",
|
|
13
|
-
COOKING: "cooking",
|
|
14
|
-
// Travel
|
|
15
|
-
PARIS: "paris",
|
|
16
|
-
TOKYO: "tokyo",
|
|
17
|
-
SANTORINI: "santorini",
|
|
18
|
-
SAFARI: "safari",
|
|
19
|
-
BALI: "bali",
|
|
20
|
-
NEW_YORK: "new_york",
|
|
21
|
-
VENICE: "venice",
|
|
22
|
-
AURORA: "aurora",
|
|
23
|
-
// Other
|
|
24
|
-
WINTER_CABIN: "winter_cabin",
|
|
25
|
-
VINTAGE_90S: "vintage_90s",
|
|
26
|
-
ANIME_HIGHSCHOOL: "anime_highschool",
|
|
27
|
-
RETRO_VAPORWAVE: "retro_vaporwave",
|
|
28
|
-
MARS_2050: "mars_2050",
|
|
29
|
-
// New
|
|
30
|
-
SUNDAY_FARMERS_MARKET: "sunday_farmers_market",
|
|
31
|
-
PRIVATE_JET_LUXURY: "private_jet_luxury",
|
|
32
|
-
YOGA_SUNSET: "yoga_sunset",
|
|
33
|
-
RAINY_DAY_NOOK: "rainy_day_nook",
|
|
34
|
-
COOKING_CLASS: "cooking_class",
|
|
35
|
-
PARIS_EIFFEL: "paris_eiffel",
|
|
36
|
-
NORTHERN_LIGHTS: "northern_lights",
|
|
37
|
-
AUTUMN_WALK: "autumn_walk",
|
|
38
|
-
MUSIC_FESTIVAL: "music_festival",
|
|
39
|
-
} as const;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Solo Scenario IDs
|
|
3
|
-
* True single-person scenarios
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export const SOLO_SCENARIOS_IDS = {
|
|
7
|
-
// Fantasy
|
|
8
|
-
SOLO_DRAGON_RIDER: "solo_dragon_rider",
|
|
9
|
-
SOLO_WIZARD_MASTER: "solo_wizard_master",
|
|
10
|
-
SOLO_ELVEN_ARCHER: "solo_elven_archer",
|
|
11
|
-
SOLO_DARK_KNIGHT: "solo_dark_knight",
|
|
12
|
-
SOLO_FOREST_FAIRY: "solo_forest_fairy",
|
|
13
|
-
// Adventure
|
|
14
|
-
SOLO_MOUNTAIN_CLIMBER: "solo_mountain_climber",
|
|
15
|
-
SOLO_DESERT_EXPLORER: "solo_desert_explorer",
|
|
16
|
-
SOLO_JUNGLE_ADVENTURER: "solo_jungle_adventurer",
|
|
17
|
-
SOLO_ARCTIC_SURVIVOR: "solo_arctic_survivor",
|
|
18
|
-
SOLO_TREASURE_HUNTER: "solo_treasure_hunter",
|
|
19
|
-
// Cinematic
|
|
20
|
-
SOLO_FILM_NOIR_DETECTIVE: "solo_film_noir_detective",
|
|
21
|
-
SOLO_ACTION_HERO: "solo_action_hero",
|
|
22
|
-
SOLO_WESTERN_OUTLAW: "solo_western_outlaw",
|
|
23
|
-
SOLO_SPY_AGENT: "solo_spy_agent",
|
|
24
|
-
SOLO_SAMURAI_WARRIOR: "solo_samurai_warrior",
|
|
25
|
-
// Artistic
|
|
26
|
-
SOLO_RENAISSANCE_PORTRAIT: "solo_renaissance_portrait",
|
|
27
|
-
SOLO_POP_ART_ICON: "solo_pop_art_icon",
|
|
28
|
-
SOLO_IMPRESSIONIST_MUSE: "solo_impressionist_muse",
|
|
29
|
-
SOLO_BAROQUE_NOBLE: "solo_baroque_noble",
|
|
30
|
-
SOLO_SURREALIST_DREAM: "solo_surrealist_dream",
|
|
31
|
-
// Action
|
|
32
|
-
SOLO_MARTIAL_ARTIST: "solo_martial_artist",
|
|
33
|
-
SOLO_STREET_FIGHTER: "solo_street_fighter",
|
|
34
|
-
SOLO_NINJA_ASSASSIN: "solo_ninja_assassin",
|
|
35
|
-
SOLO_BOXING_CHAMPION: "solo_boxing_champion",
|
|
36
|
-
SOLO_PARKOUR_RUNNER: "solo_parkour_runner",
|
|
37
|
-
// Mythology
|
|
38
|
-
SOLO_GREEK_GOD: "solo_greek_god",
|
|
39
|
-
SOLO_NORSE_VIKING: "solo_norse_viking",
|
|
40
|
-
SOLO_EGYPTIAN_PHARAOH: "solo_egyptian_pharaoh",
|
|
41
|
-
SOLO_CELTIC_DRUID: "solo_celtic_druid",
|
|
42
|
-
SOLO_JAPANESE_SPIRIT: "solo_japanese_spirit",
|
|
43
|
-
// Sports
|
|
44
|
-
SOLO_SOCCER_STAR: "solo_soccer_star",
|
|
45
|
-
SOLO_BASKETBALL_LEGEND: "solo_basketball_legend",
|
|
46
|
-
SOLO_TENNIS_CHAMPION: "solo_tennis_champion",
|
|
47
|
-
SOLO_GOLF_MASTER: "solo_golf_master",
|
|
48
|
-
SOLO_SURFING_PRO: "solo_surfing_pro",
|
|
49
|
-
SOLO_SKI_CHAMPION: "solo_ski_champion",
|
|
50
|
-
} as const;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Thematic Worlds Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const THEMATIC_WORLDS_IDS = {
|
|
6
|
-
// Steampunk
|
|
7
|
-
AIRSHIP_CAPTAINS: "airship_captains",
|
|
8
|
-
CLOCKWORK_INVENTORS: "clockwork_inventors",
|
|
9
|
-
STEAM_GALA: "steam_gala",
|
|
10
|
-
MECHANICAL_FORGE: "mechanical_forge",
|
|
11
|
-
// Urban Nights
|
|
12
|
-
RAINY_CAR_INTIMACY: "rainy_car_intimacy",
|
|
13
|
-
ROOFTOP_EDGE_CITY: "rooftop_edge_city",
|
|
14
|
-
SUBWAY_LATE_NIGHT: "subway_late_night",
|
|
15
|
-
NEON_ALLEY_WHISPER: "neon_alley_whisper",
|
|
16
|
-
// Vintage Summer
|
|
17
|
-
ICE_CREAM_DATE: "ice_cream_date",
|
|
18
|
-
VINTAGE_CONVERTIBLE: "vintage_convertible",
|
|
19
|
-
RETRO_BEACH_DAY: "retro_beach_day",
|
|
20
|
-
DRIVE_IN_CINEMA: "drive_in_cinema",
|
|
21
|
-
// Art Studio
|
|
22
|
-
CANVAS_TOGETHER: "canvas_together",
|
|
23
|
-
PORTRAIT_SKETCHING: "portrait_sketching",
|
|
24
|
-
SCULPTING_LOVE: "sculpting_love",
|
|
25
|
-
GALLERY_WALK: "gallery_walk",
|
|
26
|
-
// Dark Academia
|
|
27
|
-
SECRET_LIBRARY_STUDY: "secret_library_study",
|
|
28
|
-
OXFORD_ACADEMIC_WALK: "oxford_academic_walk",
|
|
29
|
-
POETRY_CANDLELIGHT: "poetry_candlelight",
|
|
30
|
-
// Casino
|
|
31
|
-
HIGH_ROLLER_ROULETTE: "high_roller_roulette",
|
|
32
|
-
MARTINI_POWER_COUPLE: "martini_power_couple",
|
|
33
|
-
CASINO_HEIST_ESCAPE: "casino_heist_escape",
|
|
34
|
-
// Post-Apocalyptic
|
|
35
|
-
LAST_SURVIVORS_CABIN: "last_survivors_cabin",
|
|
36
|
-
WASTELAND_RAIDERS: "wasteland_raiders",
|
|
37
|
-
CITY_RECLAIMED_NATURE: "city_reclaimed_nature",
|
|
38
|
-
// Retro Arcade
|
|
39
|
-
ARCADE_HIGH_SCORE: "arcade_high_score",
|
|
40
|
-
NEON_ARCADE_DATE: "neon_arcade_date",
|
|
41
|
-
PIZZA_PIXELS_80S: "pizza_pixels_80s",
|
|
42
|
-
// Cozy Plush
|
|
43
|
-
PAJAMA_PILLOW_FIGHT: "pajama_pillow_fight",
|
|
44
|
-
GIANT_TEDDY_MOVIE: "giant_teddy_movie",
|
|
45
|
-
CLOUD_NINE_SOFTNESS: "cloud_nine_softness",
|
|
46
|
-
} as const;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Time Travel & Family Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const TIME_FAMILY_IDS = {
|
|
6
|
-
// Time Travel
|
|
7
|
-
FIVE_YEARS: "5_years",
|
|
8
|
-
TEN_YEARS: "10_years",
|
|
9
|
-
// Family
|
|
10
|
-
OLD_AGE: "old_age",
|
|
11
|
-
FUTURE_CHILD: "future_child",
|
|
12
|
-
PARENTHOOD: "parenthood",
|
|
13
|
-
ANNIVERSARY: "anniversary",
|
|
14
|
-
} as const;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Wedding Scenario IDs
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export const WEDDING_IDS = {
|
|
6
|
-
PROPOSAL: "proposal",
|
|
7
|
-
ENGAGEMENT_PARTY: "engagement_party",
|
|
8
|
-
DRESS_SHOPPING: "dress_shopping",
|
|
9
|
-
ENGAGEMENT_SHOOT: "engagement_shoot",
|
|
10
|
-
BRIDAL_SHOWER: "bridal_shower",
|
|
11
|
-
BACHELOR_PARTY: "bachelor_party",
|
|
12
|
-
CHURCH_WEDDING: "church_wedding",
|
|
13
|
-
GARDEN_WEDDING: "garden_wedding",
|
|
14
|
-
BEACH_WEDDING: "beach_wedding",
|
|
15
|
-
CASTLE_WEDDING: "castle_wedding",
|
|
16
|
-
RECEPTION_PARTY: "reception_party",
|
|
17
|
-
FIRST_DANCE: "first_dance",
|
|
18
|
-
CAKE_CUTTING: "cake_cutting",
|
|
19
|
-
HONEYMOON: "honeymoon",
|
|
20
|
-
} as const;
|