@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,27 @@
|
|
|
1
|
+
import { MediaType } from './MediaType';
|
|
2
|
+
import { CustomizeMediaBoolExp } from './CustomizeMediaBoolExp';
|
|
3
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
4
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
5
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
6
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
7
|
+
import { EnumComparisonExp } from './EnumComparisonExp';
|
|
8
|
+
import { MediaFolderBoolExp } from './MediaFolderBoolExp';
|
|
9
|
+
import { UserBoolExp } from './UserBoolExp';
|
|
10
|
+
import { ProductBoolExp } from './ProductBoolExp';
|
|
11
|
+
export interface MediaBoolExp extends CustomizeMediaBoolExp {
|
|
12
|
+
_and?: MediaBoolExp[];
|
|
13
|
+
_or?: MediaBoolExp[];
|
|
14
|
+
_not?: MediaBoolExp;
|
|
15
|
+
id?: IdComparisonExp;
|
|
16
|
+
name?: StringComparisonExp;
|
|
17
|
+
size?: NumberComparisonExp;
|
|
18
|
+
mimeType?: StringComparisonExp;
|
|
19
|
+
extName?: StringComparisonExp;
|
|
20
|
+
description?: StringComparisonExp;
|
|
21
|
+
createdAt?: DateTimeComparisonExp;
|
|
22
|
+
updatedAt?: DateTimeComparisonExp;
|
|
23
|
+
mediaType?: EnumComparisonExp<MediaType>;
|
|
24
|
+
folder?: MediaFolderBoolExp;
|
|
25
|
+
avatarOfUser?: UserBoolExp;
|
|
26
|
+
usedByProducts?: ProductBoolExp;
|
|
27
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CustomizeMediaDistinctExp } from './CustomizeMediaDistinctExp';
|
|
2
|
+
export declare enum MediaDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
name = "name",
|
|
5
|
+
size = "size",
|
|
6
|
+
mimeType = "mimeType",
|
|
7
|
+
extName = "extName",
|
|
8
|
+
file = "file",
|
|
9
|
+
description = "description",
|
|
10
|
+
createdAt = "createdAt",
|
|
11
|
+
updatedAt = "updatedAt",
|
|
12
|
+
mediaType = "mediaType",
|
|
13
|
+
/**
|
|
14
|
+
* 网站Id
|
|
15
|
+
*/
|
|
16
|
+
websiteId = "websiteId"
|
|
17
|
+
}
|
|
18
|
+
export type MediaDistinctExp = MediaDistinctEnum | CustomizeMediaDistinctExp;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Media } from './Media';
|
|
2
|
+
import { Aggregate } from './Aggregate';
|
|
3
|
+
import { WebsitePart } from './WebsitePart';
|
|
4
|
+
export declare const MediaFolderEntityName = "MediaFolder";
|
|
5
|
+
export declare const MediaFolderEntityLabel = "\u5A92\u4F53\u5206\u7C7B";
|
|
6
|
+
/**
|
|
7
|
+
* 媒体分类
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface MediaFolder extends WebsitePart {
|
|
11
|
+
id?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
seqValue?: number;
|
|
14
|
+
children?: MediaFolder[];
|
|
15
|
+
parent?: MediaFolder;
|
|
16
|
+
medias?: Media[];
|
|
17
|
+
childrenAggregate?: Aggregate;
|
|
18
|
+
mediasAggregate?: Aggregate;
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
5
|
+
import { MediaBoolExp } from './MediaBoolExp';
|
|
6
|
+
/**
|
|
7
|
+
* 媒体分类
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface MediaFolderBoolExp extends WebsitePartBoolExp {
|
|
11
|
+
_and?: MediaFolderBoolExp[];
|
|
12
|
+
_or?: MediaFolderBoolExp[];
|
|
13
|
+
_not?: MediaFolderBoolExp;
|
|
14
|
+
id?: IdComparisonExp;
|
|
15
|
+
name?: StringComparisonExp;
|
|
16
|
+
seqValue?: NumberComparisonExp;
|
|
17
|
+
children?: MediaFolderBoolExp;
|
|
18
|
+
parent?: MediaFolderBoolExp;
|
|
19
|
+
medias?: MediaBoolExp;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum MediaFolderDistinctEnum {
|
|
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 MediaFolderDistinctExp = MediaFolderDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { MediaFolder } from './MediaFolder';
|
|
2
|
+
import { MediaInput } from './MediaInput';
|
|
3
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
4
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
5
|
+
import { WebsitePart } from './WebsitePart';
|
|
6
|
+
/**
|
|
7
|
+
* 媒体分类
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface MediaFolderInput extends WebsitePart {
|
|
11
|
+
id?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
seqValue?: number;
|
|
14
|
+
children?: SetHasMany<MediaFolderInput>;
|
|
15
|
+
parent?: SetHasOne<MediaFolderInput>;
|
|
16
|
+
medias?: SetHasMany<MediaInput>;
|
|
17
|
+
}
|
|
18
|
+
export declare const mediaFolderToInputCascade: (entity: MediaFolder) => MediaFolderInput;
|
|
19
|
+
export declare const mediaFolderToInput: (entity: MediaFolder) => MediaFolderInput;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { WebsitePartOrderBy } from './WebsitePartOrderBy';
|
|
3
|
+
/**
|
|
4
|
+
* 媒体分类
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export interface MediaFolderOrderBy extends WebsitePartOrderBy {
|
|
8
|
+
id?: OrderBy;
|
|
9
|
+
name?: OrderBy;
|
|
10
|
+
seqValue?: OrderBy;
|
|
11
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Media } from './Media';
|
|
2
|
+
import { MediaType } from './MediaType';
|
|
3
|
+
import { FileRef } from './FileRef';
|
|
4
|
+
import { MediaFolderInput } from './MediaFolderInput';
|
|
5
|
+
import { UserInput } from './UserInput';
|
|
6
|
+
import { ProductInput } from './ProductInput';
|
|
7
|
+
import { MediaAddon } from './MediaAddon';
|
|
8
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
9
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
10
|
+
import { CustomizeMedia } from './CustomizeMedia';
|
|
11
|
+
export interface MediaInput extends CustomizeMedia {
|
|
12
|
+
id?: string;
|
|
13
|
+
name?: string;
|
|
14
|
+
size?: number;
|
|
15
|
+
mimeType?: string;
|
|
16
|
+
extName?: string;
|
|
17
|
+
file?: FileRef;
|
|
18
|
+
description?: string;
|
|
19
|
+
createdAt?: Date;
|
|
20
|
+
updatedAt?: Date;
|
|
21
|
+
mediaType?: MediaType;
|
|
22
|
+
folder?: SetHasOne<MediaFolderInput>;
|
|
23
|
+
avatarOfUser?: SetHasOne<UserInput>;
|
|
24
|
+
usedByProducts?: SetHasMany<ProductInput & MediaAddon>;
|
|
25
|
+
}
|
|
26
|
+
export declare const mediaToInputCascade: (entity: Media) => MediaInput;
|
|
27
|
+
export declare const mediaToInput: (entity: Media) => MediaInput;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { CustomizeMediaOrderBy } from './CustomizeMediaOrderBy';
|
|
3
|
+
export interface MediaOrderBy extends CustomizeMediaOrderBy {
|
|
4
|
+
id?: OrderBy;
|
|
5
|
+
name?: OrderBy;
|
|
6
|
+
size?: OrderBy;
|
|
7
|
+
mimeType?: OrderBy;
|
|
8
|
+
extName?: OrderBy;
|
|
9
|
+
file?: OrderBy;
|
|
10
|
+
description?: OrderBy;
|
|
11
|
+
createdAt?: OrderBy;
|
|
12
|
+
updatedAt?: OrderBy;
|
|
13
|
+
mediaType?: OrderBy;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
export interface MultiLangableBoolExp {
|
|
4
|
+
_and?: MultiLangableBoolExp[];
|
|
5
|
+
_or?: MultiLangableBoolExp[];
|
|
6
|
+
_not?: MultiLangableBoolExp;
|
|
7
|
+
id?: IdComparisonExp;
|
|
8
|
+
lang?: StringComparisonExp;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
export interface OgMetaBoolExp {
|
|
4
|
+
_and?: OgMetaBoolExp[];
|
|
5
|
+
_or?: OgMetaBoolExp[];
|
|
6
|
+
_not?: OgMetaBoolExp;
|
|
7
|
+
id?: IdComparisonExp;
|
|
8
|
+
ogTitle?: StringComparisonExp;
|
|
9
|
+
ogDescription?: StringComparisonExp;
|
|
10
|
+
ogImageUrl?: StringComparisonExp;
|
|
11
|
+
ogUrl?: StringComparisonExp;
|
|
12
|
+
ogSiteName?: StringComparisonExp;
|
|
13
|
+
ogType?: StringComparisonExp;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum OgMetaDistinctEnum {
|
|
2
|
+
id = "id",
|
|
3
|
+
ogTitle = "ogTitle",
|
|
4
|
+
ogDescription = "ogDescription",
|
|
5
|
+
ogImageUrl = "ogImageUrl",
|
|
6
|
+
ogUrl = "ogUrl",
|
|
7
|
+
ogSiteName = "ogSiteName",
|
|
8
|
+
ogType = "ogType"
|
|
9
|
+
}
|
|
10
|
+
export type OgMetaDistinctExp = OgMetaDistinctEnum;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Slug } from './Slug';
|
|
2
|
+
import { WebsiteContent } from './WebsiteContent';
|
|
3
|
+
export declare const PageEntityName = "Page";
|
|
4
|
+
export declare const PageEntityLabel = "";
|
|
5
|
+
export interface Page extends WebsiteContent {
|
|
6
|
+
id?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
content?: any;
|
|
9
|
+
/**
|
|
10
|
+
* 备注
|
|
11
|
+
*/
|
|
12
|
+
remark?: string;
|
|
13
|
+
langAbbr?: string;
|
|
14
|
+
slug?: Slug;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { WebsiteContentBoolExp } from './WebsiteContentBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { SlugBoolExp } from './SlugBoolExp';
|
|
5
|
+
export interface PageBoolExp extends WebsiteContentBoolExp {
|
|
6
|
+
_and?: PageBoolExp[];
|
|
7
|
+
_or?: PageBoolExp[];
|
|
8
|
+
_not?: PageBoolExp;
|
|
9
|
+
id?: IdComparisonExp;
|
|
10
|
+
title?: StringComparisonExp;
|
|
11
|
+
content?: unknown;
|
|
12
|
+
remark?: StringComparisonExp;
|
|
13
|
+
langAbbr?: StringComparisonExp;
|
|
14
|
+
slug?: SlugBoolExp;
|
|
15
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { WebsiteContentDistinctExp } from './WebsiteContentDistinctExp';
|
|
2
|
+
export declare enum PageDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
title = "title",
|
|
5
|
+
content = "content",
|
|
6
|
+
/**
|
|
7
|
+
* 备注
|
|
8
|
+
*/
|
|
9
|
+
remark = "remark",
|
|
10
|
+
langAbbr = "langAbbr",
|
|
11
|
+
extends = "extends",
|
|
12
|
+
websiteId = "websiteId",
|
|
13
|
+
/**
|
|
14
|
+
* 创建时间
|
|
15
|
+
*/
|
|
16
|
+
createdAt = "createdAt",
|
|
17
|
+
/**
|
|
18
|
+
* 更新时间
|
|
19
|
+
*/
|
|
20
|
+
updatedAt = "updatedAt",
|
|
21
|
+
seoTitle = "seoTitle",
|
|
22
|
+
seoKeywords = "seoKeywords",
|
|
23
|
+
seoDescription = "seoDescription",
|
|
24
|
+
ogTitle = "ogTitle",
|
|
25
|
+
ogDescription = "ogDescription",
|
|
26
|
+
ogImageUrl = "ogImageUrl",
|
|
27
|
+
ogUrl = "ogUrl",
|
|
28
|
+
ogSiteName = "ogSiteName",
|
|
29
|
+
ogType = "ogType",
|
|
30
|
+
lang = "lang"
|
|
31
|
+
}
|
|
32
|
+
export type PageDistinctExp = PageDistinctEnum | WebsiteContentDistinctExp;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Page } from './Page';
|
|
2
|
+
import { SlugInput } from './SlugInput';
|
|
3
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
4
|
+
import { WebsiteContent } from './WebsiteContent';
|
|
5
|
+
export interface PageInput extends WebsiteContent {
|
|
6
|
+
id?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
content?: any;
|
|
9
|
+
/**
|
|
10
|
+
* 备注
|
|
11
|
+
*/
|
|
12
|
+
remark?: string;
|
|
13
|
+
langAbbr?: string;
|
|
14
|
+
slug?: SetHasOne<SlugInput>;
|
|
15
|
+
}
|
|
16
|
+
export declare const pageToInputCascade: (entity: Page) => PageInput;
|
|
17
|
+
export declare const pageToInput: (entity: Page) => PageInput;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { WebsiteContentOrderBy } from './WebsiteContentOrderBy';
|
|
3
|
+
export interface PageOrderBy extends WebsiteContentOrderBy {
|
|
4
|
+
id?: OrderBy;
|
|
5
|
+
title?: OrderBy;
|
|
6
|
+
content?: OrderBy;
|
|
7
|
+
/**
|
|
8
|
+
* 备注
|
|
9
|
+
*/
|
|
10
|
+
remark?: OrderBy;
|
|
11
|
+
langAbbr?: OrderBy;
|
|
12
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface Person {
|
|
2
|
+
id?: string;
|
|
3
|
+
/**
|
|
4
|
+
* 邮箱
|
|
5
|
+
*/
|
|
6
|
+
email?: string;
|
|
7
|
+
/**
|
|
8
|
+
* 电话
|
|
9
|
+
*/
|
|
10
|
+
tel?: string;
|
|
11
|
+
/**
|
|
12
|
+
* 电话2
|
|
13
|
+
*/
|
|
14
|
+
tel2?: string;
|
|
15
|
+
name?: string;
|
|
16
|
+
mobile?: string;
|
|
17
|
+
whatsApp?: string;
|
|
18
|
+
linkedIn?: string;
|
|
19
|
+
twitter?: string;
|
|
20
|
+
facebook?: string;
|
|
21
|
+
instagram?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 简介
|
|
24
|
+
*/
|
|
25
|
+
summary?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
export interface PersonBoolExp {
|
|
4
|
+
_and?: PersonBoolExp[];
|
|
5
|
+
_or?: PersonBoolExp[];
|
|
6
|
+
_not?: PersonBoolExp;
|
|
7
|
+
id?: IdComparisonExp;
|
|
8
|
+
email?: StringComparisonExp;
|
|
9
|
+
tel?: StringComparisonExp;
|
|
10
|
+
tel2?: StringComparisonExp;
|
|
11
|
+
name?: StringComparisonExp;
|
|
12
|
+
mobile?: StringComparisonExp;
|
|
13
|
+
whatsApp?: StringComparisonExp;
|
|
14
|
+
linkedIn?: StringComparisonExp;
|
|
15
|
+
twitter?: StringComparisonExp;
|
|
16
|
+
facebook?: StringComparisonExp;
|
|
17
|
+
instagram?: StringComparisonExp;
|
|
18
|
+
summary?: StringComparisonExp;
|
|
19
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare enum PersonDistinctEnum {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 邮箱
|
|
5
|
+
*/
|
|
6
|
+
email = "email",
|
|
7
|
+
/**
|
|
8
|
+
* 电话
|
|
9
|
+
*/
|
|
10
|
+
tel = "tel",
|
|
11
|
+
/**
|
|
12
|
+
* 电话2
|
|
13
|
+
*/
|
|
14
|
+
tel2 = "tel2",
|
|
15
|
+
name = "name",
|
|
16
|
+
mobile = "mobile",
|
|
17
|
+
whatsApp = "whatsApp",
|
|
18
|
+
linkedIn = "linkedIn",
|
|
19
|
+
twitter = "twitter",
|
|
20
|
+
facebook = "facebook",
|
|
21
|
+
instagram = "instagram",
|
|
22
|
+
/**
|
|
23
|
+
* 简介
|
|
24
|
+
*/
|
|
25
|
+
summary = "summary"
|
|
26
|
+
}
|
|
27
|
+
export type PersonDistinctExp = PersonDistinctEnum;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OrderBy } from './OrderBy';
|
|
2
|
+
export interface PersonOrderBy {
|
|
3
|
+
id?: OrderBy;
|
|
4
|
+
/**
|
|
5
|
+
* 邮箱
|
|
6
|
+
*/
|
|
7
|
+
email?: OrderBy;
|
|
8
|
+
/**
|
|
9
|
+
* 电话
|
|
10
|
+
*/
|
|
11
|
+
tel?: OrderBy;
|
|
12
|
+
/**
|
|
13
|
+
* 电话2
|
|
14
|
+
*/
|
|
15
|
+
tel2?: OrderBy;
|
|
16
|
+
name?: OrderBy;
|
|
17
|
+
mobile?: OrderBy;
|
|
18
|
+
whatsApp?: OrderBy;
|
|
19
|
+
linkedIn?: OrderBy;
|
|
20
|
+
twitter?: OrderBy;
|
|
21
|
+
facebook?: OrderBy;
|
|
22
|
+
instagram?: OrderBy;
|
|
23
|
+
/**
|
|
24
|
+
* 简介
|
|
25
|
+
*/
|
|
26
|
+
summary?: OrderBy;
|
|
27
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Slug } from './Slug';
|
|
2
|
+
import { Tag } from './Tag';
|
|
3
|
+
import { User } from './User';
|
|
4
|
+
import { Media } from './Media';
|
|
5
|
+
import { PostCategory } from './PostCategory';
|
|
6
|
+
import { Aggregate } from './Aggregate';
|
|
7
|
+
import { Publishable } from './Publishable';
|
|
8
|
+
export declare const PostEntityName = "Post";
|
|
9
|
+
export declare const PostEntityLabel = "\u6587\u7AE0";
|
|
10
|
+
/**
|
|
11
|
+
* 文章
|
|
12
|
+
*
|
|
13
|
+
*/
|
|
14
|
+
export interface Post extends Publishable {
|
|
15
|
+
id?: string;
|
|
16
|
+
seqValue?: number;
|
|
17
|
+
/**
|
|
18
|
+
* 置顶
|
|
19
|
+
*/
|
|
20
|
+
pinToTop?: boolean;
|
|
21
|
+
authorEmail?: string;
|
|
22
|
+
summary?: string;
|
|
23
|
+
slug?: Slug;
|
|
24
|
+
tags?: Tag[];
|
|
25
|
+
author?: User;
|
|
26
|
+
cover?: Media;
|
|
27
|
+
category?: PostCategory;
|
|
28
|
+
tagsAggregate?: Aggregate;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PublishableBoolExp } from './PublishableBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
4
|
+
import { BooleanComparisonExp } from './BooleanComparisonExp';
|
|
5
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
6
|
+
import { SlugBoolExp } from './SlugBoolExp';
|
|
7
|
+
import { TagBoolExp } from './TagBoolExp';
|
|
8
|
+
import { UserBoolExp } from './UserBoolExp';
|
|
9
|
+
import { MediaBoolExp } from './MediaBoolExp';
|
|
10
|
+
import { PostCategoryBoolExp } from './PostCategoryBoolExp';
|
|
11
|
+
/**
|
|
12
|
+
* 文章
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
export interface PostBoolExp extends PublishableBoolExp {
|
|
16
|
+
_and?: PostBoolExp[];
|
|
17
|
+
_or?: PostBoolExp[];
|
|
18
|
+
_not?: PostBoolExp;
|
|
19
|
+
id?: IdComparisonExp;
|
|
20
|
+
seqValue?: NumberComparisonExp;
|
|
21
|
+
pinToTop?: BooleanComparisonExp;
|
|
22
|
+
authorEmail?: StringComparisonExp;
|
|
23
|
+
summary?: StringComparisonExp;
|
|
24
|
+
slug?: SlugBoolExp;
|
|
25
|
+
tags?: TagBoolExp;
|
|
26
|
+
author?: UserBoolExp;
|
|
27
|
+
cover?: MediaBoolExp;
|
|
28
|
+
category?: PostCategoryBoolExp;
|
|
29
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Post } from './Post';
|
|
2
|
+
import { Aggregate } from './Aggregate';
|
|
3
|
+
import { WebsitePart } from './WebsitePart';
|
|
4
|
+
export declare const PostCategoryEntityName = "PostCategory";
|
|
5
|
+
export declare const PostCategoryEntityLabel = "\u6587\u7AE0\u5206\u7C7B";
|
|
6
|
+
/**
|
|
7
|
+
* 文章分类
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface PostCategory extends WebsitePart {
|
|
11
|
+
id?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
seqValue?: number;
|
|
14
|
+
children?: PostCategory[];
|
|
15
|
+
posts?: Post[];
|
|
16
|
+
parent?: PostCategory;
|
|
17
|
+
childrenAggregate?: Aggregate;
|
|
18
|
+
postsAggregate?: Aggregate;
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
5
|
+
import { PostBoolExp } from './PostBoolExp';
|
|
6
|
+
/**
|
|
7
|
+
* 文章分类
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface PostCategoryBoolExp extends WebsitePartBoolExp {
|
|
11
|
+
_and?: PostCategoryBoolExp[];
|
|
12
|
+
_or?: PostCategoryBoolExp[];
|
|
13
|
+
_not?: PostCategoryBoolExp;
|
|
14
|
+
id?: IdComparisonExp;
|
|
15
|
+
name?: StringComparisonExp;
|
|
16
|
+
seqValue?: NumberComparisonExp;
|
|
17
|
+
children?: PostCategoryBoolExp;
|
|
18
|
+
posts?: PostBoolExp;
|
|
19
|
+
parent?: PostCategoryBoolExp;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum PostCategoryDistinctEnum {
|
|
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 PostCategoryDistinctExp = PostCategoryDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { PostCategory } from './PostCategory';
|
|
2
|
+
import { PostInput } from './PostInput';
|
|
3
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
4
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
5
|
+
import { WebsitePart } from './WebsitePart';
|
|
6
|
+
/**
|
|
7
|
+
* 文章分类
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface PostCategoryInput extends WebsitePart {
|
|
11
|
+
id?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
seqValue?: number;
|
|
14
|
+
children?: SetHasMany<PostCategoryInput>;
|
|
15
|
+
posts?: SetHasMany<PostInput>;
|
|
16
|
+
parent?: SetHasOne<PostCategoryInput>;
|
|
17
|
+
}
|
|
18
|
+
export declare const postCategoryToInputCascade: (entity: PostCategory) => PostCategoryInput;
|
|
19
|
+
export declare const postCategoryToInput: (entity: PostCategory) => PostCategoryInput;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { WebsitePartOrderBy } from './WebsitePartOrderBy';
|
|
3
|
+
/**
|
|
4
|
+
* 文章分类
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export interface PostCategoryOrderBy extends WebsitePartOrderBy {
|
|
8
|
+
id?: OrderBy;
|
|
9
|
+
name?: OrderBy;
|
|
10
|
+
seqValue?: OrderBy;
|
|
11
|
+
}
|