@segha/catalog 5.0.2 → 5.0.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.
@@ -9,4 +9,5 @@ export const StreamUrlsSchema = z.object({
9
9
  hulu_url: z.url().optional().describe('URL de Hulu'),
10
10
  pluto_tv_url: z.url().optional().describe('URL de Pluto TV'),
11
11
  youtube_url: z.url().optional().describe('URL de YouTube'),
12
+ watch_url: z.url().optional().describe('URL de streaming'),
12
13
  }).describe('URLs de streaming');
package/es/Movie/index.ts CHANGED
@@ -20,17 +20,21 @@ export const MovieSchema = SourceSchema
20
20
  icon: Icon.optional().default(MovieIcon.value).describe('Icono de Lucide.'),
21
21
  cover: Image.nullable().optional().describe('Portada de la película.'),
22
22
  url: z.url().describe('URL de la película en IMDB o similar'),
23
+ trailer: z.url().describe('URL del trailer en YouTube u otras plataformas').optional(),
23
24
  watch_url: z.url().optional().describe('URL de la película en streaming').meta({
24
25
  deprecated: true,
25
26
  replacement: 'hbo_max_url|netflix_url|apple_tv_url|amazon_prime_url|disney_plus_url|hulu_url|pluto_tv_url|youtube_url',
26
27
  }),
27
28
  external_ids: z.array(TVExternalId).optional().describe('IDs externos de la película'),
28
29
  title: z.string().describe('Título de la película'),
30
+ subtitle: z.string().optional().describe('Tagline'),
29
31
  actors: z.array(z.string()).optional().describe('Actores'),
30
32
  published: Date.optional().describe('Año de publicación'),
31
33
  genres: z.array(z.string()).optional().describe('Géneros'),
32
34
  online_rating: z.number().optional().describe('Puntuación en línea'),
33
35
  last_time_watched: Date.optional().describe('Última vez vista'),
34
36
  times_watched: z.number().default(0).optional().describe('Veces vista'),
37
+ videos: z.string().array().optional().describe('Vídeos promocionales'),
38
+ images: z.string().array().optional().describe('Imágenes promocionales'),
35
39
  })
36
40
  .and(StreamUrlsSchema).describe('Película');
@@ -20,17 +20,21 @@ export const TVSeriesSchema = SourceSchema
20
20
  icon: Icon.optional().default(TVSeriesIcon.value).describe('Icono de Lucide.'),
21
21
  cover: Image.nullable().optional().describe('Portada de la serie de TV.'),
22
22
  url: z.url().describe('URL de la serie de TV en IMDB o similar'),
23
+ trailer: z.url().describe('URL del trailer en YouTube u otras plataformas').optional(),
23
24
  watch_url: z.url().optional().describe('URL de la serie de TV en streaming').meta({
24
25
  deprecated: true,
25
26
  replacement: 'hbo_max_url|netflix_url|apple_tv_url|amazon_prime_url|disney_plus_url|hulu_url|pluto_tv_url|youtube_url',
26
27
  }),
27
28
  external_ids: z.array(TVExternalId).optional().describe('IDs externos de la serie de TV'),
28
29
  title: z.string().describe('Título de la serie de TV'),
30
+ subtitle: z.string().optional().describe('Tagline'),
29
31
  actors: z.array(z.string()).optional().describe('Actores'),
30
32
  published: Date.optional().describe('Año de publicación'),
31
33
  genres: z.array(z.string()).optional().describe('Géneros'),
32
34
  online_rating: z.number().optional().describe('Puntuación en línea'),
33
35
  last_time_watched: Date.optional().describe('Última vez vista'),
34
36
  times_watched: z.number().default(0).optional().describe('Veces vista'),
37
+ videos: z.string().array().optional().describe('Vídeos promocionales'),
38
+ images: z.string().array().optional().describe('Imágenes promocionales'),
35
39
  })
36
40
  .and(StreamUrlsSchema).describe('Serie de TV');
@@ -41,6 +41,11 @@
41
41
  "description": "URL de YouTube",
42
42
  "type": "string",
43
43
  "format": "uri"
44
+ },
45
+ "watch_url": {
46
+ "description": "URL de streaming",
47
+ "type": "string",
48
+ "format": "uri"
44
49
  }
45
50
  },
46
51
  "description": "URLs de streaming"
@@ -219,6 +219,11 @@
219
219
  "description": "URL de YouTube",
220
220
  "type": "string",
221
221
  "format": "uri"
222
+ },
223
+ "watch_url": {
224
+ "description": "URL de streaming",
225
+ "type": "string",
226
+ "format": "uri"
222
227
  }
223
228
  },
224
229
  "description": "URLs de streaming"
@@ -44,7 +44,7 @@
44
44
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
45
45
  },
46
46
  "icon": {
47
- "default": "movie",
47
+ "default": "film",
48
48
  "description": "Icono de Lucide.",
49
49
  "type": "string",
50
50
  "pattern": "^[a-z-]+$"
@@ -221,6 +221,11 @@
221
221
  "description": "Descripción de la fuente.",
222
222
  "type": "string"
223
223
  },
224
+ "trailer": {
225
+ "type": "string",
226
+ "format": "uri",
227
+ "description": "URL del trailer en YouTube u otras plataformas"
228
+ },
224
229
  "watch_url": {
225
230
  "description": "URL de la película en streaming",
226
231
  "deprecated": true,
@@ -236,6 +241,10 @@
236
241
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
237
242
  }
238
243
  },
244
+ "subtitle": {
245
+ "description": "Tagline",
246
+ "type": "string"
247
+ },
239
248
  "actors": {
240
249
  "description": "Actores",
241
250
  "type": "array",
@@ -278,6 +287,20 @@
278
287
  "description": "Veces vista",
279
288
  "default": 0,
280
289
  "type": "number"
290
+ },
291
+ "videos": {
292
+ "description": "Vídeos promocionales",
293
+ "type": "array",
294
+ "items": {
295
+ "type": "string"
296
+ }
297
+ },
298
+ "images": {
299
+ "description": "Imágenes promocionales",
300
+ "type": "array",
301
+ "items": {
302
+ "type": "string"
303
+ }
281
304
  }
282
305
  },
283
306
  "required": [
@@ -327,6 +350,11 @@
327
350
  "description": "URL de YouTube",
328
351
  "type": "string",
329
352
  "format": "uri"
353
+ },
354
+ "watch_url": {
355
+ "description": "URL de streaming",
356
+ "type": "string",
357
+ "format": "uri"
330
358
  }
331
359
  },
332
360
  "description": "URLs de streaming"
@@ -49,7 +49,7 @@
49
49
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
50
50
  },
51
51
  "icon": {
52
- "default": "movie",
52
+ "default": "film",
53
53
  "description": "Icono de Lucide.",
54
54
  "type": "string",
55
55
  "pattern": "^[a-z-]+$"
@@ -226,6 +226,11 @@
226
226
  "description": "Descripción de la fuente.",
227
227
  "type": "string"
228
228
  },
229
+ "trailer": {
230
+ "type": "string",
231
+ "format": "uri",
232
+ "description": "URL del trailer en YouTube u otras plataformas"
233
+ },
229
234
  "watch_url": {
230
235
  "description": "URL de la película en streaming",
231
236
  "deprecated": true,
@@ -241,6 +246,10 @@
241
246
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
242
247
  }
243
248
  },
249
+ "subtitle": {
250
+ "description": "Tagline",
251
+ "type": "string"
252
+ },
244
253
  "actors": {
245
254
  "description": "Actores",
246
255
  "type": "array",
@@ -283,6 +292,20 @@
283
292
  "description": "Veces vista",
284
293
  "default": 0,
285
294
  "type": "number"
295
+ },
296
+ "videos": {
297
+ "description": "Vídeos promocionales",
298
+ "type": "array",
299
+ "items": {
300
+ "type": "string"
301
+ }
302
+ },
303
+ "images": {
304
+ "description": "Imágenes promocionales",
305
+ "type": "array",
306
+ "items": {
307
+ "type": "string"
308
+ }
286
309
  }
287
310
  },
288
311
  "required": [
@@ -332,6 +355,11 @@
332
355
  "description": "URL de YouTube",
333
356
  "type": "string",
334
357
  "format": "uri"
358
+ },
359
+ "watch_url": {
360
+ "description": "URL de streaming",
361
+ "type": "string",
362
+ "format": "uri"
335
363
  }
336
364
  },
337
365
  "description": "URLs de streaming"
@@ -44,7 +44,7 @@
44
44
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
45
45
  },
46
46
  "icon": {
47
- "default": "movie",
47
+ "default": "film",
48
48
  "description": "Icono de Lucide.",
49
49
  "type": "string",
50
50
  "pattern": "^[a-z-]+$"
@@ -221,6 +221,11 @@
221
221
  "description": "Descripción de la fuente.",
222
222
  "type": "string"
223
223
  },
224
+ "trailer": {
225
+ "type": "string",
226
+ "format": "uri",
227
+ "description": "URL del trailer en YouTube u otras plataformas"
228
+ },
224
229
  "watch_url": {
225
230
  "description": "URL de la película en streaming",
226
231
  "deprecated": true,
@@ -236,6 +241,10 @@
236
241
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
237
242
  }
238
243
  },
244
+ "subtitle": {
245
+ "description": "Tagline",
246
+ "type": "string"
247
+ },
239
248
  "actors": {
240
249
  "description": "Actores",
241
250
  "type": "array",
@@ -278,6 +287,20 @@
278
287
  "description": "Veces vista",
279
288
  "default": 0,
280
289
  "type": "number"
290
+ },
291
+ "videos": {
292
+ "description": "Vídeos promocionales",
293
+ "type": "array",
294
+ "items": {
295
+ "type": "string"
296
+ }
297
+ },
298
+ "images": {
299
+ "description": "Imágenes promocionales",
300
+ "type": "array",
301
+ "items": {
302
+ "type": "string"
303
+ }
281
304
  }
282
305
  },
283
306
  "required": [
@@ -327,6 +350,11 @@
327
350
  "description": "URL de YouTube",
328
351
  "type": "string",
329
352
  "format": "uri"
353
+ },
354
+ "watch_url": {
355
+ "description": "URL de streaming",
356
+ "type": "string",
357
+ "format": "uri"
330
358
  }
331
359
  },
332
360
  "description": "URLs de streaming"
@@ -1339,7 +1339,7 @@
1339
1339
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1340
1340
  },
1341
1341
  "icon": {
1342
- "default": "movie",
1342
+ "default": "film",
1343
1343
  "description": "Icono de Lucide.",
1344
1344
  "type": "string",
1345
1345
  "pattern": "^[a-z-]+$"
@@ -1516,6 +1516,11 @@
1516
1516
  "description": "Descripción de la fuente.",
1517
1517
  "type": "string"
1518
1518
  },
1519
+ "trailer": {
1520
+ "type": "string",
1521
+ "format": "uri",
1522
+ "description": "URL del trailer en YouTube u otras plataformas"
1523
+ },
1519
1524
  "watch_url": {
1520
1525
  "description": "URL de la película en streaming",
1521
1526
  "deprecated": true,
@@ -1531,6 +1536,10 @@
1531
1536
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
1532
1537
  }
1533
1538
  },
1539
+ "subtitle": {
1540
+ "description": "Tagline",
1541
+ "type": "string"
1542
+ },
1534
1543
  "actors": {
1535
1544
  "description": "Actores",
1536
1545
  "type": "array",
@@ -1573,6 +1582,20 @@
1573
1582
  "description": "Veces vista",
1574
1583
  "default": 0,
1575
1584
  "type": "number"
1585
+ },
1586
+ "videos": {
1587
+ "description": "Vídeos promocionales",
1588
+ "type": "array",
1589
+ "items": {
1590
+ "type": "string"
1591
+ }
1592
+ },
1593
+ "images": {
1594
+ "description": "Imágenes promocionales",
1595
+ "type": "array",
1596
+ "items": {
1597
+ "type": "string"
1598
+ }
1576
1599
  }
1577
1600
  },
1578
1601
  "required": [
@@ -1622,6 +1645,11 @@
1622
1645
  "description": "URL de YouTube",
1623
1646
  "type": "string",
1624
1647
  "format": "uri"
1648
+ },
1649
+ "watch_url": {
1650
+ "description": "URL de streaming",
1651
+ "type": "string",
1652
+ "format": "uri"
1625
1653
  }
1626
1654
  },
1627
1655
  "description": "URLs de streaming"
@@ -2085,6 +2113,11 @@
2085
2113
  "description": "Descripción de la fuente.",
2086
2114
  "type": "string"
2087
2115
  },
2116
+ "trailer": {
2117
+ "type": "string",
2118
+ "format": "uri",
2119
+ "description": "URL del trailer en YouTube u otras plataformas"
2120
+ },
2088
2121
  "watch_url": {
2089
2122
  "description": "URL de la serie de TV en streaming",
2090
2123
  "deprecated": true,
@@ -2100,6 +2133,10 @@
2100
2133
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
2101
2134
  }
2102
2135
  },
2136
+ "subtitle": {
2137
+ "description": "Tagline",
2138
+ "type": "string"
2139
+ },
2103
2140
  "actors": {
2104
2141
  "description": "Actores",
2105
2142
  "type": "array",
@@ -2142,6 +2179,20 @@
2142
2179
  "description": "Veces vista",
2143
2180
  "default": 0,
2144
2181
  "type": "number"
2182
+ },
2183
+ "videos": {
2184
+ "description": "Vídeos promocionales",
2185
+ "type": "array",
2186
+ "items": {
2187
+ "type": "string"
2188
+ }
2189
+ },
2190
+ "images": {
2191
+ "description": "Imágenes promocionales",
2192
+ "type": "array",
2193
+ "items": {
2194
+ "type": "string"
2195
+ }
2145
2196
  }
2146
2197
  },
2147
2198
  "required": [
@@ -2191,6 +2242,11 @@
2191
2242
  "description": "URL de YouTube",
2192
2243
  "type": "string",
2193
2244
  "format": "uri"
2245
+ },
2246
+ "watch_url": {
2247
+ "description": "URL de streaming",
2248
+ "type": "string",
2249
+ "format": "uri"
2194
2250
  }
2195
2251
  },
2196
2252
  "description": "URLs de streaming"
@@ -221,6 +221,11 @@
221
221
  "description": "Descripción de la fuente.",
222
222
  "type": "string"
223
223
  },
224
+ "trailer": {
225
+ "type": "string",
226
+ "format": "uri",
227
+ "description": "URL del trailer en YouTube u otras plataformas"
228
+ },
224
229
  "watch_url": {
225
230
  "description": "URL de la serie de TV en streaming",
226
231
  "deprecated": true,
@@ -236,6 +241,10 @@
236
241
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
237
242
  }
238
243
  },
244
+ "subtitle": {
245
+ "description": "Tagline",
246
+ "type": "string"
247
+ },
239
248
  "actors": {
240
249
  "description": "Actores",
241
250
  "type": "array",
@@ -278,6 +287,20 @@
278
287
  "description": "Veces vista",
279
288
  "default": 0,
280
289
  "type": "number"
290
+ },
291
+ "videos": {
292
+ "description": "Vídeos promocionales",
293
+ "type": "array",
294
+ "items": {
295
+ "type": "string"
296
+ }
297
+ },
298
+ "images": {
299
+ "description": "Imágenes promocionales",
300
+ "type": "array",
301
+ "items": {
302
+ "type": "string"
303
+ }
281
304
  }
282
305
  },
283
306
  "required": [
@@ -327,6 +350,11 @@
327
350
  "description": "URL de YouTube",
328
351
  "type": "string",
329
352
  "format": "uri"
353
+ },
354
+ "watch_url": {
355
+ "description": "URL de streaming",
356
+ "type": "string",
357
+ "format": "uri"
330
358
  }
331
359
  },
332
360
  "description": "URLs de streaming"
@@ -226,6 +226,11 @@
226
226
  "description": "Descripción de la fuente.",
227
227
  "type": "string"
228
228
  },
229
+ "trailer": {
230
+ "type": "string",
231
+ "format": "uri",
232
+ "description": "URL del trailer en YouTube u otras plataformas"
233
+ },
229
234
  "watch_url": {
230
235
  "description": "URL de la serie de TV en streaming",
231
236
  "deprecated": true,
@@ -241,6 +246,10 @@
241
246
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
242
247
  }
243
248
  },
249
+ "subtitle": {
250
+ "description": "Tagline",
251
+ "type": "string"
252
+ },
244
253
  "actors": {
245
254
  "description": "Actores",
246
255
  "type": "array",
@@ -283,6 +292,20 @@
283
292
  "description": "Veces vista",
284
293
  "default": 0,
285
294
  "type": "number"
295
+ },
296
+ "videos": {
297
+ "description": "Vídeos promocionales",
298
+ "type": "array",
299
+ "items": {
300
+ "type": "string"
301
+ }
302
+ },
303
+ "images": {
304
+ "description": "Imágenes promocionales",
305
+ "type": "array",
306
+ "items": {
307
+ "type": "string"
308
+ }
286
309
  }
287
310
  },
288
311
  "required": [
@@ -332,6 +355,11 @@
332
355
  "description": "URL de YouTube",
333
356
  "type": "string",
334
357
  "format": "uri"
358
+ },
359
+ "watch_url": {
360
+ "description": "URL de streaming",
361
+ "type": "string",
362
+ "format": "uri"
335
363
  }
336
364
  },
337
365
  "description": "URLs de streaming"
@@ -221,6 +221,11 @@
221
221
  "description": "Descripción de la fuente.",
222
222
  "type": "string"
223
223
  },
224
+ "trailer": {
225
+ "type": "string",
226
+ "format": "uri",
227
+ "description": "URL del trailer en YouTube u otras plataformas"
228
+ },
224
229
  "watch_url": {
225
230
  "description": "URL de la serie de TV en streaming",
226
231
  "deprecated": true,
@@ -236,6 +241,10 @@
236
241
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
237
242
  }
238
243
  },
244
+ "subtitle": {
245
+ "description": "Tagline",
246
+ "type": "string"
247
+ },
239
248
  "actors": {
240
249
  "description": "Actores",
241
250
  "type": "array",
@@ -278,6 +287,20 @@
278
287
  "description": "Veces vista",
279
288
  "default": 0,
280
289
  "type": "number"
290
+ },
291
+ "videos": {
292
+ "description": "Vídeos promocionales",
293
+ "type": "array",
294
+ "items": {
295
+ "type": "string"
296
+ }
297
+ },
298
+ "images": {
299
+ "description": "Imágenes promocionales",
300
+ "type": "array",
301
+ "items": {
302
+ "type": "string"
303
+ }
281
304
  }
282
305
  },
283
306
  "required": [
@@ -327,6 +350,11 @@
327
350
  "description": "URL de YouTube",
328
351
  "type": "string",
329
352
  "format": "uri"
353
+ },
354
+ "watch_url": {
355
+ "description": "URL de streaming",
356
+ "type": "string",
357
+ "format": "uri"
330
358
  }
331
359
  },
332
360
  "description": "URLs de streaming"
@@ -1344,7 +1344,7 @@
1344
1344
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
1345
1345
  },
1346
1346
  "icon": {
1347
- "default": "movie",
1347
+ "default": "film",
1348
1348
  "description": "Icono de Lucide.",
1349
1349
  "type": "string",
1350
1350
  "pattern": "^[a-z-]+$"
@@ -1521,6 +1521,11 @@
1521
1521
  "description": "Descripción de la fuente.",
1522
1522
  "type": "string"
1523
1523
  },
1524
+ "trailer": {
1525
+ "type": "string",
1526
+ "format": "uri",
1527
+ "description": "URL del trailer en YouTube u otras plataformas"
1528
+ },
1524
1529
  "watch_url": {
1525
1530
  "description": "URL de la película en streaming",
1526
1531
  "deprecated": true,
@@ -1536,6 +1541,10 @@
1536
1541
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
1537
1542
  }
1538
1543
  },
1544
+ "subtitle": {
1545
+ "description": "Tagline",
1546
+ "type": "string"
1547
+ },
1539
1548
  "actors": {
1540
1549
  "description": "Actores",
1541
1550
  "type": "array",
@@ -1578,6 +1587,20 @@
1578
1587
  "description": "Veces vista",
1579
1588
  "default": 0,
1580
1589
  "type": "number"
1590
+ },
1591
+ "videos": {
1592
+ "description": "Vídeos promocionales",
1593
+ "type": "array",
1594
+ "items": {
1595
+ "type": "string"
1596
+ }
1597
+ },
1598
+ "images": {
1599
+ "description": "Imágenes promocionales",
1600
+ "type": "array",
1601
+ "items": {
1602
+ "type": "string"
1603
+ }
1581
1604
  }
1582
1605
  },
1583
1606
  "required": [
@@ -1627,6 +1650,11 @@
1627
1650
  "description": "URL de YouTube",
1628
1651
  "type": "string",
1629
1652
  "format": "uri"
1653
+ },
1654
+ "watch_url": {
1655
+ "description": "URL de streaming",
1656
+ "type": "string",
1657
+ "format": "uri"
1630
1658
  }
1631
1659
  },
1632
1660
  "description": "URLs de streaming"
@@ -2090,6 +2118,11 @@
2090
2118
  "description": "Descripción de la fuente.",
2091
2119
  "type": "string"
2092
2120
  },
2121
+ "trailer": {
2122
+ "type": "string",
2123
+ "format": "uri",
2124
+ "description": "URL del trailer en YouTube u otras plataformas"
2125
+ },
2093
2126
  "watch_url": {
2094
2127
  "description": "URL de la serie de TV en streaming",
2095
2128
  "deprecated": true,
@@ -2105,6 +2138,10 @@
2105
2138
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
2106
2139
  }
2107
2140
  },
2141
+ "subtitle": {
2142
+ "description": "Tagline",
2143
+ "type": "string"
2144
+ },
2108
2145
  "actors": {
2109
2146
  "description": "Actores",
2110
2147
  "type": "array",
@@ -2147,6 +2184,20 @@
2147
2184
  "description": "Veces vista",
2148
2185
  "default": 0,
2149
2186
  "type": "number"
2187
+ },
2188
+ "videos": {
2189
+ "description": "Vídeos promocionales",
2190
+ "type": "array",
2191
+ "items": {
2192
+ "type": "string"
2193
+ }
2194
+ },
2195
+ "images": {
2196
+ "description": "Imágenes promocionales",
2197
+ "type": "array",
2198
+ "items": {
2199
+ "type": "string"
2200
+ }
2150
2201
  }
2151
2202
  },
2152
2203
  "required": [
@@ -2196,6 +2247,11 @@
2196
2247
  "description": "URL de YouTube",
2197
2248
  "type": "string",
2198
2249
  "format": "uri"
2250
+ },
2251
+ "watch_url": {
2252
+ "description": "URL de streaming",
2253
+ "type": "string",
2254
+ "format": "uri"
2199
2255
  }
2200
2256
  },
2201
2257
  "description": "URLs de streaming"
@@ -3781,7 +3837,7 @@
3781
3837
  "pattern": "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
3782
3838
  },
3783
3839
  "icon": {
3784
- "default": "movie",
3840
+ "default": "film",
3785
3841
  "description": "Icono de Lucide.",
3786
3842
  "type": "string",
3787
3843
  "pattern": "^[a-z-]+$"
@@ -3958,6 +4014,11 @@
3958
4014
  "description": "Descripción de la fuente.",
3959
4015
  "type": "string"
3960
4016
  },
4017
+ "trailer": {
4018
+ "type": "string",
4019
+ "format": "uri",
4020
+ "description": "URL del trailer en YouTube u otras plataformas"
4021
+ },
3961
4022
  "watch_url": {
3962
4023
  "description": "URL de la película en streaming",
3963
4024
  "deprecated": true,
@@ -3973,6 +4034,10 @@
3973
4034
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
3974
4035
  }
3975
4036
  },
4037
+ "subtitle": {
4038
+ "description": "Tagline",
4039
+ "type": "string"
4040
+ },
3976
4041
  "actors": {
3977
4042
  "description": "Actores",
3978
4043
  "type": "array",
@@ -4015,6 +4080,20 @@
4015
4080
  "description": "Veces vista",
4016
4081
  "default": 0,
4017
4082
  "type": "number"
4083
+ },
4084
+ "videos": {
4085
+ "description": "Vídeos promocionales",
4086
+ "type": "array",
4087
+ "items": {
4088
+ "type": "string"
4089
+ }
4090
+ },
4091
+ "images": {
4092
+ "description": "Imágenes promocionales",
4093
+ "type": "array",
4094
+ "items": {
4095
+ "type": "string"
4096
+ }
4018
4097
  }
4019
4098
  },
4020
4099
  "required": [
@@ -4064,6 +4143,11 @@
4064
4143
  "description": "URL de YouTube",
4065
4144
  "type": "string",
4066
4145
  "format": "uri"
4146
+ },
4147
+ "watch_url": {
4148
+ "description": "URL de streaming",
4149
+ "type": "string",
4150
+ "format": "uri"
4067
4151
  }
4068
4152
  },
4069
4153
  "description": "URLs de streaming"
@@ -4529,6 +4613,11 @@
4529
4613
  "description": "Descripción de la fuente.",
4530
4614
  "type": "string"
4531
4615
  },
4616
+ "trailer": {
4617
+ "type": "string",
4618
+ "format": "uri",
4619
+ "description": "URL del trailer en YouTube u otras plataformas"
4620
+ },
4532
4621
  "watch_url": {
4533
4622
  "description": "URL de la serie de TV en streaming",
4534
4623
  "deprecated": true,
@@ -4544,6 +4633,10 @@
4544
4633
  "pattern": "^(tmdb|imdb|watchmode|tvmaze|tvdb):.+$"
4545
4634
  }
4546
4635
  },
4636
+ "subtitle": {
4637
+ "description": "Tagline",
4638
+ "type": "string"
4639
+ },
4547
4640
  "actors": {
4548
4641
  "description": "Actores",
4549
4642
  "type": "array",
@@ -4586,6 +4679,20 @@
4586
4679
  "description": "Veces vista",
4587
4680
  "default": 0,
4588
4681
  "type": "number"
4682
+ },
4683
+ "videos": {
4684
+ "description": "Vídeos promocionales",
4685
+ "type": "array",
4686
+ "items": {
4687
+ "type": "string"
4688
+ }
4689
+ },
4690
+ "images": {
4691
+ "description": "Imágenes promocionales",
4692
+ "type": "array",
4693
+ "items": {
4694
+ "type": "string"
4695
+ }
4589
4696
  }
4590
4697
  },
4591
4698
  "required": [
@@ -4635,6 +4742,11 @@
4635
4742
  "description": "URL de YouTube",
4636
4743
  "type": "string",
4637
4744
  "format": "uri"
4745
+ },
4746
+ "watch_url": {
4747
+ "description": "URL de streaming",
4748
+ "type": "string",
4749
+ "format": "uri"
4638
4750
  }
4639
4751
  },
4640
4752
  "description": "URLs de streaming"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@segha/catalog",
3
- "version": "5.0.2",
3
+ "version": "5.0.4",
4
4
  "main": "index.ts",
5
5
  "description": "Schemas for Petroglyph Catalog",
6
6
  "segha": {