@umituz/react-native-ai-generation-content 1.62.2 → 1.62.4

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.62.2",
3
+ "version": "1.62.4",
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",
@@ -15,12 +15,12 @@ export {
15
15
 
16
16
  // Services
17
17
  export {
18
- providerRegistry, generationOrchestrator, pollJob, createJobPoller,
18
+ providerRegistry, generationOrchestrator,
19
19
  executeImageFeature, hasImageFeatureSupport, executeVideoFeature, hasVideoFeatureSupport,
20
20
  submitVideoFeatureToQueue, executeMultiImageGeneration,
21
21
  } from "../infrastructure/services";
22
22
  export type {
23
- OrchestratorConfig, PollJobOptions, PollJobResult, ImageResultExtractor,
23
+ OrchestratorConfig, ImageResultExtractor,
24
24
  ExecuteImageFeatureOptions, ImageFeatureResult, ImageFeatureRequest,
25
25
  ExecuteVideoFeatureOptions, VideoFeatureResult, VideoFeatureRequest,
26
26
  MultiImageGenerationInput, MultiImageGenerationResult,
@@ -10,7 +10,7 @@ import type {
10
10
  PollingConfig,
11
11
  } from "../../domain/entities";
12
12
  import { classifyError } from "../utils/error-classifier.util";
13
- import { pollJob } from "./job-poller.service";
13
+ import { pollJob } from "../../domains/background/infrastructure/services/job-poller.service";
14
14
  import { ProviderValidator } from "./provider-validator";
15
15
 
16
16
  declare const __DEV__: boolean;
@@ -5,9 +5,6 @@
5
5
  export { providerRegistry } from "./provider-registry.service";
6
6
  export { generationOrchestrator } from "./generation-orchestrator.service";
7
7
  export type { OrchestratorConfig } from "./generation-orchestrator.service";
8
- export { pollJob } from "./job-poller.service";
9
- export { createJobPoller } from "./job-poller-factory";
10
- export type { PollJobOptions, PollJobResult } from "./job-poller.service";
11
8
  export {
12
9
  executeImageFeature,
13
10
  hasImageFeatureSupport,