@umituz/react-native-ai-generation-content 1.17.29 → 1.17.30
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/index.ts +12 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -121,6 +121,10 @@ export {
|
|
|
121
121
|
createJobPoller,
|
|
122
122
|
generationWrapper,
|
|
123
123
|
createGenerationWrapper,
|
|
124
|
+
executeImageFeature,
|
|
125
|
+
hasImageFeatureSupport,
|
|
126
|
+
executeVideoFeature,
|
|
127
|
+
hasVideoFeatureSupport,
|
|
124
128
|
} from "./infrastructure/services";
|
|
125
129
|
|
|
126
130
|
export type {
|
|
@@ -128,6 +132,14 @@ export type {
|
|
|
128
132
|
PollJobOptions,
|
|
129
133
|
PollJobResult,
|
|
130
134
|
WrapperConfig,
|
|
135
|
+
ImageResultExtractor,
|
|
136
|
+
ExecuteImageFeatureOptions,
|
|
137
|
+
ImageFeatureResult,
|
|
138
|
+
ImageFeatureRequest,
|
|
139
|
+
VideoResultExtractor,
|
|
140
|
+
ExecuteVideoFeatureOptions,
|
|
141
|
+
VideoFeatureResult,
|
|
142
|
+
VideoFeatureRequest,
|
|
131
143
|
} from "./infrastructure/services";
|
|
132
144
|
|
|
133
145
|
// =============================================================================
|