@hautechai/sdk 2.35.2 → 2.37.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 CHANGED
@@ -402,8 +402,10 @@ interface AlphabakeVtonV1Response {
402
402
  input: AlphabakeVtonV1ResponseInput;
403
403
  status: AlphabakeVtonV1ResponseStatus;
404
404
  type: string;
405
- price?: string;
406
- estimatedPrice?: string;
405
+ /** @nullable */
406
+ price?: string | null;
407
+ /** @nullable */
408
+ estimatedPrice?: string | null;
407
409
  errorMessage?: string;
408
410
  errorCode?: string;
409
411
  id: string;
@@ -545,8 +547,10 @@ interface AnimateCreatomateV1Response {
545
547
  input: AnimateCreatomateV1ResponseInput;
546
548
  status: AnimateCreatomateV1ResponseStatus;
547
549
  type: string;
548
- price?: string;
549
- estimatedPrice?: string;
550
+ /** @nullable */
551
+ price?: string | null;
552
+ /** @nullable */
553
+ estimatedPrice?: string | null;
550
554
  errorMessage?: string;
551
555
  errorCode?: string;
552
556
  id: string;
@@ -681,8 +685,10 @@ interface AnimateKling16ProV1Response {
681
685
  input: AnimateKling16ProV1ResponseInput;
682
686
  status: AnimateKling16ProV1ResponseStatus;
683
687
  type: string;
684
- price?: string;
685
- estimatedPrice?: string;
688
+ /** @nullable */
689
+ price?: string | null;
690
+ /** @nullable */
691
+ estimatedPrice?: string | null;
686
692
  errorMessage?: string;
687
693
  errorCode?: string;
688
694
  id: string;
@@ -798,8 +804,10 @@ interface AnimateKling21ProV1Response {
798
804
  input: AnimateKling21ProV1ResponseInput;
799
805
  status: AnimateKling21ProV1ResponseStatus;
800
806
  type: string;
801
- price?: string;
802
- estimatedPrice?: string;
807
+ /** @nullable */
808
+ price?: string | null;
809
+ /** @nullable */
810
+ estimatedPrice?: string | null;
803
811
  errorMessage?: string;
804
812
  errorCode?: string;
805
813
  id: string;
@@ -914,8 +922,10 @@ interface AnimateKling21StandardV1Response {
914
922
  input: AnimateKling21StandardV1ResponseInput;
915
923
  status: AnimateKling21StandardV1ResponseStatus;
916
924
  type: string;
917
- price?: string;
918
- estimatedPrice?: string;
925
+ /** @nullable */
926
+ price?: string | null;
927
+ /** @nullable */
928
+ estimatedPrice?: string | null;
919
929
  errorMessage?: string;
920
930
  errorCode?: string;
921
931
  id: string;
@@ -1030,8 +1040,10 @@ interface AnimateKling21V1Response {
1030
1040
  input: AnimateKling21V1ResponseInput;
1031
1041
  status: AnimateKling21V1ResponseStatus;
1032
1042
  type: string;
1033
- price?: string;
1034
- estimatedPrice?: string;
1043
+ /** @nullable */
1044
+ price?: string | null;
1045
+ /** @nullable */
1046
+ estimatedPrice?: string | null;
1035
1047
  errorMessage?: string;
1036
1048
  errorCode?: string;
1037
1049
  id: string;
@@ -1479,8 +1491,10 @@ interface ClipClassifyV1Response {
1479
1491
  input: ClipClassifyV1ResponseInput;
1480
1492
  status: ClipClassifyV1ResponseStatus;
1481
1493
  type: string;
1482
- price?: string;
1483
- estimatedPrice?: string;
1494
+ /** @nullable */
1495
+ price?: string | null;
1496
+ /** @nullable */
1497
+ estimatedPrice?: string | null;
1484
1498
  errorMessage?: string;
1485
1499
  errorCode?: string;
1486
1500
  id: string;
@@ -1779,8 +1793,10 @@ interface CompositeV1Response {
1779
1793
  input: CompositeV1ResponseInput;
1780
1794
  status: CompositeV1ResponseStatus;
1781
1795
  type: string;
1782
- price?: string;
1783
- estimatedPrice?: string;
1796
+ /** @nullable */
1797
+ price?: string | null;
1798
+ /** @nullable */
1799
+ estimatedPrice?: string | null;
1784
1800
  errorMessage?: string;
1785
1801
  errorCode?: string;
1786
1802
  id: string;
@@ -1880,8 +1896,10 @@ interface ContrastV1Response {
1880
1896
  input: ContrastV1ResponseInput;
1881
1897
  status: ContrastV1ResponseStatus;
1882
1898
  type: string;
1883
- price?: string;
1884
- estimatedPrice?: string;
1899
+ /** @nullable */
1900
+ price?: string | null;
1901
+ /** @nullable */
1902
+ estimatedPrice?: string | null;
1885
1903
  errorMessage?: string;
1886
1904
  errorCode?: string;
1887
1905
  id: string;
@@ -2251,8 +2269,10 @@ interface CropV1Response {
2251
2269
  input: CropV1ResponseInput;
2252
2270
  status: CropV1ResponseStatus;
2253
2271
  type: string;
2254
- price?: string;
2255
- estimatedPrice?: string;
2272
+ /** @nullable */
2273
+ price?: string | null;
2274
+ /** @nullable */
2275
+ estimatedPrice?: string | null;
2256
2276
  errorMessage?: string;
2257
2277
  errorCode?: string;
2258
2278
  id: string;
@@ -2393,8 +2413,10 @@ interface CutV1Response {
2393
2413
  input: CutV1ResponseInput;
2394
2414
  status: CutV1ResponseStatus;
2395
2415
  type: string;
2396
- price?: string;
2397
- estimatedPrice?: string;
2416
+ /** @nullable */
2417
+ price?: string | null;
2418
+ /** @nullable */
2419
+ estimatedPrice?: string | null;
2398
2420
  errorMessage?: string;
2399
2421
  errorCode?: string;
2400
2422
  id: string;
@@ -2560,8 +2582,10 @@ interface EchoV1Response {
2560
2582
  input: EchoV1ResponseInput;
2561
2583
  status: EchoV1ResponseStatus;
2562
2584
  type: string;
2563
- price?: string;
2564
- estimatedPrice?: string;
2585
+ /** @nullable */
2586
+ price?: string | null;
2587
+ /** @nullable */
2588
+ estimatedPrice?: string | null;
2565
2589
  errorMessage?: string;
2566
2590
  errorCode?: string;
2567
2591
  id: string;
@@ -2672,8 +2696,10 @@ interface EditFluxKontextDevV1Response {
2672
2696
  input: EditFluxKontextDevV1ResponseInput;
2673
2697
  status: EditFluxKontextDevV1ResponseStatus;
2674
2698
  type: string;
2675
- price?: string;
2676
- estimatedPrice?: string;
2699
+ /** @nullable */
2700
+ price?: string | null;
2701
+ /** @nullable */
2702
+ estimatedPrice?: string | null;
2677
2703
  errorMessage?: string;
2678
2704
  errorCode?: string;
2679
2705
  id: string;
@@ -2833,8 +2859,10 @@ interface FashnVton16V1Response {
2833
2859
  input: FashnVton16V1ResponseInput;
2834
2860
  status: FashnVton16V1ResponseStatus;
2835
2861
  type: string;
2836
- price?: string;
2837
- estimatedPrice?: string;
2862
+ /** @nullable */
2863
+ price?: string | null;
2864
+ /** @nullable */
2865
+ estimatedPrice?: string | null;
2838
2866
  errorMessage?: string;
2839
2867
  errorCode?: string;
2840
2868
  id: string;
@@ -2989,8 +3017,10 @@ interface FluxKontextDevPrepareDatasetV1Response {
2989
3017
  input: FluxKontextDevPrepareDatasetV1ResponseInput;
2990
3018
  status: FluxKontextDevPrepareDatasetV1ResponseStatus;
2991
3019
  type: string;
2992
- price?: string;
2993
- estimatedPrice?: string;
3020
+ /** @nullable */
3021
+ price?: string | null;
3022
+ /** @nullable */
3023
+ estimatedPrice?: string | null;
2994
3024
  errorMessage?: string;
2995
3025
  errorCode?: string;
2996
3026
  id: string;
@@ -3123,8 +3153,10 @@ interface FluxKontextDevTrainV1Response {
3123
3153
  input: FluxKontextDevTrainV1ResponseInput;
3124
3154
  status: FluxKontextDevTrainV1ResponseStatus;
3125
3155
  type: string;
3126
- price?: string;
3127
- estimatedPrice?: string;
3156
+ /** @nullable */
3157
+ price?: string | null;
3158
+ /** @nullable */
3159
+ estimatedPrice?: string | null;
3128
3160
  errorMessage?: string;
3129
3161
  errorCode?: string;
3130
3162
  id: string;
@@ -3237,8 +3269,10 @@ interface FluxKontextDevV1Response {
3237
3269
  input: FluxKontextDevV1ResponseInput;
3238
3270
  status: FluxKontextDevV1ResponseStatus;
3239
3271
  type: string;
3240
- price?: string;
3241
- estimatedPrice?: string;
3272
+ /** @nullable */
3273
+ price?: string | null;
3274
+ /** @nullable */
3275
+ estimatedPrice?: string | null;
3242
3276
  errorMessage?: string;
3243
3277
  errorCode?: string;
3244
3278
  id: string;
@@ -3851,6 +3885,8 @@ type GPTV3InputModel = typeof GPTV3InputModel[keyof typeof GPTV3InputModel];
3851
3885
  declare const GPTV3InputModel: {
3852
3886
  readonly 'gpt-4o': "gpt-4o";
3853
3887
  readonly 'gpt-5': "gpt-5";
3888
+ readonly 'gpt-5-mini': "gpt-5-mini";
3889
+ readonly 'gpt-5-nano': "gpt-5-nano";
3854
3890
  readonly 'seed-16-flash': "seed-1.6-flash";
3855
3891
  readonly o3: "o3";
3856
3892
  readonly 'o3-mini': "o3-mini";
@@ -6330,8 +6366,10 @@ interface GoogleNanoBananaProEditV1Response {
6330
6366
  input: GoogleNanoBananaProEditV1ResponseInput;
6331
6367
  status: GoogleNanoBananaProEditV1ResponseStatus;
6332
6368
  type: string;
6333
- price?: string;
6334
- estimatedPrice?: string;
6369
+ /** @nullable */
6370
+ price?: string | null;
6371
+ /** @nullable */
6372
+ estimatedPrice?: string | null;
6335
6373
  errorMessage?: string;
6336
6374
  errorCode?: string;
6337
6375
  id: string;
@@ -6471,8 +6509,10 @@ interface GoogleNanoBananaV1Response {
6471
6509
  input: GoogleNanoBananaV1ResponseInput;
6472
6510
  status: GoogleNanoBananaV1ResponseStatus;
6473
6511
  type: string;
6474
- price?: string;
6475
- estimatedPrice?: string;
6512
+ /** @nullable */
6513
+ price?: string | null;
6514
+ /** @nullable */
6515
+ estimatedPrice?: string | null;
6476
6516
  errorMessage?: string;
6477
6517
  errorCode?: string;
6478
6518
  id: string;
@@ -6607,8 +6647,10 @@ interface GptV1Response {
6607
6647
  input: GptV1ResponseInput;
6608
6648
  status: GptV1ResponseStatus;
6609
6649
  type: string;
6610
- price?: string;
6611
- estimatedPrice?: string;
6650
+ /** @nullable */
6651
+ price?: string | null;
6652
+ /** @nullable */
6653
+ estimatedPrice?: string | null;
6612
6654
  errorMessage?: string;
6613
6655
  errorCode?: string;
6614
6656
  id: string;
@@ -6697,8 +6739,10 @@ interface GptV2Response {
6697
6739
  input: GptV2ResponseInput;
6698
6740
  status: GptV2ResponseStatus;
6699
6741
  type: string;
6700
- price?: string;
6701
- estimatedPrice?: string;
6742
+ /** @nullable */
6743
+ price?: string | null;
6744
+ /** @nullable */
6745
+ estimatedPrice?: string | null;
6702
6746
  errorMessage?: string;
6703
6747
  errorCode?: string;
6704
6748
  id: string;
@@ -6787,8 +6831,10 @@ interface GptV3Response {
6787
6831
  input: GptV3ResponseInput;
6788
6832
  status: GptV3ResponseStatus;
6789
6833
  type: string;
6790
- price?: string;
6791
- estimatedPrice?: string;
6834
+ /** @nullable */
6835
+ price?: string | null;
6836
+ /** @nullable */
6837
+ estimatedPrice?: string | null;
6792
6838
  errorMessage?: string;
6793
6839
  errorCode?: string;
6794
6840
  id: string;
@@ -7019,8 +7065,10 @@ interface HauteLindaV1Response {
7019
7065
  input: HauteLindaV1ResponseInput;
7020
7066
  status: HauteLindaV1ResponseStatus;
7021
7067
  type: string;
7022
- price?: string;
7023
- estimatedPrice?: string;
7068
+ /** @nullable */
7069
+ price?: string | null;
7070
+ /** @nullable */
7071
+ estimatedPrice?: string | null;
7024
7072
  errorMessage?: string;
7025
7073
  errorCode?: string;
7026
7074
  id: string;
@@ -7154,8 +7202,10 @@ interface HauteNaomiPrepareDatasetV1Response {
7154
7202
  input: HauteNaomiPrepareDatasetV1ResponseInput;
7155
7203
  status: HauteNaomiPrepareDatasetV1ResponseStatus;
7156
7204
  type: string;
7157
- price?: string;
7158
- estimatedPrice?: string;
7205
+ /** @nullable */
7206
+ price?: string | null;
7207
+ /** @nullable */
7208
+ estimatedPrice?: string | null;
7159
7209
  errorMessage?: string;
7160
7210
  errorCode?: string;
7161
7211
  id: string;
@@ -7289,8 +7339,10 @@ interface HauteNaomiTrainV1Response {
7289
7339
  input: HauteNaomiTrainV1ResponseInput;
7290
7340
  status: HauteNaomiTrainV1ResponseStatus;
7291
7341
  type: string;
7292
- price?: string;
7293
- estimatedPrice?: string;
7342
+ /** @nullable */
7343
+ price?: string | null;
7344
+ /** @nullable */
7345
+ estimatedPrice?: string | null;
7294
7346
  errorMessage?: string;
7295
7347
  errorCode?: string;
7296
7348
  id: string;
@@ -7430,8 +7482,10 @@ interface HauteNaomiV1Response {
7430
7482
  input: HauteNaomiV1ResponseInput;
7431
7483
  status: HauteNaomiV1ResponseStatus;
7432
7484
  type: string;
7433
- price?: string;
7434
- estimatedPrice?: string;
7485
+ /** @nullable */
7486
+ price?: string | null;
7487
+ /** @nullable */
7488
+ estimatedPrice?: string | null;
7435
7489
  errorMessage?: string;
7436
7490
  errorCode?: string;
7437
7491
  id: string;
@@ -7534,8 +7588,10 @@ interface IdeogramCharacterV1Response {
7534
7588
  input: IdeogramCharacterV1ResponseInput;
7535
7589
  status: IdeogramCharacterV1ResponseStatus;
7536
7590
  type: string;
7537
- price?: string;
7538
- estimatedPrice?: string;
7591
+ /** @nullable */
7592
+ price?: string | null;
7593
+ /** @nullable */
7594
+ estimatedPrice?: string | null;
7539
7595
  errorMessage?: string;
7540
7596
  errorCode?: string;
7541
7597
  id: string;
@@ -7761,8 +7817,10 @@ interface Imagen4FastV1Response {
7761
7817
  input: Imagen4FastV1ResponseInput;
7762
7818
  status: Imagen4FastV1ResponseStatus;
7763
7819
  type: string;
7764
- price?: string;
7765
- estimatedPrice?: string;
7820
+ /** @nullable */
7821
+ price?: string | null;
7822
+ /** @nullable */
7823
+ estimatedPrice?: string | null;
7766
7824
  errorMessage?: string;
7767
7825
  errorCode?: string;
7768
7826
  id: string;
@@ -7928,8 +7986,10 @@ interface Imagen4StandardV1Response {
7928
7986
  input: Imagen4StandardV1ResponseInput;
7929
7987
  status: Imagen4StandardV1ResponseStatus;
7930
7988
  type: string;
7931
- price?: string;
7932
- estimatedPrice?: string;
7989
+ /** @nullable */
7990
+ price?: string | null;
7991
+ /** @nullable */
7992
+ estimatedPrice?: string | null;
7933
7993
  errorMessage?: string;
7934
7994
  errorCode?: string;
7935
7995
  id: string;
@@ -8054,8 +8114,10 @@ interface Imagen4UltraV1Response {
8054
8114
  input: Imagen4UltraV1ResponseInput;
8055
8115
  status: Imagen4UltraV1ResponseStatus;
8056
8116
  type: string;
8057
- price?: string;
8058
- estimatedPrice?: string;
8117
+ /** @nullable */
8118
+ price?: string | null;
8119
+ /** @nullable */
8120
+ estimatedPrice?: string | null;
8059
8121
  errorMessage?: string;
8060
8122
  errorCode?: string;
8061
8123
  id: string;
@@ -8144,8 +8206,10 @@ interface Imagen4V1Response {
8144
8206
  input: Imagen4V1ResponseInput;
8145
8207
  status: Imagen4V1ResponseStatus;
8146
8208
  type: string;
8147
- price?: string;
8148
- estimatedPrice?: string;
8209
+ /** @nullable */
8210
+ price?: string | null;
8211
+ /** @nullable */
8212
+ estimatedPrice?: string | null;
8149
8213
  errorMessage?: string;
8150
8214
  errorCode?: string;
8151
8215
  id: string;
@@ -8246,8 +8310,10 @@ interface ImagesDownscaleV1Response {
8246
8310
  input: ImagesDownscaleV1ResponseInput;
8247
8311
  status: ImagesDownscaleV1ResponseStatus;
8248
8312
  type: string;
8249
- price?: string;
8250
- estimatedPrice?: string;
8313
+ /** @nullable */
8314
+ price?: string | null;
8315
+ /** @nullable */
8316
+ estimatedPrice?: string | null;
8251
8317
  errorMessage?: string;
8252
8318
  errorCode?: string;
8253
8319
  id: string;
@@ -8347,8 +8413,10 @@ interface ImagesRenameV1Response {
8347
8413
  input: ImagesRenameV1ResponseInput;
8348
8414
  status: ImagesRenameV1ResponseStatus;
8349
8415
  type: string;
8350
- price?: string;
8351
- estimatedPrice?: string;
8416
+ /** @nullable */
8417
+ price?: string | null;
8418
+ /** @nullable */
8419
+ estimatedPrice?: string | null;
8352
8420
  errorMessage?: string;
8353
8421
  errorCode?: string;
8354
8422
  id: string;
@@ -8437,8 +8505,10 @@ interface ImagineFlux11ProUltraV1Response {
8437
8505
  input: ImagineFlux11ProUltraV1ResponseInput;
8438
8506
  status: ImagineFlux11ProUltraV1ResponseStatus;
8439
8507
  type: string;
8440
- price?: string;
8441
- estimatedPrice?: string;
8508
+ /** @nullable */
8509
+ price?: string | null;
8510
+ /** @nullable */
8511
+ estimatedPrice?: string | null;
8442
8512
  errorMessage?: string;
8443
8513
  errorCode?: string;
8444
8514
  id: string;
@@ -8557,8 +8627,10 @@ interface ImagineKateV1Response {
8557
8627
  input: ImagineKateV1ResponseInput;
8558
8628
  status: ImagineKateV1ResponseStatus;
8559
8629
  type: string;
8560
- price?: string;
8561
- estimatedPrice?: string;
8630
+ /** @nullable */
8631
+ price?: string | null;
8632
+ /** @nullable */
8633
+ estimatedPrice?: string | null;
8562
8634
  errorMessage?: string;
8563
8635
  errorCode?: string;
8564
8636
  id: string;
@@ -8727,8 +8799,10 @@ interface InpaintKateV1Response {
8727
8799
  input: InpaintKateV1ResponseInput;
8728
8800
  status: InpaintKateV1ResponseStatus;
8729
8801
  type: string;
8730
- price?: string;
8731
- estimatedPrice?: string;
8802
+ /** @nullable */
8803
+ price?: string | null;
8804
+ /** @nullable */
8805
+ estimatedPrice?: string | null;
8732
8806
  errorMessage?: string;
8733
8807
  errorCode?: string;
8734
8808
  id: string;
@@ -8828,8 +8902,10 @@ interface JsonToImageV1Response {
8828
8902
  input: JsonToImageV1ResponseInput;
8829
8903
  status: JsonToImageV1ResponseStatus;
8830
8904
  type: string;
8831
- price?: string;
8832
- estimatedPrice?: string;
8905
+ /** @nullable */
8906
+ price?: string | null;
8907
+ /** @nullable */
8908
+ estimatedPrice?: string | null;
8833
8909
  errorMessage?: string;
8834
8910
  errorCode?: string;
8835
8911
  id: string;
@@ -8955,8 +9031,10 @@ interface JsonToVideoV1Response {
8955
9031
  input: JsonToVideoV1ResponseInput;
8956
9032
  status: JsonToVideoV1ResponseStatus;
8957
9033
  type: string;
8958
- price?: string;
8959
- estimatedPrice?: string;
9034
+ /** @nullable */
9035
+ price?: string | null;
9036
+ /** @nullable */
9037
+ estimatedPrice?: string | null;
8960
9038
  errorMessage?: string;
8961
9039
  errorCode?: string;
8962
9040
  id: string;
@@ -9056,8 +9134,10 @@ interface KlingKolorsVtonV1Response {
9056
9134
  input: KlingKolorsVtonV1ResponseInput;
9057
9135
  status: KlingKolorsVtonV1ResponseStatus;
9058
9136
  type: string;
9059
- price?: string;
9060
- estimatedPrice?: string;
9137
+ /** @nullable */
9138
+ price?: string | null;
9139
+ /** @nullable */
9140
+ estimatedPrice?: string | null;
9061
9141
  errorMessage?: string;
9062
9142
  errorCode?: string;
9063
9143
  id: string;
@@ -9177,8 +9257,10 @@ interface KlingVideo25ProImageToVideoV1Response {
9177
9257
  input: KlingVideo25ProImageToVideoV1ResponseInput;
9178
9258
  status: KlingVideo25ProImageToVideoV1ResponseStatus;
9179
9259
  type: string;
9180
- price?: string;
9181
- estimatedPrice?: string;
9260
+ /** @nullable */
9261
+ price?: string | null;
9262
+ /** @nullable */
9263
+ estimatedPrice?: string | null;
9182
9264
  errorMessage?: string;
9183
9265
  errorCode?: string;
9184
9266
  id: string;
@@ -9585,8 +9667,10 @@ interface OperationEntity {
9585
9667
  output: OperationEntityOutput;
9586
9668
  status: OperationEntityStatus;
9587
9669
  type: string;
9588
- price?: string;
9589
- estimatedPrice?: string;
9670
+ /** @nullable */
9671
+ price?: string | null;
9672
+ /** @nullable */
9673
+ estimatedPrice?: string | null;
9590
9674
  errorMessage?: string;
9591
9675
  errorCode?: string;
9592
9676
  id: string;
@@ -10179,8 +10263,10 @@ interface LumaPhotonV1Response {
10179
10263
  input: LumaPhotonV1ResponseInput;
10180
10264
  status: LumaPhotonV1ResponseStatus;
10181
10265
  type: string;
10182
- price?: string;
10183
- estimatedPrice?: string;
10266
+ /** @nullable */
10267
+ price?: string | null;
10268
+ /** @nullable */
10269
+ estimatedPrice?: string | null;
10184
10270
  errorMessage?: string;
10185
10271
  errorCode?: string;
10186
10272
  id: string;
@@ -10296,8 +10382,10 @@ interface MathV1Response {
10296
10382
  input: MathV1ResponseInput;
10297
10383
  status: MathV1ResponseStatus;
10298
10384
  type: string;
10299
- price?: string;
10300
- estimatedPrice?: string;
10385
+ /** @nullable */
10386
+ price?: string | null;
10387
+ /** @nullable */
10388
+ estimatedPrice?: string | null;
10301
10389
  errorMessage?: string;
10302
10390
  errorCode?: string;
10303
10391
  id: string;
@@ -10451,8 +10539,10 @@ interface NegateImageV1Response {
10451
10539
  input: NegateImageV1ResponseInput;
10452
10540
  status: NegateImageV1ResponseStatus;
10453
10541
  type: string;
10454
- price?: string;
10455
- estimatedPrice?: string;
10542
+ /** @nullable */
10543
+ price?: string | null;
10544
+ /** @nullable */
10545
+ estimatedPrice?: string | null;
10456
10546
  errorMessage?: string;
10457
10547
  errorCode?: string;
10458
10548
  id: string;
@@ -10553,8 +10643,10 @@ interface NoiseV1Response {
10553
10643
  input: NoiseV1ResponseInput;
10554
10644
  status: NoiseV1ResponseStatus;
10555
10645
  type: string;
10556
- price?: string;
10557
- estimatedPrice?: string;
10646
+ /** @nullable */
10647
+ price?: string | null;
10648
+ /** @nullable */
10649
+ estimatedPrice?: string | null;
10558
10650
  errorMessage?: string;
10559
10651
  errorCode?: string;
10560
10652
  id: string;
@@ -10677,8 +10769,10 @@ interface ObjectDetectionV1Response {
10677
10769
  input: ObjectDetectionV1ResponseInput;
10678
10770
  status: ObjectDetectionV1ResponseStatus;
10679
10771
  type: string;
10680
- price?: string;
10681
- estimatedPrice?: string;
10772
+ /** @nullable */
10773
+ price?: string | null;
10774
+ /** @nullable */
10775
+ estimatedPrice?: string | null;
10682
10776
  errorMessage?: string;
10683
10777
  errorCode?: string;
10684
10778
  id: string;
@@ -10873,8 +10967,10 @@ interface OnecompilerV1Response {
10873
10967
  input: OnecompilerV1ResponseInput;
10874
10968
  status: OnecompilerV1ResponseStatus;
10875
10969
  type: string;
10876
- price?: string;
10877
- estimatedPrice?: string;
10970
+ /** @nullable */
10971
+ price?: string | null;
10972
+ /** @nullable */
10973
+ estimatedPrice?: string | null;
10878
10974
  errorMessage?: string;
10879
10975
  errorCode?: string;
10880
10976
  id: string;
@@ -10908,6 +11004,59 @@ interface OperationOutputNumber {
10908
11004
  value: number;
10909
11005
  }
10910
11006
 
11007
+ /**
11008
+ * Generated by orval v7.10.0 🍺
11009
+ * Do not edit manually.
11010
+ * Hautech API
11011
+ * OpenAPI spec version: 1.0
11012
+ */
11013
+ /**
11014
+ * Current status of the operation
11015
+ */
11016
+ type OperationStatusDtoStatus = typeof OperationStatusDtoStatus[keyof typeof OperationStatusDtoStatus];
11017
+ declare const OperationStatusDtoStatus: {
11018
+ readonly pending: "pending";
11019
+ readonly finished: "finished";
11020
+ readonly failed: "failed";
11021
+ };
11022
+
11023
+ /**
11024
+ * Generated by orval v7.10.0 🍺
11025
+ * Do not edit manually.
11026
+ * Hautech API
11027
+ * OpenAPI spec version: 1.0
11028
+ */
11029
+ /**
11030
+ * Full operation object (only included if status is not pending)
11031
+ */
11032
+ type OperationStatusDtoOperation = {
11033
+ [key: string]: unknown;
11034
+ };
11035
+
11036
+ /**
11037
+ * Generated by orval v7.10.0 🍺
11038
+ * Do not edit manually.
11039
+ * Hautech API
11040
+ * OpenAPI spec version: 1.0
11041
+ */
11042
+
11043
+ interface OperationStatusDto {
11044
+ /** Current status of the operation */
11045
+ status: OperationStatusDtoStatus;
11046
+ /** Full operation object (only included if status is not pending) */
11047
+ operation?: OperationStatusDtoOperation;
11048
+ }
11049
+
11050
+ /**
11051
+ * Generated by orval v7.10.0 🍺
11052
+ * Do not edit manually.
11053
+ * Hautech API
11054
+ * OpenAPI spec version: 1.0
11055
+ */
11056
+ type OperationsControllerGetOperationStatusV1200 = {
11057
+ [key: string]: unknown;
11058
+ };
11059
+
10911
11060
  /**
10912
11061
  * Generated by orval v7.10.0 🍺
10913
11062
  * Do not edit manually.
@@ -11200,8 +11349,10 @@ interface PipelineMapV1Response {
11200
11349
  input: PipelineMapV1ResponseInput;
11201
11350
  status: PipelineMapV1ResponseStatus;
11202
11351
  type: string;
11203
- price?: string;
11204
- estimatedPrice?: string;
11352
+ /** @nullable */
11353
+ price?: string | null;
11354
+ /** @nullable */
11355
+ estimatedPrice?: string | null;
11205
11356
  errorMessage?: string;
11206
11357
  errorCode?: string;
11207
11358
  id: string;
@@ -11211,6 +11362,36 @@ interface PipelineMapV1Response {
11211
11362
  updatedAt: string;
11212
11363
  }
11213
11364
 
11365
+ /**
11366
+ * Generated by orval v7.10.0 🍺
11367
+ * Do not edit manually.
11368
+ * Hautech API
11369
+ * OpenAPI spec version: 1.0
11370
+ */
11371
+ /**
11372
+ * Current status of the pipeline
11373
+ */
11374
+ type PipelineStatusDtoStatus = typeof PipelineStatusDtoStatus[keyof typeof PipelineStatusDtoStatus];
11375
+ declare const PipelineStatusDtoStatus: {
11376
+ readonly pending: "pending";
11377
+ readonly completed: "completed";
11378
+ readonly failed: "failed";
11379
+ };
11380
+
11381
+ /**
11382
+ * Generated by orval v7.10.0 🍺
11383
+ * Do not edit manually.
11384
+ * Hautech API
11385
+ * OpenAPI spec version: 1.0
11386
+ */
11387
+
11388
+ interface PipelineStatusDto {
11389
+ /** Current status of the pipeline */
11390
+ status: PipelineStatusDtoStatus;
11391
+ /** Full pipeline object (only included if status is not pending) */
11392
+ pipeline?: PipelineDto;
11393
+ }
11394
+
11214
11395
  /**
11215
11396
  * Generated by orval v7.10.0 🍺
11216
11397
  * Do not edit manually.
@@ -11236,6 +11417,16 @@ type PipelinesControllerCountPipelinesV1Params = {
11236
11417
  status?: PipelinesControllerCountPipelinesV1Status;
11237
11418
  };
11238
11419
 
11420
+ /**
11421
+ * Generated by orval v7.10.0 🍺
11422
+ * Do not edit manually.
11423
+ * Hautech API
11424
+ * OpenAPI spec version: 1.0
11425
+ */
11426
+ type PipelinesControllerGetPipelineStatusV1200 = {
11427
+ [key: string]: unknown;
11428
+ };
11429
+
11239
11430
  /**
11240
11431
  * Generated by orval v7.10.0 🍺
11241
11432
  * Do not edit manually.
@@ -11398,8 +11589,10 @@ interface PoseEstimationV1Response {
11398
11589
  input: PoseEstimationV1ResponseInput;
11399
11590
  status: PoseEstimationV1ResponseStatus;
11400
11591
  type: string;
11401
- price?: string;
11402
- estimatedPrice?: string;
11592
+ /** @nullable */
11593
+ price?: string | null;
11594
+ /** @nullable */
11595
+ estimatedPrice?: string | null;
11403
11596
  errorMessage?: string;
11404
11597
  errorCode?: string;
11405
11598
  id: string;
@@ -11851,8 +12044,10 @@ interface ResizeV1Response {
11851
12044
  input: ResizeV1ResponseInput;
11852
12045
  status: ResizeV1ResponseStatus;
11853
12046
  type: string;
11854
- price?: string;
11855
- estimatedPrice?: string;
12047
+ /** @nullable */
12048
+ price?: string | null;
12049
+ /** @nullable */
12050
+ estimatedPrice?: string | null;
11856
12051
  errorMessage?: string;
11857
12052
  errorCode?: string;
11858
12053
  id: string;
@@ -11989,8 +12184,10 @@ interface ReveRemixV1Response {
11989
12184
  input: ReveRemixV1ResponseInput;
11990
12185
  status: ReveRemixV1ResponseStatus;
11991
12186
  type: string;
11992
- price?: string;
11993
- estimatedPrice?: string;
12187
+ /** @nullable */
12188
+ price?: string | null;
12189
+ /** @nullable */
12190
+ estimatedPrice?: string | null;
11994
12191
  errorMessage?: string;
11995
12192
  errorCode?: string;
11996
12193
  id: string;
@@ -12210,8 +12407,10 @@ interface SeedV1Response {
12210
12407
  input: SeedV1ResponseInput;
12211
12408
  status: SeedV1ResponseStatus;
12212
12409
  type: string;
12213
- price?: string;
12214
- estimatedPrice?: string;
12410
+ /** @nullable */
12411
+ price?: string | null;
12412
+ /** @nullable */
12413
+ estimatedPrice?: string | null;
12215
12414
  errorMessage?: string;
12216
12415
  errorCode?: string;
12217
12416
  id: string;
@@ -12339,8 +12538,10 @@ interface SeedanceV1FastV1Response {
12339
12538
  input: SeedanceV1FastV1ResponseInput;
12340
12539
  status: SeedanceV1FastV1ResponseStatus;
12341
12540
  type: string;
12342
- price?: string;
12343
- estimatedPrice?: string;
12541
+ /** @nullable */
12542
+ price?: string | null;
12543
+ /** @nullable */
12544
+ estimatedPrice?: string | null;
12344
12545
  errorMessage?: string;
12345
12546
  errorCode?: string;
12346
12547
  id: string;
@@ -12429,8 +12630,10 @@ interface SeedanceV1LightV1Response {
12429
12630
  input: SeedanceV1LightV1ResponseInput;
12430
12631
  status: SeedanceV1LightV1ResponseStatus;
12431
12632
  type: string;
12432
- price?: string;
12433
- estimatedPrice?: string;
12633
+ /** @nullable */
12634
+ price?: string | null;
12635
+ /** @nullable */
12636
+ estimatedPrice?: string | null;
12434
12637
  errorMessage?: string;
12435
12638
  errorCode?: string;
12436
12639
  id: string;
@@ -12519,8 +12722,10 @@ interface SeedanceV1ProV1Response {
12519
12722
  input: SeedanceV1ProV1ResponseInput;
12520
12723
  status: SeedanceV1ProV1ResponseStatus;
12521
12724
  type: string;
12522
- price?: string;
12523
- estimatedPrice?: string;
12725
+ /** @nullable */
12726
+ price?: string | null;
12727
+ /** @nullable */
12728
+ estimatedPrice?: string | null;
12524
12729
  errorMessage?: string;
12525
12730
  errorCode?: string;
12526
12731
  id: string;
@@ -12670,8 +12875,10 @@ interface Seedream3V1Response {
12670
12875
  input: Seedream3V1ResponseInput;
12671
12876
  status: Seedream3V1ResponseStatus;
12672
12877
  type: string;
12673
- price?: string;
12674
- estimatedPrice?: string;
12878
+ /** @nullable */
12879
+ price?: string | null;
12880
+ /** @nullable */
12881
+ estimatedPrice?: string | null;
12675
12882
  errorMessage?: string;
12676
12883
  errorCode?: string;
12677
12884
  id: string;
@@ -12838,8 +13045,10 @@ interface Seedream45EditV1Response {
12838
13045
  input: Seedream45EditV1ResponseInput;
12839
13046
  status: Seedream45EditV1ResponseStatus;
12840
13047
  type: string;
12841
- price?: string;
12842
- estimatedPrice?: string;
13048
+ /** @nullable */
13049
+ price?: string | null;
13050
+ /** @nullable */
13051
+ estimatedPrice?: string | null;
12843
13052
  errorMessage?: string;
12844
13053
  errorCode?: string;
12845
13054
  id: string;
@@ -12983,8 +13192,10 @@ interface Seedream45T2iV1Response {
12983
13192
  input: Seedream45T2iV1ResponseInput;
12984
13193
  status: Seedream45T2iV1ResponseStatus;
12985
13194
  type: string;
12986
- price?: string;
12987
- estimatedPrice?: string;
13195
+ /** @nullable */
13196
+ price?: string | null;
13197
+ /** @nullable */
13198
+ estimatedPrice?: string | null;
12988
13199
  errorMessage?: string;
12989
13200
  errorCode?: string;
12990
13201
  id: string;
@@ -13121,8 +13332,10 @@ interface Seedream4EditV1Response {
13121
13332
  input: Seedream4EditV1ResponseInput;
13122
13333
  status: Seedream4EditV1ResponseStatus;
13123
13334
  type: string;
13124
- price?: string;
13125
- estimatedPrice?: string;
13335
+ /** @nullable */
13336
+ price?: string | null;
13337
+ /** @nullable */
13338
+ estimatedPrice?: string | null;
13126
13339
  errorMessage?: string;
13127
13340
  errorCode?: string;
13128
13341
  id: string;
@@ -13236,8 +13449,10 @@ interface Seedream4T2iV1Response {
13236
13449
  input: Seedream4T2iV1ResponseInput;
13237
13450
  status: Seedream4T2iV1ResponseStatus;
13238
13451
  type: string;
13239
- price?: string;
13240
- estimatedPrice?: string;
13452
+ /** @nullable */
13453
+ price?: string | null;
13454
+ /** @nullable */
13455
+ estimatedPrice?: string | null;
13241
13456
  errorMessage?: string;
13242
13457
  errorCode?: string;
13243
13458
  id: string;
@@ -13336,8 +13551,10 @@ interface SegmentAnythingEmbeddingsV1Response {
13336
13551
  input: SegmentAnythingEmbeddingsV1ResponseInput;
13337
13552
  status: SegmentAnythingEmbeddingsV1ResponseStatus;
13338
13553
  type: string;
13339
- price?: string;
13340
- estimatedPrice?: string;
13554
+ /** @nullable */
13555
+ price?: string | null;
13556
+ /** @nullable */
13557
+ estimatedPrice?: string | null;
13341
13558
  errorMessage?: string;
13342
13559
  errorCode?: string;
13343
13560
  id: string;
@@ -13443,8 +13660,10 @@ interface SegmentAnythingMaskV1Response {
13443
13660
  input: SegmentAnythingMaskV1ResponseInput;
13444
13661
  status: SegmentAnythingMaskV1ResponseStatus;
13445
13662
  type: string;
13446
- price?: string;
13447
- estimatedPrice?: string;
13663
+ /** @nullable */
13664
+ price?: string | null;
13665
+ /** @nullable */
13666
+ estimatedPrice?: string | null;
13448
13667
  errorMessage?: string;
13449
13668
  errorCode?: string;
13450
13669
  id: string;
@@ -13821,8 +14040,10 @@ interface StringsLengthV1Response {
13821
14040
  input: StringsLengthV1ResponseInput;
13822
14041
  status: StringsLengthV1ResponseStatus;
13823
14042
  type: string;
13824
- price?: string;
13825
- estimatedPrice?: string;
14043
+ /** @nullable */
14044
+ price?: string | null;
14045
+ /** @nullable */
14046
+ estimatedPrice?: string | null;
13826
14047
  errorMessage?: string;
13827
14048
  errorCode?: string;
13828
14049
  id: string;
@@ -13922,8 +14143,10 @@ interface StringsParseJsonV1Response {
13922
14143
  input: StringsParseJsonV1ResponseInput;
13923
14144
  status: StringsParseJsonV1ResponseStatus;
13924
14145
  type: string;
13925
- price?: string;
13926
- estimatedPrice?: string;
14146
+ /** @nullable */
14147
+ price?: string | null;
14148
+ /** @nullable */
14149
+ estimatedPrice?: string | null;
13927
14150
  errorMessage?: string;
13928
14151
  errorCode?: string;
13929
14152
  id: string;
@@ -14027,8 +14250,10 @@ interface StringsSliceV1Response {
14027
14250
  input: StringsSliceV1ResponseInput;
14028
14251
  status: StringsSliceV1ResponseStatus;
14029
14252
  type: string;
14030
- price?: string;
14031
- estimatedPrice?: string;
14253
+ /** @nullable */
14254
+ price?: string | null;
14255
+ /** @nullable */
14256
+ estimatedPrice?: string | null;
14032
14257
  errorMessage?: string;
14033
14258
  errorCode?: string;
14034
14259
  id: string;
@@ -14133,8 +14358,10 @@ interface StringsSwitchV1Response {
14133
14358
  input: StringsSwitchV1ResponseInput;
14134
14359
  status: StringsSwitchV1ResponseStatus;
14135
14360
  type: string;
14136
- price?: string;
14137
- estimatedPrice?: string;
14361
+ /** @nullable */
14362
+ price?: string | null;
14363
+ /** @nullable */
14364
+ estimatedPrice?: string | null;
14138
14365
  errorMessage?: string;
14139
14366
  errorCode?: string;
14140
14367
  id: string;
@@ -14259,8 +14486,10 @@ interface StringsTemplateV1Response {
14259
14486
  input: StringsTemplateV1ResponseInput;
14260
14487
  status: StringsTemplateV1ResponseStatus;
14261
14488
  type: string;
14262
- price?: string;
14263
- estimatedPrice?: string;
14489
+ /** @nullable */
14490
+ price?: string | null;
14491
+ /** @nullable */
14492
+ estimatedPrice?: string | null;
14264
14493
  errorMessage?: string;
14265
14494
  errorCode?: string;
14266
14495
  id: string;
@@ -14416,8 +14645,10 @@ interface TopazUpscaleV1Response {
14416
14645
  input: TopazUpscaleV1ResponseInput;
14417
14646
  status: TopazUpscaleV1ResponseStatus;
14418
14647
  type: string;
14419
- price?: string;
14420
- estimatedPrice?: string;
14648
+ /** @nullable */
14649
+ price?: string | null;
14650
+ /** @nullable */
14651
+ estimatedPrice?: string | null;
14421
14652
  errorMessage?: string;
14422
14653
  errorCode?: string;
14423
14654
  id: string;
@@ -14550,8 +14781,10 @@ interface TranslateV1Response {
14550
14781
  input: TranslateV1ResponseInput;
14551
14782
  status: TranslateV1ResponseStatus;
14552
14783
  type: string;
14553
- price?: string;
14554
- estimatedPrice?: string;
14784
+ /** @nullable */
14785
+ price?: string | null;
14786
+ /** @nullable */
14787
+ estimatedPrice?: string | null;
14555
14788
  errorMessage?: string;
14556
14789
  errorCode?: string;
14557
14790
  id: string;
@@ -14824,8 +15057,10 @@ interface UpscaleV1Response {
14824
15057
  input: UpscaleV1ResponseInput;
14825
15058
  status: UpscaleV1ResponseStatus;
14826
15059
  type: string;
14827
- price?: string;
14828
- estimatedPrice?: string;
15060
+ /** @nullable */
15061
+ price?: string | null;
15062
+ /** @nullable */
15063
+ estimatedPrice?: string | null;
14829
15064
  errorMessage?: string;
14830
15065
  errorCode?: string;
14831
15066
  id: string;
@@ -14993,8 +15228,10 @@ interface Veo31FastV1Response {
14993
15228
  input: Veo31FastV1ResponseInput;
14994
15229
  status: Veo31FastV1ResponseStatus;
14995
15230
  type: string;
14996
- price?: string;
14997
- estimatedPrice?: string;
15231
+ /** @nullable */
15232
+ price?: string | null;
15233
+ /** @nullable */
15234
+ estimatedPrice?: string | null;
14998
15235
  errorMessage?: string;
14999
15236
  errorCode?: string;
15000
15237
  id: string;
@@ -15083,8 +15320,10 @@ interface Veo31V1Response {
15083
15320
  input: Veo31V1ResponseInput;
15084
15321
  status: Veo31V1ResponseStatus;
15085
15322
  type: string;
15086
- price?: string;
15087
- estimatedPrice?: string;
15323
+ /** @nullable */
15324
+ price?: string | null;
15325
+ /** @nullable */
15326
+ estimatedPrice?: string | null;
15088
15327
  errorMessage?: string;
15089
15328
  errorCode?: string;
15090
15329
  id: string;
@@ -15245,8 +15484,10 @@ interface Veo3FastV1Response {
15245
15484
  input: Veo3FastV1ResponseInput;
15246
15485
  status: Veo3FastV1ResponseStatus;
15247
15486
  type: string;
15248
- price?: string;
15249
- estimatedPrice?: string;
15487
+ /** @nullable */
15488
+ price?: string | null;
15489
+ /** @nullable */
15490
+ estimatedPrice?: string | null;
15250
15491
  errorMessage?: string;
15251
15492
  errorCode?: string;
15252
15493
  id: string;
@@ -15335,8 +15576,10 @@ interface Veo3V1Response {
15335
15576
  input: Veo3V1ResponseInput;
15336
15577
  status: Veo3V1ResponseStatus;
15337
15578
  type: string;
15338
- price?: string;
15339
- estimatedPrice?: string;
15579
+ /** @nullable */
15580
+ price?: string | null;
15581
+ /** @nullable */
15582
+ estimatedPrice?: string | null;
15340
15583
  errorMessage?: string;
15341
15584
  errorCode?: string;
15342
15585
  id: string;
@@ -15446,8 +15689,10 @@ interface VtonGiseleV1Response {
15446
15689
  input: VtonGiseleV1ResponseInput;
15447
15690
  status: VtonGiseleV1ResponseStatus;
15448
15691
  type: string;
15449
- price?: string;
15450
- estimatedPrice?: string;
15692
+ /** @nullable */
15693
+ price?: string | null;
15694
+ /** @nullable */
15695
+ estimatedPrice?: string | null;
15451
15696
  errorMessage?: string;
15452
15697
  errorCode?: string;
15453
15698
  id: string;
@@ -15773,8 +16018,10 @@ interface WorkflowsRunV1Response {
15773
16018
  input: WorkflowsRunV1ResponseInput;
15774
16019
  status: WorkflowsRunV1ResponseStatus;
15775
16020
  type: string;
15776
- price?: string;
15777
- estimatedPrice?: string;
16021
+ /** @nullable */
16022
+ price?: string | null;
16023
+ /** @nullable */
16024
+ estimatedPrice?: string | null;
15778
16025
  errorMessage?: string;
15779
16026
  errorCode?: string;
15780
16027
  id: string;
@@ -15897,8 +16144,10 @@ interface Yolo11xPoseV1Response {
15897
16144
  input: Yolo11xPoseV1ResponseInput;
15898
16145
  status: Yolo11xPoseV1ResponseStatus;
15899
16146
  type: string;
15900
- price?: string;
15901
- estimatedPrice?: string;
16147
+ /** @nullable */
16148
+ price?: string | null;
16149
+ /** @nullable */
16150
+ estimatedPrice?: string | null;
15902
16151
  errorMessage?: string;
15903
16152
  errorCode?: string;
15904
16153
  id: string;
@@ -16108,10 +16357,36 @@ declare const apiDefinitions: {
16108
16357
  };
16109
16358
  imagen4: {
16110
16359
  v1: (imagen4V1Request: Imagen4V1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Imagen4V1Response, any>>;
16360
+ fast: {
16361
+ v1: (imagen4FastV1Request: Imagen4FastV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Imagen4FastV1Response, any>>;
16362
+ };
16363
+ standard: {
16364
+ v1: (imagen4StandardV1Request: Imagen4StandardV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Imagen4StandardV1Response, any>>;
16365
+ };
16366
+ ultra: {
16367
+ v1: (imagen4UltraV1Request: Imagen4UltraV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Imagen4UltraV1Response, any>>;
16368
+ };
16111
16369
  };
16112
16370
  seedream3: {
16113
16371
  v1: (seedream3V1Request: Seedream3V1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Seedream3V1Response, any>>;
16114
16372
  };
16373
+ seed: {
16374
+ v1: (seedV1Request: SeedV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<SeedV1Response, any>>;
16375
+ };
16376
+ seedream: {
16377
+ '4_edit': {
16378
+ v1: (seedream4EditV1Request: Seedream4EditV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Seedream4EditV1Response, any>>;
16379
+ };
16380
+ '4_5_edit': {
16381
+ v1: (seedream45EditV1Request: Seedream45EditV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Seedream45EditV1Response, any>>;
16382
+ };
16383
+ '4_t2i': {
16384
+ v1: (seedream4T2iV1Request: Seedream4T2iV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Seedream4T2iV1Response, any>>;
16385
+ };
16386
+ '4_5_t2i': {
16387
+ v1: (seedream45T2iV1Request: Seedream45T2iV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Seedream45T2iV1Response, any>>;
16388
+ };
16389
+ };
16115
16390
  };
16116
16391
  upscale: {
16117
16392
  v1: (upscaleV1Request: UpscaleV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<UpscaleV1Response, any>>;
@@ -16148,6 +16423,14 @@ declare const apiDefinitions: {
16148
16423
  composite: {
16149
16424
  v1: (compositeV1Request: CompositeV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<CompositeV1Response, any>>;
16150
16425
  };
16426
+ images: {
16427
+ downscale: {
16428
+ v1: (imagesDownscaleV1Request: ImagesDownscaleV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ImagesDownscaleV1Response, any>>;
16429
+ };
16430
+ rename: {
16431
+ v1: (imagesRenameV1Request: ImagesRenameV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ImagesRenameV1Response, any>>;
16432
+ };
16433
+ };
16151
16434
  vton: {
16152
16435
  gisele: {
16153
16436
  v1: (vtonGiseleV1Request: VtonGiseleV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<VtonGiseleV1Response, any>>;
@@ -16163,6 +16446,20 @@ declare const apiDefinitions: {
16163
16446
  template: {
16164
16447
  v1: (stringsTemplateV1Request: StringsTemplateV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsTemplateV1Response, any>>;
16165
16448
  };
16449
+ switch: {
16450
+ v1: (stringsSwitchV1Request: StringsSwitchV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsSwitchV1Response, any>>;
16451
+ };
16452
+ slice: {
16453
+ v1: (stringsSliceV1Request: StringsSliceV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsSliceV1Response, any>>;
16454
+ };
16455
+ length: {
16456
+ v1: (stringsLengthV1Request: StringsLengthV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsLengthV1Response, any>>;
16457
+ };
16458
+ parse: {
16459
+ json: {
16460
+ v1: (stringsParseJsonV1Request: StringsParseJsonV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsParseJsonV1Response, any>>;
16461
+ };
16462
+ };
16166
16463
  };
16167
16464
  onecompiler: {
16168
16465
  v1: (onecompilerV1Request: OnecompilerV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OnecompilerV1Response, any>>;
@@ -16177,14 +16474,85 @@ declare const apiDefinitions: {
16177
16474
  nano_banana: {
16178
16475
  v1: (googleNanoBananaV1Request: GoogleNanoBananaV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GoogleNanoBananaV1Response, any>>;
16179
16476
  };
16477
+ nano_banana_pro: {
16478
+ edit: {
16479
+ v1: (googleNanoBananaProEditV1Request: GoogleNanoBananaProEditV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GoogleNanoBananaProEditV1Response, any>>;
16480
+ };
16481
+ };
16482
+ };
16483
+ fashn: {
16484
+ vton_1_6: {
16485
+ v1: (fashnVton16V1Request: FashnVton16V1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FashnVton16V1Response, any>>;
16486
+ };
16487
+ };
16488
+ alphabake: {
16489
+ vton: {
16490
+ v1: (alphabakeVtonV1Request: AlphabakeVtonV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<AlphabakeVtonV1Response, any>>;
16491
+ };
16492
+ };
16493
+ kling: {
16494
+ kolors_vton: {
16495
+ v1: (klingKolorsVtonV1Request: KlingKolorsVtonV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<KlingKolorsVtonV1Response, any>>;
16496
+ };
16497
+ video_2_5_pro: {
16498
+ image_to_video: {
16499
+ v1: (klingVideo25ProImageToVideoV1Request: KlingVideo25ProImageToVideoV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<KlingVideo25ProImageToVideoV1Response, any>>;
16500
+ };
16501
+ };
16502
+ };
16503
+ json_to_image: {
16504
+ v1: (jsonToImageV1Request: JsonToImageV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<JsonToImageV1Response, any>>;
16505
+ };
16506
+ json_to_video: {
16507
+ v1: (jsonToVideoV1Request: JsonToVideoV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<JsonToVideoV1Response, any>>;
16508
+ };
16509
+ reve: {
16510
+ remix: {
16511
+ v1: (reveRemixV1Request: ReveRemixV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ReveRemixV1Response, any>>;
16512
+ };
16513
+ };
16514
+ yolo11x_pose: {
16515
+ v1: (yolo11xPoseV1Request: Yolo11xPoseV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Yolo11xPoseV1Response, any>>;
16516
+ };
16517
+ seedance_v1: {
16518
+ pro: {
16519
+ v1: (seedanceV1ProV1Request: SeedanceV1ProV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<SeedanceV1ProV1Response, any>>;
16520
+ };
16521
+ fast: {
16522
+ v1: (seedanceV1FastV1Request: SeedanceV1FastV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<SeedanceV1FastV1Response, any>>;
16523
+ };
16524
+ light: {
16525
+ v1: (seedanceV1LightV1Request: SeedanceV1LightV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<SeedanceV1LightV1Response, any>>;
16526
+ };
16527
+ };
16528
+ flux: {
16529
+ kontext_dev: {
16530
+ prepare_dataset: {
16531
+ v1: (fluxKontextDevPrepareDatasetV1Request: FluxKontextDevPrepareDatasetV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FluxKontextDevPrepareDatasetV1Response, any>>;
16532
+ };
16533
+ train: {
16534
+ v1: (fluxKontextDevTrainV1Request: FluxKontextDevTrainV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FluxKontextDevTrainV1Response, any>>;
16535
+ };
16536
+ v1: (fluxKontextDevV1Request: FluxKontextDevV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FluxKontextDevV1Response, any>>;
16537
+ };
16538
+ };
16539
+ clipClassify: {
16540
+ v1: (clipClassifyV1Request: ClipClassifyV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ClipClassifyV1Response, any>>;
16180
16541
  };
16181
16542
  workflow: {
16182
16543
  run: {
16183
16544
  v1: (workflowsRunV1Request: WorkflowsRunV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<WorkflowsRunV1Response, any>>;
16184
16545
  };
16185
16546
  };
16547
+ veo3_1: {
16548
+ v1: (veo31V1Request: Veo31V1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Veo31V1Response, any>>;
16549
+ fast: {
16550
+ v1: (veo31FastV1Request: Veo31FastV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<Veo31FastV1Response, any>>;
16551
+ };
16552
+ };
16186
16553
  };
16187
16554
  get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationEntity | null, any>>;
16555
+ getStatus: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationStatusDto | null, any>>;
16188
16556
  getMany: (getOperationsParamsDto: GetOperationsParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationEntity[], any>>;
16189
16557
  list: (params?: OperationsControllerListOperationsV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListOperationsDto, any>>;
16190
16558
  updateMetadata: (id: string, updateMetadataDto: UpdateMetadataDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ResourceEntity, any>>;
@@ -16253,6 +16621,7 @@ declare const apiDefinitions: {
16253
16621
  create: (createPipelineParamsDto: CreatePipelineParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<PipelineDto, any>>;
16254
16622
  createFromTemplate: <TSdk extends PipelineSDK, O = any, I = any>(this: any, template: PipelineTyped<TSdk, O, I>, params?: Partial<CreatePipelineParamsDto>) => Promise<PipelineDto>;
16255
16623
  get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<PipelineDto | null, any>>;
16624
+ getStatus: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<PipelineStatusDto | null, any>>;
16256
16625
  count: (params?: PipelinesControllerCountPipelinesV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<CountPipelinesResultDto, any>>;
16257
16626
  list: (params?: PipelinesControllerListPipelinesV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListPipelinesDto, any>>;
16258
16627
  constructTemplate: <TSdk extends PipelineSDK, O = any, I = any>(this: any, builder: (pipeline: PipelineTyped<TSdk>) => PipelineTyped<TSdk>) => PipelineTyped<TSdk>;
@@ -16898,4 +17267,4 @@ interface UserProfileDto {
16898
17267
  pictureUrl?: string | null;
16899
17268
  }
16900
17269
 
16901
- export { type AccessControllerListSharedV1Params, AccessControllerListSharedV1Type, type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AlphabakeVtonV1Input, AlphabakeVtonV1InputGarmentType, AlphabakeVtonV1InputMode, AlphabakeVtonV1InputProcessAsset, type AlphabakeVtonV1Request, type AlphabakeVtonV1RequestMetadata, type AlphabakeVtonV1Response, type AlphabakeVtonV1ResponseInput, AlphabakeVtonV1ResponseKind, type AlphabakeVtonV1ResponseMetadata, AlphabakeVtonV1ResponseStatus, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21ProV1Input, AnimateKling21ProV1InputDuration, type AnimateKling21ProV1Request, type AnimateKling21ProV1RequestMetadata, type AnimateKling21ProV1Response, type AnimateKling21ProV1ResponseInput, AnimateKling21ProV1ResponseKind, type AnimateKling21ProV1ResponseMetadata, AnimateKling21ProV1ResponseStatus, type AnimateKling21StandardV1Input, AnimateKling21StandardV1InputDuration, type AnimateKling21StandardV1Request, type AnimateKling21StandardV1RequestMetadata, type AnimateKling21StandardV1Response, type AnimateKling21StandardV1ResponseInput, AnimateKling21StandardV1ResponseKind, type AnimateKling21StandardV1ResponseMetadata, AnimateKling21StandardV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CaseDto, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type ClassifyImageInputDto, type ClassifyImageOutputDto, ClassifyImageOutputDtoKind, type ClipClassifyV1Request, type ClipClassifyV1RequestMetadata, type ClipClassifyV1Response, type ClipClassifyV1ResponseInput, ClipClassifyV1ResponseKind, type ClipClassifyV1ResponseMetadata, ClipClassifyV1ResponseStatus, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateChatParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateUserProfileDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CreateWorkflowParamsDtoPipelineTemplate, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CurrentAccessControllerDto, CurrentAccessControllerDtoRelationsItem, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type DatasetItemDto, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type DirectorySDK, type DirectorySDKOptions, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type FashnVton16V1Request, type FashnVton16V1RequestMetadata, type FashnVton16V1Response, type FashnVton16V1ResponseInput, FashnVton16V1ResponseKind, type FashnVton16V1ResponseMetadata, FashnVton16V1ResponseStatus, type FashnVtonV1Input, FashnVtonV1InputCategory, FashnVtonV1InputGarmentPhotoType, FashnVtonV1InputMode, FashnVtonV1InputModerationLevel, type Flux11ProUltraV1Input, type FluxKontextDatasetItemDto, type FluxKontextDevPrepareDatasetV1Request, type FluxKontextDevPrepareDatasetV1RequestMetadata, type FluxKontextDevPrepareDatasetV1Response, type FluxKontextDevPrepareDatasetV1ResponseInput, FluxKontextDevPrepareDatasetV1ResponseKind, type FluxKontextDevPrepareDatasetV1ResponseMetadata, FluxKontextDevPrepareDatasetV1ResponseStatus, type FluxKontextDevTrainV1Request, type FluxKontextDevTrainV1RequestMetadata, type FluxKontextDevTrainV1Response, type FluxKontextDevTrainV1ResponseInput, FluxKontextDevTrainV1ResponseKind, type FluxKontextDevTrainV1ResponseMetadata, FluxKontextDevTrainV1ResponseStatus, type FluxKontextDevV1Request, type FluxKontextDevV1RequestMetadata, type FluxKontextDevV1Response, type FluxKontextDevV1ResponseInput, FluxKontextDevV1ResponseKind, type FluxKontextDevV1ResponseMetadata, FluxKontextDevV1ResponseStatus, type FluxKontextPrepareDatasetInputDto, type FluxKontextPrepareDatasetOutputDto, FluxKontextPrepareDatasetOutputDtoKind, type FluxKontextPrepareDatasetResultDto, type FluxKontextTrainInputDto, type FluxKontextTrainOutputDto, FluxKontextTrainOutputDtoKind, type FluxKontextTrainResultDto, type FluxKontextV1InputDto, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoOutputItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaProEditV1Input, GoogleNanoBananaProEditV1InputAspectRatio, GoogleNanoBananaProEditV1InputResolution, type GoogleNanoBananaProEditV1Request, type GoogleNanoBananaProEditV1RequestMetadata, type GoogleNanoBananaProEditV1Response, type GoogleNanoBananaProEditV1ResponseInput, GoogleNanoBananaProEditV1ResponseKind, type GoogleNanoBananaProEditV1ResponseMetadata, GoogleNanoBananaProEditV1ResponseStatus, type GoogleNanoBananaV1Input, GoogleNanoBananaV1InputAspectRatio, GoogleNanoBananaV1InputOutputFormat, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiPrepareDatasetV1Request, type HauteNaomiPrepareDatasetV1RequestMetadata, type HauteNaomiPrepareDatasetV1Response, type HauteNaomiPrepareDatasetV1ResponseInput, HauteNaomiPrepareDatasetV1ResponseKind, type HauteNaomiPrepareDatasetV1ResponseMetadata, HauteNaomiPrepareDatasetV1ResponseStatus, type HauteNaomiTrainV1Request, type HauteNaomiTrainV1RequestMetadata, type HauteNaomiTrainV1Response, type HauteNaomiTrainV1ResponseInput, HauteNaomiTrainV1ResponseKind, type HauteNaomiTrainV1ResponseMetadata, HauteNaomiTrainV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageCompositionJson, type ImageCompositionJsonElementsItem, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4FastV1Input, Imagen4FastV1InputAspectRatio, type Imagen4FastV1Request, type Imagen4FastV1RequestMetadata, type Imagen4FastV1Response, type Imagen4FastV1ResponseInput, Imagen4FastV1ResponseKind, type Imagen4FastV1ResponseMetadata, Imagen4FastV1ResponseStatus, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4StandardV1Input, Imagen4StandardV1InputAspectRatio, type Imagen4StandardV1Request, type Imagen4StandardV1RequestMetadata, type Imagen4StandardV1Response, type Imagen4StandardV1ResponseInput, Imagen4StandardV1ResponseKind, type Imagen4StandardV1ResponseMetadata, Imagen4StandardV1ResponseStatus, type Imagen4UltraV1Input, Imagen4UltraV1InputAspectRatio, type Imagen4UltraV1Request, type Imagen4UltraV1RequestMetadata, type Imagen4UltraV1Response, type Imagen4UltraV1ResponseInput, Imagen4UltraV1ResponseKind, type Imagen4UltraV1ResponseMetadata, Imagen4UltraV1ResponseStatus, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagesDownscaleV1Input, type ImagesDownscaleV1Request, type ImagesDownscaleV1RequestMetadata, type ImagesDownscaleV1Response, type ImagesDownscaleV1ResponseInput, ImagesDownscaleV1ResponseKind, type ImagesDownscaleV1ResponseMetadata, ImagesDownscaleV1ResponseStatus, type ImagesRenameV1Input, type ImagesRenameV1Request, type ImagesRenameV1RequestMetadata, type ImagesRenameV1Response, type ImagesRenameV1ResponseInput, ImagesRenameV1ResponseKind, type ImagesRenameV1ResponseMetadata, ImagesRenameV1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type JsonToImageV1Input, type JsonToImageV1Request, type JsonToImageV1RequestMetadata, type JsonToImageV1Response, type JsonToImageV1ResponseInput, JsonToImageV1ResponseKind, type JsonToImageV1ResponseMetadata, JsonToImageV1ResponseStatus, type JsonToVideoV1Input, type JsonToVideoV1Request, type JsonToVideoV1RequestMetadata, type JsonToVideoV1Response, type JsonToVideoV1ResponseInput, JsonToVideoV1ResponseKind, type JsonToVideoV1ResponseMetadata, JsonToVideoV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type KlingKolorsVtonV1Input, type KlingKolorsVtonV1Request, type KlingKolorsVtonV1RequestMetadata, type KlingKolorsVtonV1Response, type KlingKolorsVtonV1ResponseInput, KlingKolorsVtonV1ResponseKind, type KlingKolorsVtonV1ResponseMetadata, KlingKolorsVtonV1ResponseStatus, type KlingVideo25ProImageToVideoV1Input, KlingVideo25ProImageToVideoV1InputDuration, type KlingVideo25ProImageToVideoV1Request, type KlingVideo25ProImageToVideoV1RequestMetadata, type KlingVideo25ProImageToVideoV1Response, type KlingVideo25ProImageToVideoV1ResponseInput, KlingVideo25ProImageToVideoV1ResponseKind, type KlingVideo25ProImageToVideoV1ResponseMetadata, KlingVideo25ProImageToVideoV1ResponseStatus, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListSharedResourcesResponseDto, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, LoraControllerGetLorasV1ModelType, type LoraControllerGetLorasV1Params, type LoraDto, LoraDtoModelType, LoraDtoStatus, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteTrainInputDto, type NaomiHauteTrainOutputDto, NaomiHauteTrainOutputDtoKind, type NaomiHauteTrainResultDto, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NaomiPrepareDatasetInputDto, type NaomiPrepareDatasetOutputDto, NaomiPrepareDatasetOutputDtoKind, type NaomiPrepareDatasetResultDto, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OnRequestError, type OnRequestErrorResult, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputNumber, OperationOutputNumberKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, PricingControllerListPricingV1OrderBy, type PricingControllerListPricingV1Params, PricingControllerListPricingV1Strategy, type PublicUserProfileDto, type PublicWorkflowAccessDto, type PublicWorkflowDto, type PublicWorkflowDtoData, type PublicWorkflowDtoInputSchema, type PublicWorkflowDtoMetadata, type PublicWorkflowDtoOutputSchema, type PublicWorkflowDtoPipelineTemplate, type PublicWorkflowSummaryDto, type PublicWorkflowSummaryDtoInputSchema, type PublicWorkflowSummaryDtoMetadata, type PublicWorkflowSummaryDtoOutputSchema, type PublishWorkflowVersionParamsDto, type PublishWorkflowVersionParamsDtoExampleOutput, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type RequestContextInfo, type RequestErrorInfo, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type ResponseInfo, type ReveRemixV1Input, ReveRemixV1InputAspectRatio, ReveRemixV1InputVersion, type ReveRemixV1Request, type ReveRemixV1RequestMetadata, type ReveRemixV1Response, type ReveRemixV1ResponseInput, ReveRemixV1ResponseKind, type ReveRemixV1ResponseMetadata, ReveRemixV1ResponseStatus, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunPublicWorkflowResponseDto, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SeedV1Input, type SeedV1InputSeed, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, type SeedanceV1FastV1Request, type SeedanceV1FastV1RequestMetadata, type SeedanceV1FastV1Response, type SeedanceV1FastV1ResponseInput, SeedanceV1FastV1ResponseKind, type SeedanceV1FastV1ResponseMetadata, SeedanceV1FastV1ResponseStatus, type SeedanceV1Input, SeedanceV1InputResolution, type SeedanceV1LightV1Request, type SeedanceV1LightV1RequestMetadata, type SeedanceV1LightV1Response, type SeedanceV1LightV1ResponseInput, SeedanceV1LightV1ResponseKind, type SeedanceV1LightV1ResponseMetadata, SeedanceV1LightV1ResponseStatus, type SeedanceV1ProV1Request, type SeedanceV1ProV1RequestMetadata, type SeedanceV1ProV1Response, type SeedanceV1ProV1ResponseInput, SeedanceV1ProV1ResponseKind, type SeedanceV1ProV1ResponseMetadata, SeedanceV1ProV1ResponseStatus, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type Seedream45EditV1Input, Seedream45EditV1InputHeight, Seedream45EditV1InputOptimizePromptOptions, Seedream45EditV1InputWidth, type Seedream45EditV1Request, type Seedream45EditV1RequestMetadata, type Seedream45EditV1Response, type Seedream45EditV1ResponseInput, Seedream45EditV1ResponseKind, type Seedream45EditV1ResponseMetadata, Seedream45EditV1ResponseStatus, type Seedream45T2IV1Input, Seedream45T2IV1InputHeight, Seedream45T2IV1InputWidth, type Seedream45T2iV1Request, type Seedream45T2iV1RequestMetadata, type Seedream45T2iV1Response, type Seedream45T2iV1ResponseInput, Seedream45T2iV1ResponseKind, type Seedream45T2iV1ResponseMetadata, Seedream45T2iV1ResponseStatus, type Seedream4EditV1Input, Seedream4EditV1InputOptimizePromptOptions, type Seedream4EditV1Request, type Seedream4EditV1RequestMetadata, type Seedream4EditV1Response, type Seedream4EditV1ResponseInput, Seedream4EditV1ResponseKind, type Seedream4EditV1ResponseMetadata, Seedream4EditV1ResponseStatus, type Seedream4T2IV1Input, type Seedream4T2iV1Request, type Seedream4T2iV1RequestMetadata, type Seedream4T2iV1Response, type Seedream4T2iV1ResponseInput, Seedream4T2iV1ResponseKind, type Seedream4T2iV1ResponseMetadata, Seedream4T2iV1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type ShareWithEveryoneControllerParamsDto, ShareWithEveryoneControllerParamsDtoAccessItem, type SharedAccessEntryDto, SharedAccessEntryDtoRelationsItem, type SharedAccessResponseDto, SharedAccessResponseDtoPublicAccessItem, type SharedResourceDto, SharedResourceDtoType, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsLengthV1Input, type StringsLengthV1Request, type StringsLengthV1RequestMetadata, type StringsLengthV1Response, type StringsLengthV1ResponseInput, StringsLengthV1ResponseKind, type StringsLengthV1ResponseMetadata, StringsLengthV1ResponseStatus, type StringsParseJsonV1Input, type StringsParseJsonV1Request, type StringsParseJsonV1RequestMetadata, type StringsParseJsonV1Response, type StringsParseJsonV1ResponseInput, StringsParseJsonV1ResponseKind, type StringsParseJsonV1ResponseMetadata, StringsParseJsonV1ResponseStatus, type StringsSliceV1Input, type StringsSliceV1Request, type StringsSliceV1RequestMetadata, type StringsSliceV1Response, type StringsSliceV1ResponseInput, StringsSliceV1ResponseKind, type StringsSliceV1ResponseMetadata, StringsSliceV1ResponseStatus, type StringsSwitchV1Input, type StringsSwitchV1Request, type StringsSwitchV1RequestMetadata, type StringsSwitchV1Response, type StringsSwitchV1ResponseInput, StringsSwitchV1ResponseKind, type StringsSwitchV1ResponseMetadata, StringsSwitchV1ResponseStatus, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateUserProfileDto, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpdateWorkflowParamsDtoPipelineTemplate, type UpdateWorkflowVersionParamsDto, type UpdateWorkflowVersionParamsDtoExampleOutput, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type UserProfileDto, type VariableDto, type VariableDtoValue, type Veo31FastV1Request, type Veo31FastV1RequestMetadata, type Veo31FastV1Response, type Veo31FastV1ResponseInput, Veo31FastV1ResponseKind, type Veo31FastV1ResponseMetadata, Veo31FastV1ResponseStatus, type Veo31Input, Veo31InputAspectRatio, Veo31InputDuration, Veo31InputResolution, type Veo31V1Request, type Veo31V1RequestMetadata, type Veo31V1Response, type Veo31V1ResponseInput, Veo31V1ResponseKind, type Veo31V1ResponseMetadata, Veo31V1ResponseStatus, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputAspectRatio, Veo3V1InputDuration, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoCompositionJson, type VideoCompositionJsonElementsItem, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, type WorkflowDtoPipelineTemplate, type WorkflowStatisticsDto, type WorkflowVersionDto, type WorkflowVersionDtoData, type WorkflowVersionDtoExampleOutput, type WorkflowVersionDtoMetadata, type WorkflowVersionDtoPipelineTemplate, type WorkflowVersionSummaryDto, type WorkflowVersionSummaryDtoExampleOutput, type WorkflowVersionSummaryDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WorkflowsRunV1Input, type WorkflowsRunV1InputInput, type WorkflowsRunV1InputMetadata, type WorkflowsRunV1Output, type WorkflowsRunV1OutputOutput, type WorkflowsRunV1Request, type WorkflowsRunV1RequestMetadata, type WorkflowsRunV1Response, type WorkflowsRunV1ResponseInput, WorkflowsRunV1ResponseKind, type WorkflowsRunV1ResponseMetadata, WorkflowsRunV1ResponseStatus, type WsEventEntity, type WsEventMap, type Yolo11xPoseV1Input, type Yolo11xPoseV1Output, Yolo11xPoseV1OutputKind, type Yolo11xPoseV1Request, type Yolo11xPoseV1RequestMetadata, type Yolo11xPoseV1Response, type Yolo11xPoseV1ResponseInput, Yolo11xPoseV1ResponseKind, type Yolo11xPoseV1ResponseMetadata, Yolo11xPoseV1ResponseStatus, createDirectorySDK, createSDK, createTokenSigner };
17270
+ export { type AccessControllerListSharedV1Params, AccessControllerListSharedV1Type, type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AlphabakeVtonV1Input, AlphabakeVtonV1InputGarmentType, AlphabakeVtonV1InputMode, AlphabakeVtonV1InputProcessAsset, type AlphabakeVtonV1Request, type AlphabakeVtonV1RequestMetadata, type AlphabakeVtonV1Response, type AlphabakeVtonV1ResponseInput, AlphabakeVtonV1ResponseKind, type AlphabakeVtonV1ResponseMetadata, AlphabakeVtonV1ResponseStatus, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21ProV1Input, AnimateKling21ProV1InputDuration, type AnimateKling21ProV1Request, type AnimateKling21ProV1RequestMetadata, type AnimateKling21ProV1Response, type AnimateKling21ProV1ResponseInput, AnimateKling21ProV1ResponseKind, type AnimateKling21ProV1ResponseMetadata, AnimateKling21ProV1ResponseStatus, type AnimateKling21StandardV1Input, AnimateKling21StandardV1InputDuration, type AnimateKling21StandardV1Request, type AnimateKling21StandardV1RequestMetadata, type AnimateKling21StandardV1Response, type AnimateKling21StandardV1ResponseInput, AnimateKling21StandardV1ResponseKind, type AnimateKling21StandardV1ResponseMetadata, AnimateKling21StandardV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CaseDto, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type ClassifyImageInputDto, type ClassifyImageOutputDto, ClassifyImageOutputDtoKind, type ClipClassifyV1Request, type ClipClassifyV1RequestMetadata, type ClipClassifyV1Response, type ClipClassifyV1ResponseInput, ClipClassifyV1ResponseKind, type ClipClassifyV1ResponseMetadata, ClipClassifyV1ResponseStatus, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateChatParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateUserProfileDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CreateWorkflowParamsDtoPipelineTemplate, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CurrentAccessControllerDto, CurrentAccessControllerDtoRelationsItem, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type DatasetItemDto, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type DirectorySDK, type DirectorySDKOptions, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type FashnVton16V1Request, type FashnVton16V1RequestMetadata, type FashnVton16V1Response, type FashnVton16V1ResponseInput, FashnVton16V1ResponseKind, type FashnVton16V1ResponseMetadata, FashnVton16V1ResponseStatus, type FashnVtonV1Input, FashnVtonV1InputCategory, FashnVtonV1InputGarmentPhotoType, FashnVtonV1InputMode, FashnVtonV1InputModerationLevel, type Flux11ProUltraV1Input, type FluxKontextDatasetItemDto, type FluxKontextDevPrepareDatasetV1Request, type FluxKontextDevPrepareDatasetV1RequestMetadata, type FluxKontextDevPrepareDatasetV1Response, type FluxKontextDevPrepareDatasetV1ResponseInput, FluxKontextDevPrepareDatasetV1ResponseKind, type FluxKontextDevPrepareDatasetV1ResponseMetadata, FluxKontextDevPrepareDatasetV1ResponseStatus, type FluxKontextDevTrainV1Request, type FluxKontextDevTrainV1RequestMetadata, type FluxKontextDevTrainV1Response, type FluxKontextDevTrainV1ResponseInput, FluxKontextDevTrainV1ResponseKind, type FluxKontextDevTrainV1ResponseMetadata, FluxKontextDevTrainV1ResponseStatus, type FluxKontextDevV1Request, type FluxKontextDevV1RequestMetadata, type FluxKontextDevV1Response, type FluxKontextDevV1ResponseInput, FluxKontextDevV1ResponseKind, type FluxKontextDevV1ResponseMetadata, FluxKontextDevV1ResponseStatus, type FluxKontextPrepareDatasetInputDto, type FluxKontextPrepareDatasetOutputDto, FluxKontextPrepareDatasetOutputDtoKind, type FluxKontextPrepareDatasetResultDto, type FluxKontextTrainInputDto, type FluxKontextTrainOutputDto, FluxKontextTrainOutputDtoKind, type FluxKontextTrainResultDto, type FluxKontextV1InputDto, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoOutputItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaProEditV1Input, GoogleNanoBananaProEditV1InputAspectRatio, GoogleNanoBananaProEditV1InputResolution, type GoogleNanoBananaProEditV1Request, type GoogleNanoBananaProEditV1RequestMetadata, type GoogleNanoBananaProEditV1Response, type GoogleNanoBananaProEditV1ResponseInput, GoogleNanoBananaProEditV1ResponseKind, type GoogleNanoBananaProEditV1ResponseMetadata, GoogleNanoBananaProEditV1ResponseStatus, type GoogleNanoBananaV1Input, GoogleNanoBananaV1InputAspectRatio, GoogleNanoBananaV1InputOutputFormat, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiPrepareDatasetV1Request, type HauteNaomiPrepareDatasetV1RequestMetadata, type HauteNaomiPrepareDatasetV1Response, type HauteNaomiPrepareDatasetV1ResponseInput, HauteNaomiPrepareDatasetV1ResponseKind, type HauteNaomiPrepareDatasetV1ResponseMetadata, HauteNaomiPrepareDatasetV1ResponseStatus, type HauteNaomiTrainV1Request, type HauteNaomiTrainV1RequestMetadata, type HauteNaomiTrainV1Response, type HauteNaomiTrainV1ResponseInput, HauteNaomiTrainV1ResponseKind, type HauteNaomiTrainV1ResponseMetadata, HauteNaomiTrainV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageCompositionJson, type ImageCompositionJsonElementsItem, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4FastV1Input, Imagen4FastV1InputAspectRatio, type Imagen4FastV1Request, type Imagen4FastV1RequestMetadata, type Imagen4FastV1Response, type Imagen4FastV1ResponseInput, Imagen4FastV1ResponseKind, type Imagen4FastV1ResponseMetadata, Imagen4FastV1ResponseStatus, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4StandardV1Input, Imagen4StandardV1InputAspectRatio, type Imagen4StandardV1Request, type Imagen4StandardV1RequestMetadata, type Imagen4StandardV1Response, type Imagen4StandardV1ResponseInput, Imagen4StandardV1ResponseKind, type Imagen4StandardV1ResponseMetadata, Imagen4StandardV1ResponseStatus, type Imagen4UltraV1Input, Imagen4UltraV1InputAspectRatio, type Imagen4UltraV1Request, type Imagen4UltraV1RequestMetadata, type Imagen4UltraV1Response, type Imagen4UltraV1ResponseInput, Imagen4UltraV1ResponseKind, type Imagen4UltraV1ResponseMetadata, Imagen4UltraV1ResponseStatus, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagesDownscaleV1Input, type ImagesDownscaleV1Request, type ImagesDownscaleV1RequestMetadata, type ImagesDownscaleV1Response, type ImagesDownscaleV1ResponseInput, ImagesDownscaleV1ResponseKind, type ImagesDownscaleV1ResponseMetadata, ImagesDownscaleV1ResponseStatus, type ImagesRenameV1Input, type ImagesRenameV1Request, type ImagesRenameV1RequestMetadata, type ImagesRenameV1Response, type ImagesRenameV1ResponseInput, ImagesRenameV1ResponseKind, type ImagesRenameV1ResponseMetadata, ImagesRenameV1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type JsonToImageV1Input, type JsonToImageV1Request, type JsonToImageV1RequestMetadata, type JsonToImageV1Response, type JsonToImageV1ResponseInput, JsonToImageV1ResponseKind, type JsonToImageV1ResponseMetadata, JsonToImageV1ResponseStatus, type JsonToVideoV1Input, type JsonToVideoV1Request, type JsonToVideoV1RequestMetadata, type JsonToVideoV1Response, type JsonToVideoV1ResponseInput, JsonToVideoV1ResponseKind, type JsonToVideoV1ResponseMetadata, JsonToVideoV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type KlingKolorsVtonV1Input, type KlingKolorsVtonV1Request, type KlingKolorsVtonV1RequestMetadata, type KlingKolorsVtonV1Response, type KlingKolorsVtonV1ResponseInput, KlingKolorsVtonV1ResponseKind, type KlingKolorsVtonV1ResponseMetadata, KlingKolorsVtonV1ResponseStatus, type KlingVideo25ProImageToVideoV1Input, KlingVideo25ProImageToVideoV1InputDuration, type KlingVideo25ProImageToVideoV1Request, type KlingVideo25ProImageToVideoV1RequestMetadata, type KlingVideo25ProImageToVideoV1Response, type KlingVideo25ProImageToVideoV1ResponseInput, KlingVideo25ProImageToVideoV1ResponseKind, type KlingVideo25ProImageToVideoV1ResponseMetadata, KlingVideo25ProImageToVideoV1ResponseStatus, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListSharedResourcesResponseDto, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, LoraControllerGetLorasV1ModelType, type LoraControllerGetLorasV1Params, type LoraDto, LoraDtoModelType, LoraDtoStatus, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteTrainInputDto, type NaomiHauteTrainOutputDto, NaomiHauteTrainOutputDtoKind, type NaomiHauteTrainResultDto, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NaomiPrepareDatasetInputDto, type NaomiPrepareDatasetOutputDto, NaomiPrepareDatasetOutputDtoKind, type NaomiPrepareDatasetResultDto, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OnRequestError, type OnRequestErrorResult, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputNumber, OperationOutputNumberKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, type OperationStatusDto, type OperationStatusDtoOperation, OperationStatusDtoStatus, type OperationsControllerGetOperationStatusV1200, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelineStatusDto, PipelineStatusDtoStatus, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, type PipelinesControllerGetPipelineStatusV1200, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, PricingControllerListPricingV1OrderBy, type PricingControllerListPricingV1Params, PricingControllerListPricingV1Strategy, type PublicUserProfileDto, type PublicWorkflowAccessDto, type PublicWorkflowDto, type PublicWorkflowDtoData, type PublicWorkflowDtoInputSchema, type PublicWorkflowDtoMetadata, type PublicWorkflowDtoOutputSchema, type PublicWorkflowDtoPipelineTemplate, type PublicWorkflowSummaryDto, type PublicWorkflowSummaryDtoInputSchema, type PublicWorkflowSummaryDtoMetadata, type PublicWorkflowSummaryDtoOutputSchema, type PublishWorkflowVersionParamsDto, type PublishWorkflowVersionParamsDtoExampleOutput, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type RequestContextInfo, type RequestErrorInfo, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type ResponseInfo, type ReveRemixV1Input, ReveRemixV1InputAspectRatio, ReveRemixV1InputVersion, type ReveRemixV1Request, type ReveRemixV1RequestMetadata, type ReveRemixV1Response, type ReveRemixV1ResponseInput, ReveRemixV1ResponseKind, type ReveRemixV1ResponseMetadata, ReveRemixV1ResponseStatus, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunPublicWorkflowResponseDto, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SeedV1Input, type SeedV1InputSeed, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, type SeedanceV1FastV1Request, type SeedanceV1FastV1RequestMetadata, type SeedanceV1FastV1Response, type SeedanceV1FastV1ResponseInput, SeedanceV1FastV1ResponseKind, type SeedanceV1FastV1ResponseMetadata, SeedanceV1FastV1ResponseStatus, type SeedanceV1Input, SeedanceV1InputResolution, type SeedanceV1LightV1Request, type SeedanceV1LightV1RequestMetadata, type SeedanceV1LightV1Response, type SeedanceV1LightV1ResponseInput, SeedanceV1LightV1ResponseKind, type SeedanceV1LightV1ResponseMetadata, SeedanceV1LightV1ResponseStatus, type SeedanceV1ProV1Request, type SeedanceV1ProV1RequestMetadata, type SeedanceV1ProV1Response, type SeedanceV1ProV1ResponseInput, SeedanceV1ProV1ResponseKind, type SeedanceV1ProV1ResponseMetadata, SeedanceV1ProV1ResponseStatus, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type Seedream45EditV1Input, Seedream45EditV1InputHeight, Seedream45EditV1InputOptimizePromptOptions, Seedream45EditV1InputWidth, type Seedream45EditV1Request, type Seedream45EditV1RequestMetadata, type Seedream45EditV1Response, type Seedream45EditV1ResponseInput, Seedream45EditV1ResponseKind, type Seedream45EditV1ResponseMetadata, Seedream45EditV1ResponseStatus, type Seedream45T2IV1Input, Seedream45T2IV1InputHeight, Seedream45T2IV1InputWidth, type Seedream45T2iV1Request, type Seedream45T2iV1RequestMetadata, type Seedream45T2iV1Response, type Seedream45T2iV1ResponseInput, Seedream45T2iV1ResponseKind, type Seedream45T2iV1ResponseMetadata, Seedream45T2iV1ResponseStatus, type Seedream4EditV1Input, Seedream4EditV1InputOptimizePromptOptions, type Seedream4EditV1Request, type Seedream4EditV1RequestMetadata, type Seedream4EditV1Response, type Seedream4EditV1ResponseInput, Seedream4EditV1ResponseKind, type Seedream4EditV1ResponseMetadata, Seedream4EditV1ResponseStatus, type Seedream4T2IV1Input, type Seedream4T2iV1Request, type Seedream4T2iV1RequestMetadata, type Seedream4T2iV1Response, type Seedream4T2iV1ResponseInput, Seedream4T2iV1ResponseKind, type Seedream4T2iV1ResponseMetadata, Seedream4T2iV1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type ShareWithEveryoneControllerParamsDto, ShareWithEveryoneControllerParamsDtoAccessItem, type SharedAccessEntryDto, SharedAccessEntryDtoRelationsItem, type SharedAccessResponseDto, SharedAccessResponseDtoPublicAccessItem, type SharedResourceDto, SharedResourceDtoType, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsLengthV1Input, type StringsLengthV1Request, type StringsLengthV1RequestMetadata, type StringsLengthV1Response, type StringsLengthV1ResponseInput, StringsLengthV1ResponseKind, type StringsLengthV1ResponseMetadata, StringsLengthV1ResponseStatus, type StringsParseJsonV1Input, type StringsParseJsonV1Request, type StringsParseJsonV1RequestMetadata, type StringsParseJsonV1Response, type StringsParseJsonV1ResponseInput, StringsParseJsonV1ResponseKind, type StringsParseJsonV1ResponseMetadata, StringsParseJsonV1ResponseStatus, type StringsSliceV1Input, type StringsSliceV1Request, type StringsSliceV1RequestMetadata, type StringsSliceV1Response, type StringsSliceV1ResponseInput, StringsSliceV1ResponseKind, type StringsSliceV1ResponseMetadata, StringsSliceV1ResponseStatus, type StringsSwitchV1Input, type StringsSwitchV1Request, type StringsSwitchV1RequestMetadata, type StringsSwitchV1Response, type StringsSwitchV1ResponseInput, StringsSwitchV1ResponseKind, type StringsSwitchV1ResponseMetadata, StringsSwitchV1ResponseStatus, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateUserProfileDto, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpdateWorkflowParamsDtoPipelineTemplate, type UpdateWorkflowVersionParamsDto, type UpdateWorkflowVersionParamsDtoExampleOutput, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type UserProfileDto, type VariableDto, type VariableDtoValue, type Veo31FastV1Request, type Veo31FastV1RequestMetadata, type Veo31FastV1Response, type Veo31FastV1ResponseInput, Veo31FastV1ResponseKind, type Veo31FastV1ResponseMetadata, Veo31FastV1ResponseStatus, type Veo31Input, Veo31InputAspectRatio, Veo31InputDuration, Veo31InputResolution, type Veo31V1Request, type Veo31V1RequestMetadata, type Veo31V1Response, type Veo31V1ResponseInput, Veo31V1ResponseKind, type Veo31V1ResponseMetadata, Veo31V1ResponseStatus, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputAspectRatio, Veo3V1InputDuration, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoCompositionJson, type VideoCompositionJsonElementsItem, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, type WorkflowDtoPipelineTemplate, type WorkflowStatisticsDto, type WorkflowVersionDto, type WorkflowVersionDtoData, type WorkflowVersionDtoExampleOutput, type WorkflowVersionDtoMetadata, type WorkflowVersionDtoPipelineTemplate, type WorkflowVersionSummaryDto, type WorkflowVersionSummaryDtoExampleOutput, type WorkflowVersionSummaryDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WorkflowsRunV1Input, type WorkflowsRunV1InputInput, type WorkflowsRunV1InputMetadata, type WorkflowsRunV1Output, type WorkflowsRunV1OutputOutput, type WorkflowsRunV1Request, type WorkflowsRunV1RequestMetadata, type WorkflowsRunV1Response, type WorkflowsRunV1ResponseInput, WorkflowsRunV1ResponseKind, type WorkflowsRunV1ResponseMetadata, WorkflowsRunV1ResponseStatus, type WsEventEntity, type WsEventMap, type Yolo11xPoseV1Input, type Yolo11xPoseV1Output, Yolo11xPoseV1OutputKind, type Yolo11xPoseV1Request, type Yolo11xPoseV1RequestMetadata, type Yolo11xPoseV1Response, type Yolo11xPoseV1ResponseInput, Yolo11xPoseV1ResponseKind, type Yolo11xPoseV1ResponseMetadata, Yolo11xPoseV1ResponseStatus, createDirectorySDK, createSDK, createTokenSigner };