@hautechai/sdk 0.1.5 → 0.2.1
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 +981 -23
- package/dist/autogenerated/api.js +1110 -161
- package/dist/sdk/index.d.ts +762 -142
- package/dist/sdk/operations/index.d.ts +1 -1
- package/dist/sdk/operations/index.js +1 -0
- package/dist/sdk/pipelines/index.d.ts +760 -140
- package/dist/sdk/pipelines/index.js +59 -2
- package/dist/sdk/pipelines/pipelines.d.ts +0 -0
- package/dist/sdk/pipelines/pipelines.js +1 -0
- package/package.json +2 -2
|
@@ -121,6 +121,6 @@ declare const operations: (options: SDKOptions, relevantOperations: OperationsLi
|
|
|
121
121
|
}) => Promise<void>;
|
|
122
122
|
wait: <T extends OperationEntity | {
|
|
123
123
|
id: string;
|
|
124
|
-
}>(props: T, timeoutMs?:
|
|
124
|
+
}, N extends number | undefined>(props: T, timeoutMs?: N) => Promise<Waited<T extends OperationEntity ? T : OperationEntity> | (N extends undefined ? never : null)>;
|
|
125
125
|
};
|
|
126
126
|
export default operations;
|