@rxdrag/rxcms-models 0.2.6 → 0.2.7

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.
@@ -39,6 +39,14 @@ export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSet
39
39
  * GA跟踪码
40
40
  */
41
41
  gaTrackingId(): this;
42
+ /**
43
+ * 通知邮箱
44
+ */
45
+ noticeEmail(): this;
46
+ /**
47
+ * 邮件模板
48
+ */
49
+ emailTemplates(): this;
42
50
  websiteId(): this;
43
51
  slug(): this;
44
52
  description(): this;
@@ -35,6 +35,14 @@ export declare enum WebsiteSettingsFields {
35
35
  * GA跟踪码
36
36
  */
37
37
  gaTrackingId = "gaTrackingId",
38
+ /**
39
+ * 通知邮箱
40
+ */
41
+ noticeEmail = "noticeEmail",
42
+ /**
43
+ * 邮件模板
44
+ */
45
+ emailTemplates = "emailTemplates",
38
46
  websiteId = "websiteId",
39
47
  slug = "slug",
40
48
  description = "description",
package/dist/index.mjs CHANGED
@@ -863,6 +863,8 @@ var WebsiteSettingsDistinctEnum = /* @__PURE__ */ ((WebsiteSettingsDistinctEnum2
863
863
  WebsiteSettingsDistinctEnum2["headerCode"] = "headerCode";
864
864
  WebsiteSettingsDistinctEnum2["footerCode"] = "footerCode";
865
865
  WebsiteSettingsDistinctEnum2["gaTrackingId"] = "gaTrackingId";
866
+ WebsiteSettingsDistinctEnum2["noticeEmail"] = "noticeEmail";
867
+ WebsiteSettingsDistinctEnum2["emailTemplates"] = "emailTemplates";
866
868
  WebsiteSettingsDistinctEnum2["websiteId"] = "websiteId";
867
869
  WebsiteSettingsDistinctEnum2["slug"] = "slug";
868
870
  WebsiteSettingsDistinctEnum2["description"] = "description";
@@ -3212,6 +3214,20 @@ class WebsiteSettingsQueryOptions extends QueryOptions {
3212
3214
  this.addField("gaTrackingId");
3213
3215
  return this;
3214
3216
  }
3217
+ /**
3218
+ * 通知邮箱
3219
+ */
3220
+ noticeEmail() {
3221
+ this.addField("noticeEmail");
3222
+ return this;
3223
+ }
3224
+ /**
3225
+ * 邮件模板
3226
+ */
3227
+ emailTemplates() {
3228
+ this.addField("emailTemplates");
3229
+ return this;
3230
+ }
3215
3231
  websiteId() {
3216
3232
  this.addField("websiteId");
3217
3233
  return this;
@@ -3722,6 +3738,8 @@ var WebsiteSettingsFields = /* @__PURE__ */ ((WebsiteSettingsFields2) => {
3722
3738
  WebsiteSettingsFields2["headerCode"] = "headerCode";
3723
3739
  WebsiteSettingsFields2["footerCode"] = "footerCode";
3724
3740
  WebsiteSettingsFields2["gaTrackingId"] = "gaTrackingId";
3741
+ WebsiteSettingsFields2["noticeEmail"] = "noticeEmail";
3742
+ WebsiteSettingsFields2["emailTemplates"] = "emailTemplates";
3725
3743
  WebsiteSettingsFields2["websiteId"] = "websiteId";
3726
3744
  WebsiteSettingsFields2["slug"] = "slug";
3727
3745
  WebsiteSettingsFields2["description"] = "description";