@runware/sdk-js 1.1.9 → 1.1.11
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/Runware-base-EVIFLT6I.mjs +8 -0
- package/dist/Runware-client-RIKDIM4I.mjs +6 -0
- package/dist/chunk-GKWTIXRV.mjs +1064 -0
- package/dist/chunk-IZ7MFCL7.mjs +1249 -0
- package/dist/index.d.mts +14 -38
- package/dist/index.d.ts +14 -38
- package/dist/index.js +44 -41
- package/dist/index.mjs +43 -41
- package/package.json +1 -1
- package/readme.md +15 -6
package/readme.md
CHANGED
|
@@ -62,7 +62,7 @@ const images = await runware.requestImages({
|
|
|
62
62
|
maskImage?: File | string;
|
|
63
63
|
strength?: number;
|
|
64
64
|
steps?: number;
|
|
65
|
-
|
|
65
|
+
scheduler?: string;
|
|
66
66
|
seed?: number;
|
|
67
67
|
CFGScale?: number;
|
|
68
68
|
clipSkip?: number;
|
|
@@ -70,10 +70,6 @@ const images = await runware.requestImages({
|
|
|
70
70
|
controlNet?: IControlNet[];
|
|
71
71
|
lora?: ILora[];
|
|
72
72
|
retry?: number;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
useCache?: boolean;
|
|
76
|
-
returnBase64Image?: boolean;
|
|
77
73
|
onPartialImages?: (images: IImage[], error: IError) => void;
|
|
78
74
|
})
|
|
79
75
|
|
|
@@ -364,7 +360,20 @@ return interface IControlNetImage {
|
|
|
364
360
|
|
|
365
361
|
## Changelog
|
|
366
362
|
|
|
367
|
-
### - v1.1.
|
|
363
|
+
### - v1.1.11
|
|
364
|
+
|
|
365
|
+
**Added or Changed**
|
|
366
|
+
|
|
367
|
+
- Automatically detect environment with Runware
|
|
368
|
+
- Fix invalid images not returning server errors
|
|
369
|
+
|
|
370
|
+
### - v1.1.10
|
|
371
|
+
|
|
372
|
+
**Added or Changed**
|
|
373
|
+
|
|
374
|
+
- Add disconnect method
|
|
375
|
+
|
|
376
|
+
### - v1.1.9
|
|
368
377
|
|
|
369
378
|
**Added or Changed**
|
|
370
379
|
|