@rxdrag/rxcms-models 0.3.35 → 0.3.37
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/LangQueryOptions.d.ts +5 -0
- package/dist/classes/MediaQueryOptions.d.ts +3 -0
- package/dist/classes/PostCategoryQueryOptions.d.ts +3 -0
- package/dist/classes/WebsiteFrameQueryOptions.d.ts +17 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +5 -0
- package/dist/classes/index.d.ts +1 -0
- package/dist/entries/index.d.ts +1 -0
- package/dist/entries/websiteFrameEntry.d.ts +2 -0
- package/dist/fields/LangFields.d.ts +3 -1
- package/dist/fields/MediaFields.d.ts +2 -1
- package/dist/fields/PostCategoryFields.d.ts +1 -0
- package/dist/fields/WebsiteFields.d.ts +3 -1
- package/dist/fields/WebsiteFrameFields.d.ts +11 -0
- package/dist/fields/index.d.ts +1 -0
- package/dist/index.mjs +164 -15
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Content.d.ts +3 -0
- package/dist/interfaces/FrontComponent.d.ts +2 -1
- package/dist/interfaces/FrontComponentInput.d.ts +2 -1
- package/dist/interfaces/Lang.d.ts +3 -0
- package/dist/interfaces/LangBoolExp.d.ts +2 -0
- package/dist/interfaces/LangInput.d.ts +2 -0
- package/dist/interfaces/Media.d.ts +2 -0
- package/dist/interfaces/MediaBoolExp.d.ts +2 -0
- package/dist/interfaces/MediaInput.d.ts +2 -0
- package/dist/interfaces/PageType.d.ts +9 -5
- package/dist/interfaces/PostCategory.d.ts +2 -0
- package/dist/interfaces/PostCategoryBoolExp.d.ts +2 -0
- package/dist/interfaces/PostCategoryInput.d.ts +2 -0
- package/dist/interfaces/Product.d.ts +3 -2
- package/dist/interfaces/ProductInput.d.ts +3 -2
- package/dist/interfaces/Website.d.ts +3 -0
- package/dist/interfaces/WebsiteBoolExp.d.ts +2 -0
- package/dist/interfaces/WebsiteContent.d.ts +2 -1
- package/dist/interfaces/WebsiteFrame.d.ts +13 -0
- package/dist/interfaces/WebsiteFrameBoolExp.d.ts +14 -0
- package/dist/interfaces/WebsiteFrameDistinctExp.d.ts +9 -0
- package/dist/interfaces/WebsiteFrameInput.d.ts +15 -0
- package/dist/interfaces/WebsiteFrameOrderBy.d.ts +7 -0
- package/dist/interfaces/WebsiteInput.d.ts +2 -0
- package/dist/interfaces/index.d.ts +6 -0
- package/package.json +3 -3
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Content } from './Content';
|
|
1
2
|
import { PropsFields } from './PropsFields';
|
|
2
3
|
import { ComponentCategory } from './ComponentCategory';
|
|
3
4
|
import { Theme } from './Theme';
|
|
@@ -8,7 +9,7 @@ export interface FrontComponent {
|
|
|
8
9
|
name?: string;
|
|
9
10
|
title?: string;
|
|
10
11
|
seqValue?: number;
|
|
11
|
-
content?:
|
|
12
|
+
content?: Content;
|
|
12
13
|
props?: PropsFields;
|
|
13
14
|
testConfig?: any;
|
|
14
15
|
updatedAt?: Date;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { FrontComponent } from './FrontComponent';
|
|
2
|
+
import { Content } from './Content';
|
|
2
3
|
import { PropsFields } from './PropsFields';
|
|
3
4
|
import { ComponentCategoryInput } from './ComponentCategoryInput';
|
|
4
5
|
import { ThemeInput } from './ThemeInput';
|
|
@@ -8,7 +9,7 @@ export interface FrontComponentInput {
|
|
|
8
9
|
name?: string;
|
|
9
10
|
title?: string;
|
|
10
11
|
seqValue?: number;
|
|
11
|
-
content?:
|
|
12
|
+
content?: Content;
|
|
12
13
|
props?: PropsFields;
|
|
13
14
|
testConfig?: any;
|
|
14
15
|
updatedAt?: Date;
|
|
@@ -13,6 +13,7 @@ import { Customer } from './Customer';
|
|
|
13
13
|
import { ProductCategory } from './ProductCategory';
|
|
14
14
|
import { SpamFilterRule } from './SpamFilterRule';
|
|
15
15
|
import { Media } from './Media';
|
|
16
|
+
import { WebsiteFrame } from './WebsiteFrame';
|
|
16
17
|
import { Aggregate } from './Aggregate';
|
|
17
18
|
export declare const LangEntityName = "Lang";
|
|
18
19
|
export declare const LangEntityLabel = "\u8BED\u8A00";
|
|
@@ -57,6 +58,7 @@ export interface Lang {
|
|
|
57
58
|
webPartsOfProductCategory?: ProductCategory[];
|
|
58
59
|
webPartsOfSpamFilterRule?: SpamFilterRule[];
|
|
59
60
|
webPartsOfMedia?: Media[];
|
|
61
|
+
webPartsOfWebsiteFrame?: WebsiteFrame[];
|
|
60
62
|
webPartsOfWebsiteSettingsAggregate?: Aggregate;
|
|
61
63
|
webPartsOfThemeAggregate?: Aggregate;
|
|
62
64
|
webPartsOfTemplateAggregate?: Aggregate;
|
|
@@ -72,4 +74,5 @@ export interface Lang {
|
|
|
72
74
|
webPartsOfProductCategoryAggregate?: Aggregate;
|
|
73
75
|
webPartsOfSpamFilterRuleAggregate?: Aggregate;
|
|
74
76
|
webPartsOfMediaAggregate?: Aggregate;
|
|
77
|
+
webPartsOfWebsiteFrameAggregate?: Aggregate;
|
|
75
78
|
}
|
|
@@ -15,6 +15,7 @@ import { CustomerBoolExp } from './CustomerBoolExp';
|
|
|
15
15
|
import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
|
|
16
16
|
import { SpamFilterRuleBoolExp } from './SpamFilterRuleBoolExp';
|
|
17
17
|
import { MediaBoolExp } from './MediaBoolExp';
|
|
18
|
+
import { WebsiteFrameBoolExp } from './WebsiteFrameBoolExp';
|
|
18
19
|
/**
|
|
19
20
|
* 语言
|
|
20
21
|
*
|
|
@@ -44,4 +45,5 @@ export interface LangBoolExp {
|
|
|
44
45
|
webPartsOfProductCategory?: ProductCategoryBoolExp;
|
|
45
46
|
webPartsOfSpamFilterRule?: SpamFilterRuleBoolExp;
|
|
46
47
|
webPartsOfMedia?: MediaBoolExp;
|
|
48
|
+
webPartsOfWebsiteFrame?: WebsiteFrameBoolExp;
|
|
47
49
|
}
|
|
@@ -14,6 +14,7 @@ import { CustomerInput } from './CustomerInput';
|
|
|
14
14
|
import { ProductCategoryInput } from './ProductCategoryInput';
|
|
15
15
|
import { SpamFilterRuleInput } from './SpamFilterRuleInput';
|
|
16
16
|
import { MediaInput } from './MediaInput';
|
|
17
|
+
import { WebsiteFrameInput } from './WebsiteFrameInput';
|
|
17
18
|
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
18
19
|
/**
|
|
19
20
|
* 语言
|
|
@@ -56,6 +57,7 @@ export interface LangInput {
|
|
|
56
57
|
webPartsOfProductCategory?: SetHasMany<ProductCategoryInput>;
|
|
57
58
|
webPartsOfSpamFilterRule?: SetHasMany<SpamFilterRuleInput>;
|
|
58
59
|
webPartsOfMedia?: SetHasMany<MediaInput>;
|
|
60
|
+
webPartsOfWebsiteFrame?: SetHasMany<WebsiteFrameInput>;
|
|
59
61
|
}
|
|
60
62
|
export declare const langToInputCascade: (entity: Lang) => LangInput;
|
|
61
63
|
export declare const langToInput: (entity: Lang) => LangInput;
|
|
@@ -12,6 +12,7 @@ import { AttachmentOnProduct } from './AttachmentOnProduct';
|
|
|
12
12
|
import { Website } from './Website';
|
|
13
13
|
import { WebsiteSettings } from './WebsiteSettings';
|
|
14
14
|
import { Theme } from './Theme';
|
|
15
|
+
import { PostCategory } from './PostCategory';
|
|
15
16
|
import { Aggregate } from './Aggregate';
|
|
16
17
|
import { WebsitePart } from './WebsitePart';
|
|
17
18
|
export declare const MediaEntityName = "Media";
|
|
@@ -40,6 +41,7 @@ export interface Media extends WebsitePart {
|
|
|
40
41
|
website?: Website;
|
|
41
42
|
usedByContact?: WebsiteSettings[];
|
|
42
43
|
coverOfTheme?: Theme[];
|
|
44
|
+
postCategory?: PostCategory;
|
|
43
45
|
coverOfAggregate?: Aggregate;
|
|
44
46
|
ogMetaOfPageAggregate?: Aggregate;
|
|
45
47
|
ogMetaOfProductAggregate?: Aggregate;
|
|
@@ -17,6 +17,7 @@ import { AttachmentOnProductBoolExp } from './AttachmentOnProductBoolExp';
|
|
|
17
17
|
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
18
18
|
import { WebsiteSettingsBoolExp } from './WebsiteSettingsBoolExp';
|
|
19
19
|
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
20
|
+
import { PostCategoryBoolExp } from './PostCategoryBoolExp';
|
|
20
21
|
export interface MediaBoolExp extends WebsitePartBoolExp {
|
|
21
22
|
_and?: MediaBoolExp[];
|
|
22
23
|
_or?: MediaBoolExp[];
|
|
@@ -43,4 +44,5 @@ export interface MediaBoolExp extends WebsitePartBoolExp {
|
|
|
43
44
|
website?: WebsiteBoolExp;
|
|
44
45
|
usedByContact?: WebsiteSettingsBoolExp;
|
|
45
46
|
coverOfTheme?: ThemeBoolExp;
|
|
47
|
+
postCategory?: PostCategoryBoolExp;
|
|
46
48
|
}
|
|
@@ -13,6 +13,7 @@ import { AttachmentOnProductInput } from './AttachmentOnProductInput';
|
|
|
13
13
|
import { WebsiteInput } from './WebsiteInput';
|
|
14
14
|
import { WebsiteSettingsInput } from './WebsiteSettingsInput';
|
|
15
15
|
import { ThemeInput } from './ThemeInput';
|
|
16
|
+
import { PostCategoryInput } from './PostCategoryInput';
|
|
16
17
|
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
17
18
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
18
19
|
import { WebsitePart } from './WebsitePart';
|
|
@@ -40,6 +41,7 @@ export interface MediaInput extends WebsitePart {
|
|
|
40
41
|
website?: SetHasOne<WebsiteInput>;
|
|
41
42
|
usedByContact?: SetHasMany<WebsiteSettingsInput>;
|
|
42
43
|
coverOfTheme?: SetHasMany<ThemeInput>;
|
|
44
|
+
postCategory?: SetHasOne<PostCategoryInput>;
|
|
43
45
|
}
|
|
44
46
|
export declare const mediaToInputCascade: (entity: Media) => MediaInput;
|
|
45
47
|
export declare const mediaToInput: (entity: Media) => MediaInput;
|
|
@@ -15,10 +15,6 @@ export declare enum PageType {
|
|
|
15
15
|
* label: 产品
|
|
16
16
|
*/
|
|
17
17
|
Product = "Product",
|
|
18
|
-
/**
|
|
19
|
-
* label: 框架
|
|
20
|
-
*/
|
|
21
|
-
Frame = "Frame",
|
|
22
18
|
/**
|
|
23
19
|
* label: 搜索列表
|
|
24
20
|
*/
|
|
@@ -34,5 +30,13 @@ export declare enum PageType {
|
|
|
34
30
|
/**
|
|
35
31
|
* label: 自定义页
|
|
36
32
|
*/
|
|
37
|
-
Customized = "Customized"
|
|
33
|
+
Customized = "Customized",
|
|
34
|
+
/**
|
|
35
|
+
* label: undefined
|
|
36
|
+
*/
|
|
37
|
+
Page404 = "Page404",
|
|
38
|
+
/**
|
|
39
|
+
* label: undefined
|
|
40
|
+
*/
|
|
41
|
+
PageError = "PageError"
|
|
38
42
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Post } from './Post';
|
|
2
2
|
import { Lang } from './Lang';
|
|
3
|
+
import { Media } from './Media';
|
|
3
4
|
import { Website } from './Website';
|
|
4
5
|
import { Aggregate } from './Aggregate';
|
|
5
6
|
import { WebsitePart } from './WebsitePart';
|
|
@@ -17,6 +18,7 @@ export interface PostCategory extends WebsitePart, Slugable {
|
|
|
17
18
|
children?: PostCategory[];
|
|
18
19
|
posts?: Post[];
|
|
19
20
|
lang?: Lang;
|
|
21
|
+
media?: Media;
|
|
20
22
|
parent?: PostCategory;
|
|
21
23
|
website?: Website;
|
|
22
24
|
childrenAggregate?: Aggregate;
|
|
@@ -5,6 +5,7 @@ import { StringComparisonExp } from './StringComparisonExp';
|
|
|
5
5
|
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
6
6
|
import { PostBoolExp } from './PostBoolExp';
|
|
7
7
|
import { LangBoolExp } from './LangBoolExp';
|
|
8
|
+
import { MediaBoolExp } from './MediaBoolExp';
|
|
8
9
|
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
9
10
|
/**
|
|
10
11
|
* 文章分类
|
|
@@ -20,6 +21,7 @@ export interface PostCategoryBoolExp extends WebsitePartBoolExp, SlugableBoolExp
|
|
|
20
21
|
children?: PostCategoryBoolExp;
|
|
21
22
|
posts?: PostBoolExp;
|
|
22
23
|
lang?: LangBoolExp;
|
|
24
|
+
media?: MediaBoolExp;
|
|
23
25
|
parent?: PostCategoryBoolExp;
|
|
24
26
|
website?: WebsiteBoolExp;
|
|
25
27
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PostCategory } from './PostCategory';
|
|
2
2
|
import { PostInput } from './PostInput';
|
|
3
3
|
import { LangInput } from './LangInput';
|
|
4
|
+
import { MediaInput } from './MediaInput';
|
|
4
5
|
import { WebsiteInput } from './WebsiteInput';
|
|
5
6
|
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
6
7
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
@@ -17,6 +18,7 @@ export interface PostCategoryInput extends WebsitePart, Slugable {
|
|
|
17
18
|
children?: SetHasMany<PostCategoryInput>;
|
|
18
19
|
posts?: SetHasMany<PostInput>;
|
|
19
20
|
lang?: SetHasOne<LangInput>;
|
|
21
|
+
media?: SetHasOne<MediaInput>;
|
|
20
22
|
parent?: SetHasOne<PostCategoryInput>;
|
|
21
23
|
website?: SetHasOne<WebsiteInput>;
|
|
22
24
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Content } from './Content';
|
|
1
2
|
import { ProductCategory } from './ProductCategory';
|
|
2
3
|
import { Tag } from './Tag';
|
|
3
4
|
import { Media } from './Media';
|
|
@@ -21,8 +22,8 @@ export interface Product extends Publishable {
|
|
|
21
22
|
* 特色
|
|
22
23
|
*/
|
|
23
24
|
features?: string;
|
|
24
|
-
content2?:
|
|
25
|
-
content3?:
|
|
25
|
+
content2?: Content;
|
|
26
|
+
content3?: Content;
|
|
26
27
|
shortTitle?: string;
|
|
27
28
|
/**
|
|
28
29
|
* 第三方视频url
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Product } from './Product';
|
|
2
|
+
import { Content } from './Content';
|
|
2
3
|
import { ProductCategoryInput } from './ProductCategoryInput';
|
|
3
4
|
import { TagInput } from './TagInput';
|
|
4
5
|
import { MediaInput } from './MediaInput';
|
|
@@ -21,8 +22,8 @@ export interface ProductInput extends Publishable {
|
|
|
21
22
|
* 特色
|
|
22
23
|
*/
|
|
23
24
|
features?: string;
|
|
24
|
-
content2?:
|
|
25
|
-
content3?:
|
|
25
|
+
content2?: Content;
|
|
26
|
+
content3?: Content;
|
|
26
27
|
shortTitle?: string;
|
|
27
28
|
/**
|
|
28
29
|
* 第三方视频url
|
|
@@ -15,6 +15,7 @@ import { Customer } from './Customer';
|
|
|
15
15
|
import { ProductCategory } from './ProductCategory';
|
|
16
16
|
import { SpamFilterRule } from './SpamFilterRule';
|
|
17
17
|
import { Media } from './Media';
|
|
18
|
+
import { WebsiteFrame } from './WebsiteFrame';
|
|
18
19
|
import { Aggregate } from './Aggregate';
|
|
19
20
|
export declare const WebsiteEntityName = "Website";
|
|
20
21
|
export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
|
|
@@ -72,6 +73,7 @@ export interface Website {
|
|
|
72
73
|
partsOfProductCategory?: ProductCategory[];
|
|
73
74
|
partsOfSpamFilterRule?: SpamFilterRule[];
|
|
74
75
|
partsOfMedia?: Media[];
|
|
76
|
+
partsOfWebsiteFrame?: WebsiteFrame[];
|
|
75
77
|
usersAggregate?: Aggregate;
|
|
76
78
|
partsOfWebsiteSettingsAggregate?: Aggregate;
|
|
77
79
|
partsOfThemeAggregate?: Aggregate;
|
|
@@ -88,4 +90,5 @@ export interface Website {
|
|
|
88
90
|
partsOfProductCategoryAggregate?: Aggregate;
|
|
89
91
|
partsOfSpamFilterRuleAggregate?: Aggregate;
|
|
90
92
|
partsOfMediaAggregate?: Aggregate;
|
|
93
|
+
partsOfWebsiteFrameAggregate?: Aggregate;
|
|
91
94
|
}
|
|
@@ -18,6 +18,7 @@ import { CustomerBoolExp } from './CustomerBoolExp';
|
|
|
18
18
|
import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
|
|
19
19
|
import { SpamFilterRuleBoolExp } from './SpamFilterRuleBoolExp';
|
|
20
20
|
import { MediaBoolExp } from './MediaBoolExp';
|
|
21
|
+
import { WebsiteFrameBoolExp } from './WebsiteFrameBoolExp';
|
|
21
22
|
/**
|
|
22
23
|
* 站点
|
|
23
24
|
* 网站实体
|
|
@@ -54,4 +55,5 @@ export interface WebsiteBoolExp {
|
|
|
54
55
|
partsOfProductCategory?: ProductCategoryBoolExp;
|
|
55
56
|
partsOfSpamFilterRule?: SpamFilterRuleBoolExp;
|
|
56
57
|
partsOfMedia?: MediaBoolExp;
|
|
58
|
+
partsOfWebsiteFrame?: WebsiteFrameBoolExp;
|
|
57
59
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Content } from './Content';
|
|
1
2
|
import { WebsitePart } from './WebsitePart';
|
|
2
3
|
import { SeoMeta } from './SeoMeta';
|
|
3
4
|
import { OgMeta } from './OgMeta';
|
|
@@ -9,6 +10,6 @@ import { Slugable } from './Slugable';
|
|
|
9
10
|
export interface WebsiteContent extends WebsitePart, SeoMeta, OgMeta, Slugable {
|
|
10
11
|
id?: string | null;
|
|
11
12
|
title?: string;
|
|
12
|
-
content?:
|
|
13
|
+
content?: Content;
|
|
13
14
|
extends?: any;
|
|
14
15
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Content } from './Content';
|
|
2
|
+
import { Lang } from './Lang';
|
|
3
|
+
import { Website } from './Website';
|
|
4
|
+
import { WebsitePart } from './WebsitePart';
|
|
5
|
+
export declare const WebsiteFrameEntityName = "WebsiteFrame";
|
|
6
|
+
export declare const WebsiteFrameEntityLabel = "";
|
|
7
|
+
export interface WebsiteFrame extends WebsitePart {
|
|
8
|
+
id?: string | null;
|
|
9
|
+
content?: Content;
|
|
10
|
+
settings?: any;
|
|
11
|
+
lang?: Lang;
|
|
12
|
+
website?: Website;
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { LangBoolExp } from './LangBoolExp';
|
|
4
|
+
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
5
|
+
export interface WebsiteFrameBoolExp extends WebsitePartBoolExp {
|
|
6
|
+
_and?: WebsiteFrameBoolExp[];
|
|
7
|
+
_or?: WebsiteFrameBoolExp[];
|
|
8
|
+
_not?: WebsiteFrameBoolExp;
|
|
9
|
+
id?: IdComparisonExp;
|
|
10
|
+
content?: unknown;
|
|
11
|
+
settings?: unknown;
|
|
12
|
+
lang?: LangBoolExp;
|
|
13
|
+
website?: WebsiteBoolExp;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum WebsiteFrameDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
content = "content",
|
|
5
|
+
settings = "settings",
|
|
6
|
+
createdAt = "createdAt",
|
|
7
|
+
updatedAt = "updatedAt"
|
|
8
|
+
}
|
|
9
|
+
export type WebsiteFrameDistinctExp = WebsiteFrameDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { WebsiteFrame } from './WebsiteFrame';
|
|
2
|
+
import { Content } from './Content';
|
|
3
|
+
import { LangInput } from './LangInput';
|
|
4
|
+
import { WebsiteInput } from './WebsiteInput';
|
|
5
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
6
|
+
import { WebsitePart } from './WebsitePart';
|
|
7
|
+
export interface WebsiteFrameInput extends WebsitePart {
|
|
8
|
+
id?: string | null;
|
|
9
|
+
content?: Content;
|
|
10
|
+
settings?: any;
|
|
11
|
+
lang?: SetHasOne<LangInput>;
|
|
12
|
+
website?: SetHasOne<WebsiteInput>;
|
|
13
|
+
}
|
|
14
|
+
export declare const websiteFrameToInputCascade: (entity: WebsiteFrame) => WebsiteFrameInput;
|
|
15
|
+
export declare const websiteFrameToInput: (entity: WebsiteFrame) => WebsiteFrameInput;
|
|
@@ -16,6 +16,7 @@ import { CustomerInput } from './CustomerInput';
|
|
|
16
16
|
import { ProductCategoryInput } from './ProductCategoryInput';
|
|
17
17
|
import { SpamFilterRuleInput } from './SpamFilterRuleInput';
|
|
18
18
|
import { MediaInput } from './MediaInput';
|
|
19
|
+
import { WebsiteFrameInput } from './WebsiteFrameInput';
|
|
19
20
|
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
20
21
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
21
22
|
/**
|
|
@@ -72,6 +73,7 @@ export interface WebsiteInput {
|
|
|
72
73
|
partsOfProductCategory?: SetHasMany<ProductCategoryInput>;
|
|
73
74
|
partsOfSpamFilterRule?: SetHasMany<SpamFilterRuleInput>;
|
|
74
75
|
partsOfMedia?: SetHasMany<MediaInput>;
|
|
76
|
+
partsOfWebsiteFrame?: SetHasMany<WebsiteFrameInput>;
|
|
75
77
|
}
|
|
76
78
|
export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
|
|
77
79
|
export declare const websiteToInput: (entity: Website) => WebsiteInput;
|
|
@@ -190,3 +190,9 @@ export * from './ComponentCategoryBoolExp';
|
|
|
190
190
|
export * from './ComponentCategoryOrderBy';
|
|
191
191
|
export * from './ComponentCategoryDistinctExp';
|
|
192
192
|
export * from './PropsFields';
|
|
193
|
+
export * from './WebsiteFrame';
|
|
194
|
+
export * from './WebsiteFrameInput';
|
|
195
|
+
export * from './WebsiteFrameBoolExp';
|
|
196
|
+
export * from './WebsiteFrameOrderBy';
|
|
197
|
+
export * from './WebsiteFrameDistinctExp';
|
|
198
|
+
export * from './Content';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.37",
|
|
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.
|
|
15
|
+
"@rxdrag/eslint-config-custom": "0.2.3",
|
|
16
16
|
"@rxdrag/tsconfig": "0.2.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"swr": "^2.2.4",
|
|
20
|
-
"@rxdrag/entify-hooks": "0.2.
|
|
20
|
+
"@rxdrag/entify-hooks": "0.2.31"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"lint": "eslint . --ext .ts,tsx",
|