@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.
- package/dist/classes/StyleConfigQueryOptions.d.ts +1 -0
- package/dist/fields/StyleConfigFields.d.ts +2 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/ImageSizes.d.ts +4 -0
- package/dist/interfaces/StyleConfig.d.ts +2 -0
- package/dist/interfaces/StyleConfigBoolExp.d.ts +1 -0
- package/dist/interfaces/StyleConfigDistinctExp.d.ts +2 -1
- package/dist/interfaces/StyleConfigInput.d.ts +2 -0
- package/dist/interfaces/StyleConfigOrderBy.d.ts +1 -0
- package/dist/interfaces/ThemeSettings.d.ts +0 -2
- package/package.json +4 -4
|
@@ -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) => {
|