@rxdrag/rxcms-models 0.1.4 → 0.2.0

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 (90) hide show
  1. package/dist/classes/AbilityQueryOptions.d.ts +13 -0
  2. package/dist/classes/CustomerQueryOptions.d.ts +48 -0
  3. package/dist/classes/EnquiryQueryOptions.d.ts +36 -0
  4. package/dist/classes/LangQueryOptions.d.ts +36 -0
  5. package/dist/classes/MediaFolderQueryOptions.d.ts +30 -0
  6. package/dist/classes/MediaQueryOptions.d.ts +32 -0
  7. package/dist/classes/PageQueryOptions.d.ts +44 -0
  8. package/dist/classes/PostCategoryQueryOptions.d.ts +30 -0
  9. package/dist/classes/PostQueryOptions.d.ts +68 -0
  10. package/dist/classes/ProductCategoryQueryOptions.d.ts +30 -0
  11. package/dist/classes/ProductQueryOptions.d.ts +69 -0
  12. package/dist/classes/QueryOptions.d.ts +27 -0
  13. package/dist/classes/RoleQueryOptions.d.ts +16 -0
  14. package/dist/classes/SlugQueryOptions.d.ts +30 -0
  15. package/dist/classes/TagQueryOptions.d.ts +35 -0
  16. package/dist/classes/TemplateCategoryQueryOptions.d.ts +30 -0
  17. package/dist/classes/TemplateQueryOptions.d.ts +33 -0
  18. package/dist/classes/ThemeQueryOptions.d.ts +33 -0
  19. package/dist/classes/UserQueryOptions.d.ts +69 -0
  20. package/dist/classes/WebsiteMetaQueryOptions.d.ts +7 -0
  21. package/dist/classes/WebsiteQueryOptions.d.ts +50 -0
  22. package/dist/classes/WebsiteSettingsQueryOptions.d.ts +32 -0
  23. package/dist/classes/WebsiteTypeQueryOptions.d.ts +33 -0
  24. package/dist/classes/index.d.ts +24 -0
  25. package/dist/classes/metainfo.d.ts +2 -0
  26. package/dist/fields/AbilityFields.d.ts +2 -0
  27. package/dist/fields/CustomerFields.d.ts +3 -1
  28. package/dist/fields/EnquiryFields.d.ts +3 -1
  29. package/dist/fields/LangFields.d.ts +2 -0
  30. package/dist/fields/MediaFields.d.ts +3 -1
  31. package/dist/fields/MediaFolderFields.d.ts +3 -1
  32. package/dist/fields/PageFields.d.ts +10 -3
  33. package/dist/fields/PostCategoryFields.d.ts +3 -1
  34. package/dist/fields/PostFields.d.ts +9 -2
  35. package/dist/fields/ProductCategoryFields.d.ts +3 -1
  36. package/dist/fields/ProductFields.d.ts +9 -2
  37. package/dist/fields/RoleFields.d.ts +3 -1
  38. package/dist/fields/SlugFields.d.ts +3 -1
  39. package/dist/fields/TagFields.d.ts +3 -1
  40. package/dist/fields/TemplateCategoryFields.d.ts +3 -1
  41. package/dist/fields/TemplateFields.d.ts +3 -1
  42. package/dist/fields/ThemeFields.d.ts +3 -1
  43. package/dist/fields/UserFields.d.ts +3 -1
  44. package/dist/fields/WebsiteFields.d.ts +3 -1
  45. package/dist/fields/WebsiteMetaFields.d.ts +2 -0
  46. package/dist/fields/WebsiteSettingsFields.d.ts +2 -0
  47. package/dist/fields/WebsiteTypeFields.d.ts +3 -1
  48. package/dist/fields/index.d.ts +0 -10
  49. package/dist/index.d.ts +1 -0
  50. package/dist/index.mjs +2380 -238
  51. package/dist/index.mjs.map +1 -1
  52. package/dist/interfaces/BaseEntityOrderBy.d.ts +1 -1
  53. package/dist/interfaces/CustomizeMediaOrderBy.d.ts +1 -1
  54. package/dist/interfaces/MediaAddonOrderBy.d.ts +5 -0
  55. package/dist/interfaces/MultiLangableOrderBy.d.ts +1 -1
  56. package/dist/interfaces/OgMeta.d.ts +5 -1
  57. package/dist/interfaces/OgMetaBoolExp.d.ts +5 -1
  58. package/dist/interfaces/OgMetaDistinctExp.d.ts +6 -2
  59. package/dist/interfaces/OgMetaOrderBy.d.ts +6 -2
  60. package/dist/interfaces/Page.d.ts +2 -0
  61. package/dist/interfaces/PageBoolExp.d.ts +2 -0
  62. package/dist/interfaces/PageDistinctExp.d.ts +5 -1
  63. package/dist/interfaces/PageInput.d.ts +2 -0
  64. package/dist/interfaces/PersonOrderBy.d.ts +1 -1
  65. package/dist/interfaces/Post.d.ts +1 -0
  66. package/dist/interfaces/PostBoolExp.d.ts +1 -0
  67. package/dist/interfaces/PostDistinctExp.d.ts +5 -1
  68. package/dist/interfaces/PostInput.d.ts +1 -0
  69. package/dist/interfaces/Product.d.ts +1 -0
  70. package/dist/interfaces/ProductBoolExp.d.ts +1 -0
  71. package/dist/interfaces/ProductDistinctExp.d.ts +5 -1
  72. package/dist/interfaces/ProductInput.d.ts +1 -0
  73. package/dist/interfaces/PublishableDistinctExp.d.ts +5 -1
  74. package/dist/interfaces/PublishableOrderBy.d.ts +1 -1
  75. package/dist/interfaces/SeoMetaOrderBy.d.ts +1 -1
  76. package/dist/interfaces/WebsiteContentDistinctExp.d.ts +5 -1
  77. package/dist/interfaces/WebsiteContentOrderBy.d.ts +1 -1
  78. package/dist/interfaces/WebsitePartOrderBy.d.ts +1 -1
  79. package/dist/interfaces/WebsiteUserOrderBy.d.ts +1 -1
  80. package/package.json +2 -2
  81. package/dist/fields/BaseEntityFields.d.ts +0 -15
  82. package/dist/fields/CustomizeMediaFields.d.ts +0 -7
  83. package/dist/fields/MultiLangableFields.d.ts +0 -4
  84. package/dist/fields/OgMetaFields.d.ts +0 -9
  85. package/dist/fields/PersonFields.d.ts +0 -26
  86. package/dist/fields/PublishableFields.d.ts +0 -35
  87. package/dist/fields/SeoMetaFields.d.ts +0 -6
  88. package/dist/fields/WebsiteContentFields.d.ts +0 -29
  89. package/dist/fields/WebsitePartFields.d.ts +0 -16
  90. package/dist/fields/WebsiteUserFields.d.ts +0 -35
@@ -0,0 +1,69 @@
1
+ import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { User, UserBoolExp, UserDistinctExp, UserOrderBy } from "../interfaces";
4
+ import { RoleQueryOptions } from './RoleQueryOptions';
5
+ import { Role } from '../interfaces';
6
+ import { RoleBoolExp } from '../interfaces';
7
+ import { MediaQueryOptions } from './MediaQueryOptions';
8
+ import { Media } from '../interfaces';
9
+ import { ProductQueryOptions } from './ProductQueryOptions';
10
+ import { Product } from '../interfaces';
11
+ import { ProductBoolExp } from '../interfaces';
12
+ import { PostQueryOptions } from './PostQueryOptions';
13
+ import { Post } from '../interfaces';
14
+ import { PostBoolExp } from '../interfaces';
15
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
16
+ import { Website } from '../interfaces';
17
+ import { WebsiteBoolExp } from '../interfaces';
18
+ export declare class UserQueryOptions extends QueryOptions<User, UserBoolExp, UserOrderBy, UserDistinctExp> {
19
+ constructor(fields?: (keyof User)[], queryArgs?: IQueryArgs<UserBoolExp, UserOrderBy, UserDistinctExp>);
20
+ id(): this;
21
+ loginName(): this;
22
+ name(): this;
23
+ mobileNumber(): this;
24
+ isSupperAdmin(): this;
25
+ password(): this;
26
+ createdAt(): this;
27
+ updatedAt(): this;
28
+ /**
29
+ * 职位
30
+ */
31
+ postion(): this;
32
+ /**
33
+ * 自我介绍
34
+ */
35
+ profile(): this;
36
+ userType(): this;
37
+ /**
38
+ * 邮箱
39
+ */
40
+ email(): this;
41
+ /**
42
+ * 电话
43
+ */
44
+ tel(): this;
45
+ /**
46
+ * 电话2
47
+ */
48
+ tel2(): this;
49
+ mobile(): this;
50
+ whatsApp(): this;
51
+ linkedIn(): this;
52
+ twitter(): this;
53
+ facebook(): this;
54
+ instagram(): this;
55
+ /**
56
+ * 简介
57
+ */
58
+ summary(): this;
59
+ roles(options?: RoleQueryOptions | (keyof Role)[]): this;
60
+ rolesAggregate(aggregate: IAggregate<RoleBoolExp>): this;
61
+ avatar(options?: MediaQueryOptions | (keyof Media)[]): this;
62
+ products(options?: ProductQueryOptions | (keyof Product)[]): this;
63
+ productsAggregate(aggregate: IAggregate<ProductBoolExp>): this;
64
+ posts(options?: PostQueryOptions | (keyof Post)[]): this;
65
+ postsAggregate(aggregate: IAggregate<PostBoolExp>): this;
66
+ websites(options?: WebsiteQueryOptions | (keyof Website)[]): this;
67
+ websitesAggregate(aggregate: IAggregate<WebsiteBoolExp>): this;
68
+ belongsTo(options?: WebsiteQueryOptions | (keyof Website)[]): this;
69
+ }
@@ -0,0 +1,7 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { WebsiteMeta, WebsiteMetaBoolExp, WebsiteMetaDistinctExp, WebsiteMetaOrderBy } from "../interfaces";
4
+ export declare class WebsiteMetaQueryOptions extends QueryOptions<WebsiteMeta, WebsiteMetaBoolExp, WebsiteMetaOrderBy, WebsiteMetaDistinctExp> {
5
+ constructor(fields?: (keyof WebsiteMeta)[], queryArgs?: IQueryArgs<WebsiteMetaBoolExp, WebsiteMetaOrderBy, WebsiteMetaDistinctExp>);
6
+ id(): this;
7
+ }
@@ -0,0 +1,50 @@
1
+ import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { Website, WebsiteBoolExp, WebsiteDistinctExp, WebsiteOrderBy } from "../interfaces";
4
+ import { WebsiteTypeQueryOptions } from './WebsiteTypeQueryOptions';
5
+ import { WebsiteType } from '../interfaces';
6
+ import { ThemeQueryOptions } from './ThemeQueryOptions';
7
+ import { Theme } from '../interfaces';
8
+ import { PageQueryOptions } from './PageQueryOptions';
9
+ import { Page } from '../interfaces';
10
+ import { UserQueryOptions } from './UserQueryOptions';
11
+ import { User } from '../interfaces';
12
+ import { UserBoolExp } from '../interfaces';
13
+ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
14
+ constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
15
+ id(): this;
16
+ /**
17
+ * 站点名称
18
+ */
19
+ name(): this;
20
+ /**
21
+ * 站点备注
22
+ */
23
+ remark(): this;
24
+ /**
25
+ * 创建者ID
26
+ */
27
+ createdBy(): this;
28
+ /**
29
+ * 创建时间
30
+ */
31
+ createdAt(): this;
32
+ /**
33
+ * 最近打开时间
34
+ */
35
+ lastOpenTime(): this;
36
+ /**
37
+ * 更新时间
38
+ */
39
+ updatedAt(): this;
40
+ /**
41
+ * 更新者ID
42
+ */
43
+ updatedBy(): this;
44
+ websiteType(options?: WebsiteTypeQueryOptions | (keyof WebsiteType)[]): this;
45
+ selectedTheme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
46
+ homePage(options?: PageQueryOptions | (keyof Page)[]): this;
47
+ owner(options?: UserQueryOptions | (keyof User)[]): this;
48
+ users(options?: UserQueryOptions | (keyof User)[]): this;
49
+ usersAggregate(aggregate: IAggregate<UserBoolExp>): this;
50
+ }
@@ -0,0 +1,32 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { WebsiteSettings, WebsiteSettingsBoolExp, WebsiteSettingsDistinctExp, WebsiteSettingsOrderBy } from "../interfaces";
4
+ export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSettings, WebsiteSettingsBoolExp, WebsiteSettingsOrderBy, WebsiteSettingsDistinctExp> {
5
+ constructor(fields?: (keyof WebsiteSettings)[], queryArgs?: IQueryArgs<WebsiteSettingsBoolExp, WebsiteSettingsOrderBy, WebsiteSettingsDistinctExp>);
6
+ id(): this;
7
+ /**
8
+ * 邮件配置
9
+ */
10
+ smtpConfig(): this;
11
+ contact(): this;
12
+ address(): this;
13
+ email(): this;
14
+ tel(): this;
15
+ fax(): this;
16
+ wechat(): this;
17
+ whatsapp(): this;
18
+ mobile(): this;
19
+ websiteId(): this;
20
+ /**
21
+ * 创建时间
22
+ */
23
+ createdAt(): this;
24
+ /**
25
+ * 更新时间
26
+ */
27
+ updatedAt(): this;
28
+ /**
29
+ * 备注
30
+ */
31
+ remark(): this;
32
+ }
@@ -0,0 +1,33 @@
1
+ import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { WebsiteType, WebsiteTypeBoolExp, WebsiteTypeDistinctExp, WebsiteTypeOrderBy } from "../interfaces";
4
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
+ import { Website } from '../interfaces';
6
+ import { WebsiteBoolExp } from '../interfaces';
7
+ export declare class WebsiteTypeQueryOptions extends QueryOptions<WebsiteType, WebsiteTypeBoolExp, WebsiteTypeOrderBy, WebsiteTypeDistinctExp> {
8
+ constructor(fields?: (keyof WebsiteType)[], queryArgs?: IQueryArgs<WebsiteTypeBoolExp, WebsiteTypeOrderBy, WebsiteTypeDistinctExp>);
9
+ id(): this;
10
+ /**
11
+ * 网站类型名称
12
+ */
13
+ name(): this;
14
+ /**
15
+ * 显示名称
16
+ */
17
+ displayName(): this;
18
+ pricePerMonth(): this;
19
+ pricePerYear(): this;
20
+ /**
21
+ * 备注
22
+ */
23
+ remark(): this;
24
+ createdAt(): this;
25
+ updatedAt(): this;
26
+ status(): this;
27
+ /**
28
+ * 等级
29
+ */
30
+ level(): this;
31
+ websites(options?: WebsiteQueryOptions | (keyof Website)[]): this;
32
+ websitesAggregate(aggregate: IAggregate<WebsiteBoolExp>): this;
33
+ }
@@ -0,0 +1,24 @@
1
+ export * from './UserQueryOptions';
2
+ export * from './RoleQueryOptions';
3
+ export * from './AbilityQueryOptions';
4
+ export * from './MediaQueryOptions';
5
+ export * from './WebsiteQueryOptions';
6
+ export * from './LangQueryOptions';
7
+ export * from './WebsiteTypeQueryOptions';
8
+ export * from './PageQueryOptions';
9
+ export * from './PostQueryOptions';
10
+ export * from './ProductQueryOptions';
11
+ export * from './SlugQueryOptions';
12
+ export * from './EnquiryQueryOptions';
13
+ export * from './WebsiteMetaQueryOptions';
14
+ export * from './WebsiteSettingsQueryOptions';
15
+ export * from './TemplateQueryOptions';
16
+ export * from './TemplateCategoryQueryOptions';
17
+ export * from './ThemeQueryOptions';
18
+ export * from './MediaFolderQueryOptions';
19
+ export * from './PostCategoryQueryOptions';
20
+ export * from './TagQueryOptions';
21
+ export * from './CustomerQueryOptions';
22
+ export * from './ProductCategoryQueryOptions';
23
+ export * from './QueryOptions';
24
+ export * from './metainfo';
@@ -0,0 +1,2 @@
1
+ export declare const associationsClasses: Record<string, Record<string, string>>;
2
+ export declare const aggregateEntities: Record<string, Record<string, string>>;
@@ -7,3 +7,5 @@ export declare enum AbilityFields {
7
7
  abilityType = "abilityType",
8
8
  roleId = "roleId"
9
9
  }
10
+ export declare enum AbilityAssciations {
11
+ }
@@ -35,7 +35,9 @@ export declare enum CustomerFields {
35
35
  /**
36
36
  * 简介
37
37
  */
38
- summary = "summary",
38
+ summary = "summary"
39
+ }
40
+ export declare enum CustomerAssciations {
39
41
  enquires = "enquires",
40
42
  enquiresAggregate = "enquiresAggregate"
41
43
  }
@@ -25,6 +25,8 @@ export declare enum EnquiryFields {
25
25
  /**
26
26
  * 备注
27
27
  */
28
- remark = "remark",
28
+ remark = "remark"
29
+ }
30
+ export declare enum EnquiryAssciations {
29
31
  customer = "customer"
30
32
  }
@@ -30,3 +30,5 @@ export declare enum LangFields {
30
30
  */
31
31
  updatedAt = "updatedAt"
32
32
  }
33
+ export declare enum LangAssciations {
34
+ }
@@ -12,7 +12,9 @@ export declare enum MediaFields {
12
12
  /**
13
13
  * 网站Id
14
14
  */
15
- websiteId = "websiteId",
15
+ websiteId = "websiteId"
16
+ }
17
+ export declare enum MediaAssciations {
16
18
  folder = "folder",
17
19
  avatarOfUser = "avatarOfUser",
18
20
  usedByProducts = "usedByProducts",
@@ -14,7 +14,9 @@ export declare enum MediaFolderFields {
14
14
  /**
15
15
  * 备注
16
16
  */
17
- remark = "remark",
17
+ remark = "remark"
18
+ }
19
+ export declare enum MediaFolderAssciations {
18
20
  children = "children",
19
21
  childrenAggregate = "childrenAggregate",
20
22
  parent = "parent",
@@ -22,10 +22,17 @@ export declare enum PageFields {
22
22
  seoDescription = "seoDescription",
23
23
  ogTitle = "ogTitle",
24
24
  ogDescription = "ogDescription",
25
- ogImageUrl = "ogImageUrl",
26
25
  ogUrl = "ogUrl",
27
26
  ogSiteName = "ogSiteName",
28
27
  ogType = "ogType",
29
- lang = "lang",
30
- slug = "slug"
28
+ xCard = "xCard",
29
+ xSite = "xSite",
30
+ xTitle = "xTitle",
31
+ xDescription = "xDescription",
32
+ xUrl = "xUrl",
33
+ lang = "lang"
34
+ }
35
+ export declare enum PageAssciations {
36
+ slug = "slug",
37
+ ogImage = "ogImage"
31
38
  }
@@ -14,7 +14,9 @@ export declare enum PostCategoryFields {
14
14
  /**
15
15
  * 备注
16
16
  */
17
- remark = "remark",
17
+ remark = "remark"
18
+ }
19
+ export declare enum PostCategoryAssciations {
18
20
  children = "children",
19
21
  childrenAggregate = "childrenAggregate",
20
22
  posts = "posts",
@@ -34,15 +34,22 @@ export declare enum PostFields {
34
34
  seoDescription = "seoDescription",
35
35
  ogTitle = "ogTitle",
36
36
  ogDescription = "ogDescription",
37
- ogImageUrl = "ogImageUrl",
38
37
  ogUrl = "ogUrl",
39
38
  ogSiteName = "ogSiteName",
40
39
  ogType = "ogType",
41
- lang = "lang",
40
+ xCard = "xCard",
41
+ xSite = "xSite",
42
+ xTitle = "xTitle",
43
+ xDescription = "xDescription",
44
+ xUrl = "xUrl",
45
+ lang = "lang"
46
+ }
47
+ export declare enum PostAssciations {
42
48
  slug = "slug",
43
49
  tags = "tags",
44
50
  tagsAggregate = "tagsAggregate",
45
51
  author = "author",
46
52
  cover = "cover",
53
+ ogImage = "ogImage",
47
54
  category = "category"
48
55
  }
@@ -14,7 +14,9 @@ export declare enum ProductCategoryFields {
14
14
  /**
15
15
  * 备注
16
16
  */
17
- remark = "remark",
17
+ remark = "remark"
18
+ }
19
+ export declare enum ProductCategoryAssciations {
18
20
  children = "children",
19
21
  childrenAggregate = "childrenAggregate",
20
22
  parent = "parent",
@@ -32,16 +32,23 @@ export declare enum ProductFields {
32
32
  seoDescription = "seoDescription",
33
33
  ogTitle = "ogTitle",
34
34
  ogDescription = "ogDescription",
35
- ogImageUrl = "ogImageUrl",
36
35
  ogUrl = "ogUrl",
37
36
  ogSiteName = "ogSiteName",
38
37
  ogType = "ogType",
39
- lang = "lang",
38
+ xCard = "xCard",
39
+ xSite = "xSite",
40
+ xTitle = "xTitle",
41
+ xDescription = "xDescription",
42
+ xUrl = "xUrl",
43
+ lang = "lang"
44
+ }
45
+ export declare enum ProductAssciations {
40
46
  category = "category",
41
47
  medias = "medias",
42
48
  mediasAggregate = "mediasAggregate",
43
49
  slug = "slug",
44
50
  tags = "tags",
45
51
  tagsAggregate = "tagsAggregate",
52
+ ogImage = "ogImage",
46
53
  creator = "creator"
47
54
  }
@@ -3,7 +3,9 @@ export declare enum RoleFields {
3
3
  name = "name",
4
4
  description = "description",
5
5
  createdAt = "createdAt",
6
- updatedAt = "updatedAt",
6
+ updatedAt = "updatedAt"
7
+ }
8
+ export declare enum RoleAssciations {
7
9
  users = "users",
8
10
  usersAggregate = "usersAggregate"
9
11
  }
@@ -13,7 +13,9 @@ export declare enum SlugFields {
13
13
  /**
14
14
  * 备注
15
15
  */
16
- remark = "remark",
16
+ remark = "remark"
17
+ }
18
+ export declare enum SlugAssciations {
17
19
  post = "post",
18
20
  product = "product",
19
21
  page = "page"
@@ -17,7 +17,9 @@ export declare enum TagFields {
17
17
  /**
18
18
  * 备注
19
19
  */
20
- remark = "remark",
20
+ remark = "remark"
21
+ }
22
+ export declare enum TagAssciations {
21
23
  posts = "posts",
22
24
  postsAggregate = "postsAggregate",
23
25
  products = "products",
@@ -14,7 +14,9 @@ export declare enum TemplateCategoryFields {
14
14
  /**
15
15
  * 备注
16
16
  */
17
- remark = "remark",
17
+ remark = "remark"
18
+ }
19
+ export declare enum TemplateCategoryAssciations {
18
20
  templates = "templates",
19
21
  templatesAggregate = "templatesAggregate",
20
22
  theme = "theme"
@@ -19,7 +19,9 @@ export declare enum TemplateFields {
19
19
  /**
20
20
  * 备注
21
21
  */
22
- remark = "remark",
22
+ remark = "remark"
23
+ }
24
+ export declare enum TemplateAssciations {
23
25
  category = "category",
24
26
  theme = "theme"
25
27
  }
@@ -15,7 +15,9 @@ export declare enum ThemeFields {
15
15
  /**
16
16
  * 备注
17
17
  */
18
- remark = "remark",
18
+ remark = "remark"
19
+ }
20
+ export declare enum ThemeAssciations {
19
21
  templates = "templates",
20
22
  templatesAggregate = "templatesAggregate",
21
23
  themlateCategories = "themlateCategories",
@@ -37,7 +37,9 @@ export declare enum UserFields {
37
37
  /**
38
38
  * 简介
39
39
  */
40
- summary = "summary",
40
+ summary = "summary"
41
+ }
42
+ export declare enum UserAssciations {
41
43
  roles = "roles",
42
44
  rolesAggregate = "rolesAggregate",
43
45
  avatar = "avatar",
@@ -27,7 +27,9 @@ export declare enum WebsiteFields {
27
27
  /**
28
28
  * 更新者ID
29
29
  */
30
- updatedBy = "updatedBy",
30
+ updatedBy = "updatedBy"
31
+ }
32
+ export declare enum WebsiteAssciations {
31
33
  websiteType = "websiteType",
32
34
  selectedTheme = "selectedTheme",
33
35
  homePage = "homePage",
@@ -1,3 +1,5 @@
1
1
  export declare enum WebsiteMetaFields {
2
2
  id = "id"
3
3
  }
4
+ export declare enum WebsiteMetaAssciations {
5
+ }
@@ -26,3 +26,5 @@ export declare enum WebsiteSettingsFields {
26
26
  */
27
27
  remark = "remark"
28
28
  }
29
+ export declare enum WebsiteSettingsAssciations {
30
+ }
@@ -20,7 +20,9 @@ export declare enum WebsiteTypeFields {
20
20
  /**
21
21
  * 等级
22
22
  */
23
- level = "level",
23
+ level = "level"
24
+ }
25
+ export declare enum WebsiteTypeAssciations {
24
26
  websites = "websites",
25
27
  websitesAggregate = "websitesAggregate"
26
28
  }
@@ -16,17 +16,7 @@ export * from './TemplateFields';
16
16
  export * from './TemplateCategoryFields';
17
17
  export * from './ThemeFields';
18
18
  export * from './MediaFolderFields';
19
- export * from './WebsitePartFields';
20
- export * from './WebsiteContentFields';
21
19
  export * from './PostCategoryFields';
22
20
  export * from './TagFields';
23
- export * from './SeoMetaFields';
24
- export * from './OgMetaFields';
25
- export * from './PublishableFields';
26
- export * from './PersonFields';
27
21
  export * from './CustomerFields';
28
- export * from './BaseEntityFields';
29
- export * from './MultiLangableFields';
30
- export * from './WebsiteUserFields';
31
- export * from './CustomizeMediaFields';
32
22
  export * from './ProductCategoryFields';
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from "./classes";
1
2
  export * from "./entries";
2
3
  export * from './interfaces';
3
4
  export * from './fields';