@runware/sdk-js 1.2.0-beta.1 → 1.2.0-beta.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runware/sdk-js",
3
- "version": "1.2.0-beta.1",
3
+ "version": "1.2.0-beta.2",
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
@@ -682,8 +682,9 @@ export type TImageMaskingResponse = {
682
682
  ### - v1.2.0
683
683
 
684
684
  - Change removeImageBackground taskType from `removeImageBackground` to `removeBackground` -- removeBackground is compatible with removeImageBackground but it also supports other media inputs such as removing backgrounds from videos
685
+ - Change upscaleGan taskType from `upscaleImage` to `upscale` -- upscale is compatible with upscaleImage but it also supports other media inputs such as upscaling video.
685
686
 
686
- Breaking change: `imageUUID` can now be undefined when using removeBackground and removeImageBackground.
687
+ Breaking change: `imageUUID` can now be undefined when using removeBackground/removeImageBackground and upscale/upscaleGan.
687
688
 
688
689
  ### - v1.1.50
689
690