@shotstack/schemas 1.9.7 → 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.
@@ -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
  },
@@ -3518,15 +3518,23 @@
3518
3518
  "type": "string"
3519
3519
  },
3520
3520
  "path": {
3521
- "type": [
3522
- "string",
3523
- "null"
3521
+ "anyOf": [
3522
+ {
3523
+ "type": "string"
3524
+ },
3525
+ {
3526
+ "type": "null"
3527
+ }
3524
3528
  ]
3525
3529
  },
3526
3530
  "filename": {
3527
- "type": [
3528
- "string",
3529
- "null"
3531
+ "anyOf": [
3532
+ {
3533
+ "type": "string"
3534
+ },
3535
+ {
3536
+ "type": "null"
3537
+ }
3530
3538
  ]
3531
3539
  }
3532
3540
  },
@@ -3571,15 +3579,23 @@
3571
3579
  "type": "string"
3572
3580
  },
3573
3581
  "prefix": {
3574
- "type": [
3575
- "string",
3576
- "null"
3582
+ "anyOf": [
3583
+ {
3584
+ "type": "string"
3585
+ },
3586
+ {
3587
+ "type": "null"
3588
+ }
3577
3589
  ]
3578
3590
  },
3579
3591
  "filename": {
3580
- "type": [
3581
- "string",
3582
- "null"
3592
+ "anyOf": [
3593
+ {
3594
+ "type": "string"
3595
+ },
3596
+ {
3597
+ "type": "null"
3598
+ }
3583
3599
  ]
3584
3600
  }
3585
3601
  },
@@ -423,15 +423,23 @@
423
423
  "type": "string"
424
424
  },
425
425
  "path": {
426
- "type": [
427
- "string",
428
- "null"
426
+ "anyOf": [
427
+ {
428
+ "type": "string"
429
+ },
430
+ {
431
+ "type": "null"
432
+ }
429
433
  ]
430
434
  },
431
435
  "filename": {
432
- "type": [
433
- "string",
434
- "null"
436
+ "anyOf": [
437
+ {
438
+ "type": "string"
439
+ },
440
+ {
441
+ "type": "null"
442
+ }
435
443
  ]
436
444
  }
437
445
  },
@@ -476,15 +484,23 @@
476
484
  "type": "string"
477
485
  },
478
486
  "prefix": {
479
- "type": [
480
- "string",
481
- "null"
487
+ "anyOf": [
488
+ {
489
+ "type": "string"
490
+ },
491
+ {
492
+ "type": "null"
493
+ }
482
494
  ]
483
495
  },
484
496
  "filename": {
485
- "type": [
486
- "string",
487
- "null"
497
+ "anyOf": [
498
+ {
499
+ "type": "string"
500
+ },
501
+ {
502
+ "type": "null"
503
+ }
488
504
  ]
489
505
  }
490
506
  },
@@ -3778,17 +3778,25 @@
3778
3778
  "type": "string"
3779
3779
  },
3780
3780
  "path": {
3781
- "description": "A remote directory path/prefix for the file being sent, i.e. `videos` or `customerId/videos`.",
3782
- "type": [
3783
- "string",
3784
- "null"
3781
+ "anyOf": [
3782
+ {
3783
+ "description": "A remote directory path/prefix for the file being sent, i.e. `videos` or `customerId/videos`.",
3784
+ "type": "string"
3785
+ },
3786
+ {
3787
+ "type": "null"
3788
+ }
3785
3789
  ]
3786
3790
  },
3787
3791
  "filename": {
3788
- "description": "Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.",
3789
- "type": [
3790
- "string",
3791
- "null"
3792
+ "anyOf": [
3793
+ {
3794
+ "description": "Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.",
3795
+ "type": "string"
3796
+ },
3797
+ {
3798
+ "type": "null"
3799
+ }
3792
3800
  ]
3793
3801
  }
3794
3802
  },
@@ -3838,17 +3846,25 @@
3838
3846
  "type": "string"
3839
3847
  },
3840
3848
  "prefix": {
3841
- "description": "A virtual directory prefix for the blob being sent, i.e. `videos` or `customerId/videos`.",
3842
- "type": [
3843
- "string",
3844
- "null"
3849
+ "anyOf": [
3850
+ {
3851
+ "description": "A virtual directory prefix for the blob being sent, i.e. `videos` or `customerId/videos`.",
3852
+ "type": "string"
3853
+ },
3854
+ {
3855
+ "type": "null"
3856
+ }
3845
3857
  ]
3846
3858
  },
3847
3859
  "filename": {
3848
- "description": "Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.",
3849
- "type": [
3850
- "string",
3851
- "null"
3860
+ "anyOf": [
3861
+ {
3862
+ "description": "Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.",
3863
+ "type": "string"
3864
+ },
3865
+ {
3866
+ "type": "null"
3867
+ }
3852
3868
  ]
3853
3869
  }
3854
3870
  },