@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
@@ -3,7 +3,6 @@ import { Enquiry } from './Enquiry';
3
3
  import { Product } from './Product';
4
4
  import { Post } from './Post';
5
5
  import { PostCategory } from './PostCategory';
6
- import { Tag } from './Tag';
7
6
  import { Customer } from './Customer';
8
7
  import { ProductCategory } from './ProductCategory';
9
8
  import { SpamFilterRule } from './SpamFilterRule';
@@ -11,6 +10,7 @@ import { Media } from './Media';
11
10
  import { Website } from './Website';
12
11
  import { ThemeBranch } from './ThemeBranch';
13
12
  import { Bulletin } from './Bulletin';
13
+ import { Tag } from './Tag';
14
14
  import { Aggregate } from './Aggregate';
15
15
  export declare const LangEntityName = "Lang";
16
16
  export declare const LangEntityLabel = "\u8BED\u8A00";
@@ -49,7 +49,6 @@ export interface Lang {
49
49
  webPartsOfProduct?: Product[];
50
50
  webPartsOfPost?: Post[];
51
51
  webPartsOfPostCategory?: PostCategory[];
52
- webPartsOfTag?: Tag[];
53
52
  webPartsOfCustomer?: Customer[];
54
53
  webPartsOfProductCategory?: ProductCategory[];
55
54
  webPartsOfSpamFilterRule?: SpamFilterRule[];
@@ -58,12 +57,12 @@ export interface Lang {
58
57
  baseLangOf?: Website[];
59
58
  themes?: ThemeBranch[];
60
59
  bulletins?: Bulletin[];
60
+ tags?: Tag[];
61
61
  webPartsOfMediaFolderAggregate?: Aggregate;
62
62
  webPartsOfEnquiryAggregate?: Aggregate;
63
63
  webPartsOfProductAggregate?: Aggregate;
64
64
  webPartsOfPostAggregate?: Aggregate;
65
65
  webPartsOfPostCategoryAggregate?: Aggregate;
66
- webPartsOfTagAggregate?: Aggregate;
67
66
  webPartsOfCustomerAggregate?: Aggregate;
68
67
  webPartsOfProductCategoryAggregate?: Aggregate;
69
68
  webPartsOfSpamFilterRuleAggregate?: Aggregate;
@@ -72,4 +71,5 @@ export interface Lang {
72
71
  baseLangOfAggregate?: Aggregate;
73
72
  themesAggregate?: Aggregate;
74
73
  bulletinsAggregate?: Aggregate;
74
+ tagsAggregate?: Aggregate;
75
75
  }
@@ -5,7 +5,6 @@ import { EnquiryBoolExp } from './EnquiryBoolExp';
5
5
  import { ProductBoolExp } from './ProductBoolExp';
6
6
  import { PostBoolExp } from './PostBoolExp';
7
7
  import { PostCategoryBoolExp } from './PostCategoryBoolExp';
8
- import { TagBoolExp } from './TagBoolExp';
9
8
  import { CustomerBoolExp } from './CustomerBoolExp';
10
9
  import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
11
10
  import { SpamFilterRuleBoolExp } from './SpamFilterRuleBoolExp';
@@ -13,6 +12,7 @@ import { MediaBoolExp } from './MediaBoolExp';
13
12
  import { WebsiteBoolExp } from './WebsiteBoolExp';
14
13
  import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
15
14
  import { BulletinBoolExp } from './BulletinBoolExp';
15
+ import { TagBoolExp } from './TagBoolExp';
16
16
  /**
17
17
  * 语言
18
18
  *
@@ -36,7 +36,6 @@ export interface LangBoolExp {
36
36
  webPartsOfProduct?: ProductBoolExp;
37
37
  webPartsOfPost?: PostBoolExp;
38
38
  webPartsOfPostCategory?: PostCategoryBoolExp;
39
- webPartsOfTag?: TagBoolExp;
40
39
  webPartsOfCustomer?: CustomerBoolExp;
41
40
  webPartsOfProductCategory?: ProductCategoryBoolExp;
42
41
  webPartsOfSpamFilterRule?: SpamFilterRuleBoolExp;
@@ -45,4 +44,5 @@ export interface LangBoolExp {
45
44
  baseLangOf?: WebsiteBoolExp;
46
45
  themes?: ThemeBranchBoolExp;
47
46
  bulletins?: BulletinBoolExp;
47
+ tags?: TagBoolExp;
48
48
  }
@@ -4,7 +4,6 @@ import { EnquiryInput } from './EnquiryInput';
4
4
  import { ProductInput } from './ProductInput';
5
5
  import { PostInput } from './PostInput';
6
6
  import { PostCategoryInput } from './PostCategoryInput';
7
- import { TagInput } from './TagInput';
8
7
  import { CustomerInput } from './CustomerInput';
9
8
  import { ProductCategoryInput } from './ProductCategoryInput';
10
9
  import { SpamFilterRuleInput } from './SpamFilterRuleInput';
@@ -12,6 +11,7 @@ import { MediaInput } from './MediaInput';
12
11
  import { WebsiteInput } from './WebsiteInput';
13
12
  import { ThemeBranchInput } from './ThemeBranchInput';
14
13
  import { BulletinInput } from './BulletinInput';
14
+ import { TagInput } from './TagInput';
15
15
  import { SetHasMany } from '@rxdrag/entify-lib';
16
16
  /**
17
17
  * 语言
@@ -48,7 +48,6 @@ export interface LangInput {
48
48
  webPartsOfProduct?: SetHasMany<ProductInput>;
49
49
  webPartsOfPost?: SetHasMany<PostInput>;
50
50
  webPartsOfPostCategory?: SetHasMany<PostCategoryInput>;
51
- webPartsOfTag?: SetHasMany<TagInput>;
52
51
  webPartsOfCustomer?: SetHasMany<CustomerInput>;
53
52
  webPartsOfProductCategory?: SetHasMany<ProductCategoryInput>;
54
53
  webPartsOfSpamFilterRule?: SetHasMany<SpamFilterRuleInput>;
@@ -57,6 +56,7 @@ export interface LangInput {
57
56
  baseLangOf?: SetHasMany<WebsiteInput>;
58
57
  themes?: SetHasMany<ThemeBranchInput>;
59
58
  bulletins?: SetHasMany<BulletinInput>;
59
+ tags?: SetHasMany<TagInput>;
60
60
  }
61
61
  export declare const langToInputCascade: (entity: Lang) => LangInput;
62
62
  export declare const langToInput: (entity: Lang) => LangInput;
@@ -14,7 +14,6 @@ import { PageMeta } from './PageMeta';
14
14
  import { SearchIndex } from './SearchIndex';
15
15
  import { WebsiteSnapshot } from './WebsiteSnapshot';
16
16
  import { FrontComponent } from './FrontComponent';
17
- import { SectionTemplate } from './SectionTemplate';
18
17
  import { Enquiry } from './Enquiry';
19
18
  import { Theme } from './Theme';
20
19
  import { Aggregate } from './Aggregate';
@@ -53,7 +52,6 @@ export interface Media extends WebsitePart, Softable {
53
52
  searchIndex?: SearchIndex[];
54
53
  snapshot?: WebsiteSnapshot[];
55
54
  coverOfComponent?: FrontComponent[];
56
- coverOfSectionTemplate?: SectionTemplate[];
57
55
  attachmentOfEnquiry?: Enquiry;
58
56
  coverOfTheme?: Theme;
59
57
  owner?: User;
@@ -66,5 +64,4 @@ export interface Media extends WebsitePart, Softable {
66
64
  searchIndexAggregate?: Aggregate;
67
65
  snapshotAggregate?: Aggregate;
68
66
  coverOfComponentAggregate?: Aggregate;
69
- coverOfSectionTemplateAggregate?: Aggregate;
70
67
  }
@@ -20,7 +20,6 @@ import { PageMetaBoolExp } from './PageMetaBoolExp';
20
20
  import { SearchIndexBoolExp } from './SearchIndexBoolExp';
21
21
  import { WebsiteSnapshotBoolExp } from './WebsiteSnapshotBoolExp';
22
22
  import { FrontComponentBoolExp } from './FrontComponentBoolExp';
23
- import { SectionTemplateBoolExp } from './SectionTemplateBoolExp';
24
23
  import { EnquiryBoolExp } from './EnquiryBoolExp';
25
24
  import { ThemeBoolExp } from './ThemeBoolExp';
26
25
  export interface MediaBoolExp extends WebsitePartBoolExp, SoftableBoolExp {
@@ -53,7 +52,6 @@ export interface MediaBoolExp extends WebsitePartBoolExp, SoftableBoolExp {
53
52
  searchIndex?: SearchIndexBoolExp;
54
53
  snapshot?: WebsiteSnapshotBoolExp;
55
54
  coverOfComponent?: FrontComponentBoolExp;
56
- coverOfSectionTemplate?: SectionTemplateBoolExp;
57
55
  attachmentOfEnquiry?: EnquiryBoolExp;
58
56
  coverOfTheme?: ThemeBoolExp;
59
57
  owner?: UserBoolExp;
@@ -15,7 +15,6 @@ import { PageMetaInput } from './PageMetaInput';
15
15
  import { SearchIndexInput } from './SearchIndexInput';
16
16
  import { WebsiteSnapshotInput } from './WebsiteSnapshotInput';
17
17
  import { FrontComponentInput } from './FrontComponentInput';
18
- import { SectionTemplateInput } from './SectionTemplateInput';
19
18
  import { EnquiryInput } from './EnquiryInput';
20
19
  import { ThemeInput } from './ThemeInput';
21
20
  import { SetHasMany } from '@rxdrag/entify-lib';
@@ -53,7 +52,6 @@ export interface MediaInput extends WebsitePart, Softable {
53
52
  searchIndex?: SetHasMany<SearchIndexInput>;
54
53
  snapshot?: SetHasMany<WebsiteSnapshotInput>;
55
54
  coverOfComponent?: SetHasMany<FrontComponentInput>;
56
- coverOfSectionTemplate?: SetHasMany<SectionTemplateInput>;
57
55
  attachmentOfEnquiry?: SetHasOne<EnquiryInput>;
58
56
  coverOfTheme?: SetHasOne<ThemeInput>;
59
57
  owner?: SetHasOne<UserInput>;
@@ -3,20 +3,21 @@ import { Post } from './Post';
3
3
  import { Product } from './Product';
4
4
  import { Website } from './Website';
5
5
  import { Aggregate } from './Aggregate';
6
- import { WebsitePart } from './WebsitePart';
7
6
  export declare const TagEntityName = "Tag";
8
7
  export declare const TagEntityLabel = "\u6587\u7AE0\u6807\u7B7E";
9
8
  /**
10
9
  * 文章标签
11
10
  *
12
11
  */
13
- export interface Tag extends WebsitePart {
12
+ export interface Tag {
14
13
  id?: string | null;
15
14
  /**
16
15
  * 名称
17
16
  */
18
17
  name?: string;
19
18
  color?: string;
19
+ updatedAt?: Date;
20
+ createdAt?: Date;
20
21
  lang?: Lang;
21
22
  posts?: Post[];
22
23
  products?: Product[];
@@ -1,6 +1,6 @@
1
- import { WebsitePartBoolExp } from './WebsitePartBoolExp';
2
1
  import { IdComparisonExp } from './IdComparisonExp';
3
2
  import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
4
  import { LangBoolExp } from './LangBoolExp';
5
5
  import { PostBoolExp } from './PostBoolExp';
6
6
  import { ProductBoolExp } from './ProductBoolExp';
@@ -9,13 +9,15 @@ import { WebsiteBoolExp } from './WebsiteBoolExp';
9
9
  * 文章标签
10
10
  *
11
11
  */
12
- export interface TagBoolExp extends WebsitePartBoolExp {
12
+ export interface TagBoolExp {
13
13
  _and?: TagBoolExp[];
14
14
  _or?: TagBoolExp[];
15
15
  _not?: TagBoolExp;
16
16
  id?: IdComparisonExp;
17
17
  name?: StringComparisonExp;
18
18
  color?: StringComparisonExp;
19
+ updatedAt?: DateTimeComparisonExp;
20
+ createdAt?: DateTimeComparisonExp;
19
21
  lang?: LangBoolExp;
20
22
  posts?: PostBoolExp;
21
23
  products?: ProductBoolExp;
@@ -1,4 +1,3 @@
1
- import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
2
1
  export declare enum TagDistinctEnum {
3
2
  id = "id",
4
3
  /**
@@ -6,8 +5,7 @@ export declare enum TagDistinctEnum {
6
5
  */
7
6
  name = "name",
8
7
  color = "color",
9
- createdAt = "createdAt",
10
8
  updatedAt = "updatedAt",
11
- content = "content"
9
+ createdAt = "createdAt"
12
10
  }
13
- export type TagDistinctExp = TagDistinctEnum | WebsitePartDistinctExp;
11
+ export type TagDistinctExp = TagDistinctEnum;
@@ -5,18 +5,19 @@ import { ProductInput } from './ProductInput';
5
5
  import { WebsiteInput } from './WebsiteInput';
6
6
  import { SetHasMany } from '@rxdrag/entify-lib';
7
7
  import { SetHasOne } from '@rxdrag/entify-lib';
8
- import { WebsitePart } from './WebsitePart';
9
8
  /**
10
9
  * 文章标签
11
10
  *
12
11
  */
13
- export interface TagInput extends WebsitePart {
12
+ export interface TagInput {
14
13
  id?: string | null;
15
14
  /**
16
15
  * 名称
17
16
  */
18
17
  name?: string;
19
18
  color?: string;
19
+ updatedAt?: Date;
20
+ createdAt?: Date;
20
21
  lang?: SetHasOne<LangInput>;
21
22
  posts?: SetHasMany<PostInput>;
22
23
  products?: SetHasMany<ProductInput>;
@@ -1,14 +1,15 @@
1
1
  import { OrderBy } from '@rxdrag/entify-lib';
2
- import { WebsitePartOrderBy } from './WebsitePartOrderBy';
3
2
  /**
4
3
  * 文章标签
5
4
  *
6
5
  */
7
- export interface TagOrderBy extends WebsitePartOrderBy {
6
+ export interface TagOrderBy {
8
7
  id?: OrderBy;
9
8
  /**
10
9
  * 名称
11
10
  */
12
11
  name?: OrderBy;
13
12
  color?: OrderBy;
13
+ updatedAt?: OrderBy;
14
+ createdAt?: OrderBy;
14
15
  }
@@ -4,10 +4,10 @@ import { ComponentCategory } from './ComponentCategory';
4
4
  import { Page } from './Page';
5
5
  import { Lang } from './Lang';
6
6
  import { ThemeConfig } from './ThemeConfig';
7
- import { SectionTemplate } from './SectionTemplate';
8
- import { TemplateCategory } from './TemplateCategory';
9
7
  import { StyleConfig } from './StyleConfig';
10
8
  import { Website } from './Website';
9
+ import { ThemeFile } from './ThemeFile';
10
+ import { ThemeFileFolder } from './ThemeFileFolder';
11
11
  import { ThemeVersion } from './ThemeVersion';
12
12
  import { Theme } from './Theme';
13
13
  import { Aggregate } from './Aggregate';
@@ -31,16 +31,16 @@ export interface ThemeBranch {
31
31
  pages?: Page[];
32
32
  lang?: Lang;
33
33
  config?: ThemeConfig;
34
- templates?: SectionTemplate[];
35
- templateCategories?: TemplateCategory[];
36
34
  styleConfig?: StyleConfig;
37
35
  mockWebsite?: Website;
36
+ files?: ThemeFile[];
37
+ folders?: ThemeFileFolder[];
38
38
  marketVersion?: ThemeVersion;
39
39
  website?: Website;
40
40
  belongsToMain?: Theme;
41
41
  componentsAggregate?: Aggregate;
42
42
  componentCategoriesAggregate?: Aggregate;
43
43
  pagesAggregate?: Aggregate;
44
- templatesAggregate?: Aggregate;
45
- templateCategoriesAggregate?: Aggregate;
44
+ filesAggregate?: Aggregate;
45
+ foldersAggregate?: Aggregate;
46
46
  }
@@ -6,10 +6,10 @@ import { ComponentCategoryBoolExp } from './ComponentCategoryBoolExp';
6
6
  import { PageBoolExp } from './PageBoolExp';
7
7
  import { LangBoolExp } from './LangBoolExp';
8
8
  import { ThemeConfigBoolExp } from './ThemeConfigBoolExp';
9
- import { SectionTemplateBoolExp } from './SectionTemplateBoolExp';
10
- import { TemplateCategoryBoolExp } from './TemplateCategoryBoolExp';
11
9
  import { StyleConfigBoolExp } from './StyleConfigBoolExp';
12
10
  import { WebsiteBoolExp } from './WebsiteBoolExp';
11
+ import { ThemeFileBoolExp } from './ThemeFileBoolExp';
12
+ import { ThemeFileFolderBoolExp } from './ThemeFileFolderBoolExp';
13
13
  import { ThemeVersionBoolExp } from './ThemeVersionBoolExp';
14
14
  import { ThemeBoolExp } from './ThemeBoolExp';
15
15
  export interface ThemeBranchBoolExp {
@@ -30,10 +30,10 @@ export interface ThemeBranchBoolExp {
30
30
  pages?: PageBoolExp;
31
31
  lang?: LangBoolExp;
32
32
  config?: ThemeConfigBoolExp;
33
- templates?: SectionTemplateBoolExp;
34
- templateCategories?: TemplateCategoryBoolExp;
35
33
  styleConfig?: StyleConfigBoolExp;
36
34
  mockWebsite?: WebsiteBoolExp;
35
+ files?: ThemeFileBoolExp;
36
+ folders?: ThemeFileFolderBoolExp;
37
37
  marketVersion?: ThemeVersionBoolExp;
38
38
  website?: WebsiteBoolExp;
39
39
  belongsToMain?: ThemeBoolExp;
@@ -5,10 +5,10 @@ import { ComponentCategoryInput } from './ComponentCategoryInput';
5
5
  import { PageInput } from './PageInput';
6
6
  import { LangInput } from './LangInput';
7
7
  import { ThemeConfigInput } from './ThemeConfigInput';
8
- import { SectionTemplateInput } from './SectionTemplateInput';
9
- import { TemplateCategoryInput } from './TemplateCategoryInput';
10
8
  import { StyleConfigInput } from './StyleConfigInput';
11
9
  import { WebsiteInput } from './WebsiteInput';
10
+ import { ThemeFileInput } from './ThemeFileInput';
11
+ import { ThemeFileFolderInput } from './ThemeFileFolderInput';
12
12
  import { ThemeVersionInput } from './ThemeVersionInput';
13
13
  import { ThemeInput } from './ThemeInput';
14
14
  import { SetHasMany } from '@rxdrag/entify-lib';
@@ -31,10 +31,10 @@ export interface ThemeBranchInput {
31
31
  pages?: SetHasMany<PageInput>;
32
32
  lang?: SetHasOne<LangInput>;
33
33
  config?: SetHasOne<ThemeConfigInput>;
34
- templates?: SetHasMany<SectionTemplateInput>;
35
- templateCategories?: SetHasMany<TemplateCategoryInput>;
36
34
  styleConfig?: SetHasOne<StyleConfigInput>;
37
35
  mockWebsite?: SetHasOne<WebsiteInput>;
36
+ files?: SetHasMany<ThemeFileInput>;
37
+ folders?: SetHasMany<ThemeFileFolderInput>;
38
38
  marketVersion?: SetHasOne<ThemeVersionInput>;
39
39
  website?: SetHasOne<WebsiteInput>;
40
40
  belongsToMain?: SetHasOne<ThemeInput>;
@@ -0,0 +1,19 @@
1
+ import { FileRef } from './FileRef';
2
+ import { ThemeBranch } from './ThemeBranch';
3
+ import { ThemeFileFolder } from './ThemeFileFolder';
4
+ export declare const ThemeFileEntityName = "ThemeFile";
5
+ export declare const ThemeFileEntityLabel = "";
6
+ export interface ThemeFile {
7
+ id?: string | null;
8
+ name?: string;
9
+ code?: string;
10
+ updatedAt?: Date;
11
+ createdAt?: Date;
12
+ storageMeta?: FileRef;
13
+ size?: number;
14
+ mimelype?: string;
15
+ extName?: string;
16
+ mediaType?: string;
17
+ themeBranch?: ThemeBranch;
18
+ folder?: ThemeFileFolder;
19
+ }
@@ -1,19 +1,22 @@
1
1
  import { IdComparisonExp } from './IdComparisonExp';
2
2
  import { StringComparisonExp } from './StringComparisonExp';
3
- import { NumberComparisonExp } from './NumberComparisonExp';
4
3
  import { DateTimeComparisonExp } from './DateTimeComparisonExp';
5
- import { SectionTemplateBoolExp } from './SectionTemplateBoolExp';
4
+ import { NumberComparisonExp } from './NumberComparisonExp';
6
5
  import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
7
- export interface TemplateCategoryBoolExp {
8
- _and?: TemplateCategoryBoolExp[];
9
- _or?: TemplateCategoryBoolExp[];
10
- _not?: TemplateCategoryBoolExp;
6
+ import { ThemeFileFolderBoolExp } from './ThemeFileFolderBoolExp';
7
+ export interface ThemeFileBoolExp {
8
+ _and?: ThemeFileBoolExp[];
9
+ _or?: ThemeFileBoolExp[];
10
+ _not?: ThemeFileBoolExp;
11
11
  id?: IdComparisonExp;
12
12
  name?: StringComparisonExp;
13
- description?: StringComparisonExp;
14
- seqValue?: NumberComparisonExp;
15
- createdAt?: DateTimeComparisonExp;
13
+ code?: StringComparisonExp;
16
14
  updatedAt?: DateTimeComparisonExp;
17
- templates?: SectionTemplateBoolExp;
18
- theme?: ThemeBranchBoolExp;
15
+ createdAt?: DateTimeComparisonExp;
16
+ size?: NumberComparisonExp;
17
+ mimelype?: StringComparisonExp;
18
+ extName?: StringComparisonExp;
19
+ mediaType?: StringComparisonExp;
20
+ themeBranch?: ThemeBranchBoolExp;
21
+ folder?: ThemeFileFolderBoolExp;
19
22
  }
@@ -0,0 +1,13 @@
1
+ export declare enum ThemeFileDistinctEnum {
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 type ThemeFileDistinctExp = ThemeFileDistinctEnum;
@@ -0,0 +1,17 @@
1
+ import { ThemeFile } from './ThemeFile';
2
+ import { ThemeBranch } from './ThemeBranch';
3
+ import { Aggregate } from './Aggregate';
4
+ export declare const ThemeFileFolderEntityName = "ThemeFileFolder";
5
+ export declare const ThemeFileFolderEntityLabel = "";
6
+ export interface ThemeFileFolder {
7
+ id?: string | null;
8
+ name?: string;
9
+ upadteAt?: Date;
10
+ createdAt?: Date;
11
+ folders?: ThemeFileFolder[];
12
+ files?: ThemeFile[];
13
+ themeBranch?: ThemeBranch;
14
+ parent?: ThemeFileFolder;
15
+ foldersAggregate?: Aggregate;
16
+ filesAggregate?: Aggregate;
17
+ }
@@ -0,0 +1,18 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { ThemeFileBoolExp } from './ThemeFileBoolExp';
5
+ import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
6
+ export interface ThemeFileFolderBoolExp {
7
+ _and?: ThemeFileFolderBoolExp[];
8
+ _or?: ThemeFileFolderBoolExp[];
9
+ _not?: ThemeFileFolderBoolExp;
10
+ id?: IdComparisonExp;
11
+ name?: StringComparisonExp;
12
+ upadteAt?: DateTimeComparisonExp;
13
+ createdAt?: DateTimeComparisonExp;
14
+ folders?: ThemeFileFolderBoolExp;
15
+ files?: ThemeFileBoolExp;
16
+ themeBranch?: ThemeBranchBoolExp;
17
+ parent?: ThemeFileFolderBoolExp;
18
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum ThemeFileFolderDistinctEnum {
2
+ id = "id",
3
+ name = "name",
4
+ upadteAt = "upadteAt",
5
+ createdAt = "createdAt"
6
+ }
7
+ export type ThemeFileFolderDistinctExp = ThemeFileFolderDistinctEnum;
@@ -0,0 +1,17 @@
1
+ import { ThemeFileFolder } from './ThemeFileFolder';
2
+ import { ThemeFileInput } from './ThemeFileInput';
3
+ import { ThemeBranchInput } from './ThemeBranchInput';
4
+ import { SetHasMany } from '@rxdrag/entify-lib';
5
+ import { SetHasOne } from '@rxdrag/entify-lib';
6
+ export interface ThemeFileFolderInput {
7
+ id?: string | null;
8
+ name?: string;
9
+ upadteAt?: Date;
10
+ createdAt?: Date;
11
+ folders?: SetHasMany<ThemeFileFolderInput>;
12
+ files?: SetHasMany<ThemeFileInput>;
13
+ themeBranch?: SetHasOne<ThemeBranchInput>;
14
+ parent?: SetHasOne<ThemeFileFolderInput>;
15
+ }
16
+ export declare const themeFileFolderToInputCascade: (entity: ThemeFileFolder) => ThemeFileFolderInput;
17
+ export declare const themeFileFolderToInput: (entity: ThemeFileFolder) => ThemeFileFolderInput;
@@ -0,0 +1,7 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface ThemeFileFolderOrderBy {
3
+ id?: OrderBy;
4
+ name?: OrderBy;
5
+ upadteAt?: OrderBy;
6
+ createdAt?: OrderBy;
7
+ }
@@ -0,0 +1,21 @@
1
+ import { ThemeFile } from './ThemeFile';
2
+ import { FileRefInput } from './FileRefInput';
3
+ import { ThemeBranchInput } from './ThemeBranchInput';
4
+ import { ThemeFileFolderInput } from './ThemeFileFolderInput';
5
+ import { SetHasOne } from '@rxdrag/entify-lib';
6
+ export interface ThemeFileInput {
7
+ id?: string | null;
8
+ name?: string;
9
+ code?: string;
10
+ updatedAt?: Date;
11
+ createdAt?: Date;
12
+ storageMeta?: FileRefInput;
13
+ size?: number;
14
+ mimelype?: string;
15
+ extName?: string;
16
+ mediaType?: string;
17
+ themeBranch?: SetHasOne<ThemeBranchInput>;
18
+ folder?: SetHasOne<ThemeFileFolderInput>;
19
+ }
20
+ export declare const themeFileToInputCascade: (entity: ThemeFile) => ThemeFileInput;
21
+ export declare const themeFileToInput: (entity: ThemeFile) => ThemeFileInput;
@@ -0,0 +1,13 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface ThemeFileOrderBy {
3
+ id?: OrderBy;
4
+ name?: OrderBy;
5
+ code?: OrderBy;
6
+ updatedAt?: OrderBy;
7
+ createdAt?: OrderBy;
8
+ storageMeta?: OrderBy;
9
+ size?: OrderBy;
10
+ mimelype?: OrderBy;
11
+ extName?: OrderBy;
12
+ mediaType?: OrderBy;
13
+ }
@@ -5,7 +5,6 @@ import { Enquiry } from './Enquiry';
5
5
  import { Product } from './Product';
6
6
  import { Post } from './Post';
7
7
  import { PostCategory } from './PostCategory';
8
- import { Tag } from './Tag';
9
8
  import { Customer } from './Customer';
10
9
  import { ProductCategory } from './ProductCategory';
11
10
  import { SpamFilterRule } from './SpamFilterRule';
@@ -20,6 +19,7 @@ import { Bulletin } from './Bulletin';
20
19
  import { WebsiteSnapshot } from './WebsiteSnapshot';
21
20
  import { UserOperation } from './UserOperation';
22
21
  import { SvgIcon } from './SvgIcon';
22
+ import { Tag } from './Tag';
23
23
  import { Aggregate } from './Aggregate';
24
24
  export declare const WebsiteEntityName = "Website";
25
25
  export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
@@ -67,7 +67,6 @@ export interface Website {
67
67
  partsOfProduct?: Product[];
68
68
  partsOfPost?: Post[];
69
69
  partsOfPostCategory?: PostCategory[];
70
- partsOfTag?: Tag[];
71
70
  partsOfCustomer?: Customer[];
72
71
  partsOfProductCategory?: ProductCategory[];
73
72
  partsOfSpamFilterRule?: SpamFilterRule[];
@@ -83,6 +82,7 @@ export interface Website {
83
82
  snapshots?: WebsiteSnapshot[];
84
83
  userOperations?: UserOperation[];
85
84
  svgIcons?: SvgIcon[];
85
+ tags?: Tag[];
86
86
  mockBranch?: ThemeBranch;
87
87
  usersAggregate?: Aggregate;
88
88
  partsOfMediaFolderAggregate?: Aggregate;
@@ -90,7 +90,6 @@ export interface Website {
90
90
  partsOfProductAggregate?: Aggregate;
91
91
  partsOfPostAggregate?: Aggregate;
92
92
  partsOfPostCategoryAggregate?: Aggregate;
93
- partsOfTagAggregate?: Aggregate;
94
93
  partsOfCustomerAggregate?: Aggregate;
95
94
  partsOfProductCategoryAggregate?: Aggregate;
96
95
  partsOfSpamFilterRuleAggregate?: Aggregate;
@@ -103,4 +102,5 @@ export interface Website {
103
102
  snapshotsAggregate?: Aggregate;
104
103
  userOperationsAggregate?: Aggregate;
105
104
  svgIconsAggregate?: Aggregate;
105
+ tagsAggregate?: Aggregate;
106
106
  }
@@ -8,7 +8,6 @@ import { EnquiryBoolExp } from './EnquiryBoolExp';
8
8
  import { ProductBoolExp } from './ProductBoolExp';
9
9
  import { PostBoolExp } from './PostBoolExp';
10
10
  import { PostCategoryBoolExp } from './PostCategoryBoolExp';
11
- import { TagBoolExp } from './TagBoolExp';
12
11
  import { CustomerBoolExp } from './CustomerBoolExp';
13
12
  import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
14
13
  import { SpamFilterRuleBoolExp } from './SpamFilterRuleBoolExp';
@@ -23,6 +22,7 @@ import { BulletinBoolExp } from './BulletinBoolExp';
23
22
  import { WebsiteSnapshotBoolExp } from './WebsiteSnapshotBoolExp';
24
23
  import { UserOperationBoolExp } from './UserOperationBoolExp';
25
24
  import { SvgIconBoolExp } from './SvgIconBoolExp';
25
+ import { TagBoolExp } from './TagBoolExp';
26
26
  /**
27
27
  * 站点
28
28
  * 网站实体
@@ -49,7 +49,6 @@ export interface WebsiteBoolExp {
49
49
  partsOfProduct?: ProductBoolExp;
50
50
  partsOfPost?: PostBoolExp;
51
51
  partsOfPostCategory?: PostCategoryBoolExp;
52
- partsOfTag?: TagBoolExp;
53
52
  partsOfCustomer?: CustomerBoolExp;
54
53
  partsOfProductCategory?: ProductCategoryBoolExp;
55
54
  partsOfSpamFilterRule?: SpamFilterRuleBoolExp;
@@ -65,5 +64,6 @@ export interface WebsiteBoolExp {
65
64
  snapshots?: WebsiteSnapshotBoolExp;
66
65
  userOperations?: UserOperationBoolExp;
67
66
  svgIcons?: SvgIconBoolExp;
67
+ tags?: TagBoolExp;
68
68
  mockBranch?: ThemeBranchBoolExp;
69
69
  }
@@ -6,7 +6,6 @@ import { EnquiryInput } from './EnquiryInput';
6
6
  import { ProductInput } from './ProductInput';
7
7
  import { PostInput } from './PostInput';
8
8
  import { PostCategoryInput } from './PostCategoryInput';
9
- import { TagInput } from './TagInput';
10
9
  import { CustomerInput } from './CustomerInput';
11
10
  import { ProductCategoryInput } from './ProductCategoryInput';
12
11
  import { SpamFilterRuleInput } from './SpamFilterRuleInput';
@@ -21,6 +20,7 @@ import { BulletinInput } from './BulletinInput';
21
20
  import { WebsiteSnapshotInput } from './WebsiteSnapshotInput';
22
21
  import { UserOperationInput } from './UserOperationInput';
23
22
  import { SvgIconInput } from './SvgIconInput';
23
+ import { TagInput } from './TagInput';
24
24
  import { SetHasMany } from '@rxdrag/entify-lib';
25
25
  import { SetHasOne } from '@rxdrag/entify-lib';
26
26
  /**
@@ -67,7 +67,6 @@ export interface WebsiteInput {
67
67
  partsOfProduct?: SetHasMany<ProductInput>;
68
68
  partsOfPost?: SetHasMany<PostInput>;
69
69
  partsOfPostCategory?: SetHasMany<PostCategoryInput>;
70
- partsOfTag?: SetHasMany<TagInput>;
71
70
  partsOfCustomer?: SetHasMany<CustomerInput>;
72
71
  partsOfProductCategory?: SetHasMany<ProductCategoryInput>;
73
72
  partsOfSpamFilterRule?: SetHasMany<SpamFilterRuleInput>;
@@ -83,6 +82,7 @@ export interface WebsiteInput {
83
82
  snapshots?: SetHasMany<WebsiteSnapshotInput>;
84
83
  userOperations?: SetHasMany<UserOperationInput>;
85
84
  svgIcons?: SetHasMany<SvgIconInput>;
85
+ tags?: SetHasMany<TagInput>;
86
86
  mockBranch?: SetHasOne<ThemeBranchInput>;
87
87
  }
88
88
  export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;