@segha/catalog 4.1.0 → 5.0.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/CHANGELOG.md +16 -0
- package/README.md +0 -6
- package/en/index.ts +2 -0
- package/es/Core/Format.ts +4 -0
- package/es/Core/Source.ts +1 -0
- package/es/DataTypes/ExternalId.ts +7 -0
- package/es/DataTypes/StreamUrls.ts +12 -0
- package/es/DataTypes/index.ts +2 -0
- package/es/DataTypes/types.ts +4 -0
- package/es/Movie/index.ts +25 -20
- package/es/Note.ts +2 -0
- package/es/TVSeries/index.ts +36 -0
- package/es/TVSeries/types.ts +6 -0
- package/es/index.ts +3 -0
- package/es/types.ts +2 -0
- package/index.ts +0 -2
- package/json-schemas/es/Book/BookSchema.json +9 -9
- package/json-schemas/es/Book/index.json +9 -9
- package/json-schemas/es/BookSchema.json +9 -9
- package/json-schemas/es/Core/Format.json +1 -0
- package/json-schemas/es/Core/SourceSchema.json +4 -0
- package/json-schemas/es/Core/TVSeries.json +6 -0
- package/json-schemas/es/Core/index.json +11 -0
- package/json-schemas/es/DataTypes/StreamUrlsSchema.json +47 -0
- package/json-schemas/es/DataTypes/index.json +52 -0
- package/json-schemas/es/Movie/MovieSchema.json +286 -230
- package/json-schemas/es/Movie/index.json +286 -235
- package/json-schemas/es/MovieSchema.json +286 -230
- package/json-schemas/es/NoteSchema.json +638 -239
- package/json-schemas/es/Painting/PaintingSchema.json +4 -0
- package/json-schemas/es/Painting/index.json +4 -0
- package/json-schemas/es/PaintingSchema.json +4 -0
- package/json-schemas/es/TVSeries/TVSeriesSchema.json +336 -0
- package/json-schemas/es/TVSeries/index.json +343 -0
- package/json-schemas/es/TVSeriesSchema.json +336 -0
- package/json-schemas/es/Video/VideoSchema.json +4 -0
- package/json-schemas/es/Video/VimeoSchema.json +4 -0
- package/json-schemas/es/Video/YoutubeSchema.json +4 -0
- package/json-schemas/es/Video/index.json +12 -0
- package/json-schemas/es/VideoSchema.json +4 -0
- package/json-schemas/es/VimeoSchema.json +4 -0
- package/json-schemas/es/YoutubeSchema.json +4 -0
- package/json-schemas/es/index.json +1466 -659
- package/package.json +10 -5
- package/es/Movie/MovieExternalId.ts +0 -7
- /package/json-schemas/es/{Movie/MovieExternalId.json → DataTypes/TVExternalId.json} +0 -0
|
@@ -212,6 +212,10 @@
|
|
|
212
212
|
"type": "string",
|
|
213
213
|
"description": "Título de la película"
|
|
214
214
|
},
|
|
215
|
+
"description": {
|
|
216
|
+
"description": "Descripción de la fuente.",
|
|
217
|
+
"type": "string"
|
|
218
|
+
},
|
|
215
219
|
"platform": {
|
|
216
220
|
"anyOf": [
|
|
217
221
|
{
|
|
@@ -441,6 +445,10 @@
|
|
|
441
445
|
"type": "string",
|
|
442
446
|
"description": "Título de la película"
|
|
443
447
|
},
|
|
448
|
+
"description": {
|
|
449
|
+
"description": "Descripción de la fuente.",
|
|
450
|
+
"type": "string"
|
|
451
|
+
},
|
|
444
452
|
"platform": {
|
|
445
453
|
"type": "string",
|
|
446
454
|
"const": "Vimeo"
|
|
@@ -661,6 +669,10 @@
|
|
|
661
669
|
"type": "string",
|
|
662
670
|
"description": "Título de la película"
|
|
663
671
|
},
|
|
672
|
+
"description": {
|
|
673
|
+
"description": "Descripción de la fuente.",
|
|
674
|
+
"type": "string"
|
|
675
|
+
},
|
|
664
676
|
"platform": {
|
|
665
677
|
"type": "string",
|
|
666
678
|
"const": "YouTube"
|