@hautechai/sdk 2.35.2 → 2.36.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;
@@ -11200,8 +11296,10 @@ interface PipelineMapV1Response {
11200
11296
  input: PipelineMapV1ResponseInput;
11201
11297
  status: PipelineMapV1ResponseStatus;
11202
11298
  type: string;
11203
- price?: string;
11204
- estimatedPrice?: string;
11299
+ /** @nullable */
11300
+ price?: string | null;
11301
+ /** @nullable */
11302
+ estimatedPrice?: string | null;
11205
11303
  errorMessage?: string;
11206
11304
  errorCode?: string;
11207
11305
  id: string;
@@ -11398,8 +11496,10 @@ interface PoseEstimationV1Response {
11398
11496
  input: PoseEstimationV1ResponseInput;
11399
11497
  status: PoseEstimationV1ResponseStatus;
11400
11498
  type: string;
11401
- price?: string;
11402
- estimatedPrice?: string;
11499
+ /** @nullable */
11500
+ price?: string | null;
11501
+ /** @nullable */
11502
+ estimatedPrice?: string | null;
11403
11503
  errorMessage?: string;
11404
11504
  errorCode?: string;
11405
11505
  id: string;
@@ -11851,8 +11951,10 @@ interface ResizeV1Response {
11851
11951
  input: ResizeV1ResponseInput;
11852
11952
  status: ResizeV1ResponseStatus;
11853
11953
  type: string;
11854
- price?: string;
11855
- estimatedPrice?: string;
11954
+ /** @nullable */
11955
+ price?: string | null;
11956
+ /** @nullable */
11957
+ estimatedPrice?: string | null;
11856
11958
  errorMessage?: string;
11857
11959
  errorCode?: string;
11858
11960
  id: string;
@@ -11989,8 +12091,10 @@ interface ReveRemixV1Response {
11989
12091
  input: ReveRemixV1ResponseInput;
11990
12092
  status: ReveRemixV1ResponseStatus;
11991
12093
  type: string;
11992
- price?: string;
11993
- estimatedPrice?: string;
12094
+ /** @nullable */
12095
+ price?: string | null;
12096
+ /** @nullable */
12097
+ estimatedPrice?: string | null;
11994
12098
  errorMessage?: string;
11995
12099
  errorCode?: string;
11996
12100
  id: string;
@@ -12210,8 +12314,10 @@ interface SeedV1Response {
12210
12314
  input: SeedV1ResponseInput;
12211
12315
  status: SeedV1ResponseStatus;
12212
12316
  type: string;
12213
- price?: string;
12214
- estimatedPrice?: string;
12317
+ /** @nullable */
12318
+ price?: string | null;
12319
+ /** @nullable */
12320
+ estimatedPrice?: string | null;
12215
12321
  errorMessage?: string;
12216
12322
  errorCode?: string;
12217
12323
  id: string;
@@ -12339,8 +12445,10 @@ interface SeedanceV1FastV1Response {
12339
12445
  input: SeedanceV1FastV1ResponseInput;
12340
12446
  status: SeedanceV1FastV1ResponseStatus;
12341
12447
  type: string;
12342
- price?: string;
12343
- estimatedPrice?: string;
12448
+ /** @nullable */
12449
+ price?: string | null;
12450
+ /** @nullable */
12451
+ estimatedPrice?: string | null;
12344
12452
  errorMessage?: string;
12345
12453
  errorCode?: string;
12346
12454
  id: string;
@@ -12429,8 +12537,10 @@ interface SeedanceV1LightV1Response {
12429
12537
  input: SeedanceV1LightV1ResponseInput;
12430
12538
  status: SeedanceV1LightV1ResponseStatus;
12431
12539
  type: string;
12432
- price?: string;
12433
- estimatedPrice?: string;
12540
+ /** @nullable */
12541
+ price?: string | null;
12542
+ /** @nullable */
12543
+ estimatedPrice?: string | null;
12434
12544
  errorMessage?: string;
12435
12545
  errorCode?: string;
12436
12546
  id: string;
@@ -12519,8 +12629,10 @@ interface SeedanceV1ProV1Response {
12519
12629
  input: SeedanceV1ProV1ResponseInput;
12520
12630
  status: SeedanceV1ProV1ResponseStatus;
12521
12631
  type: string;
12522
- price?: string;
12523
- estimatedPrice?: string;
12632
+ /** @nullable */
12633
+ price?: string | null;
12634
+ /** @nullable */
12635
+ estimatedPrice?: string | null;
12524
12636
  errorMessage?: string;
12525
12637
  errorCode?: string;
12526
12638
  id: string;
@@ -12670,8 +12782,10 @@ interface Seedream3V1Response {
12670
12782
  input: Seedream3V1ResponseInput;
12671
12783
  status: Seedream3V1ResponseStatus;
12672
12784
  type: string;
12673
- price?: string;
12674
- estimatedPrice?: string;
12785
+ /** @nullable */
12786
+ price?: string | null;
12787
+ /** @nullable */
12788
+ estimatedPrice?: string | null;
12675
12789
  errorMessage?: string;
12676
12790
  errorCode?: string;
12677
12791
  id: string;
@@ -12838,8 +12952,10 @@ interface Seedream45EditV1Response {
12838
12952
  input: Seedream45EditV1ResponseInput;
12839
12953
  status: Seedream45EditV1ResponseStatus;
12840
12954
  type: string;
12841
- price?: string;
12842
- estimatedPrice?: string;
12955
+ /** @nullable */
12956
+ price?: string | null;
12957
+ /** @nullable */
12958
+ estimatedPrice?: string | null;
12843
12959
  errorMessage?: string;
12844
12960
  errorCode?: string;
12845
12961
  id: string;
@@ -12983,8 +13099,10 @@ interface Seedream45T2iV1Response {
12983
13099
  input: Seedream45T2iV1ResponseInput;
12984
13100
  status: Seedream45T2iV1ResponseStatus;
12985
13101
  type: string;
12986
- price?: string;
12987
- estimatedPrice?: string;
13102
+ /** @nullable */
13103
+ price?: string | null;
13104
+ /** @nullable */
13105
+ estimatedPrice?: string | null;
12988
13106
  errorMessage?: string;
12989
13107
  errorCode?: string;
12990
13108
  id: string;
@@ -13121,8 +13239,10 @@ interface Seedream4EditV1Response {
13121
13239
  input: Seedream4EditV1ResponseInput;
13122
13240
  status: Seedream4EditV1ResponseStatus;
13123
13241
  type: string;
13124
- price?: string;
13125
- estimatedPrice?: string;
13242
+ /** @nullable */
13243
+ price?: string | null;
13244
+ /** @nullable */
13245
+ estimatedPrice?: string | null;
13126
13246
  errorMessage?: string;
13127
13247
  errorCode?: string;
13128
13248
  id: string;
@@ -13236,8 +13356,10 @@ interface Seedream4T2iV1Response {
13236
13356
  input: Seedream4T2iV1ResponseInput;
13237
13357
  status: Seedream4T2iV1ResponseStatus;
13238
13358
  type: string;
13239
- price?: string;
13240
- estimatedPrice?: string;
13359
+ /** @nullable */
13360
+ price?: string | null;
13361
+ /** @nullable */
13362
+ estimatedPrice?: string | null;
13241
13363
  errorMessage?: string;
13242
13364
  errorCode?: string;
13243
13365
  id: string;
@@ -13336,8 +13458,10 @@ interface SegmentAnythingEmbeddingsV1Response {
13336
13458
  input: SegmentAnythingEmbeddingsV1ResponseInput;
13337
13459
  status: SegmentAnythingEmbeddingsV1ResponseStatus;
13338
13460
  type: string;
13339
- price?: string;
13340
- estimatedPrice?: string;
13461
+ /** @nullable */
13462
+ price?: string | null;
13463
+ /** @nullable */
13464
+ estimatedPrice?: string | null;
13341
13465
  errorMessage?: string;
13342
13466
  errorCode?: string;
13343
13467
  id: string;
@@ -13443,8 +13567,10 @@ interface SegmentAnythingMaskV1Response {
13443
13567
  input: SegmentAnythingMaskV1ResponseInput;
13444
13568
  status: SegmentAnythingMaskV1ResponseStatus;
13445
13569
  type: string;
13446
- price?: string;
13447
- estimatedPrice?: string;
13570
+ /** @nullable */
13571
+ price?: string | null;
13572
+ /** @nullable */
13573
+ estimatedPrice?: string | null;
13448
13574
  errorMessage?: string;
13449
13575
  errorCode?: string;
13450
13576
  id: string;
@@ -13821,8 +13947,10 @@ interface StringsLengthV1Response {
13821
13947
  input: StringsLengthV1ResponseInput;
13822
13948
  status: StringsLengthV1ResponseStatus;
13823
13949
  type: string;
13824
- price?: string;
13825
- estimatedPrice?: string;
13950
+ /** @nullable */
13951
+ price?: string | null;
13952
+ /** @nullable */
13953
+ estimatedPrice?: string | null;
13826
13954
  errorMessage?: string;
13827
13955
  errorCode?: string;
13828
13956
  id: string;
@@ -13922,8 +14050,10 @@ interface StringsParseJsonV1Response {
13922
14050
  input: StringsParseJsonV1ResponseInput;
13923
14051
  status: StringsParseJsonV1ResponseStatus;
13924
14052
  type: string;
13925
- price?: string;
13926
- estimatedPrice?: string;
14053
+ /** @nullable */
14054
+ price?: string | null;
14055
+ /** @nullable */
14056
+ estimatedPrice?: string | null;
13927
14057
  errorMessage?: string;
13928
14058
  errorCode?: string;
13929
14059
  id: string;
@@ -14027,8 +14157,10 @@ interface StringsSliceV1Response {
14027
14157
  input: StringsSliceV1ResponseInput;
14028
14158
  status: StringsSliceV1ResponseStatus;
14029
14159
  type: string;
14030
- price?: string;
14031
- estimatedPrice?: string;
14160
+ /** @nullable */
14161
+ price?: string | null;
14162
+ /** @nullable */
14163
+ estimatedPrice?: string | null;
14032
14164
  errorMessage?: string;
14033
14165
  errorCode?: string;
14034
14166
  id: string;
@@ -14133,8 +14265,10 @@ interface StringsSwitchV1Response {
14133
14265
  input: StringsSwitchV1ResponseInput;
14134
14266
  status: StringsSwitchV1ResponseStatus;
14135
14267
  type: string;
14136
- price?: string;
14137
- estimatedPrice?: string;
14268
+ /** @nullable */
14269
+ price?: string | null;
14270
+ /** @nullable */
14271
+ estimatedPrice?: string | null;
14138
14272
  errorMessage?: string;
14139
14273
  errorCode?: string;
14140
14274
  id: string;
@@ -14259,8 +14393,10 @@ interface StringsTemplateV1Response {
14259
14393
  input: StringsTemplateV1ResponseInput;
14260
14394
  status: StringsTemplateV1ResponseStatus;
14261
14395
  type: string;
14262
- price?: string;
14263
- estimatedPrice?: string;
14396
+ /** @nullable */
14397
+ price?: string | null;
14398
+ /** @nullable */
14399
+ estimatedPrice?: string | null;
14264
14400
  errorMessage?: string;
14265
14401
  errorCode?: string;
14266
14402
  id: string;
@@ -14416,8 +14552,10 @@ interface TopazUpscaleV1Response {
14416
14552
  input: TopazUpscaleV1ResponseInput;
14417
14553
  status: TopazUpscaleV1ResponseStatus;
14418
14554
  type: string;
14419
- price?: string;
14420
- estimatedPrice?: string;
14555
+ /** @nullable */
14556
+ price?: string | null;
14557
+ /** @nullable */
14558
+ estimatedPrice?: string | null;
14421
14559
  errorMessage?: string;
14422
14560
  errorCode?: string;
14423
14561
  id: string;
@@ -14550,8 +14688,10 @@ interface TranslateV1Response {
14550
14688
  input: TranslateV1ResponseInput;
14551
14689
  status: TranslateV1ResponseStatus;
14552
14690
  type: string;
14553
- price?: string;
14554
- estimatedPrice?: string;
14691
+ /** @nullable */
14692
+ price?: string | null;
14693
+ /** @nullable */
14694
+ estimatedPrice?: string | null;
14555
14695
  errorMessage?: string;
14556
14696
  errorCode?: string;
14557
14697
  id: string;
@@ -14824,8 +14964,10 @@ interface UpscaleV1Response {
14824
14964
  input: UpscaleV1ResponseInput;
14825
14965
  status: UpscaleV1ResponseStatus;
14826
14966
  type: string;
14827
- price?: string;
14828
- estimatedPrice?: string;
14967
+ /** @nullable */
14968
+ price?: string | null;
14969
+ /** @nullable */
14970
+ estimatedPrice?: string | null;
14829
14971
  errorMessage?: string;
14830
14972
  errorCode?: string;
14831
14973
  id: string;
@@ -14993,8 +15135,10 @@ interface Veo31FastV1Response {
14993
15135
  input: Veo31FastV1ResponseInput;
14994
15136
  status: Veo31FastV1ResponseStatus;
14995
15137
  type: string;
14996
- price?: string;
14997
- estimatedPrice?: string;
15138
+ /** @nullable */
15139
+ price?: string | null;
15140
+ /** @nullable */
15141
+ estimatedPrice?: string | null;
14998
15142
  errorMessage?: string;
14999
15143
  errorCode?: string;
15000
15144
  id: string;
@@ -15083,8 +15227,10 @@ interface Veo31V1Response {
15083
15227
  input: Veo31V1ResponseInput;
15084
15228
  status: Veo31V1ResponseStatus;
15085
15229
  type: string;
15086
- price?: string;
15087
- estimatedPrice?: string;
15230
+ /** @nullable */
15231
+ price?: string | null;
15232
+ /** @nullable */
15233
+ estimatedPrice?: string | null;
15088
15234
  errorMessage?: string;
15089
15235
  errorCode?: string;
15090
15236
  id: string;
@@ -15245,8 +15391,10 @@ interface Veo3FastV1Response {
15245
15391
  input: Veo3FastV1ResponseInput;
15246
15392
  status: Veo3FastV1ResponseStatus;
15247
15393
  type: string;
15248
- price?: string;
15249
- estimatedPrice?: string;
15394
+ /** @nullable */
15395
+ price?: string | null;
15396
+ /** @nullable */
15397
+ estimatedPrice?: string | null;
15250
15398
  errorMessage?: string;
15251
15399
  errorCode?: string;
15252
15400
  id: string;
@@ -15335,8 +15483,10 @@ interface Veo3V1Response {
15335
15483
  input: Veo3V1ResponseInput;
15336
15484
  status: Veo3V1ResponseStatus;
15337
15485
  type: string;
15338
- price?: string;
15339
- estimatedPrice?: string;
15486
+ /** @nullable */
15487
+ price?: string | null;
15488
+ /** @nullable */
15489
+ estimatedPrice?: string | null;
15340
15490
  errorMessage?: string;
15341
15491
  errorCode?: string;
15342
15492
  id: string;
@@ -15446,8 +15596,10 @@ interface VtonGiseleV1Response {
15446
15596
  input: VtonGiseleV1ResponseInput;
15447
15597
  status: VtonGiseleV1ResponseStatus;
15448
15598
  type: string;
15449
- price?: string;
15450
- estimatedPrice?: string;
15599
+ /** @nullable */
15600
+ price?: string | null;
15601
+ /** @nullable */
15602
+ estimatedPrice?: string | null;
15451
15603
  errorMessage?: string;
15452
15604
  errorCode?: string;
15453
15605
  id: string;
@@ -15773,8 +15925,10 @@ interface WorkflowsRunV1Response {
15773
15925
  input: WorkflowsRunV1ResponseInput;
15774
15926
  status: WorkflowsRunV1ResponseStatus;
15775
15927
  type: string;
15776
- price?: string;
15777
- estimatedPrice?: string;
15928
+ /** @nullable */
15929
+ price?: string | null;
15930
+ /** @nullable */
15931
+ estimatedPrice?: string | null;
15778
15932
  errorMessage?: string;
15779
15933
  errorCode?: string;
15780
15934
  id: string;
@@ -15897,8 +16051,10 @@ interface Yolo11xPoseV1Response {
15897
16051
  input: Yolo11xPoseV1ResponseInput;
15898
16052
  status: Yolo11xPoseV1ResponseStatus;
15899
16053
  type: string;
15900
- price?: string;
15901
- estimatedPrice?: string;
16054
+ /** @nullable */
16055
+ price?: string | null;
16056
+ /** @nullable */
16057
+ estimatedPrice?: string | null;
15902
16058
  errorMessage?: string;
15903
16059
  errorCode?: string;
15904
16060
  id: string;