@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.
- package/dist/index.js +527 -19
- package/dist/types/auth/tokens.d.ts +1 -1
- package/dist/types/client.d.ts +3 -0
- package/dist/types/resources/admin/llm.d.ts +34 -0
- package/dist/types/resources/bots.d.ts +394 -0
- package/dist/types/resources/content/news/feeds.d.ts +9 -2
- package/dist/types/resources/content/news/index.d.ts +23 -0
- package/dist/types/resources/content/news/sources.d.ts +61 -5
- package/dist/types/resources/content/notifications.d.ts +1 -1
- package/dist/types/resources/cron.d.ts +303 -26
- package/dist/types/resources/index.d.ts +1 -0
- package/dist/types/resources/search.d.ts +5 -0
- package/dist/types/resources/tools/imageGeneration.d.ts +156 -0
- package/dist/types/resources/tools/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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