@shotstack/schemas 1.8.4 → 1.8.5

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.
Files changed (34) hide show
  1. package/dist/api.bundled.json +832 -6
  2. package/dist/json-schema/asset.json +853 -1
  3. package/dist/json-schema/clip.json +853 -1
  4. package/dist/json-schema/edit.json +854 -2
  5. package/dist/json-schema/schemas.json +950 -5
  6. package/dist/json-schema/svg-arrow-shape.json +49 -0
  7. package/dist/json-schema/svg-asset.json +857 -6
  8. package/dist/json-schema/svg-circle-shape.json +28 -0
  9. package/dist/json-schema/svg-cross-shape.json +42 -0
  10. package/dist/json-schema/svg-ellipse-shape.json +35 -0
  11. package/dist/json-schema/svg-fill.json +169 -0
  12. package/dist/json-schema/svg-gradient-stop.json +25 -0
  13. package/dist/json-schema/svg-heart-shape.json +28 -0
  14. package/dist/json-schema/svg-line-shape.json +35 -0
  15. package/dist/json-schema/svg-linear-gradient-fill.json +80 -0
  16. package/dist/json-schema/svg-path-shape.json +26 -0
  17. package/dist/json-schema/svg-polygon-shape.json +35 -0
  18. package/dist/json-schema/svg-radial-gradient-fill.json +66 -0
  19. package/dist/json-schema/svg-rectangle-shape.json +49 -0
  20. package/dist/json-schema/svg-ring-shape.json +35 -0
  21. package/dist/json-schema/svg-shadow.json +79 -0
  22. package/dist/json-schema/svg-shape.json +404 -0
  23. package/dist/json-schema/svg-solid-fill.json +40 -0
  24. package/dist/json-schema/svg-star-shape.json +42 -0
  25. package/dist/json-schema/svg-stroke.json +115 -0
  26. package/dist/json-schema/svg-transform.json +93 -0
  27. package/dist/json-schema/timeline.json +854 -2
  28. package/dist/json-schema/track.json +854 -2
  29. package/dist/schema.d.ts +659 -7
  30. package/dist/zod/zod.gen.cjs +598 -8
  31. package/dist/zod/zod.gen.d.ts +8230 -156
  32. package/dist/zod/zod.gen.js +594 -5
  33. package/dist/zod/zod.gen.ts +369 -5
  34. 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
+ }