@umituz/react-native-ai-generation-content 1.26.5 → 1.26.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 -2
- package/src/domains/generation/application/generation-strategy.factory.ts +1 -1
- package/src/domains/generation/index.ts +3 -8
- package/src/{infrastructure → domains/generation/infrastructure}/executors/image-executor.ts +2 -2
- package/src/{infrastructure → domains/generation/infrastructure}/executors/video-executor.ts +2 -2
- package/src/index.ts +0 -21
- /package/src/{infrastructure → domains/generation/infrastructure}/executors/executor-factory.ts +0 -0
- /package/src/{infrastructure → domains/generation/infrastructure}/flow/index.ts +0 -0
- /package/src/{infrastructure → domains/generation/infrastructure}/flow/step-builder.ts +0 -0
- /package/src/{infrastructure → domains/generation/infrastructure}/flow/useFlow.ts +0 -0
- /package/src/{infrastructure → domains/generation/infrastructure}/flow/useFlowStore.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/domain/entities/wizard-config.types.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/index.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/infrastructure/builders/dynamic-step-builder.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/infrastructure/renderers/step-renderer.tsx +0 -0
- /package/src/domains/{wizard → generation/wizard}/infrastructure/strategies/index.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/infrastructure/strategies/wizard-strategy.factory.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/components/GenericWizardFlow.tsx +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/hooks/usePhotoUploadState.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/hooks/useWizardGeneration.ts +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/screens/GeneratingScreen.tsx +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/screens/GenericPhotoUploadScreen.tsx +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/steps/PhotoUploadStep.tsx +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/steps/SelectionStep.tsx +0 -0
- /package/src/domains/{wizard → generation/wizard}/presentation/steps/TextInputStep.tsx +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.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",
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"./creations": "./src/domains/creations/index.ts",
|
|
12
12
|
"./face-detection": "./src/domains/face-detection/index.ts",
|
|
13
13
|
"./feature-background": "./src/domains/feature-background/index.ts",
|
|
14
|
-
"./wizard": "./src/domains/wizard/index.ts",
|
|
15
14
|
"./generation": "./src/domains/generation/index.ts"
|
|
16
15
|
},
|
|
17
16
|
"files": [
|
|
@@ -11,7 +11,7 @@ import type {
|
|
|
11
11
|
ImageGenerationOutput,
|
|
12
12
|
VideoGenerationOutput,
|
|
13
13
|
} from "../domain/generation.types";
|
|
14
|
-
import { ExecutorFactory } from "
|
|
14
|
+
import { ExecutorFactory } from "../infrastructure/executors/executor-factory";
|
|
15
15
|
import { featureRegistry } from "./feature-registry";
|
|
16
16
|
|
|
17
17
|
declare const __DEV__: boolean;
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generation Domain
|
|
3
|
-
* Generic, feature-agnostic AI generation system
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
// Presentation Layer
|
|
7
1
|
export {
|
|
8
2
|
useAIGeneration,
|
|
9
3
|
type UseAIGenerationProps,
|
|
@@ -11,11 +5,9 @@ export {
|
|
|
11
5
|
type AlertMessages,
|
|
12
6
|
} from "./presentation/useAIGeneration.hook";
|
|
13
7
|
|
|
14
|
-
// Application Layer
|
|
15
8
|
export { featureRegistry } from "./application/feature-registry";
|
|
16
9
|
export { createGenerationStrategy } from "./application/generation-strategy.factory";
|
|
17
10
|
|
|
18
|
-
// Domain Layer
|
|
19
11
|
export type {
|
|
20
12
|
FeatureConfig,
|
|
21
13
|
FeatureRegistration,
|
|
@@ -35,3 +27,6 @@ export type {
|
|
|
35
27
|
MemeGenerationInput,
|
|
36
28
|
MemeGenerationOutput,
|
|
37
29
|
} from "./domain/generation.types";
|
|
30
|
+
|
|
31
|
+
export * from "./wizard";
|
|
32
|
+
export * from "./infrastructure/flow";
|
package/src/{infrastructure → domains/generation/infrastructure}/executors/image-executor.ts
RENAMED
|
@@ -9,8 +9,8 @@ import type {
|
|
|
9
9
|
ImageGenerationOutput,
|
|
10
10
|
GenerationOptions,
|
|
11
11
|
GenerationResult,
|
|
12
|
-
} from "../../
|
|
13
|
-
import { providerRegistry } from "
|
|
12
|
+
} from "../../domain/generation.types";
|
|
13
|
+
import { providerRegistry } from "../../../../infrastructure/services/provider-registry.service";
|
|
14
14
|
|
|
15
15
|
declare const __DEV__: boolean;
|
|
16
16
|
|
package/src/{infrastructure → domains/generation/infrastructure}/executors/video-executor.ts
RENAMED
|
@@ -9,8 +9,8 @@ import type {
|
|
|
9
9
|
VideoGenerationOutput,
|
|
10
10
|
GenerationOptions,
|
|
11
11
|
GenerationResult,
|
|
12
|
-
} from "../../
|
|
13
|
-
import { providerRegistry } from "
|
|
12
|
+
} from "../../domain/generation.types";
|
|
13
|
+
import { providerRegistry } from "../../../../infrastructure/services/provider-registry.service";
|
|
14
14
|
|
|
15
15
|
declare const __DEV__: boolean;
|
|
16
16
|
|
package/src/index.ts
CHANGED
|
@@ -183,25 +183,4 @@ export type {
|
|
|
183
183
|
} from "./presentation/screens/ai-feature";
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
// Flow System - Dynamic multi-step flow management
|
|
187
|
-
export { createFlowStore, useFlow, resetFlowStore } from "./infrastructure/flow";
|
|
188
|
-
export type { FlowStoreType } from "./infrastructure/flow";
|
|
189
|
-
export { StepType } from "./domain/entities/flow-config.types";
|
|
190
|
-
export type {
|
|
191
|
-
StepDefinition,
|
|
192
|
-
FlowState,
|
|
193
|
-
FlowActions,
|
|
194
|
-
FlowConfiguration,
|
|
195
|
-
FlowCallbacks,
|
|
196
|
-
FlowDataProvider,
|
|
197
|
-
FlowFeatures,
|
|
198
|
-
StepComponentProps,
|
|
199
|
-
StepTransition,
|
|
200
|
-
PartnerConfig,
|
|
201
|
-
FlowVisualStyleData,
|
|
202
|
-
FlowUploadedImageData,
|
|
203
|
-
FlowGenerationStatus,
|
|
204
|
-
} from "./domain/entities/flow-config.types";
|
|
205
|
-
|
|
206
|
-
export * from "./domains/wizard";
|
|
207
186
|
export * from "./domains/generation";
|
/package/src/{infrastructure → domains/generation/infrastructure}/executors/executor-factory.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/domains/{wizard → generation/wizard}/infrastructure/builders/dynamic-step-builder.ts
RENAMED
|
File without changes
|
/package/src/domains/{wizard → generation/wizard}/infrastructure/renderers/step-renderer.tsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/domains/{wizard → generation/wizard}/presentation/components/GenericWizardFlow.tsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/domains/{wizard → generation/wizard}/presentation/screens/GenericPhotoUploadScreen.tsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|