@imferno/schema 2.4.1-fix-packageviewer-dark-mode.8efb015 → 2.4.1-fix-imfreport-migration-docs.cc771a1
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/package.json +1 -1
- package/schemas/imf-report.json +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imferno/schema",
|
|
3
|
-
"version": "2.4.1-fix-
|
|
3
|
+
"version": "2.4.1-fix-imfreport-migration-docs.cc771a1",
|
|
4
4
|
"description": "JSON Schema definitions for SMPTE ST 2067 IMF types — validates imferno export output",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
package/schemas/imf-report.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"title": "ImfReport",
|
|
4
|
+
"description": "Legacy report summary. Deprecated since v2.3.0.\n\nUse [`ValidationResult`] from [`validate()`](crate::package::validate) or [`Imferno::parse_and_validate()`] instead. `ImfReport` is a lossy summary that drops essence descriptors, locales, content versions, and other parsed data from the package.\n\n# Migration\n\nBefore: ```ignore let report = build_report(&package, &options, None)?; for cpl in &report.cpls { /* ... */ } ```\n\nAfter: ```ignore let result = package.validate(&options); for (id, cpl) in &package.composition_playlists { /* ... */ } ```",
|
|
4
5
|
"deprecated": true,
|
|
5
6
|
"type": "object",
|
|
6
7
|
"required": [
|