@rxdrag/rxcms-models 0.3.86 → 0.3.88
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/FrontComponentQueryOptions.d.ts +0 -1
- package/dist/classes/StyleConfigQueryOptions.d.ts +2 -0
- package/dist/fields/FrontComponentFields.d.ts +1 -2
- package/dist/fields/StyleConfigFields.d.ts +3 -1
- package/dist/index.mjs +12 -6
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/FrontComponent.d.ts +0 -1
- package/dist/interfaces/FrontComponentBoolExp.d.ts +0 -1
- package/dist/interfaces/FrontComponentDistinctExp.d.ts +1 -2
- package/dist/interfaces/FrontComponentInput.d.ts +0 -1
- package/dist/interfaces/FrontComponentOrderBy.d.ts +0 -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
|
@@ -27,7 +27,6 @@ export declare class FrontComponentQueryOptions extends QueryOptions<FrontCompon
|
|
|
27
27
|
*/
|
|
28
28
|
parentId(): this;
|
|
29
29
|
isSectionBlock(): this;
|
|
30
|
-
compileResult(): this;
|
|
31
30
|
cover(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
32
31
|
category(options?: ComponentCategoryQueryOptions | (keyof ComponentCategory)[]): this;
|
|
33
32
|
theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
@@ -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
|
}
|
|
@@ -16,8 +16,7 @@ export declare enum FrontComponentFields {
|
|
|
16
16
|
* 父组件Id
|
|
17
17
|
*/
|
|
18
18
|
parentId = "parentId",
|
|
19
|
-
isSectionBlock = "isSectionBlock"
|
|
20
|
-
compileResult = "compileResult"
|
|
19
|
+
isSectionBlock = "isSectionBlock"
|
|
21
20
|
}
|
|
22
21
|
export declare enum FrontComponentAssciations {
|
|
23
22
|
cover = "cover",
|
|
@@ -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
|
@@ -1648,7 +1648,6 @@ var FrontComponentDistinctEnum = /* @__PURE__ */ ((FrontComponentDistinctEnum2)
|
|
|
1648
1648
|
FrontComponentDistinctEnum2["description"] = "description";
|
|
1649
1649
|
FrontComponentDistinctEnum2["parentId"] = "parentId";
|
|
1650
1650
|
FrontComponentDistinctEnum2["isSectionBlock"] = "isSectionBlock";
|
|
1651
|
-
FrontComponentDistinctEnum2["compileResult"] = "compileResult";
|
|
1652
1651
|
return FrontComponentDistinctEnum2;
|
|
1653
1652
|
})(FrontComponentDistinctEnum || {});
|
|
1654
1653
|
const ComponentCategoryEntityName = "ComponentCategory";
|
|
@@ -1795,6 +1794,8 @@ var StyleConfigDistinctEnum = /* @__PURE__ */ ((StyleConfigDistinctEnum2) => {
|
|
|
1795
1794
|
StyleConfigDistinctEnum2["isInMarket"] = "isInMarket";
|
|
1796
1795
|
StyleConfigDistinctEnum2["createdAt"] = "createdAt";
|
|
1797
1796
|
StyleConfigDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1797
|
+
StyleConfigDistinctEnum2["headCode"] = "headCode";
|
|
1798
|
+
StyleConfigDistinctEnum2["footCode"] = "footCode";
|
|
1798
1799
|
return StyleConfigDistinctEnum2;
|
|
1799
1800
|
})(StyleConfigDistinctEnum || {});
|
|
1800
1801
|
var CookieConsentStrategy = /* @__PURE__ */ ((CookieConsentStrategy2) => {
|
|
@@ -2413,10 +2414,6 @@ class FrontComponentQueryOptions extends QueryOptions {
|
|
|
2413
2414
|
this.addField("isSectionBlock");
|
|
2414
2415
|
return this;
|
|
2415
2416
|
}
|
|
2416
|
-
compileResult() {
|
|
2417
|
-
this.addField("compileResult");
|
|
2418
|
-
return this;
|
|
2419
|
-
}
|
|
2420
2417
|
cover(options) {
|
|
2421
2418
|
if (Array.isArray(options)) {
|
|
2422
2419
|
this._associations["cover"] = new MediaQueryOptions(options);
|
|
@@ -2681,6 +2678,14 @@ class StyleConfigQueryOptions extends QueryOptions {
|
|
|
2681
2678
|
this.addField("updatedAt");
|
|
2682
2679
|
return this;
|
|
2683
2680
|
}
|
|
2681
|
+
headCode() {
|
|
2682
|
+
this.addField("headCode");
|
|
2683
|
+
return this;
|
|
2684
|
+
}
|
|
2685
|
+
footCode() {
|
|
2686
|
+
this.addField("footCode");
|
|
2687
|
+
return this;
|
|
2688
|
+
}
|
|
2684
2689
|
theme(options) {
|
|
2685
2690
|
if (Array.isArray(options)) {
|
|
2686
2691
|
this._associations["theme"] = new ThemeBranchQueryOptions(options);
|
|
@@ -6664,7 +6669,6 @@ var FrontComponentFields = /* @__PURE__ */ ((FrontComponentFields2) => {
|
|
|
6664
6669
|
FrontComponentFields2["description"] = "description";
|
|
6665
6670
|
FrontComponentFields2["parentId"] = "parentId";
|
|
6666
6671
|
FrontComponentFields2["isSectionBlock"] = "isSectionBlock";
|
|
6667
|
-
FrontComponentFields2["compileResult"] = "compileResult";
|
|
6668
6672
|
return FrontComponentFields2;
|
|
6669
6673
|
})(FrontComponentFields || {});
|
|
6670
6674
|
var FrontComponentAssciations = /* @__PURE__ */ ((FrontComponentAssciations2) => {
|
|
@@ -6831,6 +6835,8 @@ var StyleConfigFields = /* @__PURE__ */ ((StyleConfigFields2) => {
|
|
|
6831
6835
|
StyleConfigFields2["isInMarket"] = "isInMarket";
|
|
6832
6836
|
StyleConfigFields2["createdAt"] = "createdAt";
|
|
6833
6837
|
StyleConfigFields2["updatedAt"] = "updatedAt";
|
|
6838
|
+
StyleConfigFields2["headCode"] = "headCode";
|
|
6839
|
+
StyleConfigFields2["footCode"] = "footCode";
|
|
6834
6840
|
return StyleConfigFields2;
|
|
6835
6841
|
})(StyleConfigFields || {});
|
|
6836
6842
|
var StyleConfigAssciations = /* @__PURE__ */ ((StyleConfigAssciations2) => {
|