@rxdrag/rxcms-models 0.3.93 → 0.3.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/classes/LangQueryOptions.d.ts +5 -5
- package/dist/classes/SvgIconQueryOptions.d.ts +16 -0
- package/dist/classes/TagQueryOptions.d.ts +1 -2
- package/dist/classes/WebsiteQueryOptions.d.ts +10 -5
- package/dist/classes/index.d.ts +1 -0
- package/dist/entries/index.d.ts +1 -0
- package/dist/entries/svgIconEntry.d.ts +2 -0
- package/dist/fields/LangFields.d.ts +3 -3
- package/dist/fields/SvgIconFields.d.ts +12 -0
- package/dist/fields/TagFields.d.ts +1 -2
- package/dist/fields/WebsiteFields.d.ts +4 -2
- package/dist/fields/index.d.ts +1 -0
- package/dist/index.mjs +175 -71
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Lang.d.ts +3 -3
- package/dist/interfaces/LangBoolExp.d.ts +2 -2
- package/dist/interfaces/LangInput.d.ts +2 -2
- package/dist/interfaces/SvgIcon.d.ts +13 -0
- package/dist/interfaces/SvgIconBoolExp.d.ts +17 -0
- package/dist/interfaces/SvgIconDistinctExp.d.ts +10 -0
- package/dist/interfaces/SvgIconInput.d.ts +15 -0
- package/dist/interfaces/SvgIconOrderBy.d.ts +10 -0
- package/dist/interfaces/Tag.d.ts +3 -2
- package/dist/interfaces/TagBoolExp.d.ts +4 -2
- package/dist/interfaces/TagDistinctExp.d.ts +2 -4
- package/dist/interfaces/TagInput.d.ts +3 -2
- package/dist/interfaces/TagOrderBy.d.ts +3 -2
- package/dist/interfaces/Website.d.ts +6 -3
- package/dist/interfaces/WebsiteBoolExp.d.ts +4 -2
- package/dist/interfaces/WebsiteInput.d.ts +4 -2
- package/dist/interfaces/index.d.ts +5 -0
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -38,7 +38,6 @@ const aggregateEntities = {
|
|
|
38
38
|
partsOfProductAggregate: "Product",
|
|
39
39
|
partsOfPostAggregate: "Post",
|
|
40
40
|
partsOfPostCategoryAggregate: "PostCategory",
|
|
41
|
-
partsOfTagAggregate: "Tag",
|
|
42
41
|
partsOfCustomerAggregate: "Customer",
|
|
43
42
|
partsOfProductCategoryAggregate: "ProductCategory",
|
|
44
43
|
partsOfSpamFilterRuleAggregate: "SpamFilterRule",
|
|
@@ -49,7 +48,9 @@ const aggregateEntities = {
|
|
|
49
48
|
searchIndexesAggregate: "SearchIndex",
|
|
50
49
|
bulletinsAggregate: "Bulletin",
|
|
51
50
|
snapshotsAggregate: "WebsiteSnapshot",
|
|
52
|
-
userOperationsAggregate: "UserOperation"
|
|
51
|
+
userOperationsAggregate: "UserOperation",
|
|
52
|
+
svgIconsAggregate: "SvgIcon",
|
|
53
|
+
tagsAggregate: "Tag"
|
|
53
54
|
},
|
|
54
55
|
Lang: {
|
|
55
56
|
webPartsOfMediaFolderAggregate: "MediaFolder",
|
|
@@ -57,7 +58,6 @@ const aggregateEntities = {
|
|
|
57
58
|
webPartsOfProductAggregate: "Product",
|
|
58
59
|
webPartsOfPostAggregate: "Post",
|
|
59
60
|
webPartsOfPostCategoryAggregate: "PostCategory",
|
|
60
|
-
webPartsOfTagAggregate: "Tag",
|
|
61
61
|
webPartsOfCustomerAggregate: "Customer",
|
|
62
62
|
webPartsOfProductCategoryAggregate: "ProductCategory",
|
|
63
63
|
webPartsOfSpamFilterRuleAggregate: "SpamFilterRule",
|
|
@@ -65,7 +65,8 @@ const aggregateEntities = {
|
|
|
65
65
|
websitesAggregate: "Website",
|
|
66
66
|
baseLangOfAggregate: "Website",
|
|
67
67
|
themesAggregate: "ThemeBranch",
|
|
68
|
-
bulletinsAggregate: "Bulletin"
|
|
68
|
+
bulletinsAggregate: "Bulletin",
|
|
69
|
+
tagsAggregate: "Tag"
|
|
69
70
|
},
|
|
70
71
|
WebsiteType: {
|
|
71
72
|
websitesAggregate: "Website"
|
|
@@ -852,9 +853,21 @@ const userOperationToInput = (entity) => {
|
|
|
852
853
|
website: convertHasOneToInput(entity.website)
|
|
853
854
|
};
|
|
854
855
|
};
|
|
856
|
+
const svgIconToInputCascade = (entity) => {
|
|
857
|
+
return {
|
|
858
|
+
...entity,
|
|
859
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
const svgIconToInput = (entity) => {
|
|
863
|
+
return {
|
|
864
|
+
...entity,
|
|
865
|
+
website: convertHasOneToInput(entity.website)
|
|
866
|
+
};
|
|
867
|
+
};
|
|
855
868
|
const websiteToInputCascade = (entity) => {
|
|
856
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r;
|
|
857
|
-
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate,
|
|
869
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s;
|
|
870
|
+
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, svgIconsAggregate, tagsAggregate, ...rest } = entity;
|
|
858
871
|
return {
|
|
859
872
|
...rest,
|
|
860
873
|
websiteType: entity.websiteType ? processHasOneClear({ sync: websiteTypeToInput(entity.websiteType) }) : void 0,
|
|
@@ -865,26 +878,27 @@ const websiteToInputCascade = (entity) => {
|
|
|
865
878
|
partsOfProduct: entity.partsOfProduct ? processHasManyClear({ sync: (_d = entity.partsOfProduct) == null ? void 0 : _d.map((ent) => productToInput(ent)) }) : void 0,
|
|
866
879
|
partsOfPost: entity.partsOfPost ? processHasManyClear({ sync: (_e = entity.partsOfPost) == null ? void 0 : _e.map((ent) => postToInput(ent)) }) : void 0,
|
|
867
880
|
partsOfPostCategory: entity.partsOfPostCategory ? processHasManyClear({ sync: (_f = entity.partsOfPostCategory) == null ? void 0 : _f.map((ent) => postCategoryToInput(ent)) }) : void 0,
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
langs: entity.langs ? processHasManyClear({ sync: (_l = entity.langs) == null ? void 0 : _l.map((ent) => langToInput(ent)) }) : void 0,
|
|
881
|
+
partsOfCustomer: entity.partsOfCustomer ? processHasManyClear({ sync: (_g = entity.partsOfCustomer) == null ? void 0 : _g.map((ent) => customerToInput(ent)) }) : void 0,
|
|
882
|
+
partsOfProductCategory: entity.partsOfProductCategory ? processHasManyClear({ sync: (_h = entity.partsOfProductCategory) == null ? void 0 : _h.map((ent) => productCategoryToInput(ent)) }) : void 0,
|
|
883
|
+
partsOfSpamFilterRule: entity.partsOfSpamFilterRule ? processHasManyClear({ sync: (_i = entity.partsOfSpamFilterRule) == null ? void 0 : _i.map((ent) => spamFilterRuleToInput(ent)) }) : void 0,
|
|
884
|
+
partsOfMedia: entity.partsOfMedia ? processHasManyClear({ sync: (_j = entity.partsOfMedia) == null ? void 0 : _j.map((ent) => mediaToInput(ent)) }) : void 0,
|
|
885
|
+
langs: entity.langs ? processHasManyClear({ sync: (_k = entity.langs) == null ? void 0 : _k.map((ent) => langToInput(ent)) }) : void 0,
|
|
874
886
|
baseLang: entity.baseLang ? processHasOneClear({ sync: langToInput(entity.baseLang) }) : void 0,
|
|
875
|
-
themes: entity.themes ? processHasManyClear({ sync: (
|
|
887
|
+
themes: entity.themes ? processHasManyClear({ sync: (_l = entity.themes) == null ? void 0 : _l.map((ent) => themeBranchToInput(ent)) }) : void 0,
|
|
876
888
|
analyticsConfig: entity.analyticsConfig ? processHasOneClear({ sync: analyticsConfigToInput(entity.analyticsConfig) }) : void 0,
|
|
877
889
|
settings: entity.settings ? processHasOneClear({ sync: websiteSettingsToInput(entity.settings) }) : void 0,
|
|
878
|
-
changelogs: entity.changelogs ? processHasManyClear({ sync: (
|
|
879
|
-
searchIndexes: entity.searchIndexes ? processHasManyClear({ sync: (
|
|
880
|
-
bulletins: entity.bulletins ? processHasManyClear({ sync: (
|
|
881
|
-
snapshots: entity.snapshots ? processHasManyClear({ sync: (
|
|
882
|
-
userOperations: entity.userOperations ? processHasManyClear({ sync: (
|
|
890
|
+
changelogs: entity.changelogs ? processHasManyClear({ sync: (_m = entity.changelogs) == null ? void 0 : _m.map((ent) => changeLogToInput(ent)) }) : void 0,
|
|
891
|
+
searchIndexes: entity.searchIndexes ? processHasManyClear({ sync: (_n = entity.searchIndexes) == null ? void 0 : _n.map((ent) => searchIndexToInput(ent)) }) : void 0,
|
|
892
|
+
bulletins: entity.bulletins ? processHasManyClear({ sync: (_o = entity.bulletins) == null ? void 0 : _o.map((ent) => bulletinToInput(ent)) }) : void 0,
|
|
893
|
+
snapshots: entity.snapshots ? processHasManyClear({ sync: (_p = entity.snapshots) == null ? void 0 : _p.map((ent) => websiteSnapshotToInput(ent)) }) : void 0,
|
|
894
|
+
userOperations: entity.userOperations ? processHasManyClear({ sync: (_q = entity.userOperations) == null ? void 0 : _q.map((ent) => userOperationToInput(ent)) }) : void 0,
|
|
895
|
+
svgIcons: entity.svgIcons ? processHasManyClear({ sync: (_r = entity.svgIcons) == null ? void 0 : _r.map((ent) => svgIconToInput(ent)) }) : void 0,
|
|
896
|
+
tags: entity.tags ? processHasManyClear({ sync: (_s = entity.tags) == null ? void 0 : _s.map((ent) => tagToInput(ent)) }) : void 0,
|
|
883
897
|
mockBranch: entity.mockBranch ? processHasOneClear({ sync: themeBranchToInput(entity.mockBranch) }) : void 0
|
|
884
898
|
};
|
|
885
899
|
};
|
|
886
900
|
const websiteToInput = (entity) => {
|
|
887
|
-
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate,
|
|
901
|
+
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, themesAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, svgIconsAggregate, tagsAggregate, ...rest } = entity;
|
|
888
902
|
return {
|
|
889
903
|
...rest,
|
|
890
904
|
websiteType: convertHasOneToInput(entity.websiteType),
|
|
@@ -895,7 +909,6 @@ const websiteToInput = (entity) => {
|
|
|
895
909
|
partsOfProduct: convertHasManyToInput(entity.partsOfProduct),
|
|
896
910
|
partsOfPost: convertHasManyToInput(entity.partsOfPost),
|
|
897
911
|
partsOfPostCategory: convertHasManyToInput(entity.partsOfPostCategory),
|
|
898
|
-
partsOfTag: convertHasManyToInput(entity.partsOfTag),
|
|
899
912
|
partsOfCustomer: convertHasManyToInput(entity.partsOfCustomer),
|
|
900
913
|
partsOfProductCategory: convertHasManyToInput(entity.partsOfProductCategory),
|
|
901
914
|
partsOfSpamFilterRule: convertHasManyToInput(entity.partsOfSpamFilterRule),
|
|
@@ -910,6 +923,8 @@ const websiteToInput = (entity) => {
|
|
|
910
923
|
bulletins: convertHasManyToInput(entity.bulletins),
|
|
911
924
|
snapshots: convertHasManyToInput(entity.snapshots),
|
|
912
925
|
userOperations: convertHasManyToInput(entity.userOperations),
|
|
926
|
+
svgIcons: convertHasManyToInput(entity.svgIcons),
|
|
927
|
+
tags: convertHasManyToInput(entity.tags),
|
|
913
928
|
mockBranch: convertHasOneToInput(entity.mockBranch)
|
|
914
929
|
};
|
|
915
930
|
};
|
|
@@ -955,7 +970,7 @@ const enquiryToInput = (entity) => {
|
|
|
955
970
|
};
|
|
956
971
|
const langToInputCascade = (entity) => {
|
|
957
972
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n;
|
|
958
|
-
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate,
|
|
973
|
+
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, bulletinsAggregate, tagsAggregate, ...rest } = entity;
|
|
959
974
|
return {
|
|
960
975
|
...rest,
|
|
961
976
|
webPartsOfMediaFolder: entity.webPartsOfMediaFolder ? processHasManyClear({ sync: (_a = entity.webPartsOfMediaFolder) == null ? void 0 : _a.map((ent) => mediaFolderToInput(ent)) }) : void 0,
|
|
@@ -963,19 +978,19 @@ const langToInputCascade = (entity) => {
|
|
|
963
978
|
webPartsOfProduct: entity.webPartsOfProduct ? processHasManyClear({ sync: (_c = entity.webPartsOfProduct) == null ? void 0 : _c.map((ent) => productToInput(ent)) }) : void 0,
|
|
964
979
|
webPartsOfPost: entity.webPartsOfPost ? processHasManyClear({ sync: (_d = entity.webPartsOfPost) == null ? void 0 : _d.map((ent) => postToInput(ent)) }) : void 0,
|
|
965
980
|
webPartsOfPostCategory: entity.webPartsOfPostCategory ? processHasManyClear({ sync: (_e = entity.webPartsOfPostCategory) == null ? void 0 : _e.map((ent) => postCategoryToInput(ent)) }) : void 0,
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
981
|
+
webPartsOfCustomer: entity.webPartsOfCustomer ? processHasManyClear({ sync: (_f = entity.webPartsOfCustomer) == null ? void 0 : _f.map((ent) => customerToInput(ent)) }) : void 0,
|
|
982
|
+
webPartsOfProductCategory: entity.webPartsOfProductCategory ? processHasManyClear({ sync: (_g = entity.webPartsOfProductCategory) == null ? void 0 : _g.map((ent) => productCategoryToInput(ent)) }) : void 0,
|
|
983
|
+
webPartsOfSpamFilterRule: entity.webPartsOfSpamFilterRule ? processHasManyClear({ sync: (_h = entity.webPartsOfSpamFilterRule) == null ? void 0 : _h.map((ent) => spamFilterRuleToInput(ent)) }) : void 0,
|
|
984
|
+
webPartsOfMedia: entity.webPartsOfMedia ? processHasManyClear({ sync: (_i = entity.webPartsOfMedia) == null ? void 0 : _i.map((ent) => mediaToInput(ent)) }) : void 0,
|
|
985
|
+
websites: entity.websites ? processHasManyClear({ sync: (_j = entity.websites) == null ? void 0 : _j.map((ent) => websiteToInput(ent)) }) : void 0,
|
|
986
|
+
baseLangOf: entity.baseLangOf ? processHasManyClear({ sync: (_k = entity.baseLangOf) == null ? void 0 : _k.map((ent) => websiteToInput(ent)) }) : void 0,
|
|
987
|
+
themes: entity.themes ? processHasManyClear({ sync: (_l = entity.themes) == null ? void 0 : _l.map((ent) => themeBranchToInput(ent)) }) : void 0,
|
|
988
|
+
bulletins: entity.bulletins ? processHasManyClear({ sync: (_m = entity.bulletins) == null ? void 0 : _m.map((ent) => bulletinToInput(ent)) }) : void 0,
|
|
989
|
+
tags: entity.tags ? processHasManyClear({ sync: (_n = entity.tags) == null ? void 0 : _n.map((ent) => tagToInput(ent)) }) : void 0
|
|
975
990
|
};
|
|
976
991
|
};
|
|
977
992
|
const langToInput = (entity) => {
|
|
978
|
-
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate,
|
|
993
|
+
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, themesAggregate, bulletinsAggregate, tagsAggregate, ...rest } = entity;
|
|
979
994
|
return {
|
|
980
995
|
...rest,
|
|
981
996
|
webPartsOfMediaFolder: convertHasManyToInput(entity.webPartsOfMediaFolder),
|
|
@@ -983,7 +998,6 @@ const langToInput = (entity) => {
|
|
|
983
998
|
webPartsOfProduct: convertHasManyToInput(entity.webPartsOfProduct),
|
|
984
999
|
webPartsOfPost: convertHasManyToInput(entity.webPartsOfPost),
|
|
985
1000
|
webPartsOfPostCategory: convertHasManyToInput(entity.webPartsOfPostCategory),
|
|
986
|
-
webPartsOfTag: convertHasManyToInput(entity.webPartsOfTag),
|
|
987
1001
|
webPartsOfCustomer: convertHasManyToInput(entity.webPartsOfCustomer),
|
|
988
1002
|
webPartsOfProductCategory: convertHasManyToInput(entity.webPartsOfProductCategory),
|
|
989
1003
|
webPartsOfSpamFilterRule: convertHasManyToInput(entity.webPartsOfSpamFilterRule),
|
|
@@ -991,7 +1005,8 @@ const langToInput = (entity) => {
|
|
|
991
1005
|
websites: convertHasManyToInput(entity.websites),
|
|
992
1006
|
baseLangOf: convertHasManyToInput(entity.baseLangOf),
|
|
993
1007
|
themes: convertHasManyToInput(entity.themes),
|
|
994
|
-
bulletins: convertHasManyToInput(entity.bulletins)
|
|
1008
|
+
bulletins: convertHasManyToInput(entity.bulletins),
|
|
1009
|
+
tags: convertHasManyToInput(entity.tags)
|
|
995
1010
|
};
|
|
996
1011
|
};
|
|
997
1012
|
const mediaFolderToInputCascade = (entity) => {
|
|
@@ -1474,9 +1489,8 @@ var TagDistinctEnum = /* @__PURE__ */ ((TagDistinctEnum2) => {
|
|
|
1474
1489
|
TagDistinctEnum2["id"] = "id";
|
|
1475
1490
|
TagDistinctEnum2["name"] = "name";
|
|
1476
1491
|
TagDistinctEnum2["color"] = "color";
|
|
1477
|
-
TagDistinctEnum2["createdAt"] = "createdAt";
|
|
1478
1492
|
TagDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1479
|
-
TagDistinctEnum2["
|
|
1493
|
+
TagDistinctEnum2["createdAt"] = "createdAt";
|
|
1480
1494
|
return TagDistinctEnum2;
|
|
1481
1495
|
})(TagDistinctEnum || {});
|
|
1482
1496
|
var PublishableDistinctEnum = /* @__PURE__ */ ((PublishableDistinctEnum2) => {
|
|
@@ -2039,6 +2053,18 @@ var ThemeDistinctEnum = /* @__PURE__ */ ((ThemeDistinctEnum2) => {
|
|
|
2039
2053
|
ThemeDistinctEnum2["seqValue"] = "seqValue";
|
|
2040
2054
|
return ThemeDistinctEnum2;
|
|
2041
2055
|
})(ThemeDistinctEnum || {});
|
|
2056
|
+
const SvgIconEntityName = "SvgIcon";
|
|
2057
|
+
const SvgIconEntityLabel = "";
|
|
2058
|
+
var SvgIconDistinctEnum = /* @__PURE__ */ ((SvgIconDistinctEnum2) => {
|
|
2059
|
+
SvgIconDistinctEnum2["id"] = "id";
|
|
2060
|
+
SvgIconDistinctEnum2["name"] = "name";
|
|
2061
|
+
SvgIconDistinctEnum2["title"] = "title";
|
|
2062
|
+
SvgIconDistinctEnum2["code"] = "code";
|
|
2063
|
+
SvgIconDistinctEnum2["description"] = "description";
|
|
2064
|
+
SvgIconDistinctEnum2["createdAt"] = "createdAt";
|
|
2065
|
+
SvgIconDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2066
|
+
return SvgIconDistinctEnum2;
|
|
2067
|
+
})(SvgIconDistinctEnum || {});
|
|
2042
2068
|
class RoleVariableQueryOptions extends QueryOptions {
|
|
2043
2069
|
constructor(fields, queryArgs) {
|
|
2044
2070
|
super(RoleVariableEntityName, fields, queryArgs);
|
|
@@ -3433,16 +3459,12 @@ class TagQueryOptions extends QueryOptions {
|
|
|
3433
3459
|
this.addField("color");
|
|
3434
3460
|
return this;
|
|
3435
3461
|
}
|
|
3436
|
-
createdAt() {
|
|
3437
|
-
this.addField("createdAt");
|
|
3438
|
-
return this;
|
|
3439
|
-
}
|
|
3440
3462
|
updatedAt() {
|
|
3441
3463
|
this.addField("updatedAt");
|
|
3442
3464
|
return this;
|
|
3443
3465
|
}
|
|
3444
|
-
|
|
3445
|
-
this.addField("
|
|
3466
|
+
createdAt() {
|
|
3467
|
+
this.addField("createdAt");
|
|
3446
3468
|
return this;
|
|
3447
3469
|
}
|
|
3448
3470
|
lang(options) {
|
|
@@ -4186,6 +4208,47 @@ class UserOperationQueryOptions extends QueryOptions {
|
|
|
4186
4208
|
return this;
|
|
4187
4209
|
}
|
|
4188
4210
|
}
|
|
4211
|
+
class SvgIconQueryOptions extends QueryOptions {
|
|
4212
|
+
constructor(fields, queryArgs) {
|
|
4213
|
+
super(SvgIconEntityName, fields, queryArgs);
|
|
4214
|
+
}
|
|
4215
|
+
id() {
|
|
4216
|
+
this.addField("id");
|
|
4217
|
+
return this;
|
|
4218
|
+
}
|
|
4219
|
+
name() {
|
|
4220
|
+
this.addField("name");
|
|
4221
|
+
return this;
|
|
4222
|
+
}
|
|
4223
|
+
title() {
|
|
4224
|
+
this.addField("title");
|
|
4225
|
+
return this;
|
|
4226
|
+
}
|
|
4227
|
+
code() {
|
|
4228
|
+
this.addField("code");
|
|
4229
|
+
return this;
|
|
4230
|
+
}
|
|
4231
|
+
description() {
|
|
4232
|
+
this.addField("description");
|
|
4233
|
+
return this;
|
|
4234
|
+
}
|
|
4235
|
+
createdAt() {
|
|
4236
|
+
this.addField("createdAt");
|
|
4237
|
+
return this;
|
|
4238
|
+
}
|
|
4239
|
+
updatedAt() {
|
|
4240
|
+
this.addField("updatedAt");
|
|
4241
|
+
return this;
|
|
4242
|
+
}
|
|
4243
|
+
website(options) {
|
|
4244
|
+
if (Array.isArray(options)) {
|
|
4245
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
4246
|
+
} else {
|
|
4247
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
4248
|
+
}
|
|
4249
|
+
return this;
|
|
4250
|
+
}
|
|
4251
|
+
}
|
|
4189
4252
|
class WebsiteQueryOptions extends QueryOptions {
|
|
4190
4253
|
constructor(fields, queryArgs) {
|
|
4191
4254
|
super(WebsiteEntityName, fields, queryArgs);
|
|
@@ -4339,18 +4402,6 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
4339
4402
|
this._aggregates["partsOfPostCategoryAggregate"] = aggregate;
|
|
4340
4403
|
return this;
|
|
4341
4404
|
}
|
|
4342
|
-
partsOfTag(options) {
|
|
4343
|
-
if (Array.isArray(options)) {
|
|
4344
|
-
this._associations["partsOfTag"] = new TagQueryOptions(options);
|
|
4345
|
-
} else {
|
|
4346
|
-
this._associations["partsOfTag"] = options || new TagQueryOptions(["id"]);
|
|
4347
|
-
}
|
|
4348
|
-
return this;
|
|
4349
|
-
}
|
|
4350
|
-
partsOfTagAggregate(aggregate) {
|
|
4351
|
-
this._aggregates["partsOfTagAggregate"] = aggregate;
|
|
4352
|
-
return this;
|
|
4353
|
-
}
|
|
4354
4405
|
partsOfCustomer(options) {
|
|
4355
4406
|
if (Array.isArray(options)) {
|
|
4356
4407
|
this._associations["partsOfCustomer"] = new CustomerQueryOptions(options);
|
|
@@ -4507,6 +4558,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
4507
4558
|
this._aggregates["userOperationsAggregate"] = aggregate;
|
|
4508
4559
|
return this;
|
|
4509
4560
|
}
|
|
4561
|
+
svgIcons(options) {
|
|
4562
|
+
if (Array.isArray(options)) {
|
|
4563
|
+
this._associations["svgIcons"] = new SvgIconQueryOptions(options);
|
|
4564
|
+
} else {
|
|
4565
|
+
this._associations["svgIcons"] = options || new SvgIconQueryOptions(["id"]);
|
|
4566
|
+
}
|
|
4567
|
+
return this;
|
|
4568
|
+
}
|
|
4569
|
+
svgIconsAggregate(aggregate) {
|
|
4570
|
+
this._aggregates["svgIconsAggregate"] = aggregate;
|
|
4571
|
+
return this;
|
|
4572
|
+
}
|
|
4573
|
+
tags(options) {
|
|
4574
|
+
if (Array.isArray(options)) {
|
|
4575
|
+
this._associations["tags"] = new TagQueryOptions(options);
|
|
4576
|
+
} else {
|
|
4577
|
+
this._associations["tags"] = options || new TagQueryOptions(["id"]);
|
|
4578
|
+
}
|
|
4579
|
+
return this;
|
|
4580
|
+
}
|
|
4581
|
+
tagsAggregate(aggregate) {
|
|
4582
|
+
this._aggregates["tagsAggregate"] = aggregate;
|
|
4583
|
+
return this;
|
|
4584
|
+
}
|
|
4510
4585
|
mockBranch(options) {
|
|
4511
4586
|
if (Array.isArray(options)) {
|
|
4512
4587
|
this._associations["mockBranch"] = new ThemeBranchQueryOptions(options);
|
|
@@ -4868,18 +4943,6 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4868
4943
|
this._aggregates["webPartsOfPostCategoryAggregate"] = aggregate;
|
|
4869
4944
|
return this;
|
|
4870
4945
|
}
|
|
4871
|
-
webPartsOfTag(options) {
|
|
4872
|
-
if (Array.isArray(options)) {
|
|
4873
|
-
this._associations["webPartsOfTag"] = new TagQueryOptions(options);
|
|
4874
|
-
} else {
|
|
4875
|
-
this._associations["webPartsOfTag"] = options || new TagQueryOptions(["id"]);
|
|
4876
|
-
}
|
|
4877
|
-
return this;
|
|
4878
|
-
}
|
|
4879
|
-
webPartsOfTagAggregate(aggregate) {
|
|
4880
|
-
this._aggregates["webPartsOfTagAggregate"] = aggregate;
|
|
4881
|
-
return this;
|
|
4882
|
-
}
|
|
4883
4946
|
webPartsOfCustomer(options) {
|
|
4884
4947
|
if (Array.isArray(options)) {
|
|
4885
4948
|
this._associations["webPartsOfCustomer"] = new CustomerQueryOptions(options);
|
|
@@ -4976,6 +5039,18 @@ class LangQueryOptions extends QueryOptions {
|
|
|
4976
5039
|
this._aggregates["bulletinsAggregate"] = aggregate;
|
|
4977
5040
|
return this;
|
|
4978
5041
|
}
|
|
5042
|
+
tags(options) {
|
|
5043
|
+
if (Array.isArray(options)) {
|
|
5044
|
+
this._associations["tags"] = new TagQueryOptions(options);
|
|
5045
|
+
} else {
|
|
5046
|
+
this._associations["tags"] = options || new TagQueryOptions(["id"]);
|
|
5047
|
+
}
|
|
5048
|
+
return this;
|
|
5049
|
+
}
|
|
5050
|
+
tagsAggregate(aggregate) {
|
|
5051
|
+
this._aggregates["tagsAggregate"] = aggregate;
|
|
5052
|
+
return this;
|
|
5053
|
+
}
|
|
4979
5054
|
}
|
|
4980
5055
|
class MediaFolderQueryOptions extends QueryOptions {
|
|
4981
5056
|
constructor(fields, queryArgs) {
|
|
@@ -6061,6 +6136,11 @@ const themeEntry = {
|
|
|
6061
6136
|
entityLabel: ThemeEntityLabel,
|
|
6062
6137
|
toInput: themeToInput
|
|
6063
6138
|
};
|
|
6139
|
+
const svgIconEntry = {
|
|
6140
|
+
entityName: SvgIconEntityName,
|
|
6141
|
+
entityLabel: SvgIconEntityLabel,
|
|
6142
|
+
toInput: svgIconToInput
|
|
6143
|
+
};
|
|
6064
6144
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
6065
6145
|
UserFields2["id"] = "id";
|
|
6066
6146
|
UserFields2["loginName"] = "loginName";
|
|
@@ -6251,8 +6331,6 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
6251
6331
|
WebsiteAssciations2["partsOfPostAggregate"] = "partsOfPostAggregate";
|
|
6252
6332
|
WebsiteAssciations2["partsOfPostCategory"] = "partsOfPostCategory";
|
|
6253
6333
|
WebsiteAssciations2["partsOfPostCategoryAggregate"] = "partsOfPostCategoryAggregate";
|
|
6254
|
-
WebsiteAssciations2["partsOfTag"] = "partsOfTag";
|
|
6255
|
-
WebsiteAssciations2["partsOfTagAggregate"] = "partsOfTagAggregate";
|
|
6256
6334
|
WebsiteAssciations2["partsOfCustomer"] = "partsOfCustomer";
|
|
6257
6335
|
WebsiteAssciations2["partsOfCustomerAggregate"] = "partsOfCustomerAggregate";
|
|
6258
6336
|
WebsiteAssciations2["partsOfProductCategory"] = "partsOfProductCategory";
|
|
@@ -6278,6 +6356,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
6278
6356
|
WebsiteAssciations2["snapshotsAggregate"] = "snapshotsAggregate";
|
|
6279
6357
|
WebsiteAssciations2["userOperations"] = "userOperations";
|
|
6280
6358
|
WebsiteAssciations2["userOperationsAggregate"] = "userOperationsAggregate";
|
|
6359
|
+
WebsiteAssciations2["svgIcons"] = "svgIcons";
|
|
6360
|
+
WebsiteAssciations2["svgIconsAggregate"] = "svgIconsAggregate";
|
|
6361
|
+
WebsiteAssciations2["tags"] = "tags";
|
|
6362
|
+
WebsiteAssciations2["tagsAggregate"] = "tagsAggregate";
|
|
6281
6363
|
WebsiteAssciations2["mockBranch"] = "mockBranch";
|
|
6282
6364
|
return WebsiteAssciations2;
|
|
6283
6365
|
})(WebsiteAssciations || {});
|
|
@@ -6305,8 +6387,6 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
6305
6387
|
LangAssciations2["webPartsOfPostAggregate"] = "webPartsOfPostAggregate";
|
|
6306
6388
|
LangAssciations2["webPartsOfPostCategory"] = "webPartsOfPostCategory";
|
|
6307
6389
|
LangAssciations2["webPartsOfPostCategoryAggregate"] = "webPartsOfPostCategoryAggregate";
|
|
6308
|
-
LangAssciations2["webPartsOfTag"] = "webPartsOfTag";
|
|
6309
|
-
LangAssciations2["webPartsOfTagAggregate"] = "webPartsOfTagAggregate";
|
|
6310
6390
|
LangAssciations2["webPartsOfCustomer"] = "webPartsOfCustomer";
|
|
6311
6391
|
LangAssciations2["webPartsOfCustomerAggregate"] = "webPartsOfCustomerAggregate";
|
|
6312
6392
|
LangAssciations2["webPartsOfProductCategory"] = "webPartsOfProductCategory";
|
|
@@ -6323,6 +6403,8 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
6323
6403
|
LangAssciations2["themesAggregate"] = "themesAggregate";
|
|
6324
6404
|
LangAssciations2["bulletins"] = "bulletins";
|
|
6325
6405
|
LangAssciations2["bulletinsAggregate"] = "bulletinsAggregate";
|
|
6406
|
+
LangAssciations2["tags"] = "tags";
|
|
6407
|
+
LangAssciations2["tagsAggregate"] = "tagsAggregate";
|
|
6326
6408
|
return LangAssciations2;
|
|
6327
6409
|
})(LangAssciations || {});
|
|
6328
6410
|
var WebsiteTypeFields = /* @__PURE__ */ ((WebsiteTypeFields2) => {
|
|
@@ -6560,9 +6642,8 @@ var TagFields = /* @__PURE__ */ ((TagFields2) => {
|
|
|
6560
6642
|
TagFields2["id"] = "id";
|
|
6561
6643
|
TagFields2["name"] = "name";
|
|
6562
6644
|
TagFields2["color"] = "color";
|
|
6563
|
-
TagFields2["createdAt"] = "createdAt";
|
|
6564
6645
|
TagFields2["updatedAt"] = "updatedAt";
|
|
6565
|
-
TagFields2["
|
|
6646
|
+
TagFields2["createdAt"] = "createdAt";
|
|
6566
6647
|
return TagFields2;
|
|
6567
6648
|
})(TagFields || {});
|
|
6568
6649
|
var TagAssciations = /* @__PURE__ */ ((TagAssciations2) => {
|
|
@@ -7021,6 +7102,20 @@ var ThemeAssciations = /* @__PURE__ */ ((ThemeAssciations2) => {
|
|
|
7021
7102
|
ThemeAssciations2["category"] = "category";
|
|
7022
7103
|
return ThemeAssciations2;
|
|
7023
7104
|
})(ThemeAssciations || {});
|
|
7105
|
+
var SvgIconFields = /* @__PURE__ */ ((SvgIconFields2) => {
|
|
7106
|
+
SvgIconFields2["id"] = "id";
|
|
7107
|
+
SvgIconFields2["name"] = "name";
|
|
7108
|
+
SvgIconFields2["title"] = "title";
|
|
7109
|
+
SvgIconFields2["code"] = "code";
|
|
7110
|
+
SvgIconFields2["description"] = "description";
|
|
7111
|
+
SvgIconFields2["createdAt"] = "createdAt";
|
|
7112
|
+
SvgIconFields2["updatedAt"] = "updatedAt";
|
|
7113
|
+
return SvgIconFields2;
|
|
7114
|
+
})(SvgIconFields || {});
|
|
7115
|
+
var SvgIconAssciations = /* @__PURE__ */ ((SvgIconAssciations2) => {
|
|
7116
|
+
SvgIconAssciations2["website"] = "website";
|
|
7117
|
+
return SvgIconAssciations2;
|
|
7118
|
+
})(SvgIconAssciations || {});
|
|
7024
7119
|
export {
|
|
7025
7120
|
AbilityAssciations,
|
|
7026
7121
|
AbilityDistinctEnum,
|
|
@@ -7220,6 +7315,12 @@ export {
|
|
|
7220
7315
|
StyleConfigEntityName,
|
|
7221
7316
|
StyleConfigFields,
|
|
7222
7317
|
StyleConfigQueryOptions,
|
|
7318
|
+
SvgIconAssciations,
|
|
7319
|
+
SvgIconDistinctEnum,
|
|
7320
|
+
SvgIconEntityLabel,
|
|
7321
|
+
SvgIconEntityName,
|
|
7322
|
+
SvgIconFields,
|
|
7323
|
+
SvgIconQueryOptions,
|
|
7223
7324
|
TagAssciations,
|
|
7224
7325
|
TagDistinctEnum,
|
|
7225
7326
|
TagEntityLabel,
|
|
@@ -7417,6 +7518,9 @@ export {
|
|
|
7417
7518
|
styleConfigEntry,
|
|
7418
7519
|
styleConfigToInput,
|
|
7419
7520
|
styleConfigToInputCascade,
|
|
7521
|
+
svgIconEntry,
|
|
7522
|
+
svgIconToInput,
|
|
7523
|
+
svgIconToInputCascade,
|
|
7420
7524
|
tagEntry,
|
|
7421
7525
|
tagToInput,
|
|
7422
7526
|
tagToInputCascade,
|