@rxdrag/rxcms-models 0.3.89 → 0.3.91
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/StyleConfigQueryOptions.d.ts +1 -0
- package/dist/fields/StyleConfigFields.d.ts +2 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/ImageSizes.d.ts +4 -0
- package/dist/interfaces/StyleConfig.d.ts +2 -0
- package/dist/interfaces/StyleConfigBoolExp.d.ts +1 -0
- package/dist/interfaces/StyleConfigDistinctExp.d.ts +2 -1
- package/dist/interfaces/StyleConfigInput.d.ts +2 -0
- package/dist/interfaces/StyleConfigOrderBy.d.ts +1 -0
- package/dist/interfaces/ThemeSettings.d.ts +0 -2
- package/package.json +4 -4
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ImageSizes } from './ImageSizes';
|
|
1
2
|
import { ThemeBranch } from './ThemeBranch';
|
|
2
3
|
export declare const StyleConfigEntityName = "StyleConfig";
|
|
3
4
|
export declare const StyleConfigEntityLabel = "";
|
|
@@ -13,5 +14,6 @@ export interface StyleConfig {
|
|
|
13
14
|
updatedAt?: Date;
|
|
14
15
|
headCode?: string;
|
|
15
16
|
footCode?: string;
|
|
17
|
+
imageSizes?: ImageSizes;
|
|
16
18
|
theme?: ThemeBranch;
|
|
17
19
|
}
|
|
@@ -9,6 +9,7 @@ export declare enum StyleConfigDistinctEnum {
|
|
|
9
9
|
createdAt = "createdAt",
|
|
10
10
|
updatedAt = "updatedAt",
|
|
11
11
|
headCode = "headCode",
|
|
12
|
-
footCode = "footCode"
|
|
12
|
+
footCode = "footCode",
|
|
13
|
+
imageSizes = "imageSizes"
|
|
13
14
|
}
|
|
14
15
|
export type StyleConfigDistinctExp = StyleConfigDistinctEnum;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { StyleConfig } from './StyleConfig';
|
|
2
|
+
import { ImageSizes } from './ImageSizes';
|
|
2
3
|
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
3
4
|
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
4
5
|
export interface StyleConfigInput {
|
|
@@ -13,6 +14,7 @@ export interface StyleConfigInput {
|
|
|
13
14
|
updatedAt?: Date;
|
|
14
15
|
headCode?: string;
|
|
15
16
|
footCode?: string;
|
|
17
|
+
imageSizes?: ImageSizes;
|
|
16
18
|
theme?: SetHasOne<ThemeBranchInput>;
|
|
17
19
|
}
|
|
18
20
|
export declare const styleConfigToInputCascade: (entity: StyleConfig) => StyleConfigInput;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { ProductSettings } from './ProductSettings';
|
|
2
2
|
import { PostSettings } from './PostSettings';
|
|
3
|
-
import { ImageSizes } from './ImageSizes';
|
|
4
3
|
import { EnquirySettings } from './EnquirySettings';
|
|
5
4
|
export interface ThemeSettings {
|
|
6
5
|
product?: ProductSettings;
|
|
7
6
|
post?: PostSettings;
|
|
8
|
-
imageSizes?: ImageSizes;
|
|
9
7
|
enquiry?: EnquirySettings;
|
|
10
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.91",
|
|
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/tsconfig": "0.2.0",
|
|
16
|
+
"@rxdrag/eslint-config-custom": "0.2.12"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@rxdrag/entify-lib": "0.0.
|
|
19
|
+
"@rxdrag/entify-lib": "0.0.20"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"lint": "eslint . --ext .ts,tsx",
|