@rxdrag/rxcms-models 0.3.75 → 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 +695 -378
- 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/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) => {
|
|
@@ -1803,6 +1819,65 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
1803
1819
|
NotificationType2["update"] = "update";
|
|
1804
1820
|
return NotificationType2;
|
|
1805
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 || {});
|
|
1806
1881
|
class RoleQueryOptions extends QueryOptions {
|
|
1807
1882
|
constructor(fields, queryArgs) {
|
|
1808
1883
|
super(RoleEntityName, fields, queryArgs);
|
|
@@ -3158,6 +3233,157 @@ class AttachmentOnProductQueryOptions extends QueryOptions {
|
|
|
3158
3233
|
return this;
|
|
3159
3234
|
}
|
|
3160
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
|
+
}
|
|
3161
3387
|
class ProductQueryOptions extends QueryOptions {
|
|
3162
3388
|
constructor(fields, queryArgs) {
|
|
3163
3389
|
super(ProductEntityName, fields, queryArgs);
|
|
@@ -3308,60 +3534,35 @@ class ProductQueryOptions extends QueryOptions {
|
|
|
3308
3534
|
}
|
|
3309
3535
|
return this;
|
|
3310
3536
|
}
|
|
3311
|
-
|
|
3537
|
+
faqs(options) {
|
|
3312
3538
|
if (Array.isArray(options)) {
|
|
3313
|
-
this._associations["
|
|
3539
|
+
this._associations["faqs"] = new FAQQueryOptions(options);
|
|
3314
3540
|
} else {
|
|
3315
|
-
this._associations["
|
|
3541
|
+
this._associations["faqs"] = options || new FAQQueryOptions(["id"]);
|
|
3316
3542
|
}
|
|
3317
3543
|
return this;
|
|
3318
3544
|
}
|
|
3319
|
-
|
|
3545
|
+
faqsAggregate(aggregate) {
|
|
3546
|
+
this._aggregates["faqsAggregate"] = aggregate;
|
|
3547
|
+
return this;
|
|
3548
|
+
}
|
|
3549
|
+
relatedPivots(options) {
|
|
3320
3550
|
if (Array.isArray(options)) {
|
|
3321
|
-
this._associations["
|
|
3551
|
+
this._associations["relatedPivots"] = new ProductRelatedPivotQueryOptions(options);
|
|
3322
3552
|
} else {
|
|
3323
|
-
this._associations["
|
|
3553
|
+
this._associations["relatedPivots"] = options || new ProductRelatedPivotQueryOptions(["id"]);
|
|
3324
3554
|
}
|
|
3325
3555
|
return this;
|
|
3326
3556
|
}
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
constructor(fields, queryArgs) {
|
|
3330
|
-
super(SpamFilterRuleEntityName, fields, queryArgs);
|
|
3331
|
-
}
|
|
3332
|
-
id() {
|
|
3333
|
-
this.addField("id");
|
|
3334
|
-
return this;
|
|
3335
|
-
}
|
|
3336
|
-
emails() {
|
|
3337
|
-
this.addField("emails");
|
|
3557
|
+
relatedPivotsAggregate(aggregate) {
|
|
3558
|
+
this._aggregates["relatedPivotsAggregate"] = aggregate;
|
|
3338
3559
|
return this;
|
|
3339
3560
|
}
|
|
3340
|
-
|
|
3341
|
-
this.addField("ips");
|
|
3342
|
-
return this;
|
|
3343
|
-
}
|
|
3344
|
-
keywords() {
|
|
3345
|
-
this.addField("keywords");
|
|
3346
|
-
return this;
|
|
3347
|
-
}
|
|
3348
|
-
createdAt() {
|
|
3349
|
-
this.addField("createdAt");
|
|
3350
|
-
return this;
|
|
3351
|
-
}
|
|
3352
|
-
updatedAt() {
|
|
3353
|
-
this.addField("updatedAt");
|
|
3354
|
-
return this;
|
|
3355
|
-
}
|
|
3356
|
-
content() {
|
|
3357
|
-
this.addField("content");
|
|
3358
|
-
return this;
|
|
3359
|
-
}
|
|
3360
|
-
lang(options) {
|
|
3561
|
+
creator(options) {
|
|
3361
3562
|
if (Array.isArray(options)) {
|
|
3362
|
-
this._associations["
|
|
3563
|
+
this._associations["creator"] = new UserQueryOptions(options);
|
|
3363
3564
|
} else {
|
|
3364
|
-
this._associations["
|
|
3565
|
+
this._associations["creator"] = options || new UserQueryOptions(["id"]);
|
|
3365
3566
|
}
|
|
3366
3567
|
return this;
|
|
3367
3568
|
}
|
|
@@ -3373,41 +3574,37 @@ class SpamFilterRuleQueryOptions extends QueryOptions {
|
|
|
3373
3574
|
}
|
|
3374
3575
|
return this;
|
|
3375
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
|
+
}
|
|
3376
3585
|
}
|
|
3377
|
-
class
|
|
3586
|
+
class CustomerCaseQueryOptions extends QueryOptions {
|
|
3378
3587
|
constructor(fields, queryArgs) {
|
|
3379
|
-
super(
|
|
3588
|
+
super(CustomerCaseEntityName, fields, queryArgs);
|
|
3380
3589
|
}
|
|
3381
3590
|
id() {
|
|
3382
3591
|
this.addField("id");
|
|
3383
3592
|
return this;
|
|
3384
3593
|
}
|
|
3385
|
-
|
|
3386
|
-
this.addField("
|
|
3387
|
-
return this;
|
|
3388
|
-
}
|
|
3389
|
-
size() {
|
|
3390
|
-
this.addField("size");
|
|
3391
|
-
return this;
|
|
3392
|
-
}
|
|
3393
|
-
mimeType() {
|
|
3394
|
-
this.addField("mimeType");
|
|
3395
|
-
return this;
|
|
3396
|
-
}
|
|
3397
|
-
extName() {
|
|
3398
|
-
this.addField("extName");
|
|
3594
|
+
publishedAt() {
|
|
3595
|
+
this.addField("publishedAt");
|
|
3399
3596
|
return this;
|
|
3400
3597
|
}
|
|
3401
|
-
|
|
3402
|
-
this.addField("
|
|
3598
|
+
status() {
|
|
3599
|
+
this.addField("status");
|
|
3403
3600
|
return this;
|
|
3404
3601
|
}
|
|
3405
|
-
|
|
3406
|
-
this.addField("
|
|
3602
|
+
title() {
|
|
3603
|
+
this.addField("title");
|
|
3407
3604
|
return this;
|
|
3408
3605
|
}
|
|
3409
|
-
|
|
3410
|
-
this.addField("
|
|
3606
|
+
extends() {
|
|
3607
|
+
this.addField("extends");
|
|
3411
3608
|
return this;
|
|
3412
3609
|
}
|
|
3413
3610
|
createdAt() {
|
|
@@ -3422,34 +3619,22 @@ class VideoQueryOptions extends QueryOptions {
|
|
|
3422
3619
|
this.addField("content");
|
|
3423
3620
|
return this;
|
|
3424
3621
|
}
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
this._associations["lang"] = new LangQueryOptions(options);
|
|
3428
|
-
} else {
|
|
3429
|
-
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3430
|
-
}
|
|
3622
|
+
slug() {
|
|
3623
|
+
this.addField("slug");
|
|
3431
3624
|
return this;
|
|
3432
3625
|
}
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
this._associations["folder"] = new VideoFolderQueryOptions(options);
|
|
3436
|
-
} else {
|
|
3437
|
-
this._associations["folder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3438
|
-
}
|
|
3626
|
+
description() {
|
|
3627
|
+
this.addField("description");
|
|
3439
3628
|
return this;
|
|
3440
3629
|
}
|
|
3441
|
-
|
|
3630
|
+
lang(options) {
|
|
3442
3631
|
if (Array.isArray(options)) {
|
|
3443
|
-
this._associations["
|
|
3632
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
3444
3633
|
} else {
|
|
3445
|
-
this._associations["
|
|
3634
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
3446
3635
|
}
|
|
3447
3636
|
return this;
|
|
3448
3637
|
}
|
|
3449
|
-
coverAggregate(aggregate) {
|
|
3450
|
-
this._aggregates["coverAggregate"] = aggregate;
|
|
3451
|
-
return this;
|
|
3452
|
-
}
|
|
3453
3638
|
website(options) {
|
|
3454
3639
|
if (Array.isArray(options)) {
|
|
3455
3640
|
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
@@ -3459,20 +3644,24 @@ class VideoQueryOptions extends QueryOptions {
|
|
|
3459
3644
|
return this;
|
|
3460
3645
|
}
|
|
3461
3646
|
}
|
|
3462
|
-
class
|
|
3647
|
+
class SpamFilterRuleQueryOptions extends QueryOptions {
|
|
3463
3648
|
constructor(fields, queryArgs) {
|
|
3464
|
-
super(
|
|
3649
|
+
super(SpamFilterRuleEntityName, fields, queryArgs);
|
|
3465
3650
|
}
|
|
3466
3651
|
id() {
|
|
3467
3652
|
this.addField("id");
|
|
3468
3653
|
return this;
|
|
3469
3654
|
}
|
|
3470
|
-
|
|
3471
|
-
this.addField("
|
|
3655
|
+
emails() {
|
|
3656
|
+
this.addField("emails");
|
|
3472
3657
|
return this;
|
|
3473
3658
|
}
|
|
3474
|
-
|
|
3475
|
-
this.addField("
|
|
3659
|
+
ips() {
|
|
3660
|
+
this.addField("ips");
|
|
3661
|
+
return this;
|
|
3662
|
+
}
|
|
3663
|
+
keywords() {
|
|
3664
|
+
this.addField("keywords");
|
|
3476
3665
|
return this;
|
|
3477
3666
|
}
|
|
3478
3667
|
createdAt() {
|
|
@@ -3495,18 +3684,6 @@ class VideoFolderQueryOptions extends QueryOptions {
|
|
|
3495
3684
|
}
|
|
3496
3685
|
return this;
|
|
3497
3686
|
}
|
|
3498
|
-
children(options) {
|
|
3499
|
-
if (Array.isArray(options)) {
|
|
3500
|
-
this._associations["children"] = new VideoFolderQueryOptions(options);
|
|
3501
|
-
} else {
|
|
3502
|
-
this._associations["children"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3503
|
-
}
|
|
3504
|
-
return this;
|
|
3505
|
-
}
|
|
3506
|
-
childrenAggregate(aggregate) {
|
|
3507
|
-
this._aggregates["childrenAggregate"] = aggregate;
|
|
3508
|
-
return this;
|
|
3509
|
-
}
|
|
3510
3687
|
website(options) {
|
|
3511
3688
|
if (Array.isArray(options)) {
|
|
3512
3689
|
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
@@ -3515,26 +3692,6 @@ class VideoFolderQueryOptions extends QueryOptions {
|
|
|
3515
3692
|
}
|
|
3516
3693
|
return this;
|
|
3517
3694
|
}
|
|
3518
|
-
videos(options) {
|
|
3519
|
-
if (Array.isArray(options)) {
|
|
3520
|
-
this._associations["videos"] = new VideoQueryOptions(options);
|
|
3521
|
-
} else {
|
|
3522
|
-
this._associations["videos"] = options || new VideoQueryOptions(["id"]);
|
|
3523
|
-
}
|
|
3524
|
-
return this;
|
|
3525
|
-
}
|
|
3526
|
-
videosAggregate(aggregate) {
|
|
3527
|
-
this._aggregates["videosAggregate"] = aggregate;
|
|
3528
|
-
return this;
|
|
3529
|
-
}
|
|
3530
|
-
parent(options) {
|
|
3531
|
-
if (Array.isArray(options)) {
|
|
3532
|
-
this._associations["parent"] = new VideoFolderQueryOptions(options);
|
|
3533
|
-
} else {
|
|
3534
|
-
this._associations["parent"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3535
|
-
}
|
|
3536
|
-
return this;
|
|
3537
|
-
}
|
|
3538
3695
|
}
|
|
3539
3696
|
class AnalyticsConfigQueryOptions extends QueryOptions {
|
|
3540
3697
|
constructor(fields, queryArgs) {
|
|
@@ -3721,6 +3878,55 @@ class SearchIndexQueryOptions extends QueryOptions {
|
|
|
3721
3878
|
return this;
|
|
3722
3879
|
}
|
|
3723
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
|
+
}
|
|
3724
3930
|
class WebsiteQueryOptions extends QueryOptions {
|
|
3725
3931
|
constructor(fields, queryArgs) {
|
|
3726
3932
|
super(WebsiteEntityName, fields, queryArgs);
|
|
@@ -3862,6 +4068,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
3862
4068
|
this._aggregates["partsOfPostAggregate"] = aggregate;
|
|
3863
4069
|
return this;
|
|
3864
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
|
+
}
|
|
3865
4095
|
partsOfPostCategory(options) {
|
|
3866
4096
|
if (Array.isArray(options)) {
|
|
3867
4097
|
this._associations["partsOfPostCategory"] = new PostCategoryQueryOptions(options);
|
|
@@ -3934,30 +4164,6 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
3934
4164
|
this._aggregates["partsOfMediaAggregate"] = aggregate;
|
|
3935
4165
|
return this;
|
|
3936
4166
|
}
|
|
3937
|
-
partsOfVideoFolder(options) {
|
|
3938
|
-
if (Array.isArray(options)) {
|
|
3939
|
-
this._associations["partsOfVideoFolder"] = new VideoFolderQueryOptions(options);
|
|
3940
|
-
} else {
|
|
3941
|
-
this._associations["partsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
3942
|
-
}
|
|
3943
|
-
return this;
|
|
3944
|
-
}
|
|
3945
|
-
partsOfVideoFolderAggregate(aggregate) {
|
|
3946
|
-
this._aggregates["partsOfVideoFolderAggregate"] = aggregate;
|
|
3947
|
-
return this;
|
|
3948
|
-
}
|
|
3949
|
-
partsOfVideo(options) {
|
|
3950
|
-
if (Array.isArray(options)) {
|
|
3951
|
-
this._associations["partsOfVideo"] = new VideoQueryOptions(options);
|
|
3952
|
-
} else {
|
|
3953
|
-
this._associations["partsOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
3954
|
-
}
|
|
3955
|
-
return this;
|
|
3956
|
-
}
|
|
3957
|
-
partsOfVideoAggregate(aggregate) {
|
|
3958
|
-
this._aggregates["partsOfVideoAggregate"] = aggregate;
|
|
3959
|
-
return this;
|
|
3960
|
-
}
|
|
3961
4167
|
langs(options) {
|
|
3962
4168
|
if (Array.isArray(options)) {
|
|
3963
4169
|
this._associations["langs"] = new LangQueryOptions(options);
|
|
@@ -4030,6 +4236,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
4030
4236
|
this._aggregates["searchIndexesAggregate"] = aggregate;
|
|
4031
4237
|
return this;
|
|
4032
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
|
+
}
|
|
4033
4263
|
}
|
|
4034
4264
|
class CustomerQueryOptions extends QueryOptions {
|
|
4035
4265
|
constructor(fields, queryArgs) {
|
|
@@ -4343,6 +4573,30 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4343
4573
|
this._aggregates["webPartsOfPostAggregate"] = aggregate;
|
|
4344
4574
|
return this;
|
|
4345
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
|
+
}
|
|
4346
4600
|
webPartsOfPostCategory(options) {
|
|
4347
4601
|
if (Array.isArray(options)) {
|
|
4348
4602
|
this._associations["webPartsOfPostCategory"] = new PostCategoryQueryOptions(options);
|
|
@@ -4415,30 +4669,6 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4415
4669
|
this._aggregates["webPartsOfMediaAggregate"] = aggregate;
|
|
4416
4670
|
return this;
|
|
4417
4671
|
}
|
|
4418
|
-
webPartsOfVideoFolder(options) {
|
|
4419
|
-
if (Array.isArray(options)) {
|
|
4420
|
-
this._associations["webPartsOfVideoFolder"] = new VideoFolderQueryOptions(options);
|
|
4421
|
-
} else {
|
|
4422
|
-
this._associations["webPartsOfVideoFolder"] = options || new VideoFolderQueryOptions(["id"]);
|
|
4423
|
-
}
|
|
4424
|
-
return this;
|
|
4425
|
-
}
|
|
4426
|
-
webPartsOfVideoFolderAggregate(aggregate) {
|
|
4427
|
-
this._aggregates["webPartsOfVideoFolderAggregate"] = aggregate;
|
|
4428
|
-
return this;
|
|
4429
|
-
}
|
|
4430
|
-
webPartsOfVideo(options) {
|
|
4431
|
-
if (Array.isArray(options)) {
|
|
4432
|
-
this._associations["webPartsOfVideo"] = new VideoQueryOptions(options);
|
|
4433
|
-
} else {
|
|
4434
|
-
this._associations["webPartsOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
4435
|
-
}
|
|
4436
|
-
return this;
|
|
4437
|
-
}
|
|
4438
|
-
webPartsOfVideoAggregate(aggregate) {
|
|
4439
|
-
this._aggregates["webPartsOfVideoAggregate"] = aggregate;
|
|
4440
|
-
return this;
|
|
4441
|
-
}
|
|
4442
4672
|
websites(options) {
|
|
4443
4673
|
if (Array.isArray(options)) {
|
|
4444
4674
|
this._associations["websites"] = new WebsiteQueryOptions(options);
|
|
@@ -4475,6 +4705,18 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4475
4705
|
this._aggregates["themesAggregate"] = aggregate;
|
|
4476
4706
|
return this;
|
|
4477
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
|
+
}
|
|
4478
4720
|
}
|
|
4479
4721
|
class MediaFolderQueryOptions extends QueryOptions {
|
|
4480
4722
|
constructor(fields, queryArgs) {
|
|
@@ -4737,18 +4979,6 @@ class MediaQueryOptions extends QueryOptions {
|
|
|
4737
4979
|
this._aggregates["searchIndexAggregate"] = aggregate;
|
|
4738
4980
|
return this;
|
|
4739
4981
|
}
|
|
4740
|
-
coverOfVideo(options) {
|
|
4741
|
-
if (Array.isArray(options)) {
|
|
4742
|
-
this._associations["coverOfVideo"] = new VideoQueryOptions(options);
|
|
4743
|
-
} else {
|
|
4744
|
-
this._associations["coverOfVideo"] = options || new VideoQueryOptions(["id"]);
|
|
4745
|
-
}
|
|
4746
|
-
return this;
|
|
4747
|
-
}
|
|
4748
|
-
coverOfVideoAggregate(aggregate) {
|
|
4749
|
-
this._aggregates["coverOfVideoAggregate"] = aggregate;
|
|
4750
|
-
return this;
|
|
4751
|
-
}
|
|
4752
4982
|
}
|
|
4753
4983
|
class UserQueryOptions extends QueryOptions {
|
|
4754
4984
|
constructor(fields, queryArgs) {
|
|
@@ -5304,16 +5534,6 @@ const searchIndexEntry = {
|
|
|
5304
5534
|
entityLabel: SearchIndexEntityLabel,
|
|
5305
5535
|
toInput: searchIndexToInput
|
|
5306
5536
|
};
|
|
5307
|
-
const videoFolderEntry = {
|
|
5308
|
-
entityName: VideoFolderEntityName,
|
|
5309
|
-
entityLabel: VideoFolderEntityLabel,
|
|
5310
|
-
toInput: videoFolderToInput
|
|
5311
|
-
};
|
|
5312
|
-
const videoEntry = {
|
|
5313
|
-
entityName: VideoEntityName,
|
|
5314
|
-
entityLabel: VideoEntityLabel,
|
|
5315
|
-
toInput: videoToInput
|
|
5316
|
-
};
|
|
5317
5537
|
const taskEntry = {
|
|
5318
5538
|
entityName: TaskEntityName,
|
|
5319
5539
|
entityLabel: TaskEntityLabel,
|
|
@@ -5324,6 +5544,31 @@ const notificationEntry = {
|
|
|
5324
5544
|
entityLabel: NotificationEntityLabel,
|
|
5325
5545
|
toInput: notificationToInput
|
|
5326
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
|
+
};
|
|
5327
5572
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
5328
5573
|
UserFields2["id"] = "id";
|
|
5329
5574
|
UserFields2["loginName"] = "loginName";
|
|
@@ -5423,8 +5668,6 @@ var MediaAssciations = /* @__PURE__ */ ((MediaAssciations2) => {
|
|
|
5423
5668
|
MediaAssciations2["pageMetaAggregate"] = "pageMetaAggregate";
|
|
5424
5669
|
MediaAssciations2["searchIndex"] = "searchIndex";
|
|
5425
5670
|
MediaAssciations2["searchIndexAggregate"] = "searchIndexAggregate";
|
|
5426
|
-
MediaAssciations2["coverOfVideo"] = "coverOfVideo";
|
|
5427
|
-
MediaAssciations2["coverOfVideoAggregate"] = "coverOfVideoAggregate";
|
|
5428
5671
|
return MediaAssciations2;
|
|
5429
5672
|
})(MediaAssciations || {});
|
|
5430
5673
|
var MailFields = /* @__PURE__ */ ((MailFields2) => {
|
|
@@ -5472,6 +5715,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
5472
5715
|
WebsiteAssciations2["partsOfProductAggregate"] = "partsOfProductAggregate";
|
|
5473
5716
|
WebsiteAssciations2["partsOfPost"] = "partsOfPost";
|
|
5474
5717
|
WebsiteAssciations2["partsOfPostAggregate"] = "partsOfPostAggregate";
|
|
5718
|
+
WebsiteAssciations2["partsOfSolution"] = "partsOfSolution";
|
|
5719
|
+
WebsiteAssciations2["partsOfSolutionAggregate"] = "partsOfSolutionAggregate";
|
|
5720
|
+
WebsiteAssciations2["partsOfCustomerCase"] = "partsOfCustomerCase";
|
|
5721
|
+
WebsiteAssciations2["partsOfCustomerCaseAggregate"] = "partsOfCustomerCaseAggregate";
|
|
5475
5722
|
WebsiteAssciations2["partsOfPostCategory"] = "partsOfPostCategory";
|
|
5476
5723
|
WebsiteAssciations2["partsOfPostCategoryAggregate"] = "partsOfPostCategoryAggregate";
|
|
5477
5724
|
WebsiteAssciations2["partsOfTag"] = "partsOfTag";
|
|
@@ -5484,10 +5731,6 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
5484
5731
|
WebsiteAssciations2["partsOfSpamFilterRuleAggregate"] = "partsOfSpamFilterRuleAggregate";
|
|
5485
5732
|
WebsiteAssciations2["partsOfMedia"] = "partsOfMedia";
|
|
5486
5733
|
WebsiteAssciations2["partsOfMediaAggregate"] = "partsOfMediaAggregate";
|
|
5487
|
-
WebsiteAssciations2["partsOfVideoFolder"] = "partsOfVideoFolder";
|
|
5488
|
-
WebsiteAssciations2["partsOfVideoFolderAggregate"] = "partsOfVideoFolderAggregate";
|
|
5489
|
-
WebsiteAssciations2["partsOfVideo"] = "partsOfVideo";
|
|
5490
|
-
WebsiteAssciations2["partsOfVideoAggregate"] = "partsOfVideoAggregate";
|
|
5491
5734
|
WebsiteAssciations2["langs"] = "langs";
|
|
5492
5735
|
WebsiteAssciations2["langsAggregate"] = "langsAggregate";
|
|
5493
5736
|
WebsiteAssciations2["baseLang"] = "baseLang";
|
|
@@ -5499,6 +5742,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
5499
5742
|
WebsiteAssciations2["changelogsAggregate"] = "changelogsAggregate";
|
|
5500
5743
|
WebsiteAssciations2["searchIndexes"] = "searchIndexes";
|
|
5501
5744
|
WebsiteAssciations2["searchIndexesAggregate"] = "searchIndexesAggregate";
|
|
5745
|
+
WebsiteAssciations2["faqs"] = "faqs";
|
|
5746
|
+
WebsiteAssciations2["faqsAggregate"] = "faqsAggregate";
|
|
5747
|
+
WebsiteAssciations2["bulletins"] = "bulletins";
|
|
5748
|
+
WebsiteAssciations2["bulletinsAggregate"] = "bulletinsAggregate";
|
|
5502
5749
|
return WebsiteAssciations2;
|
|
5503
5750
|
})(WebsiteAssciations || {});
|
|
5504
5751
|
var LangFields = /* @__PURE__ */ ((LangFields2) => {
|
|
@@ -5523,6 +5770,10 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
5523
5770
|
LangAssciations2["webPartsOfProductAggregate"] = "webPartsOfProductAggregate";
|
|
5524
5771
|
LangAssciations2["webPartsOfPost"] = "webPartsOfPost";
|
|
5525
5772
|
LangAssciations2["webPartsOfPostAggregate"] = "webPartsOfPostAggregate";
|
|
5773
|
+
LangAssciations2["webPartsOfSolution"] = "webPartsOfSolution";
|
|
5774
|
+
LangAssciations2["webPartsOfSolutionAggregate"] = "webPartsOfSolutionAggregate";
|
|
5775
|
+
LangAssciations2["webPartsOfCustomerCase"] = "webPartsOfCustomerCase";
|
|
5776
|
+
LangAssciations2["webPartsOfCustomerCaseAggregate"] = "webPartsOfCustomerCaseAggregate";
|
|
5526
5777
|
LangAssciations2["webPartsOfPostCategory"] = "webPartsOfPostCategory";
|
|
5527
5778
|
LangAssciations2["webPartsOfPostCategoryAggregate"] = "webPartsOfPostCategoryAggregate";
|
|
5528
5779
|
LangAssciations2["webPartsOfTag"] = "webPartsOfTag";
|
|
@@ -5535,16 +5786,14 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
5535
5786
|
LangAssciations2["webPartsOfSpamFilterRuleAggregate"] = "webPartsOfSpamFilterRuleAggregate";
|
|
5536
5787
|
LangAssciations2["webPartsOfMedia"] = "webPartsOfMedia";
|
|
5537
5788
|
LangAssciations2["webPartsOfMediaAggregate"] = "webPartsOfMediaAggregate";
|
|
5538
|
-
LangAssciations2["webPartsOfVideoFolder"] = "webPartsOfVideoFolder";
|
|
5539
|
-
LangAssciations2["webPartsOfVideoFolderAggregate"] = "webPartsOfVideoFolderAggregate";
|
|
5540
|
-
LangAssciations2["webPartsOfVideo"] = "webPartsOfVideo";
|
|
5541
|
-
LangAssciations2["webPartsOfVideoAggregate"] = "webPartsOfVideoAggregate";
|
|
5542
5789
|
LangAssciations2["websites"] = "websites";
|
|
5543
5790
|
LangAssciations2["websitesAggregate"] = "websitesAggregate";
|
|
5544
5791
|
LangAssciations2["baseLangOf"] = "baseLangOf";
|
|
5545
5792
|
LangAssciations2["baseLangOfAggregate"] = "baseLangOfAggregate";
|
|
5546
5793
|
LangAssciations2["themes"] = "themes";
|
|
5547
5794
|
LangAssciations2["themesAggregate"] = "themesAggregate";
|
|
5795
|
+
LangAssciations2["bulletins"] = "bulletins";
|
|
5796
|
+
LangAssciations2["bulletinsAggregate"] = "bulletinsAggregate";
|
|
5548
5797
|
return LangAssciations2;
|
|
5549
5798
|
})(LangAssciations || {});
|
|
5550
5799
|
var WebsiteTypeFields = /* @__PURE__ */ ((WebsiteTypeFields2) => {
|
|
@@ -5644,8 +5893,13 @@ var ProductAssciations = /* @__PURE__ */ ((ProductAssciations2) => {
|
|
|
5644
5893
|
ProductAssciations2["attachmentPivotsAggregate"] = "attachmentPivotsAggregate";
|
|
5645
5894
|
ProductAssciations2["lang"] = "lang";
|
|
5646
5895
|
ProductAssciations2["meta"] = "meta";
|
|
5896
|
+
ProductAssciations2["faqs"] = "faqs";
|
|
5897
|
+
ProductAssciations2["faqsAggregate"] = "faqsAggregate";
|
|
5898
|
+
ProductAssciations2["relatedPivots"] = "relatedPivots";
|
|
5899
|
+
ProductAssciations2["relatedPivotsAggregate"] = "relatedPivotsAggregate";
|
|
5647
5900
|
ProductAssciations2["creator"] = "creator";
|
|
5648
5901
|
ProductAssciations2["website"] = "website";
|
|
5902
|
+
ProductAssciations2["relatedByPovit"] = "relatedByPovit";
|
|
5649
5903
|
return ProductAssciations2;
|
|
5650
5904
|
})(ProductAssciations || {});
|
|
5651
5905
|
var EnquiryFields = /* @__PURE__ */ ((EnquiryFields2) => {
|
|
@@ -6078,47 +6332,6 @@ var SearchIndexAssciations = /* @__PURE__ */ ((SearchIndexAssciations2) => {
|
|
|
6078
6332
|
SearchIndexAssciations2["website"] = "website";
|
|
6079
6333
|
return SearchIndexAssciations2;
|
|
6080
6334
|
})(SearchIndexAssciations || {});
|
|
6081
|
-
var VideoFolderFields = /* @__PURE__ */ ((VideoFolderFields2) => {
|
|
6082
|
-
VideoFolderFields2["id"] = "id";
|
|
6083
|
-
VideoFolderFields2["name"] = "name";
|
|
6084
|
-
VideoFolderFields2["seqValue"] = "seqValue";
|
|
6085
|
-
VideoFolderFields2["createdAt"] = "createdAt";
|
|
6086
|
-
VideoFolderFields2["updatedAt"] = "updatedAt";
|
|
6087
|
-
VideoFolderFields2["content"] = "content";
|
|
6088
|
-
return VideoFolderFields2;
|
|
6089
|
-
})(VideoFolderFields || {});
|
|
6090
|
-
var VideoFolderAssciations = /* @__PURE__ */ ((VideoFolderAssciations2) => {
|
|
6091
|
-
VideoFolderAssciations2["lang"] = "lang";
|
|
6092
|
-
VideoFolderAssciations2["children"] = "children";
|
|
6093
|
-
VideoFolderAssciations2["childrenAggregate"] = "childrenAggregate";
|
|
6094
|
-
VideoFolderAssciations2["website"] = "website";
|
|
6095
|
-
VideoFolderAssciations2["videos"] = "videos";
|
|
6096
|
-
VideoFolderAssciations2["videosAggregate"] = "videosAggregate";
|
|
6097
|
-
VideoFolderAssciations2["parent"] = "parent";
|
|
6098
|
-
return VideoFolderAssciations2;
|
|
6099
|
-
})(VideoFolderAssciations || {});
|
|
6100
|
-
var VideoFields = /* @__PURE__ */ ((VideoFields2) => {
|
|
6101
|
-
VideoFields2["id"] = "id";
|
|
6102
|
-
VideoFields2["name"] = "name";
|
|
6103
|
-
VideoFields2["size"] = "size";
|
|
6104
|
-
VideoFields2["mimeType"] = "mimeType";
|
|
6105
|
-
VideoFields2["extName"] = "extName";
|
|
6106
|
-
VideoFields2["description"] = "description";
|
|
6107
|
-
VideoFields2["url"] = "url";
|
|
6108
|
-
VideoFields2["videoId"] = "videoId";
|
|
6109
|
-
VideoFields2["createdAt"] = "createdAt";
|
|
6110
|
-
VideoFields2["updatedAt"] = "updatedAt";
|
|
6111
|
-
VideoFields2["content"] = "content";
|
|
6112
|
-
return VideoFields2;
|
|
6113
|
-
})(VideoFields || {});
|
|
6114
|
-
var VideoAssciations = /* @__PURE__ */ ((VideoAssciations2) => {
|
|
6115
|
-
VideoAssciations2["lang"] = "lang";
|
|
6116
|
-
VideoAssciations2["folder"] = "folder";
|
|
6117
|
-
VideoAssciations2["cover"] = "cover";
|
|
6118
|
-
VideoAssciations2["coverAggregate"] = "coverAggregate";
|
|
6119
|
-
VideoAssciations2["website"] = "website";
|
|
6120
|
-
return VideoAssciations2;
|
|
6121
|
-
})(VideoAssciations || {});
|
|
6122
6335
|
var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
|
|
6123
6336
|
TaskFields2["id"] = "id";
|
|
6124
6337
|
TaskFields2["jobId"] = "jobId";
|
|
@@ -6155,6 +6368,83 @@ var NotificationFields = /* @__PURE__ */ ((NotificationFields2) => {
|
|
|
6155
6368
|
})(NotificationFields || {});
|
|
6156
6369
|
var NotificationAssciations = /* @__PURE__ */ ((NotificationAssciations2) => {
|
|
6157
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 || {});
|
|
6158
6448
|
export {
|
|
6159
6449
|
AbilityAssciations,
|
|
6160
6450
|
AbilityDistinctEnum,
|
|
@@ -6176,6 +6466,12 @@ export {
|
|
|
6176
6466
|
AttachmentOnProductEntityName,
|
|
6177
6467
|
AttachmentOnProductFields,
|
|
6178
6468
|
AttachmentOnProductQueryOptions,
|
|
6469
|
+
BulletinAssciations,
|
|
6470
|
+
BulletinDistinctEnum,
|
|
6471
|
+
BulletinEntityLabel,
|
|
6472
|
+
BulletinEntityName,
|
|
6473
|
+
BulletinFields,
|
|
6474
|
+
BulletinQueryOptions,
|
|
6179
6475
|
ChangeLogAssciations,
|
|
6180
6476
|
ChangeLogDistinctEnum,
|
|
6181
6477
|
ChangeLogEntityLabel,
|
|
@@ -6190,6 +6486,12 @@ export {
|
|
|
6190
6486
|
ComponentCategoryQueryOptions,
|
|
6191
6487
|
CookieConsentStrategy,
|
|
6192
6488
|
CustomerAssciations,
|
|
6489
|
+
CustomerCaseAssciations,
|
|
6490
|
+
CustomerCaseDistinctEnum,
|
|
6491
|
+
CustomerCaseEntityLabel,
|
|
6492
|
+
CustomerCaseEntityName,
|
|
6493
|
+
CustomerCaseFields,
|
|
6494
|
+
CustomerCaseQueryOptions,
|
|
6193
6495
|
CustomerDistinctEnum,
|
|
6194
6496
|
CustomerEntityLabel,
|
|
6195
6497
|
CustomerEntityName,
|
|
@@ -6202,6 +6504,12 @@ export {
|
|
|
6202
6504
|
EnquiryFields,
|
|
6203
6505
|
EnquiryQueryOptions,
|
|
6204
6506
|
ExtendFieldType,
|
|
6507
|
+
FAQAssciations,
|
|
6508
|
+
FAQDistinctEnum,
|
|
6509
|
+
FAQEntityLabel,
|
|
6510
|
+
FAQEntityName,
|
|
6511
|
+
FAQFields,
|
|
6512
|
+
FAQQueryOptions,
|
|
6205
6513
|
FrontComponentAssciations,
|
|
6206
6514
|
FrontComponentDistinctEnum,
|
|
6207
6515
|
FrontComponentEntityLabel,
|
|
@@ -6288,6 +6596,12 @@ export {
|
|
|
6288
6596
|
ProductEntityName,
|
|
6289
6597
|
ProductFields,
|
|
6290
6598
|
ProductQueryOptions,
|
|
6599
|
+
ProductRelatedPivotAssciations,
|
|
6600
|
+
ProductRelatedPivotDistinctEnum,
|
|
6601
|
+
ProductRelatedPivotEntityLabel,
|
|
6602
|
+
ProductRelatedPivotEntityName,
|
|
6603
|
+
ProductRelatedPivotFields,
|
|
6604
|
+
ProductRelatedPivotQueryOptions,
|
|
6291
6605
|
PublishableDistinctEnum,
|
|
6292
6606
|
PublishableStatus,
|
|
6293
6607
|
QueryOptions,
|
|
@@ -6310,6 +6624,12 @@ export {
|
|
|
6310
6624
|
SectionTemplateFields,
|
|
6311
6625
|
SectionTemplateQueryOptions,
|
|
6312
6626
|
SlugableDistinctEnum,
|
|
6627
|
+
SolutionAssciations,
|
|
6628
|
+
SolutionDistinctEnum,
|
|
6629
|
+
SolutionEntityLabel,
|
|
6630
|
+
SolutionEntityName,
|
|
6631
|
+
SolutionFields,
|
|
6632
|
+
SolutionQueryOptions,
|
|
6313
6633
|
SourceType,
|
|
6314
6634
|
SpamFilterRuleAssciations,
|
|
6315
6635
|
SpamFilterRuleDistinctEnum,
|
|
@@ -6380,18 +6700,6 @@ export {
|
|
|
6380
6700
|
UserFields,
|
|
6381
6701
|
UserQueryOptions,
|
|
6382
6702
|
UserType,
|
|
6383
|
-
VideoAssciations,
|
|
6384
|
-
VideoDistinctEnum,
|
|
6385
|
-
VideoEntityLabel,
|
|
6386
|
-
VideoEntityName,
|
|
6387
|
-
VideoFields,
|
|
6388
|
-
VideoFolderAssciations,
|
|
6389
|
-
VideoFolderDistinctEnum,
|
|
6390
|
-
VideoFolderEntityLabel,
|
|
6391
|
-
VideoFolderEntityName,
|
|
6392
|
-
VideoFolderFields,
|
|
6393
|
-
VideoFolderQueryOptions,
|
|
6394
|
-
VideoQueryOptions,
|
|
6395
6703
|
WebsiteAssciations,
|
|
6396
6704
|
WebsiteContentDistinctEnum,
|
|
6397
6705
|
WebsiteDistinctEnum,
|
|
@@ -6425,18 +6733,27 @@ export {
|
|
|
6425
6733
|
attachmentOnProductEntry,
|
|
6426
6734
|
attachmentOnProductToInput,
|
|
6427
6735
|
attachmentOnProductToInputCascade,
|
|
6736
|
+
bulletinEntry,
|
|
6737
|
+
bulletinToInput,
|
|
6738
|
+
bulletinToInputCascade,
|
|
6428
6739
|
changeLogEntry,
|
|
6429
6740
|
changeLogToInput,
|
|
6430
6741
|
changeLogToInputCascade,
|
|
6431
6742
|
componentCategoryEntry,
|
|
6432
6743
|
componentCategoryToInput,
|
|
6433
6744
|
componentCategoryToInputCascade,
|
|
6745
|
+
customerCaseEntry,
|
|
6746
|
+
customerCaseToInput,
|
|
6747
|
+
customerCaseToInputCascade,
|
|
6434
6748
|
customerEntry,
|
|
6435
6749
|
customerToInput,
|
|
6436
6750
|
customerToInputCascade,
|
|
6437
6751
|
enquiryEntry,
|
|
6438
6752
|
enquiryToInput,
|
|
6439
6753
|
enquiryToInputCascade,
|
|
6754
|
+
fAQEntry,
|
|
6755
|
+
fAQToInput,
|
|
6756
|
+
fAQToInputCascade,
|
|
6440
6757
|
frontComponentEntry,
|
|
6441
6758
|
frontComponentToInput,
|
|
6442
6759
|
frontComponentToInputCascade,
|
|
@@ -6474,6 +6791,9 @@ export {
|
|
|
6474
6791
|
productCategoryToInput,
|
|
6475
6792
|
productCategoryToInputCascade,
|
|
6476
6793
|
productEntry,
|
|
6794
|
+
productRelatedPivotEntry,
|
|
6795
|
+
productRelatedPivotToInput,
|
|
6796
|
+
productRelatedPivotToInputCascade,
|
|
6477
6797
|
productToInput,
|
|
6478
6798
|
productToInputCascade,
|
|
6479
6799
|
roleEntry,
|
|
@@ -6485,6 +6805,9 @@ export {
|
|
|
6485
6805
|
sectionTemplateEntry,
|
|
6486
6806
|
sectionTemplateToInput,
|
|
6487
6807
|
sectionTemplateToInputCascade,
|
|
6808
|
+
solutionEntry,
|
|
6809
|
+
solutionToInput,
|
|
6810
|
+
solutionToInputCascade,
|
|
6488
6811
|
spamFilterRuleEntry,
|
|
6489
6812
|
spamFilterRuleToInput,
|
|
6490
6813
|
spamFilterRuleToInputCascade,
|
|
@@ -6518,12 +6841,6 @@ export {
|
|
|
6518
6841
|
userEntry,
|
|
6519
6842
|
userToInput,
|
|
6520
6843
|
userToInputCascade,
|
|
6521
|
-
videoEntry,
|
|
6522
|
-
videoFolderEntry,
|
|
6523
|
-
videoFolderToInput,
|
|
6524
|
-
videoFolderToInputCascade,
|
|
6525
|
-
videoToInput,
|
|
6526
|
-
videoToInputCascade,
|
|
6527
6844
|
websiteEntry,
|
|
6528
6845
|
websiteSettingsEntry,
|
|
6529
6846
|
websiteSettingsToInput,
|