@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.
@@ -3,4 +3,8 @@ export interface ImageSizes {
3
3
  small?: ImageSize;
4
4
  medium?: ImageSize;
5
5
  large?: ImageSize;
6
+ productThumbnial?: ImageSize;
7
+ product?: ImageSize;
8
+ post?: ImageSize;
9
+ postThumbnial?: ImageSize;
6
10
  }
@@ -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
  }
@@ -18,5 +18,6 @@ export interface StyleConfigBoolExp {
18
18
  updatedAt?: DateTimeComparisonExp;
19
19
  headCode?: StringComparisonExp;
20
20
  footCode?: StringComparisonExp;
21
+ imageSizes?: unknown;
21
22
  theme?: ThemeBranchBoolExp;
22
23
  }
@@ -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;
@@ -11,4 +11,5 @@ export interface StyleConfigOrderBy {
11
11
  updatedAt?: OrderBy;
12
12
  headCode?: OrderBy;
13
13
  footCode?: OrderBy;
14
+ imageSizes?: OrderBy;
14
15
  }
@@ -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.89",
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/eslint-config-custom": "0.2.12",
16
- "@rxdrag/tsconfig": "0.2.0"
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.18"
19
+ "@rxdrag/entify-lib": "0.0.20"
20
20
  },
21
21
  "scripts": {
22
22
  "lint": "eslint . --ext .ts,tsx",