@hautechai/sdk 2.19.0 → 2.20.0
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/index.d.mts +427 -1
- package/dist/index.d.ts +427 -1
- package/dist/index.js +154 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +147 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10476,6 +10476,9 @@ __export(index_exports, {
|
|
|
10476
10476
|
IdeogramCharacterV1ResponseKind: () => IdeogramCharacterV1ResponseKind,
|
|
10477
10477
|
IdeogramCharacterV1ResponseStatus: () => IdeogramCharacterV1ResponseStatus,
|
|
10478
10478
|
ImageEntityKind: () => ImageEntityKind,
|
|
10479
|
+
Imagen4FastV1InputAspectRatio: () => Imagen4FastV1InputAspectRatio,
|
|
10480
|
+
Imagen4FastV1ResponseKind: () => Imagen4FastV1ResponseKind,
|
|
10481
|
+
Imagen4FastV1ResponseStatus: () => Imagen4FastV1ResponseStatus,
|
|
10479
10482
|
Imagen4InputAspectRatio: () => Imagen4InputAspectRatio,
|
|
10480
10483
|
Imagen4InputSafetyFilterLevel: () => Imagen4InputSafetyFilterLevel,
|
|
10481
10484
|
Imagen4V1ResponseKind: () => Imagen4V1ResponseKind,
|
|
@@ -10566,6 +10569,8 @@ __export(index_exports, {
|
|
|
10566
10569
|
Seedream3V1ResponseStatus: () => Seedream3V1ResponseStatus,
|
|
10567
10570
|
Seedream4EditV1ResponseKind: () => Seedream4EditV1ResponseKind,
|
|
10568
10571
|
Seedream4EditV1ResponseStatus: () => Seedream4EditV1ResponseStatus,
|
|
10572
|
+
Seedream4T2iV1ResponseKind: () => Seedream4T2iV1ResponseKind,
|
|
10573
|
+
Seedream4T2iV1ResponseStatus: () => Seedream4T2iV1ResponseStatus,
|
|
10569
10574
|
SegmentAnythingEmbeddingsV1ResponseKind: () => SegmentAnythingEmbeddingsV1ResponseKind,
|
|
10570
10575
|
SegmentAnythingEmbeddingsV1ResponseStatus: () => SegmentAnythingEmbeddingsV1ResponseStatus,
|
|
10571
10576
|
SegmentAnythingMaskV1ResponseKind: () => SegmentAnythingMaskV1ResponseKind,
|
|
@@ -10596,6 +10601,8 @@ __export(index_exports, {
|
|
|
10596
10601
|
VtonGiseleV1ResponseKind: () => VtonGiseleV1ResponseKind,
|
|
10597
10602
|
VtonGiseleV1ResponseStatus: () => VtonGiseleV1ResponseStatus,
|
|
10598
10603
|
WorkflowsControllerListWorkflowsV1OrderBy: () => WorkflowsControllerListWorkflowsV1OrderBy,
|
|
10604
|
+
WorkflowsRunV1ResponseKind: () => WorkflowsRunV1ResponseKind,
|
|
10605
|
+
WorkflowsRunV1ResponseStatus: () => WorkflowsRunV1ResponseStatus,
|
|
10599
10606
|
Yolo11xPoseV1OutputKind: () => Yolo11xPoseV1OutputKind,
|
|
10600
10607
|
Yolo11xPoseV1ResponseKind: () => Yolo11xPoseV1ResponseKind,
|
|
10601
10608
|
Yolo11xPoseV1ResponseStatus: () => Yolo11xPoseV1ResponseStatus,
|
|
@@ -10915,7 +10922,16 @@ var getWorkflows = () => {
|
|
|
10915
10922
|
options
|
|
10916
10923
|
);
|
|
10917
10924
|
};
|
|
10918
|
-
|
|
10925
|
+
const workflowsControllerGetSharedWorkflowStatisticsV1 = (id, options) => {
|
|
10926
|
+
return axiosMutator(
|
|
10927
|
+
{
|
|
10928
|
+
url: `/v1/workflows/${id}/statistics`,
|
|
10929
|
+
method: "GET"
|
|
10930
|
+
},
|
|
10931
|
+
options
|
|
10932
|
+
);
|
|
10933
|
+
};
|
|
10934
|
+
return { workflowsControllerCreateWorkflowV1, workflowsControllerListWorkflowsV1, workflowsControllerGetWorkflowV1, workflowsControllerUpdateWorkflowV1, workflowsControllerDeleteWorkflowV1, workflowsControllerRunWorkflowV1, workflowsControllerGetWorkflowSchemaV1, workflowsControllerGetSharedWorkflowStatisticsV1 };
|
|
10919
10935
|
};
|
|
10920
10936
|
|
|
10921
10937
|
// src/sdk/api-definitions/workflows.ts
|
|
@@ -11846,7 +11862,40 @@ var getOperations = () => {
|
|
|
11846
11862
|
options
|
|
11847
11863
|
);
|
|
11848
11864
|
};
|
|
11849
|
-
|
|
11865
|
+
const operationsControllerRunSeedream4T2iV1V1 = (seedream4T2iV1Request, options) => {
|
|
11866
|
+
return axiosMutator(
|
|
11867
|
+
{
|
|
11868
|
+
url: `/v1/operations/run/seedream.4_t2i.v1`,
|
|
11869
|
+
method: "POST",
|
|
11870
|
+
headers: { "Content-Type": "application/json" },
|
|
11871
|
+
data: seedream4T2iV1Request
|
|
11872
|
+
},
|
|
11873
|
+
options
|
|
11874
|
+
);
|
|
11875
|
+
};
|
|
11876
|
+
const operationsControllerRunImagen4FastV1V1 = (imagen4FastV1Request, options) => {
|
|
11877
|
+
return axiosMutator(
|
|
11878
|
+
{
|
|
11879
|
+
url: `/v1/operations/run/imagen4.fast.v1`,
|
|
11880
|
+
method: "POST",
|
|
11881
|
+
headers: { "Content-Type": "application/json" },
|
|
11882
|
+
data: imagen4FastV1Request
|
|
11883
|
+
},
|
|
11884
|
+
options
|
|
11885
|
+
);
|
|
11886
|
+
};
|
|
11887
|
+
const operationsControllerRunWorkflowsRunV1V1 = (workflowsRunV1Request, options) => {
|
|
11888
|
+
return axiosMutator(
|
|
11889
|
+
{
|
|
11890
|
+
url: `/v1/operations/run/workflows.run.v1`,
|
|
11891
|
+
method: "POST",
|
|
11892
|
+
headers: { "Content-Type": "application/json" },
|
|
11893
|
+
data: workflowsRunV1Request
|
|
11894
|
+
},
|
|
11895
|
+
options
|
|
11896
|
+
);
|
|
11897
|
+
};
|
|
11898
|
+
return { operationsControllerGetOperationV1, operationsControllerGetOperationsV1, operationsControllerListOperationsV1, operationsControllerUpdateMetadataV1, operationsControllerRunHauteLindaV1V1, operationsControllerRunHauteNaomiV1V1, operationsControllerRunInpaintKateV1V1, operationsControllerRunGptV1V1, operationsControllerRunGptV2V1, operationsControllerRunGptV3V1, operationsControllerRunTranslateV1V1, operationsControllerRunStringsTemplateV1V1, operationsControllerRunImagineKateV1V1, operationsControllerRunUpscaleV1V1, operationsControllerRunObjectDetectionV1V1, operationsControllerRunSegmentAnythingEmbeddingsV1V1, operationsControllerRunSegmentAnythingMaskV1V1, operationsControllerRunPoseEstimationV1V1, operationsControllerRunCutV1V1, operationsControllerRunCropV1V1, operationsControllerRunNoiseV1V1, operationsControllerRunResizeV1V1, operationsControllerRunContrastV1V1, operationsControllerRunCompositeV1V1, operationsControllerRunVtonGiseleV1V1, operationsControllerRunNegateImageV1V1, operationsControllerRunEchoV1V1, operationsControllerRunMathV1V1, operationsControllerRunAnimateKling16ProV1V1, operationsControllerRunAnimateKling21V1V1, operationsControllerRunAnimateCreatomateV1V1, operationsControllerRunOnecompilerV1V1, operationsControllerRunEditFluxKontextDevV1V1, operationsControllerRunVeo3V1V1, operationsControllerRunVeo3FastV1V1, operationsControllerRunPipelineMapV1V1, operationsControllerRunImagen4V1V1, operationsControllerRunTopazUpscaleV1V1, operationsControllerRunIdeogramCharacterV1V1, operationsControllerRunSeedream3V1V1, operationsControllerRunLumaPhotonV1V1, operationsControllerRunImagineFlux11ProUltraV1V1, operationsControllerRunSeedV1V1, operationsControllerRunGoogleNanoBananaV1V1, operationsControllerRunHauteNaomiTrainV1V1, operationsControllerRunHauteNaomiPrepareDatasetV1V1, operationsControllerRunFashnVton16V1V1, operationsControllerRunAlphabakeVtonV1V1, operationsControllerRunKlingKolorsVtonV1V1, operationsControllerRunSeedream4EditV1V1, operationsControllerRunJsonToImageV1V1, operationsControllerRunJsonToVideoV1V1, operationsControllerRunYolo11xPoseV1V1, operationsControllerRunSeedream4T2iV1V1, operationsControllerRunImagen4FastV1V1, operationsControllerRunWorkflowsRunV1V1 };
|
|
11850
11899
|
};
|
|
11851
11900
|
|
|
11852
11901
|
// src/sdk/api-definitions/operations.ts
|
|
@@ -12007,6 +12056,11 @@ var useOperationsApi = () => {
|
|
|
12007
12056
|
nano_banana: {
|
|
12008
12057
|
v1: hautechApi.operationsControllerRunGoogleNanoBananaV1V1
|
|
12009
12058
|
}
|
|
12059
|
+
},
|
|
12060
|
+
workflow: {
|
|
12061
|
+
run: {
|
|
12062
|
+
v1: hautechApi.operationsControllerRunWorkflowsRunV1V1
|
|
12063
|
+
}
|
|
12010
12064
|
}
|
|
12011
12065
|
},
|
|
12012
12066
|
get: wrapApiCallNullable(hautechApi.operationsControllerGetOperationV1),
|
|
@@ -13458,6 +13512,27 @@ var ImageEntityKind = {
|
|
|
13458
13512
|
dataset: "dataset"
|
|
13459
13513
|
};
|
|
13460
13514
|
|
|
13515
|
+
// src/autogenerated/schemas/imagen4FastV1InputAspectRatio.ts
|
|
13516
|
+
var Imagen4FastV1InputAspectRatio = {
|
|
13517
|
+
"1:1": "1:1",
|
|
13518
|
+
"16:9": "16:9",
|
|
13519
|
+
"9:16": "9:16",
|
|
13520
|
+
"3:4": "3:4",
|
|
13521
|
+
"4:3": "4:3"
|
|
13522
|
+
};
|
|
13523
|
+
|
|
13524
|
+
// src/autogenerated/schemas/imagen4FastV1ResponseKind.ts
|
|
13525
|
+
var Imagen4FastV1ResponseKind = {
|
|
13526
|
+
operation: "operation"
|
|
13527
|
+
};
|
|
13528
|
+
|
|
13529
|
+
// src/autogenerated/schemas/imagen4FastV1ResponseStatus.ts
|
|
13530
|
+
var Imagen4FastV1ResponseStatus = {
|
|
13531
|
+
pending: "pending",
|
|
13532
|
+
finished: "finished",
|
|
13533
|
+
failed: "failed"
|
|
13534
|
+
};
|
|
13535
|
+
|
|
13461
13536
|
// src/autogenerated/schemas/imagen4InputAspectRatio.ts
|
|
13462
13537
|
var Imagen4InputAspectRatio = {
|
|
13463
13538
|
"1:1": "1:1",
|
|
@@ -14096,6 +14171,18 @@ var Seedream4EditV1ResponseStatus = {
|
|
|
14096
14171
|
failed: "failed"
|
|
14097
14172
|
};
|
|
14098
14173
|
|
|
14174
|
+
// src/autogenerated/schemas/seedream4T2iV1ResponseKind.ts
|
|
14175
|
+
var Seedream4T2iV1ResponseKind = {
|
|
14176
|
+
operation: "operation"
|
|
14177
|
+
};
|
|
14178
|
+
|
|
14179
|
+
// src/autogenerated/schemas/seedream4T2iV1ResponseStatus.ts
|
|
14180
|
+
var Seedream4T2iV1ResponseStatus = {
|
|
14181
|
+
pending: "pending",
|
|
14182
|
+
finished: "finished",
|
|
14183
|
+
failed: "failed"
|
|
14184
|
+
};
|
|
14185
|
+
|
|
14099
14186
|
// src/autogenerated/schemas/segmentAnythingEmbeddingsV1ResponseKind.ts
|
|
14100
14187
|
var SegmentAnythingEmbeddingsV1ResponseKind = {
|
|
14101
14188
|
operation: "operation"
|
|
@@ -14299,6 +14386,18 @@ var WorkflowsControllerListWorkflowsV1OrderBy = {
|
|
|
14299
14386
|
updatedAt_DESC: "updatedAt_DESC"
|
|
14300
14387
|
};
|
|
14301
14388
|
|
|
14389
|
+
// src/autogenerated/schemas/workflowsRunV1ResponseKind.ts
|
|
14390
|
+
var WorkflowsRunV1ResponseKind = {
|
|
14391
|
+
operation: "operation"
|
|
14392
|
+
};
|
|
14393
|
+
|
|
14394
|
+
// src/autogenerated/schemas/workflowsRunV1ResponseStatus.ts
|
|
14395
|
+
var WorkflowsRunV1ResponseStatus = {
|
|
14396
|
+
pending: "pending",
|
|
14397
|
+
finished: "finished",
|
|
14398
|
+
failed: "failed"
|
|
14399
|
+
};
|
|
14400
|
+
|
|
14302
14401
|
// src/autogenerated/schemas/yolo11xPoseV1OutputKind.ts
|
|
14303
14402
|
var Yolo11xPoseV1OutputKind = {
|
|
14304
14403
|
json: "json"
|
|
@@ -15212,6 +15311,39 @@ var getCall = () => {
|
|
|
15212
15311
|
options
|
|
15213
15312
|
);
|
|
15214
15313
|
};
|
|
15314
|
+
const callControllerCallOperationsRunSeedream4T2iV1V1 = (seedream4T2iV1Request, options) => {
|
|
15315
|
+
return axiosMutator(
|
|
15316
|
+
{
|
|
15317
|
+
url: `/v1/call/operations.run.seedream.4_t2i.v1`,
|
|
15318
|
+
method: "POST",
|
|
15319
|
+
headers: { "Content-Type": "application/json" },
|
|
15320
|
+
data: seedream4T2iV1Request
|
|
15321
|
+
},
|
|
15322
|
+
options
|
|
15323
|
+
);
|
|
15324
|
+
};
|
|
15325
|
+
const callControllerCallOperationsRunImagen4FastV1V1 = (imagen4FastV1Request, options) => {
|
|
15326
|
+
return axiosMutator(
|
|
15327
|
+
{
|
|
15328
|
+
url: `/v1/call/operations.run.imagen4.fast.v1`,
|
|
15329
|
+
method: "POST",
|
|
15330
|
+
headers: { "Content-Type": "application/json" },
|
|
15331
|
+
data: imagen4FastV1Request
|
|
15332
|
+
},
|
|
15333
|
+
options
|
|
15334
|
+
);
|
|
15335
|
+
};
|
|
15336
|
+
const callControllerCallOperationsRunWorkflowsRunV1V1 = (workflowsRunV1Request, options) => {
|
|
15337
|
+
return axiosMutator(
|
|
15338
|
+
{
|
|
15339
|
+
url: `/v1/call/operations.run.workflows.run.v1`,
|
|
15340
|
+
method: "POST",
|
|
15341
|
+
headers: { "Content-Type": "application/json" },
|
|
15342
|
+
data: workflowsRunV1Request
|
|
15343
|
+
},
|
|
15344
|
+
options
|
|
15345
|
+
);
|
|
15346
|
+
};
|
|
15215
15347
|
const callControllerCallPosesGetV1 = (getPoseParamsDto, options) => {
|
|
15216
15348
|
return axiosMutator(
|
|
15217
15349
|
{
|
|
@@ -15366,7 +15498,7 @@ var getCall = () => {
|
|
|
15366
15498
|
options
|
|
15367
15499
|
);
|
|
15368
15500
|
};
|
|
15369
|
-
return { callControllerCallAccessGrantV1, callControllerCallAccessAttachV1, callControllerCallAccountsCreateV1, callControllerCallAccountsGetV1, callControllerCallAccountsSelfV1, callControllerCallAccountsListV1, callControllerCallAccountsUpdateV1, callControllerCallAccountsBalanceAddV1, callControllerCallAccountsBalanceSelfV1, callControllerCallAccountsBalanceGetV1, callControllerCallCollectionsCreateV1, callControllerCallCollectionsGetV1, callControllerCallCollectionsListV1, callControllerCallCollectionsMetadataUpdateV1, callControllerCallCollectionsItemsAddV1, callControllerCallCollectionsItemsListV1, callControllerCallCollectionsItemsRemoveV1, callControllerCallGroupsCreateV1, callControllerCallGroupsGetV1, callControllerCallGroupsDeleteV1, callControllerCallGroupsAccountsAddV1, callControllerCallGroupsAccountsRemoveV1, callControllerCallImagesGetManyV1, callControllerCallImagesGetV1, callControllerCallImagesRepresentationsGetV1, callControllerCallVideosGetManyV1, callControllerCallVideosGetV1, callControllerCallOperationsGetV1, callControllerCallOperationsGetManyV1, callControllerCallOperationsListV1, callControllerCallOperationsMetadataUpdateV1, callControllerCallOperationsWaitV1, callControllerCallOperationsRunHauteLindaV1V1, callControllerCallOperationsRunHauteNaomiV1V1, callControllerCallOperationsRunInpaintKateV1V1, callControllerCallOperationsRunGptV1V1, callControllerCallOperationsRunGptV2V1, callControllerCallOperationsRunGptV3V1, callControllerCallOperationsRunTranslateV1V1, callControllerCallOperationsRunStringsTemplateV1V1, callControllerCallOperationsRunImagineKateV1V1, callControllerCallOperationsRunUpscaleV1V1, callControllerCallOperationsRunObjectDetectionV1V1, callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1, callControllerCallOperationsRunSegmentAnythingMaskV1V1, callControllerCallOperationsRunPoseEstimationV1V1, callControllerCallOperationsRunCutV1V1, callControllerCallOperationsRunCropV1V1, callControllerCallOperationsRunNoiseV1V1, callControllerCallOperationsRunResizeV1V1, callControllerCallOperationsRunContrastV1V1, callControllerCallOperationsRunCompositeV1V1, callControllerCallOperationsRunVtonGiseleV1V1, callControllerCallOperationsRunNegateImageV1V1, callControllerCallOperationsRunEchoV1V1, callControllerCallOperationsRunMathV1V1, callControllerCallOperationsRunAnimateKling16ProV1V1, callControllerCallOperationsRunAnimateKling21V1V1, callControllerCallOperationsRunAnimateCreatomateV1V1, callControllerCallOperationsRunOnecompilerV1V1, callControllerCallOperationsRunEditFluxKontextDevV1V1, callControllerCallOperationsRunVeo3V1V1, callControllerCallOperationsRunVeo3FastV1V1, callControllerCallOperationsRunPipelineMapV1V1, callControllerCallOperationsRunImagen4V1V1, callControllerCallOperationsRunTopazUpscaleV1V1, callControllerCallOperationsRunIdeogramCharacterV1V1, callControllerCallOperationsRunSeedream3V1V1, callControllerCallOperationsRunLumaPhotonV1V1, callControllerCallOperationsRunImagineFlux11ProUltraV1V1, callControllerCallOperationsRunSeedV1V1, callControllerCallOperationsRunGoogleNanoBananaV1V1, callControllerCallOperationsRunHauteNaomiTrainV1V1, callControllerCallOperationsRunHauteNaomiPrepareDatasetV1V1, callControllerCallOperationsRunFashnVton16V1V1, callControllerCallOperationsRunAlphabakeVtonV1V1, callControllerCallOperationsRunKlingKolorsVtonV1V1, callControllerCallOperationsRunSeedream4EditV1V1, callControllerCallOperationsRunJsonToImageV1V1, callControllerCallOperationsRunJsonToVideoV1V1, callControllerCallOperationsRunYolo11xPoseV1V1, callControllerCallPosesGetV1, callControllerCallPosesListV1, callControllerCallPosesPreviewSetV1, callControllerCallPosesMetadataUpdateV1, callControllerCallStacksCreateV1, callControllerCallStacksGetV1, callControllerCallStacksListV1, callControllerCallStacksMetadataUpdateV1, callControllerCallStacksItemsAddV1, callControllerCallStacksItemsRemoveV1, callControllerCallStorageCreateV1, callControllerCallStorageDeleteV1, callControllerCallStorageGetManyV1, callControllerCallStorageUpdateV1 };
|
|
15501
|
+
return { callControllerCallAccessGrantV1, callControllerCallAccessAttachV1, callControllerCallAccountsCreateV1, callControllerCallAccountsGetV1, callControllerCallAccountsSelfV1, callControllerCallAccountsListV1, callControllerCallAccountsUpdateV1, callControllerCallAccountsBalanceAddV1, callControllerCallAccountsBalanceSelfV1, callControllerCallAccountsBalanceGetV1, callControllerCallCollectionsCreateV1, callControllerCallCollectionsGetV1, callControllerCallCollectionsListV1, callControllerCallCollectionsMetadataUpdateV1, callControllerCallCollectionsItemsAddV1, callControllerCallCollectionsItemsListV1, callControllerCallCollectionsItemsRemoveV1, callControllerCallGroupsCreateV1, callControllerCallGroupsGetV1, callControllerCallGroupsDeleteV1, callControllerCallGroupsAccountsAddV1, callControllerCallGroupsAccountsRemoveV1, callControllerCallImagesGetManyV1, callControllerCallImagesGetV1, callControllerCallImagesRepresentationsGetV1, callControllerCallVideosGetManyV1, callControllerCallVideosGetV1, callControllerCallOperationsGetV1, callControllerCallOperationsGetManyV1, callControllerCallOperationsListV1, callControllerCallOperationsMetadataUpdateV1, callControllerCallOperationsWaitV1, callControllerCallOperationsRunHauteLindaV1V1, callControllerCallOperationsRunHauteNaomiV1V1, callControllerCallOperationsRunInpaintKateV1V1, callControllerCallOperationsRunGptV1V1, callControllerCallOperationsRunGptV2V1, callControllerCallOperationsRunGptV3V1, callControllerCallOperationsRunTranslateV1V1, callControllerCallOperationsRunStringsTemplateV1V1, callControllerCallOperationsRunImagineKateV1V1, callControllerCallOperationsRunUpscaleV1V1, callControllerCallOperationsRunObjectDetectionV1V1, callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1, callControllerCallOperationsRunSegmentAnythingMaskV1V1, callControllerCallOperationsRunPoseEstimationV1V1, callControllerCallOperationsRunCutV1V1, callControllerCallOperationsRunCropV1V1, callControllerCallOperationsRunNoiseV1V1, callControllerCallOperationsRunResizeV1V1, callControllerCallOperationsRunContrastV1V1, callControllerCallOperationsRunCompositeV1V1, callControllerCallOperationsRunVtonGiseleV1V1, callControllerCallOperationsRunNegateImageV1V1, callControllerCallOperationsRunEchoV1V1, callControllerCallOperationsRunMathV1V1, callControllerCallOperationsRunAnimateKling16ProV1V1, callControllerCallOperationsRunAnimateKling21V1V1, callControllerCallOperationsRunAnimateCreatomateV1V1, callControllerCallOperationsRunOnecompilerV1V1, callControllerCallOperationsRunEditFluxKontextDevV1V1, callControllerCallOperationsRunVeo3V1V1, callControllerCallOperationsRunVeo3FastV1V1, callControllerCallOperationsRunPipelineMapV1V1, callControllerCallOperationsRunImagen4V1V1, callControllerCallOperationsRunTopazUpscaleV1V1, callControllerCallOperationsRunIdeogramCharacterV1V1, callControllerCallOperationsRunSeedream3V1V1, callControllerCallOperationsRunLumaPhotonV1V1, callControllerCallOperationsRunImagineFlux11ProUltraV1V1, callControllerCallOperationsRunSeedV1V1, callControllerCallOperationsRunGoogleNanoBananaV1V1, callControllerCallOperationsRunHauteNaomiTrainV1V1, callControllerCallOperationsRunHauteNaomiPrepareDatasetV1V1, callControllerCallOperationsRunFashnVton16V1V1, callControllerCallOperationsRunAlphabakeVtonV1V1, callControllerCallOperationsRunKlingKolorsVtonV1V1, callControllerCallOperationsRunSeedream4EditV1V1, callControllerCallOperationsRunJsonToImageV1V1, callControllerCallOperationsRunJsonToVideoV1V1, callControllerCallOperationsRunYolo11xPoseV1V1, callControllerCallOperationsRunSeedream4T2iV1V1, callControllerCallOperationsRunImagen4FastV1V1, callControllerCallOperationsRunWorkflowsRunV1V1, callControllerCallPosesGetV1, callControllerCallPosesListV1, callControllerCallPosesPreviewSetV1, callControllerCallPosesMetadataUpdateV1, callControllerCallStacksCreateV1, callControllerCallStacksGetV1, callControllerCallStacksListV1, callControllerCallStacksMetadataUpdateV1, callControllerCallStacksItemsAddV1, callControllerCallStacksItemsRemoveV1, callControllerCallStorageCreateV1, callControllerCallStorageDeleteV1, callControllerCallStorageGetManyV1, callControllerCallStorageUpdateV1 };
|
|
15370
15502
|
};
|
|
15371
15503
|
|
|
15372
15504
|
// src/autogenerated/pipeline-methods.ts
|
|
@@ -15549,7 +15681,10 @@ var usePipelineDefinitions = () => {
|
|
|
15549
15681
|
"v1": api.callControllerCallOperationsRunPipelineMapV1V1
|
|
15550
15682
|
},
|
|
15551
15683
|
"imagen4": {
|
|
15552
|
-
"v1": api.callControllerCallOperationsRunImagen4V1V1
|
|
15684
|
+
"v1": api.callControllerCallOperationsRunImagen4V1V1,
|
|
15685
|
+
"fast": {
|
|
15686
|
+
"v1": api.callControllerCallOperationsRunImagen4FastV1V1
|
|
15687
|
+
}
|
|
15553
15688
|
},
|
|
15554
15689
|
"topaz": {
|
|
15555
15690
|
"upscale": {
|
|
@@ -15595,6 +15730,9 @@ var usePipelineDefinitions = () => {
|
|
|
15595
15730
|
"seedream": {
|
|
15596
15731
|
"4_edit": {
|
|
15597
15732
|
"v1": api.callControllerCallOperationsRunSeedream4EditV1V1
|
|
15733
|
+
},
|
|
15734
|
+
"4_t2i": {
|
|
15735
|
+
"v1": api.callControllerCallOperationsRunSeedream4T2iV1V1
|
|
15598
15736
|
}
|
|
15599
15737
|
},
|
|
15600
15738
|
"json_to_image": {
|
|
@@ -15605,6 +15743,11 @@ var usePipelineDefinitions = () => {
|
|
|
15605
15743
|
},
|
|
15606
15744
|
"yolo11x_pose": {
|
|
15607
15745
|
"v1": api.callControllerCallOperationsRunYolo11xPoseV1V1
|
|
15746
|
+
},
|
|
15747
|
+
"workflows": {
|
|
15748
|
+
"run": {
|
|
15749
|
+
"v1": api.callControllerCallOperationsRunWorkflowsRunV1V1
|
|
15750
|
+
}
|
|
15608
15751
|
}
|
|
15609
15752
|
}
|
|
15610
15753
|
},
|
|
@@ -16261,6 +16404,9 @@ var createTokenSigner = (options) => {
|
|
|
16261
16404
|
IdeogramCharacterV1ResponseKind,
|
|
16262
16405
|
IdeogramCharacterV1ResponseStatus,
|
|
16263
16406
|
ImageEntityKind,
|
|
16407
|
+
Imagen4FastV1InputAspectRatio,
|
|
16408
|
+
Imagen4FastV1ResponseKind,
|
|
16409
|
+
Imagen4FastV1ResponseStatus,
|
|
16264
16410
|
Imagen4InputAspectRatio,
|
|
16265
16411
|
Imagen4InputSafetyFilterLevel,
|
|
16266
16412
|
Imagen4V1ResponseKind,
|
|
@@ -16351,6 +16497,8 @@ var createTokenSigner = (options) => {
|
|
|
16351
16497
|
Seedream3V1ResponseStatus,
|
|
16352
16498
|
Seedream4EditV1ResponseKind,
|
|
16353
16499
|
Seedream4EditV1ResponseStatus,
|
|
16500
|
+
Seedream4T2iV1ResponseKind,
|
|
16501
|
+
Seedream4T2iV1ResponseStatus,
|
|
16354
16502
|
SegmentAnythingEmbeddingsV1ResponseKind,
|
|
16355
16503
|
SegmentAnythingEmbeddingsV1ResponseStatus,
|
|
16356
16504
|
SegmentAnythingMaskV1ResponseKind,
|
|
@@ -16381,6 +16529,8 @@ var createTokenSigner = (options) => {
|
|
|
16381
16529
|
VtonGiseleV1ResponseKind,
|
|
16382
16530
|
VtonGiseleV1ResponseStatus,
|
|
16383
16531
|
WorkflowsControllerListWorkflowsV1OrderBy,
|
|
16532
|
+
WorkflowsRunV1ResponseKind,
|
|
16533
|
+
WorkflowsRunV1ResponseStatus,
|
|
16384
16534
|
Yolo11xPoseV1OutputKind,
|
|
16385
16535
|
Yolo11xPoseV1ResponseKind,
|
|
16386
16536
|
Yolo11xPoseV1ResponseStatus,
|