@rxdrag/rxcms-models 0.2.5 → 0.2.6

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,10 @@ 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;
38
42
  websiteId(): this;
39
43
  slug(): this;
40
44
  description(): this;
@@ -31,6 +31,10 @@ export declare enum WebsiteSettingsFields {
31
31
  map301 = "map301",
32
32
  headerCode = "headerCode",
33
33
  footerCode = "footerCode",
34
+ /**
35
+ * GA跟踪码
36
+ */
37
+ gaTrackingId = "gaTrackingId",
34
38
  websiteId = "websiteId",
35
39
  slug = "slug",
36
40
  description = "description",
package/dist/index.mjs CHANGED
@@ -862,6 +862,7 @@ var WebsiteSettingsDistinctEnum = /* @__PURE__ */ ((WebsiteSettingsDistinctEnum2
862
862
  WebsiteSettingsDistinctEnum2["map301"] = "map301";
863
863
  WebsiteSettingsDistinctEnum2["headerCode"] = "headerCode";
864
864
  WebsiteSettingsDistinctEnum2["footerCode"] = "footerCode";
865
+ WebsiteSettingsDistinctEnum2["gaTrackingId"] = "gaTrackingId";
865
866
  WebsiteSettingsDistinctEnum2["websiteId"] = "websiteId";
866
867
  WebsiteSettingsDistinctEnum2["slug"] = "slug";
867
868
  WebsiteSettingsDistinctEnum2["description"] = "description";
@@ -3204,6 +3205,13 @@ class WebsiteSettingsQueryOptions extends QueryOptions {
3204
3205
  this.addField("footerCode");
3205
3206
  return this;
3206
3207
  }
3208
+ /**
3209
+ * GA跟踪码
3210
+ */
3211
+ gaTrackingId() {
3212
+ this.addField("gaTrackingId");
3213
+ return this;
3214
+ }
3207
3215
  websiteId() {
3208
3216
  this.addField("websiteId");
3209
3217
  return this;
@@ -3713,6 +3721,7 @@ var WebsiteSettingsFields = /* @__PURE__ */ ((WebsiteSettingsFields2) => {
3713
3721
  WebsiteSettingsFields2["map301"] = "map301";
3714
3722
  WebsiteSettingsFields2["headerCode"] = "headerCode";
3715
3723
  WebsiteSettingsFields2["footerCode"] = "footerCode";
3724
+ WebsiteSettingsFields2["gaTrackingId"] = "gaTrackingId";
3716
3725
  WebsiteSettingsFields2["websiteId"] = "websiteId";
3717
3726
  WebsiteSettingsFields2["slug"] = "slug";
3718
3727
  WebsiteSettingsFields2["description"] = "description";