@hautechai/sdk 0.3.43 → 0.3.45

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.
@@ -1405,6 +1405,12 @@ export interface EditFluxKontextDevV1Input {
1405
1405
  * @memberof EditFluxKontextDevV1Input
1406
1406
  */
1407
1407
  'guidance'?: number;
1408
+ /**
1409
+ *
1410
+ * @type {number}
1411
+ * @memberof EditFluxKontextDevV1Input
1412
+ */
1413
+ 'seed'?: number;
1408
1414
  }
1409
1415
  /**
1410
1416
  *
@@ -3860,25 +3866,25 @@ export interface PipelineDto {
3860
3866
  */
3861
3867
  'kind': PipelineDtoKindEnum;
3862
3868
  /**
3863
- * State of the pipeline tasks
3864
- * @type {{ [key: string]: PipelineDtoStateValue; }}
3869
+ * Total credits of all tasks in the pipeline as a decimal string
3870
+ * @type {string}
3865
3871
  * @memberof PipelineDto
3866
3872
  */
3867
- 'state': {
3868
- [key: string]: PipelineDtoStateValue;
3869
- };
3873
+ 'totalCredits': string;
3870
3874
  /**
3871
- * Total price of all tasks in the pipeline as a decimal string
3875
+ * Consumed credits of all successfully completed tasks in the pipeline as a decimal string
3872
3876
  * @type {string}
3873
3877
  * @memberof PipelineDto
3874
3878
  */
3875
3879
  'consumedCredits': string;
3876
3880
  /**
3877
- * Total price of all successfully completed tasks in the pipeline as a decimal string
3878
- * @type {string}
3881
+ * State of the pipeline tasks
3882
+ * @type {{ [key: string]: PipelineDtoStateValue; }}
3879
3883
  * @memberof PipelineDto
3880
3884
  */
3881
- 'currentExecutionPrice': string;
3885
+ 'state': {
3886
+ [key: string]: PipelineDtoStateValue;
3887
+ };
3882
3888
  /**
3883
3889
  *
3884
3890
  * @type {object}
@@ -3975,6 +3981,18 @@ export interface PipelinePreviewDto {
3975
3981
  * @memberof PipelinePreviewDto
3976
3982
  */
3977
3983
  'kind': PipelinePreviewDtoKindEnum;
3984
+ /**
3985
+ * Total credits of all tasks in the pipeline as a decimal string
3986
+ * @type {string}
3987
+ * @memberof PipelinePreviewDto
3988
+ */
3989
+ 'totalCredits': string;
3990
+ /**
3991
+ * Consumed credits of all successfully completed tasks in the pipeline as a decimal string
3992
+ * @type {string}
3993
+ * @memberof PipelinePreviewDto
3994
+ */
3995
+ 'consumedCredits': string;
3978
3996
  /**
3979
3997
  *
3980
3998
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hautechai/sdk",
3
- "version": "0.3.43",
3
+ "version": "0.3.45",
4
4
  "license": "MIT",
5
5
  "keywords": [],
6
6
  "repository": {