@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.
@@ -11,6 +11,7 @@ export interface ComponentCategory {
11
11
  createdAt?: Date;
12
12
  isInMarket?: boolean;
13
13
  isSectionBlock?: boolean;
14
+ title?: string;
14
15
  components?: FrontComponent[];
15
16
  theme?: ThemeBranch;
16
17
  componentsAggregate?: Aggregate;
@@ -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;
@@ -11,6 +11,7 @@ export interface ComponentCategoryInput {
11
11
  createdAt?: Date;
12
12
  isInMarket?: boolean;
13
13
  isSectionBlock?: boolean;
14
+ title?: string;
14
15
  components?: SetHasMany<FrontComponentInput>;
15
16
  theme?: SetHasOne<ThemeBranchInput>;
16
17
  }
@@ -7,4 +7,5 @@ export interface ComponentCategoryOrderBy {
7
7
  createdAt?: OrderBy;
8
8
  isInMarket?: OrderBy;
9
9
  isSectionBlock?: OrderBy;
10
+ title?: OrderBy;
10
11
  }
@@ -9,8 +9,8 @@ export interface FrontComponent {
9
9
  name?: string;
10
10
  title?: string;
11
11
  seqValue?: number;
12
- props?: PropsSchema;
13
- testConfig?: any;
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
- complieResult?: any;
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
- props?: unknown;
18
- testConfig?: unknown;
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
- complieResult?: unknown;
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
- props = "props",
7
- testConfig = "testConfig",
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
- complieResult = "complieResult"
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
- props?: PropsSchema;
13
- testConfig?: any;
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
- complieResult?: any;
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
- props?: OrderBy;
8
- testConfig?: OrderBy;
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
- complieResult?: OrderBy;
21
+ compileResult?: OrderBy;
22
22
  }
@@ -2,6 +2,7 @@ export declare const StorageRecordEntityName = "StorageRecord";
2
2
  export declare const StorageRecordEntityLabel = "";
3
3
  export interface StorageRecord {
4
4
  id?: string | null;
5
+ refId?: string | null;
5
6
  resource?: string;
6
7
  storageType?: string;
7
8
  createdAt?: Date;
@@ -6,6 +6,7 @@ export interface StorageRecordBoolExp {
6
6
  _or?: StorageRecordBoolExp[];
7
7
  _not?: StorageRecordBoolExp;
8
8
  id?: IdComparisonExp;
9
+ refId?: IdComparisonExp;
9
10
  resource?: StringComparisonExp;
10
11
  storageType?: StringComparisonExp;
11
12
  createdAt?: DateTimeComparisonExp;
@@ -1,5 +1,6 @@
1
1
  export declare enum StorageRecordDistinctEnum {
2
2
  id = "id",
3
+ refId = "refId",
3
4
  resource = "resource",
4
5
  storageType = "storageType",
5
6
  createdAt = "createdAt",
@@ -1,6 +1,7 @@
1
1
  import { StorageRecord } from './StorageRecord';
2
2
  export interface StorageRecordInput {
3
3
  id?: string | null;
4
+ refId?: string | null;
4
5
  resource?: string;
5
6
  storageType?: string;
6
7
  createdAt?: Date;
@@ -1,6 +1,7 @@
1
1
  import { OrderBy } from '@rxdrag/entify-lib';
2
2
  export interface StorageRecordOrderBy {
3
3
  id?: OrderBy;
4
+ refId?: OrderBy;
4
5
  resource?: OrderBy;
5
6
  storageType?: OrderBy;
6
7
  createdAt?: OrderBy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.77",
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.9"
20
+ "@rxdrag/entify-lib": "0.0.10"
21
21
  },
22
22
  "scripts": {
23
23
  "lint": "eslint . --ext .ts,tsx",