@rxdrag/rxcms-models 0.3.78 → 0.3.79
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/ComponentCategoryQueryOptions.d.ts +1 -0
- package/dist/fields/ComponentCategoryFields.d.ts +2 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/ComponentCategory.d.ts +1 -0
- package/dist/interfaces/ComponentCategoryBoolExp.d.ts +1 -0
- package/dist/interfaces/ComponentCategoryDistinctExp.d.ts +2 -1
- package/dist/interfaces/ComponentCategoryInput.d.ts +1 -0
- package/dist/interfaces/ComponentCategoryOrderBy.d.ts +1 -0
- package/package.json +3 -3
|
@@ -15,6 +15,7 @@ export declare class ComponentCategoryQueryOptions extends QueryOptions<Componen
|
|
|
15
15
|
createdAt(): this;
|
|
16
16
|
isInMarket(): this;
|
|
17
17
|
isSectionBlock(): this;
|
|
18
|
+
title(): this;
|
|
18
19
|
components(options?: FrontComponentQueryOptions | (keyof FrontComponent)[]): this;
|
|
19
20
|
componentsAggregate(aggregate: IAggregate<FrontComponentBoolExp>): this;
|
|
20
21
|
theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
@@ -5,7 +5,8 @@ export declare enum ComponentCategoryFields {
|
|
|
5
5
|
updatedAt = "updatedAt",
|
|
6
6
|
createdAt = "createdAt",
|
|
7
7
|
isInMarket = "isInMarket",
|
|
8
|
-
isSectionBlock = "isSectionBlock"
|
|
8
|
+
isSectionBlock = "isSectionBlock",
|
|
9
|
+
title = "title"
|
|
9
10
|
}
|
|
10
11
|
export declare enum ComponentCategoryAssciations {
|
|
11
12
|
components = "components",
|
package/dist/index.mjs
CHANGED
|
@@ -1661,6 +1661,7 @@ var ComponentCategoryDistinctEnum = /* @__PURE__ */ ((ComponentCategoryDistinctE
|
|
|
1661
1661
|
ComponentCategoryDistinctEnum2["createdAt"] = "createdAt";
|
|
1662
1662
|
ComponentCategoryDistinctEnum2["isInMarket"] = "isInMarket";
|
|
1663
1663
|
ComponentCategoryDistinctEnum2["isSectionBlock"] = "isSectionBlock";
|
|
1664
|
+
ComponentCategoryDistinctEnum2["title"] = "title";
|
|
1664
1665
|
return ComponentCategoryDistinctEnum2;
|
|
1665
1666
|
})(ComponentCategoryDistinctEnum || {});
|
|
1666
1667
|
var MarketableDistinctEnum = /* @__PURE__ */ ((MarketableDistinctEnum2) => {
|
|
@@ -2320,6 +2321,10 @@ class ComponentCategoryQueryOptions extends QueryOptions {
|
|
|
2320
2321
|
this.addField("isSectionBlock");
|
|
2321
2322
|
return this;
|
|
2322
2323
|
}
|
|
2324
|
+
title() {
|
|
2325
|
+
this.addField("title");
|
|
2326
|
+
return this;
|
|
2327
|
+
}
|
|
2323
2328
|
components(options) {
|
|
2324
2329
|
if (Array.isArray(options)) {
|
|
2325
2330
|
this._associations["components"] = new FrontComponentQueryOptions(options);
|
|
@@ -6676,6 +6681,7 @@ var ComponentCategoryFields = /* @__PURE__ */ ((ComponentCategoryFields2) => {
|
|
|
6676
6681
|
ComponentCategoryFields2["createdAt"] = "createdAt";
|
|
6677
6682
|
ComponentCategoryFields2["isInMarket"] = "isInMarket";
|
|
6678
6683
|
ComponentCategoryFields2["isSectionBlock"] = "isSectionBlock";
|
|
6684
|
+
ComponentCategoryFields2["title"] = "title";
|
|
6679
6685
|
return ComponentCategoryFields2;
|
|
6680
6686
|
})(ComponentCategoryFields || {});
|
|
6681
6687
|
var ComponentCategoryAssciations = /* @__PURE__ */ ((ComponentCategoryAssciations2) => {
|