@civitai/client 0.2.0-beta.31 → 0.2.0-beta.32
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/generated/schemas.gen.d.ts +2083 -2028
- package/dist/generated/schemas.gen.js +2093 -2031
- package/dist/generated/sdk.gen.d.ts +45 -0
- package/dist/generated/sdk.gen.js +63 -0
- package/dist/generated/services.gen.d.ts +88 -90
- package/dist/generated/services.gen.js +100 -147
- package/dist/generated/types.gen.d.ts +681 -5
- package/dist/generated/types.gen.js +17 -0
- package/dist/utils/types.d.ts +3 -0
- package/dist/utils/types.js +1 -0
- package/package.json +2 -2
|
@@ -16,6 +16,13 @@ export const AnylineMergeWith = {
|
|
|
16
16
|
LINEART_ANIME: 'lineart_anime',
|
|
17
17
|
MANGA_LINE: 'manga_line',
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* Determines how regions are applied to the blur operation.
|
|
21
|
+
*/
|
|
22
|
+
export const BlurRegionMode = {
|
|
23
|
+
INCLUDE: 'include',
|
|
24
|
+
EXCLUDE: 'exclude',
|
|
25
|
+
};
|
|
19
26
|
export const BuzzClientAccount = {
|
|
20
27
|
YELLOW: 'yellow',
|
|
21
28
|
BLUE: 'blue',
|
|
@@ -134,6 +141,13 @@ export const KlingModel = {
|
|
|
134
141
|
V2: 'v2',
|
|
135
142
|
V2_5_TURBO: 'v2.5-turbo',
|
|
136
143
|
};
|
|
144
|
+
export const KlingV3Operation = {
|
|
145
|
+
TEXT_TO_VIDEO: 'text-to-video',
|
|
146
|
+
IMAGE_TO_VIDEO: 'image-to-video',
|
|
147
|
+
REFERENCE_TO_VIDEO: 'reference-to-video',
|
|
148
|
+
VIDEO_TO_VIDEO_EDIT: 'video-to-video-edit',
|
|
149
|
+
VIDEO_TO_VIDEO_REFERENCE: 'video-to-video-reference',
|
|
150
|
+
};
|
|
137
151
|
export const KlingVideoGenAspectRatio = {
|
|
138
152
|
'16:9': '16:9',
|
|
139
153
|
'9:16': '9:16',
|
|
@@ -235,6 +249,8 @@ export const SdCppSampleMethod = {
|
|
|
235
249
|
DDIM_TRAILING: 'ddim_trailing',
|
|
236
250
|
EULER_A: 'euler_a',
|
|
237
251
|
LCM: 'lcm',
|
|
252
|
+
RES_MULTISTEP: 'res_multistep',
|
|
253
|
+
RES_2S: 'res_2s',
|
|
238
254
|
};
|
|
239
255
|
export const SdCppSchedule = {
|
|
240
256
|
SIMPLE: 'simple',
|
|
@@ -242,6 +258,7 @@ export const SdCppSchedule = {
|
|
|
242
258
|
KARRAS: 'karras',
|
|
243
259
|
EXPONENTIAL: 'exponential',
|
|
244
260
|
AYS: 'ays',
|
|
261
|
+
BONG_TANGENT: 'bong_tangent',
|
|
245
262
|
};
|
|
246
263
|
export const SeedreamVersion = {
|
|
247
264
|
V3: 'v3',
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@civitai/client",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.32",
|
|
4
4
|
"description": "Civitai's javascript client for generating ai content",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -54,4 +54,4 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
}
|
|
57
|
-
}
|
|
57
|
+
}
|