@shotstack/schemas 1.8.4 → 1.8.6
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/api.bundled.json +832 -6
- package/dist/json-schema/asset.json +853 -1
- package/dist/json-schema/clip.json +853 -1
- package/dist/json-schema/edit.json +854 -2
- package/dist/json-schema/schemas.json +950 -5
- package/dist/json-schema/svg-arrow-shape.json +49 -0
- package/dist/json-schema/svg-asset.json +857 -6
- package/dist/json-schema/svg-circle-shape.json +28 -0
- package/dist/json-schema/svg-cross-shape.json +42 -0
- package/dist/json-schema/svg-ellipse-shape.json +35 -0
- package/dist/json-schema/svg-fill.json +169 -0
- package/dist/json-schema/svg-gradient-stop.json +25 -0
- package/dist/json-schema/svg-heart-shape.json +28 -0
- package/dist/json-schema/svg-line-shape.json +35 -0
- package/dist/json-schema/svg-linear-gradient-fill.json +80 -0
- package/dist/json-schema/svg-path-shape.json +26 -0
- package/dist/json-schema/svg-polygon-shape.json +35 -0
- package/dist/json-schema/svg-radial-gradient-fill.json +66 -0
- package/dist/json-schema/svg-rectangle-shape.json +49 -0
- package/dist/json-schema/svg-ring-shape.json +35 -0
- package/dist/json-schema/svg-shadow.json +79 -0
- package/dist/json-schema/svg-shape.json +404 -0
- package/dist/json-schema/svg-solid-fill.json +40 -0
- package/dist/json-schema/svg-star-shape.json +42 -0
- package/dist/json-schema/svg-stroke.json +115 -0
- package/dist/json-schema/svg-transform.json +93 -0
- package/dist/json-schema/timeline.json +854 -2
- package/dist/json-schema/track.json +854 -2
- package/dist/schema.d.ts +659 -7
- package/dist/zod/zod.gen.cjs +603 -11
- package/dist/zod/zod.gen.d.ts +8792 -286
- package/dist/zod/zod.gen.js +599 -8
- package/dist/zod/zod.gen.ts +374 -8
- package/package.json +1 -1
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "SvgArrowShape",
|
|
3
|
+
"strict": true,
|
|
4
|
+
"schema": {
|
|
5
|
+
"description": "An arrow shape pointing to the right by default.\nUse transform rotation to change direction.\n",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"type": {
|
|
10
|
+
"description": "The shape type - set to `arrow`.",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"enum": [
|
|
13
|
+
"arrow"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"length": {
|
|
17
|
+
"description": "The total length of the arrow from tail to tip in pixels.",
|
|
18
|
+
"type": "number",
|
|
19
|
+
"minimum": 1,
|
|
20
|
+
"maximum": 4096
|
|
21
|
+
},
|
|
22
|
+
"headWidth": {
|
|
23
|
+
"description": "The width of the arrow head (the widest part) in pixels.",
|
|
24
|
+
"type": "number",
|
|
25
|
+
"minimum": 1,
|
|
26
|
+
"maximum": 1000
|
|
27
|
+
},
|
|
28
|
+
"headLength": {
|
|
29
|
+
"description": "The length of the arrow head portion in pixels.",
|
|
30
|
+
"type": "number",
|
|
31
|
+
"minimum": 1,
|
|
32
|
+
"maximum": 1000
|
|
33
|
+
},
|
|
34
|
+
"shaftWidth": {
|
|
35
|
+
"description": "The width of the arrow shaft (body) in pixels.",
|
|
36
|
+
"type": "number",
|
|
37
|
+
"minimum": 1,
|
|
38
|
+
"maximum": 1000
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"required": [
|
|
42
|
+
"type",
|
|
43
|
+
"length",
|
|
44
|
+
"headWidth",
|
|
45
|
+
"headLength",
|
|
46
|
+
"shaftWidth"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
}
|