@rxdrag/rxcms-models 0.3.90 → 0.3.91

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.
@@ -16,5 +16,6 @@ export declare class StyleConfigQueryOptions extends QueryOptions<StyleConfig, S
16
16
  updatedAt(): this;
17
17
  headCode(): this;
18
18
  footCode(): this;
19
+ imageSizes(): this;
19
20
  theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
20
21
  }
@@ -9,7 +9,8 @@ export declare enum StyleConfigFields {
9
9
  createdAt = "createdAt",
10
10
  updatedAt = "updatedAt",
11
11
  headCode = "headCode",
12
- footCode = "footCode"
12
+ footCode = "footCode",
13
+ imageSizes = "imageSizes"
13
14
  }
14
15
  export declare enum StyleConfigAssciations {
15
16
  theme = "theme"
package/dist/index.mjs CHANGED
@@ -1796,6 +1796,7 @@ var StyleConfigDistinctEnum = /* @__PURE__ */ ((StyleConfigDistinctEnum2) => {
1796
1796
  StyleConfigDistinctEnum2["updatedAt"] = "updatedAt";
1797
1797
  StyleConfigDistinctEnum2["headCode"] = "headCode";
1798
1798
  StyleConfigDistinctEnum2["footCode"] = "footCode";
1799
+ StyleConfigDistinctEnum2["imageSizes"] = "imageSizes";
1799
1800
  return StyleConfigDistinctEnum2;
1800
1801
  })(StyleConfigDistinctEnum || {});
1801
1802
  var CookieConsentStrategy = /* @__PURE__ */ ((CookieConsentStrategy2) => {
@@ -2686,6 +2687,10 @@ class StyleConfigQueryOptions extends QueryOptions {
2686
2687
  this.addField("footCode");
2687
2688
  return this;
2688
2689
  }
2690
+ imageSizes() {
2691
+ this.addField("imageSizes");
2692
+ return this;
2693
+ }
2689
2694
  theme(options) {
2690
2695
  if (Array.isArray(options)) {
2691
2696
  this._associations["theme"] = new ThemeBranchQueryOptions(options);
@@ -6837,6 +6842,7 @@ var StyleConfigFields = /* @__PURE__ */ ((StyleConfigFields2) => {
6837
6842
  StyleConfigFields2["updatedAt"] = "updatedAt";
6838
6843
  StyleConfigFields2["headCode"] = "headCode";
6839
6844
  StyleConfigFields2["footCode"] = "footCode";
6845
+ StyleConfigFields2["imageSizes"] = "imageSizes";
6840
6846
  return StyleConfigFields2;
6841
6847
  })(StyleConfigFields || {});
6842
6848
  var StyleConfigAssciations = /* @__PURE__ */ ((StyleConfigAssciations2) => {