@shotstack/schemas 1.8.3 → 1.8.4

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 (37) hide show
  1. package/dist/api.bundled.json +204 -972
  2. package/dist/json-schema/asset.json +3 -936
  3. package/dist/json-schema/clip.json +3 -936
  4. package/dist/json-schema/destinations.json +111 -23
  5. package/dist/json-schema/edit.json +256 -1083
  6. package/dist/json-schema/output.json +106 -0
  7. package/dist/json-schema/rich-caption-asset.json +140 -221
  8. package/dist/json-schema/schemas.json +295 -1207
  9. package/dist/json-schema/svg-asset.json +6 -857
  10. package/dist/json-schema/timeline.json +3 -936
  11. package/dist/json-schema/track.json +3 -936
  12. package/dist/schema.d.ts +68 -695
  13. package/dist/zod/zod.gen.cjs +44 -625
  14. package/dist/zod/zod.gen.d.ts +543 -8241
  15. package/dist/zod/zod.gen.js +38 -618
  16. package/dist/zod/zod.gen.ts +50 -382
  17. package/package.json +1 -1
  18. package/dist/json-schema/svg-arrow-shape.json +0 -49
  19. package/dist/json-schema/svg-circle-shape.json +0 -28
  20. package/dist/json-schema/svg-cross-shape.json +0 -42
  21. package/dist/json-schema/svg-ellipse-shape.json +0 -35
  22. package/dist/json-schema/svg-fill.json +0 -169
  23. package/dist/json-schema/svg-gradient-stop.json +0 -25
  24. package/dist/json-schema/svg-heart-shape.json +0 -28
  25. package/dist/json-schema/svg-line-shape.json +0 -35
  26. package/dist/json-schema/svg-linear-gradient-fill.json +0 -80
  27. package/dist/json-schema/svg-path-shape.json +0 -26
  28. package/dist/json-schema/svg-polygon-shape.json +0 -35
  29. package/dist/json-schema/svg-radial-gradient-fill.json +0 -66
  30. package/dist/json-schema/svg-rectangle-shape.json +0 -49
  31. package/dist/json-schema/svg-ring-shape.json +0 -35
  32. package/dist/json-schema/svg-shadow.json +0 -79
  33. package/dist/json-schema/svg-shape.json +0 -404
  34. package/dist/json-schema/svg-solid-fill.json +0 -40
  35. package/dist/json-schema/svg-star-shape.json +0 -42
  36. package/dist/json-schema/svg-stroke.json +0 -115
  37. package/dist/json-schema/svg-transform.json +0 -93
@@ -2,7 +2,6 @@
2
2
  "name": "Destinations",
3
3
  "strict": true,
4
4
  "schema": {
5
- "description": "A destination is a...",
6
5
  "anyOf": [
7
6
  {
8
7
  "$ref": "#/$defs/ShotstackDestination"
@@ -20,7 +19,6 @@
20
19
  "$ref": "#/$defs/VimeoDestination"
21
20
  },
22
21
  {
23
- "description": "S...",
24
22
  "properties": {
25
23
  "provider": {
26
24
  "type": "string",
@@ -47,7 +45,6 @@
47
45
  "anyOf": [
48
46
  {
49
47
  "type": "string",
50
- "description": "Th...",
51
48
  "enum": [
52
49
  "public",
53
50
  "friends",
@@ -111,11 +108,116 @@
111
108
  "options"
112
109
  ],
113
110
  "additionalProperties": false
111
+ },
112
+ {
113
+ "properties": {
114
+ "provider": {
115
+ "type": "string",
116
+ "enum": [
117
+ "akamai-netstorage"
118
+ ]
119
+ },
120
+ "options": {
121
+ "anyOf": [
122
+ {
123
+ "type": "object",
124
+ "properties": {
125
+ "host": {
126
+ "type": "string"
127
+ },
128
+ "cpCode": {
129
+ "type": "string"
130
+ },
131
+ "path": {
132
+ "type": [
133
+ "string",
134
+ "null"
135
+ ]
136
+ },
137
+ "filename": {
138
+ "type": [
139
+ "string",
140
+ "null"
141
+ ]
142
+ }
143
+ },
144
+ "required": [
145
+ "host",
146
+ "cpCode",
147
+ "path",
148
+ "filename"
149
+ ],
150
+ "additionalProperties": false
151
+ },
152
+ {
153
+ "type": "null"
154
+ }
155
+ ]
156
+ }
157
+ },
158
+ "type": "object",
159
+ "required": [
160
+ "provider",
161
+ "options"
162
+ ],
163
+ "additionalProperties": false
164
+ },
165
+ {
166
+ "properties": {
167
+ "provider": {
168
+ "type": "string",
169
+ "enum": [
170
+ "azure-blob-storage"
171
+ ]
172
+ },
173
+ "options": {
174
+ "anyOf": [
175
+ {
176
+ "type": "object",
177
+ "properties": {
178
+ "accountName": {
179
+ "type": "string"
180
+ },
181
+ "container": {
182
+ "type": "string"
183
+ },
184
+ "prefix": {
185
+ "type": [
186
+ "string",
187
+ "null"
188
+ ]
189
+ },
190
+ "filename": {
191
+ "type": [
192
+ "string",
193
+ "null"
194
+ ]
195
+ }
196
+ },
197
+ "required": [
198
+ "accountName",
199
+ "container",
200
+ "prefix",
201
+ "filename"
202
+ ],
203
+ "additionalProperties": false
204
+ },
205
+ {
206
+ "type": "null"
207
+ }
208
+ ]
209
+ }
210
+ },
211
+ "type": "object",
212
+ "required": [
213
+ "provider",
214
+ "options"
215
+ ],
216
+ "additionalProperties": false
114
217
  }
115
218
  ],
116
219
  "$defs": {
117
220
  "ShotstackDestination": {
118
- "description": "S...",
119
221
  "properties": {
120
222
  "provider": {
121
223
  "type": "string",
@@ -126,8 +228,7 @@
126
228
  "exclude": {
127
229
  "anyOf": [
128
230
  {
129
- "type": "boolean",
130
- "description": "S..."
231
+ "type": "boolean"
131
232
  },
132
233
  {
133
234
  "type": "null"
@@ -143,7 +244,6 @@
143
244
  "additionalProperties": false
144
245
  },
145
246
  "S3Destination": {
146
- "description": "Send...",
147
247
  "properties": {
148
248
  "provider": {
149
249
  "type": "string",
@@ -172,7 +272,6 @@
172
272
  "S3DestinationOptions": {
173
273
  "properties": {
174
274
  "region": {
175
- "description": "C...",
176
275
  "type": "string"
177
276
  },
178
277
  "bucket": {
@@ -191,8 +290,7 @@
191
290
  "filename": {
192
291
  "anyOf": [
193
292
  {
194
- "type": "string",
195
- "description": "Use..."
293
+ "type": "string"
196
294
  },
197
295
  {
198
296
  "type": "null"
@@ -202,8 +300,7 @@
202
300
  "acl": {
203
301
  "anyOf": [
204
302
  {
205
- "type": "string",
206
- "description": "Se..."
303
+ "type": "string"
207
304
  },
208
305
  {
209
306
  "type": "null"
@@ -222,7 +319,6 @@
222
319
  "additionalProperties": false
223
320
  },
224
321
  "GoogleCloudStorageDestination": {
225
- "description": "Send...",
226
322
  "properties": {
227
323
  "provider": {
228
324
  "type": "string",
@@ -266,8 +362,7 @@
266
362
  "filename": {
267
363
  "anyOf": [
268
364
  {
269
- "type": "string",
270
- "description": "Use..."
365
+ "type": "string"
271
366
  },
272
367
  {
273
368
  "type": "null"
@@ -284,7 +379,6 @@
284
379
  "additionalProperties": false
285
380
  },
286
381
  "GoogleDriveDestination": {
287
- "description": "Send ...",
288
382
  "properties": {
289
383
  "provider": {
290
384
  "type": "string",
@@ -306,14 +400,12 @@
306
400
  "GoogleDriveDestinationOptions": {
307
401
  "properties": {
308
402
  "folderId": {
309
- "description": "The...",
310
403
  "type": "string"
311
404
  },
312
405
  "filename": {
313
406
  "anyOf": [
314
407
  {
315
- "type": "string",
316
- "description": "Use..."
408
+ "type": "string"
317
409
  },
318
410
  {
319
411
  "type": "null"
@@ -329,7 +421,6 @@
329
421
  "additionalProperties": false
330
422
  },
331
423
  "VimeoDestination": {
332
- "description": "Sen...",
333
424
  "properties": {
334
425
  "provider": {
335
426
  "type": "string",
@@ -413,7 +504,6 @@
413
504
  "anyOf": [
414
505
  {
415
506
  "type": "string",
416
- "description": "Set wh...",
417
507
  "enum": [
418
508
  "anybody",
419
509
  "nobody",
@@ -431,7 +521,6 @@
431
521
  "anyOf": [
432
522
  {
433
523
  "type": "string",
434
- "description": "Set...",
435
524
  "enum": [
436
525
  "public",
437
526
  "private",
@@ -447,7 +536,6 @@
447
536
  "anyOf": [
448
537
  {
449
538
  "type": "string",
450
- "description": "Set...",
451
539
  "enum": [
452
540
  "anybody",
453
541
  "nobody",