@rxdrag/rxcms-models 0.3.95 → 0.3.96
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/MediaQueryOptions.d.ts +0 -5
- package/dist/classes/ThemeBranchQueryOptions.d.ts +10 -10
- package/dist/classes/ThemeFileFolderQueryOptions.d.ts +21 -0
- package/dist/classes/ThemeFileQueryOptions.d.ts +22 -0
- package/dist/classes/index.d.ts +2 -2
- package/dist/entries/index.d.ts +2 -2
- package/dist/entries/themeFileEntry.d.ts +2 -0
- package/dist/entries/themeFileFolderEntry.d.ts +2 -0
- package/dist/fields/MediaFields.d.ts +0 -2
- package/dist/fields/ThemeBranchFields.d.ts +4 -4
- package/dist/fields/ThemeFileFields.d.ts +16 -0
- package/dist/fields/ThemeFileFolderFields.d.ts +14 -0
- package/dist/fields/index.d.ts +2 -2
- package/dist/index.mjs +234 -226
- package/dist/index.mjs.map +1 -1
- 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/ThemeBranch.d.ts +6 -6
- package/dist/interfaces/ThemeBranchBoolExp.d.ts +4 -4
- package/dist/interfaces/ThemeBranchInput.d.ts +4 -4
- package/dist/interfaces/ThemeFile.d.ts +19 -0
- package/dist/interfaces/{TemplateCategoryBoolExp.d.ts → ThemeFileBoolExp.d.ts} +14 -11
- package/dist/interfaces/ThemeFileDistinctExp.d.ts +13 -0
- package/dist/interfaces/ThemeFileFolder.d.ts +17 -0
- package/dist/interfaces/ThemeFileFolderBoolExp.d.ts +18 -0
- package/dist/interfaces/ThemeFileFolderDistinctExp.d.ts +7 -0
- package/dist/interfaces/ThemeFileFolderInput.d.ts +17 -0
- package/dist/interfaces/ThemeFileFolderOrderBy.d.ts +7 -0
- package/dist/interfaces/ThemeFileInput.d.ts +21 -0
- package/dist/interfaces/ThemeFileOrderBy.d.ts +13 -0
- package/dist/interfaces/index.d.ts +10 -10
- package/package.json +1 -1
- package/dist/classes/SectionTemplateQueryOptions.d.ts +0 -22
- package/dist/classes/TemplateCategoryQueryOptions.d.ts +0 -20
- package/dist/entries/sectionTemplateEntry.d.ts +0 -2
- package/dist/entries/templateCategoryEntry.d.ts +0 -2
- package/dist/fields/SectionTemplateFields.d.ts +0 -14
- package/dist/fields/TemplateCategoryFields.d.ts +0 -13
- package/dist/interfaces/SectionTemplate.d.ts +0 -17
- package/dist/interfaces/SectionTemplateBoolExp.d.ts +0 -22
- package/dist/interfaces/SectionTemplateDistinctExp.d.ts +0 -10
- package/dist/interfaces/SectionTemplateInput.d.ts +0 -19
- package/dist/interfaces/SectionTemplateOrderBy.d.ts +0 -10
- package/dist/interfaces/TemplateCategory.d.ts +0 -16
- package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +0 -9
- package/dist/interfaces/TemplateCategoryInput.d.ts +0 -17
- package/dist/interfaces/TemplateCategoryOrderBy.d.ts +0 -9
package/dist/index.mjs
CHANGED
|
@@ -28,8 +28,7 @@ const aggregateEntities = {
|
|
|
28
28
|
pageMetaAggregate: "PageMeta",
|
|
29
29
|
searchIndexAggregate: "SearchIndex",
|
|
30
30
|
snapshotAggregate: "WebsiteSnapshot",
|
|
31
|
-
coverOfComponentAggregate: "FrontComponent"
|
|
32
|
-
coverOfSectionTemplateAggregate: "SectionTemplate"
|
|
31
|
+
coverOfComponentAggregate: "FrontComponent"
|
|
33
32
|
},
|
|
34
33
|
Website: {
|
|
35
34
|
usersAggregate: "User",
|
|
@@ -89,8 +88,8 @@ const aggregateEntities = {
|
|
|
89
88
|
componentsAggregate: "FrontComponent",
|
|
90
89
|
componentCategoriesAggregate: "ComponentCategory",
|
|
91
90
|
pagesAggregate: "Page",
|
|
92
|
-
|
|
93
|
-
|
|
91
|
+
filesAggregate: "ThemeFile",
|
|
92
|
+
foldersAggregate: "ThemeFileFolder"
|
|
94
93
|
},
|
|
95
94
|
MediaFolder: {
|
|
96
95
|
childrenAggregate: "MediaFolder",
|
|
@@ -120,14 +119,15 @@ const aggregateEntities = {
|
|
|
120
119
|
ThemeCategory: {
|
|
121
120
|
themesAggregate: "Theme"
|
|
122
121
|
},
|
|
123
|
-
TemplateCategory: {
|
|
124
|
-
templatesAggregate: "SectionTemplate"
|
|
125
|
-
},
|
|
126
122
|
WebsiteSnapshot: {
|
|
127
123
|
mediasAggregate: "Media"
|
|
128
124
|
},
|
|
129
125
|
Theme: {
|
|
130
126
|
branchesAggregate: "ThemeBranch"
|
|
127
|
+
},
|
|
128
|
+
ThemeFileFolder: {
|
|
129
|
+
foldersAggregate: "ThemeFileFolder",
|
|
130
|
+
filesAggregate: "ThemeFile"
|
|
131
131
|
}
|
|
132
132
|
};
|
|
133
133
|
class QueryOptions {
|
|
@@ -405,49 +405,53 @@ const themeConfigToInput = (entity) => {
|
|
|
405
405
|
theme: convertHasOneToInput(entity.theme)
|
|
406
406
|
};
|
|
407
407
|
};
|
|
408
|
-
const
|
|
409
|
-
var _a;
|
|
410
|
-
const { templatesAggregate, ...rest } = entity;
|
|
408
|
+
const styleConfigToInputCascade = (entity) => {
|
|
411
409
|
return {
|
|
412
|
-
...
|
|
413
|
-
templates: entity.templates ? processHasManyClear({ sync: (_a = entity.templates) == null ? void 0 : _a.map((ent) => sectionTemplateToInput(ent)) }) : void 0,
|
|
410
|
+
...entity,
|
|
414
411
|
theme: entity.theme ? processHasOneClear({ sync: themeBranchToInput(entity.theme) }) : void 0
|
|
415
412
|
};
|
|
416
413
|
};
|
|
417
|
-
const
|
|
418
|
-
const { templatesAggregate, ...rest } = entity;
|
|
414
|
+
const styleConfigToInput = (entity) => {
|
|
419
415
|
return {
|
|
420
|
-
...
|
|
421
|
-
templates: convertHasManyToInput(entity.templates),
|
|
416
|
+
...entity,
|
|
422
417
|
theme: convertHasOneToInput(entity.theme)
|
|
423
418
|
};
|
|
424
419
|
};
|
|
425
|
-
const
|
|
420
|
+
const themeFileFolderToInputCascade = (entity) => {
|
|
421
|
+
var _a, _b;
|
|
422
|
+
const { foldersAggregate, filesAggregate, ...rest } = entity;
|
|
426
423
|
return {
|
|
427
|
-
...
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
424
|
+
...rest,
|
|
425
|
+
folders: entity.folders ? processHasManyClear({ sync: (_a = entity.folders) == null ? void 0 : _a.map((ent) => themeFileFolderToInput(ent)) }) : void 0,
|
|
426
|
+
files: entity.files ? processHasManyClear({ sync: (_b = entity.files) == null ? void 0 : _b.map((ent) => themeFileToInput(ent)) }) : void 0,
|
|
427
|
+
themeBranch: entity.themeBranch ? processHasOneClear({ sync: themeBranchToInput(entity.themeBranch) }) : void 0,
|
|
428
|
+
parent: entity.parent ? processHasOneClear({ sync: themeFileFolderToInput(entity.parent) }) : void 0
|
|
431
429
|
};
|
|
432
430
|
};
|
|
433
|
-
const
|
|
431
|
+
const themeFileFolderToInput = (entity) => {
|
|
432
|
+
const { foldersAggregate, filesAggregate, ...rest } = entity;
|
|
434
433
|
return {
|
|
435
|
-
...
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
434
|
+
...rest,
|
|
435
|
+
folders: convertHasManyToInput(entity.folders),
|
|
436
|
+
files: convertHasManyToInput(entity.files),
|
|
437
|
+
themeBranch: convertHasOneToInput(entity.themeBranch),
|
|
438
|
+
parent: convertHasOneToInput(entity.parent)
|
|
439
439
|
};
|
|
440
440
|
};
|
|
441
|
-
const
|
|
441
|
+
const themeFileToInputCascade = (entity) => {
|
|
442
|
+
const { storageMeta, ...rest } = entity;
|
|
442
443
|
return {
|
|
443
|
-
...
|
|
444
|
-
|
|
444
|
+
...rest,
|
|
445
|
+
themeBranch: entity.themeBranch ? processHasOneClear({ sync: themeBranchToInput(entity.themeBranch) }) : void 0,
|
|
446
|
+
folder: entity.folder ? processHasOneClear({ sync: themeFileFolderToInput(entity.folder) }) : void 0
|
|
445
447
|
};
|
|
446
448
|
};
|
|
447
|
-
const
|
|
449
|
+
const themeFileToInput = (entity) => {
|
|
450
|
+
const { storageMeta, ...rest } = entity;
|
|
448
451
|
return {
|
|
449
|
-
...
|
|
450
|
-
|
|
452
|
+
...rest,
|
|
453
|
+
themeBranch: convertHasOneToInput(entity.themeBranch),
|
|
454
|
+
folder: convertHasOneToInput(entity.folder)
|
|
451
455
|
};
|
|
452
456
|
};
|
|
453
457
|
const themeInMarketToInputCascade = (entity) => {
|
|
@@ -515,7 +519,7 @@ const themeToInput = (entity) => {
|
|
|
515
519
|
};
|
|
516
520
|
const themeBranchToInputCascade = (entity) => {
|
|
517
521
|
var _a, _b, _c, _d, _e;
|
|
518
|
-
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate,
|
|
522
|
+
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate, filesAggregate, foldersAggregate, ...rest } = entity;
|
|
519
523
|
return {
|
|
520
524
|
...rest,
|
|
521
525
|
components: entity.components ? processHasManyClear({ sync: (_a = entity.components) == null ? void 0 : _a.map((ent) => frontComponentToInput(ent)) }) : void 0,
|
|
@@ -523,17 +527,17 @@ const themeBranchToInputCascade = (entity) => {
|
|
|
523
527
|
pages: entity.pages ? processHasManyClear({ sync: (_c = entity.pages) == null ? void 0 : _c.map((ent) => pageToInput(ent)) }) : void 0,
|
|
524
528
|
lang: entity.lang ? processHasOneClear({ sync: langToInput(entity.lang) }) : void 0,
|
|
525
529
|
config: entity.config ? processHasOneClear({ sync: themeConfigToInput(entity.config) }) : void 0,
|
|
526
|
-
templates: entity.templates ? processHasManyClear({ sync: (_d = entity.templates) == null ? void 0 : _d.map((ent) => sectionTemplateToInput(ent)) }) : void 0,
|
|
527
|
-
templateCategories: entity.templateCategories ? processHasManyClear({ sync: (_e = entity.templateCategories) == null ? void 0 : _e.map((ent) => templateCategoryToInput(ent)) }) : void 0,
|
|
528
530
|
styleConfig: entity.styleConfig ? processHasOneClear({ sync: styleConfigToInput(entity.styleConfig) }) : void 0,
|
|
529
531
|
mockWebsite: entity.mockWebsite ? processHasOneClear({ sync: websiteToInput(entity.mockWebsite) }) : void 0,
|
|
532
|
+
files: entity.files ? processHasManyClear({ sync: (_d = entity.files) == null ? void 0 : _d.map((ent) => themeFileToInput(ent)) }) : void 0,
|
|
533
|
+
folders: entity.folders ? processHasManyClear({ sync: (_e = entity.folders) == null ? void 0 : _e.map((ent) => themeFileFolderToInput(ent)) }) : void 0,
|
|
530
534
|
marketVersion: entity.marketVersion ? processHasOneClear({ sync: themeVersionToInput(entity.marketVersion) }) : void 0,
|
|
531
535
|
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
|
|
532
536
|
belongsToMain: entity.belongsToMain ? processHasOneClear({ sync: themeToInput(entity.belongsToMain) }) : void 0
|
|
533
537
|
};
|
|
534
538
|
};
|
|
535
539
|
const themeBranchToInput = (entity) => {
|
|
536
|
-
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate,
|
|
540
|
+
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate, filesAggregate, foldersAggregate, ...rest } = entity;
|
|
537
541
|
return {
|
|
538
542
|
...rest,
|
|
539
543
|
components: convertHasManyToInput(entity.components),
|
|
@@ -541,10 +545,10 @@ const themeBranchToInput = (entity) => {
|
|
|
541
545
|
pages: convertHasManyToInput(entity.pages),
|
|
542
546
|
lang: convertHasOneToInput(entity.lang),
|
|
543
547
|
config: convertHasOneToInput(entity.config),
|
|
544
|
-
templates: convertHasManyToInput(entity.templates),
|
|
545
|
-
templateCategories: convertHasManyToInput(entity.templateCategories),
|
|
546
548
|
styleConfig: convertHasOneToInput(entity.styleConfig),
|
|
547
549
|
mockWebsite: convertHasOneToInput(entity.mockWebsite),
|
|
550
|
+
files: convertHasManyToInput(entity.files),
|
|
551
|
+
folders: convertHasManyToInput(entity.folders),
|
|
548
552
|
marketVersion: convertHasOneToInput(entity.marketVersion),
|
|
549
553
|
website: convertHasOneToInput(entity.website),
|
|
550
554
|
belongsToMain: convertHasOneToInput(entity.belongsToMain)
|
|
@@ -1033,8 +1037,8 @@ const mediaFolderToInput = (entity) => {
|
|
|
1033
1037
|
};
|
|
1034
1038
|
};
|
|
1035
1039
|
const mediaToInputCascade = (entity) => {
|
|
1036
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i
|
|
1037
|
-
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, snapshotAggregate, coverOfComponentAggregate,
|
|
1040
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i;
|
|
1041
|
+
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, snapshotAggregate, coverOfComponentAggregate, ...rest } = entity;
|
|
1038
1042
|
return {
|
|
1039
1043
|
...rest,
|
|
1040
1044
|
folder: entity.folder ? processHasOneClear({ sync: mediaFolderToInput(entity.folder) }) : void 0,
|
|
@@ -1051,14 +1055,13 @@ const mediaToInputCascade = (entity) => {
|
|
|
1051
1055
|
searchIndex: entity.searchIndex ? processHasManyClear({ sync: (_g = entity.searchIndex) == null ? void 0 : _g.map((ent) => searchIndexToInput(ent)) }) : void 0,
|
|
1052
1056
|
snapshot: entity.snapshot ? processHasManyClear({ sync: (_h = entity.snapshot) == null ? void 0 : _h.map((ent) => websiteSnapshotToInput(ent)) }) : void 0,
|
|
1053
1057
|
coverOfComponent: entity.coverOfComponent ? processHasManyClear({ sync: (_i = entity.coverOfComponent) == null ? void 0 : _i.map((ent) => frontComponentToInput(ent)) }) : void 0,
|
|
1054
|
-
coverOfSectionTemplate: entity.coverOfSectionTemplate ? processHasManyClear({ sync: (_j = entity.coverOfSectionTemplate) == null ? void 0 : _j.map((ent) => sectionTemplateToInput(ent)) }) : void 0,
|
|
1055
1058
|
attachmentOfEnquiry: entity.attachmentOfEnquiry ? processHasOneClear({ sync: enquiryToInput(entity.attachmentOfEnquiry) }) : void 0,
|
|
1056
1059
|
coverOfTheme: entity.coverOfTheme ? processHasOneClear({ sync: themeToInput(entity.coverOfTheme) }) : void 0,
|
|
1057
1060
|
owner: entity.owner ? processHasOneClear({ sync: userToInput(entity.owner) }) : void 0
|
|
1058
1061
|
};
|
|
1059
1062
|
};
|
|
1060
1063
|
const mediaToInput = (entity) => {
|
|
1061
|
-
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, snapshotAggregate, coverOfComponentAggregate,
|
|
1064
|
+
const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, snapshotAggregate, coverOfComponentAggregate, ...rest } = entity;
|
|
1062
1065
|
return {
|
|
1063
1066
|
...rest,
|
|
1064
1067
|
folder: convertHasOneToInput(entity.folder),
|
|
@@ -1075,7 +1078,6 @@ const mediaToInput = (entity) => {
|
|
|
1075
1078
|
searchIndex: convertHasManyToInput(entity.searchIndex),
|
|
1076
1079
|
snapshot: convertHasManyToInput(entity.snapshot),
|
|
1077
1080
|
coverOfComponent: convertHasManyToInput(entity.coverOfComponent),
|
|
1078
|
-
coverOfSectionTemplate: convertHasManyToInput(entity.coverOfSectionTemplate),
|
|
1079
1081
|
attachmentOfEnquiry: convertHasOneToInput(entity.attachmentOfEnquiry),
|
|
1080
1082
|
coverOfTheme: convertHasOneToInput(entity.coverOfTheme),
|
|
1081
1083
|
owner: convertHasOneToInput(entity.owner)
|
|
@@ -1762,18 +1764,6 @@ var PageMetaDistinctEnum = /* @__PURE__ */ ((PageMetaDistinctEnum2) => {
|
|
|
1762
1764
|
PageMetaDistinctEnum2["xUrl"] = "xUrl";
|
|
1763
1765
|
return PageMetaDistinctEnum2;
|
|
1764
1766
|
})(PageMetaDistinctEnum || {});
|
|
1765
|
-
const SectionTemplateEntityName = "SectionTemplate";
|
|
1766
|
-
const SectionTemplateEntityLabel = "";
|
|
1767
|
-
var SectionTemplateDistinctEnum = /* @__PURE__ */ ((SectionTemplateDistinctEnum2) => {
|
|
1768
|
-
SectionTemplateDistinctEnum2["id"] = "id";
|
|
1769
|
-
SectionTemplateDistinctEnum2["title"] = "title";
|
|
1770
|
-
SectionTemplateDistinctEnum2["code"] = "code";
|
|
1771
|
-
SectionTemplateDistinctEnum2["description"] = "description";
|
|
1772
|
-
SectionTemplateDistinctEnum2["seqValue"] = "seqValue";
|
|
1773
|
-
SectionTemplateDistinctEnum2["createdAt"] = "createdAt";
|
|
1774
|
-
SectionTemplateDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1775
|
-
return SectionTemplateDistinctEnum2;
|
|
1776
|
-
})(SectionTemplateDistinctEnum || {});
|
|
1777
1767
|
const ThemeCategoryEntityName = "ThemeCategory";
|
|
1778
1768
|
const ThemeCategoryEntityLabel = "";
|
|
1779
1769
|
var ThemeCategoryDistinctEnum = /* @__PURE__ */ ((ThemeCategoryDistinctEnum2) => {
|
|
@@ -1785,17 +1775,6 @@ var ThemeCategoryDistinctEnum = /* @__PURE__ */ ((ThemeCategoryDistinctEnum2) =>
|
|
|
1785
1775
|
ThemeCategoryDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1786
1776
|
return ThemeCategoryDistinctEnum2;
|
|
1787
1777
|
})(ThemeCategoryDistinctEnum || {});
|
|
1788
|
-
const TemplateCategoryEntityName = "TemplateCategory";
|
|
1789
|
-
const TemplateCategoryEntityLabel = "";
|
|
1790
|
-
var TemplateCategoryDistinctEnum = /* @__PURE__ */ ((TemplateCategoryDistinctEnum2) => {
|
|
1791
|
-
TemplateCategoryDistinctEnum2["id"] = "id";
|
|
1792
|
-
TemplateCategoryDistinctEnum2["name"] = "name";
|
|
1793
|
-
TemplateCategoryDistinctEnum2["description"] = "description";
|
|
1794
|
-
TemplateCategoryDistinctEnum2["seqValue"] = "seqValue";
|
|
1795
|
-
TemplateCategoryDistinctEnum2["createdAt"] = "createdAt";
|
|
1796
|
-
TemplateCategoryDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1797
|
-
return TemplateCategoryDistinctEnum2;
|
|
1798
|
-
})(TemplateCategoryDistinctEnum || {});
|
|
1799
1778
|
const StyleConfigEntityName = "StyleConfig";
|
|
1800
1779
|
const StyleConfigEntityLabel = "";
|
|
1801
1780
|
var StyleConfigDistinctEnum = /* @__PURE__ */ ((StyleConfigDistinctEnum2) => {
|
|
@@ -2065,6 +2044,30 @@ var SvgIconDistinctEnum = /* @__PURE__ */ ((SvgIconDistinctEnum2) => {
|
|
|
2065
2044
|
SvgIconDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2066
2045
|
return SvgIconDistinctEnum2;
|
|
2067
2046
|
})(SvgIconDistinctEnum || {});
|
|
2047
|
+
const ThemeFileEntityName = "ThemeFile";
|
|
2048
|
+
const ThemeFileEntityLabel = "";
|
|
2049
|
+
var ThemeFileDistinctEnum = /* @__PURE__ */ ((ThemeFileDistinctEnum2) => {
|
|
2050
|
+
ThemeFileDistinctEnum2["id"] = "id";
|
|
2051
|
+
ThemeFileDistinctEnum2["name"] = "name";
|
|
2052
|
+
ThemeFileDistinctEnum2["code"] = "code";
|
|
2053
|
+
ThemeFileDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2054
|
+
ThemeFileDistinctEnum2["createdAt"] = "createdAt";
|
|
2055
|
+
ThemeFileDistinctEnum2["storageMeta"] = "storageMeta";
|
|
2056
|
+
ThemeFileDistinctEnum2["size"] = "size";
|
|
2057
|
+
ThemeFileDistinctEnum2["mimelype"] = "mimelype";
|
|
2058
|
+
ThemeFileDistinctEnum2["extName"] = "extName";
|
|
2059
|
+
ThemeFileDistinctEnum2["mediaType"] = "mediaType";
|
|
2060
|
+
return ThemeFileDistinctEnum2;
|
|
2061
|
+
})(ThemeFileDistinctEnum || {});
|
|
2062
|
+
const ThemeFileFolderEntityName = "ThemeFileFolder";
|
|
2063
|
+
const ThemeFileFolderEntityLabel = "";
|
|
2064
|
+
var ThemeFileFolderDistinctEnum = /* @__PURE__ */ ((ThemeFileFolderDistinctEnum2) => {
|
|
2065
|
+
ThemeFileFolderDistinctEnum2["id"] = "id";
|
|
2066
|
+
ThemeFileFolderDistinctEnum2["name"] = "name";
|
|
2067
|
+
ThemeFileFolderDistinctEnum2["upadteAt"] = "upadteAt";
|
|
2068
|
+
ThemeFileFolderDistinctEnum2["createdAt"] = "createdAt";
|
|
2069
|
+
return ThemeFileFolderDistinctEnum2;
|
|
2070
|
+
})(ThemeFileFolderDistinctEnum || {});
|
|
2068
2071
|
class RoleVariableQueryOptions extends QueryOptions {
|
|
2069
2072
|
constructor(fields, queryArgs) {
|
|
2070
2073
|
super(RoleVariableEntityName, fields, queryArgs);
|
|
@@ -2559,9 +2562,9 @@ class ThemeConfigQueryOptions extends QueryOptions {
|
|
|
2559
2562
|
return this;
|
|
2560
2563
|
}
|
|
2561
2564
|
}
|
|
2562
|
-
class
|
|
2565
|
+
class StyleConfigQueryOptions extends QueryOptions {
|
|
2563
2566
|
constructor(fields, queryArgs) {
|
|
2564
|
-
super(
|
|
2567
|
+
super(StyleConfigEntityName, fields, queryArgs);
|
|
2565
2568
|
}
|
|
2566
2569
|
id() {
|
|
2567
2570
|
this.addField("id");
|
|
@@ -2575,8 +2578,20 @@ class TemplateCategoryQueryOptions extends QueryOptions {
|
|
|
2575
2578
|
this.addField("description");
|
|
2576
2579
|
return this;
|
|
2577
2580
|
}
|
|
2578
|
-
|
|
2579
|
-
this.addField("
|
|
2581
|
+
tailwindConfig() {
|
|
2582
|
+
this.addField("tailwindConfig");
|
|
2583
|
+
return this;
|
|
2584
|
+
}
|
|
2585
|
+
css() {
|
|
2586
|
+
this.addField("css");
|
|
2587
|
+
return this;
|
|
2588
|
+
}
|
|
2589
|
+
cssVariants() {
|
|
2590
|
+
this.addField("cssVariants");
|
|
2591
|
+
return this;
|
|
2592
|
+
}
|
|
2593
|
+
isInMarket() {
|
|
2594
|
+
this.addField("isInMarket");
|
|
2580
2595
|
return this;
|
|
2581
2596
|
}
|
|
2582
2597
|
createdAt() {
|
|
@@ -2587,16 +2602,16 @@ class TemplateCategoryQueryOptions extends QueryOptions {
|
|
|
2587
2602
|
this.addField("updatedAt");
|
|
2588
2603
|
return this;
|
|
2589
2604
|
}
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
this._associations["templates"] = new SectionTemplateQueryOptions(options);
|
|
2593
|
-
} else {
|
|
2594
|
-
this._associations["templates"] = options || new SectionTemplateQueryOptions(["id"]);
|
|
2595
|
-
}
|
|
2605
|
+
headCode() {
|
|
2606
|
+
this.addField("headCode");
|
|
2596
2607
|
return this;
|
|
2597
2608
|
}
|
|
2598
|
-
|
|
2599
|
-
this.
|
|
2609
|
+
footCode() {
|
|
2610
|
+
this.addField("footCode");
|
|
2611
|
+
return this;
|
|
2612
|
+
}
|
|
2613
|
+
imageSizes() {
|
|
2614
|
+
this.addField("imageSizes");
|
|
2600
2615
|
return this;
|
|
2601
2616
|
}
|
|
2602
2617
|
theme(options) {
|
|
@@ -2608,66 +2623,70 @@ class TemplateCategoryQueryOptions extends QueryOptions {
|
|
|
2608
2623
|
return this;
|
|
2609
2624
|
}
|
|
2610
2625
|
}
|
|
2611
|
-
class
|
|
2626
|
+
class ThemeFileFolderQueryOptions extends QueryOptions {
|
|
2612
2627
|
constructor(fields, queryArgs) {
|
|
2613
|
-
super(
|
|
2628
|
+
super(ThemeFileFolderEntityName, fields, queryArgs);
|
|
2614
2629
|
}
|
|
2615
2630
|
id() {
|
|
2616
2631
|
this.addField("id");
|
|
2617
2632
|
return this;
|
|
2618
2633
|
}
|
|
2619
|
-
|
|
2620
|
-
this.addField("
|
|
2621
|
-
return this;
|
|
2622
|
-
}
|
|
2623
|
-
code() {
|
|
2624
|
-
this.addField("code");
|
|
2625
|
-
return this;
|
|
2626
|
-
}
|
|
2627
|
-
description() {
|
|
2628
|
-
this.addField("description");
|
|
2634
|
+
name() {
|
|
2635
|
+
this.addField("name");
|
|
2629
2636
|
return this;
|
|
2630
2637
|
}
|
|
2631
|
-
|
|
2632
|
-
this.addField("
|
|
2638
|
+
upadteAt() {
|
|
2639
|
+
this.addField("upadteAt");
|
|
2633
2640
|
return this;
|
|
2634
2641
|
}
|
|
2635
2642
|
createdAt() {
|
|
2636
2643
|
this.addField("createdAt");
|
|
2637
2644
|
return this;
|
|
2638
2645
|
}
|
|
2639
|
-
|
|
2640
|
-
|
|
2646
|
+
folders(options) {
|
|
2647
|
+
if (Array.isArray(options)) {
|
|
2648
|
+
this._associations["folders"] = new ThemeFileFolderQueryOptions(options);
|
|
2649
|
+
} else {
|
|
2650
|
+
this._associations["folders"] = options || new ThemeFileFolderQueryOptions(["id"]);
|
|
2651
|
+
}
|
|
2641
2652
|
return this;
|
|
2642
2653
|
}
|
|
2643
|
-
|
|
2654
|
+
foldersAggregate(aggregate) {
|
|
2655
|
+
this._aggregates["foldersAggregate"] = aggregate;
|
|
2656
|
+
return this;
|
|
2657
|
+
}
|
|
2658
|
+
files(options) {
|
|
2644
2659
|
if (Array.isArray(options)) {
|
|
2645
|
-
this._associations["
|
|
2660
|
+
this._associations["files"] = new ThemeFileQueryOptions(options);
|
|
2646
2661
|
} else {
|
|
2647
|
-
this._associations["
|
|
2662
|
+
this._associations["files"] = options || new ThemeFileQueryOptions(["id"]);
|
|
2648
2663
|
}
|
|
2649
2664
|
return this;
|
|
2650
2665
|
}
|
|
2651
|
-
|
|
2666
|
+
filesAggregate(aggregate) {
|
|
2667
|
+
this._aggregates["filesAggregate"] = aggregate;
|
|
2668
|
+
return this;
|
|
2669
|
+
}
|
|
2670
|
+
themeBranch(options) {
|
|
2652
2671
|
if (Array.isArray(options)) {
|
|
2653
|
-
this._associations["
|
|
2672
|
+
this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
|
|
2654
2673
|
} else {
|
|
2655
|
-
this._associations["
|
|
2674
|
+
this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
|
|
2656
2675
|
}
|
|
2657
2676
|
return this;
|
|
2658
2677
|
}
|
|
2659
|
-
|
|
2678
|
+
parent(options) {
|
|
2660
2679
|
if (Array.isArray(options)) {
|
|
2661
|
-
this._associations["
|
|
2680
|
+
this._associations["parent"] = new ThemeFileFolderQueryOptions(options);
|
|
2662
2681
|
} else {
|
|
2663
|
-
this._associations["
|
|
2682
|
+
this._associations["parent"] = options || new ThemeFileFolderQueryOptions(["id"]);
|
|
2664
2683
|
}
|
|
2665
2684
|
return this;
|
|
2666
2685
|
}
|
|
2667
2686
|
}
|
|
2668
|
-
class
|
|
2687
|
+
class ThemeFileQueryOptions extends QueryOptions {
|
|
2669
2688
|
constructor(fields, queryArgs) {
|
|
2670
|
-
super(
|
|
2689
|
+
super(ThemeFileEntityName, fields, queryArgs);
|
|
2671
2690
|
}
|
|
2672
2691
|
id() {
|
|
2673
2692
|
this.addField("id");
|
|
@@ -2677,51 +2696,51 @@ class StyleConfigQueryOptions extends QueryOptions {
|
|
|
2677
2696
|
this.addField("name");
|
|
2678
2697
|
return this;
|
|
2679
2698
|
}
|
|
2680
|
-
|
|
2681
|
-
this.addField("
|
|
2682
|
-
return this;
|
|
2683
|
-
}
|
|
2684
|
-
tailwindConfig() {
|
|
2685
|
-
this.addField("tailwindConfig");
|
|
2699
|
+
code() {
|
|
2700
|
+
this.addField("code");
|
|
2686
2701
|
return this;
|
|
2687
2702
|
}
|
|
2688
|
-
|
|
2689
|
-
this.addField("
|
|
2703
|
+
updatedAt() {
|
|
2704
|
+
this.addField("updatedAt");
|
|
2690
2705
|
return this;
|
|
2691
2706
|
}
|
|
2692
|
-
|
|
2693
|
-
this.addField("
|
|
2707
|
+
createdAt() {
|
|
2708
|
+
this.addField("createdAt");
|
|
2694
2709
|
return this;
|
|
2695
2710
|
}
|
|
2696
|
-
|
|
2697
|
-
this.
|
|
2711
|
+
storageMeta(fields) {
|
|
2712
|
+
this.addObjectField("storageMeta", fields);
|
|
2698
2713
|
return this;
|
|
2699
2714
|
}
|
|
2700
|
-
|
|
2701
|
-
this.addField("
|
|
2715
|
+
size() {
|
|
2716
|
+
this.addField("size");
|
|
2702
2717
|
return this;
|
|
2703
2718
|
}
|
|
2704
|
-
|
|
2705
|
-
this.addField("
|
|
2719
|
+
mimelype() {
|
|
2720
|
+
this.addField("mimelype");
|
|
2706
2721
|
return this;
|
|
2707
2722
|
}
|
|
2708
|
-
|
|
2709
|
-
this.addField("
|
|
2723
|
+
extName() {
|
|
2724
|
+
this.addField("extName");
|
|
2710
2725
|
return this;
|
|
2711
2726
|
}
|
|
2712
|
-
|
|
2713
|
-
this.addField("
|
|
2727
|
+
mediaType() {
|
|
2728
|
+
this.addField("mediaType");
|
|
2714
2729
|
return this;
|
|
2715
2730
|
}
|
|
2716
|
-
|
|
2717
|
-
|
|
2731
|
+
themeBranch(options) {
|
|
2732
|
+
if (Array.isArray(options)) {
|
|
2733
|
+
this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
|
|
2734
|
+
} else {
|
|
2735
|
+
this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
|
|
2736
|
+
}
|
|
2718
2737
|
return this;
|
|
2719
2738
|
}
|
|
2720
|
-
|
|
2739
|
+
folder(options) {
|
|
2721
2740
|
if (Array.isArray(options)) {
|
|
2722
|
-
this._associations["
|
|
2741
|
+
this._associations["folder"] = new ThemeFileFolderQueryOptions(options);
|
|
2723
2742
|
} else {
|
|
2724
|
-
this._associations["
|
|
2743
|
+
this._associations["folder"] = options || new ThemeFileFolderQueryOptions(["id"]);
|
|
2725
2744
|
}
|
|
2726
2745
|
return this;
|
|
2727
2746
|
}
|
|
@@ -2989,44 +3008,44 @@ class ThemeBranchQueryOptions extends QueryOptions {
|
|
|
2989
3008
|
}
|
|
2990
3009
|
return this;
|
|
2991
3010
|
}
|
|
2992
|
-
|
|
3011
|
+
styleConfig(options) {
|
|
2993
3012
|
if (Array.isArray(options)) {
|
|
2994
|
-
this._associations["
|
|
3013
|
+
this._associations["styleConfig"] = new StyleConfigQueryOptions(options);
|
|
2995
3014
|
} else {
|
|
2996
|
-
this._associations["
|
|
3015
|
+
this._associations["styleConfig"] = options || new StyleConfigQueryOptions(["id"]);
|
|
2997
3016
|
}
|
|
2998
3017
|
return this;
|
|
2999
3018
|
}
|
|
3000
|
-
|
|
3001
|
-
|
|
3019
|
+
mockWebsite(options) {
|
|
3020
|
+
if (Array.isArray(options)) {
|
|
3021
|
+
this._associations["mockWebsite"] = new WebsiteQueryOptions(options);
|
|
3022
|
+
} else {
|
|
3023
|
+
this._associations["mockWebsite"] = options || new WebsiteQueryOptions(["id"]);
|
|
3024
|
+
}
|
|
3002
3025
|
return this;
|
|
3003
3026
|
}
|
|
3004
|
-
|
|
3027
|
+
files(options) {
|
|
3005
3028
|
if (Array.isArray(options)) {
|
|
3006
|
-
this._associations["
|
|
3029
|
+
this._associations["files"] = new ThemeFileQueryOptions(options);
|
|
3007
3030
|
} else {
|
|
3008
|
-
this._associations["
|
|
3031
|
+
this._associations["files"] = options || new ThemeFileQueryOptions(["id"]);
|
|
3009
3032
|
}
|
|
3010
3033
|
return this;
|
|
3011
3034
|
}
|
|
3012
|
-
|
|
3013
|
-
this._aggregates["
|
|
3035
|
+
filesAggregate(aggregate) {
|
|
3036
|
+
this._aggregates["filesAggregate"] = aggregate;
|
|
3014
3037
|
return this;
|
|
3015
3038
|
}
|
|
3016
|
-
|
|
3039
|
+
folders(options) {
|
|
3017
3040
|
if (Array.isArray(options)) {
|
|
3018
|
-
this._associations["
|
|
3041
|
+
this._associations["folders"] = new ThemeFileFolderQueryOptions(options);
|
|
3019
3042
|
} else {
|
|
3020
|
-
this._associations["
|
|
3043
|
+
this._associations["folders"] = options || new ThemeFileFolderQueryOptions(["id"]);
|
|
3021
3044
|
}
|
|
3022
3045
|
return this;
|
|
3023
3046
|
}
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
this._associations["mockWebsite"] = new WebsiteQueryOptions(options);
|
|
3027
|
-
} else {
|
|
3028
|
-
this._associations["mockWebsite"] = options || new WebsiteQueryOptions(["id"]);
|
|
3029
|
-
}
|
|
3047
|
+
foldersAggregate(aggregate) {
|
|
3048
|
+
this._aggregates["foldersAggregate"] = aggregate;
|
|
3030
3049
|
return this;
|
|
3031
3050
|
}
|
|
3032
3051
|
marketVersion(options) {
|
|
@@ -5348,18 +5367,6 @@ class MediaQueryOptions extends QueryOptions {
|
|
|
5348
5367
|
this._aggregates["coverOfComponentAggregate"] = aggregate;
|
|
5349
5368
|
return this;
|
|
5350
5369
|
}
|
|
5351
|
-
coverOfSectionTemplate(options) {
|
|
5352
|
-
if (Array.isArray(options)) {
|
|
5353
|
-
this._associations["coverOfSectionTemplate"] = new SectionTemplateQueryOptions(options);
|
|
5354
|
-
} else {
|
|
5355
|
-
this._associations["coverOfSectionTemplate"] = options || new SectionTemplateQueryOptions(["id"]);
|
|
5356
|
-
}
|
|
5357
|
-
return this;
|
|
5358
|
-
}
|
|
5359
|
-
coverOfSectionTemplateAggregate(aggregate) {
|
|
5360
|
-
this._aggregates["coverOfSectionTemplateAggregate"] = aggregate;
|
|
5361
|
-
return this;
|
|
5362
|
-
}
|
|
5363
5370
|
attachmentOfEnquiry(options) {
|
|
5364
5371
|
if (Array.isArray(options)) {
|
|
5365
5372
|
this._associations["attachmentOfEnquiry"] = new EnquiryQueryOptions(options);
|
|
@@ -6061,21 +6068,11 @@ const pageMetaEntry = {
|
|
|
6061
6068
|
entityLabel: PageMetaEntityLabel,
|
|
6062
6069
|
toInput: pageMetaToInput
|
|
6063
6070
|
};
|
|
6064
|
-
const sectionTemplateEntry = {
|
|
6065
|
-
entityName: SectionTemplateEntityName,
|
|
6066
|
-
entityLabel: SectionTemplateEntityLabel,
|
|
6067
|
-
toInput: sectionTemplateToInput
|
|
6068
|
-
};
|
|
6069
6071
|
const themeCategoryEntry = {
|
|
6070
6072
|
entityName: ThemeCategoryEntityName,
|
|
6071
6073
|
entityLabel: ThemeCategoryEntityLabel,
|
|
6072
6074
|
toInput: themeCategoryToInput
|
|
6073
6075
|
};
|
|
6074
|
-
const templateCategoryEntry = {
|
|
6075
|
-
entityName: TemplateCategoryEntityName,
|
|
6076
|
-
entityLabel: TemplateCategoryEntityLabel,
|
|
6077
|
-
toInput: templateCategoryToInput
|
|
6078
|
-
};
|
|
6079
6076
|
const styleConfigEntry = {
|
|
6080
6077
|
entityName: StyleConfigEntityName,
|
|
6081
6078
|
entityLabel: StyleConfigEntityLabel,
|
|
@@ -6141,6 +6138,16 @@ const svgIconEntry = {
|
|
|
6141
6138
|
entityLabel: SvgIconEntityLabel,
|
|
6142
6139
|
toInput: svgIconToInput
|
|
6143
6140
|
};
|
|
6141
|
+
const themeFileEntry = {
|
|
6142
|
+
entityName: ThemeFileEntityName,
|
|
6143
|
+
entityLabel: ThemeFileEntityLabel,
|
|
6144
|
+
toInput: themeFileToInput
|
|
6145
|
+
};
|
|
6146
|
+
const themeFileFolderEntry = {
|
|
6147
|
+
entityName: ThemeFileFolderEntityName,
|
|
6148
|
+
entityLabel: ThemeFileFolderEntityLabel,
|
|
6149
|
+
toInput: themeFileFolderToInput
|
|
6150
|
+
};
|
|
6144
6151
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
6145
6152
|
UserFields2["id"] = "id";
|
|
6146
6153
|
UserFields2["loginName"] = "loginName";
|
|
@@ -6264,8 +6271,6 @@ var MediaAssciations = /* @__PURE__ */ ((MediaAssciations2) => {
|
|
|
6264
6271
|
MediaAssciations2["snapshotAggregate"] = "snapshotAggregate";
|
|
6265
6272
|
MediaAssciations2["coverOfComponent"] = "coverOfComponent";
|
|
6266
6273
|
MediaAssciations2["coverOfComponentAggregate"] = "coverOfComponentAggregate";
|
|
6267
|
-
MediaAssciations2["coverOfSectionTemplate"] = "coverOfSectionTemplate";
|
|
6268
|
-
MediaAssciations2["coverOfSectionTemplateAggregate"] = "coverOfSectionTemplateAggregate";
|
|
6269
6274
|
MediaAssciations2["attachmentOfEnquiry"] = "attachmentOfEnquiry";
|
|
6270
6275
|
MediaAssciations2["coverOfTheme"] = "coverOfTheme";
|
|
6271
6276
|
MediaAssciations2["owner"] = "owner";
|
|
@@ -6586,12 +6591,12 @@ var ThemeBranchAssciations = /* @__PURE__ */ ((ThemeBranchAssciations2) => {
|
|
|
6586
6591
|
ThemeBranchAssciations2["pagesAggregate"] = "pagesAggregate";
|
|
6587
6592
|
ThemeBranchAssciations2["lang"] = "lang";
|
|
6588
6593
|
ThemeBranchAssciations2["config"] = "config";
|
|
6589
|
-
ThemeBranchAssciations2["templates"] = "templates";
|
|
6590
|
-
ThemeBranchAssciations2["templatesAggregate"] = "templatesAggregate";
|
|
6591
|
-
ThemeBranchAssciations2["templateCategories"] = "templateCategories";
|
|
6592
|
-
ThemeBranchAssciations2["templateCategoriesAggregate"] = "templateCategoriesAggregate";
|
|
6593
6594
|
ThemeBranchAssciations2["styleConfig"] = "styleConfig";
|
|
6594
6595
|
ThemeBranchAssciations2["mockWebsite"] = "mockWebsite";
|
|
6596
|
+
ThemeBranchAssciations2["files"] = "files";
|
|
6597
|
+
ThemeBranchAssciations2["filesAggregate"] = "filesAggregate";
|
|
6598
|
+
ThemeBranchAssciations2["folders"] = "folders";
|
|
6599
|
+
ThemeBranchAssciations2["foldersAggregate"] = "foldersAggregate";
|
|
6595
6600
|
ThemeBranchAssciations2["marketVersion"] = "marketVersion";
|
|
6596
6601
|
ThemeBranchAssciations2["website"] = "website";
|
|
6597
6602
|
ThemeBranchAssciations2["belongsToMain"] = "belongsToMain";
|
|
@@ -6866,22 +6871,6 @@ var PageMetaAssciations = /* @__PURE__ */ ((PageMetaAssciations2) => {
|
|
|
6866
6871
|
PageMetaAssciations2["post"] = "post";
|
|
6867
6872
|
return PageMetaAssciations2;
|
|
6868
6873
|
})(PageMetaAssciations || {});
|
|
6869
|
-
var SectionTemplateFields = /* @__PURE__ */ ((SectionTemplateFields2) => {
|
|
6870
|
-
SectionTemplateFields2["id"] = "id";
|
|
6871
|
-
SectionTemplateFields2["title"] = "title";
|
|
6872
|
-
SectionTemplateFields2["code"] = "code";
|
|
6873
|
-
SectionTemplateFields2["description"] = "description";
|
|
6874
|
-
SectionTemplateFields2["seqValue"] = "seqValue";
|
|
6875
|
-
SectionTemplateFields2["createdAt"] = "createdAt";
|
|
6876
|
-
SectionTemplateFields2["updatedAt"] = "updatedAt";
|
|
6877
|
-
return SectionTemplateFields2;
|
|
6878
|
-
})(SectionTemplateFields || {});
|
|
6879
|
-
var SectionTemplateAssciations = /* @__PURE__ */ ((SectionTemplateAssciations2) => {
|
|
6880
|
-
SectionTemplateAssciations2["cover"] = "cover";
|
|
6881
|
-
SectionTemplateAssciations2["category"] = "category";
|
|
6882
|
-
SectionTemplateAssciations2["theme"] = "theme";
|
|
6883
|
-
return SectionTemplateAssciations2;
|
|
6884
|
-
})(SectionTemplateAssciations || {});
|
|
6885
6874
|
var ThemeCategoryFields = /* @__PURE__ */ ((ThemeCategoryFields2) => {
|
|
6886
6875
|
ThemeCategoryFields2["id"] = "id";
|
|
6887
6876
|
ThemeCategoryFields2["name"] = "name";
|
|
@@ -6896,21 +6885,6 @@ var ThemeCategoryAssciations = /* @__PURE__ */ ((ThemeCategoryAssciations2) => {
|
|
|
6896
6885
|
ThemeCategoryAssciations2["themesAggregate"] = "themesAggregate";
|
|
6897
6886
|
return ThemeCategoryAssciations2;
|
|
6898
6887
|
})(ThemeCategoryAssciations || {});
|
|
6899
|
-
var TemplateCategoryFields = /* @__PURE__ */ ((TemplateCategoryFields2) => {
|
|
6900
|
-
TemplateCategoryFields2["id"] = "id";
|
|
6901
|
-
TemplateCategoryFields2["name"] = "name";
|
|
6902
|
-
TemplateCategoryFields2["description"] = "description";
|
|
6903
|
-
TemplateCategoryFields2["seqValue"] = "seqValue";
|
|
6904
|
-
TemplateCategoryFields2["createdAt"] = "createdAt";
|
|
6905
|
-
TemplateCategoryFields2["updatedAt"] = "updatedAt";
|
|
6906
|
-
return TemplateCategoryFields2;
|
|
6907
|
-
})(TemplateCategoryFields || {});
|
|
6908
|
-
var TemplateCategoryAssciations = /* @__PURE__ */ ((TemplateCategoryAssciations2) => {
|
|
6909
|
-
TemplateCategoryAssciations2["templates"] = "templates";
|
|
6910
|
-
TemplateCategoryAssciations2["templatesAggregate"] = "templatesAggregate";
|
|
6911
|
-
TemplateCategoryAssciations2["theme"] = "theme";
|
|
6912
|
-
return TemplateCategoryAssciations2;
|
|
6913
|
-
})(TemplateCategoryAssciations || {});
|
|
6914
6888
|
var StyleConfigFields = /* @__PURE__ */ ((StyleConfigFields2) => {
|
|
6915
6889
|
StyleConfigFields2["id"] = "id";
|
|
6916
6890
|
StyleConfigFields2["name"] = "name";
|
|
@@ -7116,6 +7090,40 @@ var SvgIconAssciations = /* @__PURE__ */ ((SvgIconAssciations2) => {
|
|
|
7116
7090
|
SvgIconAssciations2["website"] = "website";
|
|
7117
7091
|
return SvgIconAssciations2;
|
|
7118
7092
|
})(SvgIconAssciations || {});
|
|
7093
|
+
var ThemeFileFields = /* @__PURE__ */ ((ThemeFileFields2) => {
|
|
7094
|
+
ThemeFileFields2["id"] = "id";
|
|
7095
|
+
ThemeFileFields2["name"] = "name";
|
|
7096
|
+
ThemeFileFields2["code"] = "code";
|
|
7097
|
+
ThemeFileFields2["updatedAt"] = "updatedAt";
|
|
7098
|
+
ThemeFileFields2["createdAt"] = "createdAt";
|
|
7099
|
+
ThemeFileFields2["storageMeta"] = "storageMeta";
|
|
7100
|
+
ThemeFileFields2["size"] = "size";
|
|
7101
|
+
ThemeFileFields2["mimelype"] = "mimelype";
|
|
7102
|
+
ThemeFileFields2["extName"] = "extName";
|
|
7103
|
+
ThemeFileFields2["mediaType"] = "mediaType";
|
|
7104
|
+
return ThemeFileFields2;
|
|
7105
|
+
})(ThemeFileFields || {});
|
|
7106
|
+
var ThemeFileAssciations = /* @__PURE__ */ ((ThemeFileAssciations2) => {
|
|
7107
|
+
ThemeFileAssciations2["themeBranch"] = "themeBranch";
|
|
7108
|
+
ThemeFileAssciations2["folder"] = "folder";
|
|
7109
|
+
return ThemeFileAssciations2;
|
|
7110
|
+
})(ThemeFileAssciations || {});
|
|
7111
|
+
var ThemeFileFolderFields = /* @__PURE__ */ ((ThemeFileFolderFields2) => {
|
|
7112
|
+
ThemeFileFolderFields2["id"] = "id";
|
|
7113
|
+
ThemeFileFolderFields2["name"] = "name";
|
|
7114
|
+
ThemeFileFolderFields2["upadteAt"] = "upadteAt";
|
|
7115
|
+
ThemeFileFolderFields2["createdAt"] = "createdAt";
|
|
7116
|
+
return ThemeFileFolderFields2;
|
|
7117
|
+
})(ThemeFileFolderFields || {});
|
|
7118
|
+
var ThemeFileFolderAssciations = /* @__PURE__ */ ((ThemeFileFolderAssciations2) => {
|
|
7119
|
+
ThemeFileFolderAssciations2["folders"] = "folders";
|
|
7120
|
+
ThemeFileFolderAssciations2["foldersAggregate"] = "foldersAggregate";
|
|
7121
|
+
ThemeFileFolderAssciations2["files"] = "files";
|
|
7122
|
+
ThemeFileFolderAssciations2["filesAggregate"] = "filesAggregate";
|
|
7123
|
+
ThemeFileFolderAssciations2["themeBranch"] = "themeBranch";
|
|
7124
|
+
ThemeFileFolderAssciations2["parent"] = "parent";
|
|
7125
|
+
return ThemeFileFolderAssciations2;
|
|
7126
|
+
})(ThemeFileFolderAssciations || {});
|
|
7119
7127
|
export {
|
|
7120
7128
|
AbilityAssciations,
|
|
7121
7129
|
AbilityDistinctEnum,
|
|
@@ -7288,12 +7296,6 @@ export {
|
|
|
7288
7296
|
SearchIndexEntityName,
|
|
7289
7297
|
SearchIndexFields,
|
|
7290
7298
|
SearchIndexQueryOptions,
|
|
7291
|
-
SectionTemplateAssciations,
|
|
7292
|
-
SectionTemplateDistinctEnum,
|
|
7293
|
-
SectionTemplateEntityLabel,
|
|
7294
|
-
SectionTemplateEntityName,
|
|
7295
|
-
SectionTemplateFields,
|
|
7296
|
-
SectionTemplateQueryOptions,
|
|
7297
7299
|
SlugableDistinctEnum,
|
|
7298
7300
|
SoftableDistinctEnum,
|
|
7299
7301
|
SourceType,
|
|
@@ -7335,12 +7337,6 @@ export {
|
|
|
7335
7337
|
TaskQueryOptions,
|
|
7336
7338
|
TaskStatus,
|
|
7337
7339
|
TaskType,
|
|
7338
|
-
TemplateCategoryAssciations,
|
|
7339
|
-
TemplateCategoryDistinctEnum,
|
|
7340
|
-
TemplateCategoryEntityLabel,
|
|
7341
|
-
TemplateCategoryEntityName,
|
|
7342
|
-
TemplateCategoryFields,
|
|
7343
|
-
TemplateCategoryQueryOptions,
|
|
7344
7340
|
ThemeAssciations,
|
|
7345
7341
|
ThemeBranchAssciations,
|
|
7346
7342
|
ThemeBranchDistinctEnum,
|
|
@@ -7364,6 +7360,18 @@ export {
|
|
|
7364
7360
|
ThemeEntityLabel,
|
|
7365
7361
|
ThemeEntityName,
|
|
7366
7362
|
ThemeFields,
|
|
7363
|
+
ThemeFileAssciations,
|
|
7364
|
+
ThemeFileDistinctEnum,
|
|
7365
|
+
ThemeFileEntityLabel,
|
|
7366
|
+
ThemeFileEntityName,
|
|
7367
|
+
ThemeFileFields,
|
|
7368
|
+
ThemeFileFolderAssciations,
|
|
7369
|
+
ThemeFileFolderDistinctEnum,
|
|
7370
|
+
ThemeFileFolderEntityLabel,
|
|
7371
|
+
ThemeFileFolderEntityName,
|
|
7372
|
+
ThemeFileFolderFields,
|
|
7373
|
+
ThemeFileFolderQueryOptions,
|
|
7374
|
+
ThemeFileQueryOptions,
|
|
7367
7375
|
ThemeInMarketAssciations,
|
|
7368
7376
|
ThemeInMarketDistinctEnum,
|
|
7369
7377
|
ThemeInMarketEntityLabel,
|
|
@@ -7506,9 +7514,6 @@ export {
|
|
|
7506
7514
|
searchIndexEntry,
|
|
7507
7515
|
searchIndexToInput,
|
|
7508
7516
|
searchIndexToInputCascade,
|
|
7509
|
-
sectionTemplateEntry,
|
|
7510
|
-
sectionTemplateToInput,
|
|
7511
|
-
sectionTemplateToInputCascade,
|
|
7512
7517
|
spamFilterRuleEntry,
|
|
7513
7518
|
spamFilterRuleToInput,
|
|
7514
7519
|
spamFilterRuleToInputCascade,
|
|
@@ -7527,9 +7532,6 @@ export {
|
|
|
7527
7532
|
taskEntry,
|
|
7528
7533
|
taskToInput,
|
|
7529
7534
|
taskToInputCascade,
|
|
7530
|
-
templateCategoryEntry,
|
|
7531
|
-
templateCategoryToInput,
|
|
7532
|
-
templateCategoryToInputCascade,
|
|
7533
7535
|
themeBranchEntry,
|
|
7534
7536
|
themeBranchToInput,
|
|
7535
7537
|
themeBranchToInputCascade,
|
|
@@ -7540,6 +7542,12 @@ export {
|
|
|
7540
7542
|
themeConfigToInput,
|
|
7541
7543
|
themeConfigToInputCascade,
|
|
7542
7544
|
themeEntry,
|
|
7545
|
+
themeFileEntry,
|
|
7546
|
+
themeFileFolderEntry,
|
|
7547
|
+
themeFileFolderToInput,
|
|
7548
|
+
themeFileFolderToInputCascade,
|
|
7549
|
+
themeFileToInput,
|
|
7550
|
+
themeFileToInputCascade,
|
|
7543
7551
|
themeInMarketEntry,
|
|
7544
7552
|
themeInMarketToInput,
|
|
7545
7553
|
themeInMarketToInputCascade,
|