@rxdrag/rxcms-models 0.3.65 → 0.3.66
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/dist/classes/LangQueryOptions.d.ts +10 -0
- package/dist/classes/MediaQueryOptions.d.ts +5 -0
- package/dist/classes/TaskQueryOptions.d.ts +20 -0
- package/dist/classes/VideoFolderQueryOptions.d.ts +26 -0
- package/dist/classes/VideoQueryOptions.d.ts +31 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +10 -0
- package/dist/classes/index.d.ts +3 -0
- package/dist/entries/index.d.ts +3 -0
- package/dist/entries/taskEntry.d.ts +2 -0
- package/dist/entries/videoEntry.d.ts +2 -0
- package/dist/entries/videoFolderEntry.d.ts +2 -0
- package/dist/fields/LangFields.d.ts +4 -0
- package/dist/fields/MediaFields.d.ts +3 -1
- package/dist/fields/TaskFields.d.ts +18 -0
- package/dist/fields/VideoFields.d.ts +20 -0
- package/dist/fields/VideoFolderFields.d.ts +17 -0
- package/dist/fields/WebsiteFields.d.ts +4 -0
- package/dist/fields/index.d.ts +3 -0
- package/dist/index.mjs +554 -19
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Lang.d.ts +6 -0
- package/dist/interfaces/LangBoolExp.d.ts +4 -0
- package/dist/interfaces/LangInput.d.ts +4 -0
- package/dist/interfaces/Media.d.ts +3 -0
- package/dist/interfaces/MediaBoolExp.d.ts +2 -0
- package/dist/interfaces/MediaInput.d.ts +2 -0
- package/dist/interfaces/Task.d.ts +20 -0
- package/dist/interfaces/TaskBoolExp.d.ts +25 -0
- package/dist/interfaces/TaskDistinctExp.d.ts +17 -0
- package/dist/interfaces/TaskInput.d.ts +21 -0
- package/dist/interfaces/TaskOrderBy.d.ts +17 -0
- package/dist/interfaces/TaskStatus.d.ts +18 -0
- package/dist/interfaces/TaskType.d.ts +26 -0
- package/dist/interfaces/Video.d.ts +27 -0
- package/dist/interfaces/VideoBoolExp.d.ts +29 -0
- package/dist/interfaces/VideoDistinctExp.d.ts +15 -0
- package/dist/interfaces/VideoFolder.d.ts +23 -0
- package/dist/interfaces/VideoFolderBoolExp.d.ts +24 -0
- package/dist/interfaces/VideoFolderDistinctExp.d.ts +10 -0
- package/dist/interfaces/VideoFolderInput.d.ts +23 -0
- package/dist/interfaces/VideoFolderOrderBy.d.ts +11 -0
- package/dist/interfaces/VideoInput.d.ts +28 -0
- package/dist/interfaces/VideoOrderBy.d.ts +16 -0
- package/dist/interfaces/Website.d.ts +6 -0
- package/dist/interfaces/WebsiteBoolExp.d.ts +4 -0
- package/dist/interfaces/WebsiteInput.d.ts +4 -0
- package/dist/interfaces/index.d.ts +17 -0
- package/package.json +4 -4
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
|
-
|
|
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: (
|
|
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: (
|
|
744
|
-
searchIndexes: entity.searchIndexes ? processHasManyClear({ sync: (
|
|
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
|
-
|
|
824
|
-
|
|
825
|
-
|
|
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,78 @@ 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["celeryTaskId"] = "celeryTaskId";
|
|
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
|
+
return TaskDistinctEnum2;
|
|
1737
|
+
})(TaskDistinctEnum || {});
|
|
1738
|
+
var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
|
|
1739
|
+
TaskStatus2["A_Progress"] = "A_Progress";
|
|
1740
|
+
TaskStatus2["B_Failure"] = "B_Failure";
|
|
1741
|
+
TaskStatus2["C_Pending"] = "C_Pending";
|
|
1742
|
+
TaskStatus2["D_Success"] = "D_Success";
|
|
1743
|
+
return TaskStatus2;
|
|
1744
|
+
})(TaskStatus || {});
|
|
1745
|
+
var TaskType = /* @__PURE__ */ ((TaskType2) => {
|
|
1746
|
+
TaskType2["TranslateTheme"] = "TranslateTheme";
|
|
1747
|
+
TaskType2["TranslateWebsite"] = "TranslateWebsite";
|
|
1748
|
+
TaskType2["TranslatePage"] = "TranslatePage";
|
|
1749
|
+
TaskType2["TranslateComponent"] = "TranslateComponent";
|
|
1750
|
+
TaskType2["TranslatePost"] = "TranslatePost";
|
|
1751
|
+
TaskType2["TranslateProduct"] = "TranslateProduct";
|
|
1752
|
+
return TaskType2;
|
|
1753
|
+
})(TaskType || {});
|
|
1616
1754
|
class RoleQueryOptions extends QueryOptions {
|
|
1617
1755
|
constructor(fields, queryArgs) {
|
|
1618
1756
|
super(RoleEntityName, fields, queryArgs);
|
|
@@ -3184,6 +3322,168 @@ class SpamFilterRuleQueryOptions extends QueryOptions {
|
|
|
3184
3322
|
return this;
|
|
3185
3323
|
}
|
|
3186
3324
|
}
|
|
3325
|
+
class VideoQueryOptions extends QueryOptions {
|
|
3326
|
+
constructor(fields, queryArgs) {
|
|
3327
|
+
super(VideoEntityName, fields, queryArgs);
|
|
3328
|
+
}
|
|
3329
|
+
id() {
|
|
3330
|
+
this.addField("id");
|
|
3331
|
+
return this;
|
|
3332
|
+
}
|
|
3333
|
+
name() {
|
|
3334
|
+
this.addField("name");
|
|
3335
|
+
return this;
|
|
3336
|
+
}
|
|
3337
|
+
size() {
|
|
3338
|
+
this.addField("size");
|
|
3339
|
+
return this;
|
|
3340
|
+
}
|
|
3341
|
+
mimeType() {
|
|
3342
|
+
this.addField("mimeType");
|
|
3343
|
+
return this;
|
|
3344
|
+
}
|
|
3345
|
+
extName() {
|
|
3346
|
+
this.addField("extName");
|
|
3347
|
+
return this;
|
|
3348
|
+
}
|
|
3349
|
+
description() {
|
|
3350
|
+
this.addField("description");
|
|
3351
|
+
return this;
|
|
3352
|
+
}
|
|
3353
|
+
url() {
|
|
3354
|
+
this.addField("url");
|
|
3355
|
+
return this;
|
|
3356
|
+
}
|
|
3357
|
+
videoId() {
|
|
3358
|
+
this.addField("videoId");
|
|
3359
|
+
return this;
|
|
3360
|
+
}
|
|
3361
|
+
createdAt() {
|
|
3362
|
+
this.addField("createdAt");
|
|
3363
|
+
return this;
|
|
3364
|
+
}
|
|
3365
|
+
updatedAt() {
|
|
3366
|
+
this.addField("updatedAt");
|
|
3367
|
+
return this;
|
|
3368
|
+
}
|
|
3369
|
+
content() {
|
|
3370
|
+
this.addField("content");
|
|
3371
|
+
return this;
|
|
3372
|
+
}
|
|
3373
|
+
lang(options) {
|
|
3374
|
+
if (Array.isArray(options)) {
|
|
3375
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
3376
|
+
} else {
|
|
3377
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3378
|
+
}
|
|
3379
|
+
return this;
|
|
3380
|
+
}
|
|
3381
|
+
folder(options) {
|
|
3382
|
+
if (Array.isArray(options)) {
|
|
3383
|
+
this._associations["folder"] = new VideoFolderQueryOptions(options);
|
|
3384
|
+
} else {
|
|
3385
|
+
this._associations["folder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3386
|
+
}
|
|
3387
|
+
return this;
|
|
3388
|
+
}
|
|
3389
|
+
cover(options) {
|
|
3390
|
+
if (Array.isArray(options)) {
|
|
3391
|
+
this._associations["cover"] = new MediaQueryOptions(options);
|
|
3392
|
+
} else {
|
|
3393
|
+
this._associations["cover"] = options || new MediaQueryOptions(["id"]);
|
|
3394
|
+
}
|
|
3395
|
+
return this;
|
|
3396
|
+
}
|
|
3397
|
+
coverAggregate(aggregate) {
|
|
3398
|
+
this._aggregates["coverAggregate"] = aggregate;
|
|
3399
|
+
return this;
|
|
3400
|
+
}
|
|
3401
|
+
website(options) {
|
|
3402
|
+
if (Array.isArray(options)) {
|
|
3403
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
3404
|
+
} else {
|
|
3405
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
3406
|
+
}
|
|
3407
|
+
return this;
|
|
3408
|
+
}
|
|
3409
|
+
}
|
|
3410
|
+
class VideoFolderQueryOptions extends QueryOptions {
|
|
3411
|
+
constructor(fields, queryArgs) {
|
|
3412
|
+
super(VideoFolderEntityName, fields, queryArgs);
|
|
3413
|
+
}
|
|
3414
|
+
id() {
|
|
3415
|
+
this.addField("id");
|
|
3416
|
+
return this;
|
|
3417
|
+
}
|
|
3418
|
+
name() {
|
|
3419
|
+
this.addField("name");
|
|
3420
|
+
return this;
|
|
3421
|
+
}
|
|
3422
|
+
seqValue() {
|
|
3423
|
+
this.addField("seqValue");
|
|
3424
|
+
return this;
|
|
3425
|
+
}
|
|
3426
|
+
createdAt() {
|
|
3427
|
+
this.addField("createdAt");
|
|
3428
|
+
return this;
|
|
3429
|
+
}
|
|
3430
|
+
updatedAt() {
|
|
3431
|
+
this.addField("updatedAt");
|
|
3432
|
+
return this;
|
|
3433
|
+
}
|
|
3434
|
+
content() {
|
|
3435
|
+
this.addField("content");
|
|
3436
|
+
return this;
|
|
3437
|
+
}
|
|
3438
|
+
lang(options) {
|
|
3439
|
+
if (Array.isArray(options)) {
|
|
3440
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
3441
|
+
} else {
|
|
3442
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3443
|
+
}
|
|
3444
|
+
return this;
|
|
3445
|
+
}
|
|
3446
|
+
children(options) {
|
|
3447
|
+
if (Array.isArray(options)) {
|
|
3448
|
+
this._associations["children"] = new VideoFolderQueryOptions(options);
|
|
3449
|
+
} else {
|
|
3450
|
+
this._associations["children"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3451
|
+
}
|
|
3452
|
+
return this;
|
|
3453
|
+
}
|
|
3454
|
+
childrenAggregate(aggregate) {
|
|
3455
|
+
this._aggregates["childrenAggregate"] = aggregate;
|
|
3456
|
+
return this;
|
|
3457
|
+
}
|
|
3458
|
+
website(options) {
|
|
3459
|
+
if (Array.isArray(options)) {
|
|
3460
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
3461
|
+
} else {
|
|
3462
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
3463
|
+
}
|
|
3464
|
+
return this;
|
|
3465
|
+
}
|
|
3466
|
+
videos(options) {
|
|
3467
|
+
if (Array.isArray(options)) {
|
|
3468
|
+
this._associations["videos"] = new VideoQueryOptions(options);
|
|
3469
|
+
} else {
|
|
3470
|
+
this._associations["videos"] = options || new VideoQueryOptions(["id"]);
|
|
3471
|
+
}
|
|
3472
|
+
return this;
|
|
3473
|
+
}
|
|
3474
|
+
videosAggregate(aggregate) {
|
|
3475
|
+
this._aggregates["videosAggregate"] = aggregate;
|
|
3476
|
+
return this;
|
|
3477
|
+
}
|
|
3478
|
+
parent(options) {
|
|
3479
|
+
if (Array.isArray(options)) {
|
|
3480
|
+
this._associations["parent"] = new VideoFolderQueryOptions(options);
|
|
3481
|
+
} else {
|
|
3482
|
+
this._associations["parent"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3483
|
+
}
|
|
3484
|
+
return this;
|
|
3485
|
+
}
|
|
3486
|
+
}
|
|
3187
3487
|
class AnalyticsConfigQueryOptions extends QueryOptions {
|
|
3188
3488
|
constructor(fields, queryArgs) {
|
|
3189
3489
|
super(AnalyticsConfigEntityName, fields, queryArgs);
|
|
@@ -3582,6 +3882,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
3582
3882
|
this._aggregates["partsOfMediaAggregate"] = aggregate;
|
|
3583
3883
|
return this;
|
|
3584
3884
|
}
|
|
3885
|
+
partsOfVideoFolder(options) {
|
|
3886
|
+
if (Array.isArray(options)) {
|
|
3887
|
+
this._associations["partsOfVideoFolder"] = new VideoFolderQueryOptions(options);
|
|
3888
|
+
} else {
|
|
3889
|
+
this._associations["partsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3890
|
+
}
|
|
3891
|
+
return this;
|
|
3892
|
+
}
|
|
3893
|
+
partsOfVideoFolderAggregate(aggregate) {
|
|
3894
|
+
this._aggregates["partsOfVideoFolderAggregate"] = aggregate;
|
|
3895
|
+
return this;
|
|
3896
|
+
}
|
|
3897
|
+
partsOfVideo(options) {
|
|
3898
|
+
if (Array.isArray(options)) {
|
|
3899
|
+
this._associations["partsOfVideo"] = new VideoQueryOptions(options);
|
|
3900
|
+
} else {
|
|
3901
|
+
this._associations["partsOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
3902
|
+
}
|
|
3903
|
+
return this;
|
|
3904
|
+
}
|
|
3905
|
+
partsOfVideoAggregate(aggregate) {
|
|
3906
|
+
this._aggregates["partsOfVideoAggregate"] = aggregate;
|
|
3907
|
+
return this;
|
|
3908
|
+
}
|
|
3585
3909
|
langs(options) {
|
|
3586
3910
|
if (Array.isArray(options)) {
|
|
3587
3911
|
this._associations["langs"] = new LangQueryOptions(options);
|
|
@@ -4039,6 +4363,30 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4039
4363
|
this._aggregates["webPartsOfMediaAggregate"] = aggregate;
|
|
4040
4364
|
return this;
|
|
4041
4365
|
}
|
|
4366
|
+
webPartsOfVideoFolder(options) {
|
|
4367
|
+
if (Array.isArray(options)) {
|
|
4368
|
+
this._associations["webPartsOfVideoFolder"] = new VideoFolderQueryOptions(options);
|
|
4369
|
+
} else {
|
|
4370
|
+
this._associations["webPartsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
4371
|
+
}
|
|
4372
|
+
return this;
|
|
4373
|
+
}
|
|
4374
|
+
webPartsOfVideoFolderAggregate(aggregate) {
|
|
4375
|
+
this._aggregates["webPartsOfVideoFolderAggregate"] = aggregate;
|
|
4376
|
+
return this;
|
|
4377
|
+
}
|
|
4378
|
+
webPartsOfVideo(options) {
|
|
4379
|
+
if (Array.isArray(options)) {
|
|
4380
|
+
this._associations["webPartsOfVideo"] = new VideoQueryOptions(options);
|
|
4381
|
+
} else {
|
|
4382
|
+
this._associations["webPartsOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
4383
|
+
}
|
|
4384
|
+
return this;
|
|
4385
|
+
}
|
|
4386
|
+
webPartsOfVideoAggregate(aggregate) {
|
|
4387
|
+
this._aggregates["webPartsOfVideoAggregate"] = aggregate;
|
|
4388
|
+
return this;
|
|
4389
|
+
}
|
|
4042
4390
|
websites(options) {
|
|
4043
4391
|
if (Array.isArray(options)) {
|
|
4044
4392
|
this._associations["websites"] = new WebsiteQueryOptions(options);
|
|
@@ -4337,6 +4685,18 @@ class MediaQueryOptions extends QueryOptions {
|
|
|
4337
4685
|
this._aggregates["searchIndexAggregate"] = aggregate;
|
|
4338
4686
|
return this;
|
|
4339
4687
|
}
|
|
4688
|
+
coverOfVideo(options) {
|
|
4689
|
+
if (Array.isArray(options)) {
|
|
4690
|
+
this._associations["coverOfVideo"] = new VideoQueryOptions(options);
|
|
4691
|
+
} else {
|
|
4692
|
+
this._associations["coverOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
4693
|
+
}
|
|
4694
|
+
return this;
|
|
4695
|
+
}
|
|
4696
|
+
coverOfVideoAggregate(aggregate) {
|
|
4697
|
+
this._aggregates["coverOfVideoAggregate"] = aggregate;
|
|
4698
|
+
return this;
|
|
4699
|
+
}
|
|
4340
4700
|
}
|
|
4341
4701
|
class UserQueryOptions extends QueryOptions {
|
|
4342
4702
|
constructor(fields, queryArgs) {
|
|
@@ -4603,6 +4963,67 @@ class MailQueryOptions extends QueryOptions {
|
|
|
4603
4963
|
return this;
|
|
4604
4964
|
}
|
|
4605
4965
|
}
|
|
4966
|
+
class TaskQueryOptions extends QueryOptions {
|
|
4967
|
+
constructor(fields, queryArgs) {
|
|
4968
|
+
super(TaskEntityName, fields, queryArgs);
|
|
4969
|
+
}
|
|
4970
|
+
id() {
|
|
4971
|
+
this.addField("id");
|
|
4972
|
+
return this;
|
|
4973
|
+
}
|
|
4974
|
+
celeryTaskId() {
|
|
4975
|
+
this.addField("celeryTaskId");
|
|
4976
|
+
return this;
|
|
4977
|
+
}
|
|
4978
|
+
type() {
|
|
4979
|
+
this.addField("type");
|
|
4980
|
+
return this;
|
|
4981
|
+
}
|
|
4982
|
+
websiteId() {
|
|
4983
|
+
this.addField("websiteId");
|
|
4984
|
+
return this;
|
|
4985
|
+
}
|
|
4986
|
+
themeId() {
|
|
4987
|
+
this.addField("themeId");
|
|
4988
|
+
return this;
|
|
4989
|
+
}
|
|
4990
|
+
name() {
|
|
4991
|
+
this.addField("name");
|
|
4992
|
+
return this;
|
|
4993
|
+
}
|
|
4994
|
+
message() {
|
|
4995
|
+
this.addField("message");
|
|
4996
|
+
return this;
|
|
4997
|
+
}
|
|
4998
|
+
status() {
|
|
4999
|
+
this.addField("status");
|
|
5000
|
+
return this;
|
|
5001
|
+
}
|
|
5002
|
+
params() {
|
|
5003
|
+
this.addField("params");
|
|
5004
|
+
return this;
|
|
5005
|
+
}
|
|
5006
|
+
result() {
|
|
5007
|
+
this.addField("result");
|
|
5008
|
+
return this;
|
|
5009
|
+
}
|
|
5010
|
+
createdAt() {
|
|
5011
|
+
this.addField("createdAt");
|
|
5012
|
+
return this;
|
|
5013
|
+
}
|
|
5014
|
+
updatedAt() {
|
|
5015
|
+
this.addField("updatedAt");
|
|
5016
|
+
return this;
|
|
5017
|
+
}
|
|
5018
|
+
startedAt() {
|
|
5019
|
+
this.addField("startedAt");
|
|
5020
|
+
return this;
|
|
5021
|
+
}
|
|
5022
|
+
endedAt() {
|
|
5023
|
+
this.addField("endedAt");
|
|
5024
|
+
return this;
|
|
5025
|
+
}
|
|
5026
|
+
}
|
|
4606
5027
|
const userEntry = {
|
|
4607
5028
|
entityName: UserEntityName,
|
|
4608
5029
|
entityLabel: UserEntityLabel,
|
|
@@ -4778,6 +5199,21 @@ const searchIndexEntry = {
|
|
|
4778
5199
|
entityLabel: SearchIndexEntityLabel,
|
|
4779
5200
|
toInput: searchIndexToInput
|
|
4780
5201
|
};
|
|
5202
|
+
const videoFolderEntry = {
|
|
5203
|
+
entityName: VideoFolderEntityName,
|
|
5204
|
+
entityLabel: VideoFolderEntityLabel,
|
|
5205
|
+
toInput: videoFolderToInput
|
|
5206
|
+
};
|
|
5207
|
+
const videoEntry = {
|
|
5208
|
+
entityName: VideoEntityName,
|
|
5209
|
+
entityLabel: VideoEntityLabel,
|
|
5210
|
+
toInput: videoToInput
|
|
5211
|
+
};
|
|
5212
|
+
const taskEntry = {
|
|
5213
|
+
entityName: TaskEntityName,
|
|
5214
|
+
entityLabel: TaskEntityLabel,
|
|
5215
|
+
toInput: taskToInput
|
|
5216
|
+
};
|
|
4781
5217
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
4782
5218
|
UserFields2["id"] = "id";
|
|
4783
5219
|
UserFields2["loginName"] = "loginName";
|
|
@@ -4877,6 +5313,8 @@ var MediaAssciations = /* @__PURE__ */ ((MediaAssciations2) => {
|
|
|
4877
5313
|
MediaAssciations2["pageMetaAggregate"] = "pageMetaAggregate";
|
|
4878
5314
|
MediaAssciations2["searchIndex"] = "searchIndex";
|
|
4879
5315
|
MediaAssciations2["searchIndexAggregate"] = "searchIndexAggregate";
|
|
5316
|
+
MediaAssciations2["coverOfVideo"] = "coverOfVideo";
|
|
5317
|
+
MediaAssciations2["coverOfVideoAggregate"] = "coverOfVideoAggregate";
|
|
4880
5318
|
return MediaAssciations2;
|
|
4881
5319
|
})(MediaAssciations || {});
|
|
4882
5320
|
var MailFields = /* @__PURE__ */ ((MailFields2) => {
|
|
@@ -4936,6 +5374,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
4936
5374
|
WebsiteAssciations2["partsOfSpamFilterRuleAggregate"] = "partsOfSpamFilterRuleAggregate";
|
|
4937
5375
|
WebsiteAssciations2["partsOfMedia"] = "partsOfMedia";
|
|
4938
5376
|
WebsiteAssciations2["partsOfMediaAggregate"] = "partsOfMediaAggregate";
|
|
5377
|
+
WebsiteAssciations2["partsOfVideoFolder"] = "partsOfVideoFolder";
|
|
5378
|
+
WebsiteAssciations2["partsOfVideoFolderAggregate"] = "partsOfVideoFolderAggregate";
|
|
5379
|
+
WebsiteAssciations2["partsOfVideo"] = "partsOfVideo";
|
|
5380
|
+
WebsiteAssciations2["partsOfVideoAggregate"] = "partsOfVideoAggregate";
|
|
4939
5381
|
WebsiteAssciations2["langs"] = "langs";
|
|
4940
5382
|
WebsiteAssciations2["langsAggregate"] = "langsAggregate";
|
|
4941
5383
|
WebsiteAssciations2["baseLang"] = "baseLang";
|
|
@@ -4983,6 +5425,10 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
4983
5425
|
LangAssciations2["webPartsOfSpamFilterRuleAggregate"] = "webPartsOfSpamFilterRuleAggregate";
|
|
4984
5426
|
LangAssciations2["webPartsOfMedia"] = "webPartsOfMedia";
|
|
4985
5427
|
LangAssciations2["webPartsOfMediaAggregate"] = "webPartsOfMediaAggregate";
|
|
5428
|
+
LangAssciations2["webPartsOfVideoFolder"] = "webPartsOfVideoFolder";
|
|
5429
|
+
LangAssciations2["webPartsOfVideoFolderAggregate"] = "webPartsOfVideoFolderAggregate";
|
|
5430
|
+
LangAssciations2["webPartsOfVideo"] = "webPartsOfVideo";
|
|
5431
|
+
LangAssciations2["webPartsOfVideoAggregate"] = "webPartsOfVideoAggregate";
|
|
4986
5432
|
LangAssciations2["websites"] = "websites";
|
|
4987
5433
|
LangAssciations2["websitesAggregate"] = "websitesAggregate";
|
|
4988
5434
|
LangAssciations2["baseLangOf"] = "baseLangOf";
|
|
@@ -5522,6 +5968,66 @@ var SearchIndexAssciations = /* @__PURE__ */ ((SearchIndexAssciations2) => {
|
|
|
5522
5968
|
SearchIndexAssciations2["website"] = "website";
|
|
5523
5969
|
return SearchIndexAssciations2;
|
|
5524
5970
|
})(SearchIndexAssciations || {});
|
|
5971
|
+
var VideoFolderFields = /* @__PURE__ */ ((VideoFolderFields2) => {
|
|
5972
|
+
VideoFolderFields2["id"] = "id";
|
|
5973
|
+
VideoFolderFields2["name"] = "name";
|
|
5974
|
+
VideoFolderFields2["seqValue"] = "seqValue";
|
|
5975
|
+
VideoFolderFields2["createdAt"] = "createdAt";
|
|
5976
|
+
VideoFolderFields2["updatedAt"] = "updatedAt";
|
|
5977
|
+
VideoFolderFields2["content"] = "content";
|
|
5978
|
+
return VideoFolderFields2;
|
|
5979
|
+
})(VideoFolderFields || {});
|
|
5980
|
+
var VideoFolderAssciations = /* @__PURE__ */ ((VideoFolderAssciations2) => {
|
|
5981
|
+
VideoFolderAssciations2["lang"] = "lang";
|
|
5982
|
+
VideoFolderAssciations2["children"] = "children";
|
|
5983
|
+
VideoFolderAssciations2["childrenAggregate"] = "childrenAggregate";
|
|
5984
|
+
VideoFolderAssciations2["website"] = "website";
|
|
5985
|
+
VideoFolderAssciations2["videos"] = "videos";
|
|
5986
|
+
VideoFolderAssciations2["videosAggregate"] = "videosAggregate";
|
|
5987
|
+
VideoFolderAssciations2["parent"] = "parent";
|
|
5988
|
+
return VideoFolderAssciations2;
|
|
5989
|
+
})(VideoFolderAssciations || {});
|
|
5990
|
+
var VideoFields = /* @__PURE__ */ ((VideoFields2) => {
|
|
5991
|
+
VideoFields2["id"] = "id";
|
|
5992
|
+
VideoFields2["name"] = "name";
|
|
5993
|
+
VideoFields2["size"] = "size";
|
|
5994
|
+
VideoFields2["mimeType"] = "mimeType";
|
|
5995
|
+
VideoFields2["extName"] = "extName";
|
|
5996
|
+
VideoFields2["description"] = "description";
|
|
5997
|
+
VideoFields2["url"] = "url";
|
|
5998
|
+
VideoFields2["videoId"] = "videoId";
|
|
5999
|
+
VideoFields2["createdAt"] = "createdAt";
|
|
6000
|
+
VideoFields2["updatedAt"] = "updatedAt";
|
|
6001
|
+
VideoFields2["content"] = "content";
|
|
6002
|
+
return VideoFields2;
|
|
6003
|
+
})(VideoFields || {});
|
|
6004
|
+
var VideoAssciations = /* @__PURE__ */ ((VideoAssciations2) => {
|
|
6005
|
+
VideoAssciations2["lang"] = "lang";
|
|
6006
|
+
VideoAssciations2["folder"] = "folder";
|
|
6007
|
+
VideoAssciations2["cover"] = "cover";
|
|
6008
|
+
VideoAssciations2["coverAggregate"] = "coverAggregate";
|
|
6009
|
+
VideoAssciations2["website"] = "website";
|
|
6010
|
+
return VideoAssciations2;
|
|
6011
|
+
})(VideoAssciations || {});
|
|
6012
|
+
var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
|
|
6013
|
+
TaskFields2["id"] = "id";
|
|
6014
|
+
TaskFields2["celeryTaskId"] = "celeryTaskId";
|
|
6015
|
+
TaskFields2["type"] = "type";
|
|
6016
|
+
TaskFields2["websiteId"] = "websiteId";
|
|
6017
|
+
TaskFields2["themeId"] = "themeId";
|
|
6018
|
+
TaskFields2["name"] = "name";
|
|
6019
|
+
TaskFields2["message"] = "message";
|
|
6020
|
+
TaskFields2["status"] = "status";
|
|
6021
|
+
TaskFields2["params"] = "params";
|
|
6022
|
+
TaskFields2["result"] = "result";
|
|
6023
|
+
TaskFields2["createdAt"] = "createdAt";
|
|
6024
|
+
TaskFields2["updatedAt"] = "updatedAt";
|
|
6025
|
+
TaskFields2["startedAt"] = "startedAt";
|
|
6026
|
+
TaskFields2["endedAt"] = "endedAt";
|
|
6027
|
+
return TaskFields2;
|
|
6028
|
+
})(TaskFields || {});
|
|
6029
|
+
var TaskAssciations = /* @__PURE__ */ ((TaskAssciations2) => {
|
|
6030
|
+
})();
|
|
5525
6031
|
export {
|
|
5526
6032
|
AbilityAssciations,
|
|
5527
6033
|
AbilityDistinctEnum,
|
|
@@ -5687,6 +6193,14 @@ export {
|
|
|
5687
6193
|
TagEntityName,
|
|
5688
6194
|
TagFields,
|
|
5689
6195
|
TagQueryOptions,
|
|
6196
|
+
TaskAssciations,
|
|
6197
|
+
TaskDistinctEnum,
|
|
6198
|
+
TaskEntityLabel,
|
|
6199
|
+
TaskEntityName,
|
|
6200
|
+
TaskFields,
|
|
6201
|
+
TaskQueryOptions,
|
|
6202
|
+
TaskStatus,
|
|
6203
|
+
TaskType,
|
|
5690
6204
|
TemplateCategoryAssciations,
|
|
5691
6205
|
TemplateCategoryDistinctEnum,
|
|
5692
6206
|
TemplateCategoryEntityLabel,
|
|
@@ -5730,6 +6244,18 @@ export {
|
|
|
5730
6244
|
UserFields,
|
|
5731
6245
|
UserQueryOptions,
|
|
5732
6246
|
UserType,
|
|
6247
|
+
VideoAssciations,
|
|
6248
|
+
VideoDistinctEnum,
|
|
6249
|
+
VideoEntityLabel,
|
|
6250
|
+
VideoEntityName,
|
|
6251
|
+
VideoFields,
|
|
6252
|
+
VideoFolderAssciations,
|
|
6253
|
+
VideoFolderDistinctEnum,
|
|
6254
|
+
VideoFolderEntityLabel,
|
|
6255
|
+
VideoFolderEntityName,
|
|
6256
|
+
VideoFolderFields,
|
|
6257
|
+
VideoFolderQueryOptions,
|
|
6258
|
+
VideoQueryOptions,
|
|
5733
6259
|
WebsiteAssciations,
|
|
5734
6260
|
WebsiteContentDistinctEnum,
|
|
5735
6261
|
WebsiteDistinctEnum,
|
|
@@ -5829,6 +6355,9 @@ export {
|
|
|
5829
6355
|
tagEntry,
|
|
5830
6356
|
tagToInput,
|
|
5831
6357
|
tagToInputCascade,
|
|
6358
|
+
taskEntry,
|
|
6359
|
+
taskToInput,
|
|
6360
|
+
taskToInputCascade,
|
|
5832
6361
|
templateCategoryEntry,
|
|
5833
6362
|
templateCategoryToInput,
|
|
5834
6363
|
templateCategoryToInputCascade,
|
|
@@ -5850,6 +6379,12 @@ export {
|
|
|
5850
6379
|
userEntry,
|
|
5851
6380
|
userToInput,
|
|
5852
6381
|
userToInputCascade,
|
|
6382
|
+
videoEntry,
|
|
6383
|
+
videoFolderEntry,
|
|
6384
|
+
videoFolderToInput,
|
|
6385
|
+
videoFolderToInputCascade,
|
|
6386
|
+
videoToInput,
|
|
6387
|
+
videoToInputCascade,
|
|
5853
6388
|
websiteEntry,
|
|
5854
6389
|
websiteSettingsEntry,
|
|
5855
6390
|
websiteSettingsToInput,
|