@rxdrag/rxcms-models 0.3.74 → 0.3.76
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/BulletinQueryOptions.d.ts +19 -0
- package/dist/classes/CustomerCaseQueryOptions.d.ts +22 -0
- package/dist/classes/FAQQueryOptions.d.ts +20 -0
- package/dist/classes/LangQueryOptions.d.ts +15 -10
- package/dist/classes/MediaQueryOptions.d.ts +0 -5
- package/dist/classes/ProductQueryOptions.d.ts +11 -0
- package/dist/classes/ProductRelatedPivotQueryOptions.d.ts +12 -0
- package/dist/classes/SolutionQueryOptions.d.ts +27 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +20 -10
- package/dist/classes/index.d.ts +5 -2
- package/dist/entries/bulletinEntry.d.ts +2 -0
- package/dist/entries/customerCaseEntry.d.ts +2 -0
- package/dist/entries/{videoEntry.d.ts → fAQEntry.d.ts} +1 -1
- package/dist/entries/index.d.ts +5 -2
- package/dist/entries/productRelatedPivotEntry.d.ts +2 -0
- package/dist/entries/solutionEntry.d.ts +2 -0
- package/dist/fields/BulletinFields.d.ts +13 -0
- package/dist/fields/CustomerCaseFields.d.ts +16 -0
- package/dist/fields/FAQFields.d.ts +12 -0
- package/dist/fields/LangFields.d.ts +7 -5
- package/dist/fields/MediaFields.d.ts +1 -3
- package/dist/fields/ProductFields.d.ts +6 -1
- package/dist/fields/ProductRelatedPivotFields.d.ts +8 -0
- package/dist/fields/SolutionFields.d.ts +18 -0
- package/dist/fields/WebsiteFields.d.ts +9 -5
- package/dist/fields/index.d.ts +5 -2
- package/dist/index.mjs +701 -380
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Bulletin.d.ts +19 -0
- package/dist/interfaces/BulletinBoolExp.d.ts +23 -0
- package/dist/interfaces/BulletinDistinctExp.d.ts +10 -0
- package/dist/interfaces/BulletinInput.d.ts +21 -0
- package/dist/interfaces/BulletinOrderBy.d.ts +14 -0
- package/dist/interfaces/CustomerCase.d.ts +11 -0
- package/dist/interfaces/CustomerCaseBoolExp.d.ts +13 -0
- package/dist/interfaces/CustomerCaseDistinctExp.d.ts +15 -0
- package/dist/interfaces/CustomerCaseInput.d.ts +13 -0
- package/dist/interfaces/CustomerCaseOrderBy.d.ts +6 -0
- package/dist/interfaces/FAQ.d.ts +15 -0
- package/dist/interfaces/FAQBoolExp.d.ts +19 -0
- package/dist/interfaces/FAQDistinctExp.d.ts +8 -0
- package/dist/interfaces/FAQInput.d.ts +17 -0
- package/dist/interfaces/FAQOrderBy.d.ts +8 -0
- package/dist/interfaces/Lang.d.ts +9 -6
- package/dist/interfaces/LangBoolExp.d.ts +6 -4
- package/dist/interfaces/LangInput.d.ts +6 -4
- package/dist/interfaces/Media.d.ts +0 -3
- package/dist/interfaces/MediaBoolExp.d.ts +0 -2
- package/dist/interfaces/MediaInput.d.ts +0 -2
- package/dist/interfaces/Product.d.ts +7 -0
- package/dist/interfaces/ProductBoolExp.d.ts +5 -0
- package/dist/interfaces/ProductInput.d.ts +5 -0
- package/dist/interfaces/ProductRelatedPivot.d.ts +9 -0
- package/dist/interfaces/ProductRelatedPivotBoolExp.d.ts +12 -0
- package/dist/interfaces/ProductRelatedPivotDistinctExp.d.ts +5 -0
- package/dist/interfaces/ProductRelatedPivotInput.d.ts +11 -0
- package/dist/interfaces/ProductRelatedPivotOrderBy.d.ts +5 -0
- package/dist/interfaces/Solution.d.ts +15 -0
- package/dist/interfaces/SolutionBoolExp.d.ts +15 -0
- package/dist/interfaces/SolutionDistinctExp.d.ts +15 -0
- package/dist/interfaces/SolutionInput.d.ts +16 -0
- package/dist/interfaces/SolutionOrderBy.d.ts +6 -0
- package/dist/interfaces/TaskType.d.ts +19 -3
- package/dist/interfaces/Website.d.ts +12 -6
- package/dist/interfaces/WebsiteBoolExp.d.ts +8 -4
- package/dist/interfaces/WebsiteInput.d.ts +8 -4
- package/dist/interfaces/index.d.ts +25 -10
- package/package.json +3 -3
- package/dist/classes/VideoFolderQueryOptions.d.ts +0 -26
- package/dist/classes/VideoQueryOptions.d.ts +0 -31
- package/dist/entries/videoFolderEntry.d.ts +0 -2
- package/dist/fields/VideoFields.d.ts +0 -20
- package/dist/fields/VideoFolderFields.d.ts +0 -17
- package/dist/interfaces/Video.d.ts +0 -27
- package/dist/interfaces/VideoBoolExp.d.ts +0 -29
- package/dist/interfaces/VideoDistinctExp.d.ts +0 -15
- package/dist/interfaces/VideoFolder.d.ts +0 -23
- package/dist/interfaces/VideoFolderBoolExp.d.ts +0 -24
- package/dist/interfaces/VideoFolderDistinctExp.d.ts +0 -10
- package/dist/interfaces/VideoFolderInput.d.ts +0 -23
- package/dist/interfaces/VideoFolderOrderBy.d.ts +0 -11
- package/dist/interfaces/VideoInput.d.ts +0 -28
- package/dist/interfaces/VideoOrderBy.d.ts +0 -16
package/dist/index.mjs
CHANGED
|
@@ -24,8 +24,7 @@ const aggregateEntities = {
|
|
|
24
24
|
coverOfThemeAggregate: "Theme",
|
|
25
25
|
usedByThemConfigAggregate: "ThemeConfig",
|
|
26
26
|
pageMetaAggregate: "PageMeta",
|
|
27
|
-
searchIndexAggregate: "SearchIndex"
|
|
28
|
-
coverOfVideoAggregate: "Video"
|
|
27
|
+
searchIndexAggregate: "SearchIndex"
|
|
29
28
|
},
|
|
30
29
|
Website: {
|
|
31
30
|
usersAggregate: "User",
|
|
@@ -33,35 +32,38 @@ const aggregateEntities = {
|
|
|
33
32
|
partsOfEnquiryAggregate: "Enquiry",
|
|
34
33
|
partsOfProductAggregate: "Product",
|
|
35
34
|
partsOfPostAggregate: "Post",
|
|
35
|
+
partsOfSolutionAggregate: "Solution",
|
|
36
|
+
partsOfCustomerCaseAggregate: "CustomerCase",
|
|
36
37
|
partsOfPostCategoryAggregate: "PostCategory",
|
|
37
38
|
partsOfTagAggregate: "Tag",
|
|
38
39
|
partsOfCustomerAggregate: "Customer",
|
|
39
40
|
partsOfProductCategoryAggregate: "ProductCategory",
|
|
40
41
|
partsOfSpamFilterRuleAggregate: "SpamFilterRule",
|
|
41
42
|
partsOfMediaAggregate: "Media",
|
|
42
|
-
partsOfVideoFolderAggregate: "VideoFolder",
|
|
43
|
-
partsOfVideoAggregate: "Video",
|
|
44
43
|
langsAggregate: "Lang",
|
|
45
44
|
themesAggregate: "Theme",
|
|
46
45
|
changelogsAggregate: "ChangeLog",
|
|
47
|
-
searchIndexesAggregate: "SearchIndex"
|
|
46
|
+
searchIndexesAggregate: "SearchIndex",
|
|
47
|
+
faqsAggregate: "FAQ",
|
|
48
|
+
bulletinsAggregate: "Bulletin"
|
|
48
49
|
},
|
|
49
50
|
Lang: {
|
|
50
51
|
webPartsOfMediaFolderAggregate: "MediaFolder",
|
|
51
52
|
webPartsOfEnquiryAggregate: "Enquiry",
|
|
52
53
|
webPartsOfProductAggregate: "Product",
|
|
53
54
|
webPartsOfPostAggregate: "Post",
|
|
55
|
+
webPartsOfSolutionAggregate: "Solution",
|
|
56
|
+
webPartsOfCustomerCaseAggregate: "CustomerCase",
|
|
54
57
|
webPartsOfPostCategoryAggregate: "PostCategory",
|
|
55
58
|
webPartsOfTagAggregate: "Tag",
|
|
56
59
|
webPartsOfCustomerAggregate: "Customer",
|
|
57
60
|
webPartsOfProductCategoryAggregate: "ProductCategory",
|
|
58
61
|
webPartsOfSpamFilterRuleAggregate: "SpamFilterRule",
|
|
59
62
|
webPartsOfMediaAggregate: "Media",
|
|
60
|
-
webPartsOfVideoFolderAggregate: "VideoFolder",
|
|
61
|
-
webPartsOfVideoAggregate: "Video",
|
|
62
63
|
websitesAggregate: "Website",
|
|
63
64
|
baseLangOfAggregate: "Website",
|
|
64
|
-
themesAggregate: "Theme"
|
|
65
|
+
themesAggregate: "Theme",
|
|
66
|
+
bulletinsAggregate: "Bulletin"
|
|
65
67
|
},
|
|
66
68
|
WebsiteType: {
|
|
67
69
|
websitesAggregate: "Website"
|
|
@@ -72,7 +74,9 @@ const aggregateEntities = {
|
|
|
72
74
|
Product: {
|
|
73
75
|
tagsAggregate: "Tag",
|
|
74
76
|
mediaPivotsAggregate: "MediaOnProduct",
|
|
75
|
-
attachmentPivotsAggregate: "AttachmentOnProduct"
|
|
77
|
+
attachmentPivotsAggregate: "AttachmentOnProduct",
|
|
78
|
+
faqsAggregate: "FAQ",
|
|
79
|
+
relatedPivotsAggregate: "ProductRelatedPivot"
|
|
76
80
|
},
|
|
77
81
|
Theme: {
|
|
78
82
|
componentsAggregate: "FrontComponent",
|
|
@@ -112,12 +116,8 @@ const aggregateEntities = {
|
|
|
112
116
|
TemplateCategory: {
|
|
113
117
|
templatesAggregate: "SectionTemplate"
|
|
114
118
|
},
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
videosAggregate: "Video"
|
|
118
|
-
},
|
|
119
|
-
Video: {
|
|
120
|
-
coverAggregate: "Media"
|
|
119
|
+
Solution: {
|
|
120
|
+
faqsAggregate: "FAQ"
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
123
|
class QueryOptions {
|
|
@@ -636,9 +636,58 @@ const attachmentOnProductToInput = (entity) => {
|
|
|
636
636
|
product: convertHasOneToInput(entity.product)
|
|
637
637
|
};
|
|
638
638
|
};
|
|
639
|
+
const solutionToInputCascade = (entity) => {
|
|
640
|
+
var _a;
|
|
641
|
+
const { faqsAggregate, ...rest } = entity;
|
|
642
|
+
return {
|
|
643
|
+
...rest,
|
|
644
|
+
lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
|
|
645
|
+
faqs: entity.faqs ? processHasManyClear({ sync: (_a = entity.faqs) == null ? void 0 : _a.map((ent) => fAQToInput(ent)) }) : void 0,
|
|
646
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
const solutionToInput = (entity) => {
|
|
650
|
+
const { faqsAggregate, ...rest } = entity;
|
|
651
|
+
return {
|
|
652
|
+
...rest,
|
|
653
|
+
lang: convertHasOneToInput(entity.lang),
|
|
654
|
+
faqs: convertHasManyToInput(entity.faqs),
|
|
655
|
+
website: convertHasOneToInput(entity.website)
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
const fAQToInputCascade = (entity) => {
|
|
659
|
+
return {
|
|
660
|
+
...entity,
|
|
661
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
|
|
662
|
+
product: entity.product ? processHasOneClear({ sync: productToInput(entity.product) }) : void 0,
|
|
663
|
+
solution: entity.solution ? processHasOneClear({ sync: solutionToInput(entity.solution) }) : void 0
|
|
664
|
+
};
|
|
665
|
+
};
|
|
666
|
+
const fAQToInput = (entity) => {
|
|
667
|
+
return {
|
|
668
|
+
...entity,
|
|
669
|
+
website: convertHasOneToInput(entity.website),
|
|
670
|
+
product: convertHasOneToInput(entity.product),
|
|
671
|
+
solution: convertHasOneToInput(entity.solution)
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
const productRelatedPivotToInputCascade = (entity) => {
|
|
675
|
+
return {
|
|
676
|
+
...entity,
|
|
677
|
+
product: entity.product ? processHasOneClear({ sync: productToInput(entity.product) }) : void 0,
|
|
678
|
+
relatedBy: entity.relatedBy ? processHasOneClear({ sync: productToInput(entity.relatedBy) }) : void 0
|
|
679
|
+
};
|
|
680
|
+
};
|
|
681
|
+
const productRelatedPivotToInput = (entity) => {
|
|
682
|
+
return {
|
|
683
|
+
...entity,
|
|
684
|
+
product: convertHasOneToInput(entity.product),
|
|
685
|
+
relatedBy: convertHasOneToInput(entity.relatedBy)
|
|
686
|
+
};
|
|
687
|
+
};
|
|
639
688
|
const productToInputCascade = (entity) => {
|
|
640
|
-
var _a, _b, _c;
|
|
641
|
-
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, ...rest } = entity;
|
|
689
|
+
var _a, _b, _c, _d, _e;
|
|
690
|
+
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, faqsAggregate, relatedPivotsAggregate, ...rest } = entity;
|
|
642
691
|
return {
|
|
643
692
|
...rest,
|
|
644
693
|
category: entity.category ? processHasOneClear({ sync: productCategoryToInput(entity.category) }) : void 0,
|
|
@@ -647,12 +696,15 @@ const productToInputCascade = (entity) => {
|
|
|
647
696
|
attachmentPivots: entity.attachmentPivots ? processHasManyClear({ sync: (_c = entity.attachmentPivots) == null ? void 0 : _c.map((ent) => attachmentOnProductToInput(ent)) }) : void 0,
|
|
648
697
|
lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
|
|
649
698
|
meta: entity.meta ? processHasOneClear({ sync: pageMetaToInput(entity.meta) }) : void 0,
|
|
699
|
+
faqs: entity.faqs ? processHasManyClear({ sync: (_d = entity.faqs) == null ? void 0 : _d.map((ent) => fAQToInput(ent)) }) : void 0,
|
|
700
|
+
relatedPivots: entity.relatedPivots ? processHasManyClear({ sync: (_e = entity.relatedPivots) == null ? void 0 : _e.map((ent) => productRelatedPivotToInput(ent)) }) : void 0,
|
|
650
701
|
creator: entity.creator ? processHasOneClear({ sync: userToInput(entity.creator) }) : void 0,
|
|
651
|
-
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
|
|
702
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
|
|
703
|
+
relatedByPovit: entity.relatedByPovit ? processHasOneClear({ sync: productRelatedPivotToInput(entity.relatedByPovit) }) : void 0
|
|
652
704
|
};
|
|
653
705
|
};
|
|
654
706
|
const productToInput = (entity) => {
|
|
655
|
-
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, ...rest } = entity;
|
|
707
|
+
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, faqsAggregate, relatedPivotsAggregate, ...rest } = entity;
|
|
656
708
|
return {
|
|
657
709
|
...rest,
|
|
658
710
|
category: convertHasOneToInput(entity.category),
|
|
@@ -661,68 +713,41 @@ const productToInput = (entity) => {
|
|
|
661
713
|
attachmentPivots: convertHasManyToInput(entity.attachmentPivots),
|
|
662
714
|
lang: convertHasOneToInput(entity.lang),
|
|
663
715
|
meta: convertHasOneToInput(entity.meta),
|
|
716
|
+
faqs: convertHasManyToInput(entity.faqs),
|
|
717
|
+
relatedPivots: convertHasManyToInput(entity.relatedPivots),
|
|
664
718
|
creator: convertHasOneToInput(entity.creator),
|
|
665
|
-
website: convertHasOneToInput(entity.website)
|
|
719
|
+
website: convertHasOneToInput(entity.website),
|
|
720
|
+
relatedByPovit: convertHasOneToInput(entity.relatedByPovit)
|
|
666
721
|
};
|
|
667
722
|
};
|
|
668
|
-
const
|
|
723
|
+
const customerCaseToInputCascade = (entity) => {
|
|
669
724
|
return {
|
|
670
725
|
...entity,
|
|
671
726
|
lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
|
|
672
727
|
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
|
|
673
728
|
};
|
|
674
729
|
};
|
|
675
|
-
const
|
|
730
|
+
const customerCaseToInput = (entity) => {
|
|
676
731
|
return {
|
|
677
732
|
...entity,
|
|
678
733
|
lang: convertHasOneToInput(entity.lang),
|
|
679
734
|
website: convertHasOneToInput(entity.website)
|
|
680
735
|
};
|
|
681
736
|
};
|
|
682
|
-
const
|
|
683
|
-
var _a;
|
|
684
|
-
const { coverAggregate, ...rest } = entity;
|
|
737
|
+
const spamFilterRuleToInputCascade = (entity) => {
|
|
685
738
|
return {
|
|
686
|
-
...
|
|
739
|
+
...entity,
|
|
687
740
|
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
741
|
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
|
|
691
742
|
};
|
|
692
743
|
};
|
|
693
|
-
const
|
|
694
|
-
const { coverAggregate, ...rest } = entity;
|
|
744
|
+
const spamFilterRuleToInput = (entity) => {
|
|
695
745
|
return {
|
|
696
|
-
...
|
|
746
|
+
...entity,
|
|
697
747
|
lang: convertHasOneToInput(entity.lang),
|
|
698
|
-
folder: convertHasOneToInput(entity.folder),
|
|
699
|
-
cover: convertHasManyToInput(entity.cover),
|
|
700
748
|
website: convertHasOneToInput(entity.website)
|
|
701
749
|
};
|
|
702
750
|
};
|
|
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
|
-
};
|
|
726
751
|
const analyticsConfigToInputCascade = (entity) => {
|
|
727
752
|
return {
|
|
728
753
|
...entity,
|
|
@@ -773,9 +798,23 @@ const searchIndexToInput = (entity) => {
|
|
|
773
798
|
website: convertHasOneToInput(entity.website)
|
|
774
799
|
};
|
|
775
800
|
};
|
|
801
|
+
const bulletinToInputCascade = (entity) => {
|
|
802
|
+
return {
|
|
803
|
+
...entity,
|
|
804
|
+
lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
|
|
805
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
|
|
806
|
+
};
|
|
807
|
+
};
|
|
808
|
+
const bulletinToInput = (entity) => {
|
|
809
|
+
return {
|
|
810
|
+
...entity,
|
|
811
|
+
lang: convertHasOneToInput(entity.lang),
|
|
812
|
+
website: convertHasOneToInput(entity.website)
|
|
813
|
+
};
|
|
814
|
+
};
|
|
776
815
|
const websiteToInputCascade = (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,
|
|
816
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s;
|
|
817
|
+
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfSolutionAggregate, partsOfCustomerCaseAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, faqsAggregate, bulletinsAggregate, ...rest } = entity;
|
|
779
818
|
return {
|
|
780
819
|
...rest,
|
|
781
820
|
websiteType: entity.websiteType ? processHasOneClear({ sync: websiteTypeToInput(entity.websiteType) }) : void 0,
|
|
@@ -785,25 +824,27 @@ const websiteToInputCascade = (entity) => {
|
|
|
785
824
|
partsOfEnquiry: entity.partsOfEnquiry ? processHasManyClear({ sync: (_c = entity.partsOfEnquiry) == null ? void 0 : _c.map((ent) => enquiryToInput(ent)) }) : void 0,
|
|
786
825
|
partsOfProduct: entity.partsOfProduct ? processHasManyClear({ sync: (_d = entity.partsOfProduct) == null ? void 0 : _d.map((ent) => productToInput(ent)) }) : void 0,
|
|
787
826
|
partsOfPost: entity.partsOfPost ? processHasManyClear({ sync: (_e = entity.partsOfPost) == null ? void 0 : _e.map((ent) => postToInput(ent)) }) : void 0,
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
827
|
+
partsOfSolution: entity.partsOfSolution ? processHasManyClear({ sync: (_f = entity.partsOfSolution) == null ? void 0 : _f.map((ent) => solutionToInput(ent)) }) : void 0,
|
|
828
|
+
partsOfCustomerCase: entity.partsOfCustomerCase ? processHasManyClear({ sync: (_g = entity.partsOfCustomerCase) == null ? void 0 : _g.map((ent) => customerCaseToInput(ent)) }) : void 0,
|
|
829
|
+
partsOfPostCategory: entity.partsOfPostCategory ? processHasManyClear({ sync: (_h = entity.partsOfPostCategory) == null ? void 0 : _h.map((ent) => postCategoryToInput(ent)) }) : void 0,
|
|
830
|
+
partsOfTag: entity.partsOfTag ? processHasManyClear({ sync: (_i = entity.partsOfTag) == null ? void 0 : _i.map((ent) => tagToInput(ent)) }) : void 0,
|
|
831
|
+
partsOfCustomer: entity.partsOfCustomer ? processHasManyClear({ sync: (_j = entity.partsOfCustomer) == null ? void 0 : _j.map((ent) => customerToInput(ent)) }) : void 0,
|
|
832
|
+
partsOfProductCategory: entity.partsOfProductCategory ? processHasManyClear({ sync: (_k = entity.partsOfProductCategory) == null ? void 0 : _k.map((ent) => productCategoryToInput(ent)) }) : void 0,
|
|
833
|
+
partsOfSpamFilterRule: entity.partsOfSpamFilterRule ? processHasManyClear({ sync: (_l = entity.partsOfSpamFilterRule) == null ? void 0 : _l.map((ent) => spamFilterRuleToInput(ent)) }) : void 0,
|
|
834
|
+
partsOfMedia: entity.partsOfMedia ? processHasManyClear({ sync: (_m = entity.partsOfMedia) == null ? void 0 : _m.map((ent) => mediaToInput(ent)) }) : void 0,
|
|
796
835
|
langs: entity.langs ? processHasManyClear({ sync: (_n = entity.langs) == null ? void 0 : _n.map((ent) => langToInput(ent)) }) : void 0,
|
|
797
836
|
baseLang: entity.baseLang ? processHasOneClear({ sync: langToInput(entity.baseLang) }) : void 0,
|
|
798
837
|
themes: entity.themes ? processHasManyClear({ sync: (_o = entity.themes) == null ? void 0 : _o.map((ent) => themeToInput(ent)) }) : void 0,
|
|
799
838
|
analyticsConfig: entity.analyticsConfig ? processHasOneClear({ sync: analyticsConfigToInput(entity.analyticsConfig) }) : void 0,
|
|
800
839
|
settings: entity.settings ? processHasOneClear({ sync: websiteSettingsToInput(entity.settings) }) : void 0,
|
|
801
840
|
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
|
|
841
|
+
searchIndexes: entity.searchIndexes ? processHasManyClear({ sync: (_q = entity.searchIndexes) == null ? void 0 : _q.map((ent) => searchIndexToInput(ent)) }) : void 0,
|
|
842
|
+
faqs: entity.faqs ? processHasManyClear({ sync: (_r = entity.faqs) == null ? void 0 : _r.map((ent) => fAQToInput(ent)) }) : void 0,
|
|
843
|
+
bulletins: entity.bulletins ? processHasManyClear({ sync: (_s = entity.bulletins) == null ? void 0 : _s.map((ent) => bulletinToInput(ent)) }) : void 0
|
|
803
844
|
};
|
|
804
845
|
};
|
|
805
846
|
const websiteToInput = (entity) => {
|
|
806
|
-
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate,
|
|
847
|
+
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfSolutionAggregate, partsOfCustomerCaseAggregate, partsOfPostCategoryAggregate, partsOfTagAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, faqsAggregate, bulletinsAggregate, ...rest } = entity;
|
|
807
848
|
return {
|
|
808
849
|
...rest,
|
|
809
850
|
websiteType: convertHasOneToInput(entity.websiteType),
|
|
@@ -813,21 +854,23 @@ const websiteToInput = (entity) => {
|
|
|
813
854
|
partsOfEnquiry: convertHasManyToInput(entity.partsOfEnquiry),
|
|
814
855
|
partsOfProduct: convertHasManyToInput(entity.partsOfProduct),
|
|
815
856
|
partsOfPost: convertHasManyToInput(entity.partsOfPost),
|
|
857
|
+
partsOfSolution: convertHasManyToInput(entity.partsOfSolution),
|
|
858
|
+
partsOfCustomerCase: convertHasManyToInput(entity.partsOfCustomerCase),
|
|
816
859
|
partsOfPostCategory: convertHasManyToInput(entity.partsOfPostCategory),
|
|
817
860
|
partsOfTag: convertHasManyToInput(entity.partsOfTag),
|
|
818
861
|
partsOfCustomer: convertHasManyToInput(entity.partsOfCustomer),
|
|
819
862
|
partsOfProductCategory: convertHasManyToInput(entity.partsOfProductCategory),
|
|
820
863
|
partsOfSpamFilterRule: convertHasManyToInput(entity.partsOfSpamFilterRule),
|
|
821
864
|
partsOfMedia: convertHasManyToInput(entity.partsOfMedia),
|
|
822
|
-
partsOfVideoFolder: convertHasManyToInput(entity.partsOfVideoFolder),
|
|
823
|
-
partsOfVideo: convertHasManyToInput(entity.partsOfVideo),
|
|
824
865
|
langs: convertHasManyToInput(entity.langs),
|
|
825
866
|
baseLang: convertHasOneToInput(entity.baseLang),
|
|
826
867
|
themes: convertHasManyToInput(entity.themes),
|
|
827
868
|
analyticsConfig: convertHasOneToInput(entity.analyticsConfig),
|
|
828
869
|
settings: convertHasOneToInput(entity.settings),
|
|
829
870
|
changelogs: convertHasManyToInput(entity.changelogs),
|
|
830
|
-
searchIndexes: convertHasManyToInput(entity.searchIndexes)
|
|
871
|
+
searchIndexes: convertHasManyToInput(entity.searchIndexes),
|
|
872
|
+
faqs: convertHasManyToInput(entity.faqs),
|
|
873
|
+
bulletins: convertHasManyToInput(entity.bulletins)
|
|
831
874
|
};
|
|
832
875
|
};
|
|
833
876
|
const customerToInputCascade = (entity) => {
|
|
@@ -866,46 +909,48 @@ const enquiryToInput = (entity) => {
|
|
|
866
909
|
};
|
|
867
910
|
};
|
|
868
911
|
const langToInputCascade = (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,
|
|
912
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
|
|
913
|
+
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfSolutionAggregate, webPartsOfCustomerCaseAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, bulletinsAggregate, ...rest } = entity;
|
|
871
914
|
return {
|
|
872
915
|
...rest,
|
|
873
916
|
webPartsOfMediaFolder: entity.webPartsOfMediaFolder ? processHasManyClear({ sync: (_a = entity.webPartsOfMediaFolder) == null ? void 0 : _a.map((ent) => mediaFolderToInput(ent)) }) : void 0,
|
|
874
917
|
webPartsOfEnquiry: entity.webPartsOfEnquiry ? processHasManyClear({ sync: (_b = entity.webPartsOfEnquiry) == null ? void 0 : _b.map((ent) => enquiryToInput(ent)) }) : void 0,
|
|
875
918
|
webPartsOfProduct: entity.webPartsOfProduct ? processHasManyClear({ sync: (_c = entity.webPartsOfProduct) == null ? void 0 : _c.map((ent) => productToInput(ent)) }) : void 0,
|
|
876
919
|
webPartsOfPost: entity.webPartsOfPost ? processHasManyClear({ sync: (_d = entity.webPartsOfPost) == null ? void 0 : _d.map((ent) => postToInput(ent)) }) : void 0,
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
920
|
+
webPartsOfSolution: entity.webPartsOfSolution ? processHasManyClear({ sync: (_e = entity.webPartsOfSolution) == null ? void 0 : _e.map((ent) => solutionToInput(ent)) }) : void 0,
|
|
921
|
+
webPartsOfCustomerCase: entity.webPartsOfCustomerCase ? processHasManyClear({ sync: (_f = entity.webPartsOfCustomerCase) == null ? void 0 : _f.map((ent) => customerCaseToInput(ent)) }) : void 0,
|
|
922
|
+
webPartsOfPostCategory: entity.webPartsOfPostCategory ? processHasManyClear({ sync: (_g = entity.webPartsOfPostCategory) == null ? void 0 : _g.map((ent) => postCategoryToInput(ent)) }) : void 0,
|
|
923
|
+
webPartsOfTag: entity.webPartsOfTag ? processHasManyClear({ sync: (_h = entity.webPartsOfTag) == null ? void 0 : _h.map((ent) => tagToInput(ent)) }) : void 0,
|
|
924
|
+
webPartsOfCustomer: entity.webPartsOfCustomer ? processHasManyClear({ sync: (_i = entity.webPartsOfCustomer) == null ? void 0 : _i.map((ent) => customerToInput(ent)) }) : void 0,
|
|
925
|
+
webPartsOfProductCategory: entity.webPartsOfProductCategory ? processHasManyClear({ sync: (_j = entity.webPartsOfProductCategory) == null ? void 0 : _j.map((ent) => productCategoryToInput(ent)) }) : void 0,
|
|
926
|
+
webPartsOfSpamFilterRule: entity.webPartsOfSpamFilterRule ? processHasManyClear({ sync: (_k = entity.webPartsOfSpamFilterRule) == null ? void 0 : _k.map((ent) => spamFilterRuleToInput(ent)) }) : void 0,
|
|
927
|
+
webPartsOfMedia: entity.webPartsOfMedia ? processHasManyClear({ sync: (_l = entity.webPartsOfMedia) == null ? void 0 : _l.map((ent) => mediaToInput(ent)) }) : void 0,
|
|
885
928
|
websites: entity.websites ? processHasManyClear({ sync: (_m = entity.websites) == null ? void 0 : _m.map((ent) => websiteToInput(ent)) }) : void 0,
|
|
886
929
|
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
|
|
930
|
+
themes: entity.themes ? processHasManyClear({ sync: (_o = entity.themes) == null ? void 0 : _o.map((ent) => themeToInput(ent)) }) : void 0,
|
|
931
|
+
bulletins: entity.bulletins ? processHasManyClear({ sync: (_p = entity.bulletins) == null ? void 0 : _p.map((ent) => bulletinToInput(ent)) }) : void 0
|
|
888
932
|
};
|
|
889
933
|
};
|
|
890
934
|
const langToInput = (entity) => {
|
|
891
|
-
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate,
|
|
935
|
+
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfSolutionAggregate, webPartsOfCustomerCaseAggregate, webPartsOfPostCategoryAggregate, webPartsOfTagAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, bulletinsAggregate, ...rest } = entity;
|
|
892
936
|
return {
|
|
893
937
|
...rest,
|
|
894
938
|
webPartsOfMediaFolder: convertHasManyToInput(entity.webPartsOfMediaFolder),
|
|
895
939
|
webPartsOfEnquiry: convertHasManyToInput(entity.webPartsOfEnquiry),
|
|
896
940
|
webPartsOfProduct: convertHasManyToInput(entity.webPartsOfProduct),
|
|
897
941
|
webPartsOfPost: convertHasManyToInput(entity.webPartsOfPost),
|
|
942
|
+
webPartsOfSolution: convertHasManyToInput(entity.webPartsOfSolution),
|
|
943
|
+
webPartsOfCustomerCase: convertHasManyToInput(entity.webPartsOfCustomerCase),
|
|
898
944
|
webPartsOfPostCategory: convertHasManyToInput(entity.webPartsOfPostCategory),
|
|
899
945
|
webPartsOfTag: convertHasManyToInput(entity.webPartsOfTag),
|
|
900
946
|
webPartsOfCustomer: convertHasManyToInput(entity.webPartsOfCustomer),
|
|
901
947
|
webPartsOfProductCategory: convertHasManyToInput(entity.webPartsOfProductCategory),
|
|
902
948
|
webPartsOfSpamFilterRule: convertHasManyToInput(entity.webPartsOfSpamFilterRule),
|
|
903
949
|
webPartsOfMedia: convertHasManyToInput(entity.webPartsOfMedia),
|
|
904
|
-
webPartsOfVideoFolder: convertHasManyToInput(entity.webPartsOfVideoFolder),
|
|
905
|
-
webPartsOfVideo: convertHasManyToInput(entity.webPartsOfVideo),
|
|
906
950
|
websites: convertHasManyToInput(entity.websites),
|
|
907
951
|
baseLangOf: convertHasManyToInput(entity.baseLangOf),
|
|
908
|
-
themes: convertHasManyToInput(entity.themes)
|
|
952
|
+
themes: convertHasManyToInput(entity.themes),
|
|
953
|
+
bulletins: convertHasManyToInput(entity.bulletins)
|
|
909
954
|
};
|
|
910
955
|
};
|
|
911
956
|
const mediaFolderToInputCascade = (entity) => {
|
|
@@ -932,8 +977,8 @@ const mediaFolderToInput = (entity) => {
|
|
|
932
977
|
};
|
|
933
978
|
};
|
|
934
979
|
const mediaToInputCascade = (entity) => {
|
|
935
|
-
var _a, _b, _c, _d, _e, _f, _g, _h
|
|
936
|
-
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate,
|
|
980
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
981
|
+
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, ...rest } = entity;
|
|
937
982
|
return {
|
|
938
983
|
...rest,
|
|
939
984
|
folder: entity.folder ? processHasOneClear({ sync: mediaFolderToInput(entity.folder) }) : void 0,
|
|
@@ -948,12 +993,11 @@ const mediaToInputCascade = (entity) => {
|
|
|
948
993
|
postCategory: entity.postCategory ? processHasOneClear({ sync: postCategoryToInput(entity.postCategory) }) : void 0,
|
|
949
994
|
usedByThemConfig: entity.usedByThemConfig ? processHasManyClear({ sync: (_f = entity.usedByThemConfig) == null ? void 0 : _f.map((ent) => themeConfigToInput(ent)) }) : void 0,
|
|
950
995
|
pageMeta: entity.pageMeta ? processHasManyClear({ sync: (_g = entity.pageMeta) == null ? void 0 : _g.map((ent) => pageMetaToInput(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
|
|
996
|
+
searchIndex: entity.searchIndex ? processHasManyClear({ sync: (_h = entity.searchIndex) == null ? void 0 : _h.map((ent) => searchIndexToInput(ent)) }) : void 0
|
|
953
997
|
};
|
|
954
998
|
};
|
|
955
999
|
const mediaToInput = (entity) => {
|
|
956
|
-
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate,
|
|
1000
|
+
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, coverOfThemeAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, ...rest } = entity;
|
|
957
1001
|
return {
|
|
958
1002
|
...rest,
|
|
959
1003
|
folder: convertHasOneToInput(entity.folder),
|
|
@@ -968,8 +1012,7 @@ const mediaToInput = (entity) => {
|
|
|
968
1012
|
postCategory: convertHasOneToInput(entity.postCategory),
|
|
969
1013
|
usedByThemConfig: convertHasManyToInput(entity.usedByThemConfig),
|
|
970
1014
|
pageMeta: convertHasManyToInput(entity.pageMeta),
|
|
971
|
-
searchIndex: convertHasManyToInput(entity.searchIndex)
|
|
972
|
-
coverOfVideo: convertHasManyToInput(entity.coverOfVideo)
|
|
1015
|
+
searchIndex: convertHasManyToInput(entity.searchIndex)
|
|
973
1016
|
};
|
|
974
1017
|
};
|
|
975
1018
|
const userToInputCascade = (entity) => {
|
|
@@ -1679,33 +1722,6 @@ var SourceType = /* @__PURE__ */ ((SourceType2) => {
|
|
|
1679
1722
|
SourceType2["post"] = "post";
|
|
1680
1723
|
return SourceType2;
|
|
1681
1724
|
})(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
1725
|
const TaskEntityName = "Task";
|
|
1710
1726
|
const TaskEntityLabel = "";
|
|
1711
1727
|
const taskToInputCascade = (entity) => {
|
|
@@ -1751,9 +1767,13 @@ var TaskType = /* @__PURE__ */ ((TaskType2) => {
|
|
|
1751
1767
|
TaskType2["TranslateWebsite"] = "TranslateWebsite";
|
|
1752
1768
|
TaskType2["TranslateCusomizedPage"] = "TranslateCusomizedPage";
|
|
1753
1769
|
TaskType2["TranslateComponent"] = "TranslateComponent";
|
|
1754
|
-
TaskType2["TranslatePost"] = "TranslatePost";
|
|
1755
|
-
TaskType2["TranslateProduct"] = "TranslateProduct";
|
|
1756
1770
|
TaskType2["TranslateBuiltinPage"] = "TranslateBuiltinPage";
|
|
1771
|
+
TaskType2["ResetPostFromBaseLang"] = "ResetPostFromBaseLang";
|
|
1772
|
+
TaskType2["ResetProductFromBaseLang"] = "ResetProductFromBaseLang";
|
|
1773
|
+
TaskType2["TranslatePostToAllLangs"] = "TranslatePostToAllLangs";
|
|
1774
|
+
TaskType2["TranslateProductToAllLangs"] = " TranslateProductToAllLangs";
|
|
1775
|
+
TaskType2["TranslateContents"] = "TranslateContents";
|
|
1776
|
+
TaskType2["TranslateContentsIncrement"] = "TranslateContentsIncrement";
|
|
1757
1777
|
return TaskType2;
|
|
1758
1778
|
})(TaskType || {});
|
|
1759
1779
|
var AppModule = /* @__PURE__ */ ((AppModule2) => {
|
|
@@ -1799,6 +1819,65 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
1799
1819
|
NotificationType2["update"] = "update";
|
|
1800
1820
|
return NotificationType2;
|
|
1801
1821
|
})(NotificationType || {});
|
|
1822
|
+
const CustomerCaseEntityName = "CustomerCase";
|
|
1823
|
+
const CustomerCaseEntityLabel = "";
|
|
1824
|
+
var CustomerCaseDistinctEnum = /* @__PURE__ */ ((CustomerCaseDistinctEnum2) => {
|
|
1825
|
+
CustomerCaseDistinctEnum2["id"] = "id";
|
|
1826
|
+
CustomerCaseDistinctEnum2["publishedAt"] = "publishedAt";
|
|
1827
|
+
CustomerCaseDistinctEnum2["status"] = "status";
|
|
1828
|
+
CustomerCaseDistinctEnum2["title"] = "title";
|
|
1829
|
+
CustomerCaseDistinctEnum2["extends"] = "extends";
|
|
1830
|
+
CustomerCaseDistinctEnum2["createdAt"] = "createdAt";
|
|
1831
|
+
CustomerCaseDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1832
|
+
CustomerCaseDistinctEnum2["content"] = "content";
|
|
1833
|
+
CustomerCaseDistinctEnum2["slug"] = "slug";
|
|
1834
|
+
CustomerCaseDistinctEnum2["description"] = "description";
|
|
1835
|
+
return CustomerCaseDistinctEnum2;
|
|
1836
|
+
})(CustomerCaseDistinctEnum || {});
|
|
1837
|
+
const SolutionEntityName = "Solution";
|
|
1838
|
+
const SolutionEntityLabel = "";
|
|
1839
|
+
var SolutionDistinctEnum = /* @__PURE__ */ ((SolutionDistinctEnum2) => {
|
|
1840
|
+
SolutionDistinctEnum2["id"] = "id";
|
|
1841
|
+
SolutionDistinctEnum2["publishedAt"] = "publishedAt";
|
|
1842
|
+
SolutionDistinctEnum2["status"] = "status";
|
|
1843
|
+
SolutionDistinctEnum2["title"] = "title";
|
|
1844
|
+
SolutionDistinctEnum2["extends"] = "extends";
|
|
1845
|
+
SolutionDistinctEnum2["createdAt"] = "createdAt";
|
|
1846
|
+
SolutionDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1847
|
+
SolutionDistinctEnum2["content"] = "content";
|
|
1848
|
+
SolutionDistinctEnum2["slug"] = "slug";
|
|
1849
|
+
SolutionDistinctEnum2["description"] = "description";
|
|
1850
|
+
return SolutionDistinctEnum2;
|
|
1851
|
+
})(SolutionDistinctEnum || {});
|
|
1852
|
+
const FAQEntityName = "FAQ";
|
|
1853
|
+
const FAQEntityLabel = "";
|
|
1854
|
+
var FAQDistinctEnum = /* @__PURE__ */ ((FAQDistinctEnum2) => {
|
|
1855
|
+
FAQDistinctEnum2["id"] = "id";
|
|
1856
|
+
FAQDistinctEnum2["question"] = "question";
|
|
1857
|
+
FAQDistinctEnum2["answer"] = "answer";
|
|
1858
|
+
FAQDistinctEnum2["createdAt"] = "createdAt";
|
|
1859
|
+
FAQDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1860
|
+
return FAQDistinctEnum2;
|
|
1861
|
+
})(FAQDistinctEnum || {});
|
|
1862
|
+
const BulletinEntityName = "Bulletin";
|
|
1863
|
+
const BulletinEntityLabel = "公告";
|
|
1864
|
+
var BulletinDistinctEnum = /* @__PURE__ */ ((BulletinDistinctEnum2) => {
|
|
1865
|
+
BulletinDistinctEnum2["id"] = "id";
|
|
1866
|
+
BulletinDistinctEnum2["content"] = "content";
|
|
1867
|
+
BulletinDistinctEnum2["type"] = "type";
|
|
1868
|
+
BulletinDistinctEnum2["createdAt"] = "createdAt";
|
|
1869
|
+
BulletinDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1870
|
+
BulletinDistinctEnum2["endDate"] = "endDate";
|
|
1871
|
+
BulletinDistinctEnum2["title"] = "title";
|
|
1872
|
+
return BulletinDistinctEnum2;
|
|
1873
|
+
})(BulletinDistinctEnum || {});
|
|
1874
|
+
const ProductRelatedPivotEntityName = "ProductRelatedPivot";
|
|
1875
|
+
const ProductRelatedPivotEntityLabel = "";
|
|
1876
|
+
var ProductRelatedPivotDistinctEnum = /* @__PURE__ */ ((ProductRelatedPivotDistinctEnum2) => {
|
|
1877
|
+
ProductRelatedPivotDistinctEnum2["id"] = "id";
|
|
1878
|
+
ProductRelatedPivotDistinctEnum2["seqValue"] = "seqValue";
|
|
1879
|
+
return ProductRelatedPivotDistinctEnum2;
|
|
1880
|
+
})(ProductRelatedPivotDistinctEnum || {});
|
|
1802
1881
|
class RoleQueryOptions extends QueryOptions {
|
|
1803
1882
|
constructor(fields, queryArgs) {
|
|
1804
1883
|
super(RoleEntityName, fields, queryArgs);
|
|
@@ -3154,6 +3233,157 @@ class AttachmentOnProductQueryOptions extends QueryOptions {
|
|
|
3154
3233
|
return this;
|
|
3155
3234
|
}
|
|
3156
3235
|
}
|
|
3236
|
+
class SolutionQueryOptions extends QueryOptions {
|
|
3237
|
+
constructor(fields, queryArgs) {
|
|
3238
|
+
super(SolutionEntityName, fields, queryArgs);
|
|
3239
|
+
}
|
|
3240
|
+
id() {
|
|
3241
|
+
this.addField("id");
|
|
3242
|
+
return this;
|
|
3243
|
+
}
|
|
3244
|
+
publishedAt() {
|
|
3245
|
+
this.addField("publishedAt");
|
|
3246
|
+
return this;
|
|
3247
|
+
}
|
|
3248
|
+
status() {
|
|
3249
|
+
this.addField("status");
|
|
3250
|
+
return this;
|
|
3251
|
+
}
|
|
3252
|
+
title() {
|
|
3253
|
+
this.addField("title");
|
|
3254
|
+
return this;
|
|
3255
|
+
}
|
|
3256
|
+
extends() {
|
|
3257
|
+
this.addField("extends");
|
|
3258
|
+
return this;
|
|
3259
|
+
}
|
|
3260
|
+
createdAt() {
|
|
3261
|
+
this.addField("createdAt");
|
|
3262
|
+
return this;
|
|
3263
|
+
}
|
|
3264
|
+
updatedAt() {
|
|
3265
|
+
this.addField("updatedAt");
|
|
3266
|
+
return this;
|
|
3267
|
+
}
|
|
3268
|
+
content() {
|
|
3269
|
+
this.addField("content");
|
|
3270
|
+
return this;
|
|
3271
|
+
}
|
|
3272
|
+
slug() {
|
|
3273
|
+
this.addField("slug");
|
|
3274
|
+
return this;
|
|
3275
|
+
}
|
|
3276
|
+
description() {
|
|
3277
|
+
this.addField("description");
|
|
3278
|
+
return this;
|
|
3279
|
+
}
|
|
3280
|
+
lang(options) {
|
|
3281
|
+
if (Array.isArray(options)) {
|
|
3282
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
3283
|
+
} else {
|
|
3284
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3285
|
+
}
|
|
3286
|
+
return this;
|
|
3287
|
+
}
|
|
3288
|
+
faqs(options) {
|
|
3289
|
+
if (Array.isArray(options)) {
|
|
3290
|
+
this._associations["faqs"] = new FAQQueryOptions(options);
|
|
3291
|
+
} else {
|
|
3292
|
+
this._associations["faqs"] = options || new FAQQueryOptions(["id"]);
|
|
3293
|
+
}
|
|
3294
|
+
return this;
|
|
3295
|
+
}
|
|
3296
|
+
faqsAggregate(aggregate) {
|
|
3297
|
+
this._aggregates["faqsAggregate"] = aggregate;
|
|
3298
|
+
return this;
|
|
3299
|
+
}
|
|
3300
|
+
website(options) {
|
|
3301
|
+
if (Array.isArray(options)) {
|
|
3302
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
3303
|
+
} else {
|
|
3304
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
3305
|
+
}
|
|
3306
|
+
return this;
|
|
3307
|
+
}
|
|
3308
|
+
}
|
|
3309
|
+
class FAQQueryOptions extends QueryOptions {
|
|
3310
|
+
constructor(fields, queryArgs) {
|
|
3311
|
+
super(FAQEntityName, fields, queryArgs);
|
|
3312
|
+
}
|
|
3313
|
+
id() {
|
|
3314
|
+
this.addField("id");
|
|
3315
|
+
return this;
|
|
3316
|
+
}
|
|
3317
|
+
question() {
|
|
3318
|
+
this.addField("question");
|
|
3319
|
+
return this;
|
|
3320
|
+
}
|
|
3321
|
+
answer() {
|
|
3322
|
+
this.addField("answer");
|
|
3323
|
+
return this;
|
|
3324
|
+
}
|
|
3325
|
+
createdAt() {
|
|
3326
|
+
this.addField("createdAt");
|
|
3327
|
+
return this;
|
|
3328
|
+
}
|
|
3329
|
+
updatedAt() {
|
|
3330
|
+
this.addField("updatedAt");
|
|
3331
|
+
return this;
|
|
3332
|
+
}
|
|
3333
|
+
website(options) {
|
|
3334
|
+
if (Array.isArray(options)) {
|
|
3335
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
3336
|
+
} else {
|
|
3337
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
3338
|
+
}
|
|
3339
|
+
return this;
|
|
3340
|
+
}
|
|
3341
|
+
product(options) {
|
|
3342
|
+
if (Array.isArray(options)) {
|
|
3343
|
+
this._associations["product"] = new ProductQueryOptions(options);
|
|
3344
|
+
} else {
|
|
3345
|
+
this._associations["product"] = options || new ProductQueryOptions(["id"]);
|
|
3346
|
+
}
|
|
3347
|
+
return this;
|
|
3348
|
+
}
|
|
3349
|
+
solution(options) {
|
|
3350
|
+
if (Array.isArray(options)) {
|
|
3351
|
+
this._associations["solution"] = new SolutionQueryOptions(options);
|
|
3352
|
+
} else {
|
|
3353
|
+
this._associations["solution"] = options || new SolutionQueryOptions(["id"]);
|
|
3354
|
+
}
|
|
3355
|
+
return this;
|
|
3356
|
+
}
|
|
3357
|
+
}
|
|
3358
|
+
class ProductRelatedPivotQueryOptions extends QueryOptions {
|
|
3359
|
+
constructor(fields, queryArgs) {
|
|
3360
|
+
super(ProductRelatedPivotEntityName, fields, queryArgs);
|
|
3361
|
+
}
|
|
3362
|
+
id() {
|
|
3363
|
+
this.addField("id");
|
|
3364
|
+
return this;
|
|
3365
|
+
}
|
|
3366
|
+
seqValue() {
|
|
3367
|
+
this.addField("seqValue");
|
|
3368
|
+
return this;
|
|
3369
|
+
}
|
|
3370
|
+
product(options) {
|
|
3371
|
+
if (Array.isArray(options)) {
|
|
3372
|
+
this._associations["product"] = new ProductQueryOptions(options);
|
|
3373
|
+
} else {
|
|
3374
|
+
this._associations["product"] = options || new ProductQueryOptions(["id"]);
|
|
3375
|
+
}
|
|
3376
|
+
return this;
|
|
3377
|
+
}
|
|
3378
|
+
relatedBy(options) {
|
|
3379
|
+
if (Array.isArray(options)) {
|
|
3380
|
+
this._associations["relatedBy"] = new ProductQueryOptions(options);
|
|
3381
|
+
} else {
|
|
3382
|
+
this._associations["relatedBy"] = options || new ProductQueryOptions(["id"]);
|
|
3383
|
+
}
|
|
3384
|
+
return this;
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3157
3387
|
class ProductQueryOptions extends QueryOptions {
|
|
3158
3388
|
constructor(fields, queryArgs) {
|
|
3159
3389
|
super(ProductEntityName, fields, queryArgs);
|
|
@@ -3304,60 +3534,35 @@ class ProductQueryOptions extends QueryOptions {
|
|
|
3304
3534
|
}
|
|
3305
3535
|
return this;
|
|
3306
3536
|
}
|
|
3307
|
-
|
|
3537
|
+
faqs(options) {
|
|
3308
3538
|
if (Array.isArray(options)) {
|
|
3309
|
-
this._associations["
|
|
3539
|
+
this._associations["faqs"] = new FAQQueryOptions(options);
|
|
3310
3540
|
} else {
|
|
3311
|
-
this._associations["
|
|
3541
|
+
this._associations["faqs"] = options || new FAQQueryOptions(["id"]);
|
|
3312
3542
|
}
|
|
3313
3543
|
return this;
|
|
3314
3544
|
}
|
|
3315
|
-
|
|
3545
|
+
faqsAggregate(aggregate) {
|
|
3546
|
+
this._aggregates["faqsAggregate"] = aggregate;
|
|
3547
|
+
return this;
|
|
3548
|
+
}
|
|
3549
|
+
relatedPivots(options) {
|
|
3316
3550
|
if (Array.isArray(options)) {
|
|
3317
|
-
this._associations["
|
|
3551
|
+
this._associations["relatedPivots"] = new ProductRelatedPivotQueryOptions(options);
|
|
3318
3552
|
} else {
|
|
3319
|
-
this._associations["
|
|
3553
|
+
this._associations["relatedPivots"] = options || new ProductRelatedPivotQueryOptions(["id"]);
|
|
3320
3554
|
}
|
|
3321
3555
|
return this;
|
|
3322
3556
|
}
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
constructor(fields, queryArgs) {
|
|
3326
|
-
super(SpamFilterRuleEntityName, fields, queryArgs);
|
|
3327
|
-
}
|
|
3328
|
-
id() {
|
|
3329
|
-
this.addField("id");
|
|
3330
|
-
return this;
|
|
3331
|
-
}
|
|
3332
|
-
emails() {
|
|
3333
|
-
this.addField("emails");
|
|
3557
|
+
relatedPivotsAggregate(aggregate) {
|
|
3558
|
+
this._aggregates["relatedPivotsAggregate"] = aggregate;
|
|
3334
3559
|
return this;
|
|
3335
3560
|
}
|
|
3336
|
-
|
|
3337
|
-
this.addField("ips");
|
|
3338
|
-
return this;
|
|
3339
|
-
}
|
|
3340
|
-
keywords() {
|
|
3341
|
-
this.addField("keywords");
|
|
3342
|
-
return this;
|
|
3343
|
-
}
|
|
3344
|
-
createdAt() {
|
|
3345
|
-
this.addField("createdAt");
|
|
3346
|
-
return this;
|
|
3347
|
-
}
|
|
3348
|
-
updatedAt() {
|
|
3349
|
-
this.addField("updatedAt");
|
|
3350
|
-
return this;
|
|
3351
|
-
}
|
|
3352
|
-
content() {
|
|
3353
|
-
this.addField("content");
|
|
3354
|
-
return this;
|
|
3355
|
-
}
|
|
3356
|
-
lang(options) {
|
|
3561
|
+
creator(options) {
|
|
3357
3562
|
if (Array.isArray(options)) {
|
|
3358
|
-
this._associations["
|
|
3563
|
+
this._associations["creator"] = new UserQueryOptions(options);
|
|
3359
3564
|
} else {
|
|
3360
|
-
this._associations["
|
|
3565
|
+
this._associations["creator"] = options || new UserQueryOptions(["id"]);
|
|
3361
3566
|
}
|
|
3362
3567
|
return this;
|
|
3363
3568
|
}
|
|
@@ -3369,41 +3574,37 @@ class SpamFilterRuleQueryOptions extends QueryOptions {
|
|
|
3369
3574
|
}
|
|
3370
3575
|
return this;
|
|
3371
3576
|
}
|
|
3577
|
+
relatedByPovit(options) {
|
|
3578
|
+
if (Array.isArray(options)) {
|
|
3579
|
+
this._associations["relatedByPovit"] = new ProductRelatedPivotQueryOptions(options);
|
|
3580
|
+
} else {
|
|
3581
|
+
this._associations["relatedByPovit"] = options || new ProductRelatedPivotQueryOptions(["id"]);
|
|
3582
|
+
}
|
|
3583
|
+
return this;
|
|
3584
|
+
}
|
|
3372
3585
|
}
|
|
3373
|
-
class
|
|
3586
|
+
class CustomerCaseQueryOptions extends QueryOptions {
|
|
3374
3587
|
constructor(fields, queryArgs) {
|
|
3375
|
-
super(
|
|
3588
|
+
super(CustomerCaseEntityName, fields, queryArgs);
|
|
3376
3589
|
}
|
|
3377
3590
|
id() {
|
|
3378
3591
|
this.addField("id");
|
|
3379
3592
|
return this;
|
|
3380
3593
|
}
|
|
3381
|
-
|
|
3382
|
-
this.addField("
|
|
3383
|
-
return this;
|
|
3384
|
-
}
|
|
3385
|
-
size() {
|
|
3386
|
-
this.addField("size");
|
|
3387
|
-
return this;
|
|
3388
|
-
}
|
|
3389
|
-
mimeType() {
|
|
3390
|
-
this.addField("mimeType");
|
|
3391
|
-
return this;
|
|
3392
|
-
}
|
|
3393
|
-
extName() {
|
|
3394
|
-
this.addField("extName");
|
|
3594
|
+
publishedAt() {
|
|
3595
|
+
this.addField("publishedAt");
|
|
3395
3596
|
return this;
|
|
3396
3597
|
}
|
|
3397
|
-
|
|
3398
|
-
this.addField("
|
|
3598
|
+
status() {
|
|
3599
|
+
this.addField("status");
|
|
3399
3600
|
return this;
|
|
3400
3601
|
}
|
|
3401
|
-
|
|
3402
|
-
this.addField("
|
|
3602
|
+
title() {
|
|
3603
|
+
this.addField("title");
|
|
3403
3604
|
return this;
|
|
3404
3605
|
}
|
|
3405
|
-
|
|
3406
|
-
this.addField("
|
|
3606
|
+
extends() {
|
|
3607
|
+
this.addField("extends");
|
|
3407
3608
|
return this;
|
|
3408
3609
|
}
|
|
3409
3610
|
createdAt() {
|
|
@@ -3418,34 +3619,22 @@ class VideoQueryOptions extends QueryOptions {
|
|
|
3418
3619
|
this.addField("content");
|
|
3419
3620
|
return this;
|
|
3420
3621
|
}
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
this._associations["lang"] = new LangQueryOptions(options);
|
|
3424
|
-
} else {
|
|
3425
|
-
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3426
|
-
}
|
|
3622
|
+
slug() {
|
|
3623
|
+
this.addField("slug");
|
|
3427
3624
|
return this;
|
|
3428
3625
|
}
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
this._associations["folder"] = new VideoFolderQueryOptions(options);
|
|
3432
|
-
} else {
|
|
3433
|
-
this._associations["folder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3434
|
-
}
|
|
3626
|
+
description() {
|
|
3627
|
+
this.addField("description");
|
|
3435
3628
|
return this;
|
|
3436
3629
|
}
|
|
3437
|
-
|
|
3630
|
+
lang(options) {
|
|
3438
3631
|
if (Array.isArray(options)) {
|
|
3439
|
-
this._associations["
|
|
3632
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
3440
3633
|
} else {
|
|
3441
|
-
this._associations["
|
|
3634
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3442
3635
|
}
|
|
3443
3636
|
return this;
|
|
3444
3637
|
}
|
|
3445
|
-
coverAggregate(aggregate) {
|
|
3446
|
-
this._aggregates["coverAggregate"] = aggregate;
|
|
3447
|
-
return this;
|
|
3448
|
-
}
|
|
3449
3638
|
website(options) {
|
|
3450
3639
|
if (Array.isArray(options)) {
|
|
3451
3640
|
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
@@ -3455,20 +3644,24 @@ class VideoQueryOptions extends QueryOptions {
|
|
|
3455
3644
|
return this;
|
|
3456
3645
|
}
|
|
3457
3646
|
}
|
|
3458
|
-
class
|
|
3647
|
+
class SpamFilterRuleQueryOptions extends QueryOptions {
|
|
3459
3648
|
constructor(fields, queryArgs) {
|
|
3460
|
-
super(
|
|
3649
|
+
super(SpamFilterRuleEntityName, fields, queryArgs);
|
|
3461
3650
|
}
|
|
3462
3651
|
id() {
|
|
3463
3652
|
this.addField("id");
|
|
3464
3653
|
return this;
|
|
3465
3654
|
}
|
|
3466
|
-
|
|
3467
|
-
this.addField("
|
|
3655
|
+
emails() {
|
|
3656
|
+
this.addField("emails");
|
|
3468
3657
|
return this;
|
|
3469
3658
|
}
|
|
3470
|
-
|
|
3471
|
-
this.addField("
|
|
3659
|
+
ips() {
|
|
3660
|
+
this.addField("ips");
|
|
3661
|
+
return this;
|
|
3662
|
+
}
|
|
3663
|
+
keywords() {
|
|
3664
|
+
this.addField("keywords");
|
|
3472
3665
|
return this;
|
|
3473
3666
|
}
|
|
3474
3667
|
createdAt() {
|
|
@@ -3491,18 +3684,6 @@ class VideoFolderQueryOptions extends QueryOptions {
|
|
|
3491
3684
|
}
|
|
3492
3685
|
return this;
|
|
3493
3686
|
}
|
|
3494
|
-
children(options) {
|
|
3495
|
-
if (Array.isArray(options)) {
|
|
3496
|
-
this._associations["children"] = new VideoFolderQueryOptions(options);
|
|
3497
|
-
} else {
|
|
3498
|
-
this._associations["children"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3499
|
-
}
|
|
3500
|
-
return this;
|
|
3501
|
-
}
|
|
3502
|
-
childrenAggregate(aggregate) {
|
|
3503
|
-
this._aggregates["childrenAggregate"] = aggregate;
|
|
3504
|
-
return this;
|
|
3505
|
-
}
|
|
3506
3687
|
website(options) {
|
|
3507
3688
|
if (Array.isArray(options)) {
|
|
3508
3689
|
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
@@ -3511,26 +3692,6 @@ class VideoFolderQueryOptions extends QueryOptions {
|
|
|
3511
3692
|
}
|
|
3512
3693
|
return this;
|
|
3513
3694
|
}
|
|
3514
|
-
videos(options) {
|
|
3515
|
-
if (Array.isArray(options)) {
|
|
3516
|
-
this._associations["videos"] = new VideoQueryOptions(options);
|
|
3517
|
-
} else {
|
|
3518
|
-
this._associations["videos"] = options || new VideoQueryOptions(["id"]);
|
|
3519
|
-
}
|
|
3520
|
-
return this;
|
|
3521
|
-
}
|
|
3522
|
-
videosAggregate(aggregate) {
|
|
3523
|
-
this._aggregates["videosAggregate"] = aggregate;
|
|
3524
|
-
return this;
|
|
3525
|
-
}
|
|
3526
|
-
parent(options) {
|
|
3527
|
-
if (Array.isArray(options)) {
|
|
3528
|
-
this._associations["parent"] = new VideoFolderQueryOptions(options);
|
|
3529
|
-
} else {
|
|
3530
|
-
this._associations["parent"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3531
|
-
}
|
|
3532
|
-
return this;
|
|
3533
|
-
}
|
|
3534
3695
|
}
|
|
3535
3696
|
class AnalyticsConfigQueryOptions extends QueryOptions {
|
|
3536
3697
|
constructor(fields, queryArgs) {
|
|
@@ -3717,6 +3878,55 @@ class SearchIndexQueryOptions extends QueryOptions {
|
|
|
3717
3878
|
return this;
|
|
3718
3879
|
}
|
|
3719
3880
|
}
|
|
3881
|
+
class BulletinQueryOptions extends QueryOptions {
|
|
3882
|
+
constructor(fields, queryArgs) {
|
|
3883
|
+
super(BulletinEntityName, fields, queryArgs);
|
|
3884
|
+
}
|
|
3885
|
+
id() {
|
|
3886
|
+
this.addField("id");
|
|
3887
|
+
return this;
|
|
3888
|
+
}
|
|
3889
|
+
content() {
|
|
3890
|
+
this.addField("content");
|
|
3891
|
+
return this;
|
|
3892
|
+
}
|
|
3893
|
+
type() {
|
|
3894
|
+
this.addField("type");
|
|
3895
|
+
return this;
|
|
3896
|
+
}
|
|
3897
|
+
createdAt() {
|
|
3898
|
+
this.addField("createdAt");
|
|
3899
|
+
return this;
|
|
3900
|
+
}
|
|
3901
|
+
updatedAt() {
|
|
3902
|
+
this.addField("updatedAt");
|
|
3903
|
+
return this;
|
|
3904
|
+
}
|
|
3905
|
+
endDate() {
|
|
3906
|
+
this.addField("endDate");
|
|
3907
|
+
return this;
|
|
3908
|
+
}
|
|
3909
|
+
title() {
|
|
3910
|
+
this.addField("title");
|
|
3911
|
+
return this;
|
|
3912
|
+
}
|
|
3913
|
+
lang(options) {
|
|
3914
|
+
if (Array.isArray(options)) {
|
|
3915
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
3916
|
+
} else {
|
|
3917
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3918
|
+
}
|
|
3919
|
+
return this;
|
|
3920
|
+
}
|
|
3921
|
+
website(options) {
|
|
3922
|
+
if (Array.isArray(options)) {
|
|
3923
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
3924
|
+
} else {
|
|
3925
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
3926
|
+
}
|
|
3927
|
+
return this;
|
|
3928
|
+
}
|
|
3929
|
+
}
|
|
3720
3930
|
class WebsiteQueryOptions extends QueryOptions {
|
|
3721
3931
|
constructor(fields, queryArgs) {
|
|
3722
3932
|
super(WebsiteEntityName, fields, queryArgs);
|
|
@@ -3858,6 +4068,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
3858
4068
|
this._aggregates["partsOfPostAggregate"] = aggregate;
|
|
3859
4069
|
return this;
|
|
3860
4070
|
}
|
|
4071
|
+
partsOfSolution(options) {
|
|
4072
|
+
if (Array.isArray(options)) {
|
|
4073
|
+
this._associations["partsOfSolution"] = new SolutionQueryOptions(options);
|
|
4074
|
+
} else {
|
|
4075
|
+
this._associations["partsOfSolution"] = options || new SolutionQueryOptions(["id"]);
|
|
4076
|
+
}
|
|
4077
|
+
return this;
|
|
4078
|
+
}
|
|
4079
|
+
partsOfSolutionAggregate(aggregate) {
|
|
4080
|
+
this._aggregates["partsOfSolutionAggregate"] = aggregate;
|
|
4081
|
+
return this;
|
|
4082
|
+
}
|
|
4083
|
+
partsOfCustomerCase(options) {
|
|
4084
|
+
if (Array.isArray(options)) {
|
|
4085
|
+
this._associations["partsOfCustomerCase"] = new CustomerCaseQueryOptions(options);
|
|
4086
|
+
} else {
|
|
4087
|
+
this._associations["partsOfCustomerCase"] = options || new CustomerCaseQueryOptions(["id"]);
|
|
4088
|
+
}
|
|
4089
|
+
return this;
|
|
4090
|
+
}
|
|
4091
|
+
partsOfCustomerCaseAggregate(aggregate) {
|
|
4092
|
+
this._aggregates["partsOfCustomerCaseAggregate"] = aggregate;
|
|
4093
|
+
return this;
|
|
4094
|
+
}
|
|
3861
4095
|
partsOfPostCategory(options) {
|
|
3862
4096
|
if (Array.isArray(options)) {
|
|
3863
4097
|
this._associations["partsOfPostCategory"] = new PostCategoryQueryOptions(options);
|
|
@@ -3930,30 +4164,6 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
3930
4164
|
this._aggregates["partsOfMediaAggregate"] = aggregate;
|
|
3931
4165
|
return this;
|
|
3932
4166
|
}
|
|
3933
|
-
partsOfVideoFolder(options) {
|
|
3934
|
-
if (Array.isArray(options)) {
|
|
3935
|
-
this._associations["partsOfVideoFolder"] = new VideoFolderQueryOptions(options);
|
|
3936
|
-
} else {
|
|
3937
|
-
this._associations["partsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3938
|
-
}
|
|
3939
|
-
return this;
|
|
3940
|
-
}
|
|
3941
|
-
partsOfVideoFolderAggregate(aggregate) {
|
|
3942
|
-
this._aggregates["partsOfVideoFolderAggregate"] = aggregate;
|
|
3943
|
-
return this;
|
|
3944
|
-
}
|
|
3945
|
-
partsOfVideo(options) {
|
|
3946
|
-
if (Array.isArray(options)) {
|
|
3947
|
-
this._associations["partsOfVideo"] = new VideoQueryOptions(options);
|
|
3948
|
-
} else {
|
|
3949
|
-
this._associations["partsOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
3950
|
-
}
|
|
3951
|
-
return this;
|
|
3952
|
-
}
|
|
3953
|
-
partsOfVideoAggregate(aggregate) {
|
|
3954
|
-
this._aggregates["partsOfVideoAggregate"] = aggregate;
|
|
3955
|
-
return this;
|
|
3956
|
-
}
|
|
3957
4167
|
langs(options) {
|
|
3958
4168
|
if (Array.isArray(options)) {
|
|
3959
4169
|
this._associations["langs"] = new LangQueryOptions(options);
|
|
@@ -4026,6 +4236,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
4026
4236
|
this._aggregates["searchIndexesAggregate"] = aggregate;
|
|
4027
4237
|
return this;
|
|
4028
4238
|
}
|
|
4239
|
+
faqs(options) {
|
|
4240
|
+
if (Array.isArray(options)) {
|
|
4241
|
+
this._associations["faqs"] = new FAQQueryOptions(options);
|
|
4242
|
+
} else {
|
|
4243
|
+
this._associations["faqs"] = options || new FAQQueryOptions(["id"]);
|
|
4244
|
+
}
|
|
4245
|
+
return this;
|
|
4246
|
+
}
|
|
4247
|
+
faqsAggregate(aggregate) {
|
|
4248
|
+
this._aggregates["faqsAggregate"] = aggregate;
|
|
4249
|
+
return this;
|
|
4250
|
+
}
|
|
4251
|
+
bulletins(options) {
|
|
4252
|
+
if (Array.isArray(options)) {
|
|
4253
|
+
this._associations["bulletins"] = new BulletinQueryOptions(options);
|
|
4254
|
+
} else {
|
|
4255
|
+
this._associations["bulletins"] = options || new BulletinQueryOptions(["id"]);
|
|
4256
|
+
}
|
|
4257
|
+
return this;
|
|
4258
|
+
}
|
|
4259
|
+
bulletinsAggregate(aggregate) {
|
|
4260
|
+
this._aggregates["bulletinsAggregate"] = aggregate;
|
|
4261
|
+
return this;
|
|
4262
|
+
}
|
|
4029
4263
|
}
|
|
4030
4264
|
class CustomerQueryOptions extends QueryOptions {
|
|
4031
4265
|
constructor(fields, queryArgs) {
|
|
@@ -4339,6 +4573,30 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4339
4573
|
this._aggregates["webPartsOfPostAggregate"] = aggregate;
|
|
4340
4574
|
return this;
|
|
4341
4575
|
}
|
|
4576
|
+
webPartsOfSolution(options) {
|
|
4577
|
+
if (Array.isArray(options)) {
|
|
4578
|
+
this._associations["webPartsOfSolution"] = new SolutionQueryOptions(options);
|
|
4579
|
+
} else {
|
|
4580
|
+
this._associations["webPartsOfSolution"] = options || new SolutionQueryOptions(["id"]);
|
|
4581
|
+
}
|
|
4582
|
+
return this;
|
|
4583
|
+
}
|
|
4584
|
+
webPartsOfSolutionAggregate(aggregate) {
|
|
4585
|
+
this._aggregates["webPartsOfSolutionAggregate"] = aggregate;
|
|
4586
|
+
return this;
|
|
4587
|
+
}
|
|
4588
|
+
webPartsOfCustomerCase(options) {
|
|
4589
|
+
if (Array.isArray(options)) {
|
|
4590
|
+
this._associations["webPartsOfCustomerCase"] = new CustomerCaseQueryOptions(options);
|
|
4591
|
+
} else {
|
|
4592
|
+
this._associations["webPartsOfCustomerCase"] = options || new CustomerCaseQueryOptions(["id"]);
|
|
4593
|
+
}
|
|
4594
|
+
return this;
|
|
4595
|
+
}
|
|
4596
|
+
webPartsOfCustomerCaseAggregate(aggregate) {
|
|
4597
|
+
this._aggregates["webPartsOfCustomerCaseAggregate"] = aggregate;
|
|
4598
|
+
return this;
|
|
4599
|
+
}
|
|
4342
4600
|
webPartsOfPostCategory(options) {
|
|
4343
4601
|
if (Array.isArray(options)) {
|
|
4344
4602
|
this._associations["webPartsOfPostCategory"] = new PostCategoryQueryOptions(options);
|
|
@@ -4411,30 +4669,6 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4411
4669
|
this._aggregates["webPartsOfMediaAggregate"] = aggregate;
|
|
4412
4670
|
return this;
|
|
4413
4671
|
}
|
|
4414
|
-
webPartsOfVideoFolder(options) {
|
|
4415
|
-
if (Array.isArray(options)) {
|
|
4416
|
-
this._associations["webPartsOfVideoFolder"] = new VideoFolderQueryOptions(options);
|
|
4417
|
-
} else {
|
|
4418
|
-
this._associations["webPartsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
4419
|
-
}
|
|
4420
|
-
return this;
|
|
4421
|
-
}
|
|
4422
|
-
webPartsOfVideoFolderAggregate(aggregate) {
|
|
4423
|
-
this._aggregates["webPartsOfVideoFolderAggregate"] = aggregate;
|
|
4424
|
-
return this;
|
|
4425
|
-
}
|
|
4426
|
-
webPartsOfVideo(options) {
|
|
4427
|
-
if (Array.isArray(options)) {
|
|
4428
|
-
this._associations["webPartsOfVideo"] = new VideoQueryOptions(options);
|
|
4429
|
-
} else {
|
|
4430
|
-
this._associations["webPartsOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
4431
|
-
}
|
|
4432
|
-
return this;
|
|
4433
|
-
}
|
|
4434
|
-
webPartsOfVideoAggregate(aggregate) {
|
|
4435
|
-
this._aggregates["webPartsOfVideoAggregate"] = aggregate;
|
|
4436
|
-
return this;
|
|
4437
|
-
}
|
|
4438
4672
|
websites(options) {
|
|
4439
4673
|
if (Array.isArray(options)) {
|
|
4440
4674
|
this._associations["websites"] = new WebsiteQueryOptions(options);
|
|
@@ -4471,6 +4705,18 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4471
4705
|
this._aggregates["themesAggregate"] = aggregate;
|
|
4472
4706
|
return this;
|
|
4473
4707
|
}
|
|
4708
|
+
bulletins(options) {
|
|
4709
|
+
if (Array.isArray(options)) {
|
|
4710
|
+
this._associations["bulletins"] = new BulletinQueryOptions(options);
|
|
4711
|
+
} else {
|
|
4712
|
+
this._associations["bulletins"] = options || new BulletinQueryOptions(["id"]);
|
|
4713
|
+
}
|
|
4714
|
+
return this;
|
|
4715
|
+
}
|
|
4716
|
+
bulletinsAggregate(aggregate) {
|
|
4717
|
+
this._aggregates["bulletinsAggregate"] = aggregate;
|
|
4718
|
+
return this;
|
|
4719
|
+
}
|
|
4474
4720
|
}
|
|
4475
4721
|
class MediaFolderQueryOptions extends QueryOptions {
|
|
4476
4722
|
constructor(fields, queryArgs) {
|
|
@@ -4733,18 +4979,6 @@ class MediaQueryOptions extends QueryOptions {
|
|
|
4733
4979
|
this._aggregates["searchIndexAggregate"] = aggregate;
|
|
4734
4980
|
return this;
|
|
4735
4981
|
}
|
|
4736
|
-
coverOfVideo(options) {
|
|
4737
|
-
if (Array.isArray(options)) {
|
|
4738
|
-
this._associations["coverOfVideo"] = new VideoQueryOptions(options);
|
|
4739
|
-
} else {
|
|
4740
|
-
this._associations["coverOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
4741
|
-
}
|
|
4742
|
-
return this;
|
|
4743
|
-
}
|
|
4744
|
-
coverOfVideoAggregate(aggregate) {
|
|
4745
|
-
this._aggregates["coverOfVideoAggregate"] = aggregate;
|
|
4746
|
-
return this;
|
|
4747
|
-
}
|
|
4748
4982
|
}
|
|
4749
4983
|
class UserQueryOptions extends QueryOptions {
|
|
4750
4984
|
constructor(fields, queryArgs) {
|
|
@@ -5300,16 +5534,6 @@ const searchIndexEntry = {
|
|
|
5300
5534
|
entityLabel: SearchIndexEntityLabel,
|
|
5301
5535
|
toInput: searchIndexToInput
|
|
5302
5536
|
};
|
|
5303
|
-
const videoFolderEntry = {
|
|
5304
|
-
entityName: VideoFolderEntityName,
|
|
5305
|
-
entityLabel: VideoFolderEntityLabel,
|
|
5306
|
-
toInput: videoFolderToInput
|
|
5307
|
-
};
|
|
5308
|
-
const videoEntry = {
|
|
5309
|
-
entityName: VideoEntityName,
|
|
5310
|
-
entityLabel: VideoEntityLabel,
|
|
5311
|
-
toInput: videoToInput
|
|
5312
|
-
};
|
|
5313
5537
|
const taskEntry = {
|
|
5314
5538
|
entityName: TaskEntityName,
|
|
5315
5539
|
entityLabel: TaskEntityLabel,
|
|
@@ -5320,6 +5544,31 @@ const notificationEntry = {
|
|
|
5320
5544
|
entityLabel: NotificationEntityLabel,
|
|
5321
5545
|
toInput: notificationToInput
|
|
5322
5546
|
};
|
|
5547
|
+
const customerCaseEntry = {
|
|
5548
|
+
entityName: CustomerCaseEntityName,
|
|
5549
|
+
entityLabel: CustomerCaseEntityLabel,
|
|
5550
|
+
toInput: customerCaseToInput
|
|
5551
|
+
};
|
|
5552
|
+
const solutionEntry = {
|
|
5553
|
+
entityName: SolutionEntityName,
|
|
5554
|
+
entityLabel: SolutionEntityLabel,
|
|
5555
|
+
toInput: solutionToInput
|
|
5556
|
+
};
|
|
5557
|
+
const fAQEntry = {
|
|
5558
|
+
entityName: FAQEntityName,
|
|
5559
|
+
entityLabel: FAQEntityLabel,
|
|
5560
|
+
toInput: fAQToInput
|
|
5561
|
+
};
|
|
5562
|
+
const bulletinEntry = {
|
|
5563
|
+
entityName: BulletinEntityName,
|
|
5564
|
+
entityLabel: BulletinEntityLabel,
|
|
5565
|
+
toInput: bulletinToInput
|
|
5566
|
+
};
|
|
5567
|
+
const productRelatedPivotEntry = {
|
|
5568
|
+
entityName: ProductRelatedPivotEntityName,
|
|
5569
|
+
entityLabel: ProductRelatedPivotEntityLabel,
|
|
5570
|
+
toInput: productRelatedPivotToInput
|
|
5571
|
+
};
|
|
5323
5572
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
5324
5573
|
UserFields2["id"] = "id";
|
|
5325
5574
|
UserFields2["loginName"] = "loginName";
|
|
@@ -5419,8 +5668,6 @@ var MediaAssciations = /* @__PURE__ */ ((MediaAssciations2) => {
|
|
|
5419
5668
|
MediaAssciations2["pageMetaAggregate"] = "pageMetaAggregate";
|
|
5420
5669
|
MediaAssciations2["searchIndex"] = "searchIndex";
|
|
5421
5670
|
MediaAssciations2["searchIndexAggregate"] = "searchIndexAggregate";
|
|
5422
|
-
MediaAssciations2["coverOfVideo"] = "coverOfVideo";
|
|
5423
|
-
MediaAssciations2["coverOfVideoAggregate"] = "coverOfVideoAggregate";
|
|
5424
5671
|
return MediaAssciations2;
|
|
5425
5672
|
})(MediaAssciations || {});
|
|
5426
5673
|
var MailFields = /* @__PURE__ */ ((MailFields2) => {
|
|
@@ -5468,6 +5715,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
5468
5715
|
WebsiteAssciations2["partsOfProductAggregate"] = "partsOfProductAggregate";
|
|
5469
5716
|
WebsiteAssciations2["partsOfPost"] = "partsOfPost";
|
|
5470
5717
|
WebsiteAssciations2["partsOfPostAggregate"] = "partsOfPostAggregate";
|
|
5718
|
+
WebsiteAssciations2["partsOfSolution"] = "partsOfSolution";
|
|
5719
|
+
WebsiteAssciations2["partsOfSolutionAggregate"] = "partsOfSolutionAggregate";
|
|
5720
|
+
WebsiteAssciations2["partsOfCustomerCase"] = "partsOfCustomerCase";
|
|
5721
|
+
WebsiteAssciations2["partsOfCustomerCaseAggregate"] = "partsOfCustomerCaseAggregate";
|
|
5471
5722
|
WebsiteAssciations2["partsOfPostCategory"] = "partsOfPostCategory";
|
|
5472
5723
|
WebsiteAssciations2["partsOfPostCategoryAggregate"] = "partsOfPostCategoryAggregate";
|
|
5473
5724
|
WebsiteAssciations2["partsOfTag"] = "partsOfTag";
|
|
@@ -5480,10 +5731,6 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
5480
5731
|
WebsiteAssciations2["partsOfSpamFilterRuleAggregate"] = "partsOfSpamFilterRuleAggregate";
|
|
5481
5732
|
WebsiteAssciations2["partsOfMedia"] = "partsOfMedia";
|
|
5482
5733
|
WebsiteAssciations2["partsOfMediaAggregate"] = "partsOfMediaAggregate";
|
|
5483
|
-
WebsiteAssciations2["partsOfVideoFolder"] = "partsOfVideoFolder";
|
|
5484
|
-
WebsiteAssciations2["partsOfVideoFolderAggregate"] = "partsOfVideoFolderAggregate";
|
|
5485
|
-
WebsiteAssciations2["partsOfVideo"] = "partsOfVideo";
|
|
5486
|
-
WebsiteAssciations2["partsOfVideoAggregate"] = "partsOfVideoAggregate";
|
|
5487
5734
|
WebsiteAssciations2["langs"] = "langs";
|
|
5488
5735
|
WebsiteAssciations2["langsAggregate"] = "langsAggregate";
|
|
5489
5736
|
WebsiteAssciations2["baseLang"] = "baseLang";
|
|
@@ -5495,6 +5742,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
5495
5742
|
WebsiteAssciations2["changelogsAggregate"] = "changelogsAggregate";
|
|
5496
5743
|
WebsiteAssciations2["searchIndexes"] = "searchIndexes";
|
|
5497
5744
|
WebsiteAssciations2["searchIndexesAggregate"] = "searchIndexesAggregate";
|
|
5745
|
+
WebsiteAssciations2["faqs"] = "faqs";
|
|
5746
|
+
WebsiteAssciations2["faqsAggregate"] = "faqsAggregate";
|
|
5747
|
+
WebsiteAssciations2["bulletins"] = "bulletins";
|
|
5748
|
+
WebsiteAssciations2["bulletinsAggregate"] = "bulletinsAggregate";
|
|
5498
5749
|
return WebsiteAssciations2;
|
|
5499
5750
|
})(WebsiteAssciations || {});
|
|
5500
5751
|
var LangFields = /* @__PURE__ */ ((LangFields2) => {
|
|
@@ -5519,6 +5770,10 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
5519
5770
|
LangAssciations2["webPartsOfProductAggregate"] = "webPartsOfProductAggregate";
|
|
5520
5771
|
LangAssciations2["webPartsOfPost"] = "webPartsOfPost";
|
|
5521
5772
|
LangAssciations2["webPartsOfPostAggregate"] = "webPartsOfPostAggregate";
|
|
5773
|
+
LangAssciations2["webPartsOfSolution"] = "webPartsOfSolution";
|
|
5774
|
+
LangAssciations2["webPartsOfSolutionAggregate"] = "webPartsOfSolutionAggregate";
|
|
5775
|
+
LangAssciations2["webPartsOfCustomerCase"] = "webPartsOfCustomerCase";
|
|
5776
|
+
LangAssciations2["webPartsOfCustomerCaseAggregate"] = "webPartsOfCustomerCaseAggregate";
|
|
5522
5777
|
LangAssciations2["webPartsOfPostCategory"] = "webPartsOfPostCategory";
|
|
5523
5778
|
LangAssciations2["webPartsOfPostCategoryAggregate"] = "webPartsOfPostCategoryAggregate";
|
|
5524
5779
|
LangAssciations2["webPartsOfTag"] = "webPartsOfTag";
|
|
@@ -5531,16 +5786,14 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
5531
5786
|
LangAssciations2["webPartsOfSpamFilterRuleAggregate"] = "webPartsOfSpamFilterRuleAggregate";
|
|
5532
5787
|
LangAssciations2["webPartsOfMedia"] = "webPartsOfMedia";
|
|
5533
5788
|
LangAssciations2["webPartsOfMediaAggregate"] = "webPartsOfMediaAggregate";
|
|
5534
|
-
LangAssciations2["webPartsOfVideoFolder"] = "webPartsOfVideoFolder";
|
|
5535
|
-
LangAssciations2["webPartsOfVideoFolderAggregate"] = "webPartsOfVideoFolderAggregate";
|
|
5536
|
-
LangAssciations2["webPartsOfVideo"] = "webPartsOfVideo";
|
|
5537
|
-
LangAssciations2["webPartsOfVideoAggregate"] = "webPartsOfVideoAggregate";
|
|
5538
5789
|
LangAssciations2["websites"] = "websites";
|
|
5539
5790
|
LangAssciations2["websitesAggregate"] = "websitesAggregate";
|
|
5540
5791
|
LangAssciations2["baseLangOf"] = "baseLangOf";
|
|
5541
5792
|
LangAssciations2["baseLangOfAggregate"] = "baseLangOfAggregate";
|
|
5542
5793
|
LangAssciations2["themes"] = "themes";
|
|
5543
5794
|
LangAssciations2["themesAggregate"] = "themesAggregate";
|
|
5795
|
+
LangAssciations2["bulletins"] = "bulletins";
|
|
5796
|
+
LangAssciations2["bulletinsAggregate"] = "bulletinsAggregate";
|
|
5544
5797
|
return LangAssciations2;
|
|
5545
5798
|
})(LangAssciations || {});
|
|
5546
5799
|
var WebsiteTypeFields = /* @__PURE__ */ ((WebsiteTypeFields2) => {
|
|
@@ -5640,8 +5893,13 @@ var ProductAssciations = /* @__PURE__ */ ((ProductAssciations2) => {
|
|
|
5640
5893
|
ProductAssciations2["attachmentPivotsAggregate"] = "attachmentPivotsAggregate";
|
|
5641
5894
|
ProductAssciations2["lang"] = "lang";
|
|
5642
5895
|
ProductAssciations2["meta"] = "meta";
|
|
5896
|
+
ProductAssciations2["faqs"] = "faqs";
|
|
5897
|
+
ProductAssciations2["faqsAggregate"] = "faqsAggregate";
|
|
5898
|
+
ProductAssciations2["relatedPivots"] = "relatedPivots";
|
|
5899
|
+
ProductAssciations2["relatedPivotsAggregate"] = "relatedPivotsAggregate";
|
|
5643
5900
|
ProductAssciations2["creator"] = "creator";
|
|
5644
5901
|
ProductAssciations2["website"] = "website";
|
|
5902
|
+
ProductAssciations2["relatedByPovit"] = "relatedByPovit";
|
|
5645
5903
|
return ProductAssciations2;
|
|
5646
5904
|
})(ProductAssciations || {});
|
|
5647
5905
|
var EnquiryFields = /* @__PURE__ */ ((EnquiryFields2) => {
|
|
@@ -6074,47 +6332,6 @@ var SearchIndexAssciations = /* @__PURE__ */ ((SearchIndexAssciations2) => {
|
|
|
6074
6332
|
SearchIndexAssciations2["website"] = "website";
|
|
6075
6333
|
return SearchIndexAssciations2;
|
|
6076
6334
|
})(SearchIndexAssciations || {});
|
|
6077
|
-
var VideoFolderFields = /* @__PURE__ */ ((VideoFolderFields2) => {
|
|
6078
|
-
VideoFolderFields2["id"] = "id";
|
|
6079
|
-
VideoFolderFields2["name"] = "name";
|
|
6080
|
-
VideoFolderFields2["seqValue"] = "seqValue";
|
|
6081
|
-
VideoFolderFields2["createdAt"] = "createdAt";
|
|
6082
|
-
VideoFolderFields2["updatedAt"] = "updatedAt";
|
|
6083
|
-
VideoFolderFields2["content"] = "content";
|
|
6084
|
-
return VideoFolderFields2;
|
|
6085
|
-
})(VideoFolderFields || {});
|
|
6086
|
-
var VideoFolderAssciations = /* @__PURE__ */ ((VideoFolderAssciations2) => {
|
|
6087
|
-
VideoFolderAssciations2["lang"] = "lang";
|
|
6088
|
-
VideoFolderAssciations2["children"] = "children";
|
|
6089
|
-
VideoFolderAssciations2["childrenAggregate"] = "childrenAggregate";
|
|
6090
|
-
VideoFolderAssciations2["website"] = "website";
|
|
6091
|
-
VideoFolderAssciations2["videos"] = "videos";
|
|
6092
|
-
VideoFolderAssciations2["videosAggregate"] = "videosAggregate";
|
|
6093
|
-
VideoFolderAssciations2["parent"] = "parent";
|
|
6094
|
-
return VideoFolderAssciations2;
|
|
6095
|
-
})(VideoFolderAssciations || {});
|
|
6096
|
-
var VideoFields = /* @__PURE__ */ ((VideoFields2) => {
|
|
6097
|
-
VideoFields2["id"] = "id";
|
|
6098
|
-
VideoFields2["name"] = "name";
|
|
6099
|
-
VideoFields2["size"] = "size";
|
|
6100
|
-
VideoFields2["mimeType"] = "mimeType";
|
|
6101
|
-
VideoFields2["extName"] = "extName";
|
|
6102
|
-
VideoFields2["description"] = "description";
|
|
6103
|
-
VideoFields2["url"] = "url";
|
|
6104
|
-
VideoFields2["videoId"] = "videoId";
|
|
6105
|
-
VideoFields2["createdAt"] = "createdAt";
|
|
6106
|
-
VideoFields2["updatedAt"] = "updatedAt";
|
|
6107
|
-
VideoFields2["content"] = "content";
|
|
6108
|
-
return VideoFields2;
|
|
6109
|
-
})(VideoFields || {});
|
|
6110
|
-
var VideoAssciations = /* @__PURE__ */ ((VideoAssciations2) => {
|
|
6111
|
-
VideoAssciations2["lang"] = "lang";
|
|
6112
|
-
VideoAssciations2["folder"] = "folder";
|
|
6113
|
-
VideoAssciations2["cover"] = "cover";
|
|
6114
|
-
VideoAssciations2["coverAggregate"] = "coverAggregate";
|
|
6115
|
-
VideoAssciations2["website"] = "website";
|
|
6116
|
-
return VideoAssciations2;
|
|
6117
|
-
})(VideoAssciations || {});
|
|
6118
6335
|
var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
|
|
6119
6336
|
TaskFields2["id"] = "id";
|
|
6120
6337
|
TaskFields2["jobId"] = "jobId";
|
|
@@ -6151,6 +6368,83 @@ var NotificationFields = /* @__PURE__ */ ((NotificationFields2) => {
|
|
|
6151
6368
|
})(NotificationFields || {});
|
|
6152
6369
|
var NotificationAssciations = /* @__PURE__ */ ((NotificationAssciations2) => {
|
|
6153
6370
|
})();
|
|
6371
|
+
var CustomerCaseFields = /* @__PURE__ */ ((CustomerCaseFields2) => {
|
|
6372
|
+
CustomerCaseFields2["id"] = "id";
|
|
6373
|
+
CustomerCaseFields2["publishedAt"] = "publishedAt";
|
|
6374
|
+
CustomerCaseFields2["status"] = "status";
|
|
6375
|
+
CustomerCaseFields2["title"] = "title";
|
|
6376
|
+
CustomerCaseFields2["extends"] = "extends";
|
|
6377
|
+
CustomerCaseFields2["createdAt"] = "createdAt";
|
|
6378
|
+
CustomerCaseFields2["updatedAt"] = "updatedAt";
|
|
6379
|
+
CustomerCaseFields2["content"] = "content";
|
|
6380
|
+
CustomerCaseFields2["slug"] = "slug";
|
|
6381
|
+
CustomerCaseFields2["description"] = "description";
|
|
6382
|
+
return CustomerCaseFields2;
|
|
6383
|
+
})(CustomerCaseFields || {});
|
|
6384
|
+
var CustomerCaseAssciations = /* @__PURE__ */ ((CustomerCaseAssciations2) => {
|
|
6385
|
+
CustomerCaseAssciations2["lang"] = "lang";
|
|
6386
|
+
CustomerCaseAssciations2["website"] = "website";
|
|
6387
|
+
return CustomerCaseAssciations2;
|
|
6388
|
+
})(CustomerCaseAssciations || {});
|
|
6389
|
+
var SolutionFields = /* @__PURE__ */ ((SolutionFields2) => {
|
|
6390
|
+
SolutionFields2["id"] = "id";
|
|
6391
|
+
SolutionFields2["publishedAt"] = "publishedAt";
|
|
6392
|
+
SolutionFields2["status"] = "status";
|
|
6393
|
+
SolutionFields2["title"] = "title";
|
|
6394
|
+
SolutionFields2["extends"] = "extends";
|
|
6395
|
+
SolutionFields2["createdAt"] = "createdAt";
|
|
6396
|
+
SolutionFields2["updatedAt"] = "updatedAt";
|
|
6397
|
+
SolutionFields2["content"] = "content";
|
|
6398
|
+
SolutionFields2["slug"] = "slug";
|
|
6399
|
+
SolutionFields2["description"] = "description";
|
|
6400
|
+
return SolutionFields2;
|
|
6401
|
+
})(SolutionFields || {});
|
|
6402
|
+
var SolutionAssciations = /* @__PURE__ */ ((SolutionAssciations2) => {
|
|
6403
|
+
SolutionAssciations2["lang"] = "lang";
|
|
6404
|
+
SolutionAssciations2["faqs"] = "faqs";
|
|
6405
|
+
SolutionAssciations2["faqsAggregate"] = "faqsAggregate";
|
|
6406
|
+
SolutionAssciations2["website"] = "website";
|
|
6407
|
+
return SolutionAssciations2;
|
|
6408
|
+
})(SolutionAssciations || {});
|
|
6409
|
+
var FAQFields = /* @__PURE__ */ ((FAQFields2) => {
|
|
6410
|
+
FAQFields2["id"] = "id";
|
|
6411
|
+
FAQFields2["question"] = "question";
|
|
6412
|
+
FAQFields2["answer"] = "answer";
|
|
6413
|
+
FAQFields2["createdAt"] = "createdAt";
|
|
6414
|
+
FAQFields2["updatedAt"] = "updatedAt";
|
|
6415
|
+
return FAQFields2;
|
|
6416
|
+
})(FAQFields || {});
|
|
6417
|
+
var FAQAssciations = /* @__PURE__ */ ((FAQAssciations2) => {
|
|
6418
|
+
FAQAssciations2["website"] = "website";
|
|
6419
|
+
FAQAssciations2["product"] = "product";
|
|
6420
|
+
FAQAssciations2["solution"] = "solution";
|
|
6421
|
+
return FAQAssciations2;
|
|
6422
|
+
})(FAQAssciations || {});
|
|
6423
|
+
var BulletinFields = /* @__PURE__ */ ((BulletinFields2) => {
|
|
6424
|
+
BulletinFields2["id"] = "id";
|
|
6425
|
+
BulletinFields2["content"] = "content";
|
|
6426
|
+
BulletinFields2["type"] = "type";
|
|
6427
|
+
BulletinFields2["createdAt"] = "createdAt";
|
|
6428
|
+
BulletinFields2["updatedAt"] = "updatedAt";
|
|
6429
|
+
BulletinFields2["endDate"] = "endDate";
|
|
6430
|
+
BulletinFields2["title"] = "title";
|
|
6431
|
+
return BulletinFields2;
|
|
6432
|
+
})(BulletinFields || {});
|
|
6433
|
+
var BulletinAssciations = /* @__PURE__ */ ((BulletinAssciations2) => {
|
|
6434
|
+
BulletinAssciations2["lang"] = "lang";
|
|
6435
|
+
BulletinAssciations2["website"] = "website";
|
|
6436
|
+
return BulletinAssciations2;
|
|
6437
|
+
})(BulletinAssciations || {});
|
|
6438
|
+
var ProductRelatedPivotFields = /* @__PURE__ */ ((ProductRelatedPivotFields2) => {
|
|
6439
|
+
ProductRelatedPivotFields2["id"] = "id";
|
|
6440
|
+
ProductRelatedPivotFields2["seqValue"] = "seqValue";
|
|
6441
|
+
return ProductRelatedPivotFields2;
|
|
6442
|
+
})(ProductRelatedPivotFields || {});
|
|
6443
|
+
var ProductRelatedPivotAssciations = /* @__PURE__ */ ((ProductRelatedPivotAssciations2) => {
|
|
6444
|
+
ProductRelatedPivotAssciations2["product"] = "product";
|
|
6445
|
+
ProductRelatedPivotAssciations2["relatedBy"] = "relatedBy";
|
|
6446
|
+
return ProductRelatedPivotAssciations2;
|
|
6447
|
+
})(ProductRelatedPivotAssciations || {});
|
|
6154
6448
|
export {
|
|
6155
6449
|
AbilityAssciations,
|
|
6156
6450
|
AbilityDistinctEnum,
|
|
@@ -6172,6 +6466,12 @@ export {
|
|
|
6172
6466
|
AttachmentOnProductEntityName,
|
|
6173
6467
|
AttachmentOnProductFields,
|
|
6174
6468
|
AttachmentOnProductQueryOptions,
|
|
6469
|
+
BulletinAssciations,
|
|
6470
|
+
BulletinDistinctEnum,
|
|
6471
|
+
BulletinEntityLabel,
|
|
6472
|
+
BulletinEntityName,
|
|
6473
|
+
BulletinFields,
|
|
6474
|
+
BulletinQueryOptions,
|
|
6175
6475
|
ChangeLogAssciations,
|
|
6176
6476
|
ChangeLogDistinctEnum,
|
|
6177
6477
|
ChangeLogEntityLabel,
|
|
@@ -6186,6 +6486,12 @@ export {
|
|
|
6186
6486
|
ComponentCategoryQueryOptions,
|
|
6187
6487
|
CookieConsentStrategy,
|
|
6188
6488
|
CustomerAssciations,
|
|
6489
|
+
CustomerCaseAssciations,
|
|
6490
|
+
CustomerCaseDistinctEnum,
|
|
6491
|
+
CustomerCaseEntityLabel,
|
|
6492
|
+
CustomerCaseEntityName,
|
|
6493
|
+
CustomerCaseFields,
|
|
6494
|
+
CustomerCaseQueryOptions,
|
|
6189
6495
|
CustomerDistinctEnum,
|
|
6190
6496
|
CustomerEntityLabel,
|
|
6191
6497
|
CustomerEntityName,
|
|
@@ -6198,6 +6504,12 @@ export {
|
|
|
6198
6504
|
EnquiryFields,
|
|
6199
6505
|
EnquiryQueryOptions,
|
|
6200
6506
|
ExtendFieldType,
|
|
6507
|
+
FAQAssciations,
|
|
6508
|
+
FAQDistinctEnum,
|
|
6509
|
+
FAQEntityLabel,
|
|
6510
|
+
FAQEntityName,
|
|
6511
|
+
FAQFields,
|
|
6512
|
+
FAQQueryOptions,
|
|
6201
6513
|
FrontComponentAssciations,
|
|
6202
6514
|
FrontComponentDistinctEnum,
|
|
6203
6515
|
FrontComponentEntityLabel,
|
|
@@ -6284,6 +6596,12 @@ export {
|
|
|
6284
6596
|
ProductEntityName,
|
|
6285
6597
|
ProductFields,
|
|
6286
6598
|
ProductQueryOptions,
|
|
6599
|
+
ProductRelatedPivotAssciations,
|
|
6600
|
+
ProductRelatedPivotDistinctEnum,
|
|
6601
|
+
ProductRelatedPivotEntityLabel,
|
|
6602
|
+
ProductRelatedPivotEntityName,
|
|
6603
|
+
ProductRelatedPivotFields,
|
|
6604
|
+
ProductRelatedPivotQueryOptions,
|
|
6287
6605
|
PublishableDistinctEnum,
|
|
6288
6606
|
PublishableStatus,
|
|
6289
6607
|
QueryOptions,
|
|
@@ -6306,6 +6624,12 @@ export {
|
|
|
6306
6624
|
SectionTemplateFields,
|
|
6307
6625
|
SectionTemplateQueryOptions,
|
|
6308
6626
|
SlugableDistinctEnum,
|
|
6627
|
+
SolutionAssciations,
|
|
6628
|
+
SolutionDistinctEnum,
|
|
6629
|
+
SolutionEntityLabel,
|
|
6630
|
+
SolutionEntityName,
|
|
6631
|
+
SolutionFields,
|
|
6632
|
+
SolutionQueryOptions,
|
|
6309
6633
|
SourceType,
|
|
6310
6634
|
SpamFilterRuleAssciations,
|
|
6311
6635
|
SpamFilterRuleDistinctEnum,
|
|
@@ -6376,18 +6700,6 @@ export {
|
|
|
6376
6700
|
UserFields,
|
|
6377
6701
|
UserQueryOptions,
|
|
6378
6702
|
UserType,
|
|
6379
|
-
VideoAssciations,
|
|
6380
|
-
VideoDistinctEnum,
|
|
6381
|
-
VideoEntityLabel,
|
|
6382
|
-
VideoEntityName,
|
|
6383
|
-
VideoFields,
|
|
6384
|
-
VideoFolderAssciations,
|
|
6385
|
-
VideoFolderDistinctEnum,
|
|
6386
|
-
VideoFolderEntityLabel,
|
|
6387
|
-
VideoFolderEntityName,
|
|
6388
|
-
VideoFolderFields,
|
|
6389
|
-
VideoFolderQueryOptions,
|
|
6390
|
-
VideoQueryOptions,
|
|
6391
6703
|
WebsiteAssciations,
|
|
6392
6704
|
WebsiteContentDistinctEnum,
|
|
6393
6705
|
WebsiteDistinctEnum,
|
|
@@ -6421,18 +6733,27 @@ export {
|
|
|
6421
6733
|
attachmentOnProductEntry,
|
|
6422
6734
|
attachmentOnProductToInput,
|
|
6423
6735
|
attachmentOnProductToInputCascade,
|
|
6736
|
+
bulletinEntry,
|
|
6737
|
+
bulletinToInput,
|
|
6738
|
+
bulletinToInputCascade,
|
|
6424
6739
|
changeLogEntry,
|
|
6425
6740
|
changeLogToInput,
|
|
6426
6741
|
changeLogToInputCascade,
|
|
6427
6742
|
componentCategoryEntry,
|
|
6428
6743
|
componentCategoryToInput,
|
|
6429
6744
|
componentCategoryToInputCascade,
|
|
6745
|
+
customerCaseEntry,
|
|
6746
|
+
customerCaseToInput,
|
|
6747
|
+
customerCaseToInputCascade,
|
|
6430
6748
|
customerEntry,
|
|
6431
6749
|
customerToInput,
|
|
6432
6750
|
customerToInputCascade,
|
|
6433
6751
|
enquiryEntry,
|
|
6434
6752
|
enquiryToInput,
|
|
6435
6753
|
enquiryToInputCascade,
|
|
6754
|
+
fAQEntry,
|
|
6755
|
+
fAQToInput,
|
|
6756
|
+
fAQToInputCascade,
|
|
6436
6757
|
frontComponentEntry,
|
|
6437
6758
|
frontComponentToInput,
|
|
6438
6759
|
frontComponentToInputCascade,
|
|
@@ -6470,6 +6791,9 @@ export {
|
|
|
6470
6791
|
productCategoryToInput,
|
|
6471
6792
|
productCategoryToInputCascade,
|
|
6472
6793
|
productEntry,
|
|
6794
|
+
productRelatedPivotEntry,
|
|
6795
|
+
productRelatedPivotToInput,
|
|
6796
|
+
productRelatedPivotToInputCascade,
|
|
6473
6797
|
productToInput,
|
|
6474
6798
|
productToInputCascade,
|
|
6475
6799
|
roleEntry,
|
|
@@ -6481,6 +6805,9 @@ export {
|
|
|
6481
6805
|
sectionTemplateEntry,
|
|
6482
6806
|
sectionTemplateToInput,
|
|
6483
6807
|
sectionTemplateToInputCascade,
|
|
6808
|
+
solutionEntry,
|
|
6809
|
+
solutionToInput,
|
|
6810
|
+
solutionToInputCascade,
|
|
6484
6811
|
spamFilterRuleEntry,
|
|
6485
6812
|
spamFilterRuleToInput,
|
|
6486
6813
|
spamFilterRuleToInputCascade,
|
|
@@ -6514,12 +6841,6 @@ export {
|
|
|
6514
6841
|
userEntry,
|
|
6515
6842
|
userToInput,
|
|
6516
6843
|
userToInputCascade,
|
|
6517
|
-
videoEntry,
|
|
6518
|
-
videoFolderEntry,
|
|
6519
|
-
videoFolderToInput,
|
|
6520
|
-
videoFolderToInputCascade,
|
|
6521
|
-
videoToInput,
|
|
6522
|
-
videoToInputCascade,
|
|
6523
6844
|
websiteEntry,
|
|
6524
6845
|
websiteSettingsEntry,
|
|
6525
6846
|
websiteSettingsToInput,
|