@umituz/react-native-ai-generation-content 1.41.4 → 1.41.6
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/domains/scenarios/domain/scenario-ids/cinematic-artistic.ids.ts +5 -0
- package/src/domains/scenarios/domain/scenario-ids/fantasy-scifi.ids.ts +6 -1
- package/src/domains/scenarios/domain/scenario-ids/historical-fashion.ids.ts +4 -0
- package/src/domains/scenarios/domain/scenario-ids/hobbies-career.ids.ts +3 -0
- package/src/domains/scenarios/domain/scenario-ids/lifestyle.ids.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.41.
|
|
3
|
+
"version": "1.41.6",
|
|
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",
|
|
@@ -15,4 +15,9 @@ export const CINEMATIC_ARTISTIC_IDS = {
|
|
|
15
15
|
ANIME_DREAM: "anime_dream",
|
|
16
16
|
// Creative
|
|
17
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",
|
|
18
23
|
} as const;
|
|
@@ -41,7 +41,12 @@ export const FANTASY_SCIFI_IDS = {
|
|
|
41
41
|
AI_COMMAND: "ai_command",
|
|
42
42
|
ANDROID_LOVERS: "android_lovers",
|
|
43
43
|
// Elemental
|
|
44
|
-
FIRE_ICE_DYNAMIC: "fire_ice_dynamic",
|
|
45
44
|
EARTH_SHAPER_STRENGTH: "earth_shaper_strength",
|
|
46
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",
|
|
47
52
|
} as const;
|
|
@@ -17,4 +17,8 @@ export const HISTORICAL_FASHION_IDS = {
|
|
|
17
17
|
STEAMPUNK: "steampunk",
|
|
18
18
|
HIGH_FASHION: "high_fashion",
|
|
19
19
|
GRUNGE_90S: "grunge_90s",
|
|
20
|
+
// New
|
|
21
|
+
VICTORIAN_ERA: "victorian_era",
|
|
22
|
+
ENCHANTED_FOREST_FOLKLORE: "enchanted_forest_folklore",
|
|
23
|
+
FIFTIES_DINER: "fifties_diner",
|
|
20
24
|
} as const;
|
|
@@ -26,4 +26,14 @@ export const LIFESTYLE_IDS = {
|
|
|
26
26
|
ANIME_HIGHSCHOOL: "anime_highschool",
|
|
27
27
|
RETRO_VAPORWAVE: "retro_vaporwave",
|
|
28
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",
|
|
29
39
|
} as const;
|