@umituz/react-native-ai-generation-content 1.32.0 → 1.33.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.32.0",
3
+ "version": "1.33.1",
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",
@@ -69,10 +69,10 @@ const INPUT_PATTERNS: Record<WizardInputType, RegExp[]> = {
69
69
  * Returns SINGLE_IMAGE as safe default
70
70
  */
71
71
  export const detectWizardInputType = (scenarioId: string): WizardInputType => {
72
- // Check patterns in priority order: TEXT_INPUT, SINGLE_IMAGE, DUAL_IMAGE_FACE
73
- // DUAL_IMAGE has no patterns - must be explicitly specified
72
+ // Check patterns in priority order: TEXT_INPUT, DUAL_IMAGE, DUAL_IMAGE_FACE, SINGLE_IMAGE
74
73
  const checkOrder: WizardInputType[] = [
75
74
  WizardInputType.TEXT_INPUT,
75
+ WizardInputType.DUAL_IMAGE,
76
76
  WizardInputType.DUAL_IMAGE_FACE,
77
77
  WizardInputType.SINGLE_IMAGE,
78
78
  ];