@rxdrag/rxcms-models 0.2.3 → 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 (99) hide show
  1. package/dist/classes/CustomerQueryOptions.d.ts +2 -0
  2. package/dist/classes/EnquiryQueryOptions.d.ts +2 -0
  3. package/dist/classes/LangQueryOptions.d.ts +1 -0
  4. package/dist/classes/MediaFolderQueryOptions.d.ts +1 -0
  5. package/dist/classes/MediaQueryOptions.d.ts +5 -0
  6. package/dist/classes/PageQueryOptions.d.ts +1 -0
  7. package/dist/classes/PostCategoryQueryOptions.d.ts +1 -0
  8. package/dist/classes/PostQueryOptions.d.ts +3 -5
  9. package/dist/classes/ProductCategoryQueryOptions.d.ts +4 -0
  10. package/dist/classes/ProductQueryOptions.d.ts +6 -3
  11. package/dist/classes/SpamFilterRuleQueryOptions.d.ts +19 -0
  12. package/dist/classes/TagQueryOptions.d.ts +1 -0
  13. package/dist/classes/TemplateCategoryQueryOptions.d.ts +1 -0
  14. package/dist/classes/TemplateQueryOptions.d.ts +1 -0
  15. package/dist/classes/ThemeQueryOptions.d.ts +1 -0
  16. package/dist/classes/WebsiteSettingsQueryOptions.d.ts +20 -0
  17. package/dist/classes/index.d.ts +1 -0
  18. package/dist/entries/index.d.ts +1 -0
  19. package/dist/entries/spamFilterRuleEntry.d.ts +2 -0
  20. package/dist/fields/CustomerFields.d.ts +2 -0
  21. package/dist/fields/EnquiryFields.d.ts +2 -0
  22. package/dist/fields/LangFields.d.ts +1 -0
  23. package/dist/fields/MediaFields.d.ts +3 -1
  24. package/dist/fields/MediaFolderFields.d.ts +1 -0
  25. package/dist/fields/PageFields.d.ts +1 -0
  26. package/dist/fields/PostCategoryFields.d.ts +1 -0
  27. package/dist/fields/PostFields.d.ts +4 -6
  28. package/dist/fields/ProductCategoryFields.d.ts +2 -0
  29. package/dist/fields/ProductFields.d.ts +7 -4
  30. package/dist/fields/SpamFilterRuleFields.d.ts +17 -0
  31. package/dist/fields/TagFields.d.ts +1 -0
  32. package/dist/fields/TemplateCategoryFields.d.ts +1 -0
  33. package/dist/fields/TemplateFields.d.ts +1 -0
  34. package/dist/fields/ThemeFields.d.ts +1 -0
  35. package/dist/fields/WebsiteSettingsFields.d.ts +20 -0
  36. package/dist/fields/index.d.ts +1 -0
  37. package/dist/index.mjs +492 -36
  38. package/dist/index.mjs.map +1 -1
  39. package/dist/interfaces/BooleanComparisonExp.d.ts +1 -0
  40. package/dist/interfaces/Customer.d.ts +1 -0
  41. package/dist/interfaces/CustomerBoolExp.d.ts +2 -0
  42. package/dist/interfaces/CustomerDistinctExp.d.ts +2 -0
  43. package/dist/interfaces/CustomerInput.d.ts +1 -0
  44. package/dist/interfaces/CustomerOrderBy.d.ts +1 -0
  45. package/dist/interfaces/Enquiry.d.ts +1 -0
  46. package/dist/interfaces/EnquiryBoolExp.d.ts +1 -0
  47. package/dist/interfaces/EnquiryDistinctExp.d.ts +2 -0
  48. package/dist/interfaces/EnquiryInput.d.ts +1 -0
  49. package/dist/interfaces/EnquiryOrderBy.d.ts +1 -0
  50. package/dist/interfaces/LangDistinctExp.d.ts +1 -0
  51. package/dist/interfaces/Media.d.ts +3 -0
  52. package/dist/interfaces/MediaBoolExp.d.ts +2 -0
  53. package/dist/interfaces/MediaFolderDistinctExp.d.ts +1 -0
  54. package/dist/interfaces/MediaInput.d.ts +2 -0
  55. package/dist/interfaces/PageDistinctExp.d.ts +1 -0
  56. package/dist/interfaces/Post.d.ts +2 -1
  57. package/dist/interfaces/PostBoolExp.d.ts +2 -1
  58. package/dist/interfaces/PostCategoryDistinctExp.d.ts +1 -0
  59. package/dist/interfaces/PostDistinctExp.d.ts +1 -5
  60. package/dist/interfaces/PostInput.d.ts +2 -1
  61. package/dist/interfaces/PostOrderBy.d.ts +0 -1
  62. package/dist/interfaces/Product.d.ts +7 -1
  63. package/dist/interfaces/ProductBoolExp.d.ts +5 -2
  64. package/dist/interfaces/ProductCategory.d.ts +2 -0
  65. package/dist/interfaces/ProductCategoryBoolExp.d.ts +2 -0
  66. package/dist/interfaces/ProductCategoryDistinctExp.d.ts +1 -0
  67. package/dist/interfaces/ProductCategoryInput.d.ts +2 -0
  68. package/dist/interfaces/ProductDistinctExp.d.ts +4 -3
  69. package/dist/interfaces/ProductInput.d.ts +7 -1
  70. package/dist/interfaces/ProductOrderBy.d.ts +5 -1
  71. package/dist/interfaces/Publishable.d.ts +4 -4
  72. package/dist/interfaces/PublishableBoolExp.d.ts +4 -1
  73. package/dist/interfaces/PublishableDistinctExp.d.ts +1 -4
  74. package/dist/interfaces/PublishableOrderBy.d.ts +4 -4
  75. package/dist/interfaces/SmtpConfig.d.ts +36 -0
  76. package/dist/interfaces/SpamFilterRule.d.ts +15 -0
  77. package/dist/interfaces/SpamFilterRuleBoolExp.d.ts +19 -0
  78. package/dist/interfaces/SpamFilterRuleDistinctExp.d.ts +17 -0
  79. package/dist/interfaces/SpamFilterRuleInput.d.ts +16 -0
  80. package/dist/interfaces/SpamFilterRuleOrderBy.d.ts +14 -0
  81. package/dist/interfaces/TagDistinctExp.d.ts +1 -0
  82. package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +1 -0
  83. package/dist/interfaces/TemplateDistinctExp.d.ts +1 -0
  84. package/dist/interfaces/ThemeBoolExp.d.ts +1 -2
  85. package/dist/interfaces/ThemeDistinctExp.d.ts +1 -0
  86. package/dist/interfaces/WebsiteContentDistinctExp.d.ts +1 -0
  87. package/dist/interfaces/WebsitePart.d.ts +1 -0
  88. package/dist/interfaces/WebsitePartBoolExp.d.ts +1 -0
  89. package/dist/interfaces/WebsitePartDistinctExp.d.ts +1 -0
  90. package/dist/interfaces/WebsitePartOrderBy.d.ts +1 -0
  91. package/dist/interfaces/WebsiteSettings.d.ts +21 -1
  92. package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +9 -1
  93. package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +20 -0
  94. package/dist/interfaces/WebsiteSettingsInput.d.ts +21 -1
  95. package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +19 -0
  96. package/dist/interfaces/WebsiteUser.d.ts +1 -1
  97. package/dist/interfaces/WebsiteUserBoolExp.d.ts +1 -1
  98. package/dist/interfaces/index.d.ts +36 -0
  99. package/package.json +2 -2
@@ -7,8 +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;
11
12
  slug(): this;
13
+ description(): this;
12
14
  /**
13
15
  * 创建时间
14
16
  */
@@ -19,8 +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;
23
24
  slug(): this;
25
+ description(): this;
24
26
  /**
25
27
  * 创建时间
26
28
  */
@@ -26,6 +26,7 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
26
26
  remark(): this;
27
27
  websiteId(): this;
28
28
  slug(): this;
29
+ description(): this;
29
30
  /**
30
31
  * 创建时间
31
32
  */
@@ -11,6 +11,7 @@ export declare class MediaFolderQueryOptions extends QueryOptions<MediaFolder, M
11
11
  seqValue(): this;
12
12
  websiteId(): this;
13
13
  slug(): this;
14
+ description(): this;
14
15
  /**
15
16
  * 创建时间
16
17
  */
@@ -10,6 +10,9 @@ import { User } from '../interfaces';
10
10
  import { ProductQueryOptions } from './ProductQueryOptions';
11
11
  import { Product } from '../interfaces';
12
12
  import { ProductBoolExp } from '../interfaces';
13
+ import { ProductCategoryQueryOptions } from './ProductCategoryQueryOptions';
14
+ import { ProductCategory } from '../interfaces';
15
+ import { ProductCategoryBoolExp } from '../interfaces';
13
16
  export declare class MediaQueryOptions extends QueryOptions<(Media & MediaAddon & AttachmentAddon), MediaBoolExp, (MediaOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), MediaDistinctExp> {
14
17
  constructor(fields?: (keyof (Media & MediaAddon & AttachmentAddon))[], queryArgs?: IQueryArgs<MediaBoolExp, (MediaOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), MediaDistinctExp>);
15
18
  id(): this;
@@ -32,4 +35,6 @@ export declare class MediaQueryOptions extends QueryOptions<(Media & MediaAddon
32
35
  usedByProductsAggregate(aggregate: IAggregate<ProductBoolExp>): this;
33
36
  attachmentOf(options?: ProductQueryOptions | (keyof Product)[]): this;
34
37
  attachmentOfAggregate(aggregate: IAggregate<ProductBoolExp>): this;
38
+ meidaOfProduct(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
39
+ meidaOfProductAggregate(aggregate: IAggregate<ProductCategoryBoolExp>): this;
35
40
  }
@@ -16,6 +16,7 @@ export declare class PageQueryOptions extends QueryOptions<Page, PageBoolExp, Pa
16
16
  extends(): this;
17
17
  websiteId(): this;
18
18
  slug(): this;
19
+ description(): this;
19
20
  /**
20
21
  * 创建时间
21
22
  */
@@ -11,6 +11,7 @@ export declare class PostCategoryQueryOptions extends QueryOptions<PostCategory,
11
11
  seqValue(): this;
12
12
  websiteId(): this;
13
13
  slug(): this;
14
+ description(): this;
14
15
  /**
15
16
  * 创建时间
16
17
  */
@@ -19,11 +19,6 @@ export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, Po
19
19
  */
20
20
  pinToTop(): this;
21
21
  authorEmail(): this;
22
- summary(): this;
23
- /**
24
- * 发布的内容
25
- */
26
- publishedContent(): this;
27
22
  publishedAt(): this;
28
23
  status(): this;
29
24
  title(): this;
@@ -31,6 +26,7 @@ export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, Po
31
26
  extends(): this;
32
27
  websiteId(): this;
33
28
  slug(): this;
29
+ description(): this;
34
30
  /**
35
31
  * 创建时间
36
32
  */
@@ -62,5 +58,7 @@ export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, Po
62
58
  author(options?: UserQueryOptions | (keyof User)[]): this;
63
59
  cover(options?: MediaQueryOptions | (keyof Media)[]): this;
64
60
  ogImage(options?: MediaQueryOptions | (keyof Media)[]): this;
61
+ draftOf(options?: PostQueryOptions | (keyof Post)[]): this;
65
62
  category(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
63
+ draft(options?: PostQueryOptions | (keyof Post)[]): this;
66
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';
@@ -11,6 +13,7 @@ export declare class ProductCategoryQueryOptions extends QueryOptions<ProductCat
11
13
  seqValue(): this;
12
14
  websiteId(): this;
13
15
  slug(): this;
16
+ description(): this;
14
17
  /**
15
18
  * 创建时间
16
19
  */
@@ -25,6 +28,7 @@ export declare class ProductCategoryQueryOptions extends QueryOptions<ProductCat
25
28
  remark(): this;
26
29
  children(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
27
30
  childrenAggregate(aggregate: IAggregate<ProductCategoryBoolExp>): this;
31
+ media(options?: MediaQueryOptions | (keyof Media)[]): this;
28
32
  parent(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
29
33
  products(options?: ProductQueryOptions | (keyof Product)[]): this;
30
34
  productsAggregate(aggregate: IAggregate<ProductBoolExp>): this;
@@ -17,7 +17,6 @@ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAd
17
17
  constructor(fields?: (keyof (Product & MediaAddon & AttachmentAddon))[], queryArgs?: IQueryArgs<ProductBoolExp, (ProductOrderBy & MediaAddonOrderBy & AttachmentAddonOrderBy), ProductDistinctExp>);
18
18
  id(): this;
19
19
  published(): this;
20
- summary(): this;
21
20
  featured(): this;
22
21
  showInNavMenu(): this;
23
22
  seqValue(): this;
@@ -27,10 +26,11 @@ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAd
27
26
  features(): this;
28
27
  content2(): this;
29
28
  content3(): this;
29
+ shortTitle(): this;
30
30
  /**
31
- * 发布的内容
31
+ * 第三方视频url
32
32
  */
33
- publishedContent(): this;
33
+ externalVideoUrl(): this;
34
34
  publishedAt(): this;
35
35
  status(): this;
36
36
  title(): this;
@@ -38,6 +38,7 @@ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAd
38
38
  extends(): this;
39
39
  websiteId(): this;
40
40
  slug(): this;
41
+ description(): this;
41
42
  /**
42
43
  * 创建时间
43
44
  */
@@ -72,5 +73,7 @@ export declare class ProductQueryOptions extends QueryOptions<(Product & MediaAd
72
73
  ogImage(options?: MediaQueryOptions | (keyof Media)[]): this;
73
74
  attachments(options?: MediaQueryOptions | (keyof Media)[]): this;
74
75
  attachmentsAggregate(aggregate: IAggregate<MediaBoolExp>): this;
76
+ draftOf(options?: ProductQueryOptions | (keyof Product)[]): this;
75
77
  creator(options?: UserQueryOptions | (keyof User)[]): this;
78
+ draft(options?: ProductQueryOptions | (keyof Product)[]): this;
76
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
+ }
@@ -17,6 +17,7 @@ export declare class TagQueryOptions extends QueryOptions<Tag, TagBoolExp, TagOr
17
17
  color(): this;
18
18
  websiteId(): this;
19
19
  slug(): this;
20
+ description(): this;
20
21
  /**
21
22
  * 创建时间
22
23
  */
@@ -13,6 +13,7 @@ export declare class TemplateCategoryQueryOptions extends QueryOptions<TemplateC
13
13
  seqValue(): this;
14
14
  websiteId(): this;
15
15
  slug(): this;
16
+ description(): this;
16
17
  /**
17
18
  * 创建时间
18
19
  */
@@ -17,6 +17,7 @@ export declare class TemplateQueryOptions extends QueryOptions<Template, Templat
17
17
  templateType(): this;
18
18
  websiteId(): this;
19
19
  slug(): this;
20
+ description(): this;
20
21
  /**
21
22
  * 创建时间
22
23
  */
@@ -15,6 +15,7 @@ export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp,
15
15
  settings(): this;
16
16
  websiteId(): this;
17
17
  slug(): this;
18
+ description(): this;
18
19
  /**
19
20
  * 创建时间
20
21
  */
@@ -16,8 +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;
20
39
  slug(): this;
40
+ description(): this;
21
41
  /**
22
42
  * 创建时间
23
43
  */
@@ -19,5 +19,6 @@ export * from './PostCategoryQueryOptions';
19
19
  export * from './TagQueryOptions';
20
20
  export * from './CustomerQueryOptions';
21
21
  export * from './ProductCategoryQueryOptions';
22
+ export * from './SpamFilterRuleQueryOptions';
22
23
  export * from './QueryOptions';
23
24
  export * from './metainfo';
@@ -19,3 +19,4 @@ export * from './postCategoryEntry';
19
19
  export * from './tagEntry';
20
20
  export * from './customerEntry';
21
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,7 +1,9 @@
1
1
  export declare enum CustomerFields {
2
2
  id = "id",
3
+ company = "company",
3
4
  websiteId = "websiteId",
4
5
  slug = "slug",
6
+ description = "description",
5
7
  /**
6
8
  * 创建时间
7
9
  */
@@ -13,8 +13,10 @@ export declare enum EnquiryFields {
13
13
  */
14
14
  fromCta = "fromCta",
15
15
  read = "read",
16
+ spam = "spam",
16
17
  websiteId = "websiteId",
17
18
  slug = "slug",
19
+ description = "description",
18
20
  /**
19
21
  * 创建时间
20
22
  */
@@ -22,6 +22,7 @@ export declare enum LangFields {
22
22
  remark = "remark",
23
23
  websiteId = "websiteId",
24
24
  slug = "slug",
25
+ description = "description",
25
26
  /**
26
27
  * 创建时间
27
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
  }
@@ -4,6 +4,7 @@ export declare enum MediaFolderFields {
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
6
  slug = "slug",
7
+ description = "description",
7
8
  /**
8
9
  * 创建时间
9
10
  */
@@ -10,6 +10,7 @@ export declare enum PageFields {
10
10
  extends = "extends",
11
11
  websiteId = "websiteId",
12
12
  slug = "slug",
13
+ description = "description",
13
14
  /**
14
15
  * 创建时间
15
16
  */
@@ -4,6 +4,7 @@ export declare enum PostCategoryFields {
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
6
  slug = "slug",
7
+ description = "description",
7
8
  /**
8
9
  * 创建时间
9
10
  */
@@ -6,11 +6,6 @@ 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",
@@ -18,6 +13,7 @@ export declare enum PostFields {
18
13
  extends = "extends",
19
14
  websiteId = "websiteId",
20
15
  slug = "slug",
16
+ description = "description",
21
17
  /**
22
18
  * 创建时间
23
19
  */
@@ -51,5 +47,7 @@ export declare enum PostAssciations {
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
  }
@@ -4,6 +4,7 @@ export declare enum ProductCategoryFields {
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
6
  slug = "slug",
7
+ description = "description",
7
8
  /**
8
9
  * 创建时间
9
10
  */
@@ -20,6 +21,7 @@ export declare enum ProductCategoryFields {
20
21
  export declare enum ProductCategoryAssciations {
21
22
  children = "children",
22
23
  childrenAggregate = "childrenAggregate",
24
+ media = "media",
23
25
  parent = "parent",
24
26
  products = "products",
25
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,10 +10,11 @@ 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",
@@ -22,6 +22,7 @@ export declare enum ProductFields {
22
22
  extends = "extends",
23
23
  websiteId = "websiteId",
24
24
  slug = "slug",
25
+ description = "description",
25
26
  /**
26
27
  * 创建时间
27
28
  */
@@ -58,5 +59,7 @@ export declare enum ProductAssciations {
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
+ }
@@ -7,6 +7,7 @@ export declare enum TagFields {
7
7
  color = "color",
8
8
  websiteId = "websiteId",
9
9
  slug = "slug",
10
+ description = "description",
10
11
  /**
11
12
  * 创建时间
12
13
  */
@@ -4,6 +4,7 @@ export declare enum TemplateCategoryFields {
4
4
  seqValue = "seqValue",
5
5
  websiteId = "websiteId",
6
6
  slug = "slug",
7
+ description = "description",
7
8
  /**
8
9
  * 创建时间
9
10
  */
@@ -9,6 +9,7 @@ export declare enum TemplateFields {
9
9
  templateType = "templateType",
10
10
  websiteId = "websiteId",
11
11
  slug = "slug",
12
+ description = "description",
12
13
  /**
13
14
  * 创建时间
14
15
  */
@@ -5,6 +5,7 @@ export declare enum ThemeFields {
5
5
  settings = "settings",
6
6
  websiteId = "websiteId",
7
7
  slug = "slug",
8
+ description = "description",
8
9
  /**
9
10
  * 创建时间
10
11
  */
@@ -12,8 +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",
16
35
  slug = "slug",
36
+ description = "description",
17
37
  /**
18
38
  * 创建时间
19
39
  */
@@ -19,3 +19,4 @@ export * from './PostCategoryFields';
19
19
  export * from './TagFields';
20
20
  export * from './CustomerFields';
21
21
  export * from './ProductCategoryFields';
22
+ export * from './SpamFilterRuleFields';