@umituz/react-native-ai-generation-content 1.20.22 → 1.20.23

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.20.22",
3
+ "version": "1.20.23",
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",
package/src/index.ts CHANGED
@@ -94,7 +94,7 @@ export {
94
94
  GenerateButton, ResultDisplay, AIGenerationResult, ErrorDisplay, FeatureHeader,
95
95
  AIGenScreenHeader, CreditBadge, PhotoUploadCard, SettingsSheet, StyleSelector,
96
96
  AspectRatioSelector, DurationSelector, GridSelector, StylePresetsGrid, AIGenerationForm,
97
- AIGenerationConfig,
97
+ AIGenerationConfig, AIGenerateWizardFlow,
98
98
  createAspectRatioOptions, createDurationOptions, createStyleOptions, createStyleOptionsFromConfig,
99
99
  ASPECT_RATIO_IDS, COMMON_DURATIONS,
100
100
  } from "./presentation/components";
@@ -125,7 +125,7 @@ export type {
125
125
  AspectRatioSelectorProps, DurationSelectorProps, GridSelectorProps, GridSelectorOption,
126
126
  StyleOption, AspectRatioOption, DurationValue, AspectRatioTranslations, DurationOption,
127
127
  StyleTranslations, AIGenerationFormProps, AIGenerationFormTranslations,
128
- AIGenerationConfigProps,
128
+ AIGenerationConfigProps, AIGenerateWizardFlowProps,
129
129
  } from "./presentation/components";
130
130
 
131
131
  export { DEFAULT_SINGLE_PHOTO_FLOW, DEFAULT_DUAL_PHOTO_FLOW } from "./presentation/types/flow-config.types";