@umituz/react-native-ai-generation-content 1.10.1 → 1.10.2

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 +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/index.ts CHANGED
@@ -180,6 +180,11 @@ export {
180
180
  PendingJobCard,
181
181
  PendingJobProgressBar,
182
182
  PendingJobCardActions,
183
+ GenerationResultContent,
184
+ ResultHeader,
185
+ ResultImageCard,
186
+ ResultStoryCard,
187
+ ResultActions,
183
188
  } from "./presentation/components";
184
189
 
185
190
  export type {
@@ -191,4 +196,10 @@ export type {
191
196
  StatusLabels,
192
197
  PendingJobProgressBarProps,
193
198
  PendingJobCardActionsProps,
199
+ GenerationResultData,
200
+ GenerationResultContentProps,
201
+ ResultHeaderProps,
202
+ ResultImageCardProps,
203
+ ResultStoryCardProps,
204
+ ResultActionsProps,
194
205
  } from "./presentation/components";