@rxdrag/rxcms-models 0.3.61 → 0.3.62

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.
@@ -24,6 +24,7 @@ export declare class ThemeConfigQueryOptions extends QueryOptions<ThemeConfig, T
24
24
  icoIcon(): this;
25
25
  appleTouchIcon(): this;
26
26
  redirects(): this;
27
+ previewUrl(): this;
27
28
  contactAvatar(options?: MediaQueryOptions | (keyof Media)[]): this;
28
29
  theme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
29
30
  }
@@ -18,5 +18,7 @@ export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSet
18
18
  createdAt(): this;
19
19
  updatedAt(): this;
20
20
  replyToEmail(): this;
21
+ privateDeploy(): this;
22
+ deployConfig(): this;
21
23
  website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
22
24
  }
@@ -15,7 +15,8 @@ export declare enum ThemeConfigFields {
15
15
  pngIcon = "pngIcon",
16
16
  icoIcon = "icoIcon",
17
17
  appleTouchIcon = "appleTouchIcon",
18
- redirects = "redirects"
18
+ redirects = "redirects",
19
+ previewUrl = "previewUrl"
19
20
  }
20
21
  export declare enum ThemeConfigAssciations {
21
22
  contactAvatar = "contactAvatar",
@@ -11,7 +11,9 @@ export declare enum WebsiteSettingsFields {
11
11
  useCustomizedSmtp = "useCustomizedSmtp",
12
12
  createdAt = "createdAt",
13
13
  updatedAt = "updatedAt",
14
- replyToEmail = "replyToEmail"
14
+ replyToEmail = "replyToEmail",
15
+ privateDeploy = "privateDeploy",
16
+ deployConfig = "deployConfig"
15
17
  }
16
18
  export declare enum WebsiteSettingsAssciations {
17
19
  website = "website"
package/dist/index.mjs CHANGED
@@ -1189,6 +1189,8 @@ var WebsiteSettingsDistinctEnum = /* @__PURE__ */ ((WebsiteSettingsDistinctEnum2
1189
1189
  WebsiteSettingsDistinctEnum2["createdAt"] = "createdAt";
1190
1190
  WebsiteSettingsDistinctEnum2["updatedAt"] = "updatedAt";
1191
1191
  WebsiteSettingsDistinctEnum2["replyToEmail"] = "replyToEmail";
1192
+ WebsiteSettingsDistinctEnum2["privateDeploy"] = "privateDeploy";
1193
+ WebsiteSettingsDistinctEnum2["deployConfig"] = "deployConfig";
1192
1194
  return WebsiteSettingsDistinctEnum2;
1193
1195
  })(WebsiteSettingsDistinctEnum || {});
1194
1196
  const ThemeEntityName = "Theme";
@@ -1495,6 +1497,7 @@ var ThemeConfigDistinctEnum = /* @__PURE__ */ ((ThemeConfigDistinctEnum2) => {
1495
1497
  ThemeConfigDistinctEnum2["icoIcon"] = "icoIcon";
1496
1498
  ThemeConfigDistinctEnum2["appleTouchIcon"] = "appleTouchIcon";
1497
1499
  ThemeConfigDistinctEnum2["redirects"] = "redirects";
1500
+ ThemeConfigDistinctEnum2["previewUrl"] = "previewUrl";
1498
1501
  return ThemeConfigDistinctEnum2;
1499
1502
  })(ThemeConfigDistinctEnum || {});
1500
1503
  const AnalyticsConfigEntityName = "AnalyticsConfig";
@@ -2007,6 +2010,10 @@ class ThemeConfigQueryOptions extends QueryOptions {
2007
2010
  this.addField("redirects");
2008
2011
  return this;
2009
2012
  }
2013
+ previewUrl() {
2014
+ this.addField("previewUrl");
2015
+ return this;
2016
+ }
2010
2017
  contactAvatar(options) {
2011
2018
  if (Array.isArray(options)) {
2012
2019
  this._associations["contactAvatar"] = new MediaQueryOptions(options);
@@ -3247,6 +3254,14 @@ class WebsiteSettingsQueryOptions extends QueryOptions {
3247
3254
  this.addField("replyToEmail");
3248
3255
  return this;
3249
3256
  }
3257
+ privateDeploy() {
3258
+ this.addField("privateDeploy");
3259
+ return this;
3260
+ }
3261
+ deployConfig() {
3262
+ this.addField("deployConfig");
3263
+ return this;
3264
+ }
3250
3265
  website(options) {
3251
3266
  if (Array.isArray(options)) {
3252
3267
  this._associations["website"] = new WebsiteQueryOptions(options);
@@ -5110,6 +5125,8 @@ var WebsiteSettingsFields = /* @__PURE__ */ ((WebsiteSettingsFields2) => {
5110
5125
  WebsiteSettingsFields2["createdAt"] = "createdAt";
5111
5126
  WebsiteSettingsFields2["updatedAt"] = "updatedAt";
5112
5127
  WebsiteSettingsFields2["replyToEmail"] = "replyToEmail";
5128
+ WebsiteSettingsFields2["privateDeploy"] = "privateDeploy";
5129
+ WebsiteSettingsFields2["deployConfig"] = "deployConfig";
5113
5130
  return WebsiteSettingsFields2;
5114
5131
  })(WebsiteSettingsFields || {});
5115
5132
  var WebsiteSettingsAssciations = /* @__PURE__ */ ((WebsiteSettingsAssciations2) => {
@@ -5370,6 +5387,7 @@ var ThemeConfigFields = /* @__PURE__ */ ((ThemeConfigFields2) => {
5370
5387
  ThemeConfigFields2["icoIcon"] = "icoIcon";
5371
5388
  ThemeConfigFields2["appleTouchIcon"] = "appleTouchIcon";
5372
5389
  ThemeConfigFields2["redirects"] = "redirects";
5390
+ ThemeConfigFields2["previewUrl"] = "previewUrl";
5373
5391
  return ThemeConfigFields2;
5374
5392
  })(ThemeConfigFields || {});
5375
5393
  var ThemeConfigAssciations = /* @__PURE__ */ ((ThemeConfigAssciations2) => {