@shotstack/schemas 1.9.6 → 1.9.8

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 (36) hide show
  1. package/dist/api.bundled.json +1492 -3430
  2. package/dist/json-schema/asset.json +1 -853
  3. package/dist/json-schema/clip.json +1 -853
  4. package/dist/json-schema/destinations.json +28 -12
  5. package/dist/json-schema/edit.json +31 -867
  6. package/dist/json-schema/output.json +28 -12
  7. package/dist/json-schema/schemas.json +38 -967
  8. package/dist/json-schema/svg-asset.json +6 -857
  9. package/dist/json-schema/timeline.json +2 -854
  10. package/dist/json-schema/track.json +2 -854
  11. package/dist/schema.d.ts +914 -2451
  12. package/dist/zod/zod.gen.cjs +97 -1285
  13. package/dist/zod/zod.gen.d.ts +613 -12248
  14. package/dist/zod/zod.gen.js +91 -1277
  15. package/dist/zod/zod.gen.ts +27 -992
  16. package/package.json +1 -1
  17. package/dist/json-schema/svg-arrow-shape.json +0 -49
  18. package/dist/json-schema/svg-circle-shape.json +0 -28
  19. package/dist/json-schema/svg-cross-shape.json +0 -42
  20. package/dist/json-schema/svg-ellipse-shape.json +0 -35
  21. package/dist/json-schema/svg-fill.json +0 -169
  22. package/dist/json-schema/svg-gradient-stop.json +0 -25
  23. package/dist/json-schema/svg-heart-shape.json +0 -28
  24. package/dist/json-schema/svg-line-shape.json +0 -35
  25. package/dist/json-schema/svg-linear-gradient-fill.json +0 -80
  26. package/dist/json-schema/svg-path-shape.json +0 -26
  27. package/dist/json-schema/svg-polygon-shape.json +0 -35
  28. package/dist/json-schema/svg-radial-gradient-fill.json +0 -66
  29. package/dist/json-schema/svg-rectangle-shape.json +0 -49
  30. package/dist/json-schema/svg-ring-shape.json +0 -35
  31. package/dist/json-schema/svg-shadow.json +0 -79
  32. package/dist/json-schema/svg-shape.json +0 -404
  33. package/dist/json-schema/svg-solid-fill.json +0 -40
  34. package/dist/json-schema/svg-star-shape.json +0 -42
  35. package/dist/json-schema/svg-stroke.json +0 -115
  36. package/dist/json-schema/svg-transform.json +0 -93
@@ -129,15 +129,23 @@
129
129
  "type": "string"
130
130
  },
131
131
  "path": {
132
- "type": [
133
- "string",
134
- "null"
132
+ "anyOf": [
133
+ {
134
+ "type": "string"
135
+ },
136
+ {
137
+ "type": "null"
138
+ }
135
139
  ]
136
140
  },
137
141
  "filename": {
138
- "type": [
139
- "string",
140
- "null"
142
+ "anyOf": [
143
+ {
144
+ "type": "string"
145
+ },
146
+ {
147
+ "type": "null"
148
+ }
141
149
  ]
142
150
  }
143
151
  },
@@ -182,15 +190,23 @@
182
190
  "type": "string"
183
191
  },
184
192
  "prefix": {
185
- "type": [
186
- "string",
187
- "null"
193
+ "anyOf": [
194
+ {
195
+ "type": "string"
196
+ },
197
+ {
198
+ "type": "null"
199
+ }
188
200
  ]
189
201
  },
190
202
  "filename": {
191
- "type": [
192
- "string",
193
- "null"
203
+ "anyOf": [
204
+ {
205
+ "type": "string"
206
+ },
207
+ {
208
+ "type": "null"
209
+ }
194
210
  ]
195
211
  }
196
212
  },