@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
|
@@ -16,6 +16,7 @@ export interface ComponentCategoryBoolExp {
|
|
|
16
16
|
createdAt?: DateTimeComparisonExp;
|
|
17
17
|
isInMarket?: BooleanComparisonExp;
|
|
18
18
|
isSectionBlock?: BooleanComparisonExp;
|
|
19
|
+
title?: StringComparisonExp;
|
|
19
20
|
components?: FrontComponentBoolExp;
|
|
20
21
|
theme?: ThemeBranchBoolExp;
|
|
21
22
|
}
|
|
@@ -5,6 +5,7 @@ export declare enum ComponentCategoryDistinctEnum {
|
|
|
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 type ComponentCategoryDistinctExp = ComponentCategoryDistinctEnum;
|
|
@@ -9,8 +9,8 @@ export interface FrontComponent {
|
|
|
9
9
|
name?: string;
|
|
10
10
|
title?: string;
|
|
11
11
|
seqValue?: number;
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
propsSchema?: PropsSchema;
|
|
13
|
+
propsTest?: any;
|
|
14
14
|
updatedAt?: Date;
|
|
15
15
|
createdAt?: Date;
|
|
16
16
|
slots?: any;
|
|
@@ -23,7 +23,7 @@ export interface FrontComponent {
|
|
|
23
23
|
*/
|
|
24
24
|
parentId?: string | null;
|
|
25
25
|
isSectionBlock?: boolean;
|
|
26
|
-
|
|
26
|
+
compileResult?: any;
|
|
27
27
|
cover?: Media;
|
|
28
28
|
category?: ComponentCategory;
|
|
29
29
|
theme?: ThemeBranch;
|
|
@@ -14,8 +14,8 @@ export interface FrontComponentBoolExp {
|
|
|
14
14
|
name?: StringComparisonExp;
|
|
15
15
|
title?: StringComparisonExp;
|
|
16
16
|
seqValue?: NumberComparisonExp;
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
propsSchema?: unknown;
|
|
18
|
+
propsTest?: unknown;
|
|
19
19
|
updatedAt?: DateTimeComparisonExp;
|
|
20
20
|
createdAt?: DateTimeComparisonExp;
|
|
21
21
|
slots?: unknown;
|
|
@@ -25,7 +25,7 @@ export interface FrontComponentBoolExp {
|
|
|
25
25
|
description?: StringComparisonExp;
|
|
26
26
|
parentId?: IdComparisonExp;
|
|
27
27
|
isSectionBlock?: BooleanComparisonExp;
|
|
28
|
-
|
|
28
|
+
compileResult?: unknown;
|
|
29
29
|
cover?: MediaBoolExp;
|
|
30
30
|
category?: ComponentCategoryBoolExp;
|
|
31
31
|
theme?: ThemeBranchBoolExp;
|
|
@@ -3,8 +3,8 @@ export declare enum FrontComponentDistinctEnum {
|
|
|
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,6 +17,6 @@ export declare enum FrontComponentDistinctEnum {
|
|
|
17
17
|
*/
|
|
18
18
|
parentId = "parentId",
|
|
19
19
|
isSectionBlock = "isSectionBlock",
|
|
20
|
-
|
|
20
|
+
compileResult = "compileResult"
|
|
21
21
|
}
|
|
22
22
|
export type FrontComponentDistinctExp = FrontComponentDistinctEnum;
|
|
@@ -9,8 +9,8 @@ export interface FrontComponentInput {
|
|
|
9
9
|
name?: string;
|
|
10
10
|
title?: string;
|
|
11
11
|
seqValue?: number;
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
propsSchema?: PropsSchema;
|
|
13
|
+
propsTest?: any;
|
|
14
14
|
updatedAt?: Date;
|
|
15
15
|
createdAt?: Date;
|
|
16
16
|
slots?: any;
|
|
@@ -23,7 +23,7 @@ export interface FrontComponentInput {
|
|
|
23
23
|
*/
|
|
24
24
|
parentId?: string | null;
|
|
25
25
|
isSectionBlock?: boolean;
|
|
26
|
-
|
|
26
|
+
compileResult?: any;
|
|
27
27
|
cover?: SetHasOne<MediaInput>;
|
|
28
28
|
category?: SetHasOne<ComponentCategoryInput>;
|
|
29
29
|
theme?: SetHasOne<ThemeBranchInput>;
|
|
@@ -4,8 +4,8 @@ export interface FrontComponentOrderBy {
|
|
|
4
4
|
name?: OrderBy;
|
|
5
5
|
title?: OrderBy;
|
|
6
6
|
seqValue?: OrderBy;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
propsSchema?: OrderBy;
|
|
8
|
+
propsTest?: OrderBy;
|
|
9
9
|
updatedAt?: OrderBy;
|
|
10
10
|
createdAt?: OrderBy;
|
|
11
11
|
slots?: OrderBy;
|
|
@@ -18,5 +18,5 @@ export interface FrontComponentOrderBy {
|
|
|
18
18
|
*/
|
|
19
19
|
parentId?: OrderBy;
|
|
20
20
|
isSectionBlock?: OrderBy;
|
|
21
|
-
|
|
21
|
+
compileResult?: OrderBy;
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.79",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"swr": "^2.2.4",
|
|
20
|
-
"@rxdrag/entify-lib": "0.0.
|
|
20
|
+
"@rxdrag/entify-lib": "0.0.10"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"lint": "eslint . --ext .ts,tsx",
|