@hautechai/sdk 0.3.44 → 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.
- package/dist/autogenerated/api.d.ts +20 -8
- package/package.json +1 -1
|
@@ -3865,14 +3865,6 @@ export interface PipelineDto {
|
|
|
3865
3865
|
* @memberof PipelineDto
|
|
3866
3866
|
*/
|
|
3867
3867
|
'kind': PipelineDtoKindEnum;
|
|
3868
|
-
/**
|
|
3869
|
-
* State of the pipeline tasks
|
|
3870
|
-
* @type {{ [key: string]: PipelineDtoStateValue; }}
|
|
3871
|
-
* @memberof PipelineDto
|
|
3872
|
-
*/
|
|
3873
|
-
'state': {
|
|
3874
|
-
[key: string]: PipelineDtoStateValue;
|
|
3875
|
-
};
|
|
3876
3868
|
/**
|
|
3877
3869
|
* Total credits of all tasks in the pipeline as a decimal string
|
|
3878
3870
|
* @type {string}
|
|
@@ -3885,6 +3877,14 @@ export interface PipelineDto {
|
|
|
3885
3877
|
* @memberof PipelineDto
|
|
3886
3878
|
*/
|
|
3887
3879
|
'consumedCredits': string;
|
|
3880
|
+
/**
|
|
3881
|
+
* State of the pipeline tasks
|
|
3882
|
+
* @type {{ [key: string]: PipelineDtoStateValue; }}
|
|
3883
|
+
* @memberof PipelineDto
|
|
3884
|
+
*/
|
|
3885
|
+
'state': {
|
|
3886
|
+
[key: string]: PipelineDtoStateValue;
|
|
3887
|
+
};
|
|
3888
3888
|
/**
|
|
3889
3889
|
*
|
|
3890
3890
|
* @type {object}
|
|
@@ -3981,6 +3981,18 @@ export interface PipelinePreviewDto {
|
|
|
3981
3981
|
* @memberof PipelinePreviewDto
|
|
3982
3982
|
*/
|
|
3983
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;
|
|
3984
3996
|
/**
|
|
3985
3997
|
*
|
|
3986
3998
|
* @type {string}
|