@rxdrag/rxcms-models 0.1.1 → 0.1.2
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/hooks/index.d.ts +110 -0
- package/dist/hooks/useDeleteAbility.d.ts +8 -0
- package/dist/hooks/useDeleteAbilityById.d.ts +8 -0
- package/dist/hooks/useDeleteCustomer.d.ts +8 -0
- package/dist/hooks/useDeleteCustomerById.d.ts +8 -0
- package/dist/hooks/useDeleteEnquiry.d.ts +8 -0
- package/dist/hooks/useDeleteEnquiryById.d.ts +8 -0
- package/dist/hooks/useDeleteLang.d.ts +8 -0
- package/dist/hooks/useDeleteLangById.d.ts +8 -0
- package/dist/hooks/useDeleteMedia.d.ts +8 -0
- package/dist/hooks/useDeleteMediaById.d.ts +8 -0
- package/dist/hooks/useDeleteMediaFolder.d.ts +8 -0
- package/dist/hooks/useDeleteMediaFolderById.d.ts +8 -0
- package/dist/hooks/useDeletePage.d.ts +8 -0
- package/dist/hooks/useDeletePageById.d.ts +8 -0
- package/dist/hooks/useDeletePost.d.ts +8 -0
- package/dist/hooks/useDeletePostById.d.ts +8 -0
- package/dist/hooks/useDeletePostCategory.d.ts +8 -0
- package/dist/hooks/useDeletePostCategoryById.d.ts +8 -0
- package/dist/hooks/useDeleteProduct.d.ts +8 -0
- package/dist/hooks/useDeleteProductById.d.ts +8 -0
- package/dist/hooks/useDeleteProductCategory.d.ts +8 -0
- package/dist/hooks/useDeleteProductCategoryById.d.ts +8 -0
- package/dist/hooks/useDeleteRole.d.ts +8 -0
- package/dist/hooks/useDeleteRoleById.d.ts +8 -0
- package/dist/hooks/useDeleteSlug.d.ts +8 -0
- package/dist/hooks/useDeleteSlugById.d.ts +8 -0
- package/dist/hooks/useDeleteTag.d.ts +8 -0
- package/dist/hooks/useDeleteTagById.d.ts +8 -0
- package/dist/hooks/useDeleteTemplate.d.ts +8 -0
- package/dist/hooks/useDeleteTemplateById.d.ts +8 -0
- package/dist/hooks/useDeleteTemplateCategory.d.ts +8 -0
- package/dist/hooks/useDeleteTemplateCategoryById.d.ts +8 -0
- package/dist/hooks/useDeleteTheme.d.ts +8 -0
- package/dist/hooks/useDeleteThemeById.d.ts +8 -0
- package/dist/hooks/useDeleteUser.d.ts +8 -0
- package/dist/hooks/useDeleteUserById.d.ts +8 -0
- package/dist/hooks/useDeleteWebsite.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteById.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteMeta.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteMetaById.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteSettings.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteSettingsById.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteType.d.ts +8 -0
- package/dist/hooks/useDeleteWebsiteTypeById.d.ts +8 -0
- package/dist/hooks/useUpsertOneAbility.d.ts +8 -0
- package/dist/hooks/useUpsertOneCustomer.d.ts +8 -0
- package/dist/hooks/useUpsertOneEnquiry.d.ts +8 -0
- package/dist/hooks/useUpsertOneLang.d.ts +8 -0
- package/dist/hooks/useUpsertOneMedia.d.ts +8 -0
- package/dist/hooks/useUpsertOneMediaFolder.d.ts +8 -0
- package/dist/hooks/useUpsertOnePage.d.ts +8 -0
- package/dist/hooks/useUpsertOnePost.d.ts +8 -0
- package/dist/hooks/useUpsertOnePostCategory.d.ts +8 -0
- package/dist/hooks/useUpsertOneProduct.d.ts +8 -0
- package/dist/hooks/useUpsertOneProductCategory.d.ts +8 -0
- package/dist/hooks/useUpsertOneRole.d.ts +8 -0
- package/dist/hooks/useUpsertOneSlug.d.ts +8 -0
- package/dist/hooks/useUpsertOneTag.d.ts +8 -0
- package/dist/hooks/useUpsertOneTemplate.d.ts +8 -0
- package/dist/hooks/useUpsertOneTemplateCategory.d.ts +8 -0
- package/dist/hooks/useUpsertOneTheme.d.ts +8 -0
- package/dist/hooks/useUpsertOneUser.d.ts +8 -0
- package/dist/hooks/useUpsertOneWebsite.d.ts +8 -0
- package/dist/hooks/useUpsertOneWebsiteMeta.d.ts +8 -0
- package/dist/hooks/useUpsertOneWebsiteSettings.d.ts +8 -0
- package/dist/hooks/useUpsertOneWebsiteType.d.ts +8 -0
- package/dist/index.d.ts +4 -3
- package/dist/index.mjs +1844 -1309
- 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 +7 -6
- 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,23 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum TagDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
/**
|
|
5
|
+
* 名称
|
|
6
|
+
*/
|
|
7
|
+
name = "name",
|
|
8
|
+
color = "color",
|
|
9
|
+
websiteId = "websiteId",
|
|
10
|
+
/**
|
|
11
|
+
* 创建时间
|
|
12
|
+
*/
|
|
13
|
+
createdAt = "createdAt",
|
|
14
|
+
/**
|
|
15
|
+
* 更新时间
|
|
16
|
+
*/
|
|
17
|
+
updatedAt = "updatedAt",
|
|
18
|
+
/**
|
|
19
|
+
* 备注
|
|
20
|
+
*/
|
|
21
|
+
remark = "remark"
|
|
22
|
+
}
|
|
23
|
+
export type TagDistinctExp = TagDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Tag } from './Tag';
|
|
2
|
+
import { PostInput } from './PostInput';
|
|
3
|
+
import { ProductInput } from './ProductInput';
|
|
4
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
5
|
+
import { WebsitePart } from './WebsitePart';
|
|
6
|
+
/**
|
|
7
|
+
* 文章标签
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface TagInput extends WebsitePart {
|
|
11
|
+
id?: string;
|
|
12
|
+
/**
|
|
13
|
+
* 名称
|
|
14
|
+
*/
|
|
15
|
+
name?: string;
|
|
16
|
+
color?: string;
|
|
17
|
+
posts?: SetHasMany<PostInput>;
|
|
18
|
+
products?: SetHasMany<ProductInput>;
|
|
19
|
+
}
|
|
20
|
+
export declare const tagToInputCascade: (entity: Tag) => TagInput;
|
|
21
|
+
export declare const tagToInput: (entity: Tag) => TagInput;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { WebsitePartOrderBy } from './WebsitePartOrderBy';
|
|
3
|
+
/**
|
|
4
|
+
* 文章标签
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export interface TagOrderBy extends WebsitePartOrderBy {
|
|
8
|
+
id?: OrderBy;
|
|
9
|
+
/**
|
|
10
|
+
* 名称
|
|
11
|
+
*/
|
|
12
|
+
name?: OrderBy;
|
|
13
|
+
color?: OrderBy;
|
|
14
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TemplateType } from './TemplateType';
|
|
2
|
+
import { TemplateCategory } from './TemplateCategory';
|
|
3
|
+
import { Theme } from './Theme';
|
|
4
|
+
import { WebsitePart } from './WebsitePart';
|
|
5
|
+
export declare const TemplateEntityName = "Template";
|
|
6
|
+
export declare const TemplateEntityLabel = "";
|
|
7
|
+
export interface Template extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
seqValue?: number;
|
|
11
|
+
content?: any;
|
|
12
|
+
/**
|
|
13
|
+
* 模板类型
|
|
14
|
+
*/
|
|
15
|
+
templateType?: TemplateType;
|
|
16
|
+
category?: TemplateCategory;
|
|
17
|
+
theme?: Theme;
|
|
18
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateType } from './TemplateType';
|
|
2
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
3
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
4
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
5
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
6
|
+
import { EnumComparisonExp } from './EnumComparisonExp';
|
|
7
|
+
import { TemplateCategoryBoolExp } from './TemplateCategoryBoolExp';
|
|
8
|
+
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
9
|
+
export interface TemplateBoolExp extends WebsitePartBoolExp {
|
|
10
|
+
_and?: TemplateBoolExp[];
|
|
11
|
+
_or?: TemplateBoolExp[];
|
|
12
|
+
_not?: TemplateBoolExp;
|
|
13
|
+
id?: IdComparisonExp;
|
|
14
|
+
name?: StringComparisonExp;
|
|
15
|
+
seqValue?: NumberComparisonExp;
|
|
16
|
+
content?: unknown;
|
|
17
|
+
templateType?: EnumComparisonExp<TemplateType>;
|
|
18
|
+
category?: TemplateCategoryBoolExp;
|
|
19
|
+
theme?: ThemeBoolExp;
|
|
20
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Template } from './Template';
|
|
2
|
+
import { Theme } from './Theme';
|
|
3
|
+
import { Aggregate } from './Aggregate';
|
|
4
|
+
import { WebsitePart } from './WebsitePart';
|
|
5
|
+
export declare const TemplateCategoryEntityName = "TemplateCategory";
|
|
6
|
+
export declare const TemplateCategoryEntityLabel = "";
|
|
7
|
+
export interface TemplateCategory extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
seqValue?: number;
|
|
11
|
+
templates?: Template[];
|
|
12
|
+
theme?: Theme;
|
|
13
|
+
templatesAggregate?: Aggregate;
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
5
|
+
import { TemplateBoolExp } from './TemplateBoolExp';
|
|
6
|
+
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
7
|
+
export interface TemplateCategoryBoolExp extends WebsitePartBoolExp {
|
|
8
|
+
_and?: TemplateCategoryBoolExp[];
|
|
9
|
+
_or?: TemplateCategoryBoolExp[];
|
|
10
|
+
_not?: TemplateCategoryBoolExp;
|
|
11
|
+
id?: IdComparisonExp;
|
|
12
|
+
name?: StringComparisonExp;
|
|
13
|
+
seqValue?: NumberComparisonExp;
|
|
14
|
+
templates?: TemplateBoolExp;
|
|
15
|
+
theme?: ThemeBoolExp;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum TemplateCategoryDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
name = "name",
|
|
5
|
+
seqValue = "seqValue",
|
|
6
|
+
websiteId = "websiteId",
|
|
7
|
+
/**
|
|
8
|
+
* 创建时间
|
|
9
|
+
*/
|
|
10
|
+
createdAt = "createdAt",
|
|
11
|
+
/**
|
|
12
|
+
* 更新时间
|
|
13
|
+
*/
|
|
14
|
+
updatedAt = "updatedAt",
|
|
15
|
+
/**
|
|
16
|
+
* 备注
|
|
17
|
+
*/
|
|
18
|
+
remark = "remark"
|
|
19
|
+
}
|
|
20
|
+
export type TemplateCategoryDistinctExp = TemplateCategoryDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TemplateCategory } from './TemplateCategory';
|
|
2
|
+
import { TemplateInput } from './TemplateInput';
|
|
3
|
+
import { ThemeInput } from './ThemeInput';
|
|
4
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
5
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
6
|
+
import { WebsitePart } from './WebsitePart';
|
|
7
|
+
export interface TemplateCategoryInput extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
seqValue?: number;
|
|
11
|
+
templates?: SetHasMany<TemplateInput>;
|
|
12
|
+
theme?: SetHasOne<ThemeInput>;
|
|
13
|
+
}
|
|
14
|
+
export declare const templateCategoryToInputCascade: (entity: TemplateCategory) => TemplateCategoryInput;
|
|
15
|
+
export declare const templateCategoryToInput: (entity: TemplateCategory) => TemplateCategoryInput;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum TemplateDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
name = "name",
|
|
5
|
+
seqValue = "seqValue",
|
|
6
|
+
content = "content",
|
|
7
|
+
/**
|
|
8
|
+
* 模板类型
|
|
9
|
+
*/
|
|
10
|
+
templateType = "templateType",
|
|
11
|
+
websiteId = "websiteId",
|
|
12
|
+
/**
|
|
13
|
+
* 创建时间
|
|
14
|
+
*/
|
|
15
|
+
createdAt = "createdAt",
|
|
16
|
+
/**
|
|
17
|
+
* 更新时间
|
|
18
|
+
*/
|
|
19
|
+
updatedAt = "updatedAt",
|
|
20
|
+
/**
|
|
21
|
+
* 备注
|
|
22
|
+
*/
|
|
23
|
+
remark = "remark"
|
|
24
|
+
}
|
|
25
|
+
export type TemplateDistinctExp = TemplateDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Template } from './Template';
|
|
2
|
+
import { TemplateType } from './TemplateType';
|
|
3
|
+
import { TemplateCategoryInput } from './TemplateCategoryInput';
|
|
4
|
+
import { ThemeInput } from './ThemeInput';
|
|
5
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
6
|
+
import { WebsitePart } from './WebsitePart';
|
|
7
|
+
export interface TemplateInput extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
seqValue?: number;
|
|
11
|
+
content?: any;
|
|
12
|
+
/**
|
|
13
|
+
* 模板类型
|
|
14
|
+
*/
|
|
15
|
+
templateType?: TemplateType;
|
|
16
|
+
category?: SetHasOne<TemplateCategoryInput>;
|
|
17
|
+
theme?: SetHasOne<ThemeInput>;
|
|
18
|
+
}
|
|
19
|
+
export declare const templateToInputCascade: (entity: Template) => TemplateInput;
|
|
20
|
+
export declare const templateToInput: (entity: Template) => TemplateInput;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { WebsitePartOrderBy } from './WebsitePartOrderBy';
|
|
3
|
+
export interface TemplateOrderBy extends WebsitePartOrderBy {
|
|
4
|
+
id?: OrderBy;
|
|
5
|
+
name?: OrderBy;
|
|
6
|
+
seqValue?: OrderBy;
|
|
7
|
+
content?: OrderBy;
|
|
8
|
+
/**
|
|
9
|
+
* 模板类型
|
|
10
|
+
*/
|
|
11
|
+
templateType?: OrderBy;
|
|
12
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare enum TemplateType {
|
|
2
|
+
/**
|
|
3
|
+
* label: 区块
|
|
4
|
+
*/
|
|
5
|
+
Block = "Block",
|
|
6
|
+
/**
|
|
7
|
+
* label: 文章分类
|
|
8
|
+
*/
|
|
9
|
+
PostCategory = "PostCategory",
|
|
10
|
+
/**
|
|
11
|
+
* label: 文章
|
|
12
|
+
*/
|
|
13
|
+
Post = "Post",
|
|
14
|
+
/**
|
|
15
|
+
* label: 产品分离
|
|
16
|
+
*/
|
|
17
|
+
ProductCategory = "ProductCategory",
|
|
18
|
+
/**
|
|
19
|
+
* label: 产品
|
|
20
|
+
*/
|
|
21
|
+
Product = "Product",
|
|
22
|
+
/**
|
|
23
|
+
* label: 页面
|
|
24
|
+
*/
|
|
25
|
+
Page = "Page",
|
|
26
|
+
/**
|
|
27
|
+
* label: 框架
|
|
28
|
+
*/
|
|
29
|
+
Frame = "Frame",
|
|
30
|
+
/**
|
|
31
|
+
* label: undefined
|
|
32
|
+
*/
|
|
33
|
+
SearchList = "SearchList"
|
|
34
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ThemeSettings } from './ThemeSettings';
|
|
2
|
+
import { Template } from './Template';
|
|
3
|
+
import { TemplateCategory } from './TemplateCategory';
|
|
4
|
+
import { Aggregate } from './Aggregate';
|
|
5
|
+
import { WebsitePart } from './WebsitePart';
|
|
6
|
+
export declare const ThemeEntityName = "Theme";
|
|
7
|
+
export declare const ThemeEntityLabel = "";
|
|
8
|
+
export interface Theme extends WebsitePart {
|
|
9
|
+
id?: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
styles?: any;
|
|
12
|
+
settings?: ThemeSettings;
|
|
13
|
+
templates?: Template[];
|
|
14
|
+
themlateCategories?: TemplateCategory[];
|
|
15
|
+
templatesAggregate?: Aggregate;
|
|
16
|
+
themlateCategoriesAggregate?: Aggregate;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { unkonwn } from './unkonwn';
|
|
5
|
+
import { TemplateBoolExp } from './TemplateBoolExp';
|
|
6
|
+
import { TemplateCategoryBoolExp } from './TemplateCategoryBoolExp';
|
|
7
|
+
export interface ThemeBoolExp extends WebsitePartBoolExp {
|
|
8
|
+
_and?: ThemeBoolExp[];
|
|
9
|
+
_or?: ThemeBoolExp[];
|
|
10
|
+
_not?: ThemeBoolExp;
|
|
11
|
+
id?: IdComparisonExp;
|
|
12
|
+
name?: StringComparisonExp;
|
|
13
|
+
styles?: unknown;
|
|
14
|
+
settings?: unkonwn;
|
|
15
|
+
templates?: TemplateBoolExp;
|
|
16
|
+
themlateCategories?: TemplateCategoryBoolExp;
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum ThemeDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
name = "name",
|
|
5
|
+
styles = "styles",
|
|
6
|
+
settings = "settings",
|
|
7
|
+
websiteId = "websiteId",
|
|
8
|
+
/**
|
|
9
|
+
* 创建时间
|
|
10
|
+
*/
|
|
11
|
+
createdAt = "createdAt",
|
|
12
|
+
/**
|
|
13
|
+
* 更新时间
|
|
14
|
+
*/
|
|
15
|
+
updatedAt = "updatedAt",
|
|
16
|
+
/**
|
|
17
|
+
* 备注
|
|
18
|
+
*/
|
|
19
|
+
remark = "remark"
|
|
20
|
+
}
|
|
21
|
+
export type ThemeDistinctExp = ThemeDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Theme } from './Theme';
|
|
2
|
+
import { ThemeSettings } from './ThemeSettings';
|
|
3
|
+
import { TemplateInput } from './TemplateInput';
|
|
4
|
+
import { TemplateCategoryInput } from './TemplateCategoryInput';
|
|
5
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
6
|
+
import { WebsitePart } from './WebsitePart';
|
|
7
|
+
export interface ThemeInput extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
styles?: any;
|
|
11
|
+
settings?: ThemeSettings;
|
|
12
|
+
templates?: SetHasMany<TemplateInput>;
|
|
13
|
+
themlateCategories?: SetHasMany<TemplateCategoryInput>;
|
|
14
|
+
}
|
|
15
|
+
export declare const themeToInputCascade: (entity: Theme) => ThemeInput;
|
|
16
|
+
export declare const themeToInput: (entity: Theme) => ThemeInput;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Role } from './Role';
|
|
2
|
+
import { Media } from './Media';
|
|
3
|
+
import { Product } from './Product';
|
|
4
|
+
import { Post } from './Post';
|
|
5
|
+
import { Website } from './Website';
|
|
6
|
+
import { Aggregate } from './Aggregate';
|
|
7
|
+
import { WebSiteUser } from './WebsiteUser';
|
|
8
|
+
export declare const UserEntityName = "User";
|
|
9
|
+
export declare const UserEntityLabel = "";
|
|
10
|
+
export interface User extends WebSiteUser {
|
|
11
|
+
id?: string;
|
|
12
|
+
loginName?: string;
|
|
13
|
+
name?: string;
|
|
14
|
+
mobileNumber?: string;
|
|
15
|
+
isSupperAdmin?: boolean;
|
|
16
|
+
password?: unknown;
|
|
17
|
+
createdAt?: Date;
|
|
18
|
+
updatedAt?: Date;
|
|
19
|
+
roles?: Role[];
|
|
20
|
+
avatar?: Media;
|
|
21
|
+
products?: Product[];
|
|
22
|
+
posts?: Post[];
|
|
23
|
+
websites?: Website[];
|
|
24
|
+
belongsTo?: Website;
|
|
25
|
+
rolesAggregate?: Aggregate;
|
|
26
|
+
productsAggregate?: Aggregate;
|
|
27
|
+
postsAggregate?: Aggregate;
|
|
28
|
+
websitesAggregate?: Aggregate;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { WebSiteUserBoolExp } from './WebSiteUserBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { BooleanComparisonExp } from './BooleanComparisonExp';
|
|
5
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
6
|
+
import { RoleBoolExp } from './RoleBoolExp';
|
|
7
|
+
import { MediaBoolExp } from './MediaBoolExp';
|
|
8
|
+
import { ProductBoolExp } from './ProductBoolExp';
|
|
9
|
+
import { PostBoolExp } from './PostBoolExp';
|
|
10
|
+
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
11
|
+
export interface UserBoolExp extends WebSiteUserBoolExp {
|
|
12
|
+
_and?: UserBoolExp[];
|
|
13
|
+
_or?: UserBoolExp[];
|
|
14
|
+
_not?: UserBoolExp;
|
|
15
|
+
id?: IdComparisonExp;
|
|
16
|
+
loginName?: StringComparisonExp;
|
|
17
|
+
name?: StringComparisonExp;
|
|
18
|
+
mobileNumber?: StringComparisonExp;
|
|
19
|
+
isSupperAdmin?: BooleanComparisonExp;
|
|
20
|
+
password?: unknown;
|
|
21
|
+
createdAt?: DateTimeComparisonExp;
|
|
22
|
+
updatedAt?: DateTimeComparisonExp;
|
|
23
|
+
roles?: RoleBoolExp;
|
|
24
|
+
avatar?: MediaBoolExp;
|
|
25
|
+
products?: ProductBoolExp;
|
|
26
|
+
posts?: PostBoolExp;
|
|
27
|
+
websites?: WebsiteBoolExp;
|
|
28
|
+
belongsTo?: WebsiteBoolExp;
|
|
29
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { WebSiteUserDistinctExp } from './WebSiteUserDistinctExp';
|
|
2
|
+
export declare enum UserDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
loginName = "loginName",
|
|
5
|
+
name = "name",
|
|
6
|
+
mobileNumber = "mobileNumber",
|
|
7
|
+
isSupperAdmin = "isSupperAdmin",
|
|
8
|
+
password = "password",
|
|
9
|
+
createdAt = "createdAt",
|
|
10
|
+
updatedAt = "updatedAt",
|
|
11
|
+
/**
|
|
12
|
+
* 职位
|
|
13
|
+
*/
|
|
14
|
+
postion = "postion",
|
|
15
|
+
/**
|
|
16
|
+
* 自我介绍
|
|
17
|
+
*/
|
|
18
|
+
profile = "profile",
|
|
19
|
+
userType = "userType",
|
|
20
|
+
/**
|
|
21
|
+
* 邮箱
|
|
22
|
+
*/
|
|
23
|
+
email = "email",
|
|
24
|
+
/**
|
|
25
|
+
* 电话
|
|
26
|
+
*/
|
|
27
|
+
tel = "tel",
|
|
28
|
+
/**
|
|
29
|
+
* 电话2
|
|
30
|
+
*/
|
|
31
|
+
tel2 = "tel2",
|
|
32
|
+
mobile = "mobile",
|
|
33
|
+
whatsApp = "whatsApp",
|
|
34
|
+
linkedIn = "linkedIn",
|
|
35
|
+
twitter = "twitter",
|
|
36
|
+
facebook = "facebook",
|
|
37
|
+
instagram = "instagram",
|
|
38
|
+
/**
|
|
39
|
+
* 简介
|
|
40
|
+
*/
|
|
41
|
+
summary = "summary"
|
|
42
|
+
}
|
|
43
|
+
export type UserDistinctExp = UserDistinctEnum | WebSiteUserDistinctExp;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { User } from './User';
|
|
2
|
+
import { RoleInput } from './RoleInput';
|
|
3
|
+
import { MediaInput } from './MediaInput';
|
|
4
|
+
import { ProductInput } from './ProductInput';
|
|
5
|
+
import { PostInput } from './PostInput';
|
|
6
|
+
import { WebsiteInput } from './WebsiteInput';
|
|
7
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
8
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
9
|
+
import { WebSiteUser } from './WebsiteUser';
|
|
10
|
+
export interface UserInput extends WebSiteUser {
|
|
11
|
+
id?: string;
|
|
12
|
+
loginName?: string;
|
|
13
|
+
name?: string;
|
|
14
|
+
mobileNumber?: string;
|
|
15
|
+
isSupperAdmin?: boolean;
|
|
16
|
+
password?: unknown;
|
|
17
|
+
createdAt?: Date;
|
|
18
|
+
updatedAt?: Date;
|
|
19
|
+
roles?: SetHasMany<RoleInput>;
|
|
20
|
+
avatar?: SetHasOne<MediaInput>;
|
|
21
|
+
products?: SetHasMany<ProductInput>;
|
|
22
|
+
posts?: SetHasMany<PostInput>;
|
|
23
|
+
websites?: SetHasMany<WebsiteInput>;
|
|
24
|
+
belongsTo?: SetHasOne<WebsiteInput>;
|
|
25
|
+
}
|
|
26
|
+
export declare const userToInputCascade: (entity: User) => UserInput;
|
|
27
|
+
export declare const userToInput: (entity: User) => UserInput;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { WebSiteUserOrderBy } from './WebSiteUserOrderBy';
|
|
3
|
+
export interface UserOrderBy extends WebSiteUserOrderBy {
|
|
4
|
+
id?: OrderBy;
|
|
5
|
+
loginName?: OrderBy;
|
|
6
|
+
name?: OrderBy;
|
|
7
|
+
mobileNumber?: OrderBy;
|
|
8
|
+
isSupperAdmin?: OrderBy;
|
|
9
|
+
password?: OrderBy;
|
|
10
|
+
createdAt?: OrderBy;
|
|
11
|
+
updatedAt?: OrderBy;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UserType } from './UserType';
|
|
2
|
+
import { PersonBoolExp } from './PersonBoolExp';
|
|
3
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
4
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
5
|
+
import { EnumComparisonExp } from './EnumComparisonExp';
|
|
6
|
+
export interface WebSiteUserBoolExp extends PersonBoolExp {
|
|
7
|
+
_and?: WebSiteUserBoolExp[];
|
|
8
|
+
_or?: WebSiteUserBoolExp[];
|
|
9
|
+
_not?: WebSiteUserBoolExp;
|
|
10
|
+
id?: IdComparisonExp;
|
|
11
|
+
postion?: StringComparisonExp;
|
|
12
|
+
profile?: unknown;
|
|
13
|
+
userType?: EnumComparisonExp<UserType>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { PersonDistinctExp } from './PersonDistinctExp';
|
|
2
|
+
export declare enum WebSiteUserDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
/**
|
|
5
|
+
* 职位
|
|
6
|
+
*/
|
|
7
|
+
postion = "postion",
|
|
8
|
+
/**
|
|
9
|
+
* 自我介绍
|
|
10
|
+
*/
|
|
11
|
+
profile = "profile",
|
|
12
|
+
userType = "userType",
|
|
13
|
+
/**
|
|
14
|
+
* 邮箱
|
|
15
|
+
*/
|
|
16
|
+
email = "email",
|
|
17
|
+
/**
|
|
18
|
+
* 电话
|
|
19
|
+
*/
|
|
20
|
+
tel = "tel",
|
|
21
|
+
/**
|
|
22
|
+
* 电话2
|
|
23
|
+
*/
|
|
24
|
+
tel2 = "tel2",
|
|
25
|
+
name = "name",
|
|
26
|
+
mobile = "mobile",
|
|
27
|
+
whatsApp = "whatsApp",
|
|
28
|
+
linkedIn = "linkedIn",
|
|
29
|
+
twitter = "twitter",
|
|
30
|
+
facebook = "facebook",
|
|
31
|
+
instagram = "instagram",
|
|
32
|
+
/**
|
|
33
|
+
* 简介
|
|
34
|
+
*/
|
|
35
|
+
summary = "summary"
|
|
36
|
+
}
|
|
37
|
+
export type WebSiteUserDistinctExp = WebSiteUserDistinctEnum | PersonDistinctExp;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OrderBy } from './OrderBy';
|
|
2
|
+
import { PersonOrderBy } from './PersonOrderBy';
|
|
3
|
+
export interface WebSiteUserOrderBy extends PersonOrderBy {
|
|
4
|
+
id?: OrderBy;
|
|
5
|
+
/**
|
|
6
|
+
* 职位
|
|
7
|
+
*/
|
|
8
|
+
postion?: OrderBy;
|
|
9
|
+
/**
|
|
10
|
+
* 自我介绍
|
|
11
|
+
*/
|
|
12
|
+
profile?: OrderBy;
|
|
13
|
+
userType?: OrderBy;
|
|
14
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { WebsiteType } from './WebsiteType';
|
|
2
|
+
import { Theme } from './Theme';
|
|
3
|
+
import { Page } from './Page';
|
|
4
|
+
import { User } from './User';
|
|
5
|
+
import { Aggregate } from './Aggregate';
|
|
6
|
+
export declare const WebsiteEntityName = "Website";
|
|
7
|
+
export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
|
|
8
|
+
/**
|
|
9
|
+
* 站点
|
|
10
|
+
* 网站实体
|
|
11
|
+
*/
|
|
12
|
+
export interface Website {
|
|
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?: WebsiteType;
|
|
43
|
+
selectedTheme?: Theme;
|
|
44
|
+
homePage?: Page;
|
|
45
|
+
owner?: User;
|
|
46
|
+
users?: User[];
|
|
47
|
+
usersAggregate?: Aggregate;
|
|
48
|
+
}
|