@rxdrag/rxcms-models 0.1.1 → 0.1.3
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/entries/abilityEntry.d.ts +2 -0
- package/dist/entries/customerEntry.d.ts +2 -0
- package/dist/entries/enquiryEntry.d.ts +2 -0
- package/dist/entries/index.d.ts +22 -0
- package/dist/entries/langEntry.d.ts +2 -0
- package/dist/entries/mediaEntry.d.ts +2 -0
- package/dist/entries/mediaFolderEntry.d.ts +2 -0
- package/dist/entries/pageEntry.d.ts +2 -0
- package/dist/entries/postCategoryEntry.d.ts +2 -0
- package/dist/entries/postEntry.d.ts +2 -0
- package/dist/entries/productCategoryEntry.d.ts +2 -0
- package/dist/entries/productEntry.d.ts +2 -0
- package/dist/entries/roleEntry.d.ts +2 -0
- package/dist/entries/slugEntry.d.ts +2 -0
- package/dist/entries/tagEntry.d.ts +2 -0
- package/dist/entries/templateCategoryEntry.d.ts +2 -0
- package/dist/entries/templateEntry.d.ts +2 -0
- package/dist/entries/themeEntry.d.ts +2 -0
- package/dist/entries/userEntry.d.ts +2 -0
- package/dist/entries/websiteEntry.d.ts +2 -0
- package/dist/entries/websiteMetaEntry.d.ts +2 -0
- package/dist/entries/websiteSettingsEntry.d.ts +2 -0
- package/dist/entries/websiteTypeEntry.d.ts +2 -0
- package/dist/fields/AbilityFields.d.ts +9 -0
- package/dist/fields/BaseEntityFields.d.ts +15 -0
- package/dist/fields/CustomerFields.d.ts +41 -0
- package/dist/fields/CustomizeMediaFields.d.ts +7 -0
- package/dist/fields/EnquiryFields.d.ts +19 -0
- package/dist/fields/LangFields.d.ts +32 -0
- package/dist/fields/MediaFields.d.ts +20 -0
- package/dist/fields/MediaFolderFields.d.ts +23 -0
- package/dist/fields/MultiLangableFields.d.ts +4 -0
- package/dist/fields/OgMetaFields.d.ts +9 -0
- package/dist/fields/PageFields.d.ts +31 -0
- package/dist/fields/PersonFields.d.ts +26 -0
- package/dist/fields/PostCategoryFields.d.ts +23 -0
- package/dist/fields/PostFields.d.ts +48 -0
- package/dist/fields/ProductCategoryFields.d.ts +23 -0
- package/dist/fields/ProductFields.d.ts +44 -0
- package/dist/fields/PublishableFields.d.ts +35 -0
- package/dist/fields/RoleFields.d.ts +9 -0
- package/dist/fields/SeoMetaFields.d.ts +6 -0
- package/dist/fields/SlugFields.d.ts +20 -0
- package/dist/fields/TagFields.d.ts +25 -0
- package/dist/fields/TemplateCategoryFields.d.ts +21 -0
- package/dist/fields/TemplateFields.d.ts +25 -0
- package/dist/fields/ThemeFields.d.ts +23 -0
- package/dist/fields/UserFields.d.ts +51 -0
- package/dist/fields/WebsiteContentFields.d.ts +29 -0
- package/dist/fields/WebsiteFields.d.ts +37 -0
- package/dist/fields/WebsiteMetaFields.d.ts +3 -0
- package/dist/fields/WebsitePartFields.d.ts +16 -0
- package/dist/fields/WebsiteSettingsFields.d.ts +20 -0
- package/dist/fields/WebsiteTypeFields.d.ts +26 -0
- package/dist/fields/WebsiteUserFields.d.ts +35 -0
- package/dist/fields/index.d.ts +32 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +1497 -1403
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Ability.d.ts +12 -0
- package/dist/interfaces/AbilityBoolExp.d.ts +17 -0
- package/dist/interfaces/AbilityDistinctExp.d.ts +10 -0
- package/dist/interfaces/AbilityInput.d.ts +13 -0
- package/dist/interfaces/AbilityOrderBy.d.ts +10 -0
- package/dist/interfaces/AbilityType.d.ts +18 -0
- package/dist/interfaces/Aggregate.d.ts +4 -0
- package/dist/interfaces/BaseEntity.d.ts +15 -0
- package/dist/interfaces/BaseEntityBoolExp.d.ts +12 -0
- package/dist/interfaces/BaseEntityDistinctExp.d.ts +16 -0
- package/dist/interfaces/BaseEntityOrderBy.d.ts +16 -0
- package/dist/interfaces/BooleanComparisonExp.d.ts +5 -0
- package/dist/interfaces/ComponentType.d.ts +34 -0
- package/dist/interfaces/Customer.d.ts +11 -0
- package/dist/interfaces/CustomerBoolExp.d.ts +11 -0
- package/dist/interfaces/CustomerDistinctExp.d.ts +42 -0
- package/dist/interfaces/CustomerInput.d.ts +11 -0
- package/dist/interfaces/CustomerOrderBy.d.ts +6 -0
- package/dist/interfaces/CustomizeMedia.d.ts +7 -0
- package/dist/interfaces/CustomizeMediaBoolExp.d.ts +9 -0
- package/dist/interfaces/CustomizeMediaDistinctExp.d.ts +8 -0
- package/dist/interfaces/CustomizeMediaOrderBy.d.ts +8 -0
- package/dist/interfaces/DateTimeComparisonExp.d.ts +11 -0
- package/dist/interfaces/Enquiry.d.ts +10 -0
- package/dist/interfaces/EnquiryBoolExp.d.ts +13 -0
- package/dist/interfaces/EnquiryDistinctExp.d.ts +20 -0
- package/dist/interfaces/EnquiryInput.d.ts +12 -0
- package/dist/interfaces/EnquiryOrderBy.d.ts +7 -0
- package/dist/interfaces/EnumComparisonExp.d.ts +8 -0
- package/dist/interfaces/ExtendField.d.ts +8 -0
- package/dist/interfaces/ExtendFieldType.d.ts +22 -0
- package/dist/interfaces/FileRef.d.ts +5 -0
- package/dist/interfaces/FormSettings.d.ts +4 -0
- package/dist/interfaces/IdComparisonExp.d.ts +11 -0
- package/dist/interfaces/Lang.d.ts +30 -0
- package/dist/interfaces/LangBoolExp.d.ts +18 -0
- package/dist/interfaces/LangDistinctExp.d.ts +34 -0
- package/dist/interfaces/LangInput.d.ts +31 -0
- package/dist/interfaces/LangOrderBy.d.ts +29 -0
- package/dist/interfaces/Media.d.ts +26 -0
- package/dist/interfaces/MediaAddon.d.ts +4 -0
- package/dist/interfaces/MediaBoolExp.d.ts +27 -0
- package/dist/interfaces/MediaDistinctExp.d.ts +18 -0
- package/dist/interfaces/MediaFolder.d.ts +19 -0
- package/dist/interfaces/MediaFolderBoolExp.d.ts +20 -0
- package/dist/interfaces/MediaFolderDistinctExp.d.ts +20 -0
- package/dist/interfaces/MediaFolderInput.d.ts +19 -0
- package/dist/interfaces/MediaFolderOrderBy.d.ts +11 -0
- package/dist/interfaces/MediaInput.d.ts +27 -0
- package/dist/interfaces/MediaOrderBy.d.ts +14 -0
- package/dist/interfaces/MediaType.d.ts +14 -0
- package/dist/interfaces/MultiLangable.d.ts +4 -0
- package/dist/interfaces/MultiLangableBoolExp.d.ts +9 -0
- package/dist/interfaces/MultiLangableDistinctExp.d.ts +5 -0
- package/dist/interfaces/MultiLangableOrderBy.d.ts +5 -0
- package/dist/interfaces/NumberComparisonExp.d.ts +12 -0
- package/dist/interfaces/OgMeta.d.ts +9 -0
- package/dist/interfaces/OgMetaBoolExp.d.ts +14 -0
- package/dist/interfaces/OgMetaDistinctExp.d.ts +10 -0
- package/dist/interfaces/OgMetaOrderBy.d.ts +10 -0
- package/dist/interfaces/Page.d.ts +15 -0
- package/dist/interfaces/PageBoolExp.d.ts +15 -0
- package/dist/interfaces/PageDistinctExp.d.ts +32 -0
- package/dist/interfaces/PageInput.d.ts +17 -0
- package/dist/interfaces/PageOrderBy.d.ts +12 -0
- package/dist/interfaces/Person.d.ts +26 -0
- package/dist/interfaces/PersonBoolExp.d.ts +19 -0
- package/dist/interfaces/PersonDistinctExp.d.ts +27 -0
- package/dist/interfaces/PersonOrderBy.d.ts +27 -0
- package/dist/interfaces/Post.d.ts +29 -0
- package/dist/interfaces/PostBoolExp.d.ts +29 -0
- package/dist/interfaces/PostCategory.d.ts +19 -0
- package/dist/interfaces/PostCategoryBoolExp.d.ts +20 -0
- package/dist/interfaces/PostCategoryDistinctExp.d.ts +20 -0
- package/dist/interfaces/PostCategoryInput.d.ts +19 -0
- package/dist/interfaces/PostCategoryOrderBy.d.ts +11 -0
- package/dist/interfaces/PostDistinctExp.d.ts +44 -0
- package/dist/interfaces/PostInput.d.ts +30 -0
- package/dist/interfaces/PostOrderBy.d.ts +16 -0
- package/dist/interfaces/PostSettings.d.ts +5 -0
- package/dist/interfaces/Product.d.ts +22 -0
- package/dist/interfaces/ProductBoolExp.d.ts +22 -0
- package/dist/interfaces/ProductCategory.d.ts +15 -0
- package/dist/interfaces/ProductCategoryBoolExp.d.ts +16 -0
- package/dist/interfaces/ProductCategoryDistinctExp.d.ts +20 -0
- package/dist/interfaces/ProductCategoryInput.d.ts +15 -0
- package/dist/interfaces/ProductCategoryOrderBy.d.ts +7 -0
- package/dist/interfaces/ProductDistinctExp.d.ts +39 -0
- package/dist/interfaces/ProductInput.d.ts +22 -0
- package/dist/interfaces/ProductOrderBy.d.ts +7 -0
- package/dist/interfaces/ProductSettings.d.ts +5 -0
- package/dist/interfaces/Publishable.d.ts +11 -0
- package/dist/interfaces/PublishableBoolExp.d.ts +14 -0
- package/dist/interfaces/PublishableDistinctExp.d.ts +37 -0
- package/dist/interfaces/PublishableOrderBy.d.ts +11 -0
- package/dist/interfaces/PublishableStatus.d.ts +14 -0
- package/dist/interfaces/Role.d.ts +13 -0
- package/dist/interfaces/RoleBoolExp.d.ts +15 -0
- package/dist/interfaces/RoleDistinctExp.d.ts +8 -0
- package/dist/interfaces/RoleInput.d.ts +13 -0
- package/dist/interfaces/RoleOrderBy.d.ts +8 -0
- package/dist/interfaces/SeoMeta.d.ts +6 -0
- package/dist/interfaces/SeoMetaBoolExp.d.ts +11 -0
- package/dist/interfaces/SeoMetaDistinctExp.d.ts +7 -0
- package/dist/interfaces/SeoMetaOrderBy.d.ts +7 -0
- package/dist/interfaces/Slug.d.ts +13 -0
- package/dist/interfaces/SlugBoolExp.d.ts +16 -0
- package/dist/interfaces/SlugDistinctExp.d.ts +19 -0
- package/dist/interfaces/SlugInput.d.ts +15 -0
- package/dist/interfaces/SlugOrderBy.d.ts +6 -0
- package/dist/interfaces/StringComparisonExp.d.ts +18 -0
- package/dist/interfaces/Tag.d.ts +22 -0
- package/dist/interfaces/TagBoolExp.d.ts +19 -0
- package/dist/interfaces/TagDistinctExp.d.ts +23 -0
- package/dist/interfaces/TagInput.d.ts +21 -0
- package/dist/interfaces/TagOrderBy.d.ts +14 -0
- package/dist/interfaces/Template.d.ts +18 -0
- package/dist/interfaces/TemplateBoolExp.d.ts +20 -0
- package/dist/interfaces/TemplateCategory.d.ts +14 -0
- package/dist/interfaces/TemplateCategoryBoolExp.d.ts +16 -0
- package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +20 -0
- package/dist/interfaces/TemplateCategoryInput.d.ts +15 -0
- package/dist/interfaces/TemplateCategoryOrderBy.d.ts +7 -0
- package/dist/interfaces/TemplateDistinctExp.d.ts +25 -0
- package/dist/interfaces/TemplateInput.d.ts +20 -0
- package/dist/interfaces/TemplateOrderBy.d.ts +12 -0
- package/dist/interfaces/TemplateType.d.ts +34 -0
- package/dist/interfaces/Theme.d.ts +17 -0
- package/dist/interfaces/ThemeBoolExp.d.ts +17 -0
- package/dist/interfaces/ThemeDistinctExp.d.ts +21 -0
- package/dist/interfaces/ThemeInput.d.ts +16 -0
- package/dist/interfaces/ThemeOrderBy.d.ts +8 -0
- package/dist/interfaces/ThemeSettings.d.ts +8 -0
- package/dist/interfaces/User.d.ts +29 -0
- package/dist/interfaces/UserBoolExp.d.ts +29 -0
- package/dist/interfaces/UserDistinctExp.d.ts +43 -0
- package/dist/interfaces/UserInput.d.ts +27 -0
- package/dist/interfaces/UserOrderBy.d.ts +12 -0
- package/dist/interfaces/UserType.d.ts +14 -0
- package/dist/interfaces/WebSiteUserBoolExp.d.ts +14 -0
- package/dist/interfaces/WebSiteUserDistinctExp.d.ts +37 -0
- package/dist/interfaces/WebSiteUserOrderBy.d.ts +14 -0
- package/dist/interfaces/Website.d.ts +48 -0
- package/dist/interfaces/WebsiteBoolExp.d.ts +29 -0
- package/dist/interfaces/WebsiteContent.d.ts +14 -0
- package/dist/interfaces/WebsiteContentBoolExp.d.ts +19 -0
- package/dist/interfaces/WebsiteContentDistinctExp.d.ts +34 -0
- package/dist/interfaces/WebsiteContentOrderBy.d.ts +15 -0
- package/dist/interfaces/WebsiteDistinctExp.d.ts +32 -0
- package/dist/interfaces/WebsiteInput.d.ts +49 -0
- package/dist/interfaces/WebsiteMeta.d.ts +5 -0
- package/dist/interfaces/WebsiteMetaBoolExp.d.ts +7 -0
- package/dist/interfaces/WebsiteMetaDistinctExp.d.ts +4 -0
- package/dist/interfaces/WebsiteMetaInput.d.ts +6 -0
- package/dist/interfaces/WebsiteMetaOrderBy.d.ts +4 -0
- package/dist/interfaces/WebsiteOrderBy.d.ts +36 -0
- package/dist/interfaces/WebsitePart.d.ts +5 -0
- package/dist/interfaces/WebsitePartBoolExp.d.ts +10 -0
- package/dist/interfaces/WebsitePartDistinctExp.d.ts +18 -0
- package/dist/interfaces/WebsitePartOrderBy.d.ts +6 -0
- package/dist/interfaces/WebsiteSettings.d.ts +10 -0
- package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +10 -0
- package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +22 -0
- package/dist/interfaces/WebsiteSettingsInput.d.ts +11 -0
- package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +9 -0
- package/dist/interfaces/WebsiteType.d.ts +35 -0
- package/dist/interfaces/WebsiteTypeBoolExp.d.ts +27 -0
- package/dist/interfaces/WebsiteTypeDistinctExp.d.ts +25 -0
- package/dist/interfaces/WebsiteTypeInput.d.ts +35 -0
- package/dist/interfaces/WebsiteTypeOrderBy.d.ts +29 -0
- package/dist/interfaces/WebsiteTypeStatus.d.ts +10 -0
- package/dist/interfaces/WebsiteUser.d.ts +14 -0
- package/dist/interfaces/index.d.ts +134 -0
- package/package.json +4 -4
- package/dist/apis/BaseService.d.ts +0 -18
- package/dist/apis/RxcmsEnquiry.d.ts +0 -18
- package/dist/apis/RxcmsLang.d.ts +0 -18
- package/dist/apis/RxcmsMeta.d.ts +0 -18
- package/dist/apis/RxcmsNavigation.d.ts +0 -18
- package/dist/apis/RxcmsPage.d.ts +0 -18
- package/dist/apis/RxcmsPost.d.ts +0 -18
- package/dist/apis/RxcmsProduct.d.ts +0 -18
- package/dist/apis/RxcmsSlug.d.ts +0 -18
- package/dist/apis/RxcmsTemplate.d.ts +0 -18
- package/dist/apis/RxcmsTemplateCategory.d.ts +0 -18
- package/dist/apis/RxcmsTheme.d.ts +0 -18
- package/dist/apis/RxcmsThemeTemplate.d.ts +0 -18
- package/dist/apis/RxcmsUser.d.ts +0 -18
- package/dist/apis/RxcmsWebsite.d.ts +0 -18
- package/dist/apis/RxcmsWebsiteSettings.d.ts +0 -18
- package/dist/apis/RxcmsWebsiteType.d.ts +0 -18
- package/dist/apis/index.d.ts +0 -17
- package/dist/entity-fields/MapObjectFields.d.ts +0 -4
- package/dist/entity-fields/RelatedObjectFields.d.ts +0 -6
- package/dist/entity-fields/RxcmsEnquiryFields.d.ts +0 -17
- package/dist/entity-fields/RxcmsLangFields.d.ts +0 -12
- package/dist/entity-fields/RxcmsMetaFields.d.ts +0 -13
- package/dist/entity-fields/RxcmsNavigationFields.d.ts +0 -13
- package/dist/entity-fields/RxcmsPageFields.d.ts +0 -15
- package/dist/entity-fields/RxcmsPostFields.d.ts +0 -19
- package/dist/entity-fields/RxcmsProductFields.d.ts +0 -20
- package/dist/entity-fields/RxcmsSlugFields.d.ts +0 -13
- package/dist/entity-fields/RxcmsTemplateCategoryFields.d.ts +0 -11
- package/dist/entity-fields/RxcmsTemplateFields.d.ts +0 -14
- package/dist/entity-fields/RxcmsThemeFields.d.ts +0 -13
- package/dist/entity-fields/RxcmsThemeTemplateFields.d.ts +0 -14
- package/dist/entity-fields/RxcmsUserFields.d.ts +0 -20
- package/dist/entity-fields/RxcmsWebUserFields.d.ts +0 -20
- package/dist/entity-fields/RxcmsWebsiteFields.d.ts +0 -16
- package/dist/entity-fields/RxcmsWebsiteSettingsFields.d.ts +0 -12
- package/dist/entity-fields/RxcmsWebsiteTypeFields.d.ts +0 -15
- package/dist/entity-fields/UserInfoDtoFields.d.ts +0 -10
- package/dist/entity-fields/index.d.ts +0 -20
- package/dist/entity-interfaces/MapObject.d.ts +0 -6
- package/dist/entity-interfaces/RelatedObject.d.ts +0 -9
- package/dist/entity-interfaces/RxcmsEnquiry.d.ts +0 -22
- package/dist/entity-interfaces/RxcmsLang.d.ts +0 -14
- package/dist/entity-interfaces/RxcmsMeta.d.ts +0 -15
- package/dist/entity-interfaces/RxcmsNavigation.d.ts +0 -18
- package/dist/entity-interfaces/RxcmsPage.d.ts +0 -17
- package/dist/entity-interfaces/RxcmsPost.d.ts +0 -24
- package/dist/entity-interfaces/RxcmsProduct.d.ts +0 -25
- package/dist/entity-interfaces/RxcmsSlug.d.ts +0 -15
- package/dist/entity-interfaces/RxcmsTemplate.d.ts +0 -17
- package/dist/entity-interfaces/RxcmsTemplateCategory.d.ts +0 -13
- package/dist/entity-interfaces/RxcmsTheme.d.ts +0 -17
- package/dist/entity-interfaces/RxcmsThemeTemplate.d.ts +0 -17
- package/dist/entity-interfaces/RxcmsUser.d.ts +0 -22
- package/dist/entity-interfaces/RxcmsWebUser.d.ts +0 -22
- package/dist/entity-interfaces/RxcmsWebsite.d.ts +0 -19
- package/dist/entity-interfaces/RxcmsWebsiteSettings.d.ts +0 -14
- package/dist/entity-interfaces/RxcmsWebsiteType.d.ts +0 -17
- package/dist/entity-interfaces/UserInfoDto.d.ts +0 -12
- package/dist/entity-interfaces/index.d.ts +0 -20
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
4
|
+
import { WebsiteTypeBoolExp } from './WebsiteTypeBoolExp';
|
|
5
|
+
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
6
|
+
import { PageBoolExp } from './PageBoolExp';
|
|
7
|
+
import { UserBoolExp } from './UserBoolExp';
|
|
8
|
+
/**
|
|
9
|
+
* 站点
|
|
10
|
+
* 网站实体
|
|
11
|
+
*/
|
|
12
|
+
export interface WebsiteBoolExp {
|
|
13
|
+
_and?: WebsiteBoolExp[];
|
|
14
|
+
_or?: WebsiteBoolExp[];
|
|
15
|
+
_not?: WebsiteBoolExp;
|
|
16
|
+
id?: IdComparisonExp;
|
|
17
|
+
name?: StringComparisonExp;
|
|
18
|
+
remark?: StringComparisonExp;
|
|
19
|
+
createdBy?: IdComparisonExp;
|
|
20
|
+
createdAt?: DateTimeComparisonExp;
|
|
21
|
+
lastOpenTime?: DateTimeComparisonExp;
|
|
22
|
+
updatedAt?: DateTimeComparisonExp;
|
|
23
|
+
updatedBy?: IdComparisonExp;
|
|
24
|
+
websiteType?: WebsiteTypeBoolExp;
|
|
25
|
+
selectedTheme?: ThemeBoolExp;
|
|
26
|
+
homePage?: PageBoolExp;
|
|
27
|
+
owner?: UserBoolExp;
|
|
28
|
+
users?: UserBoolExp;
|
|
29
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WebsitePart } from './WebsitePart';
|
|
2
|
+
import { SeoMeta } from './SeoMeta';
|
|
3
|
+
import { OgMeta } from './OgMeta';
|
|
4
|
+
import { MultiLangable } from './MultiLangable';
|
|
5
|
+
/**
|
|
6
|
+
* 网站内容
|
|
7
|
+
* 页面、产品、文章等被搜索引擎检索的内容
|
|
8
|
+
*/
|
|
9
|
+
export interface WebsiteContent extends WebsitePart, SeoMeta, OgMeta, MultiLangable {
|
|
10
|
+
id?: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
content?: any;
|
|
13
|
+
extends?: any;
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { SeoMetaBoolExp } from './SeoMetaBoolExp';
|
|
3
|
+
import { OgMetaBoolExp } from './OgMetaBoolExp';
|
|
4
|
+
import { MultiLangableBoolExp } from './MultiLangableBoolExp';
|
|
5
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
6
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
7
|
+
/**
|
|
8
|
+
* 网站内容
|
|
9
|
+
* 页面、产品、文章等被搜索引擎检索的内容
|
|
10
|
+
*/
|
|
11
|
+
export interface WebsiteContentBoolExp extends WebsitePartBoolExp, SeoMetaBoolExp, OgMetaBoolExp, MultiLangableBoolExp {
|
|
12
|
+
_and?: WebsiteContentBoolExp[];
|
|
13
|
+
_or?: WebsiteContentBoolExp[];
|
|
14
|
+
_not?: WebsiteContentBoolExp;
|
|
15
|
+
id?: IdComparisonExp;
|
|
16
|
+
title?: StringComparisonExp;
|
|
17
|
+
content?: unknown;
|
|
18
|
+
extends?: unknown;
|
|
19
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
import { SeoMetaDistinctExp } from './SeoMetaDistinctExp';
|
|
3
|
+
import { OgMetaDistinctExp } from './OgMetaDistinctExp';
|
|
4
|
+
import { MultiLangableDistinctExp } from './MultiLangableDistinctExp';
|
|
5
|
+
export declare enum WebsiteContentDistinctEnum {
|
|
6
|
+
id = "id",
|
|
7
|
+
title = "title",
|
|
8
|
+
content = "content",
|
|
9
|
+
extends = "extends",
|
|
10
|
+
websiteId = "websiteId",
|
|
11
|
+
/**
|
|
12
|
+
* 创建时间
|
|
13
|
+
*/
|
|
14
|
+
createdAt = "createdAt",
|
|
15
|
+
/**
|
|
16
|
+
* 更新时间
|
|
17
|
+
*/
|
|
18
|
+
updatedAt = "updatedAt",
|
|
19
|
+
/**
|
|
20
|
+
* 备注
|
|
21
|
+
*/
|
|
22
|
+
remark = "remark",
|
|
23
|
+
seoTitle = "seoTitle",
|
|
24
|
+
seoKeywords = "seoKeywords",
|
|
25
|
+
seoDescription = "seoDescription",
|
|
26
|
+
ogTitle = "ogTitle",
|
|
27
|
+
ogDescription = "ogDescription",
|
|
28
|
+
ogImageUrl = "ogImageUrl",
|
|
29
|
+
ogUrl = "ogUrl",
|
|
30
|
+
ogSiteName = "ogSiteName",
|
|
31
|
+
ogType = "ogType",
|
|
32
|
+
lang = "lang"
|
|
33
|
+
}
|
|
34
|
+
export type WebsiteContentDistinctExp = WebsiteContentDistinctEnum | WebsitePartDistinctExp | SeoMetaDistinctExp | OgMetaDistinctExp | MultiLangableDistinctExp;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OrderBy } from './OrderBy';
|
|
2
|
+
import { WebsitePartOrderBy } from './WebsitePartOrderBy';
|
|
3
|
+
import { SeoMetaOrderBy } from './SeoMetaOrderBy';
|
|
4
|
+
import { OgMetaOrderBy } from './OgMetaOrderBy';
|
|
5
|
+
import { MultiLangableOrderBy } from './MultiLangableOrderBy';
|
|
6
|
+
/**
|
|
7
|
+
* 网站内容
|
|
8
|
+
* 页面、产品、文章等被搜索引擎检索的内容
|
|
9
|
+
*/
|
|
10
|
+
export interface WebsiteContentOrderBy extends WebsitePartOrderBy, SeoMetaOrderBy, OgMetaOrderBy, MultiLangableOrderBy {
|
|
11
|
+
id?: OrderBy;
|
|
12
|
+
title?: OrderBy;
|
|
13
|
+
content?: OrderBy;
|
|
14
|
+
extends?: OrderBy;
|
|
15
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare enum WebsiteDistinctEnum {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 站点名称
|
|
5
|
+
*/
|
|
6
|
+
name = "name",
|
|
7
|
+
/**
|
|
8
|
+
* 站点备注
|
|
9
|
+
*/
|
|
10
|
+
remark = "remark",
|
|
11
|
+
/**
|
|
12
|
+
* 创建者ID
|
|
13
|
+
*/
|
|
14
|
+
createdBy = "createdBy",
|
|
15
|
+
/**
|
|
16
|
+
* 创建时间
|
|
17
|
+
*/
|
|
18
|
+
createdAt = "createdAt",
|
|
19
|
+
/**
|
|
20
|
+
* 最近打开时间
|
|
21
|
+
*/
|
|
22
|
+
lastOpenTime = "lastOpenTime",
|
|
23
|
+
/**
|
|
24
|
+
* 更新时间
|
|
25
|
+
*/
|
|
26
|
+
updatedAt = "updatedAt",
|
|
27
|
+
/**
|
|
28
|
+
* 更新者ID
|
|
29
|
+
*/
|
|
30
|
+
updatedBy = "updatedBy"
|
|
31
|
+
}
|
|
32
|
+
export type WebsiteDistinctExp = WebsiteDistinctEnum;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Website } from './Website';
|
|
2
|
+
import { WebsiteTypeInput } from './WebsiteTypeInput';
|
|
3
|
+
import { ThemeInput } from './ThemeInput';
|
|
4
|
+
import { PageInput } from './PageInput';
|
|
5
|
+
import { UserInput } from './UserInput';
|
|
6
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
7
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
8
|
+
/**
|
|
9
|
+
* 站点
|
|
10
|
+
* 网站实体
|
|
11
|
+
*/
|
|
12
|
+
export interface WebsiteInput {
|
|
13
|
+
id?: string;
|
|
14
|
+
/**
|
|
15
|
+
* 站点名称
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
/**
|
|
19
|
+
* 站点备注
|
|
20
|
+
*/
|
|
21
|
+
remark?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 创建者ID
|
|
24
|
+
*/
|
|
25
|
+
createdBy?: string;
|
|
26
|
+
/**
|
|
27
|
+
* 创建时间
|
|
28
|
+
*/
|
|
29
|
+
createdAt?: Date;
|
|
30
|
+
/**
|
|
31
|
+
* 最近打开时间
|
|
32
|
+
*/
|
|
33
|
+
lastOpenTime?: Date;
|
|
34
|
+
/**
|
|
35
|
+
* 更新时间
|
|
36
|
+
*/
|
|
37
|
+
updatedAt?: Date;
|
|
38
|
+
/**
|
|
39
|
+
* 更新者ID
|
|
40
|
+
*/
|
|
41
|
+
updatedBy?: string;
|
|
42
|
+
websiteType?: SetHasOne<WebsiteTypeInput>;
|
|
43
|
+
selectedTheme?: SetHasOne<ThemeInput>;
|
|
44
|
+
homePage?: SetHasOne<PageInput>;
|
|
45
|
+
owner?: SetHasOne<UserInput>;
|
|
46
|
+
users?: SetHasMany<UserInput>;
|
|
47
|
+
}
|
|
48
|
+
export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
|
|
49
|
+
export declare const websiteToInput: (entity: Website) => WebsiteInput;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { WebsiteMeta } from './WebsiteMeta';
|
|
2
|
+
export interface WebsiteMetaInput {
|
|
3
|
+
id?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const websiteMetaToInputCascade: (entity: WebsiteMeta) => WebsiteMetaInput;
|
|
6
|
+
export declare const websiteMetaToInput: (entity: WebsiteMeta) => WebsiteMetaInput;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
/**
|
|
3
|
+
* 站点
|
|
4
|
+
* 网站实体
|
|
5
|
+
*/
|
|
6
|
+
export interface WebsiteOrderBy {
|
|
7
|
+
id?: OrderBy;
|
|
8
|
+
/**
|
|
9
|
+
* 站点名称
|
|
10
|
+
*/
|
|
11
|
+
name?: OrderBy;
|
|
12
|
+
/**
|
|
13
|
+
* 站点备注
|
|
14
|
+
*/
|
|
15
|
+
remark?: OrderBy;
|
|
16
|
+
/**
|
|
17
|
+
* 创建者ID
|
|
18
|
+
*/
|
|
19
|
+
createdBy?: OrderBy;
|
|
20
|
+
/**
|
|
21
|
+
* 创建时间
|
|
22
|
+
*/
|
|
23
|
+
createdAt?: OrderBy;
|
|
24
|
+
/**
|
|
25
|
+
* 最近打开时间
|
|
26
|
+
*/
|
|
27
|
+
lastOpenTime?: OrderBy;
|
|
28
|
+
/**
|
|
29
|
+
* 更新时间
|
|
30
|
+
*/
|
|
31
|
+
updatedAt?: OrderBy;
|
|
32
|
+
/**
|
|
33
|
+
* 更新者ID
|
|
34
|
+
*/
|
|
35
|
+
updatedBy?: OrderBy;
|
|
36
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseEntityBoolExp } from './BaseEntityBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
export interface WebsitePartBoolExp extends BaseEntityBoolExp {
|
|
5
|
+
_and?: WebsitePartBoolExp[];
|
|
6
|
+
_or?: WebsitePartBoolExp[];
|
|
7
|
+
_not?: WebsitePartBoolExp;
|
|
8
|
+
id?: IdComparisonExp;
|
|
9
|
+
websiteId?: StringComparisonExp;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BaseEntityDistinctExp } from './BaseEntityDistinctExp';
|
|
2
|
+
export declare enum WebsitePartDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
websiteId = "websiteId",
|
|
5
|
+
/**
|
|
6
|
+
* 创建时间
|
|
7
|
+
*/
|
|
8
|
+
createdAt = "createdAt",
|
|
9
|
+
/**
|
|
10
|
+
* 更新时间
|
|
11
|
+
*/
|
|
12
|
+
updatedAt = "updatedAt",
|
|
13
|
+
/**
|
|
14
|
+
* 备注
|
|
15
|
+
*/
|
|
16
|
+
remark = "remark"
|
|
17
|
+
}
|
|
18
|
+
export type WebsitePartDistinctExp = WebsitePartDistinctEnum | BaseEntityDistinctExp;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { WebsitePart } from './WebsitePart';
|
|
2
|
+
export declare const WebsiteSettingsEntityName = "WebsiteSettings";
|
|
3
|
+
export declare const WebsiteSettingsEntityLabel = "";
|
|
4
|
+
export interface WebsiteSettings extends WebsitePart {
|
|
5
|
+
id?: string;
|
|
6
|
+
/**
|
|
7
|
+
* 邮件配置
|
|
8
|
+
*/
|
|
9
|
+
smtpConfig?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
export interface WebsiteSettingsBoolExp extends WebsitePartBoolExp {
|
|
5
|
+
_and?: WebsiteSettingsBoolExp[];
|
|
6
|
+
_or?: WebsiteSettingsBoolExp[];
|
|
7
|
+
_not?: WebsiteSettingsBoolExp;
|
|
8
|
+
id?: IdComparisonExp;
|
|
9
|
+
smtpConfig?: StringComparisonExp;
|
|
10
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum WebsiteSettingsDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
/**
|
|
5
|
+
* 邮件配置
|
|
6
|
+
*/
|
|
7
|
+
smtpConfig = "smtpConfig",
|
|
8
|
+
websiteId = "websiteId",
|
|
9
|
+
/**
|
|
10
|
+
* 创建时间
|
|
11
|
+
*/
|
|
12
|
+
createdAt = "createdAt",
|
|
13
|
+
/**
|
|
14
|
+
* 更新时间
|
|
15
|
+
*/
|
|
16
|
+
updatedAt = "updatedAt",
|
|
17
|
+
/**
|
|
18
|
+
* 备注
|
|
19
|
+
*/
|
|
20
|
+
remark = "remark"
|
|
21
|
+
}
|
|
22
|
+
export type WebsiteSettingsDistinctExp = WebsiteSettingsDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WebsiteSettings } from './WebsiteSettings';
|
|
2
|
+
import { WebsitePart } from './WebsitePart';
|
|
3
|
+
export interface WebsiteSettingsInput extends WebsitePart {
|
|
4
|
+
id?: string;
|
|
5
|
+
/**
|
|
6
|
+
* 邮件配置
|
|
7
|
+
*/
|
|
8
|
+
smtpConfig?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const websiteSettingsToInputCascade: (entity: WebsiteSettings) => WebsiteSettingsInput;
|
|
11
|
+
export declare const websiteSettingsToInput: (entity: WebsiteSettings) => WebsiteSettingsInput;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { WebsiteTypeStatus } from './WebsiteTypeStatus';
|
|
2
|
+
import { Website } from './Website';
|
|
3
|
+
import { Aggregate } from './Aggregate';
|
|
4
|
+
export declare const WebsiteTypeEntityName = "WebsiteType";
|
|
5
|
+
export declare const WebsiteTypeEntityLabel = "\u7AD9\u70B9\u7C7B\u578B";
|
|
6
|
+
/**
|
|
7
|
+
* 站点类型
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface WebsiteType {
|
|
11
|
+
id?: string;
|
|
12
|
+
/**
|
|
13
|
+
* 网站类型名称
|
|
14
|
+
*/
|
|
15
|
+
name?: string;
|
|
16
|
+
/**
|
|
17
|
+
* 显示名称
|
|
18
|
+
*/
|
|
19
|
+
displayName?: string;
|
|
20
|
+
pricePerMonth?: number;
|
|
21
|
+
pricePerYear?: number;
|
|
22
|
+
/**
|
|
23
|
+
* 备注
|
|
24
|
+
*/
|
|
25
|
+
remark?: string;
|
|
26
|
+
createdAt?: Date;
|
|
27
|
+
updatedAt?: Date;
|
|
28
|
+
status?: WebsiteTypeStatus;
|
|
29
|
+
/**
|
|
30
|
+
* 等级
|
|
31
|
+
*/
|
|
32
|
+
level?: number;
|
|
33
|
+
websites?: Website[];
|
|
34
|
+
websitesAggregate?: Aggregate;
|
|
35
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { WebsiteTypeStatus } from './WebsiteTypeStatus';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
5
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
6
|
+
import { EnumComparisonExp } from './EnumComparisonExp';
|
|
7
|
+
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
8
|
+
/**
|
|
9
|
+
* 站点类型
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
export interface WebsiteTypeBoolExp {
|
|
13
|
+
_and?: WebsiteTypeBoolExp[];
|
|
14
|
+
_or?: WebsiteTypeBoolExp[];
|
|
15
|
+
_not?: WebsiteTypeBoolExp;
|
|
16
|
+
id?: IdComparisonExp;
|
|
17
|
+
name?: StringComparisonExp;
|
|
18
|
+
displayName?: StringComparisonExp;
|
|
19
|
+
pricePerMonth?: NumberComparisonExp;
|
|
20
|
+
pricePerYear?: NumberComparisonExp;
|
|
21
|
+
remark?: StringComparisonExp;
|
|
22
|
+
createdAt?: DateTimeComparisonExp;
|
|
23
|
+
updatedAt?: DateTimeComparisonExp;
|
|
24
|
+
status?: EnumComparisonExp<WebsiteTypeStatus>;
|
|
25
|
+
level?: NumberComparisonExp;
|
|
26
|
+
websites?: WebsiteBoolExp;
|
|
27
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare enum WebsiteTypeDistinctEnum {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 网站类型名称
|
|
5
|
+
*/
|
|
6
|
+
name = "name",
|
|
7
|
+
/**
|
|
8
|
+
* 显示名称
|
|
9
|
+
*/
|
|
10
|
+
displayName = "displayName",
|
|
11
|
+
pricePerMonth = "pricePerMonth",
|
|
12
|
+
pricePerYear = "pricePerYear",
|
|
13
|
+
/**
|
|
14
|
+
* 备注
|
|
15
|
+
*/
|
|
16
|
+
remark = "remark",
|
|
17
|
+
createdAt = "createdAt",
|
|
18
|
+
updatedAt = "updatedAt",
|
|
19
|
+
status = "status",
|
|
20
|
+
/**
|
|
21
|
+
* 等级
|
|
22
|
+
*/
|
|
23
|
+
level = "level"
|
|
24
|
+
}
|
|
25
|
+
export type WebsiteTypeDistinctExp = WebsiteTypeDistinctEnum;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { WebsiteType } from './WebsiteType';
|
|
2
|
+
import { WebsiteTypeStatus } from './WebsiteTypeStatus';
|
|
3
|
+
import { WebsiteInput } from './WebsiteInput';
|
|
4
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
5
|
+
/**
|
|
6
|
+
* 站点类型
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
export interface WebsiteTypeInput {
|
|
10
|
+
id?: string;
|
|
11
|
+
/**
|
|
12
|
+
* 网站类型名称
|
|
13
|
+
*/
|
|
14
|
+
name?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 显示名称
|
|
17
|
+
*/
|
|
18
|
+
displayName?: string;
|
|
19
|
+
pricePerMonth?: number;
|
|
20
|
+
pricePerYear?: number;
|
|
21
|
+
/**
|
|
22
|
+
* 备注
|
|
23
|
+
*/
|
|
24
|
+
remark?: string;
|
|
25
|
+
createdAt?: Date;
|
|
26
|
+
updatedAt?: Date;
|
|
27
|
+
status?: WebsiteTypeStatus;
|
|
28
|
+
/**
|
|
29
|
+
* 等级
|
|
30
|
+
*/
|
|
31
|
+
level?: number;
|
|
32
|
+
websites?: SetHasMany<WebsiteInput>;
|
|
33
|
+
}
|
|
34
|
+
export declare const websiteTypeToInputCascade: (entity: WebsiteType) => WebsiteTypeInput;
|
|
35
|
+
export declare const websiteTypeToInput: (entity: WebsiteType) => WebsiteTypeInput;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
/**
|
|
3
|
+
* 站点类型
|
|
4
|
+
*
|
|
5
|
+
*/
|
|
6
|
+
export interface WebsiteTypeOrderBy {
|
|
7
|
+
id?: OrderBy;
|
|
8
|
+
/**
|
|
9
|
+
* 网站类型名称
|
|
10
|
+
*/
|
|
11
|
+
name?: OrderBy;
|
|
12
|
+
/**
|
|
13
|
+
* 显示名称
|
|
14
|
+
*/
|
|
15
|
+
displayName?: OrderBy;
|
|
16
|
+
pricePerMonth?: OrderBy;
|
|
17
|
+
pricePerYear?: OrderBy;
|
|
18
|
+
/**
|
|
19
|
+
* 备注
|
|
20
|
+
*/
|
|
21
|
+
remark?: OrderBy;
|
|
22
|
+
createdAt?: OrderBy;
|
|
23
|
+
updatedAt?: OrderBy;
|
|
24
|
+
status?: OrderBy;
|
|
25
|
+
/**
|
|
26
|
+
* 等级
|
|
27
|
+
*/
|
|
28
|
+
level?: OrderBy;
|
|
29
|
+
}
|