@rxdrag/rxcms-models 0.3.65 → 0.3.67

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.
Files changed (48) hide show
  1. package/dist/classes/LangQueryOptions.d.ts +10 -0
  2. package/dist/classes/MediaQueryOptions.d.ts +5 -0
  3. package/dist/classes/TaskQueryOptions.d.ts +21 -0
  4. package/dist/classes/VideoFolderQueryOptions.d.ts +26 -0
  5. package/dist/classes/VideoQueryOptions.d.ts +31 -0
  6. package/dist/classes/WebsiteQueryOptions.d.ts +10 -0
  7. package/dist/classes/index.d.ts +3 -0
  8. package/dist/entries/index.d.ts +3 -0
  9. package/dist/entries/taskEntry.d.ts +2 -0
  10. package/dist/entries/videoEntry.d.ts +2 -0
  11. package/dist/entries/videoFolderEntry.d.ts +2 -0
  12. package/dist/fields/LangFields.d.ts +4 -0
  13. package/dist/fields/MediaFields.d.ts +3 -1
  14. package/dist/fields/TaskFields.d.ts +19 -0
  15. package/dist/fields/VideoFields.d.ts +20 -0
  16. package/dist/fields/VideoFolderFields.d.ts +17 -0
  17. package/dist/fields/WebsiteFields.d.ts +4 -0
  18. package/dist/fields/index.d.ts +3 -0
  19. package/dist/index.mjs +560 -19
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/interfaces/Lang.d.ts +6 -0
  22. package/dist/interfaces/LangBoolExp.d.ts +4 -0
  23. package/dist/interfaces/LangInput.d.ts +4 -0
  24. package/dist/interfaces/Media.d.ts +3 -0
  25. package/dist/interfaces/MediaBoolExp.d.ts +2 -0
  26. package/dist/interfaces/MediaInput.d.ts +2 -0
  27. package/dist/interfaces/Task.d.ts +21 -0
  28. package/dist/interfaces/TaskBoolExp.d.ts +26 -0
  29. package/dist/interfaces/TaskDistinctExp.d.ts +18 -0
  30. package/dist/interfaces/TaskInput.d.ts +22 -0
  31. package/dist/interfaces/TaskOrderBy.d.ts +18 -0
  32. package/dist/interfaces/TaskStatus.d.ts +18 -0
  33. package/dist/interfaces/TaskType.d.ts +26 -0
  34. package/dist/interfaces/Video.d.ts +27 -0
  35. package/dist/interfaces/VideoBoolExp.d.ts +29 -0
  36. package/dist/interfaces/VideoDistinctExp.d.ts +15 -0
  37. package/dist/interfaces/VideoFolder.d.ts +23 -0
  38. package/dist/interfaces/VideoFolderBoolExp.d.ts +24 -0
  39. package/dist/interfaces/VideoFolderDistinctExp.d.ts +10 -0
  40. package/dist/interfaces/VideoFolderInput.d.ts +23 -0
  41. package/dist/interfaces/VideoFolderOrderBy.d.ts +11 -0
  42. package/dist/interfaces/VideoInput.d.ts +28 -0
  43. package/dist/interfaces/VideoOrderBy.d.ts +16 -0
  44. package/dist/interfaces/Website.d.ts +6 -0
  45. package/dist/interfaces/WebsiteBoolExp.d.ts +4 -0
  46. package/dist/interfaces/WebsiteInput.d.ts +4 -0
  47. package/dist/interfaces/index.d.ts +17 -0
  48. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -24,7 +24,8 @@ const aggregateEntities = {
24
24
  coverOfThemeAggregate: "Theme",
25
25
  usedByThemConfigAggregate: "ThemeConfig",
26
26
  pageMetaAggregate: "PageMeta",
27
- searchIndexAggregate: "SearchIndex"
27
+ searchIndexAggregate: "SearchIndex",
28
+ coverOfVideoAggregate: "Video"
28
29
  },
29
30
  Website: {
30
31
  usersAggregate: "User",
@@ -38,6 +39,8 @@ const aggregateEntities = {
38
39
  partsOfProductCategoryAggregate: "ProductCategory",
39
40
  partsOfSpamFilterRuleAggregate: "SpamFilterRule",
40
41
  partsOfMediaAggregate: "Media",
42
+ partsOfVideoFolderAggregate: "VideoFolder",
43
+ partsOfVideoAggregate: "Video",
41
44
  langsAggregate: "Lang",
42
45
  themesAggregate: "Theme",
43
46
  changelogsAggregate: "ChangeLog",
@@ -54,6 +57,8 @@ const aggregateEntities = {
54
57
  webPartsOfProductCategoryAggregate: "ProductCategory",
55
58
  webPartsOfSpamFilterRuleAggregate: "SpamFilterRule",
56
59
  webPartsOfMediaAggregate: "Media",
60
+ webPartsOfVideoFolderAggregate: "VideoFolder",
61
+ webPartsOfVideoAggregate: "Video",
57
62
  websitesAggregate: "Website",
58
63
  baseLangOfAggregate: "Website",
59
64
  themesAggregate: "Theme"
@@ -106,6 +111,13 @@ const aggregateEntities = {
106
111
  },
107
112
  TemplateCategory: {
108
113
  templatesAggregate: "SectionTemplate"
114
+ },
115
+ VideoFolder: {
116
+ childrenAggregate: "VideoFolder",
117
+ videosAggregate: "Video"
118
+ },
119
+ Video: {
120
+ coverAggregate: "Media"
109
121
  }
110
122
  };
111
123
  class QueryOptions {
@@ -667,6 +679,50 @@ const spamFilterRuleToInput = (entity) => {
667
679
  website: convertHasOneToInput(entity.website)
668
680
  };
669
681
  };
682
+ const videoToInputCascade = (entity) => {
683
+ var _a;
684
+ const { coverAggregate, ...rest } = entity;
685
+ return {
686
+ ...rest,
687
+ lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
688
+ folder: entity.folder ? processHasOneClear({ sync: videoFolderToInput(entity.folder) }) : void 0,
689
+ cover: entity.cover ? processHasManyClear({ sync: (_a = entity.cover) == null ? void 0 : _a.map((ent) => mediaToInput(ent)) }) : void 0,
690
+ website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
691
+ };
692
+ };
693
+ const videoToInput = (entity) => {
694
+ const { coverAggregate, ...rest } = entity;
695
+ return {
696
+ ...rest,
697
+ lang: convertHasOneToInput(entity.lang),
698
+ folder: convertHasOneToInput(entity.folder),
699
+ cover: convertHasManyToInput(entity.cover),
700
+ website: convertHasOneToInput(entity.website)
701
+ };
702
+ };
703
+ const videoFolderToInputCascade = (entity) => {
704
+ var _a, _b;
705
+ const { childrenAggregate, videosAggregate, ...rest } = entity;
706
+ return {
707
+ ...rest,
708
+ lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
709
+ children: entity.children ? processHasManyClear({ sync: (_a = entity.children) == null ? void 0 : _a.map((ent) => videoFolderToInput(ent)) }) : void 0,
710
+ website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
711
+ videos: entity.videos ? processHasManyClear({ sync: (_b = entity.videos) == null ? void 0 : _b.map((ent) => videoToInput(ent)) }) : void 0,
712
+ parent: entity.parent ? processHasOneClear({ sync: videoFolderToInput(entity.parent) }) : void 0
713
+ };
714
+ };
715
+ const videoFolderToInput = (entity) => {
716
+ const { childrenAggregate, videosAggregate, ...rest } = entity;
717
+ return {
718
+ ...rest,
719
+ lang: convertHasOneToInput(entity.lang),
720
+ children: convertHasManyToInput(entity.children),
721
+ website: convertHasOneToInput(entity.website),
722
+ videos: convertHasManyToInput(entity.videos),
723
+ parent: convertHasOneToInput(entity.parent)
724
+ };
725
+ };
670
726
  const analyticsConfigToInputCascade = (entity) => {
671
727
  return {
672
728
  ...entity,
@@ -718,8 +774,8 @@ const searchIndexToInput = (entity) => {
718
774
  };
719
775
  };
720
776
  const websiteToInputCascade = (entity) => {
721
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o;
722
- const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, ...rest } = entity;
777
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q;
778
+ const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, partsOfVideoFolderAggregate, partsOfVideoAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, ...rest } = entity;
723
779
  return {
724
780
  ...rest,
725
781
  websiteType: entity.websiteType ? processHasOneClear({ sync: websiteTypeToInput(entity.websiteType) }) : void 0,
@@ -735,17 +791,19 @@ const websiteToInputCascade = (entity) => {
735
791
  partsOfProductCategory: entity.partsOfProductCategory ? processHasManyClear({ sync: (_i = entity.partsOfProductCategory) == null ? void 0 : _i.map((ent) => productCategoryToInput(ent)) }) : void 0,
736
792
  partsOfSpamFilterRule: entity.partsOfSpamFilterRule ? processHasManyClear({ sync: (_j = entity.partsOfSpamFilterRule) == null ? void 0 : _j.map((ent) => spamFilterRuleToInput(ent)) }) : void 0,
737
793
  partsOfMedia: entity.partsOfMedia ? processHasManyClear({ sync: (_k = entity.partsOfMedia) == null ? void 0 : _k.map((ent) => mediaToInput(ent)) }) : void 0,
738
- langs: entity.langs ? processHasManyClear({ sync: (_l = entity.langs) == null ? void 0 : _l.map((ent) => langToInput(ent)) }) : void 0,
794
+ partsOfVideoFolder: entity.partsOfVideoFolder ? processHasManyClear({ sync: (_l = entity.partsOfVideoFolder) == null ? void 0 : _l.map((ent) => videoFolderToInput(ent)) }) : void 0,
795
+ partsOfVideo: entity.partsOfVideo ? processHasManyClear({ sync: (_m = entity.partsOfVideo) == null ? void 0 : _m.map((ent) => videoToInput(ent)) }) : void 0,
796
+ langs: entity.langs ? processHasManyClear({ sync: (_n = entity.langs) == null ? void 0 : _n.map((ent) => langToInput(ent)) }) : void 0,
739
797
  baseLang: entity.baseLang ? processHasOneClear({ sync: langToInput(entity.baseLang) }) : void 0,
740
- themes: entity.themes ? processHasManyClear({ sync: (_m = entity.themes) == null ? void 0 : _m.map((ent) => themeToInput(ent)) }) : void 0,
798
+ themes: entity.themes ? processHasManyClear({ sync: (_o = entity.themes) == null ? void 0 : _o.map((ent) => themeToInput(ent)) }) : void 0,
741
799
  analyticsConfig: entity.analyticsConfig ? processHasOneClear({ sync: analyticsConfigToInput(entity.analyticsConfig) }) : void 0,
742
800
  settings: entity.settings ? processHasOneClear({ sync: websiteSettingsToInput(entity.settings) }) : void 0,
743
- changelogs: entity.changelogs ? processHasManyClear({ sync: (_n = entity.changelogs) == null ? void 0 : _n.map((ent) => changeLogToInput(ent)) }) : void 0,
744
- searchIndexes: entity.searchIndexes ? processHasManyClear({ sync: (_o = entity.searchIndexes) == null ? void 0 : _o.map((ent) => searchIndexToInput(ent)) }) : void 0
801
+ changelogs: entity.changelogs ? processHasManyClear({ sync: (_p = entity.changelogs) == null ? void 0 : _p.map((ent) => changeLogToInput(ent)) }) : void 0,
802
+ searchIndexes: entity.searchIndexes ? processHasManyClear({ sync: (_q = entity.searchIndexes) == null ? void 0 : _q.map((ent) => searchIndexToInput(ent)) }) : void 0
745
803
  };
746
804
  };
747
805
  const websiteToInput = (entity) => {
748
- const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, ...rest } = entity;
806
+ const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, partsOfVideoFolderAggregate, partsOfVideoAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, ...rest } = entity;
749
807
  return {
750
808
  ...rest,
751
809
  websiteType: convertHasOneToInput(entity.websiteType),
@@ -761,6 +819,8 @@ const websiteToInput = (entity) => {
761
819
  partsOfProductCategory: convertHasManyToInput(entity.partsOfProductCategory),
762
820
  partsOfSpamFilterRule: convertHasManyToInput(entity.partsOfSpamFilterRule),
763
821
  partsOfMedia: convertHasManyToInput(entity.partsOfMedia),
822
+ partsOfVideoFolder: convertHasManyToInput(entity.partsOfVideoFolder),
823
+ partsOfVideo: convertHasManyToInput(entity.partsOfVideo),
764
824
  langs: convertHasManyToInput(entity.langs),
765
825
  baseLang: convertHasOneToInput(entity.baseLang),
766
826
  themes: convertHasManyToInput(entity.themes),
@@ -806,8 +866,8 @@ const enquiryToInput = (entity) => {
806
866
  };
807
867
  };
808
868
  const langToInputCascade = (entity) => {
809
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m;
810
- const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, ...rest } = entity;
869
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o;
870
+ const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, webPartsOfVideoFolderAggregate, webPartsOfVideoAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, ...rest } = entity;
811
871
  return {
812
872
  ...rest,
813
873
  webPartsOfMediaFolder: entity.webPartsOfMediaFolder ? processHasManyClear({ sync: (_a = entity.webPartsOfMediaFolder) == null ? void 0 : _a.map((ent) => mediaFolderToInput(ent)) }) : void 0,
@@ -820,13 +880,15 @@ const langToInputCascade = (entity) => {
820
880
  webPartsOfProductCategory: entity.webPartsOfProductCategory ? processHasManyClear({ sync: (_h = entity.webPartsOfProductCategory) == null ? void 0 : _h.map((ent) => productCategoryToInput(ent)) }) : void 0,
821
881
  webPartsOfSpamFilterRule: entity.webPartsOfSpamFilterRule ? processHasManyClear({ sync: (_i = entity.webPartsOfSpamFilterRule) == null ? void 0 : _i.map((ent) => spamFilterRuleToInput(ent)) }) : void 0,
822
882
  webPartsOfMedia: entity.webPartsOfMedia ? processHasManyClear({ sync: (_j = entity.webPartsOfMedia) == null ? void 0 : _j.map((ent) => mediaToInput(ent)) }) : void 0,
823
- websites: entity.websites ? processHasManyClear({ sync: (_k = entity.websites) == null ? void 0 : _k.map((ent) => websiteToInput(ent)) }) : void 0,
824
- baseLangOf: entity.baseLangOf ? processHasManyClear({ sync: (_l = entity.baseLangOf) == null ? void 0 : _l.map((ent) => websiteToInput(ent)) }) : void 0,
825
- themes: entity.themes ? processHasManyClear({ sync: (_m = entity.themes) == null ? void 0 : _m.map((ent) => themeToInput(ent)) }) : void 0
883
+ webPartsOfVideoFolder: entity.webPartsOfVideoFolder ? processHasManyClear({ sync: (_k = entity.webPartsOfVideoFolder) == null ? void 0 : _k.map((ent) => videoFolderToInput(ent)) }) : void 0,
884
+ webPartsOfVideo: entity.webPartsOfVideo ? processHasManyClear({ sync: (_l = entity.webPartsOfVideo) == null ? void 0 : _l.map((ent) => videoToInput(ent)) }) : void 0,
885
+ websites: entity.websites ? processHasManyClear({ sync: (_m = entity.websites) == null ? void 0 : _m.map((ent) => websiteToInput(ent)) }) : void 0,
886
+ baseLangOf: entity.baseLangOf ? processHasManyClear({ sync: (_n = entity.baseLangOf) == null ? void 0 : _n.map((ent) => websiteToInput(ent)) }) : void 0,
887
+ themes: entity.themes ? processHasManyClear({ sync: (_o = entity.themes) == null ? void 0 : _o.map((ent) => themeToInput(ent)) }) : void 0
826
888
  };
827
889
  };
828
890
  const langToInput = (entity) => {
829
- const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, ...rest } = entity;
891
+ const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, webPartsOfVideoFolderAggregate, webPartsOfVideoAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, ...rest } = entity;
830
892
  return {
831
893
  ...rest,
832
894
  webPartsOfMediaFolder: convertHasManyToInput(entity.webPartsOfMediaFolder),
@@ -839,6 +901,8 @@ const langToInput = (entity) => {
839
901
  webPartsOfProductCategory: convertHasManyToInput(entity.webPartsOfProductCategory),
840
902
  webPartsOfSpamFilterRule: convertHasManyToInput(entity.webPartsOfSpamFilterRule),
841
903
  webPartsOfMedia: convertHasManyToInput(entity.webPartsOfMedia),
904
+ webPartsOfVideoFolder: convertHasManyToInput(entity.webPartsOfVideoFolder),
905
+ webPartsOfVideo: convertHasManyToInput(entity.webPartsOfVideo),
842
906
  websites: convertHasManyToInput(entity.websites),
843
907
  baseLangOf: convertHasManyToInput(entity.baseLangOf),
844
908
  themes: convertHasManyToInput(entity.themes)
@@ -868,8 +932,8 @@ const mediaFolderToInput = (entity) => {
868
932
  };
869
933
  };
870
934
  const mediaToInputCascade = (entity) => {
871
- var _a, _b, _c, _d, _e, _f, _g, _h;
872
- const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, ...rest } = entity;
935
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i;
936
+ const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, coverOfVideoAggregate, ...rest } = entity;
873
937
  return {
874
938
  ...rest,
875
939
  folder: entity.folder ? processHasOneClear({ sync: mediaFolderToInput(entity.folder) }) : void 0,
@@ -884,11 +948,12 @@ const mediaToInputCascade = (entity) => {
884
948
  postCategory: entity.postCategory ? processHasOneClear({ sync: postCategoryToInput(entity.postCategory) }) : void 0,
885
949
  usedByThemConfig: entity.usedByThemConfig ? processHasManyClear({ sync: (_f = entity.usedByThemConfig) == null ? void 0 : _f.map((ent) => themeConfigToInput(ent)) }) : void 0,
886
950
  pageMeta: entity.pageMeta ? processHasManyClear({ sync: (_g = entity.pageMeta) == null ? void 0 : _g.map((ent) => pageMetaToInput(ent)) }) : void 0,
887
- searchIndex: entity.searchIndex ? processHasManyClear({ sync: (_h = entity.searchIndex) == null ? void 0 : _h.map((ent) => searchIndexToInput(ent)) }) : void 0
951
+ searchIndex: entity.searchIndex ? processHasManyClear({ sync: (_h = entity.searchIndex) == null ? void 0 : _h.map((ent) => searchIndexToInput(ent)) }) : void 0,
952
+ coverOfVideo: entity.coverOfVideo ? processHasManyClear({ sync: (_i = entity.coverOfVideo) == null ? void 0 : _i.map((ent) => videoToInput(ent)) }) : void 0
888
953
  };
889
954
  };
890
955
  const mediaToInput = (entity) => {
891
- const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, ...rest } = entity;
956
+ const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, coverOfVideoAggregate, ...rest } = entity;
892
957
  return {
893
958
  ...rest,
894
959
  folder: convertHasOneToInput(entity.folder),
@@ -903,7 +968,8 @@ const mediaToInput = (entity) => {
903
968
  postCategory: convertHasOneToInput(entity.postCategory),
904
969
  usedByThemConfig: convertHasManyToInput(entity.usedByThemConfig),
905
970
  pageMeta: convertHasManyToInput(entity.pageMeta),
906
- searchIndex: convertHasManyToInput(entity.searchIndex)
971
+ searchIndex: convertHasManyToInput(entity.searchIndex),
972
+ coverOfVideo: convertHasManyToInput(entity.coverOfVideo)
907
973
  };
908
974
  };
909
975
  const userToInputCascade = (entity) => {
@@ -1613,6 +1679,79 @@ var SourceType = /* @__PURE__ */ ((SourceType2) => {
1613
1679
  SourceType2["post"] = "post";
1614
1680
  return SourceType2;
1615
1681
  })(SourceType || {});
1682
+ const VideoFolderEntityName = "VideoFolder";
1683
+ const VideoFolderEntityLabel = "视频分类";
1684
+ var VideoFolderDistinctEnum = /* @__PURE__ */ ((VideoFolderDistinctEnum2) => {
1685
+ VideoFolderDistinctEnum2["id"] = "id";
1686
+ VideoFolderDistinctEnum2["name"] = "name";
1687
+ VideoFolderDistinctEnum2["seqValue"] = "seqValue";
1688
+ VideoFolderDistinctEnum2["createdAt"] = "createdAt";
1689
+ VideoFolderDistinctEnum2["updatedAt"] = "updatedAt";
1690
+ VideoFolderDistinctEnum2["content"] = "content";
1691
+ return VideoFolderDistinctEnum2;
1692
+ })(VideoFolderDistinctEnum || {});
1693
+ const VideoEntityName = "Video";
1694
+ const VideoEntityLabel = "视频";
1695
+ var VideoDistinctEnum = /* @__PURE__ */ ((VideoDistinctEnum2) => {
1696
+ VideoDistinctEnum2["id"] = "id";
1697
+ VideoDistinctEnum2["name"] = "name";
1698
+ VideoDistinctEnum2["size"] = "size";
1699
+ VideoDistinctEnum2["mimeType"] = "mimeType";
1700
+ VideoDistinctEnum2["extName"] = "extName";
1701
+ VideoDistinctEnum2["description"] = "description";
1702
+ VideoDistinctEnum2["url"] = "url";
1703
+ VideoDistinctEnum2["videoId"] = "videoId";
1704
+ VideoDistinctEnum2["createdAt"] = "createdAt";
1705
+ VideoDistinctEnum2["updatedAt"] = "updatedAt";
1706
+ VideoDistinctEnum2["content"] = "content";
1707
+ return VideoDistinctEnum2;
1708
+ })(VideoDistinctEnum || {});
1709
+ const TaskEntityName = "Task";
1710
+ const TaskEntityLabel = "";
1711
+ const taskToInputCascade = (entity) => {
1712
+ return {
1713
+ ...entity
1714
+ };
1715
+ };
1716
+ const taskToInput = (entity) => {
1717
+ return {
1718
+ ...entity
1719
+ };
1720
+ };
1721
+ var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
1722
+ TaskDistinctEnum2["id"] = "id";
1723
+ TaskDistinctEnum2["jobId"] = "jobId";
1724
+ TaskDistinctEnum2["type"] = "type";
1725
+ TaskDistinctEnum2["websiteId"] = "websiteId";
1726
+ TaskDistinctEnum2["themeId"] = "themeId";
1727
+ TaskDistinctEnum2["name"] = "name";
1728
+ TaskDistinctEnum2["message"] = "message";
1729
+ TaskDistinctEnum2["status"] = "status";
1730
+ TaskDistinctEnum2["params"] = "params";
1731
+ TaskDistinctEnum2["result"] = "result";
1732
+ TaskDistinctEnum2["createdAt"] = "createdAt";
1733
+ TaskDistinctEnum2["updatedAt"] = "updatedAt";
1734
+ TaskDistinctEnum2["startedAt"] = "startedAt";
1735
+ TaskDistinctEnum2["endedAt"] = "endedAt";
1736
+ TaskDistinctEnum2["idempotencyKey"] = "idempotencyKey";
1737
+ return TaskDistinctEnum2;
1738
+ })(TaskDistinctEnum || {});
1739
+ var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
1740
+ TaskStatus2["A_Progress"] = "A_Progress";
1741
+ TaskStatus2["B_Failure"] = "B_Failure";
1742
+ TaskStatus2["C_Pending"] = "C_Pending";
1743
+ TaskStatus2["D_Success"] = "D_Success";
1744
+ return TaskStatus2;
1745
+ })(TaskStatus || {});
1746
+ var TaskType = /* @__PURE__ */ ((TaskType2) => {
1747
+ TaskType2["TranslateTheme"] = "TranslateTheme";
1748
+ TaskType2["TranslateWebsite"] = "TranslateWebsite";
1749
+ TaskType2["TranslatePage"] = "TranslatePage";
1750
+ TaskType2["TranslateComponent"] = "TranslateComponent";
1751
+ TaskType2["TranslatePost"] = "TranslatePost";
1752
+ TaskType2["TranslateProduct"] = "TranslateProduct";
1753
+ return TaskType2;
1754
+ })(TaskType || {});
1616
1755
  class RoleQueryOptions extends QueryOptions {
1617
1756
  constructor(fields, queryArgs) {
1618
1757
  super(RoleEntityName, fields, queryArgs);
@@ -3184,6 +3323,168 @@ class SpamFilterRuleQueryOptions extends QueryOptions {
3184
3323
  return this;
3185
3324
  }
3186
3325
  }
3326
+ class VideoQueryOptions extends QueryOptions {
3327
+ constructor(fields, queryArgs) {
3328
+ super(VideoEntityName, fields, queryArgs);
3329
+ }
3330
+ id() {
3331
+ this.addField("id");
3332
+ return this;
3333
+ }
3334
+ name() {
3335
+ this.addField("name");
3336
+ return this;
3337
+ }
3338
+ size() {
3339
+ this.addField("size");
3340
+ return this;
3341
+ }
3342
+ mimeType() {
3343
+ this.addField("mimeType");
3344
+ return this;
3345
+ }
3346
+ extName() {
3347
+ this.addField("extName");
3348
+ return this;
3349
+ }
3350
+ description() {
3351
+ this.addField("description");
3352
+ return this;
3353
+ }
3354
+ url() {
3355
+ this.addField("url");
3356
+ return this;
3357
+ }
3358
+ videoId() {
3359
+ this.addField("videoId");
3360
+ return this;
3361
+ }
3362
+ createdAt() {
3363
+ this.addField("createdAt");
3364
+ return this;
3365
+ }
3366
+ updatedAt() {
3367
+ this.addField("updatedAt");
3368
+ return this;
3369
+ }
3370
+ content() {
3371
+ this.addField("content");
3372
+ return this;
3373
+ }
3374
+ lang(options) {
3375
+ if (Array.isArray(options)) {
3376
+ this._associations["lang"] = new LangQueryOptions(options);
3377
+ } else {
3378
+ this._associations["lang"] = options || new LangQueryOptions(["id"]);
3379
+ }
3380
+ return this;
3381
+ }
3382
+ folder(options) {
3383
+ if (Array.isArray(options)) {
3384
+ this._associations["folder"] = new VideoFolderQueryOptions(options);
3385
+ } else {
3386
+ this._associations["folder"] = options || new VideoFolderQueryOptions(["id"]);
3387
+ }
3388
+ return this;
3389
+ }
3390
+ cover(options) {
3391
+ if (Array.isArray(options)) {
3392
+ this._associations["cover"] = new MediaQueryOptions(options);
3393
+ } else {
3394
+ this._associations["cover"] = options || new MediaQueryOptions(["id"]);
3395
+ }
3396
+ return this;
3397
+ }
3398
+ coverAggregate(aggregate) {
3399
+ this._aggregates["coverAggregate"] = aggregate;
3400
+ return this;
3401
+ }
3402
+ website(options) {
3403
+ if (Array.isArray(options)) {
3404
+ this._associations["website"] = new WebsiteQueryOptions(options);
3405
+ } else {
3406
+ this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
3407
+ }
3408
+ return this;
3409
+ }
3410
+ }
3411
+ class VideoFolderQueryOptions extends QueryOptions {
3412
+ constructor(fields, queryArgs) {
3413
+ super(VideoFolderEntityName, fields, queryArgs);
3414
+ }
3415
+ id() {
3416
+ this.addField("id");
3417
+ return this;
3418
+ }
3419
+ name() {
3420
+ this.addField("name");
3421
+ return this;
3422
+ }
3423
+ seqValue() {
3424
+ this.addField("seqValue");
3425
+ return this;
3426
+ }
3427
+ createdAt() {
3428
+ this.addField("createdAt");
3429
+ return this;
3430
+ }
3431
+ updatedAt() {
3432
+ this.addField("updatedAt");
3433
+ return this;
3434
+ }
3435
+ content() {
3436
+ this.addField("content");
3437
+ return this;
3438
+ }
3439
+ lang(options) {
3440
+ if (Array.isArray(options)) {
3441
+ this._associations["lang"] = new LangQueryOptions(options);
3442
+ } else {
3443
+ this._associations["lang"] = options || new LangQueryOptions(["id"]);
3444
+ }
3445
+ return this;
3446
+ }
3447
+ children(options) {
3448
+ if (Array.isArray(options)) {
3449
+ this._associations["children"] = new VideoFolderQueryOptions(options);
3450
+ } else {
3451
+ this._associations["children"] = options || new VideoFolderQueryOptions(["id"]);
3452
+ }
3453
+ return this;
3454
+ }
3455
+ childrenAggregate(aggregate) {
3456
+ this._aggregates["childrenAggregate"] = aggregate;
3457
+ return this;
3458
+ }
3459
+ website(options) {
3460
+ if (Array.isArray(options)) {
3461
+ this._associations["website"] = new WebsiteQueryOptions(options);
3462
+ } else {
3463
+ this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
3464
+ }
3465
+ return this;
3466
+ }
3467
+ videos(options) {
3468
+ if (Array.isArray(options)) {
3469
+ this._associations["videos"] = new VideoQueryOptions(options);
3470
+ } else {
3471
+ this._associations["videos"] = options || new VideoQueryOptions(["id"]);
3472
+ }
3473
+ return this;
3474
+ }
3475
+ videosAggregate(aggregate) {
3476
+ this._aggregates["videosAggregate"] = aggregate;
3477
+ return this;
3478
+ }
3479
+ parent(options) {
3480
+ if (Array.isArray(options)) {
3481
+ this._associations["parent"] = new VideoFolderQueryOptions(options);
3482
+ } else {
3483
+ this._associations["parent"] = options || new VideoFolderQueryOptions(["id"]);
3484
+ }
3485
+ return this;
3486
+ }
3487
+ }
3187
3488
  class AnalyticsConfigQueryOptions extends QueryOptions {
3188
3489
  constructor(fields, queryArgs) {
3189
3490
  super(AnalyticsConfigEntityName, fields, queryArgs);
@@ -3582,6 +3883,30 @@ class WebsiteQueryOptions extends QueryOptions {
3582
3883
  this._aggregates["partsOfMediaAggregate"] = aggregate;
3583
3884
  return this;
3584
3885
  }
3886
+ partsOfVideoFolder(options) {
3887
+ if (Array.isArray(options)) {
3888
+ this._associations["partsOfVideoFolder"] = new VideoFolderQueryOptions(options);
3889
+ } else {
3890
+ this._associations["partsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
3891
+ }
3892
+ return this;
3893
+ }
3894
+ partsOfVideoFolderAggregate(aggregate) {
3895
+ this._aggregates["partsOfVideoFolderAggregate"] = aggregate;
3896
+ return this;
3897
+ }
3898
+ partsOfVideo(options) {
3899
+ if (Array.isArray(options)) {
3900
+ this._associations["partsOfVideo"] = new VideoQueryOptions(options);
3901
+ } else {
3902
+ this._associations["partsOfVideo"] = options || new VideoQueryOptions(["id"]);
3903
+ }
3904
+ return this;
3905
+ }
3906
+ partsOfVideoAggregate(aggregate) {
3907
+ this._aggregates["partsOfVideoAggregate"] = aggregate;
3908
+ return this;
3909
+ }
3585
3910
  langs(options) {
3586
3911
  if (Array.isArray(options)) {
3587
3912
  this._associations["langs"] = new LangQueryOptions(options);
@@ -4039,6 +4364,30 @@ class LangQueryOptions extends QueryOptions {
4039
4364
  this._aggregates["webPartsOfMediaAggregate"] = aggregate;
4040
4365
  return this;
4041
4366
  }
4367
+ webPartsOfVideoFolder(options) {
4368
+ if (Array.isArray(options)) {
4369
+ this._associations["webPartsOfVideoFolder"] = new VideoFolderQueryOptions(options);
4370
+ } else {
4371
+ this._associations["webPartsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
4372
+ }
4373
+ return this;
4374
+ }
4375
+ webPartsOfVideoFolderAggregate(aggregate) {
4376
+ this._aggregates["webPartsOfVideoFolderAggregate"] = aggregate;
4377
+ return this;
4378
+ }
4379
+ webPartsOfVideo(options) {
4380
+ if (Array.isArray(options)) {
4381
+ this._associations["webPartsOfVideo"] = new VideoQueryOptions(options);
4382
+ } else {
4383
+ this._associations["webPartsOfVideo"] = options || new VideoQueryOptions(["id"]);
4384
+ }
4385
+ return this;
4386
+ }
4387
+ webPartsOfVideoAggregate(aggregate) {
4388
+ this._aggregates["webPartsOfVideoAggregate"] = aggregate;
4389
+ return this;
4390
+ }
4042
4391
  websites(options) {
4043
4392
  if (Array.isArray(options)) {
4044
4393
  this._associations["websites"] = new WebsiteQueryOptions(options);
@@ -4337,6 +4686,18 @@ class MediaQueryOptions extends QueryOptions {
4337
4686
  this._aggregates["searchIndexAggregate"] = aggregate;
4338
4687
  return this;
4339
4688
  }
4689
+ coverOfVideo(options) {
4690
+ if (Array.isArray(options)) {
4691
+ this._associations["coverOfVideo"] = new VideoQueryOptions(options);
4692
+ } else {
4693
+ this._associations["coverOfVideo"] = options || new VideoQueryOptions(["id"]);
4694
+ }
4695
+ return this;
4696
+ }
4697
+ coverOfVideoAggregate(aggregate) {
4698
+ this._aggregates["coverOfVideoAggregate"] = aggregate;
4699
+ return this;
4700
+ }
4340
4701
  }
4341
4702
  class UserQueryOptions extends QueryOptions {
4342
4703
  constructor(fields, queryArgs) {
@@ -4603,6 +4964,71 @@ class MailQueryOptions extends QueryOptions {
4603
4964
  return this;
4604
4965
  }
4605
4966
  }
4967
+ class TaskQueryOptions extends QueryOptions {
4968
+ constructor(fields, queryArgs) {
4969
+ super(TaskEntityName, fields, queryArgs);
4970
+ }
4971
+ id() {
4972
+ this.addField("id");
4973
+ return this;
4974
+ }
4975
+ jobId() {
4976
+ this.addField("jobId");
4977
+ return this;
4978
+ }
4979
+ type() {
4980
+ this.addField("type");
4981
+ return this;
4982
+ }
4983
+ websiteId() {
4984
+ this.addField("websiteId");
4985
+ return this;
4986
+ }
4987
+ themeId() {
4988
+ this.addField("themeId");
4989
+ return this;
4990
+ }
4991
+ name() {
4992
+ this.addField("name");
4993
+ return this;
4994
+ }
4995
+ message() {
4996
+ this.addField("message");
4997
+ return this;
4998
+ }
4999
+ status() {
5000
+ this.addField("status");
5001
+ return this;
5002
+ }
5003
+ params() {
5004
+ this.addField("params");
5005
+ return this;
5006
+ }
5007
+ result() {
5008
+ this.addField("result");
5009
+ return this;
5010
+ }
5011
+ createdAt() {
5012
+ this.addField("createdAt");
5013
+ return this;
5014
+ }
5015
+ updatedAt() {
5016
+ this.addField("updatedAt");
5017
+ return this;
5018
+ }
5019
+ startedAt() {
5020
+ this.addField("startedAt");
5021
+ return this;
5022
+ }
5023
+ endedAt() {
5024
+ this.addField("endedAt");
5025
+ return this;
5026
+ }
5027
+ idempotencyKey() {
5028
+ this.addField("idempotencyKey");
5029
+ return this;
5030
+ }
5031
+ }
4606
5032
  const userEntry = {
4607
5033
  entityName: UserEntityName,
4608
5034
  entityLabel: UserEntityLabel,
@@ -4778,6 +5204,21 @@ const searchIndexEntry = {
4778
5204
  entityLabel: SearchIndexEntityLabel,
4779
5205
  toInput: searchIndexToInput
4780
5206
  };
5207
+ const videoFolderEntry = {
5208
+ entityName: VideoFolderEntityName,
5209
+ entityLabel: VideoFolderEntityLabel,
5210
+ toInput: videoFolderToInput
5211
+ };
5212
+ const videoEntry = {
5213
+ entityName: VideoEntityName,
5214
+ entityLabel: VideoEntityLabel,
5215
+ toInput: videoToInput
5216
+ };
5217
+ const taskEntry = {
5218
+ entityName: TaskEntityName,
5219
+ entityLabel: TaskEntityLabel,
5220
+ toInput: taskToInput
5221
+ };
4781
5222
  var UserFields = /* @__PURE__ */ ((UserFields2) => {
4782
5223
  UserFields2["id"] = "id";
4783
5224
  UserFields2["loginName"] = "loginName";
@@ -4877,6 +5318,8 @@ var MediaAssciations = /* @__PURE__ */ ((MediaAssciations2) => {
4877
5318
  MediaAssciations2["pageMetaAggregate"] = "pageMetaAggregate";
4878
5319
  MediaAssciations2["searchIndex"] = "searchIndex";
4879
5320
  MediaAssciations2["searchIndexAggregate"] = "searchIndexAggregate";
5321
+ MediaAssciations2["coverOfVideo"] = "coverOfVideo";
5322
+ MediaAssciations2["coverOfVideoAggregate"] = "coverOfVideoAggregate";
4880
5323
  return MediaAssciations2;
4881
5324
  })(MediaAssciations || {});
4882
5325
  var MailFields = /* @__PURE__ */ ((MailFields2) => {
@@ -4936,6 +5379,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
4936
5379
  WebsiteAssciations2["partsOfSpamFilterRuleAggregate"] = "partsOfSpamFilterRuleAggregate";
4937
5380
  WebsiteAssciations2["partsOfMedia"] = "partsOfMedia";
4938
5381
  WebsiteAssciations2["partsOfMediaAggregate"] = "partsOfMediaAggregate";
5382
+ WebsiteAssciations2["partsOfVideoFolder"] = "partsOfVideoFolder";
5383
+ WebsiteAssciations2["partsOfVideoFolderAggregate"] = "partsOfVideoFolderAggregate";
5384
+ WebsiteAssciations2["partsOfVideo"] = "partsOfVideo";
5385
+ WebsiteAssciations2["partsOfVideoAggregate"] = "partsOfVideoAggregate";
4939
5386
  WebsiteAssciations2["langs"] = "langs";
4940
5387
  WebsiteAssciations2["langsAggregate"] = "langsAggregate";
4941
5388
  WebsiteAssciations2["baseLang"] = "baseLang";
@@ -4983,6 +5430,10 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
4983
5430
  LangAssciations2["webPartsOfSpamFilterRuleAggregate"] = "webPartsOfSpamFilterRuleAggregate";
4984
5431
  LangAssciations2["webPartsOfMedia"] = "webPartsOfMedia";
4985
5432
  LangAssciations2["webPartsOfMediaAggregate"] = "webPartsOfMediaAggregate";
5433
+ LangAssciations2["webPartsOfVideoFolder"] = "webPartsOfVideoFolder";
5434
+ LangAssciations2["webPartsOfVideoFolderAggregate"] = "webPartsOfVideoFolderAggregate";
5435
+ LangAssciations2["webPartsOfVideo"] = "webPartsOfVideo";
5436
+ LangAssciations2["webPartsOfVideoAggregate"] = "webPartsOfVideoAggregate";
4986
5437
  LangAssciations2["websites"] = "websites";
4987
5438
  LangAssciations2["websitesAggregate"] = "websitesAggregate";
4988
5439
  LangAssciations2["baseLangOf"] = "baseLangOf";
@@ -5522,6 +5973,67 @@ var SearchIndexAssciations = /* @__PURE__ */ ((SearchIndexAssciations2) => {
5522
5973
  SearchIndexAssciations2["website"] = "website";
5523
5974
  return SearchIndexAssciations2;
5524
5975
  })(SearchIndexAssciations || {});
5976
+ var VideoFolderFields = /* @__PURE__ */ ((VideoFolderFields2) => {
5977
+ VideoFolderFields2["id"] = "id";
5978
+ VideoFolderFields2["name"] = "name";
5979
+ VideoFolderFields2["seqValue"] = "seqValue";
5980
+ VideoFolderFields2["createdAt"] = "createdAt";
5981
+ VideoFolderFields2["updatedAt"] = "updatedAt";
5982
+ VideoFolderFields2["content"] = "content";
5983
+ return VideoFolderFields2;
5984
+ })(VideoFolderFields || {});
5985
+ var VideoFolderAssciations = /* @__PURE__ */ ((VideoFolderAssciations2) => {
5986
+ VideoFolderAssciations2["lang"] = "lang";
5987
+ VideoFolderAssciations2["children"] = "children";
5988
+ VideoFolderAssciations2["childrenAggregate"] = "childrenAggregate";
5989
+ VideoFolderAssciations2["website"] = "website";
5990
+ VideoFolderAssciations2["videos"] = "videos";
5991
+ VideoFolderAssciations2["videosAggregate"] = "videosAggregate";
5992
+ VideoFolderAssciations2["parent"] = "parent";
5993
+ return VideoFolderAssciations2;
5994
+ })(VideoFolderAssciations || {});
5995
+ var VideoFields = /* @__PURE__ */ ((VideoFields2) => {
5996
+ VideoFields2["id"] = "id";
5997
+ VideoFields2["name"] = "name";
5998
+ VideoFields2["size"] = "size";
5999
+ VideoFields2["mimeType"] = "mimeType";
6000
+ VideoFields2["extName"] = "extName";
6001
+ VideoFields2["description"] = "description";
6002
+ VideoFields2["url"] = "url";
6003
+ VideoFields2["videoId"] = "videoId";
6004
+ VideoFields2["createdAt"] = "createdAt";
6005
+ VideoFields2["updatedAt"] = "updatedAt";
6006
+ VideoFields2["content"] = "content";
6007
+ return VideoFields2;
6008
+ })(VideoFields || {});
6009
+ var VideoAssciations = /* @__PURE__ */ ((VideoAssciations2) => {
6010
+ VideoAssciations2["lang"] = "lang";
6011
+ VideoAssciations2["folder"] = "folder";
6012
+ VideoAssciations2["cover"] = "cover";
6013
+ VideoAssciations2["coverAggregate"] = "coverAggregate";
6014
+ VideoAssciations2["website"] = "website";
6015
+ return VideoAssciations2;
6016
+ })(VideoAssciations || {});
6017
+ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
6018
+ TaskFields2["id"] = "id";
6019
+ TaskFields2["jobId"] = "jobId";
6020
+ TaskFields2["type"] = "type";
6021
+ TaskFields2["websiteId"] = "websiteId";
6022
+ TaskFields2["themeId"] = "themeId";
6023
+ TaskFields2["name"] = "name";
6024
+ TaskFields2["message"] = "message";
6025
+ TaskFields2["status"] = "status";
6026
+ TaskFields2["params"] = "params";
6027
+ TaskFields2["result"] = "result";
6028
+ TaskFields2["createdAt"] = "createdAt";
6029
+ TaskFields2["updatedAt"] = "updatedAt";
6030
+ TaskFields2["startedAt"] = "startedAt";
6031
+ TaskFields2["endedAt"] = "endedAt";
6032
+ TaskFields2["idempotencyKey"] = "idempotencyKey";
6033
+ return TaskFields2;
6034
+ })(TaskFields || {});
6035
+ var TaskAssciations = /* @__PURE__ */ ((TaskAssciations2) => {
6036
+ })();
5525
6037
  export {
5526
6038
  AbilityAssciations,
5527
6039
  AbilityDistinctEnum,
@@ -5687,6 +6199,14 @@ export {
5687
6199
  TagEntityName,
5688
6200
  TagFields,
5689
6201
  TagQueryOptions,
6202
+ TaskAssciations,
6203
+ TaskDistinctEnum,
6204
+ TaskEntityLabel,
6205
+ TaskEntityName,
6206
+ TaskFields,
6207
+ TaskQueryOptions,
6208
+ TaskStatus,
6209
+ TaskType,
5690
6210
  TemplateCategoryAssciations,
5691
6211
  TemplateCategoryDistinctEnum,
5692
6212
  TemplateCategoryEntityLabel,
@@ -5730,6 +6250,18 @@ export {
5730
6250
  UserFields,
5731
6251
  UserQueryOptions,
5732
6252
  UserType,
6253
+ VideoAssciations,
6254
+ VideoDistinctEnum,
6255
+ VideoEntityLabel,
6256
+ VideoEntityName,
6257
+ VideoFields,
6258
+ VideoFolderAssciations,
6259
+ VideoFolderDistinctEnum,
6260
+ VideoFolderEntityLabel,
6261
+ VideoFolderEntityName,
6262
+ VideoFolderFields,
6263
+ VideoFolderQueryOptions,
6264
+ VideoQueryOptions,
5733
6265
  WebsiteAssciations,
5734
6266
  WebsiteContentDistinctEnum,
5735
6267
  WebsiteDistinctEnum,
@@ -5829,6 +6361,9 @@ export {
5829
6361
  tagEntry,
5830
6362
  tagToInput,
5831
6363
  tagToInputCascade,
6364
+ taskEntry,
6365
+ taskToInput,
6366
+ taskToInputCascade,
5832
6367
  templateCategoryEntry,
5833
6368
  templateCategoryToInput,
5834
6369
  templateCategoryToInputCascade,
@@ -5850,6 +6385,12 @@ export {
5850
6385
  userEntry,
5851
6386
  userToInput,
5852
6387
  userToInputCascade,
6388
+ videoEntry,
6389
+ videoFolderEntry,
6390
+ videoFolderToInput,
6391
+ videoFolderToInputCascade,
6392
+ videoToInput,
6393
+ videoToInputCascade,
5853
6394
  websiteEntry,
5854
6395
  websiteSettingsEntry,
5855
6396
  websiteSettingsToInput,