@rxdrag/rxcms-models 0.3.87 → 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.
@@ -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;
@@ -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",
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";
@@ -2415,10 +2414,6 @@ class FrontComponentQueryOptions extends QueryOptions {
2415
2414
  this.addField("isSectionBlock");
2416
2415
  return this;
2417
2416
  }
2418
- compileResult() {
2419
- this.addField("compileResult");
2420
- return this;
2421
- }
2422
2417
  cover(options) {
2423
2418
  if (Array.isArray(options)) {
2424
2419
  this._associations["cover"] = new MediaQueryOptions(options);
@@ -6674,7 +6669,6 @@ var FrontComponentFields = /* @__PURE__ */ ((FrontComponentFields2) => {
6674
6669
  FrontComponentFields2["description"] = "description";
6675
6670
  FrontComponentFields2["parentId"] = "parentId";
6676
6671
  FrontComponentFields2["isSectionBlock"] = "isSectionBlock";
6677
- FrontComponentFields2["compileResult"] = "compileResult";
6678
6672
  return FrontComponentFields2;
6679
6673
  })(FrontComponentFields || {});
6680
6674
  var FrontComponentAssciations = /* @__PURE__ */ ((FrontComponentAssciations2) => {