@rxdrag/rxcms-models 0.2.2 → 0.2.4

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 (112) hide show
  1. package/dist/classes/CustomerQueryOptions.d.ts +3 -0
  2. package/dist/classes/EnquiryQueryOptions.d.ts +3 -0
  3. package/dist/classes/LangQueryOptions.d.ts +2 -0
  4. package/dist/classes/MediaFolderQueryOptions.d.ts +2 -0
  5. package/dist/classes/MediaQueryOptions.d.ts +9 -3
  6. package/dist/classes/PageQueryOptions.d.ts +2 -3
  7. package/dist/classes/PostCategoryQueryOptions.d.ts +2 -0
  8. package/dist/classes/PostQueryOptions.d.ts +4 -8
  9. package/dist/classes/ProductCategoryQueryOptions.d.ts +5 -0
  10. package/dist/classes/ProductQueryOptions.d.ts +11 -9
  11. package/dist/classes/SpamFilterRuleQueryOptions.d.ts +19 -0
  12. package/dist/classes/TagQueryOptions.d.ts +2 -0
  13. package/dist/classes/TemplateCategoryQueryOptions.d.ts +2 -0
  14. package/dist/classes/TemplateQueryOptions.d.ts +2 -0
  15. package/dist/classes/ThemeQueryOptions.d.ts +2 -0
  16. package/dist/classes/WebsiteSettingsQueryOptions.d.ts +21 -0
  17. package/dist/classes/index.d.ts +1 -1
  18. package/dist/entries/index.d.ts +1 -1
  19. package/dist/entries/spamFilterRuleEntry.d.ts +2 -0
  20. package/dist/fields/CustomerFields.d.ts +3 -0
  21. package/dist/fields/EnquiryFields.d.ts +3 -0
  22. package/dist/fields/LangFields.d.ts +2 -0
  23. package/dist/fields/MediaFields.d.ts +3 -1
  24. package/dist/fields/MediaFolderFields.d.ts +2 -0
  25. package/dist/fields/PageFields.d.ts +2 -1
  26. package/dist/fields/PostCategoryFields.d.ts +2 -0
  27. package/dist/fields/PostFields.d.ts +5 -7
  28. package/dist/fields/ProductCategoryFields.d.ts +3 -0
  29. package/dist/fields/ProductFields.d.ts +8 -5
  30. package/dist/fields/SpamFilterRuleFields.d.ts +17 -0
  31. package/dist/fields/TagFields.d.ts +2 -0
  32. package/dist/fields/TemplateCategoryFields.d.ts +2 -0
  33. package/dist/fields/TemplateFields.d.ts +2 -0
  34. package/dist/fields/ThemeFields.d.ts +2 -0
  35. package/dist/fields/WebsiteSettingsFields.d.ts +21 -0
  36. package/dist/fields/index.d.ts +1 -1
  37. package/dist/index.mjs +730 -339
  38. package/dist/index.mjs.map +1 -1
  39. package/dist/interfaces/AttachmentAddon.d.ts +3 -0
  40. package/dist/interfaces/AttachmentAddonOrderBy.d.ts +4 -0
  41. package/dist/interfaces/BooleanComparisonExp.d.ts +1 -0
  42. package/dist/interfaces/Customer.d.ts +1 -0
  43. package/dist/interfaces/CustomerBoolExp.d.ts +2 -0
  44. package/dist/interfaces/CustomerDistinctExp.d.ts +3 -0
  45. package/dist/interfaces/CustomerInput.d.ts +1 -0
  46. package/dist/interfaces/CustomerOrderBy.d.ts +1 -0
  47. package/dist/interfaces/Enquiry.d.ts +1 -0
  48. package/dist/interfaces/EnquiryBoolExp.d.ts +1 -0
  49. package/dist/interfaces/EnquiryDistinctExp.d.ts +3 -0
  50. package/dist/interfaces/EnquiryInput.d.ts +1 -0
  51. package/dist/interfaces/EnquiryOrderBy.d.ts +1 -0
  52. package/dist/interfaces/LangDistinctExp.d.ts +2 -0
  53. package/dist/interfaces/Media.d.ts +5 -1
  54. package/dist/interfaces/MediaBoolExp.d.ts +2 -0
  55. package/dist/interfaces/MediaFolderDistinctExp.d.ts +2 -0
  56. package/dist/interfaces/MediaInput.d.ts +4 -1
  57. package/dist/interfaces/Page.d.ts +0 -2
  58. package/dist/interfaces/PageBoolExp.d.ts +0 -2
  59. package/dist/interfaces/PageDistinctExp.d.ts +2 -0
  60. package/dist/interfaces/PageInput.d.ts +0 -2
  61. package/dist/interfaces/Post.d.ts +2 -3
  62. package/dist/interfaces/PostBoolExp.d.ts +2 -3
  63. package/dist/interfaces/PostCategoryDistinctExp.d.ts +2 -0
  64. package/dist/interfaces/PostDistinctExp.d.ts +2 -5
  65. package/dist/interfaces/PostInput.d.ts +2 -3
  66. package/dist/interfaces/PostOrderBy.d.ts +0 -1
  67. package/dist/interfaces/Product.d.ts +9 -4
  68. package/dist/interfaces/ProductBoolExp.d.ts +5 -4
  69. package/dist/interfaces/ProductCategory.d.ts +2 -0
  70. package/dist/interfaces/ProductCategoryBoolExp.d.ts +2 -0
  71. package/dist/interfaces/ProductCategoryDistinctExp.d.ts +2 -0
  72. package/dist/interfaces/ProductCategoryInput.d.ts +2 -0
  73. package/dist/interfaces/ProductDistinctExp.d.ts +5 -3
  74. package/dist/interfaces/ProductInput.d.ts +9 -4
  75. package/dist/interfaces/ProductOrderBy.d.ts +5 -1
  76. package/dist/interfaces/Publishable.d.ts +4 -4
  77. package/dist/interfaces/PublishableBoolExp.d.ts +4 -1
  78. package/dist/interfaces/PublishableDistinctExp.d.ts +2 -4
  79. package/dist/interfaces/PublishableOrderBy.d.ts +4 -4
  80. package/dist/interfaces/SmtpConfig.d.ts +36 -0
  81. package/dist/interfaces/SpamFilterRule.d.ts +15 -0
  82. package/dist/interfaces/SpamFilterRuleBoolExp.d.ts +19 -0
  83. package/dist/interfaces/SpamFilterRuleDistinctExp.d.ts +17 -0
  84. package/dist/interfaces/SpamFilterRuleInput.d.ts +16 -0
  85. package/dist/interfaces/SpamFilterRuleOrderBy.d.ts +14 -0
  86. package/dist/interfaces/TagDistinctExp.d.ts +2 -0
  87. package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +2 -0
  88. package/dist/interfaces/TemplateDistinctExp.d.ts +2 -0
  89. package/dist/interfaces/ThemeBoolExp.d.ts +1 -2
  90. package/dist/interfaces/ThemeDistinctExp.d.ts +2 -0
  91. package/dist/interfaces/WebsiteContentDistinctExp.d.ts +2 -0
  92. package/dist/interfaces/WebsitePart.d.ts +2 -0
  93. package/dist/interfaces/WebsitePartBoolExp.d.ts +2 -0
  94. package/dist/interfaces/WebsitePartDistinctExp.d.ts +2 -0
  95. package/dist/interfaces/WebsitePartOrderBy.d.ts +2 -0
  96. package/dist/interfaces/WebsiteSettings.d.ts +21 -1
  97. package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +9 -1
  98. package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +21 -0
  99. package/dist/interfaces/WebsiteSettingsInput.d.ts +21 -1
  100. package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +19 -0
  101. package/dist/interfaces/WebsiteUser.d.ts +1 -1
  102. package/dist/interfaces/WebsiteUserBoolExp.d.ts +1 -1
  103. package/dist/interfaces/index.d.ts +37 -5
  104. package/package.json +2 -2
  105. package/dist/classes/SlugQueryOptions.d.ts +0 -30
  106. package/dist/entries/slugEntry.d.ts +0 -2
  107. package/dist/fields/SlugFields.d.ts +0 -22
  108. package/dist/interfaces/Slug.d.ts +0 -13
  109. package/dist/interfaces/SlugBoolExp.d.ts +0 -16
  110. package/dist/interfaces/SlugDistinctExp.d.ts +0 -19
  111. package/dist/interfaces/SlugInput.d.ts +0 -15
  112. package/dist/interfaces/SlugOrderBy.d.ts +0 -6
@@ -7,7 +7,10 @@ import { EnquiryBoolExp } from '../interfaces';
7
7
  export declare class CustomerQueryOptions extends QueryOptions<Customer, CustomerBoolExp, CustomerOrderBy, CustomerDistinctExp> {
8
8
  constructor(fields?: (keyof Customer)[], queryArgs?: IQueryArgs<CustomerBoolExp, CustomerOrderBy, CustomerDistinctExp>);
9
9
  id(): this;
10
+ company(): this;
10
11
  websiteId(): this;
12
+ slug(): this;
13
+ description(): this;
11
14
  /**
12
15
  * 创建时间
13
16
  */
@@ -19,7 +19,10 @@ export declare class EnquiryQueryOptions extends QueryOptions<Enquiry, EnquiryBo
19
19
  */
20
20
  fromCta(): this;
21
21
  read(): this;
22
+ spam(): this;
22
23
  websiteId(): this;
24
+ slug(): this;
25
+ description(): this;
23
26
  /**
24
27
  * 创建时间
25
28
  */
@@ -25,6 +25,8 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
25
25
  */
26
26
  remark(): this;
27
27
  websiteId(): this;
28
+ slug(): this;
29
+ description(): this;
28
30
  /**
29
31
  * 创建时间
30
32
  */
@@ -10,6 +10,8 @@ export declare class MediaFolderQueryOptions extends QueryOptions<MediaFolder, M
10
10
  name(): this;
11
11
  seqValue(): this;
12
12
  websiteId(): this;
13
+ slug(): this;
14
+ description(): this;
13
15
  /**
14
16
  * 创建时间
15
17
  */
@@ -1,7 +1,8 @@
1
1
  import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
- import { Media, MediaBoolExp, MediaDistinctExp, MediaOrderBy, MediaAddon } from "../interfaces";
3
+ import { Media, MediaBoolExp, MediaDistinctExp, MediaOrderBy, MediaAddon, AttachmentAddon } from "../interfaces";
4
4
  import { MediaAddonOrderBy } from "../interfaces/MediaAddonOrderBy";
5
+ import { AttachmentAddonOrderBy } from "../interfaces/AttachmentAddonOrderBy";
5
6
  import { MediaFolderQueryOptions } from './MediaFolderQueryOptions';
6
7
  import { MediaFolder } from '../interfaces';
7
8
  import { UserQueryOptions } from './UserQueryOptions';
@@ -9,8 +10,11 @@ import { User } from '../interfaces';
9
10
  import { ProductQueryOptions } from './ProductQueryOptions';
10
11
  import { Product } from '../interfaces';
11
12
  import { ProductBoolExp } from '../interfaces';
12
- export declare class MediaQueryOptions extends QueryOptions<(Media & MediaAddon), MediaBoolExp, (MediaOrderBy & MediaAddonOrderBy), MediaDistinctExp> {
13
- constructor(fields?: (keyof (Media & MediaAddon))[], queryArgs?: IQueryArgs<MediaBoolExp, (MediaOrderBy & MediaAddonOrderBy), MediaDistinctExp>);
13
+ import { ProductCategoryQueryOptions } from './ProductCategoryQueryOptions';
14
+ import { ProductCategory } from '../interfaces';
15
+ import { ProductCategoryBoolExp } from '../interfaces';
16
+ export declare class MediaQueryOptions extends QueryOptions<(Media & MediaAddon & AttachmentAddon), MediaBoolExp, (MediaOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), MediaDistinctExp> {
17
+ constructor(fields?: (keyof (Media & MediaAddon & AttachmentAddon))[], queryArgs?: IQueryArgs<MediaBoolExp, (MediaOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), MediaDistinctExp>);
14
18
  id(): this;
15
19
  name(): this;
16
20
  size(): this;
@@ -31,4 +35,6 @@ export declare class MediaQueryOptions extends QueryOptions<(Media & MediaAddon)
31
35
  usedByProductsAggregate(aggregate: IAggregate<ProductBoolExp>): this;
32
36
  attachmentOf(options?: ProductQueryOptions | (keyof Product)[]): this;
33
37
  attachmentOfAggregate(aggregate: IAggregate<ProductBoolExp>): this;
38
+ meidaOfProduct(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
39
+ meidaOfProductAggregate(aggregate: IAggregate<ProductCategoryBoolExp>): this;
34
40
  }
@@ -1,8 +1,6 @@
1
1
  import { IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { Page, PageBoolExp, PageDistinctExp, PageOrderBy } from "../interfaces";
4
- import { SlugQueryOptions } from './SlugQueryOptions';
5
- import { Slug } from '../interfaces';
6
4
  import { MediaQueryOptions } from './MediaQueryOptions';
7
5
  import { Media } from '../interfaces';
8
6
  export declare class PageQueryOptions extends QueryOptions<Page, PageBoolExp, PageOrderBy, PageDistinctExp> {
@@ -17,6 +15,8 @@ export declare class PageQueryOptions extends QueryOptions<Page, PageBoolExp, Pa
17
15
  langAbbr(): this;
18
16
  extends(): this;
19
17
  websiteId(): this;
18
+ slug(): this;
19
+ description(): this;
20
20
  /**
21
21
  * 创建时间
22
22
  */
@@ -39,6 +39,5 @@ export declare class PageQueryOptions extends QueryOptions<Page, PageBoolExp, Pa
39
39
  xDescription(): this;
40
40
  xUrl(): this;
41
41
  lang(): this;
42
- slug(options?: SlugQueryOptions | (keyof Slug)[]): this;
43
42
  ogImage(options?: MediaQueryOptions | (keyof Media)[]): this;
44
43
  }
@@ -10,6 +10,8 @@ export declare class PostCategoryQueryOptions extends QueryOptions<PostCategory,
10
10
  name(): this;
11
11
  seqValue(): this;
12
12
  websiteId(): this;
13
+ slug(): this;
14
+ description(): this;
13
15
  /**
14
16
  * 创建时间
15
17
  */
@@ -1,8 +1,6 @@
1
1
  import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { Post, PostBoolExp, PostDistinctExp, PostOrderBy } from "../interfaces";
4
- import { SlugQueryOptions } from './SlugQueryOptions';
5
- import { Slug } from '../interfaces';
6
4
  import { TagQueryOptions } from './TagQueryOptions';
7
5
  import { Tag } from '../interfaces';
8
6
  import { TagBoolExp } from '../interfaces';
@@ -21,17 +19,14 @@ export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, Po
21
19
  */
22
20
  pinToTop(): this;
23
21
  authorEmail(): this;
24
- summary(): this;
25
- /**
26
- * 发布的内容
27
- */
28
- publishedContent(): this;
29
22
  publishedAt(): this;
30
23
  status(): this;
31
24
  title(): this;
32
25
  content(): this;
33
26
  extends(): this;
34
27
  websiteId(): this;
28
+ slug(): this;
29
+ description(): this;
35
30
  /**
36
31
  * 创建时间
37
32
  */
@@ -58,11 +53,12 @@ export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, Po
58
53
  xDescription(): this;
59
54
  xUrl(): this;
60
55
  lang(): this;
61
- slug(options?: SlugQueryOptions | (keyof Slug)[]): this;
62
56
  tags(options?: TagQueryOptions | (keyof Tag)[]): this;
63
57
  tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
64
58
  author(options?: UserQueryOptions | (keyof User)[]): this;
65
59
  cover(options?: MediaQueryOptions | (keyof Media)[]): this;
66
60
  ogImage(options?: MediaQueryOptions | (keyof Media)[]): this;
61
+ draftOf(options?: PostQueryOptions | (keyof Post)[]): this;
67
62
  category(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
63
+ draft(options?: PostQueryOptions | (keyof Post)[]): this;
68
64
  }
@@ -1,6 +1,8 @@
1
1
  import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { ProductCategory, ProductCategoryBoolExp, ProductCategoryDistinctExp, ProductCategoryOrderBy } from "../interfaces";
4
+ import { MediaQueryOptions } from './MediaQueryOptions';
5
+ import { Media } from '../interfaces';
4
6
  import { ProductQueryOptions } from './ProductQueryOptions';
5
7
  import { Product } from '../interfaces';
6
8
  import { ProductBoolExp } from '../interfaces';
@@ -10,6 +12,8 @@ export declare class ProductCategoryQueryOptions extends QueryOptions<ProductCat
10
12
  name(): this;
11
13
  seqValue(): this;
12
14
  websiteId(): this;
15
+ slug(): this;
16
+ description(): this;
13
17
  /**
14
18
  * 创建时间
15
19
  */
@@ -24,6 +28,7 @@ export declare class ProductCategoryQueryOptions extends QueryOptions<ProductCat
24
28
  remark(): this;
25
29
  children(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
26
30
  childrenAggregate(aggregate: IAggregate<ProductCategoryBoolExp>): this;
31
+ media(options?: MediaQueryOptions | (keyof Media)[]): this;
27
32
  parent(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
28
33
  products(options?: ProductQueryOptions | (keyof Product)[]): this;
29
34
  productsAggregate(aggregate: IAggregate<ProductBoolExp>): this;
@@ -1,24 +1,22 @@
1
1
  import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
- import { Product, ProductBoolExp, ProductDistinctExp, ProductOrderBy, MediaAddon } from "../interfaces";
3
+ import { Product, ProductBoolExp, ProductDistinctExp, ProductOrderBy, MediaAddon, AttachmentAddon } from "../interfaces";
4
4
  import { MediaAddonOrderBy } from "../interfaces/MediaAddonOrderBy";
5
+ import { AttachmentAddonOrderBy } from "../interfaces/AttachmentAddonOrderBy";
5
6
  import { ProductCategoryQueryOptions } from './ProductCategoryQueryOptions';
6
7
  import { ProductCategory } from '../interfaces';
7
8
  import { MediaQueryOptions } from './MediaQueryOptions';
8
9
  import { Media } from '../interfaces';
9
10
  import { MediaBoolExp } from '../interfaces';
10
- import { SlugQueryOptions } from './SlugQueryOptions';
11
- import { Slug } from '../interfaces';
12
11
  import { TagQueryOptions } from './TagQueryOptions';
13
12
  import { Tag } from '../interfaces';
14
13
  import { TagBoolExp } from '../interfaces';
15
14
  import { UserQueryOptions } from './UserQueryOptions';
16
15
  import { User } from '../interfaces';
17
- export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAddon), ProductBoolExp, (ProductOrderBy & MediaAddonOrderBy), ProductDistinctExp> {
18
- constructor(fields?: (keyof (Product & MediaAddon))[], queryArgs?: IQueryArgs<ProductBoolExp, (ProductOrderBy & MediaAddonOrderBy), ProductDistinctExp>);
16
+ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAddon & AttachmentAddon), ProductBoolExp, (ProductOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), ProductDistinctExp> {
17
+ constructor(fields?: (keyof (Product & MediaAddon & AttachmentAddon))[], queryArgs?: IQueryArgs<ProductBoolExp, (ProductOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), ProductDistinctExp>);
19
18
  id(): this;
20
19
  published(): this;
21
- summary(): this;
22
20
  featured(): this;
23
21
  showInNavMenu(): this;
24
22
  seqValue(): this;
@@ -28,16 +26,19 @@ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAd
28
26
  features(): this;
29
27
  content2(): this;
30
28
  content3(): this;
29
+ shortTitle(): this;
31
30
  /**
32
- * 发布的内容
31
+ * 第三方视频url
33
32
  */
34
- publishedContent(): this;
33
+ externalVideoUrl(): this;
35
34
  publishedAt(): this;
36
35
  status(): this;
37
36
  title(): this;
38
37
  content(): this;
39
38
  extends(): this;
40
39
  websiteId(): this;
40
+ slug(): this;
41
+ description(): this;
41
42
  /**
42
43
  * 创建时间
43
44
  */
@@ -67,11 +68,12 @@ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAd
67
68
  category(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
68
69
  medias(options?: MediaQueryOptions | (keyof Media)[]): this;
69
70
  mediasAggregate(aggregate: IAggregate<MediaBoolExp>): this;
70
- slug(options?: SlugQueryOptions | (keyof Slug)[]): this;
71
71
  tags(options?: TagQueryOptions | (keyof Tag)[]): this;
72
72
  tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
73
73
  ogImage(options?: MediaQueryOptions | (keyof Media)[]): this;
74
74
  attachments(options?: MediaQueryOptions | (keyof Media)[]): this;
75
75
  attachmentsAggregate(aggregate: IAggregate<MediaBoolExp>): this;
76
+ draftOf(options?: ProductQueryOptions | (keyof Product)[]): this;
76
77
  creator(options?: UserQueryOptions | (keyof User)[]): this;
78
+ draft(options?: ProductQueryOptions | (keyof Product)[]): this;
77
79
  }
@@ -0,0 +1,19 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { SpamFilterRule, SpamFilterRuleBoolExp, SpamFilterRuleDistinctExp, SpamFilterRuleOrderBy } from "../interfaces";
4
+ export declare class SpamFilterRuleQueryOptions extends QueryOptions<SpamFilterRule, SpamFilterRuleBoolExp, SpamFilterRuleOrderBy, SpamFilterRuleDistinctExp> {
5
+ constructor(fields?: (keyof SpamFilterRule)[], queryArgs?: IQueryArgs<SpamFilterRuleBoolExp, SpamFilterRuleOrderBy, SpamFilterRuleDistinctExp>);
6
+ id(): this;
7
+ emails(): this;
8
+ ips(): this;
9
+ keywords(): this;
10
+ createdAt(): this;
11
+ updatedAt(): this;
12
+ websiteId(): this;
13
+ slug(): this;
14
+ description(): this;
15
+ /**
16
+ * 备注
17
+ */
18
+ remark(): this;
19
+ }
@@ -16,6 +16,8 @@ export declare class TagQueryOptions extends QueryOptions<Tag, TagBoolExp, TagOr
16
16
  name(): this;
17
17
  color(): this;
18
18
  websiteId(): this;
19
+ slug(): this;
20
+ description(): this;
19
21
  /**
20
22
  * 创建时间
21
23
  */
@@ -12,6 +12,8 @@ export declare class TemplateCategoryQueryOptions extends QueryOptions<TemplateC
12
12
  name(): this;
13
13
  seqValue(): this;
14
14
  websiteId(): this;
15
+ slug(): this;
16
+ description(): this;
15
17
  /**
16
18
  * 创建时间
17
19
  */
@@ -16,6 +16,8 @@ export declare class TemplateQueryOptions extends QueryOptions<Template, Templat
16
16
  */
17
17
  templateType(): this;
18
18
  websiteId(): this;
19
+ slug(): this;
20
+ description(): this;
19
21
  /**
20
22
  * 创建时间
21
23
  */
@@ -14,6 +14,8 @@ export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp,
14
14
  styles(): this;
15
15
  settings(): this;
16
16
  websiteId(): this;
17
+ slug(): this;
18
+ description(): this;
17
19
  /**
18
20
  * 创建时间
19
21
  */
@@ -16,7 +16,28 @@ export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSet
16
16
  wechat(): this;
17
17
  whatsapp(): this;
18
18
  mobile(): this;
19
+ robots(): this;
20
+ /**
21
+ * 站点名称
22
+ */
23
+ websiteName(): this;
24
+ /**
25
+ * 域名
26
+ */
27
+ domain(): this;
28
+ /**
29
+ * 打开iRobots
30
+ */
31
+ openRobots(): this;
32
+ /**
33
+ * 301映射表
34
+ */
35
+ map301(): this;
36
+ headerCode(): this;
37
+ footerCode(): this;
19
38
  websiteId(): this;
39
+ slug(): this;
40
+ description(): this;
20
41
  /**
21
42
  * 创建时间
22
43
  */
@@ -8,7 +8,6 @@ export * from './WebsiteTypeQueryOptions';
8
8
  export * from './PageQueryOptions';
9
9
  export * from './PostQueryOptions';
10
10
  export * from './ProductQueryOptions';
11
- export * from './SlugQueryOptions';
12
11
  export * from './EnquiryQueryOptions';
13
12
  export * from './WebsiteMetaQueryOptions';
14
13
  export * from './WebsiteSettingsQueryOptions';
@@ -20,5 +19,6 @@ export * from './PostCategoryQueryOptions';
20
19
  export * from './TagQueryOptions';
21
20
  export * from './CustomerQueryOptions';
22
21
  export * from './ProductCategoryQueryOptions';
22
+ export * from './SpamFilterRuleQueryOptions';
23
23
  export * from './QueryOptions';
24
24
  export * from './metainfo';
@@ -8,7 +8,6 @@ export * from './websiteTypeEntry';
8
8
  export * from './pageEntry';
9
9
  export * from './postEntry';
10
10
  export * from './productEntry';
11
- export * from './slugEntry';
12
11
  export * from './enquiryEntry';
13
12
  export * from './websiteMetaEntry';
14
13
  export * from './websiteSettingsEntry';
@@ -20,3 +19,4 @@ export * from './postCategoryEntry';
20
19
  export * from './tagEntry';
21
20
  export * from './customerEntry';
22
21
  export * from './productCategoryEntry';
22
+ export * from './spamFilterRuleEntry';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-hooks";
2
+ export declare const spamFilterRuleEntry: EntityEntry;
@@ -1,6 +1,9 @@
1
1
  export declare enum CustomerFields {
2
2
  id = "id",
3
+ company = "company",
3
4
  websiteId = "websiteId",
5
+ slug = "slug",
6
+ description = "description",
4
7
  /**
5
8
  * 创建时间
6
9
  */
@@ -13,7 +13,10 @@ export declare enum EnquiryFields {
13
13
  */
14
14
  fromCta = "fromCta",
15
15
  read = "read",
16
+ spam = "spam",
16
17
  websiteId = "websiteId",
18
+ slug = "slug",
19
+ description = "description",
17
20
  /**
18
21
  * 创建时间
19
22
  */
@@ -21,6 +21,8 @@ export declare enum LangFields {
21
21
  */
22
22
  remark = "remark",
23
23
  websiteId = "websiteId",
24
+ slug = "slug",
25
+ description = "description",
24
26
  /**
25
27
  * 创建时间
26
28
  */
@@ -20,5 +20,7 @@ export declare enum MediaAssciations {
20
20
  usedByProducts = "usedByProducts",
21
21
  usedByProductsAggregate = "usedByProductsAggregate",
22
22
  attachmentOf = "attachmentOf",
23
- attachmentOfAggregate = "attachmentOfAggregate"
23
+ attachmentOfAggregate = "attachmentOfAggregate",
24
+ meidaOfProduct = "meidaOfProduct",
25
+ meidaOfProductAggregate = "meidaOfProductAggregate"
24
26
  }
@@ -3,6 +3,8 @@ export declare enum MediaFolderFields {
3
3
  name = "name",
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
+ slug = "slug",
7
+ description = "description",
6
8
  /**
7
9
  * 创建时间
8
10
  */
@@ -9,6 +9,8 @@ export declare enum PageFields {
9
9
  langAbbr = "langAbbr",
10
10
  extends = "extends",
11
11
  websiteId = "websiteId",
12
+ slug = "slug",
13
+ description = "description",
12
14
  /**
13
15
  * 创建时间
14
16
  */
@@ -33,6 +35,5 @@ export declare enum PageFields {
33
35
  lang = "lang"
34
36
  }
35
37
  export declare enum PageAssciations {
36
- slug = "slug",
37
38
  ogImage = "ogImage"
38
39
  }
@@ -3,6 +3,8 @@ export declare enum PostCategoryFields {
3
3
  name = "name",
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
+ slug = "slug",
7
+ description = "description",
6
8
  /**
7
9
  * 创建时间
8
10
  */
@@ -6,17 +6,14 @@ export declare enum PostFields {
6
6
  */
7
7
  pinToTop = "pinToTop",
8
8
  authorEmail = "authorEmail",
9
- summary = "summary",
10
- /**
11
- * 发布的内容
12
- */
13
- publishedContent = "publishedContent",
14
9
  publishedAt = "publishedAt",
15
10
  status = "status",
16
11
  title = "title",
17
12
  content = "content",
18
13
  extends = "extends",
19
14
  websiteId = "websiteId",
15
+ slug = "slug",
16
+ description = "description",
20
17
  /**
21
18
  * 创建时间
22
19
  */
@@ -45,11 +42,12 @@ export declare enum PostFields {
45
42
  lang = "lang"
46
43
  }
47
44
  export declare enum PostAssciations {
48
- slug = "slug",
49
45
  tags = "tags",
50
46
  tagsAggregate = "tagsAggregate",
51
47
  author = "author",
52
48
  cover = "cover",
53
49
  ogImage = "ogImage",
54
- category = "category"
50
+ draftOf = "draftOf",
51
+ category = "category",
52
+ draft = "draft"
55
53
  }
@@ -3,6 +3,8 @@ export declare enum ProductCategoryFields {
3
3
  name = "name",
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
+ slug = "slug",
7
+ description = "description",
6
8
  /**
7
9
  * 创建时间
8
10
  */
@@ -19,6 +21,7 @@ export declare enum ProductCategoryFields {
19
21
  export declare enum ProductCategoryAssciations {
20
22
  children = "children",
21
23
  childrenAggregate = "childrenAggregate",
24
+ media = "media",
22
25
  parent = "parent",
23
26
  products = "products",
24
27
  productsAggregate = "productsAggregate"
@@ -1,7 +1,6 @@
1
1
  export declare enum ProductFields {
2
2
  id = "id",
3
3
  published = "published",
4
- summary = "summary",
5
4
  featured = "featured",
6
5
  showInNavMenu = "showInNavMenu",
7
6
  seqValue = "seqValue",
@@ -11,16 +10,19 @@ export declare enum ProductFields {
11
10
  features = "features",
12
11
  content2 = "content2",
13
12
  content3 = "content3",
13
+ shortTitle = "shortTitle",
14
14
  /**
15
- * 发布的内容
15
+ * 第三方视频url
16
16
  */
17
- publishedContent = "publishedContent",
17
+ externalVideoUrl = "externalVideoUrl",
18
18
  publishedAt = "publishedAt",
19
19
  status = "status",
20
20
  title = "title",
21
21
  content = "content",
22
22
  extends = "extends",
23
23
  websiteId = "websiteId",
24
+ slug = "slug",
25
+ description = "description",
24
26
  /**
25
27
  * 创建时间
26
28
  */
@@ -52,11 +54,12 @@ export declare enum ProductAssciations {
52
54
  category = "category",
53
55
  medias = "medias",
54
56
  mediasAggregate = "mediasAggregate",
55
- slug = "slug",
56
57
  tags = "tags",
57
58
  tagsAggregate = "tagsAggregate",
58
59
  ogImage = "ogImage",
59
60
  attachments = "attachments",
60
61
  attachmentsAggregate = "attachmentsAggregate",
61
- creator = "creator"
62
+ draftOf = "draftOf",
63
+ creator = "creator",
64
+ draft = "draft"
62
65
  }
@@ -0,0 +1,17 @@
1
+ export declare enum SpamFilterRuleFields {
2
+ id = "id",
3
+ emails = "emails",
4
+ ips = "ips",
5
+ keywords = "keywords",
6
+ createdAt = "createdAt",
7
+ updatedAt = "updatedAt",
8
+ websiteId = "websiteId",
9
+ slug = "slug",
10
+ description = "description",
11
+ /**
12
+ * 备注
13
+ */
14
+ remark = "remark"
15
+ }
16
+ export declare enum SpamFilterRuleAssciations {
17
+ }
@@ -6,6 +6,8 @@ export declare enum TagFields {
6
6
  name = "name",
7
7
  color = "color",
8
8
  websiteId = "websiteId",
9
+ slug = "slug",
10
+ description = "description",
9
11
  /**
10
12
  * 创建时间
11
13
  */
@@ -3,6 +3,8 @@ export declare enum TemplateCategoryFields {
3
3
  name = "name",
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
+ slug = "slug",
7
+ description = "description",
6
8
  /**
7
9
  * 创建时间
8
10
  */
@@ -8,6 +8,8 @@ export declare enum TemplateFields {
8
8
  */
9
9
  templateType = "templateType",
10
10
  websiteId = "websiteId",
11
+ slug = "slug",
12
+ description = "description",
11
13
  /**
12
14
  * 创建时间
13
15
  */
@@ -4,6 +4,8 @@ export declare enum ThemeFields {
4
4
  styles = "styles",
5
5
  settings = "settings",
6
6
  websiteId = "websiteId",
7
+ slug = "slug",
8
+ description = "description",
7
9
  /**
8
10
  * 创建时间
9
11
  */
@@ -12,7 +12,28 @@ export declare enum WebsiteSettingsFields {
12
12
  wechat = "wechat",
13
13
  whatsapp = "whatsapp",
14
14
  mobile = "mobile",
15
+ robots = "robots",
16
+ /**
17
+ * 站点名称
18
+ */
19
+ websiteName = "websiteName",
20
+ /**
21
+ * 域名
22
+ */
23
+ domain = "domain",
24
+ /**
25
+ * 打开iRobots
26
+ */
27
+ openRobots = "openRobots",
28
+ /**
29
+ * 301映射表
30
+ */
31
+ map301 = "map301",
32
+ headerCode = "headerCode",
33
+ footerCode = "footerCode",
15
34
  websiteId = "websiteId",
35
+ slug = "slug",
36
+ description = "description",
16
37
  /**
17
38
  * 创建时间
18
39
  */
@@ -8,7 +8,6 @@ export * from './WebsiteTypeFields';
8
8
  export * from './PageFields';
9
9
  export * from './PostFields';
10
10
  export * from './ProductFields';
11
- export * from './SlugFields';
12
11
  export * from './EnquiryFields';
13
12
  export * from './WebsiteMetaFields';
14
13
  export * from './WebsiteSettingsFields';
@@ -20,3 +19,4 @@ export * from './PostCategoryFields';
20
19
  export * from './TagFields';
21
20
  export * from './CustomerFields';
22
21
  export * from './ProductCategoryFields';
22
+ export * from './SpamFilterRuleFields';