@hautechai/sdk 1.1.0 → 1.1.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/CHANGELOG.md +3 -3
- package/dist/autogenerated/api.d.ts +7 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.1.1](https://github.com/HautechAI/sdk/compare/@hautechai/sdk@1.1.0...@hautechai/sdk@1.1.1) (2025-07-20)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* Allow string inputs for creatomate ([a99563f](https://github.com/HautechAI/sdk/commit/a99563fd679f37edbfb0fb59fc406d7eac828d45))
|
|
@@ -198,11 +198,16 @@ export interface AddItemsToStackParamsDto {
|
|
|
198
198
|
export interface AnimateCreatomateV1Input {
|
|
199
199
|
/**
|
|
200
200
|
*
|
|
201
|
-
* @type {
|
|
201
|
+
* @type {AnimateCreatomateV1InputTemplate}
|
|
202
202
|
* @memberof AnimateCreatomateV1Input
|
|
203
203
|
*/
|
|
204
|
-
'template':
|
|
204
|
+
'template': AnimateCreatomateV1InputTemplate;
|
|
205
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* @type AnimateCreatomateV1InputTemplate
|
|
208
|
+
* @export
|
|
209
|
+
*/
|
|
210
|
+
export type AnimateCreatomateV1InputTemplate = object | string;
|
|
206
211
|
/**
|
|
207
212
|
*
|
|
208
213
|
* @export
|