@decartai/sdk 0.0.23 → 0.0.24
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/shared/model.js +1 -1
- package/package.json +2 -1
package/dist/shared/model.js
CHANGED
|
@@ -108,7 +108,7 @@ const modelInputSchemas = {
|
|
|
108
108
|
frame: z.number().min(0),
|
|
109
109
|
x: z.number().min(0),
|
|
110
110
|
y: z.number().min(0)
|
|
111
|
-
})).min(2).max(
|
|
111
|
+
})).min(2).max(1e3).describe("The trajectory of the desired movement of the object in the image"),
|
|
112
112
|
seed: z.number().optional().describe("The seed to use for the generation"),
|
|
113
113
|
resolution: motionResolutionSchema
|
|
114
114
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decartai/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"description": "Decart's JavaScript SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
+
"@types/bun": "^1.3.3",
|
|
32
33
|
"@types/node": "^22.15.17",
|
|
33
34
|
"biome": "^0.3.3",
|
|
34
35
|
"bumpp": "^10.1.0",
|