@runware/sdk-js 1.2.2 → 1.2.4-beta.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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +43 -1
- package/dist/index.d.ts +43 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runware/sdk-js",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4-beta.1",
|
|
4
4
|
"description": "The SDK is used to run image inference with the Runware API, powered by the RunWare inference platform. It can be used to generate imaged with text-to-image and image-to-image. It also allows the use of an existing gallery of models or selecting any model or LoRA from the CivitAI gallery. The API also supports upscaling, background removal, inpainting and outpainting, and a series of other ControlNet models.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
package/readme.md
CHANGED
|
@@ -491,7 +491,6 @@ return interface IAudio {
|
|
|
491
491
|
}
|
|
492
492
|
```
|
|
493
493
|
|
|
494
|
-
|
|
495
494
|
### Model Upload
|
|
496
495
|
|
|
497
496
|
[Read Documentation](https://docs.runware.ai/en/image-inference/model-upload)
|
|
@@ -740,6 +739,14 @@ export type TImageMaskingResponse = {
|
|
|
740
739
|
|
|
741
740
|
## Changelog
|
|
742
741
|
|
|
742
|
+
### - v1.2.4
|
|
743
|
+
|
|
744
|
+
- Add 3d inference
|
|
745
|
+
|
|
746
|
+
### - v1.2.3
|
|
747
|
+
|
|
748
|
+
- Handle async delivery method for image inference
|
|
749
|
+
|
|
743
750
|
### - v1.2.2
|
|
744
751
|
|
|
745
752
|
- Added audioInference task type
|
|
@@ -771,7 +778,6 @@ Breaking change: `imageUUID` can now be undefined when using removeBackground/re
|
|
|
771
778
|
**Added or Changed**
|
|
772
779
|
|
|
773
780
|
- Added method aliases so task types match those of official API. It is recommended to use these new aliases going forward:
|
|
774
|
-
|
|
775
781
|
- imageInference > requestImages
|
|
776
782
|
- controlNetPreprocess > controlNetPreProcess
|
|
777
783
|
- caption > requestImageToText
|