@hautechai/sdk 1.1.1 → 1.3.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/CHANGELOG.md +3 -3
- package/dist/autogenerated/api.d.ts +494 -0
- package/dist/autogenerated/api.js +468 -6
- package/dist/autogenerated/permissions.d.ts +6 -0
- package/dist/sdk/index.d.ts +26 -0
- package/dist/sdk/operations/index.d.ts +7 -1
- package/dist/sdk/operations/index.js +3 -0
- package/dist/sdk/pipelines/index.d.ts +20 -0
- package/dist/sdk/pipelines/index.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
# [1.3.0](https://github.com/HautechAI/sdk/compare/@hautechai/sdk@1.2.0...@hautechai/sdk@1.3.0) (2025-07-23)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* add onecompiler ([ecb97b1](https://github.com/HautechAI/sdk/commit/ecb97b1e9b908ef53c047b78c5f6721ba6d5573d))
|
|
@@ -707,6 +707,7 @@ export declare const CollectionEntityKindEnum: {
|
|
|
707
707
|
readonly Pose: "pose";
|
|
708
708
|
readonly Storage: "storage";
|
|
709
709
|
readonly Pipeline: "pipeline";
|
|
710
|
+
readonly Workflow: "workflow";
|
|
710
711
|
};
|
|
711
712
|
export type CollectionEntityKindEnum = typeof CollectionEntityKindEnum[keyof typeof CollectionEntityKindEnum];
|
|
712
713
|
/**
|
|
@@ -1123,6 +1124,31 @@ export interface CreateStorageRecordParamsDto {
|
|
|
1123
1124
|
*/
|
|
1124
1125
|
'value': object;
|
|
1125
1126
|
}
|
|
1127
|
+
/**
|
|
1128
|
+
*
|
|
1129
|
+
* @export
|
|
1130
|
+
* @interface CreateWorkflowParamsDto
|
|
1131
|
+
*/
|
|
1132
|
+
export interface CreateWorkflowParamsDto {
|
|
1133
|
+
/**
|
|
1134
|
+
*
|
|
1135
|
+
* @type {object}
|
|
1136
|
+
* @memberof CreateWorkflowParamsDto
|
|
1137
|
+
*/
|
|
1138
|
+
'data': object;
|
|
1139
|
+
/**
|
|
1140
|
+
*
|
|
1141
|
+
* @type {string}
|
|
1142
|
+
* @memberof CreateWorkflowParamsDto
|
|
1143
|
+
*/
|
|
1144
|
+
'version': string;
|
|
1145
|
+
/**
|
|
1146
|
+
*
|
|
1147
|
+
* @type {object}
|
|
1148
|
+
* @memberof CreateWorkflowParamsDto
|
|
1149
|
+
*/
|
|
1150
|
+
'metadata'?: object;
|
|
1151
|
+
}
|
|
1126
1152
|
/**
|
|
1127
1153
|
*
|
|
1128
1154
|
* @export
|
|
@@ -2912,6 +2938,7 @@ export declare const ImageEntityKindEnum: {
|
|
|
2912
2938
|
readonly Pose: "pose";
|
|
2913
2939
|
readonly Storage: "storage";
|
|
2914
2940
|
readonly Pipeline: "pipeline";
|
|
2941
|
+
readonly Workflow: "workflow";
|
|
2915
2942
|
};
|
|
2916
2943
|
export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
|
|
2917
2944
|
/**
|
|
@@ -3572,6 +3599,7 @@ export declare const ListCollectionItemsParamsDtoKindEnum: {
|
|
|
3572
3599
|
readonly Pose: "pose";
|
|
3573
3600
|
readonly Storage: "storage";
|
|
3574
3601
|
readonly Pipeline: "pipeline";
|
|
3602
|
+
readonly Workflow: "workflow";
|
|
3575
3603
|
};
|
|
3576
3604
|
export type ListCollectionItemsParamsDtoKindEnum = typeof ListCollectionItemsParamsDtoKindEnum[keyof typeof ListCollectionItemsParamsDtoKindEnum];
|
|
3577
3605
|
/**
|
|
@@ -3808,6 +3836,56 @@ export declare const ListStacksParamsDtoOrderByEnum: {
|
|
|
3808
3836
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
3809
3837
|
};
|
|
3810
3838
|
export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
3839
|
+
/**
|
|
3840
|
+
*
|
|
3841
|
+
* @export
|
|
3842
|
+
* @interface ListWorkflowsDto
|
|
3843
|
+
*/
|
|
3844
|
+
export interface ListWorkflowsDto {
|
|
3845
|
+
/**
|
|
3846
|
+
*
|
|
3847
|
+
* @type {Array<WorkflowDto>}
|
|
3848
|
+
* @memberof ListWorkflowsDto
|
|
3849
|
+
*/
|
|
3850
|
+
'data': Array<WorkflowDto>;
|
|
3851
|
+
/**
|
|
3852
|
+
*
|
|
3853
|
+
* @type {ListWorkflowsDtoPageInfo}
|
|
3854
|
+
* @memberof ListWorkflowsDto
|
|
3855
|
+
*/
|
|
3856
|
+
'pageInfo': ListWorkflowsDtoPageInfo;
|
|
3857
|
+
}
|
|
3858
|
+
/**
|
|
3859
|
+
*
|
|
3860
|
+
* @export
|
|
3861
|
+
* @interface ListWorkflowsDtoPageInfo
|
|
3862
|
+
*/
|
|
3863
|
+
export interface ListWorkflowsDtoPageInfo {
|
|
3864
|
+
/**
|
|
3865
|
+
*
|
|
3866
|
+
* @type {number}
|
|
3867
|
+
* @memberof ListWorkflowsDtoPageInfo
|
|
3868
|
+
*/
|
|
3869
|
+
'total': number;
|
|
3870
|
+
/**
|
|
3871
|
+
*
|
|
3872
|
+
* @type {number}
|
|
3873
|
+
* @memberof ListWorkflowsDtoPageInfo
|
|
3874
|
+
*/
|
|
3875
|
+
'limit': number;
|
|
3876
|
+
/**
|
|
3877
|
+
*
|
|
3878
|
+
* @type {number}
|
|
3879
|
+
* @memberof ListWorkflowsDtoPageInfo
|
|
3880
|
+
*/
|
|
3881
|
+
'offset': number;
|
|
3882
|
+
/**
|
|
3883
|
+
*
|
|
3884
|
+
* @type {boolean}
|
|
3885
|
+
* @memberof ListWorkflowsDtoPageInfo
|
|
3886
|
+
*/
|
|
3887
|
+
'hasMore': boolean;
|
|
3888
|
+
}
|
|
3811
3889
|
/**
|
|
3812
3890
|
*
|
|
3813
3891
|
* @export
|
|
@@ -4424,6 +4502,144 @@ export declare const ObjectDetectionV1ResponseStatusEnum: {
|
|
|
4424
4502
|
readonly Failed: "failed";
|
|
4425
4503
|
};
|
|
4426
4504
|
export type ObjectDetectionV1ResponseStatusEnum = typeof ObjectDetectionV1ResponseStatusEnum[keyof typeof ObjectDetectionV1ResponseStatusEnum];
|
|
4505
|
+
/**
|
|
4506
|
+
*
|
|
4507
|
+
* @export
|
|
4508
|
+
* @interface OneCompilerV1Input
|
|
4509
|
+
*/
|
|
4510
|
+
export interface OneCompilerV1Input {
|
|
4511
|
+
/**
|
|
4512
|
+
*
|
|
4513
|
+
* @type {string}
|
|
4514
|
+
* @memberof OneCompilerV1Input
|
|
4515
|
+
*/
|
|
4516
|
+
'code': string;
|
|
4517
|
+
/**
|
|
4518
|
+
*
|
|
4519
|
+
* @type {object}
|
|
4520
|
+
* @memberof OneCompilerV1Input
|
|
4521
|
+
*/
|
|
4522
|
+
'input'?: object;
|
|
4523
|
+
/**
|
|
4524
|
+
*
|
|
4525
|
+
* @type {string}
|
|
4526
|
+
* @memberof OneCompilerV1Input
|
|
4527
|
+
*/
|
|
4528
|
+
'language'?: OneCompilerV1InputLanguageEnum;
|
|
4529
|
+
/**
|
|
4530
|
+
*
|
|
4531
|
+
* @type {Array<SupportFile>}
|
|
4532
|
+
* @memberof OneCompilerV1Input
|
|
4533
|
+
*/
|
|
4534
|
+
'supportFiles'?: Array<SupportFile>;
|
|
4535
|
+
}
|
|
4536
|
+
export declare const OneCompilerV1InputLanguageEnum: {
|
|
4537
|
+
readonly Typescript: "typescript";
|
|
4538
|
+
readonly Python: "python";
|
|
4539
|
+
};
|
|
4540
|
+
export type OneCompilerV1InputLanguageEnum = typeof OneCompilerV1InputLanguageEnum[keyof typeof OneCompilerV1InputLanguageEnum];
|
|
4541
|
+
/**
|
|
4542
|
+
*
|
|
4543
|
+
* @export
|
|
4544
|
+
* @interface OnecompilerV1Request
|
|
4545
|
+
*/
|
|
4546
|
+
export interface OnecompilerV1Request {
|
|
4547
|
+
/**
|
|
4548
|
+
*
|
|
4549
|
+
* @type {OneCompilerV1Input}
|
|
4550
|
+
* @memberof OnecompilerV1Request
|
|
4551
|
+
*/
|
|
4552
|
+
'input': OneCompilerV1Input;
|
|
4553
|
+
/**
|
|
4554
|
+
*
|
|
4555
|
+
* @type {object}
|
|
4556
|
+
* @memberof OnecompilerV1Request
|
|
4557
|
+
*/
|
|
4558
|
+
'metadata'?: object;
|
|
4559
|
+
}
|
|
4560
|
+
/**
|
|
4561
|
+
*
|
|
4562
|
+
* @export
|
|
4563
|
+
* @interface OnecompilerV1Response
|
|
4564
|
+
*/
|
|
4565
|
+
export interface OnecompilerV1Response {
|
|
4566
|
+
/**
|
|
4567
|
+
*
|
|
4568
|
+
* @type {string}
|
|
4569
|
+
* @memberof OnecompilerV1Response
|
|
4570
|
+
*/
|
|
4571
|
+
'kind': OnecompilerV1ResponseKindEnum;
|
|
4572
|
+
/**
|
|
4573
|
+
*
|
|
4574
|
+
* @type {OperationOutputJSON}
|
|
4575
|
+
* @memberof OnecompilerV1Response
|
|
4576
|
+
*/
|
|
4577
|
+
'output': OperationOutputJSON;
|
|
4578
|
+
/**
|
|
4579
|
+
*
|
|
4580
|
+
* @type {object}
|
|
4581
|
+
* @memberof OnecompilerV1Response
|
|
4582
|
+
*/
|
|
4583
|
+
'input': object;
|
|
4584
|
+
/**
|
|
4585
|
+
*
|
|
4586
|
+
* @type {string}
|
|
4587
|
+
* @memberof OnecompilerV1Response
|
|
4588
|
+
*/
|
|
4589
|
+
'status': OnecompilerV1ResponseStatusEnum;
|
|
4590
|
+
/**
|
|
4591
|
+
*
|
|
4592
|
+
* @type {string}
|
|
4593
|
+
* @memberof OnecompilerV1Response
|
|
4594
|
+
*/
|
|
4595
|
+
'type': string;
|
|
4596
|
+
/**
|
|
4597
|
+
*
|
|
4598
|
+
* @type {string}
|
|
4599
|
+
* @memberof OnecompilerV1Response
|
|
4600
|
+
*/
|
|
4601
|
+
'price'?: string;
|
|
4602
|
+
/**
|
|
4603
|
+
*
|
|
4604
|
+
* @type {string}
|
|
4605
|
+
* @memberof OnecompilerV1Response
|
|
4606
|
+
*/
|
|
4607
|
+
'id': string;
|
|
4608
|
+
/**
|
|
4609
|
+
*
|
|
4610
|
+
* @type {string}
|
|
4611
|
+
* @memberof OnecompilerV1Response
|
|
4612
|
+
*/
|
|
4613
|
+
'creatorId': string;
|
|
4614
|
+
/**
|
|
4615
|
+
*
|
|
4616
|
+
* @type {object}
|
|
4617
|
+
* @memberof OnecompilerV1Response
|
|
4618
|
+
*/
|
|
4619
|
+
'metadata': object;
|
|
4620
|
+
/**
|
|
4621
|
+
*
|
|
4622
|
+
* @type {string}
|
|
4623
|
+
* @memberof OnecompilerV1Response
|
|
4624
|
+
*/
|
|
4625
|
+
'createdAt': string;
|
|
4626
|
+
/**
|
|
4627
|
+
*
|
|
4628
|
+
* @type {string}
|
|
4629
|
+
* @memberof OnecompilerV1Response
|
|
4630
|
+
*/
|
|
4631
|
+
'updatedAt': string;
|
|
4632
|
+
}
|
|
4633
|
+
export declare const OnecompilerV1ResponseKindEnum: {
|
|
4634
|
+
readonly Operation: "operation";
|
|
4635
|
+
};
|
|
4636
|
+
export type OnecompilerV1ResponseKindEnum = typeof OnecompilerV1ResponseKindEnum[keyof typeof OnecompilerV1ResponseKindEnum];
|
|
4637
|
+
export declare const OnecompilerV1ResponseStatusEnum: {
|
|
4638
|
+
readonly Pending: "pending";
|
|
4639
|
+
readonly Finished: "finished";
|
|
4640
|
+
readonly Failed: "failed";
|
|
4641
|
+
};
|
|
4642
|
+
export type OnecompilerV1ResponseStatusEnum = typeof OnecompilerV1ResponseStatusEnum[keyof typeof OnecompilerV1ResponseStatusEnum];
|
|
4427
4643
|
/**
|
|
4428
4644
|
*
|
|
4429
4645
|
* @export
|
|
@@ -5275,6 +5491,7 @@ export declare const ResourceEntityKindEnum: {
|
|
|
5275
5491
|
readonly Pose: "pose";
|
|
5276
5492
|
readonly Storage: "storage";
|
|
5277
5493
|
readonly Pipeline: "pipeline";
|
|
5494
|
+
readonly Workflow: "workflow";
|
|
5278
5495
|
};
|
|
5279
5496
|
export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
|
|
5280
5497
|
/**
|
|
@@ -5876,6 +6093,25 @@ export declare const StringsTemplateV1ResponseStatusEnum: {
|
|
|
5876
6093
|
readonly Failed: "failed";
|
|
5877
6094
|
};
|
|
5878
6095
|
export type StringsTemplateV1ResponseStatusEnum = typeof StringsTemplateV1ResponseStatusEnum[keyof typeof StringsTemplateV1ResponseStatusEnum];
|
|
6096
|
+
/**
|
|
6097
|
+
*
|
|
6098
|
+
* @export
|
|
6099
|
+
* @interface SupportFile
|
|
6100
|
+
*/
|
|
6101
|
+
export interface SupportFile {
|
|
6102
|
+
/**
|
|
6103
|
+
*
|
|
6104
|
+
* @type {string}
|
|
6105
|
+
* @memberof SupportFile
|
|
6106
|
+
*/
|
|
6107
|
+
'name': string;
|
|
6108
|
+
/**
|
|
6109
|
+
*
|
|
6110
|
+
* @type {string}
|
|
6111
|
+
* @memberof SupportFile
|
|
6112
|
+
*/
|
|
6113
|
+
'content': string;
|
|
6114
|
+
}
|
|
5879
6115
|
/**
|
|
5880
6116
|
*
|
|
5881
6117
|
* @export
|
|
@@ -6307,6 +6543,7 @@ export declare const VideoEntityKindEnum: {
|
|
|
6307
6543
|
readonly Pose: "pose";
|
|
6308
6544
|
readonly Storage: "storage";
|
|
6309
6545
|
readonly Pipeline: "pipeline";
|
|
6546
|
+
readonly Workflow: "workflow";
|
|
6310
6547
|
};
|
|
6311
6548
|
export type VideoEntityKindEnum = typeof VideoEntityKindEnum[keyof typeof VideoEntityKindEnum];
|
|
6312
6549
|
/**
|
|
@@ -6443,6 +6680,55 @@ export interface WaitOperationParamsDto {
|
|
|
6443
6680
|
*/
|
|
6444
6681
|
'id': string;
|
|
6445
6682
|
}
|
|
6683
|
+
/**
|
|
6684
|
+
*
|
|
6685
|
+
* @export
|
|
6686
|
+
* @interface WorkflowDto
|
|
6687
|
+
*/
|
|
6688
|
+
export interface WorkflowDto {
|
|
6689
|
+
/**
|
|
6690
|
+
*
|
|
6691
|
+
* @type {string}
|
|
6692
|
+
* @memberof WorkflowDto
|
|
6693
|
+
*/
|
|
6694
|
+
'id': string;
|
|
6695
|
+
/**
|
|
6696
|
+
*
|
|
6697
|
+
* @type {string}
|
|
6698
|
+
* @memberof WorkflowDto
|
|
6699
|
+
*/
|
|
6700
|
+
'creatorId': string;
|
|
6701
|
+
/**
|
|
6702
|
+
*
|
|
6703
|
+
* @type {object}
|
|
6704
|
+
* @memberof WorkflowDto
|
|
6705
|
+
*/
|
|
6706
|
+
'data': object;
|
|
6707
|
+
/**
|
|
6708
|
+
*
|
|
6709
|
+
* @type {string}
|
|
6710
|
+
* @memberof WorkflowDto
|
|
6711
|
+
*/
|
|
6712
|
+
'version': string;
|
|
6713
|
+
/**
|
|
6714
|
+
*
|
|
6715
|
+
* @type {object}
|
|
6716
|
+
* @memberof WorkflowDto
|
|
6717
|
+
*/
|
|
6718
|
+
'metadata': object;
|
|
6719
|
+
/**
|
|
6720
|
+
*
|
|
6721
|
+
* @type {string}
|
|
6722
|
+
* @memberof WorkflowDto
|
|
6723
|
+
*/
|
|
6724
|
+
'createdAt': string;
|
|
6725
|
+
/**
|
|
6726
|
+
*
|
|
6727
|
+
* @type {string}
|
|
6728
|
+
* @memberof WorkflowDto
|
|
6729
|
+
*/
|
|
6730
|
+
'updatedAt': string;
|
|
6731
|
+
}
|
|
6446
6732
|
/**
|
|
6447
6733
|
* AccessApi - axios parameter creator
|
|
6448
6734
|
* @export
|
|
@@ -7264,6 +7550,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
7264
7550
|
* @throws {RequiredError}
|
|
7265
7551
|
*/
|
|
7266
7552
|
callControllerCallOperationsRunObjectDetectionV1V1: (objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7553
|
+
/**
|
|
7554
|
+
*
|
|
7555
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
7556
|
+
* @param {*} [options] Override http request option.
|
|
7557
|
+
* @throws {RequiredError}
|
|
7558
|
+
*/
|
|
7559
|
+
callControllerCallOperationsRunOnecompilerV1V1: (onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7267
7560
|
/**
|
|
7268
7561
|
*
|
|
7269
7562
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -7774,6 +8067,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
7774
8067
|
* @throws {RequiredError}
|
|
7775
8068
|
*/
|
|
7776
8069
|
callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
|
|
8070
|
+
/**
|
|
8071
|
+
*
|
|
8072
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
8073
|
+
* @param {*} [options] Override http request option.
|
|
8074
|
+
* @throws {RequiredError}
|
|
8075
|
+
*/
|
|
8076
|
+
callControllerCallOperationsRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OnecompilerV1Response>>;
|
|
7777
8077
|
/**
|
|
7778
8078
|
*
|
|
7779
8079
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -8284,6 +8584,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8284
8584
|
* @throws {RequiredError}
|
|
8285
8585
|
*/
|
|
8286
8586
|
callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
|
|
8587
|
+
/**
|
|
8588
|
+
*
|
|
8589
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
8590
|
+
* @param {*} [options] Override http request option.
|
|
8591
|
+
* @throws {RequiredError}
|
|
8592
|
+
*/
|
|
8593
|
+
callControllerCallOperationsRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): AxiosPromise<OnecompilerV1Response>;
|
|
8287
8594
|
/**
|
|
8288
8595
|
*
|
|
8289
8596
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -8843,6 +9150,14 @@ export declare class CallApi extends BaseAPI {
|
|
|
8843
9150
|
* @memberof CallApi
|
|
8844
9151
|
*/
|
|
8845
9152
|
callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
|
|
9153
|
+
/**
|
|
9154
|
+
*
|
|
9155
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
9156
|
+
* @param {*} [options] Override http request option.
|
|
9157
|
+
* @throws {RequiredError}
|
|
9158
|
+
* @memberof CallApi
|
|
9159
|
+
*/
|
|
9160
|
+
callControllerCallOperationsRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OnecompilerV1Response, any>>;
|
|
8846
9161
|
/**
|
|
8847
9162
|
*
|
|
8848
9163
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -9341,6 +9656,7 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
|
|
|
9341
9656
|
readonly Pose: "pose";
|
|
9342
9657
|
readonly Storage: "storage";
|
|
9343
9658
|
readonly Pipeline: "pipeline";
|
|
9659
|
+
readonly Workflow: "workflow";
|
|
9344
9660
|
};
|
|
9345
9661
|
export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
9346
9662
|
/**
|
|
@@ -9850,6 +10166,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9850
10166
|
* @throws {RequiredError}
|
|
9851
10167
|
*/
|
|
9852
10168
|
operationsControllerRunObjectDetectionV1V1: (objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10169
|
+
/**
|
|
10170
|
+
*
|
|
10171
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
10172
|
+
* @param {*} [options] Override http request option.
|
|
10173
|
+
* @throws {RequiredError}
|
|
10174
|
+
*/
|
|
10175
|
+
operationsControllerRunOnecompilerV1V1: (onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9853
10176
|
/**
|
|
9854
10177
|
*
|
|
9855
10178
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -10076,6 +10399,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
10076
10399
|
* @throws {RequiredError}
|
|
10077
10400
|
*/
|
|
10078
10401
|
operationsControllerRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
|
|
10402
|
+
/**
|
|
10403
|
+
*
|
|
10404
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
10405
|
+
* @param {*} [options] Override http request option.
|
|
10406
|
+
* @throws {RequiredError}
|
|
10407
|
+
*/
|
|
10408
|
+
operationsControllerRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OnecompilerV1Response>>;
|
|
10079
10409
|
/**
|
|
10080
10410
|
*
|
|
10081
10411
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -10302,6 +10632,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
10302
10632
|
* @throws {RequiredError}
|
|
10303
10633
|
*/
|
|
10304
10634
|
operationsControllerRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
|
|
10635
|
+
/**
|
|
10636
|
+
*
|
|
10637
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
10638
|
+
* @param {*} [options] Override http request option.
|
|
10639
|
+
* @throws {RequiredError}
|
|
10640
|
+
*/
|
|
10641
|
+
operationsControllerRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): AxiosPromise<OnecompilerV1Response>;
|
|
10305
10642
|
/**
|
|
10306
10643
|
*
|
|
10307
10644
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -10552,6 +10889,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
10552
10889
|
* @memberof OperationsApi
|
|
10553
10890
|
*/
|
|
10554
10891
|
operationsControllerRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
|
|
10892
|
+
/**
|
|
10893
|
+
*
|
|
10894
|
+
* @param {OnecompilerV1Request} onecompilerV1Request
|
|
10895
|
+
* @param {*} [options] Override http request option.
|
|
10896
|
+
* @throws {RequiredError}
|
|
10897
|
+
* @memberof OperationsApi
|
|
10898
|
+
*/
|
|
10899
|
+
operationsControllerRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OnecompilerV1Response, any>>;
|
|
10555
10900
|
/**
|
|
10556
10901
|
*
|
|
10557
10902
|
* @param {PoseEstimationV1Request} poseEstimationV1Request
|
|
@@ -11519,6 +11864,35 @@ export declare class WebsocketApi extends BaseAPI {
|
|
|
11519
11864
|
* @export
|
|
11520
11865
|
*/
|
|
11521
11866
|
export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11867
|
+
/**
|
|
11868
|
+
*
|
|
11869
|
+
* @param {CreateWorkflowParamsDto} createWorkflowParamsDto
|
|
11870
|
+
* @param {*} [options] Override http request option.
|
|
11871
|
+
* @throws {RequiredError}
|
|
11872
|
+
*/
|
|
11873
|
+
workflowsControllerCreateWorkflowV1: (createWorkflowParamsDto: CreateWorkflowParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11874
|
+
/**
|
|
11875
|
+
*
|
|
11876
|
+
* @param {string} id
|
|
11877
|
+
* @param {*} [options] Override http request option.
|
|
11878
|
+
* @throws {RequiredError}
|
|
11879
|
+
*/
|
|
11880
|
+
workflowsControllerDeleteWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11881
|
+
/**
|
|
11882
|
+
*
|
|
11883
|
+
* @param {string} id
|
|
11884
|
+
* @param {*} [options] Override http request option.
|
|
11885
|
+
* @throws {RequiredError}
|
|
11886
|
+
*/
|
|
11887
|
+
workflowsControllerGetWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11888
|
+
/**
|
|
11889
|
+
*
|
|
11890
|
+
* @param {number} [limit]
|
|
11891
|
+
* @param {number} [offset]
|
|
11892
|
+
* @param {*} [options] Override http request option.
|
|
11893
|
+
* @throws {RequiredError}
|
|
11894
|
+
*/
|
|
11895
|
+
workflowsControllerListWorkflowsV1: (limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11522
11896
|
/**
|
|
11523
11897
|
*
|
|
11524
11898
|
* @param {string} workflowId
|
|
@@ -11527,12 +11901,48 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
11527
11901
|
* @throws {RequiredError}
|
|
11528
11902
|
*/
|
|
11529
11903
|
workflowsControllerRunWorkflowV1: (workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11904
|
+
/**
|
|
11905
|
+
*
|
|
11906
|
+
* @param {string} id
|
|
11907
|
+
* @param {*} [options] Override http request option.
|
|
11908
|
+
* @throws {RequiredError}
|
|
11909
|
+
*/
|
|
11910
|
+
workflowsControllerUpdateWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11530
11911
|
};
|
|
11531
11912
|
/**
|
|
11532
11913
|
* WorkflowsApi - functional programming interface
|
|
11533
11914
|
* @export
|
|
11534
11915
|
*/
|
|
11535
11916
|
export declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
11917
|
+
/**
|
|
11918
|
+
*
|
|
11919
|
+
* @param {CreateWorkflowParamsDto} createWorkflowParamsDto
|
|
11920
|
+
* @param {*} [options] Override http request option.
|
|
11921
|
+
* @throws {RequiredError}
|
|
11922
|
+
*/
|
|
11923
|
+
workflowsControllerCreateWorkflowV1(createWorkflowParamsDto: CreateWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
11924
|
+
/**
|
|
11925
|
+
*
|
|
11926
|
+
* @param {string} id
|
|
11927
|
+
* @param {*} [options] Override http request option.
|
|
11928
|
+
* @throws {RequiredError}
|
|
11929
|
+
*/
|
|
11930
|
+
workflowsControllerDeleteWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11931
|
+
/**
|
|
11932
|
+
*
|
|
11933
|
+
* @param {string} id
|
|
11934
|
+
* @param {*} [options] Override http request option.
|
|
11935
|
+
* @throws {RequiredError}
|
|
11936
|
+
*/
|
|
11937
|
+
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
11938
|
+
/**
|
|
11939
|
+
*
|
|
11940
|
+
* @param {number} [limit]
|
|
11941
|
+
* @param {number} [offset]
|
|
11942
|
+
* @param {*} [options] Override http request option.
|
|
11943
|
+
* @throws {RequiredError}
|
|
11944
|
+
*/
|
|
11945
|
+
workflowsControllerListWorkflowsV1(limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListWorkflowsDto>>;
|
|
11536
11946
|
/**
|
|
11537
11947
|
*
|
|
11538
11948
|
* @param {string} workflowId
|
|
@@ -11541,12 +11951,48 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
11541
11951
|
* @throws {RequiredError}
|
|
11542
11952
|
*/
|
|
11543
11953
|
workflowsControllerRunWorkflowV1(workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RunWorkflowResponseDto>>;
|
|
11954
|
+
/**
|
|
11955
|
+
*
|
|
11956
|
+
* @param {string} id
|
|
11957
|
+
* @param {*} [options] Override http request option.
|
|
11958
|
+
* @throws {RequiredError}
|
|
11959
|
+
*/
|
|
11960
|
+
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
11544
11961
|
};
|
|
11545
11962
|
/**
|
|
11546
11963
|
* WorkflowsApi - factory interface
|
|
11547
11964
|
* @export
|
|
11548
11965
|
*/
|
|
11549
11966
|
export declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11967
|
+
/**
|
|
11968
|
+
*
|
|
11969
|
+
* @param {CreateWorkflowParamsDto} createWorkflowParamsDto
|
|
11970
|
+
* @param {*} [options] Override http request option.
|
|
11971
|
+
* @throws {RequiredError}
|
|
11972
|
+
*/
|
|
11973
|
+
workflowsControllerCreateWorkflowV1(createWorkflowParamsDto: CreateWorkflowParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
11974
|
+
/**
|
|
11975
|
+
*
|
|
11976
|
+
* @param {string} id
|
|
11977
|
+
* @param {*} [options] Override http request option.
|
|
11978
|
+
* @throws {RequiredError}
|
|
11979
|
+
*/
|
|
11980
|
+
workflowsControllerDeleteWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11981
|
+
/**
|
|
11982
|
+
*
|
|
11983
|
+
* @param {string} id
|
|
11984
|
+
* @param {*} [options] Override http request option.
|
|
11985
|
+
* @throws {RequiredError}
|
|
11986
|
+
*/
|
|
11987
|
+
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
11988
|
+
/**
|
|
11989
|
+
*
|
|
11990
|
+
* @param {number} [limit]
|
|
11991
|
+
* @param {number} [offset]
|
|
11992
|
+
* @param {*} [options] Override http request option.
|
|
11993
|
+
* @throws {RequiredError}
|
|
11994
|
+
*/
|
|
11995
|
+
workflowsControllerListWorkflowsV1(limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<ListWorkflowsDto>;
|
|
11550
11996
|
/**
|
|
11551
11997
|
*
|
|
11552
11998
|
* @param {string} workflowId
|
|
@@ -11555,6 +12001,13 @@ export declare const WorkflowsApiFactory: (configuration?: Configuration, basePa
|
|
|
11555
12001
|
* @throws {RequiredError}
|
|
11556
12002
|
*/
|
|
11557
12003
|
workflowsControllerRunWorkflowV1(workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<RunWorkflowResponseDto>;
|
|
12004
|
+
/**
|
|
12005
|
+
*
|
|
12006
|
+
* @param {string} id
|
|
12007
|
+
* @param {*} [options] Override http request option.
|
|
12008
|
+
* @throws {RequiredError}
|
|
12009
|
+
*/
|
|
12010
|
+
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
11558
12011
|
};
|
|
11559
12012
|
/**
|
|
11560
12013
|
* WorkflowsApi - object-oriented interface
|
|
@@ -11563,6 +12016,39 @@ export declare const WorkflowsApiFactory: (configuration?: Configuration, basePa
|
|
|
11563
12016
|
* @extends {BaseAPI}
|
|
11564
12017
|
*/
|
|
11565
12018
|
export declare class WorkflowsApi extends BaseAPI {
|
|
12019
|
+
/**
|
|
12020
|
+
*
|
|
12021
|
+
* @param {CreateWorkflowParamsDto} createWorkflowParamsDto
|
|
12022
|
+
* @param {*} [options] Override http request option.
|
|
12023
|
+
* @throws {RequiredError}
|
|
12024
|
+
* @memberof WorkflowsApi
|
|
12025
|
+
*/
|
|
12026
|
+
workflowsControllerCreateWorkflowV1(createWorkflowParamsDto: CreateWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowDto, any>>;
|
|
12027
|
+
/**
|
|
12028
|
+
*
|
|
12029
|
+
* @param {string} id
|
|
12030
|
+
* @param {*} [options] Override http request option.
|
|
12031
|
+
* @throws {RequiredError}
|
|
12032
|
+
* @memberof WorkflowsApi
|
|
12033
|
+
*/
|
|
12034
|
+
workflowsControllerDeleteWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12035
|
+
/**
|
|
12036
|
+
*
|
|
12037
|
+
* @param {string} id
|
|
12038
|
+
* @param {*} [options] Override http request option.
|
|
12039
|
+
* @throws {RequiredError}
|
|
12040
|
+
* @memberof WorkflowsApi
|
|
12041
|
+
*/
|
|
12042
|
+
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowDto, any>>;
|
|
12043
|
+
/**
|
|
12044
|
+
*
|
|
12045
|
+
* @param {number} [limit]
|
|
12046
|
+
* @param {number} [offset]
|
|
12047
|
+
* @param {*} [options] Override http request option.
|
|
12048
|
+
* @throws {RequiredError}
|
|
12049
|
+
* @memberof WorkflowsApi
|
|
12050
|
+
*/
|
|
12051
|
+
workflowsControllerListWorkflowsV1(limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListWorkflowsDto, any>>;
|
|
11566
12052
|
/**
|
|
11567
12053
|
*
|
|
11568
12054
|
* @param {string} workflowId
|
|
@@ -11572,4 +12058,12 @@ export declare class WorkflowsApi extends BaseAPI {
|
|
|
11572
12058
|
* @memberof WorkflowsApi
|
|
11573
12059
|
*/
|
|
11574
12060
|
workflowsControllerRunWorkflowV1(workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunWorkflowResponseDto, any>>;
|
|
12061
|
+
/**
|
|
12062
|
+
*
|
|
12063
|
+
* @param {string} id
|
|
12064
|
+
* @param {*} [options] Override http request option.
|
|
12065
|
+
* @throws {RequiredError}
|
|
12066
|
+
* @memberof WorkflowsApi
|
|
12067
|
+
*/
|
|
12068
|
+
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkflowDto, any>>;
|
|
11575
12069
|
}
|