@rxdrag/rxcms-models 0.3.77 → 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/classes/FrontComponentQueryOptions.d.ts +3 -3
- package/dist/classes/StorageRecordQueryOptions.d.ts +1 -0
- package/dist/fields/ComponentCategoryFields.d.ts +2 -1
- package/dist/fields/FrontComponentFields.d.ts +3 -3
- package/dist/fields/StorageRecordFields.d.ts +1 -0
- package/dist/index.mjs +24 -12
- 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/dist/interfaces/FrontComponent.d.ts +3 -3
- package/dist/interfaces/FrontComponentBoolExp.d.ts +3 -3
- package/dist/interfaces/FrontComponentDistinctExp.d.ts +3 -3
- package/dist/interfaces/FrontComponentInput.d.ts +3 -3
- package/dist/interfaces/FrontComponentOrderBy.d.ts +3 -3
- package/dist/interfaces/StorageRecord.d.ts +1 -0
- package/dist/interfaces/StorageRecordBoolExp.d.ts +1 -0
- package/dist/interfaces/StorageRecordDistinctExp.d.ts +1 -0
- package/dist/interfaces/StorageRecordInput.d.ts +1 -0
- package/dist/interfaces/StorageRecordOrderBy.d.ts +1 -0
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -13,8 +13,8 @@ export declare class FrontComponentQueryOptions extends QueryOptions<FrontCompon
|
|
|
13
13
|
name(): this;
|
|
14
14
|
title(): this;
|
|
15
15
|
seqValue(): this;
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
propsSchema(): this;
|
|
17
|
+
propsTest(): this;
|
|
18
18
|
updatedAt(): this;
|
|
19
19
|
createdAt(): this;
|
|
20
20
|
slots(): this;
|
|
@@ -27,7 +27,7 @@ export declare class FrontComponentQueryOptions extends QueryOptions<FrontCompon
|
|
|
27
27
|
*/
|
|
28
28
|
parentId(): this;
|
|
29
29
|
isSectionBlock(): this;
|
|
30
|
-
|
|
30
|
+
compileResult(): this;
|
|
31
31
|
cover(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
32
32
|
category(options?: ComponentCategoryQueryOptions | (keyof ComponentCategory)[]): this;
|
|
33
33
|
theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
@@ -4,6 +4,7 @@ import { StorageRecord, StorageRecordBoolExp, StorageRecordDistinctExp, StorageR
|
|
|
4
4
|
export declare class StorageRecordQueryOptions extends QueryOptions<StorageRecord, StorageRecordBoolExp, StorageRecordOrderBy, StorageRecordDistinctExp> {
|
|
5
5
|
constructor(fields?: (keyof StorageRecord)[], queryArgs?: IQueryArgs<StorageRecordBoolExp, StorageRecordOrderBy, StorageRecordDistinctExp>);
|
|
6
6
|
id(): this;
|
|
7
|
+
refId(): this;
|
|
7
8
|
resource(): this;
|
|
8
9
|
storageType(): this;
|
|
9
10
|
createdAt(): 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",
|
|
@@ -3,8 +3,8 @@ export declare enum FrontComponentFields {
|
|
|
3
3
|
name = "name",
|
|
4
4
|
title = "title",
|
|
5
5
|
seqValue = "seqValue",
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
propsSchema = "propsSchema",
|
|
7
|
+
propsTest = "propsTest",
|
|
8
8
|
updatedAt = "updatedAt",
|
|
9
9
|
createdAt = "createdAt",
|
|
10
10
|
slots = "slots",
|
|
@@ -17,7 +17,7 @@ export declare enum FrontComponentFields {
|
|
|
17
17
|
*/
|
|
18
18
|
parentId = "parentId",
|
|
19
19
|
isSectionBlock = "isSectionBlock",
|
|
20
|
-
|
|
20
|
+
compileResult = "compileResult"
|
|
21
21
|
}
|
|
22
22
|
export declare enum FrontComponentAssciations {
|
|
23
23
|
cover = "cover",
|
package/dist/index.mjs
CHANGED
|
@@ -1174,6 +1174,7 @@ const storageRecordToInput = (entity) => {
|
|
|
1174
1174
|
};
|
|
1175
1175
|
var StorageRecordDistinctEnum = /* @__PURE__ */ ((StorageRecordDistinctEnum2) => {
|
|
1176
1176
|
StorageRecordDistinctEnum2["id"] = "id";
|
|
1177
|
+
StorageRecordDistinctEnum2["refId"] = "refId";
|
|
1177
1178
|
StorageRecordDistinctEnum2["resource"] = "resource";
|
|
1178
1179
|
StorageRecordDistinctEnum2["storageType"] = "storageType";
|
|
1179
1180
|
StorageRecordDistinctEnum2["createdAt"] = "createdAt";
|
|
@@ -1636,8 +1637,8 @@ var FrontComponentDistinctEnum = /* @__PURE__ */ ((FrontComponentDistinctEnum2)
|
|
|
1636
1637
|
FrontComponentDistinctEnum2["name"] = "name";
|
|
1637
1638
|
FrontComponentDistinctEnum2["title"] = "title";
|
|
1638
1639
|
FrontComponentDistinctEnum2["seqValue"] = "seqValue";
|
|
1639
|
-
FrontComponentDistinctEnum2["
|
|
1640
|
-
FrontComponentDistinctEnum2["
|
|
1640
|
+
FrontComponentDistinctEnum2["propsSchema"] = "propsSchema";
|
|
1641
|
+
FrontComponentDistinctEnum2["propsTest"] = "propsTest";
|
|
1641
1642
|
FrontComponentDistinctEnum2["updatedAt"] = "updatedAt";
|
|
1642
1643
|
FrontComponentDistinctEnum2["createdAt"] = "createdAt";
|
|
1643
1644
|
FrontComponentDistinctEnum2["slots"] = "slots";
|
|
@@ -1647,7 +1648,7 @@ var FrontComponentDistinctEnum = /* @__PURE__ */ ((FrontComponentDistinctEnum2)
|
|
|
1647
1648
|
FrontComponentDistinctEnum2["description"] = "description";
|
|
1648
1649
|
FrontComponentDistinctEnum2["parentId"] = "parentId";
|
|
1649
1650
|
FrontComponentDistinctEnum2["isSectionBlock"] = "isSectionBlock";
|
|
1650
|
-
FrontComponentDistinctEnum2["
|
|
1651
|
+
FrontComponentDistinctEnum2["compileResult"] = "compileResult";
|
|
1651
1652
|
return FrontComponentDistinctEnum2;
|
|
1652
1653
|
})(FrontComponentDistinctEnum || {});
|
|
1653
1654
|
const ComponentCategoryEntityName = "ComponentCategory";
|
|
@@ -1660,6 +1661,7 @@ var ComponentCategoryDistinctEnum = /* @__PURE__ */ ((ComponentCategoryDistinctE
|
|
|
1660
1661
|
ComponentCategoryDistinctEnum2["createdAt"] = "createdAt";
|
|
1661
1662
|
ComponentCategoryDistinctEnum2["isInMarket"] = "isInMarket";
|
|
1662
1663
|
ComponentCategoryDistinctEnum2["isSectionBlock"] = "isSectionBlock";
|
|
1664
|
+
ComponentCategoryDistinctEnum2["title"] = "title";
|
|
1663
1665
|
return ComponentCategoryDistinctEnum2;
|
|
1664
1666
|
})(ComponentCategoryDistinctEnum || {});
|
|
1665
1667
|
var MarketableDistinctEnum = /* @__PURE__ */ ((MarketableDistinctEnum2) => {
|
|
@@ -2319,6 +2321,10 @@ class ComponentCategoryQueryOptions extends QueryOptions {
|
|
|
2319
2321
|
this.addField("isSectionBlock");
|
|
2320
2322
|
return this;
|
|
2321
2323
|
}
|
|
2324
|
+
title() {
|
|
2325
|
+
this.addField("title");
|
|
2326
|
+
return this;
|
|
2327
|
+
}
|
|
2322
2328
|
components(options) {
|
|
2323
2329
|
if (Array.isArray(options)) {
|
|
2324
2330
|
this._associations["components"] = new FrontComponentQueryOptions(options);
|
|
@@ -2360,12 +2366,12 @@ class FrontComponentQueryOptions extends QueryOptions {
|
|
|
2360
2366
|
this.addField("seqValue");
|
|
2361
2367
|
return this;
|
|
2362
2368
|
}
|
|
2363
|
-
|
|
2364
|
-
this.addField("
|
|
2369
|
+
propsSchema() {
|
|
2370
|
+
this.addField("propsSchema");
|
|
2365
2371
|
return this;
|
|
2366
2372
|
}
|
|
2367
|
-
|
|
2368
|
-
this.addField("
|
|
2373
|
+
propsTest() {
|
|
2374
|
+
this.addField("propsTest");
|
|
2369
2375
|
return this;
|
|
2370
2376
|
}
|
|
2371
2377
|
updatedAt() {
|
|
@@ -2407,8 +2413,8 @@ class FrontComponentQueryOptions extends QueryOptions {
|
|
|
2407
2413
|
this.addField("isSectionBlock");
|
|
2408
2414
|
return this;
|
|
2409
2415
|
}
|
|
2410
|
-
|
|
2411
|
-
this.addField("
|
|
2416
|
+
compileResult() {
|
|
2417
|
+
this.addField("compileResult");
|
|
2412
2418
|
return this;
|
|
2413
2419
|
}
|
|
2414
2420
|
cover(options) {
|
|
@@ -5530,6 +5536,10 @@ class StorageRecordQueryOptions extends QueryOptions {
|
|
|
5530
5536
|
this.addField("id");
|
|
5531
5537
|
return this;
|
|
5532
5538
|
}
|
|
5539
|
+
refId() {
|
|
5540
|
+
this.addField("refId");
|
|
5541
|
+
return this;
|
|
5542
|
+
}
|
|
5533
5543
|
resource() {
|
|
5534
5544
|
this.addField("resource");
|
|
5535
5545
|
return this;
|
|
@@ -6112,6 +6122,7 @@ var AbilityAssciations = /* @__PURE__ */ ((AbilityAssciations2) => {
|
|
|
6112
6122
|
})();
|
|
6113
6123
|
var StorageRecordFields = /* @__PURE__ */ ((StorageRecordFields2) => {
|
|
6114
6124
|
StorageRecordFields2["id"] = "id";
|
|
6125
|
+
StorageRecordFields2["refId"] = "refId";
|
|
6115
6126
|
StorageRecordFields2["resource"] = "resource";
|
|
6116
6127
|
StorageRecordFields2["storageType"] = "storageType";
|
|
6117
6128
|
StorageRecordFields2["createdAt"] = "createdAt";
|
|
@@ -6642,8 +6653,8 @@ var FrontComponentFields = /* @__PURE__ */ ((FrontComponentFields2) => {
|
|
|
6642
6653
|
FrontComponentFields2["name"] = "name";
|
|
6643
6654
|
FrontComponentFields2["title"] = "title";
|
|
6644
6655
|
FrontComponentFields2["seqValue"] = "seqValue";
|
|
6645
|
-
FrontComponentFields2["
|
|
6646
|
-
FrontComponentFields2["
|
|
6656
|
+
FrontComponentFields2["propsSchema"] = "propsSchema";
|
|
6657
|
+
FrontComponentFields2["propsTest"] = "propsTest";
|
|
6647
6658
|
FrontComponentFields2["updatedAt"] = "updatedAt";
|
|
6648
6659
|
FrontComponentFields2["createdAt"] = "createdAt";
|
|
6649
6660
|
FrontComponentFields2["slots"] = "slots";
|
|
@@ -6653,7 +6664,7 @@ var FrontComponentFields = /* @__PURE__ */ ((FrontComponentFields2) => {
|
|
|
6653
6664
|
FrontComponentFields2["description"] = "description";
|
|
6654
6665
|
FrontComponentFields2["parentId"] = "parentId";
|
|
6655
6666
|
FrontComponentFields2["isSectionBlock"] = "isSectionBlock";
|
|
6656
|
-
FrontComponentFields2["
|
|
6667
|
+
FrontComponentFields2["compileResult"] = "compileResult";
|
|
6657
6668
|
return FrontComponentFields2;
|
|
6658
6669
|
})(FrontComponentFields || {});
|
|
6659
6670
|
var FrontComponentAssciations = /* @__PURE__ */ ((FrontComponentAssciations2) => {
|
|
@@ -6670,6 +6681,7 @@ var ComponentCategoryFields = /* @__PURE__ */ ((ComponentCategoryFields2) => {
|
|
|
6670
6681
|
ComponentCategoryFields2["createdAt"] = "createdAt";
|
|
6671
6682
|
ComponentCategoryFields2["isInMarket"] = "isInMarket";
|
|
6672
6683
|
ComponentCategoryFields2["isSectionBlock"] = "isSectionBlock";
|
|
6684
|
+
ComponentCategoryFields2["title"] = "title";
|
|
6673
6685
|
return ComponentCategoryFields2;
|
|
6674
6686
|
})(ComponentCategoryFields || {});
|
|
6675
6687
|
var ComponentCategoryAssciations = /* @__PURE__ */ ((ComponentCategoryAssciations2) => {
|