@hautechai/sdk 0.0.1 → 0.0.2

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.
@@ -194,130 +194,6 @@ export interface CollectionEntity {
194
194
  */
195
195
  'updatedAt': string;
196
196
  }
197
- /**
198
- *
199
- * @export
200
- * @interface ConstructPromptV1ControllerInput
201
- */
202
- export interface ConstructPromptV1ControllerInput {
203
- /**
204
- *
205
- * @type {object}
206
- * @memberof ConstructPromptV1ControllerInput
207
- */
208
- 'metadata'?: object;
209
- /**
210
- *
211
- * @type {ConstructPromptV1Input}
212
- * @memberof ConstructPromptV1ControllerInput
213
- */
214
- 'input'?: ConstructPromptV1Input;
215
- }
216
- /**
217
- *
218
- * @export
219
- * @interface ConstructPromptV1Input
220
- */
221
- export interface ConstructPromptV1Input {
222
- /**
223
- *
224
- * @type {string}
225
- * @memberof ConstructPromptV1Input
226
- */
227
- 'age'?: ConstructPromptV1InputAgeEnum;
228
- /**
229
- *
230
- * @type {string}
231
- * @memberof ConstructPromptV1Input
232
- */
233
- 'angle'?: ConstructPromptV1InputAngleEnum;
234
- /**
235
- *
236
- * @type {string}
237
- * @memberof ConstructPromptV1Input
238
- */
239
- 'background'?: ConstructPromptV1InputBackgroundEnum;
240
- /**
241
- *
242
- * @type {string}
243
- * @memberof ConstructPromptV1Input
244
- */
245
- 'ethnicity'?: ConstructPromptV1InputEthnicityEnum;
246
- /**
247
- *
248
- * @type {string}
249
- * @memberof ConstructPromptV1Input
250
- */
251
- 'gender'?: ConstructPromptV1InputGenderEnum;
252
- /**
253
- *
254
- * @type {string}
255
- * @memberof ConstructPromptV1Input
256
- */
257
- 'photoType'?: ConstructPromptV1InputPhotoTypeEnum;
258
- /**
259
- *
260
- * @type {string}
261
- * @memberof ConstructPromptV1Input
262
- */
263
- 'productDescription'?: string;
264
- /**
265
- *
266
- * @type {string}
267
- * @memberof ConstructPromptV1Input
268
- */
269
- 'prompt'?: string;
270
- }
271
- export declare const ConstructPromptV1InputAgeEnum: {
272
- readonly Adult: "adult";
273
- readonly Infant: "infant";
274
- readonly PreTeen: "pre-teen";
275
- readonly Senior: "senior";
276
- readonly Teen: "teen";
277
- readonly Toddler: "toddler";
278
- };
279
- export type ConstructPromptV1InputAgeEnum = typeof ConstructPromptV1InputAgeEnum[keyof typeof ConstructPromptV1InputAgeEnum];
280
- export declare const ConstructPromptV1InputAngleEnum: {
281
- readonly Back: "back";
282
- readonly Front: "front";
283
- readonly Side: "side";
284
- };
285
- export type ConstructPromptV1InputAngleEnum = typeof ConstructPromptV1InputAngleEnum[keyof typeof ConstructPromptV1InputAngleEnum];
286
- export declare const ConstructPromptV1InputBackgroundEnum: {
287
- readonly Beach: "beach";
288
- readonly City: "city";
289
- readonly Desert: "desert";
290
- readonly Hotel: "hotel";
291
- readonly Lounge: "lounge";
292
- readonly Paris: "paris";
293
- readonly Park: "park";
294
- readonly Street: "street";
295
- readonly Studio: "studio";
296
- };
297
- export type ConstructPromptV1InputBackgroundEnum = typeof ConstructPromptV1InputBackgroundEnum[keyof typeof ConstructPromptV1InputBackgroundEnum];
298
- export declare const ConstructPromptV1InputEthnicityEnum: {
299
- readonly African: "african";
300
- readonly AfricanAmerican: "african-american";
301
- readonly Asian: "asian";
302
- readonly Australian: "australian";
303
- readonly CentralAsian: "central-asian";
304
- readonly European: "european";
305
- readonly Indian: "indian";
306
- readonly MiddleEastern: "middle-eastern";
307
- readonly NativeAmerican: "native-american";
308
- };
309
- export type ConstructPromptV1InputEthnicityEnum = typeof ConstructPromptV1InputEthnicityEnum[keyof typeof ConstructPromptV1InputEthnicityEnum];
310
- export declare const ConstructPromptV1InputGenderEnum: {
311
- readonly Male: "male";
312
- readonly Female: "female";
313
- };
314
- export type ConstructPromptV1InputGenderEnum = typeof ConstructPromptV1InputGenderEnum[keyof typeof ConstructPromptV1InputGenderEnum];
315
- export declare const ConstructPromptV1InputPhotoTypeEnum: {
316
- readonly Closeup: "closeup";
317
- readonly Fullbody: "fullbody";
318
- readonly Headshot: "headshot";
319
- };
320
- export type ConstructPromptV1InputPhotoTypeEnum = typeof ConstructPromptV1InputPhotoTypeEnum[keyof typeof ConstructPromptV1InputPhotoTypeEnum];
321
197
  /**
322
198
  *
323
199
  * @export
@@ -443,21 +319,161 @@ export interface DeleteStorageParamsDto {
443
319
  /**
444
320
  *
445
321
  * @export
446
- * @interface GenerateV3ControllerInput
322
+ * @interface GPTV1ControllerInput
447
323
  */
448
- export interface GenerateV3ControllerInput {
324
+ export interface GPTV1ControllerInput {
325
+ /**
326
+ *
327
+ * @type {GPTV1Input}
328
+ * @memberof GPTV1ControllerInput
329
+ */
330
+ 'input'?: GPTV1Input;
449
331
  /**
450
332
  *
451
333
  * @type {object}
452
- * @memberof GenerateV3ControllerInput
334
+ * @memberof GPTV1ControllerInput
335
+ */
336
+ 'metadata'?: object;
337
+ }
338
+ /**
339
+ *
340
+ * @export
341
+ * @interface GPTV1Input
342
+ */
343
+ export interface GPTV1Input {
344
+ /**
345
+ *
346
+ * @type {string}
347
+ * @memberof GPTV1Input
348
+ */
349
+ 'model'?: GPTV1InputModelEnum;
350
+ /**
351
+ *
352
+ * @type {string}
353
+ * @memberof GPTV1Input
354
+ */
355
+ 'prompt': string;
356
+ /**
357
+ *
358
+ * @type {string}
359
+ * @memberof GPTV1Input
360
+ */
361
+ 'imageId'?: string;
362
+ }
363
+ export declare const GPTV1InputModelEnum: {
364
+ readonly Gpt4o: "gpt-4o";
365
+ };
366
+ export type GPTV1InputModelEnum = typeof GPTV1InputModelEnum[keyof typeof GPTV1InputModelEnum];
367
+ /**
368
+ *
369
+ * @export
370
+ * @interface GenerateV1ControllerInput
371
+ */
372
+ export interface GenerateV1ControllerInput {
373
+ /**
374
+ *
375
+ * @type {GenerateV1Input}
376
+ * @memberof GenerateV1ControllerInput
377
+ */
378
+ 'input'?: GenerateV1Input;
379
+ /**
380
+ *
381
+ * @type {object}
382
+ * @memberof GenerateV1ControllerInput
453
383
  */
454
384
  'metadata'?: object;
385
+ }
386
+ /**
387
+ *
388
+ * @export
389
+ * @interface GenerateV1Input
390
+ */
391
+ export interface GenerateV1Input {
392
+ /**
393
+ *
394
+ * @type {string}
395
+ * @memberof GenerateV1Input
396
+ */
397
+ 'aspectRatio': GenerateV1InputAspectRatioEnum;
398
+ /**
399
+ *
400
+ * @type {string}
401
+ * @memberof GenerateV1Input
402
+ */
403
+ 'productImageId': string;
404
+ /**
405
+ *
406
+ * @type {string}
407
+ * @memberof GenerateV1Input
408
+ */
409
+ 'prompt': string;
410
+ /**
411
+ *
412
+ * @type {number}
413
+ * @memberof GenerateV1Input
414
+ */
415
+ 'seed': number;
416
+ /**
417
+ *
418
+ * @type {number}
419
+ * @memberof GenerateV1Input
420
+ */
421
+ 'imageWeight': number;
422
+ /**
423
+ *
424
+ * @type {string}
425
+ * @memberof GenerateV1Input
426
+ */
427
+ 'negativePrompt': string;
428
+ /**
429
+ *
430
+ * @type {number}
431
+ * @memberof GenerateV1Input
432
+ */
433
+ 'inferenceSteps': number;
434
+ /**
435
+ *
436
+ * @type {number}
437
+ * @memberof GenerateV1Input
438
+ */
439
+ 'guidanceScale': number;
440
+ /**
441
+ *
442
+ * @type {number}
443
+ * @memberof GenerateV1Input
444
+ */
445
+ 'strength': number;
446
+ }
447
+ export declare const GenerateV1InputAspectRatioEnum: {
448
+ readonly _11: "1:1";
449
+ readonly _97: "9:7";
450
+ readonly _79: "7:9";
451
+ readonly _1913: "19:13";
452
+ readonly _1319: "13:19";
453
+ readonly _74: "7:4";
454
+ readonly _47: "4:7";
455
+ readonly _125: "12:5";
456
+ readonly _512: "5:12";
457
+ };
458
+ export type GenerateV1InputAspectRatioEnum = typeof GenerateV1InputAspectRatioEnum[keyof typeof GenerateV1InputAspectRatioEnum];
459
+ /**
460
+ *
461
+ * @export
462
+ * @interface GenerateV3ControllerInput
463
+ */
464
+ export interface GenerateV3ControllerInput {
455
465
  /**
456
466
  *
457
467
  * @type {GenerateV3Input}
458
468
  * @memberof GenerateV3ControllerInput
459
469
  */
460
470
  'input'?: GenerateV3Input;
471
+ /**
472
+ *
473
+ * @type {object}
474
+ * @memberof GenerateV3ControllerInput
475
+ */
476
+ 'metadata'?: object;
461
477
  }
462
478
  /**
463
479
  *
@@ -507,6 +523,24 @@ export interface GenerateV3Input {
507
523
  * @memberof GenerateV3Input
508
524
  */
509
525
  'height': number;
526
+ /**
527
+ *
528
+ * @type {number}
529
+ * @memberof GenerateV3Input
530
+ */
531
+ 'textGuidanceScale': number;
532
+ /**
533
+ *
534
+ * @type {number}
535
+ * @memberof GenerateV3Input
536
+ */
537
+ 'imageGuidanceScale': number;
538
+ /**
539
+ *
540
+ * @type {number}
541
+ * @memberof GenerateV3Input
542
+ */
543
+ 'numInferenceSteps': number;
510
544
  }
511
545
  /**
512
546
  *
@@ -639,22 +673,66 @@ export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageE
639
673
  /**
640
674
  *
641
675
  * @export
642
- * @interface ImageUrlsResultDto
676
+ * @interface ImageRepresentationResponseDto
677
+ */
678
+ export interface ImageRepresentationResponseDto {
679
+ /**
680
+ *
681
+ * @type {string}
682
+ * @memberof ImageRepresentationResponseDto
683
+ */
684
+ 'imageId': string;
685
+ /**
686
+ *
687
+ * @type {string}
688
+ * @memberof ImageRepresentationResponseDto
689
+ */
690
+ 'type': string;
691
+ /**
692
+ *
693
+ * @type {string}
694
+ * @memberof ImageRepresentationResponseDto
695
+ */
696
+ 'url': string;
697
+ }
698
+ /**
699
+ *
700
+ * @export
701
+ * @interface ImageUrlResponseDto
643
702
  */
644
- export interface ImageUrlsResultDto {
703
+ export interface ImageUrlResponseDto {
645
704
  /**
646
705
  *
647
706
  * @type {string}
648
- * @memberof ImageUrlsResultDto
707
+ * @memberof ImageUrlResponseDto
649
708
  */
650
709
  'id': string;
651
710
  /**
652
711
  *
653
712
  * @type {string}
654
- * @memberof ImageUrlsResultDto
713
+ * @memberof ImageUrlResponseDto
655
714
  */
656
715
  'url': string;
657
716
  }
717
+ /**
718
+ *
719
+ * @export
720
+ * @interface ImagineV1ControllerInput
721
+ */
722
+ export interface ImagineV1ControllerInput {
723
+ /**
724
+ *
725
+ * @type {InpaintV1Input}
726
+ * @memberof ImagineV1ControllerInput
727
+ */
728
+ 'input'?: InpaintV1Input;
729
+ /**
730
+ *
731
+ * @type {object}
732
+ * @memberof ImagineV1ControllerInput
733
+ */
734
+ 'metadata'?: object;
735
+ }
658
736
  /**
659
737
  *
660
738
  * @export
@@ -676,16 +754,16 @@ export interface InitializeImageUploadResultDto {
676
754
  export interface InpaintV1ControllerInput {
677
755
  /**
678
756
  *
679
- * @type {object}
757
+ * @type {InpaintV1Input}
680
758
  * @memberof InpaintV1ControllerInput
681
759
  */
682
- 'metadata'?: object;
760
+ 'input'?: InpaintV1Input;
683
761
  /**
684
762
  *
685
- * @type {InpaintV1Input}
763
+ * @type {object}
686
764
  * @memberof InpaintV1ControllerInput
687
765
  */
688
- 'input'?: InpaintV1Input;
766
+ 'metadata'?: object;
689
767
  }
690
768
  /**
691
769
  *
@@ -705,6 +783,12 @@ export interface InpaintV1Input {
705
783
  * @memberof InpaintV1Input
706
784
  */
707
785
  'mask': string;
786
+ /**
787
+ *
788
+ * @type {number}
789
+ * @memberof InpaintV1Input
790
+ */
791
+ 'maskSpread': number;
708
792
  /**
709
793
  *
710
794
  * @type {string}
@@ -837,6 +921,44 @@ export interface ListStacksDto {
837
921
  */
838
922
  'pageInfo': ListCollectionsDtoPageInfo;
839
923
  }
924
+ /**
925
+ *
926
+ * @export
927
+ * @interface ObjectDetectionV1ControllerInput
928
+ */
929
+ export interface ObjectDetectionV1ControllerInput {
930
+ /**
931
+ *
932
+ * @type {ObjectDetectionV1Input}
933
+ * @memberof ObjectDetectionV1ControllerInput
934
+ */
935
+ 'input'?: ObjectDetectionV1Input;
936
+ /**
937
+ *
938
+ * @type {object}
939
+ * @memberof ObjectDetectionV1ControllerInput
940
+ */
941
+ 'metadata'?: object;
942
+ }
943
+ /**
944
+ *
945
+ * @export
946
+ * @interface ObjectDetectionV1Input
947
+ */
948
+ export interface ObjectDetectionV1Input {
949
+ /**
950
+ *
951
+ * @type {Array<string>}
952
+ * @memberof ObjectDetectionV1Input
953
+ */
954
+ 'labels': Array<string>;
955
+ /**
956
+ *
957
+ * @type {string}
958
+ * @memberof ObjectDetectionV1Input
959
+ */
960
+ 'imageId': string;
961
+ }
840
962
  /**
841
963
  *
842
964
  * @export
@@ -1315,6 +1437,38 @@ export interface UpdateStorageRecordParamsDto {
1315
1437
  */
1316
1438
  'value': object;
1317
1439
  }
1440
+ /**
1441
+ *
1442
+ * @export
1443
+ * @interface UpscaleV1ControllerInput
1444
+ */
1445
+ export interface UpscaleV1ControllerInput {
1446
+ /**
1447
+ *
1448
+ * @type {UpscaleV1Input}
1449
+ * @memberof UpscaleV1ControllerInput
1450
+ */
1451
+ 'input'?: UpscaleV1Input;
1452
+ /**
1453
+ *
1454
+ * @type {object}
1455
+ * @memberof UpscaleV1ControllerInput
1456
+ */
1457
+ 'metadata'?: object;
1458
+ }
1459
+ /**
1460
+ *
1461
+ * @export
1462
+ * @interface UpscaleV1Input
1463
+ */
1464
+ export interface UpscaleV1Input {
1465
+ /**
1466
+ *
1467
+ * @type {string}
1468
+ * @memberof UpscaleV1Input
1469
+ */
1470
+ 'imageId': string;
1471
+ }
1318
1472
  /**
1319
1473
  * AccessApi - axios parameter creator
1320
1474
  * @export
@@ -2229,6 +2383,14 @@ export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration)
2229
2383
  * @throws {RequiredError}
2230
2384
  */
2231
2385
  imagesControllerGetImageV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2386
+ /**
2387
+ *
2388
+ * @param {string} id
2389
+ * @param {string} type
2390
+ * @param {*} [options] Override http request option.
2391
+ * @throws {RequiredError}
2392
+ */
2393
+ imagesControllerGetRepresentationV1: (id: string, type: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2232
2394
  /**
2233
2395
  *
2234
2396
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -2262,13 +2424,21 @@ export declare const ImagesApiFp: (configuration?: Configuration) => {
2262
2424
  * @throws {RequiredError}
2263
2425
  */
2264
2426
  imagesControllerGetImageV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageEntity>>;
2427
+ /**
2428
+ *
2429
+ * @param {string} id
2430
+ * @param {string} type
2431
+ * @param {*} [options] Override http request option.
2432
+ * @throws {RequiredError}
2433
+ */
2434
+ imagesControllerGetRepresentationV1(id: string, type: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageRepresentationResponseDto>>;
2265
2435
  /**
2266
2436
  *
2267
2437
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2268
2438
  * @param {*} [options] Override http request option.
2269
2439
  * @throws {RequiredError}
2270
2440
  */
2271
- imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlsResultDto>>>;
2441
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
2272
2442
  /**
2273
2443
  *
2274
2444
  * @param {*} [options] Override http request option.
@@ -2295,13 +2465,21 @@ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?
2295
2465
  * @throws {RequiredError}
2296
2466
  */
2297
2467
  imagesControllerGetImageV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ImageEntity>;
2468
+ /**
2469
+ *
2470
+ * @param {string} id
2471
+ * @param {string} type
2472
+ * @param {*} [options] Override http request option.
2473
+ * @throws {RequiredError}
2474
+ */
2475
+ imagesControllerGetRepresentationV1(id: string, type: string, options?: RawAxiosRequestConfig): AxiosPromise<ImageRepresentationResponseDto>;
2298
2476
  /**
2299
2477
  *
2300
2478
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2301
2479
  * @param {*} [options] Override http request option.
2302
2480
  * @throws {RequiredError}
2303
2481
  */
2304
- imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlsResultDto>>;
2482
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
2305
2483
  /**
2306
2484
  *
2307
2485
  * @param {*} [options] Override http request option.
@@ -2332,6 +2510,15 @@ export declare class ImagesApi extends BaseAPI {
2332
2510
  * @memberof ImagesApi
2333
2511
  */
2334
2512
  imagesControllerGetImageV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity, any>>;
2513
+ /**
2514
+ *
2515
+ * @param {string} id
2516
+ * @param {string} type
2517
+ * @param {*} [options] Override http request option.
2518
+ * @throws {RequiredError}
2519
+ * @memberof ImagesApi
2520
+ */
2521
+ imagesControllerGetRepresentationV1(id: string, type: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageRepresentationResponseDto, any>>;
2335
2522
  /**
2336
2523
  *
2337
2524
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -2339,7 +2526,7 @@ export declare class ImagesApi extends BaseAPI {
2339
2526
  * @throws {RequiredError}
2340
2527
  * @memberof ImagesApi
2341
2528
  */
2342
- imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlsResultDto[], any>>;
2529
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
2343
2530
  /**
2344
2531
  *
2345
2532
  * @param {*} [options] Override http request option.
@@ -2378,11 +2565,11 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
2378
2565
  operationsControllerListOperationsV1: (orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2379
2566
  /**
2380
2567
  *
2381
- * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2568
+ * @param {GenerateV1ControllerInput} generateV1ControllerInput
2382
2569
  * @param {*} [options] Override http request option.
2383
2570
  * @throws {RequiredError}
2384
2571
  */
2385
- operationsControllerRunConstructPromptV1V1: (constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2572
+ operationsControllerRunGenerateV1V1: (generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2386
2573
  /**
2387
2574
  *
2388
2575
  * @param {GenerateV3ControllerInput} generateV3ControllerInput
@@ -2390,6 +2577,20 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
2390
2577
  * @throws {RequiredError}
2391
2578
  */
2392
2579
  operationsControllerRunGenerateV3V1: (generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2580
+ /**
2581
+ *
2582
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
2583
+ * @param {*} [options] Override http request option.
2584
+ * @throws {RequiredError}
2585
+ */
2586
+ operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2587
+ /**
2588
+ *
2589
+ * @param {ImagineV1ControllerInput} imagineV1ControllerInput
2590
+ * @param {*} [options] Override http request option.
2591
+ * @throws {RequiredError}
2592
+ */
2593
+ operationsControllerRunImagineV1V1: (imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2393
2594
  /**
2394
2595
  *
2395
2596
  * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
@@ -2397,6 +2598,20 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
2397
2598
  * @throws {RequiredError}
2398
2599
  */
2399
2600
  operationsControllerRunInpaintV1V1: (inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2601
+ /**
2602
+ *
2603
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
2604
+ * @param {*} [options] Override http request option.
2605
+ * @throws {RequiredError}
2606
+ */
2607
+ operationsControllerRunObjectDetectionV1V1: (objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2608
+ /**
2609
+ *
2610
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
2611
+ * @param {*} [options] Override http request option.
2612
+ * @throws {RequiredError}
2613
+ */
2614
+ operationsControllerRunUpscaleV1V1: (upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2400
2615
  /**
2401
2616
  *
2402
2617
  * @param {string} id
@@ -2436,11 +2651,11 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
2436
2651
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
2437
2652
  /**
2438
2653
  *
2439
- * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2654
+ * @param {GenerateV1ControllerInput} generateV1ControllerInput
2440
2655
  * @param {*} [options] Override http request option.
2441
2656
  * @throws {RequiredError}
2442
2657
  */
2443
- operationsControllerRunConstructPromptV1V1(constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2658
+ operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2444
2659
  /**
2445
2660
  *
2446
2661
  * @param {GenerateV3ControllerInput} generateV3ControllerInput
@@ -2448,6 +2663,20 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
2448
2663
  * @throws {RequiredError}
2449
2664
  */
2450
2665
  operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2666
+ /**
2667
+ *
2668
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
2669
+ * @param {*} [options] Override http request option.
2670
+ * @throws {RequiredError}
2671
+ */
2672
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2673
+ /**
2674
+ *
2675
+ * @param {ImagineV1ControllerInput} imagineV1ControllerInput
2676
+ * @param {*} [options] Override http request option.
2677
+ * @throws {RequiredError}
2678
+ */
2679
+ operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2451
2680
  /**
2452
2681
  *
2453
2682
  * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
@@ -2455,6 +2684,20 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
2455
2684
  * @throws {RequiredError}
2456
2685
  */
2457
2686
  operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2687
+ /**
2688
+ *
2689
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
2690
+ * @param {*} [options] Override http request option.
2691
+ * @throws {RequiredError}
2692
+ */
2693
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2694
+ /**
2695
+ *
2696
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
2697
+ * @param {*} [options] Override http request option.
2698
+ * @throws {RequiredError}
2699
+ */
2700
+ operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2458
2701
  /**
2459
2702
  *
2460
2703
  * @param {string} id
@@ -2494,11 +2737,11 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
2494
2737
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
2495
2738
  /**
2496
2739
  *
2497
- * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2740
+ * @param {GenerateV1ControllerInput} generateV1ControllerInput
2498
2741
  * @param {*} [options] Override http request option.
2499
2742
  * @throws {RequiredError}
2500
2743
  */
2501
- operationsControllerRunConstructPromptV1V1(constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2744
+ operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2502
2745
  /**
2503
2746
  *
2504
2747
  * @param {GenerateV3ControllerInput} generateV3ControllerInput
@@ -2506,6 +2749,20 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
2506
2749
  * @throws {RequiredError}
2507
2750
  */
2508
2751
  operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2752
+ /**
2753
+ *
2754
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
2755
+ * @param {*} [options] Override http request option.
2756
+ * @throws {RequiredError}
2757
+ */
2758
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2759
+ /**
2760
+ *
2761
+ * @param {ImagineV1ControllerInput} imagineV1ControllerInput
2762
+ * @param {*} [options] Override http request option.
2763
+ * @throws {RequiredError}
2764
+ */
2765
+ operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2509
2766
  /**
2510
2767
  *
2511
2768
  * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
@@ -2513,6 +2770,20 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
2513
2770
  * @throws {RequiredError}
2514
2771
  */
2515
2772
  operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2773
+ /**
2774
+ *
2775
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
2776
+ * @param {*} [options] Override http request option.
2777
+ * @throws {RequiredError}
2778
+ */
2779
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2780
+ /**
2781
+ *
2782
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
2783
+ * @param {*} [options] Override http request option.
2784
+ * @throws {RequiredError}
2785
+ */
2786
+ operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2516
2787
  /**
2517
2788
  *
2518
2789
  * @param {string} id
@@ -2557,12 +2828,12 @@ export declare class OperationsApi extends BaseAPI {
2557
2828
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
2558
2829
  /**
2559
2830
  *
2560
- * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2831
+ * @param {GenerateV1ControllerInput} generateV1ControllerInput
2561
2832
  * @param {*} [options] Override http request option.
2562
2833
  * @throws {RequiredError}
2563
2834
  * @memberof OperationsApi
2564
2835
  */
2565
- operationsControllerRunConstructPromptV1V1(constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2836
+ operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2566
2837
  /**
2567
2838
  *
2568
2839
  * @param {GenerateV3ControllerInput} generateV3ControllerInput
@@ -2571,6 +2842,22 @@ export declare class OperationsApi extends BaseAPI {
2571
2842
  * @memberof OperationsApi
2572
2843
  */
2573
2844
  operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2845
+ /**
2846
+ *
2847
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
2848
+ * @param {*} [options] Override http request option.
2849
+ * @throws {RequiredError}
2850
+ * @memberof OperationsApi
2851
+ */
2852
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2853
+ /**
2854
+ *
2855
+ * @param {ImagineV1ControllerInput} imagineV1ControllerInput
2856
+ * @param {*} [options] Override http request option.
2857
+ * @throws {RequiredError}
2858
+ * @memberof OperationsApi
2859
+ */
2860
+ operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2574
2861
  /**
2575
2862
  *
2576
2863
  * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
@@ -2579,6 +2866,22 @@ export declare class OperationsApi extends BaseAPI {
2579
2866
  * @memberof OperationsApi
2580
2867
  */
2581
2868
  operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2869
+ /**
2870
+ *
2871
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
2872
+ * @param {*} [options] Override http request option.
2873
+ * @throws {RequiredError}
2874
+ * @memberof OperationsApi
2875
+ */
2876
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2877
+ /**
2878
+ *
2879
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
2880
+ * @param {*} [options] Override http request option.
2881
+ * @throws {RequiredError}
2882
+ * @memberof OperationsApi
2883
+ */
2884
+ operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2582
2885
  /**
2583
2886
  *
2584
2887
  * @param {string} id
@@ -2774,20 +3077,20 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
2774
3077
  * @param {*} [options] Override http request option.
2775
3078
  * @throws {RequiredError}
2776
3079
  */
2777
- posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3080
+ posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2778
3081
  /**
2779
3082
  *
2780
3083
  * @param {string} id
2781
3084
  * @param {*} [options] Override http request option.
2782
3085
  * @throws {RequiredError}
2783
3086
  */
2784
- posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3087
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2785
3088
  /**
2786
3089
  *
2787
3090
  * @param {*} [options] Override http request option.
2788
3091
  * @throws {RequiredError}
2789
3092
  */
2790
- posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
3093
+ posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2791
3094
  };
2792
3095
  /**
2793
3096
  * PosesApi - factory interface
@@ -2800,20 +3103,20 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
2800
3103
  * @param {*} [options] Override http request option.
2801
3104
  * @throws {RequiredError}
2802
3105
  */
2803
- posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3106
+ posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2804
3107
  /**
2805
3108
  *
2806
3109
  * @param {string} id
2807
3110
  * @param {*} [options] Override http request option.
2808
3111
  * @throws {RequiredError}
2809
3112
  */
2810
- posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3113
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2811
3114
  /**
2812
3115
  *
2813
3116
  * @param {*} [options] Override http request option.
2814
3117
  * @throws {RequiredError}
2815
3118
  */
2816
- posesControllerListStacksV1(options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
3119
+ posesControllerListStacksV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
2817
3120
  };
2818
3121
  /**
2819
3122
  * PosesApi - object-oriented interface
@@ -2829,7 +3132,7 @@ export declare class PosesApi extends BaseAPI {
2829
3132
  * @throws {RequiredError}
2830
3133
  * @memberof PosesApi
2831
3134
  */
2832
- posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3135
+ posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2833
3136
  /**
2834
3137
  *
2835
3138
  * @param {string} id
@@ -2837,14 +3140,14 @@ export declare class PosesApi extends BaseAPI {
2837
3140
  * @throws {RequiredError}
2838
3141
  * @memberof PosesApi
2839
3142
  */
2840
- posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3143
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2841
3144
  /**
2842
3145
  *
2843
3146
  * @param {*} [options] Override http request option.
2844
3147
  * @throws {RequiredError}
2845
3148
  * @memberof PosesApi
2846
3149
  */
2847
- posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
3150
+ posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2848
3151
  }
2849
3152
  /**
2850
3153
  * StacksApi - axios parameter creator