cloudinary-video-player 3.3.1-edge.1 → 3.4.0

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/lib/schema.json CHANGED
@@ -492,35 +492,58 @@
492
492
  ]
493
493
  }
494
494
  }
495
- },
496
- "title": {
497
- "oneOf": [
498
- {
495
+ },
496
+ "title": {
497
+ "oneOf": [
498
+ {
499
+ "type": "string",
500
+ "default": ""
501
+ },
502
+ {
503
+ "type": "boolean",
504
+ "default": false
505
+ }
506
+ ]
507
+ },
508
+ "description": {
509
+ "oneOf": [
510
+ {
511
+ "type": "string",
512
+ "default": ""
513
+ },
514
+ {
515
+ "type": "boolean",
516
+ "default": false
517
+ }
518
+ ]
519
+ },
520
+ "adaptiveStreaming": {
521
+ "type": "string",
522
+ "enum": ["fastStart", "balanced", "highQuality"],
523
+ "default": "balanced"
524
+ },
525
+ "videoSources": {
526
+ "type": "array",
527
+ "items": {
528
+ "type": "object",
529
+ "properties": {
530
+ "label": {
499
531
  "type": "string",
500
532
  "default": ""
501
533
  },
502
- {
503
- "type": "boolean",
504
- "default": false
505
- }
506
- ]
507
- },
508
- "description": {
509
- "oneOf": [
510
- {
534
+ "publicId": {
511
535
  "type": "string",
512
536
  "default": ""
513
- },
514
- {
515
- "type": "boolean",
516
- "default": false
517
537
  }
518
- ]
538
+ },
539
+ "additionalProperties": true
519
540
  },
520
- "adaptiveStreaming": {
521
- "type": "string",
522
- "enum": ["fastStart", "balanced", "highQuality"],
523
- "default": "balanced"
541
+ "default": [
542
+ {
543
+ "publicId": "video-public-id",
544
+ "label": "Example video label"
545
+ }
546
+ ]
524
547
  }
525
548
  },
526
549
  "additionalProperties": true