@omelhorsite/sdk 0.17.0 → 0.18.0

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.
@@ -37,6 +37,7 @@ import { type JobsNamespace } from "../jobs";
37
37
  import { BackgroundRemovalNamespace } from "./backgroundRemoval";
38
38
  import { CaptionsNamespace } from "./captions";
39
39
  import { DownloaderNamespace } from "./downloader";
40
+ import { ImageGenerationNamespace } from "./imageGeneration";
40
41
  import { JumpstyleNamespace } from "./jumpstyle";
41
42
  import { TranscriptionNamespace } from "./transcription";
42
43
  import { UpscaleNamespace } from "./upscale";
@@ -45,6 +46,7 @@ import { VocalSeparationNamespace } from "./vocalSeparation";
45
46
  export * from "./backgroundRemoval";
46
47
  export * from "./captions";
47
48
  export * from "./downloader";
49
+ export * from "./imageGeneration";
48
50
  export * from "./jumpstyle";
49
51
  export * from "./transcription";
50
52
  export * from "./upscale";
@@ -247,6 +249,8 @@ export declare class ToolsNamespace extends Resource {
247
249
  readonly backgroundRemoval: BackgroundRemovalNamespace;
248
250
  /** Enlarges an image without the mush. */
249
251
  readonly upscale: UpscaleNamespace;
252
+ /** A prompt in, a PNG out. Runs on the server or at a paid provider. */
253
+ readonly imageGeneration: ImageGenerationNamespace;
250
254
  /** Speech to text, with SRT and VTT output. */
251
255
  readonly transcription: TranscriptionNamespace;
252
256
  /** Splits a track into vocals and instrumental. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omelhorsite/sdk",
3
- "version": "0.17.0",
3
+ "version": "0.18.0",
4
4
  "description": "TypeScript SDK for the omelhorsite API. Isolate-safe: no node builtins, no environment access, no stdout.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",