@rxdrag/rxcms-models 0.3.95 → 0.3.97

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.
Files changed (49) hide show
  1. package/dist/classes/MediaQueryOptions.d.ts +0 -5
  2. package/dist/classes/ThemeBranchQueryOptions.d.ts +10 -10
  3. package/dist/classes/ThemeFileFolderQueryOptions.d.ts +21 -0
  4. package/dist/classes/ThemeFileQueryOptions.d.ts +22 -0
  5. package/dist/classes/index.d.ts +2 -2
  6. package/dist/entries/index.d.ts +2 -2
  7. package/dist/entries/themeFileEntry.d.ts +2 -0
  8. package/dist/entries/themeFileFolderEntry.d.ts +2 -0
  9. package/dist/fields/MediaFields.d.ts +0 -2
  10. package/dist/fields/ThemeBranchFields.d.ts +4 -4
  11. package/dist/fields/ThemeFileFields.d.ts +16 -0
  12. package/dist/fields/ThemeFileFolderFields.d.ts +14 -0
  13. package/dist/fields/index.d.ts +2 -2
  14. package/dist/index.mjs +235 -226
  15. package/dist/index.mjs.map +1 -1
  16. package/dist/interfaces/Media.d.ts +0 -3
  17. package/dist/interfaces/MediaBoolExp.d.ts +0 -2
  18. package/dist/interfaces/MediaInput.d.ts +0 -2
  19. package/dist/interfaces/MediaType.d.ts +5 -1
  20. package/dist/interfaces/ThemeBranch.d.ts +6 -6
  21. package/dist/interfaces/ThemeBranchBoolExp.d.ts +4 -4
  22. package/dist/interfaces/ThemeBranchInput.d.ts +4 -4
  23. package/dist/interfaces/ThemeFile.d.ts +19 -0
  24. package/dist/interfaces/{TemplateCategoryBoolExp.d.ts → ThemeFileBoolExp.d.ts} +14 -11
  25. package/dist/interfaces/ThemeFileDistinctExp.d.ts +13 -0
  26. package/dist/interfaces/ThemeFileFolder.d.ts +17 -0
  27. package/dist/interfaces/ThemeFileFolderBoolExp.d.ts +18 -0
  28. package/dist/interfaces/ThemeFileFolderDistinctExp.d.ts +7 -0
  29. package/dist/interfaces/ThemeFileFolderInput.d.ts +17 -0
  30. package/dist/interfaces/ThemeFileFolderOrderBy.d.ts +7 -0
  31. package/dist/interfaces/ThemeFileInput.d.ts +21 -0
  32. package/dist/interfaces/ThemeFileOrderBy.d.ts +13 -0
  33. package/dist/interfaces/index.d.ts +10 -10
  34. package/package.json +5 -5
  35. package/dist/classes/SectionTemplateQueryOptions.d.ts +0 -22
  36. package/dist/classes/TemplateCategoryQueryOptions.d.ts +0 -20
  37. package/dist/entries/sectionTemplateEntry.d.ts +0 -2
  38. package/dist/entries/templateCategoryEntry.d.ts +0 -2
  39. package/dist/fields/SectionTemplateFields.d.ts +0 -14
  40. package/dist/fields/TemplateCategoryFields.d.ts +0 -13
  41. package/dist/interfaces/SectionTemplate.d.ts +0 -17
  42. package/dist/interfaces/SectionTemplateBoolExp.d.ts +0 -22
  43. package/dist/interfaces/SectionTemplateDistinctExp.d.ts +0 -10
  44. package/dist/interfaces/SectionTemplateInput.d.ts +0 -19
  45. package/dist/interfaces/SectionTemplateOrderBy.d.ts +0 -10
  46. package/dist/interfaces/TemplateCategory.d.ts +0 -16
  47. package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +0 -9
  48. package/dist/interfaces/TemplateCategoryInput.d.ts +0 -17
  49. 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
- templatesAggregate: "SectionTemplate",
93
- templateCategoriesAggregate: "TemplateCategory"
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 templateCategoryToInputCascade = (entity) => {
409
- var _a;
410
- const { templatesAggregate, ...rest } = entity;
408
+ const styleConfigToInputCascade = (entity) => {
411
409
  return {
412
- ...rest,
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 templateCategoryToInput = (entity) => {
418
- const { templatesAggregate, ...rest } = entity;
414
+ const styleConfigToInput = (entity) => {
419
415
  return {
420
- ...rest,
421
- templates: convertHasManyToInput(entity.templates),
416
+ ...entity,
422
417
  theme: convertHasOneToInput(entity.theme)
423
418
  };
424
419
  };
425
- const sectionTemplateToInputCascade = (entity) => {
420
+ const themeFileFolderToInputCascade = (entity) => {
421
+ var _a, _b;
422
+ const { foldersAggregate, filesAggregate, ...rest } = entity;
426
423
  return {
427
- ...entity,
428
- cover: entity.cover ? processHasOneClear({ sync: mediaToInput(entity.cover) }) : void 0,
429
- category: entity.category ? processHasOneClear({ sync: templateCategoryToInput(entity.category) }) : void 0,
430
- theme: entity.theme ? processHasOneClear({ sync: themeBranchToInput(entity.theme) }) : void 0
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 sectionTemplateToInput = (entity) => {
431
+ const themeFileFolderToInput = (entity) => {
432
+ const { foldersAggregate, filesAggregate, ...rest } = entity;
434
433
  return {
435
- ...entity,
436
- cover: convertHasOneToInput(entity.cover),
437
- category: convertHasOneToInput(entity.category),
438
- theme: convertHasOneToInput(entity.theme)
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 styleConfigToInputCascade = (entity) => {
441
+ const themeFileToInputCascade = (entity) => {
442
+ const { storageMeta, ...rest } = entity;
442
443
  return {
443
- ...entity,
444
- theme: entity.theme ? processHasOneClear({ sync: themeBranchToInput(entity.theme) }) : void 0
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 styleConfigToInput = (entity) => {
449
+ const themeFileToInput = (entity) => {
450
+ const { storageMeta, ...rest } = entity;
448
451
  return {
449
- ...entity,
450
- theme: convertHasOneToInput(entity.theme)
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, templatesAggregate, templateCategoriesAggregate, ...rest } = entity;
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, templatesAggregate, templateCategoriesAggregate, ...rest } = entity;
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, _j;
1037
- const { file, coverOfAggregate, meidaOfProductAggregate, productMediaPivotsAggregate, productAttacPivotsAggregate, usedByThemConfigAggregate, pageMetaAggregate, searchIndexAggregate, snapshotAggregate, coverOfComponentAggregate, coverOfSectionTemplateAggregate, ...rest } = entity;
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, coverOfSectionTemplateAggregate, ...rest } = entity;
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)
@@ -1221,6 +1223,7 @@ var MediaType = /* @__PURE__ */ ((MediaType2) => {
1221
1223
  MediaType2["image"] = "image";
1222
1224
  MediaType2["video"] = "video";
1223
1225
  MediaType2["document"] = "document";
1226
+ MediaType2["file"] = "file";
1224
1227
  return MediaType2;
1225
1228
  })(MediaType || {});
1226
1229
  const MailEntityName = "Mail";
@@ -1762,18 +1765,6 @@ var PageMetaDistinctEnum = /* @__PURE__ */ ((PageMetaDistinctEnum2) => {
1762
1765
  PageMetaDistinctEnum2["xUrl"] = "xUrl";
1763
1766
  return PageMetaDistinctEnum2;
1764
1767
  })(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
1768
  const ThemeCategoryEntityName = "ThemeCategory";
1778
1769
  const ThemeCategoryEntityLabel = "";
1779
1770
  var ThemeCategoryDistinctEnum = /* @__PURE__ */ ((ThemeCategoryDistinctEnum2) => {
@@ -1785,17 +1776,6 @@ var ThemeCategoryDistinctEnum = /* @__PURE__ */ ((ThemeCategoryDistinctEnum2) =>
1785
1776
  ThemeCategoryDistinctEnum2["updatedAt"] = "updatedAt";
1786
1777
  return ThemeCategoryDistinctEnum2;
1787
1778
  })(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
1779
  const StyleConfigEntityName = "StyleConfig";
1800
1780
  const StyleConfigEntityLabel = "";
1801
1781
  var StyleConfigDistinctEnum = /* @__PURE__ */ ((StyleConfigDistinctEnum2) => {
@@ -2065,6 +2045,30 @@ var SvgIconDistinctEnum = /* @__PURE__ */ ((SvgIconDistinctEnum2) => {
2065
2045
  SvgIconDistinctEnum2["updatedAt"] = "updatedAt";
2066
2046
  return SvgIconDistinctEnum2;
2067
2047
  })(SvgIconDistinctEnum || {});
2048
+ const ThemeFileEntityName = "ThemeFile";
2049
+ const ThemeFileEntityLabel = "";
2050
+ var ThemeFileDistinctEnum = /* @__PURE__ */ ((ThemeFileDistinctEnum2) => {
2051
+ ThemeFileDistinctEnum2["id"] = "id";
2052
+ ThemeFileDistinctEnum2["name"] = "name";
2053
+ ThemeFileDistinctEnum2["code"] = "code";
2054
+ ThemeFileDistinctEnum2["updatedAt"] = "updatedAt";
2055
+ ThemeFileDistinctEnum2["createdAt"] = "createdAt";
2056
+ ThemeFileDistinctEnum2["storageMeta"] = "storageMeta";
2057
+ ThemeFileDistinctEnum2["size"] = "size";
2058
+ ThemeFileDistinctEnum2["mimelype"] = "mimelype";
2059
+ ThemeFileDistinctEnum2["extName"] = "extName";
2060
+ ThemeFileDistinctEnum2["mediaType"] = "mediaType";
2061
+ return ThemeFileDistinctEnum2;
2062
+ })(ThemeFileDistinctEnum || {});
2063
+ const ThemeFileFolderEntityName = "ThemeFileFolder";
2064
+ const ThemeFileFolderEntityLabel = "";
2065
+ var ThemeFileFolderDistinctEnum = /* @__PURE__ */ ((ThemeFileFolderDistinctEnum2) => {
2066
+ ThemeFileFolderDistinctEnum2["id"] = "id";
2067
+ ThemeFileFolderDistinctEnum2["name"] = "name";
2068
+ ThemeFileFolderDistinctEnum2["upadteAt"] = "upadteAt";
2069
+ ThemeFileFolderDistinctEnum2["createdAt"] = "createdAt";
2070
+ return ThemeFileFolderDistinctEnum2;
2071
+ })(ThemeFileFolderDistinctEnum || {});
2068
2072
  class RoleVariableQueryOptions extends QueryOptions {
2069
2073
  constructor(fields, queryArgs) {
2070
2074
  super(RoleVariableEntityName, fields, queryArgs);
@@ -2559,9 +2563,9 @@ class ThemeConfigQueryOptions extends QueryOptions {
2559
2563
  return this;
2560
2564
  }
2561
2565
  }
2562
- class TemplateCategoryQueryOptions extends QueryOptions {
2566
+ class StyleConfigQueryOptions extends QueryOptions {
2563
2567
  constructor(fields, queryArgs) {
2564
- super(TemplateCategoryEntityName, fields, queryArgs);
2568
+ super(StyleConfigEntityName, fields, queryArgs);
2565
2569
  }
2566
2570
  id() {
2567
2571
  this.addField("id");
@@ -2575,8 +2579,20 @@ class TemplateCategoryQueryOptions extends QueryOptions {
2575
2579
  this.addField("description");
2576
2580
  return this;
2577
2581
  }
2578
- seqValue() {
2579
- this.addField("seqValue");
2582
+ tailwindConfig() {
2583
+ this.addField("tailwindConfig");
2584
+ return this;
2585
+ }
2586
+ css() {
2587
+ this.addField("css");
2588
+ return this;
2589
+ }
2590
+ cssVariants() {
2591
+ this.addField("cssVariants");
2592
+ return this;
2593
+ }
2594
+ isInMarket() {
2595
+ this.addField("isInMarket");
2580
2596
  return this;
2581
2597
  }
2582
2598
  createdAt() {
@@ -2587,16 +2603,16 @@ class TemplateCategoryQueryOptions extends QueryOptions {
2587
2603
  this.addField("updatedAt");
2588
2604
  return this;
2589
2605
  }
2590
- templates(options) {
2591
- if (Array.isArray(options)) {
2592
- this._associations["templates"] = new SectionTemplateQueryOptions(options);
2593
- } else {
2594
- this._associations["templates"] = options || new SectionTemplateQueryOptions(["id"]);
2595
- }
2606
+ headCode() {
2607
+ this.addField("headCode");
2596
2608
  return this;
2597
2609
  }
2598
- templatesAggregate(aggregate) {
2599
- this._aggregates["templatesAggregate"] = aggregate;
2610
+ footCode() {
2611
+ this.addField("footCode");
2612
+ return this;
2613
+ }
2614
+ imageSizes() {
2615
+ this.addField("imageSizes");
2600
2616
  return this;
2601
2617
  }
2602
2618
  theme(options) {
@@ -2608,66 +2624,70 @@ class TemplateCategoryQueryOptions extends QueryOptions {
2608
2624
  return this;
2609
2625
  }
2610
2626
  }
2611
- class SectionTemplateQueryOptions extends QueryOptions {
2627
+ class ThemeFileFolderQueryOptions extends QueryOptions {
2612
2628
  constructor(fields, queryArgs) {
2613
- super(SectionTemplateEntityName, fields, queryArgs);
2629
+ super(ThemeFileFolderEntityName, fields, queryArgs);
2614
2630
  }
2615
2631
  id() {
2616
2632
  this.addField("id");
2617
2633
  return this;
2618
2634
  }
2619
- title() {
2620
- this.addField("title");
2621
- return this;
2622
- }
2623
- code() {
2624
- this.addField("code");
2625
- return this;
2626
- }
2627
- description() {
2628
- this.addField("description");
2635
+ name() {
2636
+ this.addField("name");
2629
2637
  return this;
2630
2638
  }
2631
- seqValue() {
2632
- this.addField("seqValue");
2639
+ upadteAt() {
2640
+ this.addField("upadteAt");
2633
2641
  return this;
2634
2642
  }
2635
2643
  createdAt() {
2636
2644
  this.addField("createdAt");
2637
2645
  return this;
2638
2646
  }
2639
- updatedAt() {
2640
- this.addField("updatedAt");
2647
+ folders(options) {
2648
+ if (Array.isArray(options)) {
2649
+ this._associations["folders"] = new ThemeFileFolderQueryOptions(options);
2650
+ } else {
2651
+ this._associations["folders"] = options || new ThemeFileFolderQueryOptions(["id"]);
2652
+ }
2641
2653
  return this;
2642
2654
  }
2643
- cover(options) {
2655
+ foldersAggregate(aggregate) {
2656
+ this._aggregates["foldersAggregate"] = aggregate;
2657
+ return this;
2658
+ }
2659
+ files(options) {
2644
2660
  if (Array.isArray(options)) {
2645
- this._associations["cover"] = new MediaQueryOptions(options);
2661
+ this._associations["files"] = new ThemeFileQueryOptions(options);
2646
2662
  } else {
2647
- this._associations["cover"] = options || new MediaQueryOptions(["id"]);
2663
+ this._associations["files"] = options || new ThemeFileQueryOptions(["id"]);
2648
2664
  }
2649
2665
  return this;
2650
2666
  }
2651
- category(options) {
2667
+ filesAggregate(aggregate) {
2668
+ this._aggregates["filesAggregate"] = aggregate;
2669
+ return this;
2670
+ }
2671
+ themeBranch(options) {
2652
2672
  if (Array.isArray(options)) {
2653
- this._associations["category"] = new TemplateCategoryQueryOptions(options);
2673
+ this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
2654
2674
  } else {
2655
- this._associations["category"] = options || new TemplateCategoryQueryOptions(["id"]);
2675
+ this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
2656
2676
  }
2657
2677
  return this;
2658
2678
  }
2659
- theme(options) {
2679
+ parent(options) {
2660
2680
  if (Array.isArray(options)) {
2661
- this._associations["theme"] = new ThemeBranchQueryOptions(options);
2681
+ this._associations["parent"] = new ThemeFileFolderQueryOptions(options);
2662
2682
  } else {
2663
- this._associations["theme"] = options || new ThemeBranchQueryOptions(["id"]);
2683
+ this._associations["parent"] = options || new ThemeFileFolderQueryOptions(["id"]);
2664
2684
  }
2665
2685
  return this;
2666
2686
  }
2667
2687
  }
2668
- class StyleConfigQueryOptions extends QueryOptions {
2688
+ class ThemeFileQueryOptions extends QueryOptions {
2669
2689
  constructor(fields, queryArgs) {
2670
- super(StyleConfigEntityName, fields, queryArgs);
2690
+ super(ThemeFileEntityName, fields, queryArgs);
2671
2691
  }
2672
2692
  id() {
2673
2693
  this.addField("id");
@@ -2677,51 +2697,51 @@ class StyleConfigQueryOptions extends QueryOptions {
2677
2697
  this.addField("name");
2678
2698
  return this;
2679
2699
  }
2680
- description() {
2681
- this.addField("description");
2682
- return this;
2683
- }
2684
- tailwindConfig() {
2685
- this.addField("tailwindConfig");
2700
+ code() {
2701
+ this.addField("code");
2686
2702
  return this;
2687
2703
  }
2688
- css() {
2689
- this.addField("css");
2704
+ updatedAt() {
2705
+ this.addField("updatedAt");
2690
2706
  return this;
2691
2707
  }
2692
- cssVariants() {
2693
- this.addField("cssVariants");
2708
+ createdAt() {
2709
+ this.addField("createdAt");
2694
2710
  return this;
2695
2711
  }
2696
- isInMarket() {
2697
- this.addField("isInMarket");
2712
+ storageMeta(fields) {
2713
+ this.addObjectField("storageMeta", fields);
2698
2714
  return this;
2699
2715
  }
2700
- createdAt() {
2701
- this.addField("createdAt");
2716
+ size() {
2717
+ this.addField("size");
2702
2718
  return this;
2703
2719
  }
2704
- updatedAt() {
2705
- this.addField("updatedAt");
2720
+ mimelype() {
2721
+ this.addField("mimelype");
2706
2722
  return this;
2707
2723
  }
2708
- headCode() {
2709
- this.addField("headCode");
2724
+ extName() {
2725
+ this.addField("extName");
2710
2726
  return this;
2711
2727
  }
2712
- footCode() {
2713
- this.addField("footCode");
2728
+ mediaType() {
2729
+ this.addField("mediaType");
2714
2730
  return this;
2715
2731
  }
2716
- imageSizes() {
2717
- this.addField("imageSizes");
2732
+ themeBranch(options) {
2733
+ if (Array.isArray(options)) {
2734
+ this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
2735
+ } else {
2736
+ this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
2737
+ }
2718
2738
  return this;
2719
2739
  }
2720
- theme(options) {
2740
+ folder(options) {
2721
2741
  if (Array.isArray(options)) {
2722
- this._associations["theme"] = new ThemeBranchQueryOptions(options);
2742
+ this._associations["folder"] = new ThemeFileFolderQueryOptions(options);
2723
2743
  } else {
2724
- this._associations["theme"] = options || new ThemeBranchQueryOptions(["id"]);
2744
+ this._associations["folder"] = options || new ThemeFileFolderQueryOptions(["id"]);
2725
2745
  }
2726
2746
  return this;
2727
2747
  }
@@ -2989,44 +3009,44 @@ class ThemeBranchQueryOptions extends QueryOptions {
2989
3009
  }
2990
3010
  return this;
2991
3011
  }
2992
- templates(options) {
3012
+ styleConfig(options) {
2993
3013
  if (Array.isArray(options)) {
2994
- this._associations["templates"] = new SectionTemplateQueryOptions(options);
3014
+ this._associations["styleConfig"] = new StyleConfigQueryOptions(options);
2995
3015
  } else {
2996
- this._associations["templates"] = options || new SectionTemplateQueryOptions(["id"]);
3016
+ this._associations["styleConfig"] = options || new StyleConfigQueryOptions(["id"]);
2997
3017
  }
2998
3018
  return this;
2999
3019
  }
3000
- templatesAggregate(aggregate) {
3001
- this._aggregates["templatesAggregate"] = aggregate;
3020
+ mockWebsite(options) {
3021
+ if (Array.isArray(options)) {
3022
+ this._associations["mockWebsite"] = new WebsiteQueryOptions(options);
3023
+ } else {
3024
+ this._associations["mockWebsite"] = options || new WebsiteQueryOptions(["id"]);
3025
+ }
3002
3026
  return this;
3003
3027
  }
3004
- templateCategories(options) {
3028
+ files(options) {
3005
3029
  if (Array.isArray(options)) {
3006
- this._associations["templateCategories"] = new TemplateCategoryQueryOptions(options);
3030
+ this._associations["files"] = new ThemeFileQueryOptions(options);
3007
3031
  } else {
3008
- this._associations["templateCategories"] = options || new TemplateCategoryQueryOptions(["id"]);
3032
+ this._associations["files"] = options || new ThemeFileQueryOptions(["id"]);
3009
3033
  }
3010
3034
  return this;
3011
3035
  }
3012
- templateCategoriesAggregate(aggregate) {
3013
- this._aggregates["templateCategoriesAggregate"] = aggregate;
3036
+ filesAggregate(aggregate) {
3037
+ this._aggregates["filesAggregate"] = aggregate;
3014
3038
  return this;
3015
3039
  }
3016
- styleConfig(options) {
3040
+ folders(options) {
3017
3041
  if (Array.isArray(options)) {
3018
- this._associations["styleConfig"] = new StyleConfigQueryOptions(options);
3042
+ this._associations["folders"] = new ThemeFileFolderQueryOptions(options);
3019
3043
  } else {
3020
- this._associations["styleConfig"] = options || new StyleConfigQueryOptions(["id"]);
3044
+ this._associations["folders"] = options || new ThemeFileFolderQueryOptions(["id"]);
3021
3045
  }
3022
3046
  return this;
3023
3047
  }
3024
- mockWebsite(options) {
3025
- if (Array.isArray(options)) {
3026
- this._associations["mockWebsite"] = new WebsiteQueryOptions(options);
3027
- } else {
3028
- this._associations["mockWebsite"] = options || new WebsiteQueryOptions(["id"]);
3029
- }
3048
+ foldersAggregate(aggregate) {
3049
+ this._aggregates["foldersAggregate"] = aggregate;
3030
3050
  return this;
3031
3051
  }
3032
3052
  marketVersion(options) {
@@ -5348,18 +5368,6 @@ class MediaQueryOptions extends QueryOptions {
5348
5368
  this._aggregates["coverOfComponentAggregate"] = aggregate;
5349
5369
  return this;
5350
5370
  }
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
5371
  attachmentOfEnquiry(options) {
5364
5372
  if (Array.isArray(options)) {
5365
5373
  this._associations["attachmentOfEnquiry"] = new EnquiryQueryOptions(options);
@@ -6061,21 +6069,11 @@ const pageMetaEntry = {
6061
6069
  entityLabel: PageMetaEntityLabel,
6062
6070
  toInput: pageMetaToInput
6063
6071
  };
6064
- const sectionTemplateEntry = {
6065
- entityName: SectionTemplateEntityName,
6066
- entityLabel: SectionTemplateEntityLabel,
6067
- toInput: sectionTemplateToInput
6068
- };
6069
6072
  const themeCategoryEntry = {
6070
6073
  entityName: ThemeCategoryEntityName,
6071
6074
  entityLabel: ThemeCategoryEntityLabel,
6072
6075
  toInput: themeCategoryToInput
6073
6076
  };
6074
- const templateCategoryEntry = {
6075
- entityName: TemplateCategoryEntityName,
6076
- entityLabel: TemplateCategoryEntityLabel,
6077
- toInput: templateCategoryToInput
6078
- };
6079
6077
  const styleConfigEntry = {
6080
6078
  entityName: StyleConfigEntityName,
6081
6079
  entityLabel: StyleConfigEntityLabel,
@@ -6141,6 +6139,16 @@ const svgIconEntry = {
6141
6139
  entityLabel: SvgIconEntityLabel,
6142
6140
  toInput: svgIconToInput
6143
6141
  };
6142
+ const themeFileEntry = {
6143
+ entityName: ThemeFileEntityName,
6144
+ entityLabel: ThemeFileEntityLabel,
6145
+ toInput: themeFileToInput
6146
+ };
6147
+ const themeFileFolderEntry = {
6148
+ entityName: ThemeFileFolderEntityName,
6149
+ entityLabel: ThemeFileFolderEntityLabel,
6150
+ toInput: themeFileFolderToInput
6151
+ };
6144
6152
  var UserFields = /* @__PURE__ */ ((UserFields2) => {
6145
6153
  UserFields2["id"] = "id";
6146
6154
  UserFields2["loginName"] = "loginName";
@@ -6264,8 +6272,6 @@ var MediaAssciations = /* @__PURE__ */ ((MediaAssciations2) => {
6264
6272
  MediaAssciations2["snapshotAggregate"] = "snapshotAggregate";
6265
6273
  MediaAssciations2["coverOfComponent"] = "coverOfComponent";
6266
6274
  MediaAssciations2["coverOfComponentAggregate"] = "coverOfComponentAggregate";
6267
- MediaAssciations2["coverOfSectionTemplate"] = "coverOfSectionTemplate";
6268
- MediaAssciations2["coverOfSectionTemplateAggregate"] = "coverOfSectionTemplateAggregate";
6269
6275
  MediaAssciations2["attachmentOfEnquiry"] = "attachmentOfEnquiry";
6270
6276
  MediaAssciations2["coverOfTheme"] = "coverOfTheme";
6271
6277
  MediaAssciations2["owner"] = "owner";
@@ -6586,12 +6592,12 @@ var ThemeBranchAssciations = /* @__PURE__ */ ((ThemeBranchAssciations2) => {
6586
6592
  ThemeBranchAssciations2["pagesAggregate"] = "pagesAggregate";
6587
6593
  ThemeBranchAssciations2["lang"] = "lang";
6588
6594
  ThemeBranchAssciations2["config"] = "config";
6589
- ThemeBranchAssciations2["templates"] = "templates";
6590
- ThemeBranchAssciations2["templatesAggregate"] = "templatesAggregate";
6591
- ThemeBranchAssciations2["templateCategories"] = "templateCategories";
6592
- ThemeBranchAssciations2["templateCategoriesAggregate"] = "templateCategoriesAggregate";
6593
6595
  ThemeBranchAssciations2["styleConfig"] = "styleConfig";
6594
6596
  ThemeBranchAssciations2["mockWebsite"] = "mockWebsite";
6597
+ ThemeBranchAssciations2["files"] = "files";
6598
+ ThemeBranchAssciations2["filesAggregate"] = "filesAggregate";
6599
+ ThemeBranchAssciations2["folders"] = "folders";
6600
+ ThemeBranchAssciations2["foldersAggregate"] = "foldersAggregate";
6595
6601
  ThemeBranchAssciations2["marketVersion"] = "marketVersion";
6596
6602
  ThemeBranchAssciations2["website"] = "website";
6597
6603
  ThemeBranchAssciations2["belongsToMain"] = "belongsToMain";
@@ -6866,22 +6872,6 @@ var PageMetaAssciations = /* @__PURE__ */ ((PageMetaAssciations2) => {
6866
6872
  PageMetaAssciations2["post"] = "post";
6867
6873
  return PageMetaAssciations2;
6868
6874
  })(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
6875
  var ThemeCategoryFields = /* @__PURE__ */ ((ThemeCategoryFields2) => {
6886
6876
  ThemeCategoryFields2["id"] = "id";
6887
6877
  ThemeCategoryFields2["name"] = "name";
@@ -6896,21 +6886,6 @@ var ThemeCategoryAssciations = /* @__PURE__ */ ((ThemeCategoryAssciations2) => {
6896
6886
  ThemeCategoryAssciations2["themesAggregate"] = "themesAggregate";
6897
6887
  return ThemeCategoryAssciations2;
6898
6888
  })(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
6889
  var StyleConfigFields = /* @__PURE__ */ ((StyleConfigFields2) => {
6915
6890
  StyleConfigFields2["id"] = "id";
6916
6891
  StyleConfigFields2["name"] = "name";
@@ -7116,6 +7091,40 @@ var SvgIconAssciations = /* @__PURE__ */ ((SvgIconAssciations2) => {
7116
7091
  SvgIconAssciations2["website"] = "website";
7117
7092
  return SvgIconAssciations2;
7118
7093
  })(SvgIconAssciations || {});
7094
+ var ThemeFileFields = /* @__PURE__ */ ((ThemeFileFields2) => {
7095
+ ThemeFileFields2["id"] = "id";
7096
+ ThemeFileFields2["name"] = "name";
7097
+ ThemeFileFields2["code"] = "code";
7098
+ ThemeFileFields2["updatedAt"] = "updatedAt";
7099
+ ThemeFileFields2["createdAt"] = "createdAt";
7100
+ ThemeFileFields2["storageMeta"] = "storageMeta";
7101
+ ThemeFileFields2["size"] = "size";
7102
+ ThemeFileFields2["mimelype"] = "mimelype";
7103
+ ThemeFileFields2["extName"] = "extName";
7104
+ ThemeFileFields2["mediaType"] = "mediaType";
7105
+ return ThemeFileFields2;
7106
+ })(ThemeFileFields || {});
7107
+ var ThemeFileAssciations = /* @__PURE__ */ ((ThemeFileAssciations2) => {
7108
+ ThemeFileAssciations2["themeBranch"] = "themeBranch";
7109
+ ThemeFileAssciations2["folder"] = "folder";
7110
+ return ThemeFileAssciations2;
7111
+ })(ThemeFileAssciations || {});
7112
+ var ThemeFileFolderFields = /* @__PURE__ */ ((ThemeFileFolderFields2) => {
7113
+ ThemeFileFolderFields2["id"] = "id";
7114
+ ThemeFileFolderFields2["name"] = "name";
7115
+ ThemeFileFolderFields2["upadteAt"] = "upadteAt";
7116
+ ThemeFileFolderFields2["createdAt"] = "createdAt";
7117
+ return ThemeFileFolderFields2;
7118
+ })(ThemeFileFolderFields || {});
7119
+ var ThemeFileFolderAssciations = /* @__PURE__ */ ((ThemeFileFolderAssciations2) => {
7120
+ ThemeFileFolderAssciations2["folders"] = "folders";
7121
+ ThemeFileFolderAssciations2["foldersAggregate"] = "foldersAggregate";
7122
+ ThemeFileFolderAssciations2["files"] = "files";
7123
+ ThemeFileFolderAssciations2["filesAggregate"] = "filesAggregate";
7124
+ ThemeFileFolderAssciations2["themeBranch"] = "themeBranch";
7125
+ ThemeFileFolderAssciations2["parent"] = "parent";
7126
+ return ThemeFileFolderAssciations2;
7127
+ })(ThemeFileFolderAssciations || {});
7119
7128
  export {
7120
7129
  AbilityAssciations,
7121
7130
  AbilityDistinctEnum,
@@ -7288,12 +7297,6 @@ export {
7288
7297
  SearchIndexEntityName,
7289
7298
  SearchIndexFields,
7290
7299
  SearchIndexQueryOptions,
7291
- SectionTemplateAssciations,
7292
- SectionTemplateDistinctEnum,
7293
- SectionTemplateEntityLabel,
7294
- SectionTemplateEntityName,
7295
- SectionTemplateFields,
7296
- SectionTemplateQueryOptions,
7297
7300
  SlugableDistinctEnum,
7298
7301
  SoftableDistinctEnum,
7299
7302
  SourceType,
@@ -7335,12 +7338,6 @@ export {
7335
7338
  TaskQueryOptions,
7336
7339
  TaskStatus,
7337
7340
  TaskType,
7338
- TemplateCategoryAssciations,
7339
- TemplateCategoryDistinctEnum,
7340
- TemplateCategoryEntityLabel,
7341
- TemplateCategoryEntityName,
7342
- TemplateCategoryFields,
7343
- TemplateCategoryQueryOptions,
7344
7341
  ThemeAssciations,
7345
7342
  ThemeBranchAssciations,
7346
7343
  ThemeBranchDistinctEnum,
@@ -7364,6 +7361,18 @@ export {
7364
7361
  ThemeEntityLabel,
7365
7362
  ThemeEntityName,
7366
7363
  ThemeFields,
7364
+ ThemeFileAssciations,
7365
+ ThemeFileDistinctEnum,
7366
+ ThemeFileEntityLabel,
7367
+ ThemeFileEntityName,
7368
+ ThemeFileFields,
7369
+ ThemeFileFolderAssciations,
7370
+ ThemeFileFolderDistinctEnum,
7371
+ ThemeFileFolderEntityLabel,
7372
+ ThemeFileFolderEntityName,
7373
+ ThemeFileFolderFields,
7374
+ ThemeFileFolderQueryOptions,
7375
+ ThemeFileQueryOptions,
7367
7376
  ThemeInMarketAssciations,
7368
7377
  ThemeInMarketDistinctEnum,
7369
7378
  ThemeInMarketEntityLabel,
@@ -7506,9 +7515,6 @@ export {
7506
7515
  searchIndexEntry,
7507
7516
  searchIndexToInput,
7508
7517
  searchIndexToInputCascade,
7509
- sectionTemplateEntry,
7510
- sectionTemplateToInput,
7511
- sectionTemplateToInputCascade,
7512
7518
  spamFilterRuleEntry,
7513
7519
  spamFilterRuleToInput,
7514
7520
  spamFilterRuleToInputCascade,
@@ -7527,9 +7533,6 @@ export {
7527
7533
  taskEntry,
7528
7534
  taskToInput,
7529
7535
  taskToInputCascade,
7530
- templateCategoryEntry,
7531
- templateCategoryToInput,
7532
- templateCategoryToInputCascade,
7533
7536
  themeBranchEntry,
7534
7537
  themeBranchToInput,
7535
7538
  themeBranchToInputCascade,
@@ -7540,6 +7543,12 @@ export {
7540
7543
  themeConfigToInput,
7541
7544
  themeConfigToInputCascade,
7542
7545
  themeEntry,
7546
+ themeFileEntry,
7547
+ themeFileFolderEntry,
7548
+ themeFileFolderToInput,
7549
+ themeFileFolderToInputCascade,
7550
+ themeFileToInput,
7551
+ themeFileToInputCascade,
7543
7552
  themeInMarketEntry,
7544
7553
  themeInMarketToInput,
7545
7554
  themeInMarketToInputCascade,