@rxdrag/rxcms-models 0.3.94 → 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.
Files changed (65) hide show
  1. package/dist/classes/LangQueryOptions.d.ts +5 -5
  2. package/dist/classes/MediaQueryOptions.d.ts +0 -5
  3. package/dist/classes/TagQueryOptions.d.ts +1 -2
  4. package/dist/classes/ThemeBranchQueryOptions.d.ts +10 -10
  5. package/dist/classes/ThemeFileFolderQueryOptions.d.ts +21 -0
  6. package/dist/classes/ThemeFileQueryOptions.d.ts +22 -0
  7. package/dist/classes/WebsiteQueryOptions.d.ts +5 -5
  8. package/dist/classes/index.d.ts +2 -2
  9. package/dist/entries/index.d.ts +2 -2
  10. package/dist/entries/themeFileEntry.d.ts +2 -0
  11. package/dist/entries/themeFileFolderEntry.d.ts +2 -0
  12. package/dist/fields/LangFields.d.ts +3 -3
  13. package/dist/fields/MediaFields.d.ts +0 -2
  14. package/dist/fields/TagFields.d.ts +1 -2
  15. package/dist/fields/ThemeBranchFields.d.ts +4 -4
  16. package/dist/fields/ThemeFileFields.d.ts +16 -0
  17. package/dist/fields/ThemeFileFolderFields.d.ts +14 -0
  18. package/dist/fields/WebsiteFields.d.ts +2 -2
  19. package/dist/fields/index.d.ts +2 -2
  20. package/dist/index.mjs +299 -297
  21. package/dist/index.mjs.map +1 -1
  22. package/dist/interfaces/Lang.d.ts +3 -3
  23. package/dist/interfaces/LangBoolExp.d.ts +2 -2
  24. package/dist/interfaces/LangInput.d.ts +2 -2
  25. package/dist/interfaces/Media.d.ts +0 -3
  26. package/dist/interfaces/MediaBoolExp.d.ts +0 -2
  27. package/dist/interfaces/MediaInput.d.ts +0 -2
  28. package/dist/interfaces/Tag.d.ts +3 -2
  29. package/dist/interfaces/TagBoolExp.d.ts +4 -2
  30. package/dist/interfaces/TagDistinctExp.d.ts +2 -4
  31. package/dist/interfaces/TagInput.d.ts +3 -2
  32. package/dist/interfaces/TagOrderBy.d.ts +3 -2
  33. package/dist/interfaces/ThemeBranch.d.ts +6 -6
  34. package/dist/interfaces/ThemeBranchBoolExp.d.ts +4 -4
  35. package/dist/interfaces/ThemeBranchInput.d.ts +4 -4
  36. package/dist/interfaces/ThemeFile.d.ts +19 -0
  37. package/dist/interfaces/{TemplateCategoryBoolExp.d.ts → ThemeFileBoolExp.d.ts} +14 -11
  38. package/dist/interfaces/ThemeFileDistinctExp.d.ts +13 -0
  39. package/dist/interfaces/ThemeFileFolder.d.ts +17 -0
  40. package/dist/interfaces/ThemeFileFolderBoolExp.d.ts +18 -0
  41. package/dist/interfaces/ThemeFileFolderDistinctExp.d.ts +7 -0
  42. package/dist/interfaces/ThemeFileFolderInput.d.ts +17 -0
  43. package/dist/interfaces/ThemeFileFolderOrderBy.d.ts +7 -0
  44. package/dist/interfaces/ThemeFileInput.d.ts +21 -0
  45. package/dist/interfaces/ThemeFileOrderBy.d.ts +13 -0
  46. package/dist/interfaces/Website.d.ts +3 -3
  47. package/dist/interfaces/WebsiteBoolExp.d.ts +2 -2
  48. package/dist/interfaces/WebsiteInput.d.ts +2 -2
  49. package/dist/interfaces/index.d.ts +10 -10
  50. package/package.json +1 -1
  51. package/dist/classes/SectionTemplateQueryOptions.d.ts +0 -22
  52. package/dist/classes/TemplateCategoryQueryOptions.d.ts +0 -20
  53. package/dist/entries/sectionTemplateEntry.d.ts +0 -2
  54. package/dist/entries/templateCategoryEntry.d.ts +0 -2
  55. package/dist/fields/SectionTemplateFields.d.ts +0 -14
  56. package/dist/fields/TemplateCategoryFields.d.ts +0 -13
  57. package/dist/interfaces/SectionTemplate.d.ts +0 -17
  58. package/dist/interfaces/SectionTemplateBoolExp.d.ts +0 -22
  59. package/dist/interfaces/SectionTemplateDistinctExp.d.ts +0 -10
  60. package/dist/interfaces/SectionTemplateInput.d.ts +0 -19
  61. package/dist/interfaces/SectionTemplateOrderBy.d.ts +0 -10
  62. package/dist/interfaces/TemplateCategory.d.ts +0 -16
  63. package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +0 -9
  64. package/dist/interfaces/TemplateCategoryInput.d.ts +0 -17
  65. package/dist/interfaces/TemplateCategoryOrderBy.d.ts +0 -9
@@ -16,9 +16,6 @@ import { PostBoolExp } from '../interfaces';
16
16
  import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
17
17
  import { PostCategory } from '../interfaces';
18
18
  import { PostCategoryBoolExp } from '../interfaces';
19
- import { TagQueryOptions } from './TagQueryOptions';
20
- import { Tag } from '../interfaces';
21
- import { TagBoolExp } from '../interfaces';
22
19
  import { CustomerQueryOptions } from './CustomerQueryOptions';
23
20
  import { Customer } from '../interfaces';
24
21
  import { CustomerBoolExp } from '../interfaces';
@@ -40,6 +37,9 @@ import { ThemeBranchBoolExp } from '../interfaces';
40
37
  import { BulletinQueryOptions } from './BulletinQueryOptions';
41
38
  import { Bulletin } from '../interfaces';
42
39
  import { BulletinBoolExp } from '../interfaces';
40
+ import { TagQueryOptions } from './TagQueryOptions';
41
+ import { Tag } from '../interfaces';
42
+ import { TagBoolExp } from '../interfaces';
43
43
  export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, LangOrderBy, LangDistinctExp> {
44
44
  constructor(fields?: (keyof Lang)[], queryArgs?: IQueryArgs<LangBoolExp, LangOrderBy, LangDistinctExp>);
45
45
  id(): this;
@@ -77,8 +77,6 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
77
77
  webPartsOfPostAggregate(aggregate: IAggregate<PostBoolExp>): this;
78
78
  webPartsOfPostCategory(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
79
79
  webPartsOfPostCategoryAggregate(aggregate: IAggregate<PostCategoryBoolExp>): this;
80
- webPartsOfTag(options?: TagQueryOptions | (keyof Tag)[]): this;
81
- webPartsOfTagAggregate(aggregate: IAggregate<TagBoolExp>): this;
82
80
  webPartsOfCustomer(options?: CustomerQueryOptions | (keyof Customer)[]): this;
83
81
  webPartsOfCustomerAggregate(aggregate: IAggregate<CustomerBoolExp>): this;
84
82
  webPartsOfProductCategory(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
@@ -95,4 +93,6 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
95
93
  themesAggregate(aggregate: IAggregate<ThemeBranchBoolExp>): this;
96
94
  bulletins(options?: BulletinQueryOptions | (keyof Bulletin)[]): this;
97
95
  bulletinsAggregate(aggregate: IAggregate<BulletinBoolExp>): this;
96
+ tags(options?: TagQueryOptions | (keyof Tag)[]): this;
97
+ tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
98
98
  }
@@ -38,9 +38,6 @@ import { WebsiteSnapshotBoolExp } from '../interfaces';
38
38
  import { FrontComponentQueryOptions } from './FrontComponentQueryOptions';
39
39
  import { FrontComponent } from '../interfaces';
40
40
  import { FrontComponentBoolExp } from '../interfaces';
41
- import { SectionTemplateQueryOptions } from './SectionTemplateQueryOptions';
42
- import { SectionTemplate } from '../interfaces';
43
- import { SectionTemplateBoolExp } from '../interfaces';
44
41
  import { EnquiryQueryOptions } from './EnquiryQueryOptions';
45
42
  import { Enquiry } from '../interfaces';
46
43
  import { ThemeQueryOptions } from './ThemeQueryOptions';
@@ -89,8 +86,6 @@ export declare class MediaQueryOptions extends QueryOptions<Media, MediaBoolExp,
89
86
  snapshotAggregate(aggregate: IAggregate<WebsiteSnapshotBoolExp>): this;
90
87
  coverOfComponent(options?: FrontComponentQueryOptions | (keyof FrontComponent)[]): this;
91
88
  coverOfComponentAggregate(aggregate: IAggregate<FrontComponentBoolExp>): this;
92
- coverOfSectionTemplate(options?: SectionTemplateQueryOptions | (keyof SectionTemplate)[]): this;
93
- coverOfSectionTemplateAggregate(aggregate: IAggregate<SectionTemplateBoolExp>): this;
94
89
  attachmentOfEnquiry(options?: EnquiryQueryOptions | (keyof Enquiry)[]): this;
95
90
  coverOfTheme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
96
91
  owner(options?: UserQueryOptions | (keyof User)[]): this;
@@ -19,9 +19,8 @@ export declare class TagQueryOptions extends QueryOptions<Tag, TagBoolExp, TagOr
19
19
  */
20
20
  name(): this;
21
21
  color(): this;
22
- createdAt(): this;
23
22
  updatedAt(): this;
24
- content(): this;
23
+ createdAt(): this;
25
24
  lang(options?: LangQueryOptions | (keyof Lang)[]): this;
26
25
  posts(options?: PostQueryOptions | (keyof Post)[]): this;
27
26
  postsAggregate(aggregate: IAggregate<PostBoolExp>): this;
@@ -14,16 +14,16 @@ import { LangQueryOptions } from './LangQueryOptions';
14
14
  import { Lang } from '../interfaces';
15
15
  import { ThemeConfigQueryOptions } from './ThemeConfigQueryOptions';
16
16
  import { ThemeConfig } from '../interfaces';
17
- import { SectionTemplateQueryOptions } from './SectionTemplateQueryOptions';
18
- import { SectionTemplate } from '../interfaces';
19
- import { SectionTemplateBoolExp } from '../interfaces';
20
- import { TemplateCategoryQueryOptions } from './TemplateCategoryQueryOptions';
21
- import { TemplateCategory } from '../interfaces';
22
- import { TemplateCategoryBoolExp } from '../interfaces';
23
17
  import { StyleConfigQueryOptions } from './StyleConfigQueryOptions';
24
18
  import { StyleConfig } from '../interfaces';
25
19
  import { WebsiteQueryOptions } from './WebsiteQueryOptions';
26
20
  import { Website } from '../interfaces';
21
+ import { ThemeFileQueryOptions } from './ThemeFileQueryOptions';
22
+ import { ThemeFile } from '../interfaces';
23
+ import { ThemeFileBoolExp } from '../interfaces';
24
+ import { ThemeFileFolderQueryOptions } from './ThemeFileFolderQueryOptions';
25
+ import { ThemeFileFolder } from '../interfaces';
26
+ import { ThemeFileFolderBoolExp } from '../interfaces';
27
27
  import { ThemeVersionQueryOptions } from './ThemeVersionQueryOptions';
28
28
  import { ThemeVersion } from '../interfaces';
29
29
  import { ThemeQueryOptions } from './ThemeQueryOptions';
@@ -50,12 +50,12 @@ export declare class ThemeBranchQueryOptions extends QueryOptions<ThemeBranch, T
50
50
  pagesAggregate(aggregate: IAggregate<PageBoolExp>): this;
51
51
  lang(options?: LangQueryOptions | (keyof Lang)[]): this;
52
52
  config(options?: ThemeConfigQueryOptions | (keyof ThemeConfig)[]): this;
53
- templates(options?: SectionTemplateQueryOptions | (keyof SectionTemplate)[]): this;
54
- templatesAggregate(aggregate: IAggregate<SectionTemplateBoolExp>): this;
55
- templateCategories(options?: TemplateCategoryQueryOptions | (keyof TemplateCategory)[]): this;
56
- templateCategoriesAggregate(aggregate: IAggregate<TemplateCategoryBoolExp>): this;
57
53
  styleConfig(options?: StyleConfigQueryOptions | (keyof StyleConfig)[]): this;
58
54
  mockWebsite(options?: WebsiteQueryOptions | (keyof Website)[]): this;
55
+ files(options?: ThemeFileQueryOptions | (keyof ThemeFile)[]): this;
56
+ filesAggregate(aggregate: IAggregate<ThemeFileBoolExp>): this;
57
+ folders(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
58
+ foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
59
59
  marketVersion(options?: ThemeVersionQueryOptions | (keyof ThemeVersion)[]): this;
60
60
  website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
61
61
  belongsToMain(options?: ThemeQueryOptions | (keyof Theme)[]): this;
@@ -0,0 +1,21 @@
1
+ import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { ThemeFileFolder, ThemeFileFolderBoolExp, ThemeFileFolderDistinctExp, ThemeFileFolderOrderBy } from "../interfaces";
4
+ import { ThemeFileQueryOptions } from './ThemeFileQueryOptions';
5
+ import { ThemeFile } from '../interfaces';
6
+ import { ThemeFileBoolExp } from '../interfaces';
7
+ import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
8
+ import { ThemeBranch } from '../interfaces';
9
+ export declare class ThemeFileFolderQueryOptions extends QueryOptions<ThemeFileFolder, ThemeFileFolderBoolExp, ThemeFileFolderOrderBy, ThemeFileFolderDistinctExp> {
10
+ constructor(fields?: (keyof ThemeFileFolder)[], queryArgs?: IQueryArgs<ThemeFileFolderBoolExp, ThemeFileFolderOrderBy, ThemeFileFolderDistinctExp>);
11
+ id(): this;
12
+ name(): this;
13
+ upadteAt(): this;
14
+ createdAt(): this;
15
+ folders(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
16
+ foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
17
+ files(options?: ThemeFileQueryOptions | (keyof ThemeFile)[]): this;
18
+ filesAggregate(aggregate: IAggregate<ThemeFileBoolExp>): this;
19
+ themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
20
+ parent(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
21
+ }
@@ -0,0 +1,22 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { ThemeFile, ThemeFileBoolExp, ThemeFileDistinctExp, ThemeFileOrderBy } from "../interfaces";
4
+ import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
5
+ import { ThemeBranch } from '../interfaces';
6
+ import { ThemeFileFolderQueryOptions } from './ThemeFileFolderQueryOptions';
7
+ import { ThemeFileFolder } from '../interfaces';
8
+ export declare class ThemeFileQueryOptions extends QueryOptions<ThemeFile, ThemeFileBoolExp, ThemeFileOrderBy, ThemeFileDistinctExp> {
9
+ constructor(fields?: (keyof ThemeFile)[], queryArgs?: IQueryArgs<ThemeFileBoolExp, ThemeFileOrderBy, ThemeFileDistinctExp>);
10
+ id(): this;
11
+ name(): this;
12
+ code(): this;
13
+ updatedAt(): this;
14
+ createdAt(): this;
15
+ storageMeta(fields: string[]): this;
16
+ size(): this;
17
+ mimelype(): this;
18
+ extName(): this;
19
+ mediaType(): this;
20
+ themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
21
+ folder(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
22
+ }
@@ -21,9 +21,6 @@ import { PostBoolExp } from '../interfaces';
21
21
  import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
22
22
  import { PostCategory } from '../interfaces';
23
23
  import { PostCategoryBoolExp } from '../interfaces';
24
- import { TagQueryOptions } from './TagQueryOptions';
25
- import { Tag } from '../interfaces';
26
- import { TagBoolExp } from '../interfaces';
27
24
  import { CustomerQueryOptions } from './CustomerQueryOptions';
28
25
  import { Customer } from '../interfaces';
29
26
  import { CustomerBoolExp } from '../interfaces';
@@ -64,6 +61,9 @@ import { UserOperationBoolExp } from '../interfaces';
64
61
  import { SvgIconQueryOptions } from './SvgIconQueryOptions';
65
62
  import { SvgIcon } from '../interfaces';
66
63
  import { SvgIconBoolExp } from '../interfaces';
64
+ import { TagQueryOptions } from './TagQueryOptions';
65
+ import { Tag } from '../interfaces';
66
+ import { TagBoolExp } from '../interfaces';
67
67
  export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
68
68
  constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
69
69
  id(): this;
@@ -111,8 +111,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
111
111
  partsOfPostAggregate(aggregate: IAggregate<PostBoolExp>): this;
112
112
  partsOfPostCategory(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
113
113
  partsOfPostCategoryAggregate(aggregate: IAggregate<PostCategoryBoolExp>): this;
114
- partsOfTag(options?: TagQueryOptions | (keyof Tag)[]): this;
115
- partsOfTagAggregate(aggregate: IAggregate<TagBoolExp>): this;
116
114
  partsOfCustomer(options?: CustomerQueryOptions | (keyof Customer)[]): this;
117
115
  partsOfCustomerAggregate(aggregate: IAggregate<CustomerBoolExp>): this;
118
116
  partsOfProductCategory(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
@@ -140,5 +138,7 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
140
138
  userOperationsAggregate(aggregate: IAggregate<UserOperationBoolExp>): this;
141
139
  svgIcons(options?: SvgIconQueryOptions | (keyof SvgIcon)[]): this;
142
140
  svgIconsAggregate(aggregate: IAggregate<SvgIconBoolExp>): this;
141
+ tags(options?: TagQueryOptions | (keyof Tag)[]): this;
142
+ tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
143
143
  mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
144
144
  }
@@ -29,9 +29,7 @@ export * from './ThemeInMarketQueryOptions';
29
29
  export * from './ThemeConfigQueryOptions';
30
30
  export * from './AnalyticsConfigQueryOptions';
31
31
  export * from './PageMetaQueryOptions';
32
- export * from './SectionTemplateQueryOptions';
33
32
  export * from './ThemeCategoryQueryOptions';
34
- export * from './TemplateCategoryQueryOptions';
35
33
  export * from './StyleConfigQueryOptions';
36
34
  export * from './ChangeLogQueryOptions';
37
35
  export * from './SearchIndexQueryOptions';
@@ -45,5 +43,7 @@ export * from './VisitorLogQueryOptions';
45
43
  export * from './UserOperationQueryOptions';
46
44
  export * from './ThemeQueryOptions';
47
45
  export * from './SvgIconQueryOptions';
46
+ export * from './ThemeFileQueryOptions';
47
+ export * from './ThemeFileFolderQueryOptions';
48
48
  export * from './QueryOptions';
49
49
  export * from './metainfo';
@@ -29,9 +29,7 @@ export * from './themeInMarketEntry';
29
29
  export * from './themeConfigEntry';
30
30
  export * from './analyticsConfigEntry';
31
31
  export * from './pageMetaEntry';
32
- export * from './sectionTemplateEntry';
33
32
  export * from './themeCategoryEntry';
34
- export * from './templateCategoryEntry';
35
33
  export * from './styleConfigEntry';
36
34
  export * from './changeLogEntry';
37
35
  export * from './searchIndexEntry';
@@ -45,3 +43,5 @@ export * from './visitorLogEntry';
45
43
  export * from './userOperationEntry';
46
44
  export * from './themeEntry';
47
45
  export * from './svgIconEntry';
46
+ export * from './themeFileEntry';
47
+ export * from './themeFileFolderEntry';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const themeFileEntry: EntityEntry;
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const themeFileFolderEntry: EntityEntry;
@@ -36,8 +36,6 @@ export declare enum LangAssciations {
36
36
  webPartsOfPostAggregate = "webPartsOfPostAggregate",
37
37
  webPartsOfPostCategory = "webPartsOfPostCategory",
38
38
  webPartsOfPostCategoryAggregate = "webPartsOfPostCategoryAggregate",
39
- webPartsOfTag = "webPartsOfTag",
40
- webPartsOfTagAggregate = "webPartsOfTagAggregate",
41
39
  webPartsOfCustomer = "webPartsOfCustomer",
42
40
  webPartsOfCustomerAggregate = "webPartsOfCustomerAggregate",
43
41
  webPartsOfProductCategory = "webPartsOfProductCategory",
@@ -53,5 +51,7 @@ export declare enum LangAssciations {
53
51
  themes = "themes",
54
52
  themesAggregate = "themesAggregate",
55
53
  bulletins = "bulletins",
56
- bulletinsAggregate = "bulletinsAggregate"
54
+ bulletinsAggregate = "bulletinsAggregate",
55
+ tags = "tags",
56
+ tagsAggregate = "tagsAggregate"
57
57
  }
@@ -43,8 +43,6 @@ export declare enum MediaAssciations {
43
43
  snapshotAggregate = "snapshotAggregate",
44
44
  coverOfComponent = "coverOfComponent",
45
45
  coverOfComponentAggregate = "coverOfComponentAggregate",
46
- coverOfSectionTemplate = "coverOfSectionTemplate",
47
- coverOfSectionTemplateAggregate = "coverOfSectionTemplateAggregate",
48
46
  attachmentOfEnquiry = "attachmentOfEnquiry",
49
47
  coverOfTheme = "coverOfTheme",
50
48
  owner = "owner"
@@ -5,9 +5,8 @@ export declare enum TagFields {
5
5
  */
6
6
  name = "name",
7
7
  color = "color",
8
- createdAt = "createdAt",
9
8
  updatedAt = "updatedAt",
10
- content = "content"
9
+ createdAt = "createdAt"
11
10
  }
12
11
  export declare enum TagAssciations {
13
12
  lang = "lang",
@@ -21,12 +21,12 @@ export declare enum ThemeBranchAssciations {
21
21
  pagesAggregate = "pagesAggregate",
22
22
  lang = "lang",
23
23
  config = "config",
24
- templates = "templates",
25
- templatesAggregate = "templatesAggregate",
26
- templateCategories = "templateCategories",
27
- templateCategoriesAggregate = "templateCategoriesAggregate",
28
24
  styleConfig = "styleConfig",
29
25
  mockWebsite = "mockWebsite",
26
+ files = "files",
27
+ filesAggregate = "filesAggregate",
28
+ folders = "folders",
29
+ foldersAggregate = "foldersAggregate",
30
30
  marketVersion = "marketVersion",
31
31
  website = "website",
32
32
  belongsToMain = "belongsToMain"
@@ -0,0 +1,16 @@
1
+ export declare enum ThemeFileFields {
2
+ id = "id",
3
+ name = "name",
4
+ code = "code",
5
+ updatedAt = "updatedAt",
6
+ createdAt = "createdAt",
7
+ storageMeta = "storageMeta",
8
+ size = "size",
9
+ mimelype = "mimelype",
10
+ extName = "extName",
11
+ mediaType = "mediaType"
12
+ }
13
+ export declare enum ThemeFileAssciations {
14
+ themeBranch = "themeBranch",
15
+ folder = "folder"
16
+ }
@@ -0,0 +1,14 @@
1
+ export declare enum ThemeFileFolderFields {
2
+ id = "id",
3
+ name = "name",
4
+ upadteAt = "upadteAt",
5
+ createdAt = "createdAt"
6
+ }
7
+ export declare enum ThemeFileFolderAssciations {
8
+ folders = "folders",
9
+ foldersAggregate = "foldersAggregate",
10
+ files = "files",
11
+ filesAggregate = "filesAggregate",
12
+ themeBranch = "themeBranch",
13
+ parent = "parent"
14
+ }
@@ -46,8 +46,6 @@ export declare enum WebsiteAssciations {
46
46
  partsOfPostAggregate = "partsOfPostAggregate",
47
47
  partsOfPostCategory = "partsOfPostCategory",
48
48
  partsOfPostCategoryAggregate = "partsOfPostCategoryAggregate",
49
- partsOfTag = "partsOfTag",
50
- partsOfTagAggregate = "partsOfTagAggregate",
51
49
  partsOfCustomer = "partsOfCustomer",
52
50
  partsOfCustomerAggregate = "partsOfCustomerAggregate",
53
51
  partsOfProductCategory = "partsOfProductCategory",
@@ -75,5 +73,7 @@ export declare enum WebsiteAssciations {
75
73
  userOperationsAggregate = "userOperationsAggregate",
76
74
  svgIcons = "svgIcons",
77
75
  svgIconsAggregate = "svgIconsAggregate",
76
+ tags = "tags",
77
+ tagsAggregate = "tagsAggregate",
78
78
  mockBranch = "mockBranch"
79
79
  }
@@ -29,9 +29,7 @@ export * from './ThemeInMarketFields';
29
29
  export * from './ThemeConfigFields';
30
30
  export * from './AnalyticsConfigFields';
31
31
  export * from './PageMetaFields';
32
- export * from './SectionTemplateFields';
33
32
  export * from './ThemeCategoryFields';
34
- export * from './TemplateCategoryFields';
35
33
  export * from './StyleConfigFields';
36
34
  export * from './ChangeLogFields';
37
35
  export * from './SearchIndexFields';
@@ -45,3 +43,5 @@ export * from './VisitorLogFields';
45
43
  export * from './UserOperationFields';
46
44
  export * from './ThemeFields';
47
45
  export * from './SvgIconFields';
46
+ export * from './ThemeFileFields';
47
+ export * from './ThemeFileFolderFields';