@civitai/client 0.2.0-beta.52 → 0.2.0-beta.54

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.
@@ -16,6 +16,10 @@ export const AnylineMergeWith = {
16
16
  LINEART_ANIME: 'lineart_anime',
17
17
  MANGA_LINE: 'manga_line',
18
18
  };
19
+ /**
20
+ * Container format for a Civitai.Orchestration.Grains.Workflows.Steps.BlobArchive.BlobArchiveStep output.
21
+ */
22
+ export const ArchiveFormat = { ZIP: 'zip', TAR: 'tar' };
19
23
  /**
20
24
  * Determines how regions are applied to the blur operation.
21
25
  */
@@ -146,8 +150,39 @@ export const ImageResouceTrainingModerationStatus = {
146
150
  */
147
151
  export const ImageTransformer = {
148
152
  CANNY: 'canny',
153
+ MLSD: 'mlsd',
149
154
  DEPTH_ZOE: 'depthZoe',
155
+ DEPTH_ANYTHING: 'depthAnything',
156
+ DEPTH_ANYTHING_V2: 'depthAnythingV2',
157
+ ZOE_DEPTH_ANYTHING: 'zoeDepthAnything',
158
+ ZOE_DEPTH: 'zoeDepth',
159
+ MIDAS_DEPTH: 'midasDepth',
160
+ LERES_DEPTH: 'leresDepth',
161
+ METRIC3D_DEPTH: 'metric3dDepth',
150
162
  SOFTEDGE_PIDINET: 'softedgePidinet',
163
+ HED: 'hed',
164
+ TEED: 'teed',
165
+ MIDAS_NORMAL: 'midasNormal',
166
+ BAE_NORMAL: 'baeNormal',
167
+ DSINE_NORMAL: 'dsineNormal',
168
+ METRIC3D_NORMAL: 'metric3dNormal',
169
+ LINEART_REALISTIC: 'lineartRealistic',
170
+ LINEART_STANDARD: 'lineartStandard',
171
+ LINEART_ANIME: 'lineartAnime',
172
+ LINEART_MANGA: 'lineartManga',
173
+ ANYLINE: 'anyline',
174
+ SCRIBBLE: 'scribble',
175
+ SCRIBBLE_XDOG: 'scribbleXdog',
176
+ SCRIBBLE_PIDINET: 'scribblePidinet',
177
+ FAKE_SCRIBBLE: 'fakeScribble',
178
+ OPENPOSE: 'openpose',
179
+ DWPOSE: 'dwpose',
180
+ ONEFORMER_COCO: 'oneformerCoco',
181
+ ONEFORMER_ADE20K: 'oneformerAde20k',
182
+ UNIFORMER: 'uniformer',
183
+ SHUFFLE: 'shuffle',
184
+ TILE: 'tile',
185
+ GRAY: 'gray',
151
186
  REMBG: 'rembg',
152
187
  };
153
188
  /**
@@ -280,6 +315,7 @@ export const SdCppSchedule = {
280
315
  LCM: 'lcm',
281
316
  };
282
317
  export const SdCppUCacheMode = { OFF: 'off', NORMAL: 'normal' };
318
+ export const SeedanceModel = { V2: 'v2', V2_FAST: 'v2-fast' };
283
319
  export const SeedreamVersion = {
284
320
  V3: 'v3',
285
321
  V4: 'v4',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@civitai/client",
3
- "version": "0.2.0-beta.52",
3
+ "version": "0.2.0-beta.54",
4
4
  "description": "Civitai's javascript client for generating ai content",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",