@rxdrag/rxcms-models 0.2.5 → 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.
@@ -35,6 +35,18 @@ export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSet
35
35
  map301(): this;
36
36
  headerCode(): this;
37
37
  footerCode(): this;
38
+ /**
39
+ * GA跟踪码
40
+ */
41
+ gaTrackingId(): this;
42
+ /**
43
+ * 通知邮箱
44
+ */
45
+ noticeEmail(): this;
46
+ /**
47
+ * 邮件模板
48
+ */
49
+ emailTemplates(): this;
38
50
  websiteId(): this;
39
51
  slug(): this;
40
52
  description(): this;
@@ -31,6 +31,18 @@ export declare enum WebsiteSettingsFields {
31
31
  map301 = "map301",
32
32
  headerCode = "headerCode",
33
33
  footerCode = "footerCode",
34
+ /**
35
+ * GA跟踪码
36
+ */
37
+ gaTrackingId = "gaTrackingId",
38
+ /**
39
+ * 通知邮箱
40
+ */
41
+ noticeEmail = "noticeEmail",
42
+ /**
43
+ * 邮件模板
44
+ */
45
+ emailTemplates = "emailTemplates",
34
46
  websiteId = "websiteId",
35
47
  slug = "slug",
36
48
  description = "description",
package/dist/index.mjs CHANGED
@@ -862,6 +862,9 @@ var WebsiteSettingsDistinctEnum = /* @__PURE__ */ ((WebsiteSettingsDistinctEnum2
862
862
  WebsiteSettingsDistinctEnum2["map301"] = "map301";
863
863
  WebsiteSettingsDistinctEnum2["headerCode"] = "headerCode";
864
864
  WebsiteSettingsDistinctEnum2["footerCode"] = "footerCode";
865
+ WebsiteSettingsDistinctEnum2["gaTrackingId"] = "gaTrackingId";
866
+ WebsiteSettingsDistinctEnum2["noticeEmail"] = "noticeEmail";
867
+ WebsiteSettingsDistinctEnum2["emailTemplates"] = "emailTemplates";
865
868
  WebsiteSettingsDistinctEnum2["websiteId"] = "websiteId";
866
869
  WebsiteSettingsDistinctEnum2["slug"] = "slug";
867
870
  WebsiteSettingsDistinctEnum2["description"] = "description";
@@ -3204,6 +3207,27 @@ class WebsiteSettingsQueryOptions extends QueryOptions {
3204
3207
  this.addField("footerCode");
3205
3208
  return this;
3206
3209
  }
3210
+ /**
3211
+ * GA跟踪码
3212
+ */
3213
+ gaTrackingId() {
3214
+ this.addField("gaTrackingId");
3215
+ return this;
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
+ }
3207
3231
  websiteId() {
3208
3232
  this.addField("websiteId");
3209
3233
  return this;
@@ -3713,6 +3737,9 @@ var WebsiteSettingsFields = /* @__PURE__ */ ((WebsiteSettingsFields2) => {
3713
3737
  WebsiteSettingsFields2["map301"] = "map301";
3714
3738
  WebsiteSettingsFields2["headerCode"] = "headerCode";
3715
3739
  WebsiteSettingsFields2["footerCode"] = "footerCode";
3740
+ WebsiteSettingsFields2["gaTrackingId"] = "gaTrackingId";
3741
+ WebsiteSettingsFields2["noticeEmail"] = "noticeEmail";
3742
+ WebsiteSettingsFields2["emailTemplates"] = "emailTemplates";
3716
3743
  WebsiteSettingsFields2["websiteId"] = "websiteId";
3717
3744
  WebsiteSettingsFields2["slug"] = "slug";
3718
3745
  WebsiteSettingsFields2["description"] = "description";