@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
|
@@ -25,7 +25,6 @@ export interface FrontComponentBoolExp {
|
|
|
25
25
|
description?: StringComparisonExp;
|
|
26
26
|
parentId?: IdComparisonExp;
|
|
27
27
|
isSectionBlock?: BooleanComparisonExp;
|
|
28
|
-
compileResult?: unknown;
|
|
29
28
|
cover?: MediaBoolExp;
|
|
30
29
|
category?: ComponentCategoryBoolExp;
|
|
31
30
|
theme?: ThemeBranchBoolExp;
|
|
@@ -16,7 +16,6 @@ export declare enum FrontComponentDistinctEnum {
|
|
|
16
16
|
* 父组件Id
|
|
17
17
|
*/
|
|
18
18
|
parentId = "parentId",
|
|
19
|
-
isSectionBlock = "isSectionBlock"
|
|
20
|
-
compileResult = "compileResult"
|
|
19
|
+
isSectionBlock = "isSectionBlock"
|
|
21
20
|
}
|
|
22
21
|
export type FrontComponentDistinctExp = FrontComponentDistinctEnum;
|
|
@@ -7,6 +7,8 @@ export declare enum StyleConfigDistinctEnum {
|
|
|
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 type StyleConfigDistinctExp = StyleConfigDistinctEnum;
|
|
@@ -11,6 +11,8 @@ export interface StyleConfigInput {
|
|
|
11
11
|
isInMarket?: boolean;
|
|
12
12
|
createdAt?: Date;
|
|
13
13
|
updatedAt?: Date;
|
|
14
|
+
headCode?: string;
|
|
15
|
+
footCode?: string;
|
|
14
16
|
theme?: SetHasOne<ThemeBranchInput>;
|
|
15
17
|
}
|
|
16
18
|
export declare const styleConfigToInputCascade: (entity: StyleConfig) => StyleConfigInput;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import { ProductSettings } from './ProductSettings';
|
|
2
2
|
import { PostSettings } from './PostSettings';
|
|
3
|
-
import { FormSettings } from './FormSettings';
|
|
4
3
|
import { ImageSizes } from './ImageSizes';
|
|
5
4
|
import { EnquirySettings } from './EnquirySettings';
|
|
6
5
|
export interface ThemeSettings {
|
|
7
6
|
product?: ProductSettings;
|
|
8
7
|
post?: PostSettings;
|
|
9
|
-
form?: FormSettings;
|
|
10
8
|
imageSizes?: ImageSizes;
|
|
11
|
-
googleFonts?: string;
|
|
12
9
|
enquiry?: EnquirySettings;
|
|
13
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.88",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"eslint": "^7.32.0",
|
|
14
14
|
"typescript": "^5",
|
|
15
|
-
"@rxdrag/
|
|
16
|
-
"@rxdrag/
|
|
15
|
+
"@rxdrag/eslint-config-custom": "0.2.12",
|
|
16
|
+
"@rxdrag/tsconfig": "0.2.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@rxdrag/entify-lib": "0.0.
|
|
19
|
+
"@rxdrag/entify-lib": "0.0.17"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"lint": "eslint . --ext .ts,tsx",
|