@hautechai/sdk 0.1.5 → 0.2.1
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/autogenerated/api.d.ts +981 -23
- package/dist/autogenerated/api.js +1110 -161
- package/dist/sdk/index.d.ts +762 -142
- package/dist/sdk/operations/index.d.ts +1 -1
- package/dist/sdk/operations/index.js +1 -0
- package/dist/sdk/pipelines/index.d.ts +760 -140
- package/dist/sdk/pipelines/index.js +59 -2
- package/dist/sdk/pipelines/pipelines.d.ts +0 -0
- package/dist/sdk/pipelines/pipelines.js +1 -0
- package/package.json +2 -2
package/dist/sdk/index.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
202
202
|
}) => Promise<void>;
|
|
203
203
|
wait: <T extends import("../types").OperationEntity | {
|
|
204
204
|
id: string;
|
|
205
|
-
}>(props: T, timeoutMs?:
|
|
205
|
+
}, N extends number | undefined>(props: T, timeoutMs?: N) => Promise<((T extends import("../types").OperationEntity ? T : import("../types").OperationEntity) & ({
|
|
206
206
|
status: "failed";
|
|
207
207
|
output: null;
|
|
208
208
|
} | {
|
|
@@ -211,251 +211,871 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
211
211
|
} | {
|
|
212
212
|
status: "finished";
|
|
213
213
|
output: NonNullable<(T extends import("../types").OperationEntity ? T : import("../types").OperationEntity)["output"]>;
|
|
214
|
-
})) | null>;
|
|
214
|
+
})) | (N extends undefined ? never : null)>;
|
|
215
215
|
};
|
|
216
216
|
pipelines: {
|
|
217
217
|
constructTemplate: (consructPipeline: (pipeline: import("@hautechai/pipelines").Pipeline<{
|
|
218
218
|
access: {
|
|
219
|
-
attach: (params: import("../autogenerated").AttachAccessParamsDto
|
|
220
|
-
|
|
219
|
+
attach: (params: import("../autogenerated").AttachAccessParamsDto & {
|
|
220
|
+
__taskOutput__?: never;
|
|
221
|
+
}) => Promise<void>;
|
|
222
|
+
grant: (params: import("../autogenerated").GrantAccessParamsDto & {
|
|
223
|
+
__taskOutput__?: never;
|
|
224
|
+
}) => Promise<void>;
|
|
221
225
|
};
|
|
222
226
|
accounts: {
|
|
223
|
-
create: (params: import("../autogenerated").CreateAccountParamsDto
|
|
224
|
-
|
|
225
|
-
|
|
227
|
+
create: (params: import("../autogenerated").CreateAccountParamsDto & {
|
|
228
|
+
__taskOutput__?: never;
|
|
229
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
230
|
+
get: (params: import("../autogenerated").GetAccountParamsDto & {
|
|
231
|
+
__taskOutput__?: never;
|
|
232
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
233
|
+
list: (params: import("../autogenerated").ListAccountsParamsDto & {
|
|
234
|
+
__taskOutput__?: never;
|
|
235
|
+
}) => Promise<import("../autogenerated").ListAccountsDto>;
|
|
226
236
|
};
|
|
227
237
|
balances: {
|
|
228
|
-
add: (params: import("../autogenerated").AddBalanceParamsDto
|
|
229
|
-
|
|
230
|
-
|
|
238
|
+
add: (params: import("../autogenerated").AddBalanceParamsDto & {
|
|
239
|
+
__taskOutput__?: never;
|
|
240
|
+
}) => Promise<void>;
|
|
241
|
+
get: (params: import("../autogenerated").GetBalanceParamsDto & {
|
|
242
|
+
__taskOutput__?: never;
|
|
243
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
244
|
+
getSelf: (params: string & {
|
|
245
|
+
__taskOutput__?: never;
|
|
246
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
231
247
|
};
|
|
232
248
|
collections: {
|
|
233
|
-
create: (params: import("../autogenerated").CreateCollectionParamsDto
|
|
249
|
+
create: (params: import("../autogenerated").CreateCollectionParamsDto & {
|
|
250
|
+
__taskOutput__?: never;
|
|
251
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
234
252
|
items: {
|
|
235
|
-
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto
|
|
236
|
-
|
|
237
|
-
|
|
253
|
+
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto & {
|
|
254
|
+
__taskOutput__?: never;
|
|
255
|
+
}) => Promise<void>;
|
|
256
|
+
list: (params: import("../autogenerated").ListCollectionItemsParamsDto & {
|
|
257
|
+
__taskOutput__?: never;
|
|
258
|
+
}) => Promise<import("../autogenerated").ListCollectionItemsDto>;
|
|
259
|
+
remove: (params: import("../autogenerated").RemoveItemsFromCollectionParamsDto & {
|
|
260
|
+
__taskOutput__?: never;
|
|
261
|
+
}) => Promise<void>;
|
|
238
262
|
};
|
|
239
|
-
get: (params: import("../autogenerated").GetCollectionParamsDto
|
|
240
|
-
|
|
241
|
-
|
|
263
|
+
get: (params: import("../autogenerated").GetCollectionParamsDto & {
|
|
264
|
+
__taskOutput__?: never;
|
|
265
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
266
|
+
list: (params: import("../autogenerated").ListCollectionsParamsDto & {
|
|
267
|
+
__taskOutput__?: never;
|
|
268
|
+
}) => Promise<import("../autogenerated").ListCollectionsDto>;
|
|
269
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
270
|
+
__taskOutput__?: never;
|
|
271
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
242
272
|
};
|
|
243
273
|
groups: {
|
|
244
274
|
accounts: {
|
|
245
|
-
add: (params: import("../autogenerated").AddAccountToGroupParamsDto
|
|
246
|
-
|
|
275
|
+
add: (params: import("../autogenerated").AddAccountToGroupParamsDto & {
|
|
276
|
+
__taskOutput__?: never;
|
|
277
|
+
}) => Promise<void>;
|
|
278
|
+
remove: (params: import("../autogenerated").RemoveAccountFromGroupParamsDto & {
|
|
279
|
+
__taskOutput__?: never;
|
|
280
|
+
}) => Promise<void>;
|
|
247
281
|
};
|
|
248
|
-
create: (params: string
|
|
249
|
-
|
|
250
|
-
|
|
282
|
+
create: (params: string & {
|
|
283
|
+
__taskOutput__?: never;
|
|
284
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
285
|
+
delete: (params: import("../autogenerated").DeleteParamsDto & {
|
|
286
|
+
__taskOutput__?: never;
|
|
287
|
+
}) => Promise<void>;
|
|
288
|
+
get: (params: import("../autogenerated").GetGroupParamsDto & {
|
|
289
|
+
__taskOutput__?: never;
|
|
290
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
251
291
|
};
|
|
252
292
|
images: {
|
|
253
|
-
get: (params: import("../autogenerated").GetImageParamsDto
|
|
254
|
-
|
|
293
|
+
get: (params: import("../autogenerated").GetImageParamsDto & {
|
|
294
|
+
__taskOutput__?: never;
|
|
295
|
+
}) => Promise<import("../types").ImageEntity>;
|
|
296
|
+
getUrls: (params: import("../autogenerated").GetUrlsForImagesParamsDto & {
|
|
297
|
+
__taskOutput__?: never;
|
|
298
|
+
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
255
299
|
};
|
|
256
300
|
operations: {
|
|
257
|
-
get: (params: import("../autogenerated").GetOperationParamsDto
|
|
258
|
-
|
|
259
|
-
|
|
301
|
+
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
302
|
+
__taskOutput__?: never;
|
|
303
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
304
|
+
list: (params: import("../autogenerated").ListOperationsParamsDto & {
|
|
305
|
+
__taskOutput__?: never;
|
|
306
|
+
}) => Promise<import("../autogenerated").ListOperationsDto>;
|
|
307
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
308
|
+
__taskOutput__?: never;
|
|
309
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
310
|
+
run: {
|
|
311
|
+
haute: {
|
|
312
|
+
linda: {
|
|
313
|
+
v1: (params: import("../autogenerated").LindaHauteV1ControllerInput & {
|
|
314
|
+
__taskOutput__?: never;
|
|
315
|
+
}) => Promise<import("../autogenerated").HauteLindaV1Response>;
|
|
316
|
+
};
|
|
317
|
+
naomi: {
|
|
318
|
+
v1: (params: import("../autogenerated").NaomiHauteV1ControllerInput & {
|
|
319
|
+
__taskOutput__?: never;
|
|
320
|
+
}) => Promise<import("../autogenerated").HauteNaomiV1Response>;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
inpaint: {
|
|
324
|
+
kate: {
|
|
325
|
+
v1: (params: import("../autogenerated").KateInpaintV1ControllerInput & {
|
|
326
|
+
__taskOutput__?: never;
|
|
327
|
+
}) => Promise<import("../autogenerated").InpaintKateV1Response>;
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
gpt: {
|
|
331
|
+
v1: (params: import("../autogenerated").GPTV1ControllerInput & {
|
|
332
|
+
__taskOutput__?: never;
|
|
333
|
+
}) => Promise<import("../autogenerated").GptV1Response>;
|
|
334
|
+
};
|
|
335
|
+
imagine: {
|
|
336
|
+
kate: {
|
|
337
|
+
v1: (params: import("../autogenerated").KateImagineV1ControllerInput & {
|
|
338
|
+
__taskOutput__?: never;
|
|
339
|
+
}) => Promise<import("../autogenerated").ImagineKateV1Response>;
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
upscale: {
|
|
343
|
+
v1: (params: import("../autogenerated").UpscaleV1ControllerInput & {
|
|
344
|
+
__taskOutput__?: never;
|
|
345
|
+
}) => Promise<import("../autogenerated").UpscaleV1Response>;
|
|
346
|
+
};
|
|
347
|
+
objectDetection: {
|
|
348
|
+
v1: (params: import("../autogenerated").ObjectDetectionV1ControllerInput & {
|
|
349
|
+
__taskOutput__?: never;
|
|
350
|
+
}) => Promise<import("../autogenerated").ObjectDetectionV1Response>;
|
|
351
|
+
};
|
|
352
|
+
segmentAnything: {
|
|
353
|
+
embeddings: {
|
|
354
|
+
v1: (params: import("../autogenerated").SegmentAnythingEmbeddingsV1ControllerInput & {
|
|
355
|
+
__taskOutput__?: never;
|
|
356
|
+
}) => Promise<import("../autogenerated").SegmentAnythingEmbeddingsV1Response>;
|
|
357
|
+
};
|
|
358
|
+
mask: {
|
|
359
|
+
v1: (params: import("../autogenerated").SegmentAnythingMaskV1ControllerInput & {
|
|
360
|
+
__taskOutput__?: never;
|
|
361
|
+
}) => Promise<import("../autogenerated").SegmentAnythingMaskV1Response>;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
poseEstimation: {
|
|
365
|
+
v1: (params: import("../autogenerated").PoseEstimationV1ControllerInput & {
|
|
366
|
+
__taskOutput__?: never;
|
|
367
|
+
}) => Promise<import("../autogenerated").PoseEstimationV1Response>;
|
|
368
|
+
};
|
|
369
|
+
cut: {
|
|
370
|
+
v1: (params: import("../autogenerated").CutV1ControllerInput & {
|
|
371
|
+
__taskOutput__?: never;
|
|
372
|
+
}) => Promise<import("../autogenerated").CutV1Response>;
|
|
373
|
+
};
|
|
374
|
+
composite: {
|
|
375
|
+
v1: (params: import("../autogenerated").CompositeV1ControllerInput & {
|
|
376
|
+
__taskOutput__?: never;
|
|
377
|
+
}) => Promise<import("../autogenerated").CompositeV1Response>;
|
|
378
|
+
};
|
|
379
|
+
vton: {
|
|
380
|
+
gisele: {
|
|
381
|
+
v1: (params: import("../autogenerated").GiseleVtonV1ControllerInput & {
|
|
382
|
+
__taskOutput__?: never;
|
|
383
|
+
}) => Promise<import("../autogenerated").VtonGiseleV1Response>;
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
negateImage: {
|
|
387
|
+
v1: (params: import("../autogenerated").NegateImageV1ControllerInput & {
|
|
388
|
+
__taskOutput__?: never;
|
|
389
|
+
}) => Promise<import("../autogenerated").NegateImageV1Response>;
|
|
390
|
+
};
|
|
391
|
+
};
|
|
392
|
+
wait: (params: import("../autogenerated").WaitOperationParamsDto & {
|
|
393
|
+
__taskOutput__?: never;
|
|
394
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
260
395
|
};
|
|
261
396
|
poses: {
|
|
262
|
-
get: (params: import("../autogenerated").GetPoseParamsDto
|
|
263
|
-
|
|
397
|
+
get: (params: import("../autogenerated").GetPoseParamsDto & {
|
|
398
|
+
__taskOutput__?: never;
|
|
399
|
+
}) => Promise<import("../autogenerated").PoseEntity>;
|
|
400
|
+
list: (params: import("../autogenerated").ListPosesParamsDto & {
|
|
401
|
+
__taskOutput__?: never;
|
|
402
|
+
}) => Promise<import("../autogenerated").ListPosesDto>;
|
|
264
403
|
};
|
|
265
404
|
stacks: {
|
|
266
|
-
create: (params: import("../autogenerated").CreateStackParamsDto
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
405
|
+
create: (params: import("../autogenerated").CreateStackParamsDto & {
|
|
406
|
+
__taskOutput__?: never;
|
|
407
|
+
}) => Promise<import("../types").StackEntity>;
|
|
408
|
+
get: (params: import("../autogenerated").GetStackParamsDto & {
|
|
409
|
+
__taskOutput__?: never;
|
|
410
|
+
}) => Promise<import("../types").StackEntity>;
|
|
411
|
+
list: (params: import("../autogenerated").ListStacksParamsDto & {
|
|
412
|
+
__taskOutput__?: never;
|
|
413
|
+
}) => Promise<import("../autogenerated").ListStacksDto>;
|
|
414
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
415
|
+
__taskOutput__?: never;
|
|
416
|
+
}) => Promise<import("../types").StackEntity>;
|
|
270
417
|
};
|
|
271
418
|
storage: {
|
|
272
|
-
create: (params: import("../autogenerated").CreateStorageRecordParamsDto
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
419
|
+
create: (params: import("../autogenerated").CreateStorageRecordParamsDto & {
|
|
420
|
+
__taskOutput__?: never;
|
|
421
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
422
|
+
delete: (params: import("../autogenerated").DeleteStorageParamsDto & {
|
|
423
|
+
__taskOutput__?: never;
|
|
424
|
+
}) => Promise<void>;
|
|
425
|
+
getMany: (params: import("../autogenerated").GetStorageRecordParamsDto & {
|
|
426
|
+
__taskOutput__?: never;
|
|
427
|
+
}) => Promise<import("../autogenerated").StorageRecordsResultDto[]>;
|
|
428
|
+
update: (params: import("../autogenerated").UpdateStorageRecordParamsDto & {
|
|
429
|
+
__taskOutput__?: never;
|
|
430
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
276
431
|
};
|
|
277
432
|
}>) => import("@hautechai/pipelines").Pipeline<{
|
|
278
433
|
access: {
|
|
279
|
-
attach: (params: import("../autogenerated").AttachAccessParamsDto
|
|
280
|
-
|
|
434
|
+
attach: (params: import("../autogenerated").AttachAccessParamsDto & {
|
|
435
|
+
__taskOutput__?: never;
|
|
436
|
+
}) => Promise<void>;
|
|
437
|
+
grant: (params: import("../autogenerated").GrantAccessParamsDto & {
|
|
438
|
+
__taskOutput__?: never;
|
|
439
|
+
}) => Promise<void>;
|
|
281
440
|
};
|
|
282
441
|
accounts: {
|
|
283
|
-
create: (params: import("../autogenerated").CreateAccountParamsDto
|
|
284
|
-
|
|
285
|
-
|
|
442
|
+
create: (params: import("../autogenerated").CreateAccountParamsDto & {
|
|
443
|
+
__taskOutput__?: never;
|
|
444
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
445
|
+
get: (params: import("../autogenerated").GetAccountParamsDto & {
|
|
446
|
+
__taskOutput__?: never;
|
|
447
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
448
|
+
list: (params: import("../autogenerated").ListAccountsParamsDto & {
|
|
449
|
+
__taskOutput__?: never;
|
|
450
|
+
}) => Promise<import("../autogenerated").ListAccountsDto>;
|
|
286
451
|
};
|
|
287
452
|
balances: {
|
|
288
|
-
add: (params: import("../autogenerated").AddBalanceParamsDto
|
|
289
|
-
|
|
290
|
-
|
|
453
|
+
add: (params: import("../autogenerated").AddBalanceParamsDto & {
|
|
454
|
+
__taskOutput__?: never;
|
|
455
|
+
}) => Promise<void>;
|
|
456
|
+
get: (params: import("../autogenerated").GetBalanceParamsDto & {
|
|
457
|
+
__taskOutput__?: never;
|
|
458
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
459
|
+
getSelf: (params: string & {
|
|
460
|
+
__taskOutput__?: never;
|
|
461
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
291
462
|
};
|
|
292
463
|
collections: {
|
|
293
|
-
create: (params: import("../autogenerated").CreateCollectionParamsDto
|
|
464
|
+
create: (params: import("../autogenerated").CreateCollectionParamsDto & {
|
|
465
|
+
__taskOutput__?: never;
|
|
466
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
294
467
|
items: {
|
|
295
|
-
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto
|
|
296
|
-
|
|
297
|
-
|
|
468
|
+
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto & {
|
|
469
|
+
__taskOutput__?: never;
|
|
470
|
+
}) => Promise<void>;
|
|
471
|
+
list: (params: import("../autogenerated").ListCollectionItemsParamsDto & {
|
|
472
|
+
__taskOutput__?: never;
|
|
473
|
+
}) => Promise<import("../autogenerated").ListCollectionItemsDto>;
|
|
474
|
+
remove: (params: import("../autogenerated").RemoveItemsFromCollectionParamsDto & {
|
|
475
|
+
__taskOutput__?: never;
|
|
476
|
+
}) => Promise<void>;
|
|
298
477
|
};
|
|
299
|
-
get: (params: import("../autogenerated").GetCollectionParamsDto
|
|
300
|
-
|
|
301
|
-
|
|
478
|
+
get: (params: import("../autogenerated").GetCollectionParamsDto & {
|
|
479
|
+
__taskOutput__?: never;
|
|
480
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
481
|
+
list: (params: import("../autogenerated").ListCollectionsParamsDto & {
|
|
482
|
+
__taskOutput__?: never;
|
|
483
|
+
}) => Promise<import("../autogenerated").ListCollectionsDto>;
|
|
484
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
485
|
+
__taskOutput__?: never;
|
|
486
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
302
487
|
};
|
|
303
488
|
groups: {
|
|
304
489
|
accounts: {
|
|
305
|
-
add: (params: import("../autogenerated").AddAccountToGroupParamsDto
|
|
306
|
-
|
|
490
|
+
add: (params: import("../autogenerated").AddAccountToGroupParamsDto & {
|
|
491
|
+
__taskOutput__?: never;
|
|
492
|
+
}) => Promise<void>;
|
|
493
|
+
remove: (params: import("../autogenerated").RemoveAccountFromGroupParamsDto & {
|
|
494
|
+
__taskOutput__?: never;
|
|
495
|
+
}) => Promise<void>;
|
|
307
496
|
};
|
|
308
|
-
create: (params: string
|
|
309
|
-
|
|
310
|
-
|
|
497
|
+
create: (params: string & {
|
|
498
|
+
__taskOutput__?: never;
|
|
499
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
500
|
+
delete: (params: import("../autogenerated").DeleteParamsDto & {
|
|
501
|
+
__taskOutput__?: never;
|
|
502
|
+
}) => Promise<void>;
|
|
503
|
+
get: (params: import("../autogenerated").GetGroupParamsDto & {
|
|
504
|
+
__taskOutput__?: never;
|
|
505
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
311
506
|
};
|
|
312
507
|
images: {
|
|
313
|
-
get: (params: import("../autogenerated").GetImageParamsDto
|
|
314
|
-
|
|
508
|
+
get: (params: import("../autogenerated").GetImageParamsDto & {
|
|
509
|
+
__taskOutput__?: never;
|
|
510
|
+
}) => Promise<import("../types").ImageEntity>;
|
|
511
|
+
getUrls: (params: import("../autogenerated").GetUrlsForImagesParamsDto & {
|
|
512
|
+
__taskOutput__?: never;
|
|
513
|
+
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
315
514
|
};
|
|
316
515
|
operations: {
|
|
317
|
-
get: (params: import("../autogenerated").GetOperationParamsDto
|
|
318
|
-
|
|
319
|
-
|
|
516
|
+
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
517
|
+
__taskOutput__?: never;
|
|
518
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
519
|
+
list: (params: import("../autogenerated").ListOperationsParamsDto & {
|
|
520
|
+
__taskOutput__?: never;
|
|
521
|
+
}) => Promise<import("../autogenerated").ListOperationsDto>;
|
|
522
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
523
|
+
__taskOutput__?: never;
|
|
524
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
525
|
+
run: {
|
|
526
|
+
haute: {
|
|
527
|
+
linda: {
|
|
528
|
+
v1: (params: import("../autogenerated").LindaHauteV1ControllerInput & {
|
|
529
|
+
__taskOutput__?: never;
|
|
530
|
+
}) => Promise<import("../autogenerated").HauteLindaV1Response>;
|
|
531
|
+
};
|
|
532
|
+
naomi: {
|
|
533
|
+
v1: (params: import("../autogenerated").NaomiHauteV1ControllerInput & {
|
|
534
|
+
__taskOutput__?: never;
|
|
535
|
+
}) => Promise<import("../autogenerated").HauteNaomiV1Response>;
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
inpaint: {
|
|
539
|
+
kate: {
|
|
540
|
+
v1: (params: import("../autogenerated").KateInpaintV1ControllerInput & {
|
|
541
|
+
__taskOutput__?: never;
|
|
542
|
+
}) => Promise<import("../autogenerated").InpaintKateV1Response>;
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
gpt: {
|
|
546
|
+
v1: (params: import("../autogenerated").GPTV1ControllerInput & {
|
|
547
|
+
__taskOutput__?: never;
|
|
548
|
+
}) => Promise<import("../autogenerated").GptV1Response>;
|
|
549
|
+
};
|
|
550
|
+
imagine: {
|
|
551
|
+
kate: {
|
|
552
|
+
v1: (params: import("../autogenerated").KateImagineV1ControllerInput & {
|
|
553
|
+
__taskOutput__?: never;
|
|
554
|
+
}) => Promise<import("../autogenerated").ImagineKateV1Response>;
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
upscale: {
|
|
558
|
+
v1: (params: import("../autogenerated").UpscaleV1ControllerInput & {
|
|
559
|
+
__taskOutput__?: never;
|
|
560
|
+
}) => Promise<import("../autogenerated").UpscaleV1Response>;
|
|
561
|
+
};
|
|
562
|
+
objectDetection: {
|
|
563
|
+
v1: (params: import("../autogenerated").ObjectDetectionV1ControllerInput & {
|
|
564
|
+
__taskOutput__?: never;
|
|
565
|
+
}) => Promise<import("../autogenerated").ObjectDetectionV1Response>;
|
|
566
|
+
};
|
|
567
|
+
segmentAnything: {
|
|
568
|
+
embeddings: {
|
|
569
|
+
v1: (params: import("../autogenerated").SegmentAnythingEmbeddingsV1ControllerInput & {
|
|
570
|
+
__taskOutput__?: never;
|
|
571
|
+
}) => Promise<import("../autogenerated").SegmentAnythingEmbeddingsV1Response>;
|
|
572
|
+
};
|
|
573
|
+
mask: {
|
|
574
|
+
v1: (params: import("../autogenerated").SegmentAnythingMaskV1ControllerInput & {
|
|
575
|
+
__taskOutput__?: never;
|
|
576
|
+
}) => Promise<import("../autogenerated").SegmentAnythingMaskV1Response>;
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
poseEstimation: {
|
|
580
|
+
v1: (params: import("../autogenerated").PoseEstimationV1ControllerInput & {
|
|
581
|
+
__taskOutput__?: never;
|
|
582
|
+
}) => Promise<import("../autogenerated").PoseEstimationV1Response>;
|
|
583
|
+
};
|
|
584
|
+
cut: {
|
|
585
|
+
v1: (params: import("../autogenerated").CutV1ControllerInput & {
|
|
586
|
+
__taskOutput__?: never;
|
|
587
|
+
}) => Promise<import("../autogenerated").CutV1Response>;
|
|
588
|
+
};
|
|
589
|
+
composite: {
|
|
590
|
+
v1: (params: import("../autogenerated").CompositeV1ControllerInput & {
|
|
591
|
+
__taskOutput__?: never;
|
|
592
|
+
}) => Promise<import("../autogenerated").CompositeV1Response>;
|
|
593
|
+
};
|
|
594
|
+
vton: {
|
|
595
|
+
gisele: {
|
|
596
|
+
v1: (params: import("../autogenerated").GiseleVtonV1ControllerInput & {
|
|
597
|
+
__taskOutput__?: never;
|
|
598
|
+
}) => Promise<import("../autogenerated").VtonGiseleV1Response>;
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
negateImage: {
|
|
602
|
+
v1: (params: import("../autogenerated").NegateImageV1ControllerInput & {
|
|
603
|
+
__taskOutput__?: never;
|
|
604
|
+
}) => Promise<import("../autogenerated").NegateImageV1Response>;
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
wait: (params: import("../autogenerated").WaitOperationParamsDto & {
|
|
608
|
+
__taskOutput__?: never;
|
|
609
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
320
610
|
};
|
|
321
611
|
poses: {
|
|
322
|
-
get: (params: import("../autogenerated").GetPoseParamsDto
|
|
323
|
-
|
|
612
|
+
get: (params: import("../autogenerated").GetPoseParamsDto & {
|
|
613
|
+
__taskOutput__?: never;
|
|
614
|
+
}) => Promise<import("../autogenerated").PoseEntity>;
|
|
615
|
+
list: (params: import("../autogenerated").ListPosesParamsDto & {
|
|
616
|
+
__taskOutput__?: never;
|
|
617
|
+
}) => Promise<import("../autogenerated").ListPosesDto>;
|
|
324
618
|
};
|
|
325
619
|
stacks: {
|
|
326
|
-
create: (params: import("../autogenerated").CreateStackParamsDto
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
620
|
+
create: (params: import("../autogenerated").CreateStackParamsDto & {
|
|
621
|
+
__taskOutput__?: never;
|
|
622
|
+
}) => Promise<import("../types").StackEntity>;
|
|
623
|
+
get: (params: import("../autogenerated").GetStackParamsDto & {
|
|
624
|
+
__taskOutput__?: never;
|
|
625
|
+
}) => Promise<import("../types").StackEntity>;
|
|
626
|
+
list: (params: import("../autogenerated").ListStacksParamsDto & {
|
|
627
|
+
__taskOutput__?: never;
|
|
628
|
+
}) => Promise<import("../autogenerated").ListStacksDto>;
|
|
629
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
630
|
+
__taskOutput__?: never;
|
|
631
|
+
}) => Promise<import("../types").StackEntity>;
|
|
330
632
|
};
|
|
331
633
|
storage: {
|
|
332
|
-
create: (params: import("../autogenerated").CreateStorageRecordParamsDto
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
634
|
+
create: (params: import("../autogenerated").CreateStorageRecordParamsDto & {
|
|
635
|
+
__taskOutput__?: never;
|
|
636
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
637
|
+
delete: (params: import("../autogenerated").DeleteStorageParamsDto & {
|
|
638
|
+
__taskOutput__?: never;
|
|
639
|
+
}) => Promise<void>;
|
|
640
|
+
getMany: (params: import("../autogenerated").GetStorageRecordParamsDto & {
|
|
641
|
+
__taskOutput__?: never;
|
|
642
|
+
}) => Promise<import("../autogenerated").StorageRecordsResultDto[]>;
|
|
643
|
+
update: (params: import("../autogenerated").UpdateStorageRecordParamsDto & {
|
|
644
|
+
__taskOutput__?: never;
|
|
645
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
336
646
|
};
|
|
337
647
|
}>) => import("@hautechai/pipelines").Pipeline<{
|
|
338
648
|
access: {
|
|
339
|
-
attach: (params: import("../autogenerated").AttachAccessParamsDto
|
|
340
|
-
|
|
649
|
+
attach: (params: import("../autogenerated").AttachAccessParamsDto & {
|
|
650
|
+
__taskOutput__?: never;
|
|
651
|
+
}) => Promise<void>;
|
|
652
|
+
grant: (params: import("../autogenerated").GrantAccessParamsDto & {
|
|
653
|
+
__taskOutput__?: never;
|
|
654
|
+
}) => Promise<void>;
|
|
341
655
|
};
|
|
342
656
|
accounts: {
|
|
343
|
-
create: (params: import("../autogenerated").CreateAccountParamsDto
|
|
344
|
-
|
|
345
|
-
|
|
657
|
+
create: (params: import("../autogenerated").CreateAccountParamsDto & {
|
|
658
|
+
__taskOutput__?: never;
|
|
659
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
660
|
+
get: (params: import("../autogenerated").GetAccountParamsDto & {
|
|
661
|
+
__taskOutput__?: never;
|
|
662
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
663
|
+
list: (params: import("../autogenerated").ListAccountsParamsDto & {
|
|
664
|
+
__taskOutput__?: never;
|
|
665
|
+
}) => Promise<import("../autogenerated").ListAccountsDto>;
|
|
346
666
|
};
|
|
347
667
|
balances: {
|
|
348
|
-
add: (params: import("../autogenerated").AddBalanceParamsDto
|
|
349
|
-
|
|
350
|
-
|
|
668
|
+
add: (params: import("../autogenerated").AddBalanceParamsDto & {
|
|
669
|
+
__taskOutput__?: never;
|
|
670
|
+
}) => Promise<void>;
|
|
671
|
+
get: (params: import("../autogenerated").GetBalanceParamsDto & {
|
|
672
|
+
__taskOutput__?: never;
|
|
673
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
674
|
+
getSelf: (params: string & {
|
|
675
|
+
__taskOutput__?: never;
|
|
676
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
351
677
|
};
|
|
352
678
|
collections: {
|
|
353
|
-
create: (params: import("../autogenerated").CreateCollectionParamsDto
|
|
679
|
+
create: (params: import("../autogenerated").CreateCollectionParamsDto & {
|
|
680
|
+
__taskOutput__?: never;
|
|
681
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
354
682
|
items: {
|
|
355
|
-
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto
|
|
356
|
-
|
|
357
|
-
|
|
683
|
+
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto & {
|
|
684
|
+
__taskOutput__?: never;
|
|
685
|
+
}) => Promise<void>;
|
|
686
|
+
list: (params: import("../autogenerated").ListCollectionItemsParamsDto & {
|
|
687
|
+
__taskOutput__?: never;
|
|
688
|
+
}) => Promise<import("../autogenerated").ListCollectionItemsDto>;
|
|
689
|
+
remove: (params: import("../autogenerated").RemoveItemsFromCollectionParamsDto & {
|
|
690
|
+
__taskOutput__?: never;
|
|
691
|
+
}) => Promise<void>;
|
|
358
692
|
};
|
|
359
|
-
get: (params: import("../autogenerated").GetCollectionParamsDto
|
|
360
|
-
|
|
361
|
-
|
|
693
|
+
get: (params: import("../autogenerated").GetCollectionParamsDto & {
|
|
694
|
+
__taskOutput__?: never;
|
|
695
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
696
|
+
list: (params: import("../autogenerated").ListCollectionsParamsDto & {
|
|
697
|
+
__taskOutput__?: never;
|
|
698
|
+
}) => Promise<import("../autogenerated").ListCollectionsDto>;
|
|
699
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
700
|
+
__taskOutput__?: never;
|
|
701
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
362
702
|
};
|
|
363
703
|
groups: {
|
|
364
704
|
accounts: {
|
|
365
|
-
add: (params: import("../autogenerated").AddAccountToGroupParamsDto
|
|
366
|
-
|
|
705
|
+
add: (params: import("../autogenerated").AddAccountToGroupParamsDto & {
|
|
706
|
+
__taskOutput__?: never;
|
|
707
|
+
}) => Promise<void>;
|
|
708
|
+
remove: (params: import("../autogenerated").RemoveAccountFromGroupParamsDto & {
|
|
709
|
+
__taskOutput__?: never;
|
|
710
|
+
}) => Promise<void>;
|
|
367
711
|
};
|
|
368
|
-
create: (params: string
|
|
369
|
-
|
|
370
|
-
|
|
712
|
+
create: (params: string & {
|
|
713
|
+
__taskOutput__?: never;
|
|
714
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
715
|
+
delete: (params: import("../autogenerated").DeleteParamsDto & {
|
|
716
|
+
__taskOutput__?: never;
|
|
717
|
+
}) => Promise<void>;
|
|
718
|
+
get: (params: import("../autogenerated").GetGroupParamsDto & {
|
|
719
|
+
__taskOutput__?: never;
|
|
720
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
371
721
|
};
|
|
372
722
|
images: {
|
|
373
|
-
get: (params: import("../autogenerated").GetImageParamsDto
|
|
374
|
-
|
|
723
|
+
get: (params: import("../autogenerated").GetImageParamsDto & {
|
|
724
|
+
__taskOutput__?: never;
|
|
725
|
+
}) => Promise<import("../types").ImageEntity>;
|
|
726
|
+
getUrls: (params: import("../autogenerated").GetUrlsForImagesParamsDto & {
|
|
727
|
+
__taskOutput__?: never;
|
|
728
|
+
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
375
729
|
};
|
|
376
730
|
operations: {
|
|
377
|
-
get: (params: import("../autogenerated").GetOperationParamsDto
|
|
378
|
-
|
|
379
|
-
|
|
731
|
+
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
732
|
+
__taskOutput__?: never;
|
|
733
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
734
|
+
list: (params: import("../autogenerated").ListOperationsParamsDto & {
|
|
735
|
+
__taskOutput__?: never;
|
|
736
|
+
}) => Promise<import("../autogenerated").ListOperationsDto>;
|
|
737
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
738
|
+
__taskOutput__?: never;
|
|
739
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
740
|
+
run: {
|
|
741
|
+
haute: {
|
|
742
|
+
linda: {
|
|
743
|
+
v1: (params: import("../autogenerated").LindaHauteV1ControllerInput & {
|
|
744
|
+
__taskOutput__?: never;
|
|
745
|
+
}) => Promise<import("../autogenerated").HauteLindaV1Response>;
|
|
746
|
+
};
|
|
747
|
+
naomi: {
|
|
748
|
+
v1: (params: import("../autogenerated").NaomiHauteV1ControllerInput & {
|
|
749
|
+
__taskOutput__?: never;
|
|
750
|
+
}) => Promise<import("../autogenerated").HauteNaomiV1Response>;
|
|
751
|
+
};
|
|
752
|
+
};
|
|
753
|
+
inpaint: {
|
|
754
|
+
kate: {
|
|
755
|
+
v1: (params: import("../autogenerated").KateInpaintV1ControllerInput & {
|
|
756
|
+
__taskOutput__?: never;
|
|
757
|
+
}) => Promise<import("../autogenerated").InpaintKateV1Response>;
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
gpt: {
|
|
761
|
+
v1: (params: import("../autogenerated").GPTV1ControllerInput & {
|
|
762
|
+
__taskOutput__?: never;
|
|
763
|
+
}) => Promise<import("../autogenerated").GptV1Response>;
|
|
764
|
+
};
|
|
765
|
+
imagine: {
|
|
766
|
+
kate: {
|
|
767
|
+
v1: (params: import("../autogenerated").KateImagineV1ControllerInput & {
|
|
768
|
+
__taskOutput__?: never;
|
|
769
|
+
}) => Promise<import("../autogenerated").ImagineKateV1Response>;
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
upscale: {
|
|
773
|
+
v1: (params: import("../autogenerated").UpscaleV1ControllerInput & {
|
|
774
|
+
__taskOutput__?: never;
|
|
775
|
+
}) => Promise<import("../autogenerated").UpscaleV1Response>;
|
|
776
|
+
};
|
|
777
|
+
objectDetection: {
|
|
778
|
+
v1: (params: import("../autogenerated").ObjectDetectionV1ControllerInput & {
|
|
779
|
+
__taskOutput__?: never;
|
|
780
|
+
}) => Promise<import("../autogenerated").ObjectDetectionV1Response>;
|
|
781
|
+
};
|
|
782
|
+
segmentAnything: {
|
|
783
|
+
embeddings: {
|
|
784
|
+
v1: (params: import("../autogenerated").SegmentAnythingEmbeddingsV1ControllerInput & {
|
|
785
|
+
__taskOutput__?: never;
|
|
786
|
+
}) => Promise<import("../autogenerated").SegmentAnythingEmbeddingsV1Response>;
|
|
787
|
+
};
|
|
788
|
+
mask: {
|
|
789
|
+
v1: (params: import("../autogenerated").SegmentAnythingMaskV1ControllerInput & {
|
|
790
|
+
__taskOutput__?: never;
|
|
791
|
+
}) => Promise<import("../autogenerated").SegmentAnythingMaskV1Response>;
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
poseEstimation: {
|
|
795
|
+
v1: (params: import("../autogenerated").PoseEstimationV1ControllerInput & {
|
|
796
|
+
__taskOutput__?: never;
|
|
797
|
+
}) => Promise<import("../autogenerated").PoseEstimationV1Response>;
|
|
798
|
+
};
|
|
799
|
+
cut: {
|
|
800
|
+
v1: (params: import("../autogenerated").CutV1ControllerInput & {
|
|
801
|
+
__taskOutput__?: never;
|
|
802
|
+
}) => Promise<import("../autogenerated").CutV1Response>;
|
|
803
|
+
};
|
|
804
|
+
composite: {
|
|
805
|
+
v1: (params: import("../autogenerated").CompositeV1ControllerInput & {
|
|
806
|
+
__taskOutput__?: never;
|
|
807
|
+
}) => Promise<import("../autogenerated").CompositeV1Response>;
|
|
808
|
+
};
|
|
809
|
+
vton: {
|
|
810
|
+
gisele: {
|
|
811
|
+
v1: (params: import("../autogenerated").GiseleVtonV1ControllerInput & {
|
|
812
|
+
__taskOutput__?: never;
|
|
813
|
+
}) => Promise<import("../autogenerated").VtonGiseleV1Response>;
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
negateImage: {
|
|
817
|
+
v1: (params: import("../autogenerated").NegateImageV1ControllerInput & {
|
|
818
|
+
__taskOutput__?: never;
|
|
819
|
+
}) => Promise<import("../autogenerated").NegateImageV1Response>;
|
|
820
|
+
};
|
|
821
|
+
};
|
|
822
|
+
wait: (params: import("../autogenerated").WaitOperationParamsDto & {
|
|
823
|
+
__taskOutput__?: never;
|
|
824
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
380
825
|
};
|
|
381
826
|
poses: {
|
|
382
|
-
get: (params: import("../autogenerated").GetPoseParamsDto
|
|
383
|
-
|
|
827
|
+
get: (params: import("../autogenerated").GetPoseParamsDto & {
|
|
828
|
+
__taskOutput__?: never;
|
|
829
|
+
}) => Promise<import("../autogenerated").PoseEntity>;
|
|
830
|
+
list: (params: import("../autogenerated").ListPosesParamsDto & {
|
|
831
|
+
__taskOutput__?: never;
|
|
832
|
+
}) => Promise<import("../autogenerated").ListPosesDto>;
|
|
384
833
|
};
|
|
385
834
|
stacks: {
|
|
386
|
-
create: (params: import("../autogenerated").CreateStackParamsDto
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
835
|
+
create: (params: import("../autogenerated").CreateStackParamsDto & {
|
|
836
|
+
__taskOutput__?: never;
|
|
837
|
+
}) => Promise<import("../types").StackEntity>;
|
|
838
|
+
get: (params: import("../autogenerated").GetStackParamsDto & {
|
|
839
|
+
__taskOutput__?: never;
|
|
840
|
+
}) => Promise<import("../types").StackEntity>;
|
|
841
|
+
list: (params: import("../autogenerated").ListStacksParamsDto & {
|
|
842
|
+
__taskOutput__?: never;
|
|
843
|
+
}) => Promise<import("../autogenerated").ListStacksDto>;
|
|
844
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
845
|
+
__taskOutput__?: never;
|
|
846
|
+
}) => Promise<import("../types").StackEntity>;
|
|
390
847
|
};
|
|
391
848
|
storage: {
|
|
392
|
-
create: (params: import("../autogenerated").CreateStorageRecordParamsDto
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
849
|
+
create: (params: import("../autogenerated").CreateStorageRecordParamsDto & {
|
|
850
|
+
__taskOutput__?: never;
|
|
851
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
852
|
+
delete: (params: import("../autogenerated").DeleteStorageParamsDto & {
|
|
853
|
+
__taskOutput__?: never;
|
|
854
|
+
}) => Promise<void>;
|
|
855
|
+
getMany: (params: import("../autogenerated").GetStorageRecordParamsDto & {
|
|
856
|
+
__taskOutput__?: never;
|
|
857
|
+
}) => Promise<import("../autogenerated").StorageRecordsResultDto[]>;
|
|
858
|
+
update: (params: import("../autogenerated").UpdateStorageRecordParamsDto & {
|
|
859
|
+
__taskOutput__?: never;
|
|
860
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
396
861
|
};
|
|
397
862
|
}>;
|
|
398
863
|
create: (props: {
|
|
399
864
|
metadata?: any;
|
|
400
865
|
template: import("@hautechai/pipelines").Pipeline<{
|
|
401
866
|
access: {
|
|
402
|
-
attach: (params: import("../autogenerated").AttachAccessParamsDto
|
|
403
|
-
|
|
867
|
+
attach: (params: import("../autogenerated").AttachAccessParamsDto & {
|
|
868
|
+
__taskOutput__?: never;
|
|
869
|
+
}) => Promise<void>;
|
|
870
|
+
grant: (params: import("../autogenerated").GrantAccessParamsDto & {
|
|
871
|
+
__taskOutput__?: never;
|
|
872
|
+
}) => Promise<void>;
|
|
404
873
|
};
|
|
405
874
|
accounts: {
|
|
406
|
-
create: (params: import("../autogenerated").CreateAccountParamsDto
|
|
407
|
-
|
|
408
|
-
|
|
875
|
+
create: (params: import("../autogenerated").CreateAccountParamsDto & {
|
|
876
|
+
__taskOutput__?: never;
|
|
877
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
878
|
+
get: (params: import("../autogenerated").GetAccountParamsDto & {
|
|
879
|
+
__taskOutput__?: never;
|
|
880
|
+
}) => Promise<import("../types").AccountEntity>;
|
|
881
|
+
list: (params: import("../autogenerated").ListAccountsParamsDto & {
|
|
882
|
+
__taskOutput__?: never;
|
|
883
|
+
}) => Promise<import("../autogenerated").ListAccountsDto>;
|
|
409
884
|
};
|
|
410
885
|
balances: {
|
|
411
|
-
add: (params: import("../autogenerated").AddBalanceParamsDto
|
|
412
|
-
|
|
413
|
-
|
|
886
|
+
add: (params: import("../autogenerated").AddBalanceParamsDto & {
|
|
887
|
+
__taskOutput__?: never;
|
|
888
|
+
}) => Promise<void>;
|
|
889
|
+
get: (params: import("../autogenerated").GetBalanceParamsDto & {
|
|
890
|
+
__taskOutput__?: never;
|
|
891
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
892
|
+
getSelf: (params: string & {
|
|
893
|
+
__taskOutput__?: never;
|
|
894
|
+
}) => Promise<import("../autogenerated").BalanceResultDto>;
|
|
414
895
|
};
|
|
415
896
|
collections: {
|
|
416
|
-
create: (params: import("../autogenerated").CreateCollectionParamsDto
|
|
897
|
+
create: (params: import("../autogenerated").CreateCollectionParamsDto & {
|
|
898
|
+
__taskOutput__?: never;
|
|
899
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
417
900
|
items: {
|
|
418
|
-
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto
|
|
419
|
-
|
|
420
|
-
|
|
901
|
+
add: (params: import("../autogenerated").AddItemsToCollectionParamsDto & {
|
|
902
|
+
__taskOutput__?: never;
|
|
903
|
+
}) => Promise<void>;
|
|
904
|
+
list: (params: import("../autogenerated").ListCollectionItemsParamsDto & {
|
|
905
|
+
__taskOutput__?: never;
|
|
906
|
+
}) => Promise<import("../autogenerated").ListCollectionItemsDto>;
|
|
907
|
+
remove: (params: import("../autogenerated").RemoveItemsFromCollectionParamsDto & {
|
|
908
|
+
__taskOutput__?: never;
|
|
909
|
+
}) => Promise<void>;
|
|
421
910
|
};
|
|
422
|
-
get: (params: import("../autogenerated").GetCollectionParamsDto
|
|
423
|
-
|
|
424
|
-
|
|
911
|
+
get: (params: import("../autogenerated").GetCollectionParamsDto & {
|
|
912
|
+
__taskOutput__?: never;
|
|
913
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
914
|
+
list: (params: import("../autogenerated").ListCollectionsParamsDto & {
|
|
915
|
+
__taskOutput__?: never;
|
|
916
|
+
}) => Promise<import("../autogenerated").ListCollectionsDto>;
|
|
917
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
918
|
+
__taskOutput__?: never;
|
|
919
|
+
}) => Promise<import("../types").CollectionEntity>;
|
|
425
920
|
};
|
|
426
921
|
groups: {
|
|
427
922
|
accounts: {
|
|
428
|
-
add: (params: import("../autogenerated").AddAccountToGroupParamsDto
|
|
429
|
-
|
|
923
|
+
add: (params: import("../autogenerated").AddAccountToGroupParamsDto & {
|
|
924
|
+
__taskOutput__?: never;
|
|
925
|
+
}) => Promise<void>;
|
|
926
|
+
remove: (params: import("../autogenerated").RemoveAccountFromGroupParamsDto & {
|
|
927
|
+
__taskOutput__?: never;
|
|
928
|
+
}) => Promise<void>;
|
|
430
929
|
};
|
|
431
|
-
create: (params: string
|
|
432
|
-
|
|
433
|
-
|
|
930
|
+
create: (params: string & {
|
|
931
|
+
__taskOutput__?: never;
|
|
932
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
933
|
+
delete: (params: import("../autogenerated").DeleteParamsDto & {
|
|
934
|
+
__taskOutput__?: never;
|
|
935
|
+
}) => Promise<void>;
|
|
936
|
+
get: (params: import("../autogenerated").GetGroupParamsDto & {
|
|
937
|
+
__taskOutput__?: never;
|
|
938
|
+
}) => Promise<import("../types").GroupEntity>;
|
|
434
939
|
};
|
|
435
940
|
images: {
|
|
436
|
-
get: (params: import("../autogenerated").GetImageParamsDto
|
|
437
|
-
|
|
941
|
+
get: (params: import("../autogenerated").GetImageParamsDto & {
|
|
942
|
+
__taskOutput__?: never;
|
|
943
|
+
}) => Promise<import("../types").ImageEntity>;
|
|
944
|
+
getUrls: (params: import("../autogenerated").GetUrlsForImagesParamsDto & {
|
|
945
|
+
__taskOutput__?: never;
|
|
946
|
+
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
438
947
|
};
|
|
439
948
|
operations: {
|
|
440
|
-
get: (params: import("../autogenerated").GetOperationParamsDto
|
|
441
|
-
|
|
442
|
-
|
|
949
|
+
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
950
|
+
__taskOutput__?: never;
|
|
951
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
952
|
+
list: (params: import("../autogenerated").ListOperationsParamsDto & {
|
|
953
|
+
__taskOutput__?: never;
|
|
954
|
+
}) => Promise<import("../autogenerated").ListOperationsDto>;
|
|
955
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
956
|
+
__taskOutput__?: never;
|
|
957
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
958
|
+
run: {
|
|
959
|
+
haute: {
|
|
960
|
+
linda: {
|
|
961
|
+
v1: (params: import("../autogenerated").LindaHauteV1ControllerInput & {
|
|
962
|
+
__taskOutput__?: never;
|
|
963
|
+
}) => Promise<import("../autogenerated").HauteLindaV1Response>;
|
|
964
|
+
};
|
|
965
|
+
naomi: {
|
|
966
|
+
v1: (params: import("../autogenerated").NaomiHauteV1ControllerInput & {
|
|
967
|
+
__taskOutput__?: never;
|
|
968
|
+
}) => Promise<import("../autogenerated").HauteNaomiV1Response>;
|
|
969
|
+
};
|
|
970
|
+
};
|
|
971
|
+
inpaint: {
|
|
972
|
+
kate: {
|
|
973
|
+
v1: (params: import("../autogenerated").KateInpaintV1ControllerInput & {
|
|
974
|
+
__taskOutput__?: never;
|
|
975
|
+
}) => Promise<import("../autogenerated").InpaintKateV1Response>;
|
|
976
|
+
};
|
|
977
|
+
};
|
|
978
|
+
gpt: {
|
|
979
|
+
v1: (params: import("../autogenerated").GPTV1ControllerInput & {
|
|
980
|
+
__taskOutput__?: never;
|
|
981
|
+
}) => Promise<import("../autogenerated").GptV1Response>;
|
|
982
|
+
};
|
|
983
|
+
imagine: {
|
|
984
|
+
kate: {
|
|
985
|
+
v1: (params: import("../autogenerated").KateImagineV1ControllerInput & {
|
|
986
|
+
__taskOutput__?: never;
|
|
987
|
+
}) => Promise<import("../autogenerated").ImagineKateV1Response>;
|
|
988
|
+
};
|
|
989
|
+
};
|
|
990
|
+
upscale: {
|
|
991
|
+
v1: (params: import("../autogenerated").UpscaleV1ControllerInput & {
|
|
992
|
+
__taskOutput__?: never;
|
|
993
|
+
}) => Promise<import("../autogenerated").UpscaleV1Response>;
|
|
994
|
+
};
|
|
995
|
+
objectDetection: {
|
|
996
|
+
v1: (params: import("../autogenerated").ObjectDetectionV1ControllerInput & {
|
|
997
|
+
__taskOutput__?: never;
|
|
998
|
+
}) => Promise<import("../autogenerated").ObjectDetectionV1Response>;
|
|
999
|
+
};
|
|
1000
|
+
segmentAnything: {
|
|
1001
|
+
embeddings: {
|
|
1002
|
+
v1: (params: import("../autogenerated").SegmentAnythingEmbeddingsV1ControllerInput & {
|
|
1003
|
+
__taskOutput__?: never;
|
|
1004
|
+
}) => Promise<import("../autogenerated").SegmentAnythingEmbeddingsV1Response>;
|
|
1005
|
+
};
|
|
1006
|
+
mask: {
|
|
1007
|
+
v1: (params: import("../autogenerated").SegmentAnythingMaskV1ControllerInput & {
|
|
1008
|
+
__taskOutput__?: never;
|
|
1009
|
+
}) => Promise<import("../autogenerated").SegmentAnythingMaskV1Response>;
|
|
1010
|
+
};
|
|
1011
|
+
};
|
|
1012
|
+
poseEstimation: {
|
|
1013
|
+
v1: (params: import("../autogenerated").PoseEstimationV1ControllerInput & {
|
|
1014
|
+
__taskOutput__?: never;
|
|
1015
|
+
}) => Promise<import("../autogenerated").PoseEstimationV1Response>;
|
|
1016
|
+
};
|
|
1017
|
+
cut: {
|
|
1018
|
+
v1: (params: import("../autogenerated").CutV1ControllerInput & {
|
|
1019
|
+
__taskOutput__?: never;
|
|
1020
|
+
}) => Promise<import("../autogenerated").CutV1Response>;
|
|
1021
|
+
};
|
|
1022
|
+
composite: {
|
|
1023
|
+
v1: (params: import("../autogenerated").CompositeV1ControllerInput & {
|
|
1024
|
+
__taskOutput__?: never;
|
|
1025
|
+
}) => Promise<import("../autogenerated").CompositeV1Response>;
|
|
1026
|
+
};
|
|
1027
|
+
vton: {
|
|
1028
|
+
gisele: {
|
|
1029
|
+
v1: (params: import("../autogenerated").GiseleVtonV1ControllerInput & {
|
|
1030
|
+
__taskOutput__?: never;
|
|
1031
|
+
}) => Promise<import("../autogenerated").VtonGiseleV1Response>;
|
|
1032
|
+
};
|
|
1033
|
+
};
|
|
1034
|
+
negateImage: {
|
|
1035
|
+
v1: (params: import("../autogenerated").NegateImageV1ControllerInput & {
|
|
1036
|
+
__taskOutput__?: never;
|
|
1037
|
+
}) => Promise<import("../autogenerated").NegateImageV1Response>;
|
|
1038
|
+
};
|
|
1039
|
+
};
|
|
1040
|
+
wait: (params: import("../autogenerated").WaitOperationParamsDto & {
|
|
1041
|
+
__taskOutput__?: never;
|
|
1042
|
+
}) => Promise<import("../types").OperationEntity>;
|
|
443
1043
|
};
|
|
444
1044
|
poses: {
|
|
445
|
-
get: (params: import("../autogenerated").GetPoseParamsDto
|
|
446
|
-
|
|
1045
|
+
get: (params: import("../autogenerated").GetPoseParamsDto & {
|
|
1046
|
+
__taskOutput__?: never;
|
|
1047
|
+
}) => Promise<import("../autogenerated").PoseEntity>;
|
|
1048
|
+
list: (params: import("../autogenerated").ListPosesParamsDto & {
|
|
1049
|
+
__taskOutput__?: never;
|
|
1050
|
+
}) => Promise<import("../autogenerated").ListPosesDto>;
|
|
447
1051
|
};
|
|
448
1052
|
stacks: {
|
|
449
|
-
create: (params: import("../autogenerated").CreateStackParamsDto
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
1053
|
+
create: (params: import("../autogenerated").CreateStackParamsDto & {
|
|
1054
|
+
__taskOutput__?: never;
|
|
1055
|
+
}) => Promise<import("../types").StackEntity>;
|
|
1056
|
+
get: (params: import("../autogenerated").GetStackParamsDto & {
|
|
1057
|
+
__taskOutput__?: never;
|
|
1058
|
+
}) => Promise<import("../types").StackEntity>;
|
|
1059
|
+
list: (params: import("../autogenerated").ListStacksParamsDto & {
|
|
1060
|
+
__taskOutput__?: never;
|
|
1061
|
+
}) => Promise<import("../autogenerated").ListStacksDto>;
|
|
1062
|
+
updateMetadata: (params: import("../autogenerated").UpdateResourceMetadataDto & {
|
|
1063
|
+
__taskOutput__?: never;
|
|
1064
|
+
}) => Promise<import("../types").StackEntity>;
|
|
453
1065
|
};
|
|
454
1066
|
storage: {
|
|
455
|
-
create: (params: import("../autogenerated").CreateStorageRecordParamsDto
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
1067
|
+
create: (params: import("../autogenerated").CreateStorageRecordParamsDto & {
|
|
1068
|
+
__taskOutput__?: never;
|
|
1069
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
1070
|
+
delete: (params: import("../autogenerated").DeleteStorageParamsDto & {
|
|
1071
|
+
__taskOutput__?: never;
|
|
1072
|
+
}) => Promise<void>;
|
|
1073
|
+
getMany: (params: import("../autogenerated").GetStorageRecordParamsDto & {
|
|
1074
|
+
__taskOutput__?: never;
|
|
1075
|
+
}) => Promise<import("../autogenerated").StorageRecordsResultDto[]>;
|
|
1076
|
+
update: (params: import("../autogenerated").UpdateStorageRecordParamsDto & {
|
|
1077
|
+
__taskOutput__?: never;
|
|
1078
|
+
}) => Promise<import("../types").StorageEntity>;
|
|
459
1079
|
};
|
|
460
1080
|
}>;
|
|
461
1081
|
}) => Promise<import("../types").PipelineEntity>;
|