@rxdrag/rxcms-models 0.3.41 → 0.3.43

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.
@@ -13,6 +13,7 @@ export interface Page extends WebsiteContent {
13
13
  */
14
14
  remark?: string;
15
15
  pageType?: PageType;
16
+ dataSource?: any;
16
17
  ogImage?: Media;
17
18
  lang?: Lang;
18
19
  website?: Website;
@@ -14,6 +14,7 @@ export interface PageBoolExp extends WebsiteContentBoolExp {
14
14
  title?: StringComparisonExp;
15
15
  remark?: StringComparisonExp;
16
16
  pageType?: EnumComparisonExp<PageType>;
17
+ dataSource?: unknown;
17
18
  ogImage?: MediaBoolExp;
18
19
  lang?: LangBoolExp;
19
20
  website?: WebsiteBoolExp;
@@ -7,6 +7,7 @@ export declare enum PageDistinctEnum {
7
7
  */
8
8
  remark = "remark",
9
9
  pageType = "pageType",
10
+ dataSource = "dataSource",
10
11
  content = "content",
11
12
  extends = "extends",
12
13
  createdAt = "createdAt",
@@ -13,6 +13,7 @@ export interface PageInput extends WebsiteContent {
13
13
  */
14
14
  remark?: string;
15
15
  pageType?: PageType;
16
+ dataSource?: any;
16
17
  ogImage?: SetHasOne<MediaInput>;
17
18
  lang?: SetHasOne<LangInput>;
18
19
  website?: SetHasOne<WebsiteInput>;
@@ -8,4 +8,5 @@ export interface PageOrderBy extends WebsiteContentOrderBy {
8
8
  */
9
9
  remark?: OrderBy;
10
10
  pageType?: OrderBy;
11
+ dataSource?: OrderBy;
11
12
  }
@@ -38,5 +38,9 @@ export declare enum PageType {
38
38
  /**
39
39
  * label: undefined
40
40
  */
41
- PageError = "PageError"
41
+ PageError = "PageError",
42
+ /**
43
+ * label: undefined
44
+ */
45
+ Thanks = "Thanks"
42
46
  }
@@ -8,6 +8,7 @@ export interface WebsiteFrame extends WebsitePart {
8
8
  id?: string | null;
9
9
  content?: Content;
10
10
  settings?: any;
11
+ dataSource?: any;
11
12
  lang?: Lang;
12
13
  website?: Website;
13
14
  }
@@ -9,6 +9,7 @@ export interface WebsiteFrameBoolExp extends WebsitePartBoolExp {
9
9
  id?: IdComparisonExp;
10
10
  content?: unknown;
11
11
  settings?: unknown;
12
+ dataSource?: unknown;
12
13
  lang?: LangBoolExp;
13
14
  website?: WebsiteBoolExp;
14
15
  }
@@ -3,6 +3,7 @@ export declare enum WebsiteFrameDistinctEnum {
3
3
  id = "id",
4
4
  content = "content",
5
5
  settings = "settings",
6
+ dataSource = "dataSource",
6
7
  createdAt = "createdAt",
7
8
  updatedAt = "updatedAt"
8
9
  }
@@ -8,6 +8,7 @@ export interface WebsiteFrameInput extends WebsitePart {
8
8
  id?: string | null;
9
9
  content?: Content;
10
10
  settings?: any;
11
+ dataSource?: any;
11
12
  lang?: SetHasOne<LangInput>;
12
13
  website?: SetHasOne<WebsiteInput>;
13
14
  }
@@ -4,4 +4,5 @@ export interface WebsiteFrameOrderBy extends WebsitePartOrderBy {
4
4
  id?: OrderBy;
5
5
  content?: OrderBy;
6
6
  settings?: OrderBy;
7
+ dataSource?: OrderBy;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.41",
3
+ "version": "0.3.43",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -12,12 +12,12 @@
12
12
  "devDependencies": {
13
13
  "eslint": "^7.32.0",
14
14
  "typescript": "^5",
15
- "@rxdrag/eslint-config-custom": "0.2.7",
16
- "@rxdrag/tsconfig": "0.2.0"
15
+ "@rxdrag/tsconfig": "0.2.0",
16
+ "@rxdrag/eslint-config-custom": "0.2.9"
17
17
  },
18
18
  "dependencies": {
19
19
  "swr": "^2.2.4",
20
- "@rxdrag/entify-hooks": "0.2.35"
20
+ "@rxdrag/entify-hooks": "0.2.37"
21
21
  },
22
22
  "scripts": {
23
23
  "lint": "eslint . --ext .ts,tsx",