File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -487,7 +487,22 @@ export class ItemService {
487487 }
488488}
489489
490- export const itemGetManyRelations = [
490+ export type ItemGetManyRelations =
491+ | 'item_about'
492+ | 'item_about.item_itunes_episode_type'
493+ | 'item_chat'
494+ | 'item_description'
495+ | 'item_enclosures'
496+ | 'item_enclosures.item_enclosure_integrity'
497+ | 'item_enclosures.item_enclosure_sources'
498+ | 'item_images'
499+ | 'item_persons'
500+ | 'item_season'
501+ | 'item_season.channel_season'
502+ | 'live_item'
503+ | 'live_item.live_item_status' ;
504+
505+ export const itemGetManyRelations : ItemGetManyRelations [ ] = [
491506 'item_about' ,
492507 'item_about.item_itunes_episode_type' ,
493508 'item_chat' ,
@@ -503,6 +518,17 @@ export const itemGetManyRelations = [
503518 'live_item.live_item_status'
504519] ;
505520
521+ export type ItemGetManyRelationsWithChannel =
522+ | ItemGetManyRelations
523+ | 'channel'
524+ | 'channel.channel_images' ;
525+
526+ export const itemGetManyRelationsWithChannel : ItemGetManyRelationsWithChannel [ ] = [
527+ ...itemGetManyRelations ,
528+ 'channel' ,
529+ 'channel.channel_images'
530+ ] ;
531+
506532export type SubItemGetManyRelations =
507533 | 'item'
508534 | 'item.item_about'
You can’t perform that action at this time.
0 commit comments