@rxdrag/rxcms-models 0.3.86 → 0.3.87
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 +2 -0
- package/dist/fields/StyleConfigFields.d.ts +3 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/StyleConfig.d.ts +2 -0
- package/dist/interfaces/StyleConfigBoolExp.d.ts +2 -0
- package/dist/interfaces/StyleConfigDistinctExp.d.ts +3 -1
- package/dist/interfaces/StyleConfigInput.d.ts +2 -0
- package/dist/interfaces/StyleConfigOrderBy.d.ts +2 -0
- package/dist/interfaces/ThemeSettings.d.ts +0 -3
- package/package.json +4 -4
|
@@ -14,5 +14,7 @@ export declare class StyleConfigQueryOptions extends QueryOptions<StyleConfig, S
|
|
|
14
14
|
isInMarket(): this;
|
|
15
15
|
createdAt(): this;
|
|
16
16
|
updatedAt(): this;
|
|
17
|
+
headCode(): this;
|
|
18
|
+
footCode(): this;
|
|
17
19
|
theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
18
20
|
}
|
|
@@ -7,7 +7,9 @@ export declare enum StyleConfigFields {
|
|
|
7
7
|
cssVariants = "cssVariants",
|
|
8
8
|
isInMarket = "isInMarket",
|
|
9
9
|
createdAt = "createdAt",
|
|
10
|
-
updatedAt = "updatedAt"
|
|
10
|
+
updatedAt = "updatedAt",
|
|
11
|
+
headCode = "headCode",
|
|
12
|
+
footCode = "footCode"
|
|
11
13
|
}
|
|
12
14
|
export declare enum StyleConfigAssciations {
|
|
13
15
|
theme = "theme"
|
package/dist/index.mjs
CHANGED
|
@@ -1795,6 +1795,8 @@ var StyleConfigDistinctEnum = /* @__PURE__ */ ((StyleConfigDistinctEnum2) => {
|
|
|
1795
1795
|
StyleConfigDistinctEnum2["isInMarket"] = "isInMarket";
|
|
1796
1796
|
StyleConfigDistinctEnum2["createdAt"] = "createdAt";
|
|
1797
1797
|
StyleConfigDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1798
|
+
StyleConfigDistinctEnum2["headCode"] = "headCode";
|
|
1799
|
+
StyleConfigDistinctEnum2["footCode"] = "footCode";
|
|
1798
1800
|
return StyleConfigDistinctEnum2;
|
|
1799
1801
|
})(StyleConfigDistinctEnum || {});
|
|
1800
1802
|
var CookieConsentStrategy = /* @__PURE__ */ ((CookieConsentStrategy2) => {
|
|
@@ -2681,6 +2683,14 @@ class StyleConfigQueryOptions extends QueryOptions {
|
|
|
2681
2683
|
this.addField("updatedAt");
|
|
2682
2684
|
return this;
|
|
2683
2685
|
}
|
|
2686
|
+
headCode() {
|
|
2687
|
+
this.addField("headCode");
|
|
2688
|
+
return this;
|
|
2689
|
+
}
|
|
2690
|
+
footCode() {
|
|
2691
|
+
this.addField("footCode");
|
|
2692
|
+
return this;
|
|
2693
|
+
}
|
|
2684
2694
|
theme(options) {
|
|
2685
2695
|
if (Array.isArray(options)) {
|
|
2686
2696
|
this._associations["theme"] = new ThemeBranchQueryOptions(options);
|
|
@@ -6831,6 +6841,8 @@ var StyleConfigFields = /* @__PURE__ */ ((StyleConfigFields2) => {
|
|
|
6831
6841
|
StyleConfigFields2["isInMarket"] = "isInMarket";
|
|
6832
6842
|
StyleConfigFields2["createdAt"] = "createdAt";
|
|
6833
6843
|
StyleConfigFields2["updatedAt"] = "updatedAt";
|
|
6844
|
+
StyleConfigFields2["headCode"] = "headCode";
|
|
6845
|
+
StyleConfigFields2["footCode"] = "footCode";
|
|
6834
6846
|
return StyleConfigFields2;
|
|
6835
6847
|
})(StyleConfigFields || {});
|
|
6836
6848
|
var StyleConfigAssciations = /* @__PURE__ */ ((StyleConfigAssciations2) => {
|