@civitai/client 0.1.9-beta.8 → 0.1.9-beta.9
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.
|
@@ -866,6 +866,13 @@ export declare const $HaiperVideoGenInput: {
|
|
|
866
866
|
readonly format: 'uri';
|
|
867
867
|
readonly nullable: true;
|
|
868
868
|
};
|
|
869
|
+
readonly model: {
|
|
870
|
+
readonly $ref: '#/components/schemas/HaiperVideoGenModel';
|
|
871
|
+
};
|
|
872
|
+
readonly resolution: {
|
|
873
|
+
readonly type: 'integer';
|
|
874
|
+
readonly format: 'int32';
|
|
875
|
+
};
|
|
869
876
|
};
|
|
870
877
|
readonly additionalProperties: false;
|
|
871
878
|
},
|
|
@@ -922,6 +929,13 @@ export declare const $HaiperVideoGenJob: {
|
|
|
922
929
|
readonly format: 'uri';
|
|
923
930
|
readonly nullable: true;
|
|
924
931
|
};
|
|
932
|
+
readonly model: {
|
|
933
|
+
readonly $ref: '#/components/schemas/HaiperVideoGenModel';
|
|
934
|
+
};
|
|
935
|
+
readonly resolution: {
|
|
936
|
+
readonly type: 'integer';
|
|
937
|
+
readonly format: 'int32';
|
|
938
|
+
};
|
|
925
939
|
readonly claimDuration: {
|
|
926
940
|
readonly type: 'string';
|
|
927
941
|
readonly format: 'date-span';
|
|
@@ -942,6 +956,10 @@ export declare const $HaiperVideoGenJob: {
|
|
|
942
956
|
};
|
|
943
957
|
};
|
|
944
958
|
};
|
|
959
|
+
export declare const $HaiperVideoGenModel: {
|
|
960
|
+
readonly enum: readonly ['v1_5', 'v2'];
|
|
961
|
+
readonly type: 'string';
|
|
962
|
+
};
|
|
945
963
|
export declare const $HaiperVideoGenOutput: {
|
|
946
964
|
readonly allOf: readonly [
|
|
947
965
|
{
|
|
@@ -1581,6 +1599,7 @@ export declare const $Job: {
|
|
|
1581
1599
|
readonly batchOCRSafetyClassification: '#/components/schemas/BatchOCRSafetyClassificationJob';
|
|
1582
1600
|
readonly gate: '#/components/schemas/GateJob';
|
|
1583
1601
|
readonly haiper: '#/components/schemas/HaiperVideoGenJob';
|
|
1602
|
+
readonly mochi: '#/components/schemas/MochiVideoGenJob';
|
|
1584
1603
|
};
|
|
1585
1604
|
};
|
|
1586
1605
|
};
|
|
@@ -1949,6 +1968,78 @@ export declare const $MediaTaggingJob: {
|
|
|
1949
1968
|
};
|
|
1950
1969
|
};
|
|
1951
1970
|
};
|
|
1971
|
+
export declare const $MochiVideoGenInput: {
|
|
1972
|
+
readonly required: readonly ['engine'];
|
|
1973
|
+
readonly allOf: readonly [
|
|
1974
|
+
{
|
|
1975
|
+
readonly $ref: '#/components/schemas/VideoGenInput';
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
readonly type: 'object';
|
|
1979
|
+
readonly properties: {
|
|
1980
|
+
readonly seed: {
|
|
1981
|
+
readonly maximum: 2147483647;
|
|
1982
|
+
readonly minimum: -1;
|
|
1983
|
+
readonly type: 'integer';
|
|
1984
|
+
readonly format: 'int64';
|
|
1985
|
+
};
|
|
1986
|
+
};
|
|
1987
|
+
readonly additionalProperties: false;
|
|
1988
|
+
},
|
|
1989
|
+
];
|
|
1990
|
+
readonly properties: {
|
|
1991
|
+
readonly engine: {
|
|
1992
|
+
readonly enum: readonly ['mochi'];
|
|
1993
|
+
readonly type: 'string';
|
|
1994
|
+
};
|
|
1995
|
+
};
|
|
1996
|
+
};
|
|
1997
|
+
export declare const $MochiVideoGenJob: {
|
|
1998
|
+
readonly required: readonly ['$type'];
|
|
1999
|
+
readonly allOf: readonly [
|
|
2000
|
+
{
|
|
2001
|
+
readonly $ref: '#/components/schemas/Job';
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
readonly required: readonly ['destinationUrl', 'mediaHash', 'prompt'];
|
|
2005
|
+
readonly type: 'object';
|
|
2006
|
+
readonly properties: {
|
|
2007
|
+
readonly prompt: {
|
|
2008
|
+
readonly type: 'string';
|
|
2009
|
+
};
|
|
2010
|
+
readonly seed: {
|
|
2011
|
+
readonly maximum: 4294967295;
|
|
2012
|
+
readonly minimum: -1;
|
|
2013
|
+
readonly type: 'integer';
|
|
2014
|
+
readonly format: 'int64';
|
|
2015
|
+
};
|
|
2016
|
+
readonly mediaHash: {
|
|
2017
|
+
readonly type: 'string';
|
|
2018
|
+
};
|
|
2019
|
+
readonly destinationUrl: {
|
|
2020
|
+
readonly type: 'string';
|
|
2021
|
+
readonly format: 'uri';
|
|
2022
|
+
};
|
|
2023
|
+
readonly type: {
|
|
2024
|
+
readonly type: 'string';
|
|
2025
|
+
readonly readOnly: true;
|
|
2026
|
+
};
|
|
2027
|
+
readonly claimDuration: {
|
|
2028
|
+
readonly type: 'string';
|
|
2029
|
+
readonly format: 'date-span';
|
|
2030
|
+
readonly readOnly: true;
|
|
2031
|
+
};
|
|
2032
|
+
};
|
|
2033
|
+
readonly additionalProperties: false;
|
|
2034
|
+
},
|
|
2035
|
+
];
|
|
2036
|
+
readonly properties: {
|
|
2037
|
+
readonly $type: {
|
|
2038
|
+
readonly enum: readonly ['mochi'];
|
|
2039
|
+
readonly type: 'string';
|
|
2040
|
+
};
|
|
2041
|
+
};
|
|
2042
|
+
};
|
|
1952
2043
|
export declare const $MovieRatingJob: {
|
|
1953
2044
|
readonly required: readonly ['$type'];
|
|
1954
2045
|
readonly allOf: readonly [
|
|
@@ -2928,6 +3019,7 @@ export declare const $VideoGenInput: {
|
|
|
2928
3019
|
readonly propertyName: 'engine';
|
|
2929
3020
|
readonly mapping: {
|
|
2930
3021
|
readonly haiper: '#/components/schemas/HaiperVideoGenInput';
|
|
3022
|
+
readonly mochi: '#/components/schemas/MochiVideoGenInput';
|
|
2931
3023
|
};
|
|
2932
3024
|
};
|
|
2933
3025
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.$
|
|
5
|
-
exports.$
|
|
6
|
-
exports.$
|
|
7
|
-
exports.$WorkflowTips = void 0;
|
|
4
|
+
exports.$HumanoidImageMaskOutput = exports.$HumanoidImageMaskJob = exports.$HumanoidImageMaskInput = exports.$HumanoidImageMaskCategory = exports.$HaiperVideoGenOutput = exports.$HaiperVideoGenModel = exports.$HaiperVideoGenJob = exports.$HaiperVideoGenInput = exports.$HaiperVideoGenCameraMovement = exports.$HaiperVideoGenAspectRatio = exports.$GateJob = exports.$FluxDevFastImageResourceTrainingInput = exports.$FileFormat = exports.$Expression = exports.$EpochResult = exports.$EcosystemElement = exports.$EchoStepTemplate = exports.$EchoStep = exports.$EchoOutput = exports.$EchoInput = exports.$DynamicAssignment = exports.$DownloadSource = exports.$CursedArrayOfTelemetryCursorAndWorkflow = exports.$CreateWorkerResult = exports.$CreateConfigurationResult = exports.$ContainerFormat = exports.$ConfigurationStatus = exports.$ConfigurationOptions = exports.$ComfyStepTemplate = exports.$ComfyStep = exports.$ComfyOutput = exports.$ComfyNode = exports.$ComfyJobSlot = exports.$ComfyJob = exports.$ComfyInput = exports.$BuzzClientAccount = exports.$Blob = exports.$BatchOCRSafetyClassificationStepTemplate = exports.$BatchOCRSafetyClassificationStep = exports.$BatchOCRSafetyClassificationResult = exports.$BatchOCRSafetyClassificationOutput = exports.$BatchOCRSafetyClassificationJob = exports.$BatchOCRSafetyClassificationInput = exports.$AgeClassifierLabel = exports.$AgeClassificationStepTemplate = exports.$AgeClassificationStep = exports.$AgeClassificationPrediction = exports.$AgeClassificationOutput = exports.$AgeClassificationJob = exports.$AgeClassificationInput = void 0;
|
|
5
|
+
exports.$TryOnUJob = exports.$TryOnUInput = exports.$TranscodeStepTemplate = exports.$TranscodeStep = exports.$TranscodeOutput = exports.$TranscodeInput = exports.$TransactionType = exports.$TransactionSummary = exports.$TransactionInfo = exports.$TextToImageStepTemplate = exports.$TextToImageStep = exports.$TextToImageOutput = exports.$TextToImageJob = exports.$TextToImageInput = exports.$Subscription = exports.$SimilaritySearchJob = exports.$Scheduler = exports.$ResourceInfo = exports.$ProcessingStatistics = exports.$ProblemDetails = exports.$Priority = exports.$NSFWLevel = exports.$MovieRatingJob = exports.$MochiVideoGenJob = exports.$MochiVideoGenInput = exports.$MediaTaggingJob = exports.$MediaCaptioningJob = exports.$LLMPromptAugmentationJob = exports.$LLMPromptAugmentationCapabilities = exports.$KohyaImageResourceTrainingInput = exports.$JsonPatchOperation = exports.$JsonPatchDocument = exports.$JobSupport = exports.$JobDependencyContinuation = exports.$JobDependency = exports.$Job = exports.$ImageTransformer = exports.$ImageTransformJob = exports.$ImageResourceTrainingStepTemplate = exports.$ImageResourceTrainingStep = exports.$ImageResourceTrainingOutput = exports.$ImageResourceTrainingJob = exports.$ImageResourceTrainingInput = exports.$ImageResouceTrainingModerationStatus = exports.$ImageJobParams = exports.$ImageJobNetworkParams = exports.$ImageJobControlNet = exports.$ImageEmbeddingJob = exports.$HumanoidImageMaskStepTemplate = exports.$HumanoidImageMaskStep = void 0;
|
|
6
|
+
exports.$WorkflowStepJobEvent = exports.$WorkflowStepJob = exports.$WorkflowStepEvent = exports.$WorkflowStep = exports.$WorkflowStatus = exports.$WorkflowEvent = exports.$WorkflowCostTips = exports.$WorkflowCost = exports.$WorkflowCallback = exports.$Workflow = exports.$WorkerType = exports.$WorkerTryOnUCapabilities = exports.$WorkerSimilaritySearchCapabilities = exports.$WorkerResourceStatus = exports.$WorkerResourceAvailability = exports.$WorkerRegistration = exports.$WorkerModelPreparationCapabilities = exports.$WorkerMediaWDTaggingCapabilities = exports.$WorkerMediaTranscodeCapabilities = exports.$WorkerMediaTaggingCapabilities = exports.$WorkerMediaOCRSafetyClassificationCapabilities = exports.$WorkerMediaMovieRatingCapabilities = exports.$WorkerMediaComfyCapabilities = exports.$WorkerMediaCaptioningCapabilities = exports.$WorkerMediaCapabilities = exports.$WorkerMediaAgeClassificationCapabilities = exports.$WorkerImageTransformCapabilities = exports.$WorkerImageTextToImageCapabilities = exports.$WorkerImageResourceTrainingCapabilities = exports.$WorkerImageImageToImageCapabilities = exports.$WorkerImageEmbeddingCapabilities = exports.$WorkerImageCapabilities = exports.$WorkerHumanoidImageMaskCapabilities = exports.$WorkerHaiperCapabilities = exports.$WorkerDetails = exports.$WorkerConfigurationCapabilities = exports.$WorkerCapabilities = exports.$WDTaggingJob = exports.$VideoGenStepTemplate = exports.$VideoGenStep = exports.$VideoGenOutput = exports.$VideoGenInput = exports.$ValueTupleOfStringAndInt32 = exports.$ValidationProblemDetails = exports.$UpdateWorkflowStepRequest = exports.$UpdateWorkflowStatus = exports.$UpdateWorkflowRequest = exports.$TryOnUStepTemplate = exports.$TryOnUStep = exports.$TryOnUOutput = void 0;
|
|
7
|
+
exports.$WorkflowTips = exports.$WorkflowTemplate = exports.$WorkflowStepTemplate = exports.$WorkflowStepJobQueuePosition = void 0;
|
|
8
8
|
exports.$AgeClassificationInput = {
|
|
9
9
|
required: ['mediaUrl'],
|
|
10
10
|
type: 'object',
|
|
@@ -860,6 +860,13 @@ exports.$HaiperVideoGenInput = {
|
|
|
860
860
|
format: 'uri',
|
|
861
861
|
nullable: true,
|
|
862
862
|
},
|
|
863
|
+
model: {
|
|
864
|
+
$ref: '#/components/schemas/HaiperVideoGenModel',
|
|
865
|
+
},
|
|
866
|
+
resolution: {
|
|
867
|
+
type: 'integer',
|
|
868
|
+
format: 'int32',
|
|
869
|
+
},
|
|
863
870
|
},
|
|
864
871
|
additionalProperties: false,
|
|
865
872
|
},
|
|
@@ -916,6 +923,13 @@ exports.$HaiperVideoGenJob = {
|
|
|
916
923
|
format: 'uri',
|
|
917
924
|
nullable: true,
|
|
918
925
|
},
|
|
926
|
+
model: {
|
|
927
|
+
$ref: '#/components/schemas/HaiperVideoGenModel',
|
|
928
|
+
},
|
|
929
|
+
resolution: {
|
|
930
|
+
type: 'integer',
|
|
931
|
+
format: 'int32',
|
|
932
|
+
},
|
|
919
933
|
claimDuration: {
|
|
920
934
|
type: 'string',
|
|
921
935
|
format: 'date-span',
|
|
@@ -936,6 +950,10 @@ exports.$HaiperVideoGenJob = {
|
|
|
936
950
|
},
|
|
937
951
|
},
|
|
938
952
|
};
|
|
953
|
+
exports.$HaiperVideoGenModel = {
|
|
954
|
+
enum: ['v1_5', 'v2'],
|
|
955
|
+
type: 'string',
|
|
956
|
+
};
|
|
939
957
|
exports.$HaiperVideoGenOutput = {
|
|
940
958
|
allOf: [
|
|
941
959
|
{
|
|
@@ -1577,6 +1595,7 @@ exports.$Job = {
|
|
|
1577
1595
|
batchOCRSafetyClassification: '#/components/schemas/BatchOCRSafetyClassificationJob',
|
|
1578
1596
|
gate: '#/components/schemas/GateJob',
|
|
1579
1597
|
haiper: '#/components/schemas/HaiperVideoGenJob',
|
|
1598
|
+
mochi: '#/components/schemas/MochiVideoGenJob',
|
|
1580
1599
|
},
|
|
1581
1600
|
},
|
|
1582
1601
|
};
|
|
@@ -1958,6 +1977,78 @@ exports.$MediaTaggingJob = {
|
|
|
1958
1977
|
},
|
|
1959
1978
|
},
|
|
1960
1979
|
};
|
|
1980
|
+
exports.$MochiVideoGenInput = {
|
|
1981
|
+
required: ['engine'],
|
|
1982
|
+
allOf: [
|
|
1983
|
+
{
|
|
1984
|
+
$ref: '#/components/schemas/VideoGenInput',
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
type: 'object',
|
|
1988
|
+
properties: {
|
|
1989
|
+
seed: {
|
|
1990
|
+
maximum: 2147483647,
|
|
1991
|
+
minimum: -1,
|
|
1992
|
+
type: 'integer',
|
|
1993
|
+
format: 'int64',
|
|
1994
|
+
},
|
|
1995
|
+
},
|
|
1996
|
+
additionalProperties: false,
|
|
1997
|
+
},
|
|
1998
|
+
],
|
|
1999
|
+
properties: {
|
|
2000
|
+
engine: {
|
|
2001
|
+
enum: ['mochi'],
|
|
2002
|
+
type: 'string',
|
|
2003
|
+
},
|
|
2004
|
+
},
|
|
2005
|
+
};
|
|
2006
|
+
exports.$MochiVideoGenJob = {
|
|
2007
|
+
required: ['$type'],
|
|
2008
|
+
allOf: [
|
|
2009
|
+
{
|
|
2010
|
+
$ref: '#/components/schemas/Job',
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
required: ['destinationUrl', 'mediaHash', 'prompt'],
|
|
2014
|
+
type: 'object',
|
|
2015
|
+
properties: {
|
|
2016
|
+
prompt: {
|
|
2017
|
+
type: 'string',
|
|
2018
|
+
},
|
|
2019
|
+
seed: {
|
|
2020
|
+
maximum: 4294967295,
|
|
2021
|
+
minimum: -1,
|
|
2022
|
+
type: 'integer',
|
|
2023
|
+
format: 'int64',
|
|
2024
|
+
},
|
|
2025
|
+
mediaHash: {
|
|
2026
|
+
type: 'string',
|
|
2027
|
+
},
|
|
2028
|
+
destinationUrl: {
|
|
2029
|
+
type: 'string',
|
|
2030
|
+
format: 'uri',
|
|
2031
|
+
},
|
|
2032
|
+
type: {
|
|
2033
|
+
type: 'string',
|
|
2034
|
+
readOnly: true,
|
|
2035
|
+
},
|
|
2036
|
+
claimDuration: {
|
|
2037
|
+
type: 'string',
|
|
2038
|
+
format: 'date-span',
|
|
2039
|
+
readOnly: true,
|
|
2040
|
+
},
|
|
2041
|
+
},
|
|
2042
|
+
additionalProperties: false,
|
|
2043
|
+
},
|
|
2044
|
+
],
|
|
2045
|
+
properties: {
|
|
2046
|
+
$type: {
|
|
2047
|
+
enum: ['mochi'],
|
|
2048
|
+
type: 'string',
|
|
2049
|
+
},
|
|
2050
|
+
},
|
|
2051
|
+
};
|
|
1961
2052
|
exports.$MovieRatingJob = {
|
|
1962
2053
|
required: ['$type'],
|
|
1963
2054
|
allOf: [
|
|
@@ -2932,6 +3023,7 @@ exports.$VideoGenInput = {
|
|
|
2932
3023
|
propertyName: 'engine',
|
|
2933
3024
|
mapping: {
|
|
2934
3025
|
haiper: '#/components/schemas/HaiperVideoGenInput',
|
|
3026
|
+
mochi: '#/components/schemas/MochiVideoGenInput',
|
|
2935
3027
|
},
|
|
2936
3028
|
},
|
|
2937
3029
|
};
|
|
@@ -366,6 +366,8 @@ export type HaiperVideoGenInput = VideoGenInput & {
|
|
|
366
366
|
duration?: number;
|
|
367
367
|
aspectRatio?: HaiperVideoGenAspectRatio;
|
|
368
368
|
sourceImageUrl?: string | null;
|
|
369
|
+
model?: HaiperVideoGenModel;
|
|
370
|
+
resolution?: number;
|
|
369
371
|
} & {
|
|
370
372
|
engine: 'haiper';
|
|
371
373
|
};
|
|
@@ -383,6 +385,8 @@ export type HaiperVideoGenJob = Job & {
|
|
|
383
385
|
aspectRatio?: HaiperVideoGenAspectRatio;
|
|
384
386
|
destinationUrl: string;
|
|
385
387
|
sourceImageUrl?: string | null;
|
|
388
|
+
model?: HaiperVideoGenModel;
|
|
389
|
+
resolution?: number;
|
|
386
390
|
readonly claimDuration?: string;
|
|
387
391
|
readonly type?: string;
|
|
388
392
|
} & {
|
|
@@ -392,6 +396,11 @@ export type $type6 = 'haiper';
|
|
|
392
396
|
export declare const $type6: {
|
|
393
397
|
readonly HAIPER: 'haiper';
|
|
394
398
|
};
|
|
399
|
+
export type HaiperVideoGenModel = 'v1_5' | 'v2';
|
|
400
|
+
export declare const HaiperVideoGenModel: {
|
|
401
|
+
readonly V1_5: 'v1_5';
|
|
402
|
+
readonly V2: 'v2';
|
|
403
|
+
};
|
|
395
404
|
export type HaiperVideoGenOutput = VideoGenOutput & {
|
|
396
405
|
progress?: number | null;
|
|
397
406
|
};
|
|
@@ -956,6 +965,29 @@ export type $type13 = 'mediaTagging';
|
|
|
956
965
|
export declare const $type13: {
|
|
957
966
|
readonly MEDIA_TAGGING: 'mediaTagging';
|
|
958
967
|
};
|
|
968
|
+
export type MochiVideoGenInput = VideoGenInput & {
|
|
969
|
+
seed?: number;
|
|
970
|
+
} & {
|
|
971
|
+
engine: 'mochi';
|
|
972
|
+
};
|
|
973
|
+
export type engine4 = 'mochi';
|
|
974
|
+
export declare const engine4: {
|
|
975
|
+
readonly MOCHI: 'mochi';
|
|
976
|
+
};
|
|
977
|
+
export type MochiVideoGenJob = Job & {
|
|
978
|
+
prompt: string;
|
|
979
|
+
seed?: number;
|
|
980
|
+
mediaHash: string;
|
|
981
|
+
destinationUrl: string;
|
|
982
|
+
readonly type?: string;
|
|
983
|
+
readonly claimDuration?: string;
|
|
984
|
+
} & {
|
|
985
|
+
$type: 'mochi';
|
|
986
|
+
};
|
|
987
|
+
export type $type14 = 'mochi';
|
|
988
|
+
export declare const $type14: {
|
|
989
|
+
readonly MOCHI: 'mochi';
|
|
990
|
+
};
|
|
959
991
|
export type MovieRatingJob = Job & {
|
|
960
992
|
mediaUrl?: string;
|
|
961
993
|
model?: string | null;
|
|
@@ -965,8 +997,8 @@ export type MovieRatingJob = Job & {
|
|
|
965
997
|
} & {
|
|
966
998
|
$type: 'movieRating';
|
|
967
999
|
};
|
|
968
|
-
export type $
|
|
969
|
-
export declare const $
|
|
1000
|
+
export type $type15 = 'movieRating';
|
|
1001
|
+
export declare const $type15: {
|
|
970
1002
|
readonly MOVIE_RATING: 'movieRating';
|
|
971
1003
|
};
|
|
972
1004
|
export type NSFWLevel = 'pg' | 'pG13' | 'r' | 'x' | 'xxx' | 'na';
|
|
@@ -1203,8 +1235,8 @@ export type SimilaritySearchJob = Job & {
|
|
|
1203
1235
|
} & {
|
|
1204
1236
|
$type: 'similaritySearch';
|
|
1205
1237
|
};
|
|
1206
|
-
export type $
|
|
1207
|
-
export declare const $
|
|
1238
|
+
export type $type16 = 'similaritySearch';
|
|
1239
|
+
export declare const $type16: {
|
|
1208
1240
|
readonly SIMILARITY_SEARCH: 'similaritySearch';
|
|
1209
1241
|
};
|
|
1210
1242
|
/**
|
|
@@ -1326,8 +1358,8 @@ export type TextToImageJob = Job & {
|
|
|
1326
1358
|
} & {
|
|
1327
1359
|
$type: 'textToImage';
|
|
1328
1360
|
};
|
|
1329
|
-
export type $
|
|
1330
|
-
export declare const $
|
|
1361
|
+
export type $type17 = 'textToImage';
|
|
1362
|
+
export declare const $type17: {
|
|
1331
1363
|
readonly TEXT_TO_IMAGE: 'textToImage';
|
|
1332
1364
|
};
|
|
1333
1365
|
/**
|
|
@@ -1413,8 +1445,8 @@ export type TranscodeStep = WorkflowStep & {
|
|
|
1413
1445
|
} & {
|
|
1414
1446
|
$type: 'transcode';
|
|
1415
1447
|
};
|
|
1416
|
-
export type $
|
|
1417
|
-
export declare const $
|
|
1448
|
+
export type $type18 = 'transcode';
|
|
1449
|
+
export declare const $type18: {
|
|
1418
1450
|
readonly TRANSCODE: 'transcode';
|
|
1419
1451
|
};
|
|
1420
1452
|
export type TranscodeStepTemplate = WorkflowStepTemplate & {
|
|
@@ -1448,8 +1480,8 @@ export type TryOnUJob = Job & {
|
|
|
1448
1480
|
} & {
|
|
1449
1481
|
$type: 'tryOnU';
|
|
1450
1482
|
};
|
|
1451
|
-
export type $
|
|
1452
|
-
export declare const $
|
|
1483
|
+
export type $type19 = 'tryOnU';
|
|
1484
|
+
export declare const $type19: {
|
|
1453
1485
|
readonly TRY_ON_U: 'tryOnU';
|
|
1454
1486
|
};
|
|
1455
1487
|
export type TryOnUOutput = {
|
|
@@ -1527,8 +1559,8 @@ export type VideoGenStep = WorkflowStep & {
|
|
|
1527
1559
|
} & {
|
|
1528
1560
|
$type: 'videoGen';
|
|
1529
1561
|
};
|
|
1530
|
-
export type $
|
|
1531
|
-
export declare const $
|
|
1562
|
+
export type $type20 = 'videoGen';
|
|
1563
|
+
export declare const $type20: {
|
|
1532
1564
|
readonly VIDEO_GEN: 'videoGen';
|
|
1533
1565
|
};
|
|
1534
1566
|
export type VideoGenStepTemplate = WorkflowStepTemplate & {
|
|
@@ -1547,8 +1579,8 @@ export type WDTaggingJob = Job & {
|
|
|
1547
1579
|
} & {
|
|
1548
1580
|
$type: 'wdTagging';
|
|
1549
1581
|
};
|
|
1550
|
-
export type $
|
|
1551
|
-
export declare const $
|
|
1582
|
+
export type $type21 = 'wdTagging';
|
|
1583
|
+
export declare const $type21: {
|
|
1552
1584
|
readonly WD_TAGGING: 'wdTagging';
|
|
1553
1585
|
};
|
|
1554
1586
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.WorkflowStatus = exports.WorkerType = exports.WorkerResourceAvailability = exports.$
|
|
4
|
+
exports.WorkflowStatus = exports.WorkerType = exports.WorkerResourceAvailability = exports.$type21 = exports.$type20 = exports.UpdateWorkflowStatus = exports.$type19 = exports.$type18 = exports.TransactionType = exports.$type17 = exports.$type16 = exports.Scheduler = exports.Priority = exports.NSFWLevel = exports.$type15 = exports.$type14 = exports.engine4 = exports.$type13 = exports.$type12 = exports.$type11 = exports.engine3 = exports.op = exports.JobSupport = exports.JobDependencyContinuation = exports.ImageTransformer = exports.$type10 = exports.$type9 = exports.ImageResouceTrainingModerationStatus = exports.$type8 = exports.$type7 = exports.HumanoidImageMaskCategory = exports.HaiperVideoGenModel = exports.$type6 = exports.engine2 = exports.HaiperVideoGenCameraMovement = exports.HaiperVideoGenAspectRatio = exports.$type5 = exports.engine = exports.FileFormat = exports.$type4 = exports.DownloadSource = exports.ContainerFormat = exports.$type3 = exports.BuzzClientAccount = exports.$type2 = exports.AgeClassificationPrediction = exports.$type = void 0;
|
|
5
5
|
exports.$type = {
|
|
6
6
|
AGE_CLASSIFICATION: 'ageClassification',
|
|
7
7
|
};
|
|
@@ -66,6 +66,10 @@ exports.engine2 = {
|
|
|
66
66
|
exports.$type6 = {
|
|
67
67
|
HAIPER: 'haiper',
|
|
68
68
|
};
|
|
69
|
+
exports.HaiperVideoGenModel = {
|
|
70
|
+
V1_5: 'v1_5',
|
|
71
|
+
V2: 'v2',
|
|
72
|
+
};
|
|
69
73
|
exports.HumanoidImageMaskCategory = {
|
|
70
74
|
DRESSES: 'dresses',
|
|
71
75
|
UPPER_BODY: 'upperBody',
|
|
@@ -134,7 +138,13 @@ exports.$type12 = {
|
|
|
134
138
|
exports.$type13 = {
|
|
135
139
|
MEDIA_TAGGING: 'mediaTagging',
|
|
136
140
|
};
|
|
141
|
+
exports.engine4 = {
|
|
142
|
+
MOCHI: 'mochi',
|
|
143
|
+
};
|
|
137
144
|
exports.$type14 = {
|
|
145
|
+
MOCHI: 'mochi',
|
|
146
|
+
};
|
|
147
|
+
exports.$type15 = {
|
|
138
148
|
MOVIE_RATING: 'movieRating',
|
|
139
149
|
};
|
|
140
150
|
exports.NSFWLevel = {
|
|
@@ -183,20 +193,20 @@ exports.Scheduler = {
|
|
|
183
193
|
DEIS: 'deis',
|
|
184
194
|
DP_M3MSDE: 'dpM3MSDE',
|
|
185
195
|
};
|
|
186
|
-
exports.$
|
|
196
|
+
exports.$type16 = {
|
|
187
197
|
SIMILARITY_SEARCH: 'similaritySearch',
|
|
188
198
|
};
|
|
189
|
-
exports.$
|
|
199
|
+
exports.$type17 = {
|
|
190
200
|
TEXT_TO_IMAGE: 'textToImage',
|
|
191
201
|
};
|
|
192
202
|
exports.TransactionType = {
|
|
193
203
|
DEBIT: 'debit',
|
|
194
204
|
CREDIT: 'credit',
|
|
195
205
|
};
|
|
196
|
-
exports.$
|
|
206
|
+
exports.$type18 = {
|
|
197
207
|
TRANSCODE: 'transcode',
|
|
198
208
|
};
|
|
199
|
-
exports.$
|
|
209
|
+
exports.$type19 = {
|
|
200
210
|
TRY_ON_U: 'tryOnU',
|
|
201
211
|
};
|
|
202
212
|
/**
|
|
@@ -205,10 +215,10 @@ exports.$type18 = {
|
|
|
205
215
|
exports.UpdateWorkflowStatus = {
|
|
206
216
|
CANCELED: 'canceled',
|
|
207
217
|
};
|
|
208
|
-
exports.$
|
|
218
|
+
exports.$type20 = {
|
|
209
219
|
VIDEO_GEN: 'videoGen',
|
|
210
220
|
};
|
|
211
|
-
exports.$
|
|
221
|
+
exports.$type21 = {
|
|
212
222
|
WD_TAGGING: 'wdTagging',
|
|
213
223
|
};
|
|
214
224
|
/**
|