@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,44 @@
|
|
|
1
|
+
import { PublishableDistinctExp } from './PublishableDistinctExp';
|
|
2
|
+
export declare enum PostDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
seqValue = "seqValue",
|
|
5
|
+
/**
|
|
6
|
+
* 置顶
|
|
7
|
+
*/
|
|
8
|
+
pinToTop = "pinToTop",
|
|
9
|
+
authorEmail = "authorEmail",
|
|
10
|
+
summary = "summary",
|
|
11
|
+
/**
|
|
12
|
+
* 发布的内容
|
|
13
|
+
*/
|
|
14
|
+
publishedContent = "publishedContent",
|
|
15
|
+
publishedAt = "publishedAt",
|
|
16
|
+
status = "status",
|
|
17
|
+
title = "title",
|
|
18
|
+
content = "content",
|
|
19
|
+
extends = "extends",
|
|
20
|
+
websiteId = "websiteId",
|
|
21
|
+
/**
|
|
22
|
+
* 创建时间
|
|
23
|
+
*/
|
|
24
|
+
createdAt = "createdAt",
|
|
25
|
+
/**
|
|
26
|
+
* 更新时间
|
|
27
|
+
*/
|
|
28
|
+
updatedAt = "updatedAt",
|
|
29
|
+
/**
|
|
30
|
+
* 备注
|
|
31
|
+
*/
|
|
32
|
+
remark = "remark",
|
|
33
|
+
seoTitle = "seoTitle",
|
|
34
|
+
seoKeywords = "seoKeywords",
|
|
35
|
+
seoDescription = "seoDescription",
|
|
36
|
+
ogTitle = "ogTitle",
|
|
37
|
+
ogDescription = "ogDescription",
|
|
38
|
+
ogImageUrl = "ogImageUrl",
|
|
39
|
+
ogUrl = "ogUrl",
|
|
40
|
+
ogSiteName = "ogSiteName",
|
|
41
|
+
ogType = "ogType",
|
|
42
|
+
lang = "lang"
|
|
43
|
+
}
|
|
44
|
+
export type PostDistinctExp = PostDistinctEnum | PublishableDistinctExp;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Post } from './Post';
|
|
2
|
+
import { SlugInput } from './SlugInput';
|
|
3
|
+
import { TagInput } from './TagInput';
|
|
4
|
+
import { UserInput } from './UserInput';
|
|
5
|
+
import { MediaInput } from './MediaInput';
|
|
6
|
+
import { PostCategoryInput } from './PostCategoryInput';
|
|
7
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
8
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
9
|
+
import { Publishable } from './Publishable';
|
|
10
|
+
/**
|
|
11
|
+
* 文章
|
|
12
|
+
*
|
|
13
|
+
*/
|
|
14
|
+
export interface PostInput extends Publishable {
|
|
15
|
+
id?: string;
|
|
16
|
+
seqValue?: number;
|
|
17
|
+
/**
|
|
18
|
+
* 置顶
|
|
19
|
+
*/
|
|
20
|
+
pinToTop?: boolean;
|
|
21
|
+
authorEmail?: string;
|
|
22
|
+
summary?: string;
|
|
23
|
+
slug?: SetHasOne<SlugInput>;
|
|
24
|
+
tags?: SetHasMany<TagInput>;
|
|
25
|
+
author?: SetHasOne<UserInput>;
|
|
26
|
+
cover?: SetHasOne<MediaInput>;
|
|
27
|
+
category?: SetHasOne<PostCategoryInput>;
|
|
28
|
+
}
|
|
29
|
+
export declare const postToInputCascade: (entity: Post) => PostInput;
|
|
30
|
+
export declare const postToInput: (entity: Post) => PostInput;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { PublishableOrderBy } from './PublishableOrderBy';
|
|
3
|
+
/**
|
|
4
|
+
* 文章
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export interface PostOrderBy extends PublishableOrderBy {
|
|
8
|
+
id?: OrderBy;
|
|
9
|
+
seqValue?: OrderBy;
|
|
10
|
+
/**
|
|
11
|
+
* 置顶
|
|
12
|
+
*/
|
|
13
|
+
pinToTop?: OrderBy;
|
|
14
|
+
authorEmail?: OrderBy;
|
|
15
|
+
summary?: OrderBy;
|
|
16
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ProductCategory } from './ProductCategory';
|
|
2
|
+
import { Media } from './Media';
|
|
3
|
+
import { Slug } from './Slug';
|
|
4
|
+
import { Tag } from './Tag';
|
|
5
|
+
import { User } from './User';
|
|
6
|
+
import { MediaAddon } from './MediaAddon';
|
|
7
|
+
import { Aggregate } from './Aggregate';
|
|
8
|
+
import { Publishable } from './Publishable';
|
|
9
|
+
export declare const ProductEntityName = "Product";
|
|
10
|
+
export declare const ProductEntityLabel = "";
|
|
11
|
+
export interface Product extends Publishable {
|
|
12
|
+
id?: string;
|
|
13
|
+
published?: boolean;
|
|
14
|
+
summary?: string;
|
|
15
|
+
category?: ProductCategory;
|
|
16
|
+
medias?: (Media & MediaAddon)[];
|
|
17
|
+
slug?: Slug;
|
|
18
|
+
tags?: Tag[];
|
|
19
|
+
creator?: User;
|
|
20
|
+
mediasAggregate?: Aggregate;
|
|
21
|
+
tagsAggregate?: Aggregate;
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { PublishableBoolExp } from './PublishableBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { BooleanComparisonExp } from './BooleanComparisonExp';
|
|
4
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
5
|
+
import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
|
|
6
|
+
import { MediaBoolExp } from './MediaBoolExp';
|
|
7
|
+
import { SlugBoolExp } from './SlugBoolExp';
|
|
8
|
+
import { TagBoolExp } from './TagBoolExp';
|
|
9
|
+
import { UserBoolExp } from './UserBoolExp';
|
|
10
|
+
export interface ProductBoolExp extends PublishableBoolExp {
|
|
11
|
+
_and?: ProductBoolExp[];
|
|
12
|
+
_or?: ProductBoolExp[];
|
|
13
|
+
_not?: ProductBoolExp;
|
|
14
|
+
id?: IdComparisonExp;
|
|
15
|
+
published?: BooleanComparisonExp;
|
|
16
|
+
summary?: StringComparisonExp;
|
|
17
|
+
category?: ProductCategoryBoolExp;
|
|
18
|
+
medias?: MediaBoolExp;
|
|
19
|
+
slug?: SlugBoolExp;
|
|
20
|
+
tags?: TagBoolExp;
|
|
21
|
+
creator?: UserBoolExp;
|
|
22
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Product } from './Product';
|
|
2
|
+
import { Aggregate } from './Aggregate';
|
|
3
|
+
import { WebsitePart } from './WebsitePart';
|
|
4
|
+
export declare const ProductCategoryEntityName = "ProductCategory";
|
|
5
|
+
export declare const ProductCategoryEntityLabel = "";
|
|
6
|
+
export interface ProductCategory extends WebsitePart {
|
|
7
|
+
id?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
seqValue?: number;
|
|
10
|
+
children?: ProductCategory[];
|
|
11
|
+
parent?: ProductCategory;
|
|
12
|
+
products?: Product[];
|
|
13
|
+
childrenAggregate?: Aggregate;
|
|
14
|
+
productsAggregate?: Aggregate;
|
|
15
|
+
}
|
|
@@ -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 { ProductBoolExp } from './ProductBoolExp';
|
|
6
|
+
export interface ProductCategoryBoolExp extends WebsitePartBoolExp {
|
|
7
|
+
_and?: ProductCategoryBoolExp[];
|
|
8
|
+
_or?: ProductCategoryBoolExp[];
|
|
9
|
+
_not?: ProductCategoryBoolExp;
|
|
10
|
+
id?: IdComparisonExp;
|
|
11
|
+
name?: StringComparisonExp;
|
|
12
|
+
seqValue?: NumberComparisonExp;
|
|
13
|
+
children?: ProductCategoryBoolExp;
|
|
14
|
+
parent?: ProductCategoryBoolExp;
|
|
15
|
+
products?: ProductBoolExp;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum ProductCategoryDistinctEnum {
|
|
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 ProductCategoryDistinctExp = ProductCategoryDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ProductCategory } from './ProductCategory';
|
|
2
|
+
import { ProductInput } from './ProductInput';
|
|
3
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
4
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
5
|
+
import { WebsitePart } from './WebsitePart';
|
|
6
|
+
export interface ProductCategoryInput extends WebsitePart {
|
|
7
|
+
id?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
seqValue?: number;
|
|
10
|
+
children?: SetHasMany<ProductCategoryInput>;
|
|
11
|
+
parent?: SetHasOne<ProductCategoryInput>;
|
|
12
|
+
products?: SetHasMany<ProductInput>;
|
|
13
|
+
}
|
|
14
|
+
export declare const productCategoryToInputCascade: (entity: ProductCategory) => ProductCategoryInput;
|
|
15
|
+
export declare const productCategoryToInput: (entity: ProductCategory) => ProductCategoryInput;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { PublishableDistinctExp } from './PublishableDistinctExp';
|
|
2
|
+
export declare enum ProductDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
published = "published",
|
|
5
|
+
summary = "summary",
|
|
6
|
+
/**
|
|
7
|
+
* 发布的内容
|
|
8
|
+
*/
|
|
9
|
+
publishedContent = "publishedContent",
|
|
10
|
+
publishedAt = "publishedAt",
|
|
11
|
+
status = "status",
|
|
12
|
+
title = "title",
|
|
13
|
+
content = "content",
|
|
14
|
+
extends = "extends",
|
|
15
|
+
websiteId = "websiteId",
|
|
16
|
+
/**
|
|
17
|
+
* 创建时间
|
|
18
|
+
*/
|
|
19
|
+
createdAt = "createdAt",
|
|
20
|
+
/**
|
|
21
|
+
* 更新时间
|
|
22
|
+
*/
|
|
23
|
+
updatedAt = "updatedAt",
|
|
24
|
+
/**
|
|
25
|
+
* 备注
|
|
26
|
+
*/
|
|
27
|
+
remark = "remark",
|
|
28
|
+
seoTitle = "seoTitle",
|
|
29
|
+
seoKeywords = "seoKeywords",
|
|
30
|
+
seoDescription = "seoDescription",
|
|
31
|
+
ogTitle = "ogTitle",
|
|
32
|
+
ogDescription = "ogDescription",
|
|
33
|
+
ogImageUrl = "ogImageUrl",
|
|
34
|
+
ogUrl = "ogUrl",
|
|
35
|
+
ogSiteName = "ogSiteName",
|
|
36
|
+
ogType = "ogType",
|
|
37
|
+
lang = "lang"
|
|
38
|
+
}
|
|
39
|
+
export type ProductDistinctExp = ProductDistinctEnum | PublishableDistinctExp;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Product } from './Product';
|
|
2
|
+
import { ProductCategoryInput } from './ProductCategoryInput';
|
|
3
|
+
import { MediaInput } from './MediaInput';
|
|
4
|
+
import { SlugInput } from './SlugInput';
|
|
5
|
+
import { TagInput } from './TagInput';
|
|
6
|
+
import { UserInput } from './UserInput';
|
|
7
|
+
import { MediaAddon } from './MediaAddon';
|
|
8
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
9
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
10
|
+
import { Publishable } from './Publishable';
|
|
11
|
+
export interface ProductInput extends Publishable {
|
|
12
|
+
id?: string;
|
|
13
|
+
published?: boolean;
|
|
14
|
+
summary?: string;
|
|
15
|
+
category?: SetHasOne<ProductCategoryInput>;
|
|
16
|
+
medias?: SetHasMany<MediaInput & MediaAddon>;
|
|
17
|
+
slug?: SetHasOne<SlugInput>;
|
|
18
|
+
tags?: SetHasMany<TagInput>;
|
|
19
|
+
creator?: SetHasOne<UserInput>;
|
|
20
|
+
}
|
|
21
|
+
export declare const productToInputCascade: (entity: Product) => ProductInput;
|
|
22
|
+
export declare const productToInput: (entity: Product) => ProductInput;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PublishableStatus } from './PublishableStatus';
|
|
2
|
+
import { WebsiteContent } from './WebsiteContent';
|
|
3
|
+
export interface Publishable extends WebsiteContent {
|
|
4
|
+
id?: string;
|
|
5
|
+
/**
|
|
6
|
+
* 发布的内容
|
|
7
|
+
*/
|
|
8
|
+
publishedContent?: any;
|
|
9
|
+
publishedAt?: Date;
|
|
10
|
+
status?: PublishableStatus;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PublishableStatus } from './PublishableStatus';
|
|
2
|
+
import { WebsiteContentBoolExp } from './WebsiteContentBoolExp';
|
|
3
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
4
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
5
|
+
import { EnumComparisonExp } from './EnumComparisonExp';
|
|
6
|
+
export interface PublishableBoolExp extends WebsiteContentBoolExp {
|
|
7
|
+
_and?: PublishableBoolExp[];
|
|
8
|
+
_or?: PublishableBoolExp[];
|
|
9
|
+
_not?: PublishableBoolExp;
|
|
10
|
+
id?: IdComparisonExp;
|
|
11
|
+
publishedContent?: unknown;
|
|
12
|
+
publishedAt?: DateTimeComparisonExp;
|
|
13
|
+
status?: EnumComparisonExp<PublishableStatus>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { WebsiteContentDistinctExp } from './WebsiteContentDistinctExp';
|
|
2
|
+
export declare enum PublishableDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
/**
|
|
5
|
+
* 发布的内容
|
|
6
|
+
*/
|
|
7
|
+
publishedContent = "publishedContent",
|
|
8
|
+
publishedAt = "publishedAt",
|
|
9
|
+
status = "status",
|
|
10
|
+
title = "title",
|
|
11
|
+
content = "content",
|
|
12
|
+
extends = "extends",
|
|
13
|
+
websiteId = "websiteId",
|
|
14
|
+
/**
|
|
15
|
+
* 创建时间
|
|
16
|
+
*/
|
|
17
|
+
createdAt = "createdAt",
|
|
18
|
+
/**
|
|
19
|
+
* 更新时间
|
|
20
|
+
*/
|
|
21
|
+
updatedAt = "updatedAt",
|
|
22
|
+
/**
|
|
23
|
+
* 备注
|
|
24
|
+
*/
|
|
25
|
+
remark = "remark",
|
|
26
|
+
seoTitle = "seoTitle",
|
|
27
|
+
seoKeywords = "seoKeywords",
|
|
28
|
+
seoDescription = "seoDescription",
|
|
29
|
+
ogTitle = "ogTitle",
|
|
30
|
+
ogDescription = "ogDescription",
|
|
31
|
+
ogImageUrl = "ogImageUrl",
|
|
32
|
+
ogUrl = "ogUrl",
|
|
33
|
+
ogSiteName = "ogSiteName",
|
|
34
|
+
ogType = "ogType",
|
|
35
|
+
lang = "lang"
|
|
36
|
+
}
|
|
37
|
+
export type PublishableDistinctExp = PublishableDistinctEnum | WebsiteContentDistinctExp;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OrderBy } from './OrderBy';
|
|
2
|
+
import { WebsiteContentOrderBy } from './WebsiteContentOrderBy';
|
|
3
|
+
export interface PublishableOrderBy extends WebsiteContentOrderBy {
|
|
4
|
+
id?: OrderBy;
|
|
5
|
+
/**
|
|
6
|
+
* 发布的内容
|
|
7
|
+
*/
|
|
8
|
+
publishedContent?: OrderBy;
|
|
9
|
+
publishedAt?: OrderBy;
|
|
10
|
+
status?: OrderBy;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { User } from './User';
|
|
2
|
+
import { Aggregate } from './Aggregate';
|
|
3
|
+
export declare const RoleEntityName = "Role";
|
|
4
|
+
export declare const RoleEntityLabel = "";
|
|
5
|
+
export interface Role {
|
|
6
|
+
id?: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
createdAt?: Date;
|
|
10
|
+
updatedAt?: Date;
|
|
11
|
+
users?: User[];
|
|
12
|
+
usersAggregate?: Aggregate;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
4
|
+
import { UserBoolExp } from './UserBoolExp';
|
|
5
|
+
export interface RoleBoolExp {
|
|
6
|
+
_and?: RoleBoolExp[];
|
|
7
|
+
_or?: RoleBoolExp[];
|
|
8
|
+
_not?: RoleBoolExp;
|
|
9
|
+
id?: IdComparisonExp;
|
|
10
|
+
name?: StringComparisonExp;
|
|
11
|
+
description?: StringComparisonExp;
|
|
12
|
+
createdAt?: DateTimeComparisonExp;
|
|
13
|
+
updatedAt?: DateTimeComparisonExp;
|
|
14
|
+
users?: UserBoolExp;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Role } from './Role';
|
|
2
|
+
import { UserInput } from './UserInput';
|
|
3
|
+
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
4
|
+
export interface RoleInput {
|
|
5
|
+
id?: string;
|
|
6
|
+
name?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
createdAt?: Date;
|
|
9
|
+
updatedAt?: Date;
|
|
10
|
+
users?: SetHasMany<UserInput>;
|
|
11
|
+
}
|
|
12
|
+
export declare const roleToInputCascade: (entity: Role) => RoleInput;
|
|
13
|
+
export declare const roleToInput: (entity: Role) => RoleInput;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
export interface SeoMetaBoolExp {
|
|
4
|
+
_and?: SeoMetaBoolExp[];
|
|
5
|
+
_or?: SeoMetaBoolExp[];
|
|
6
|
+
_not?: SeoMetaBoolExp;
|
|
7
|
+
id?: IdComparisonExp;
|
|
8
|
+
seoTitle?: StringComparisonExp;
|
|
9
|
+
seoKeywords?: StringComparisonExp;
|
|
10
|
+
seoDescription?: StringComparisonExp;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Post } from './Post';
|
|
2
|
+
import { Product } from './Product';
|
|
3
|
+
import { Page } from './Page';
|
|
4
|
+
import { WebsitePart } from './WebsitePart';
|
|
5
|
+
export declare const SlugEntityName = "Slug";
|
|
6
|
+
export declare const SlugEntityLabel = "";
|
|
7
|
+
export interface Slug extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
uniqueName?: string;
|
|
10
|
+
post?: Post;
|
|
11
|
+
product?: Product;
|
|
12
|
+
page?: Page;
|
|
13
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { PostBoolExp } from './PostBoolExp';
|
|
5
|
+
import { ProductBoolExp } from './ProductBoolExp';
|
|
6
|
+
import { PageBoolExp } from './PageBoolExp';
|
|
7
|
+
export interface SlugBoolExp extends WebsitePartBoolExp {
|
|
8
|
+
_and?: SlugBoolExp[];
|
|
9
|
+
_or?: SlugBoolExp[];
|
|
10
|
+
_not?: SlugBoolExp;
|
|
11
|
+
id?: IdComparisonExp;
|
|
12
|
+
uniqueName?: StringComparisonExp;
|
|
13
|
+
post?: PostBoolExp;
|
|
14
|
+
product?: ProductBoolExp;
|
|
15
|
+
page?: PageBoolExp;
|
|
16
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
+
export declare enum SlugDistinctEnum {
|
|
3
|
+
id = "id",
|
|
4
|
+
uniqueName = "uniqueName",
|
|
5
|
+
websiteId = "websiteId",
|
|
6
|
+
/**
|
|
7
|
+
* 创建时间
|
|
8
|
+
*/
|
|
9
|
+
createdAt = "createdAt",
|
|
10
|
+
/**
|
|
11
|
+
* 更新时间
|
|
12
|
+
*/
|
|
13
|
+
updatedAt = "updatedAt",
|
|
14
|
+
/**
|
|
15
|
+
* 备注
|
|
16
|
+
*/
|
|
17
|
+
remark = "remark"
|
|
18
|
+
}
|
|
19
|
+
export type SlugDistinctExp = SlugDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Slug } from './Slug';
|
|
2
|
+
import { PostInput } from './PostInput';
|
|
3
|
+
import { ProductInput } from './ProductInput';
|
|
4
|
+
import { PageInput } from './PageInput';
|
|
5
|
+
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
6
|
+
import { WebsitePart } from './WebsitePart';
|
|
7
|
+
export interface SlugInput extends WebsitePart {
|
|
8
|
+
id?: string;
|
|
9
|
+
uniqueName?: string;
|
|
10
|
+
post?: SetHasOne<PostInput>;
|
|
11
|
+
product?: SetHasOne<ProductInput>;
|
|
12
|
+
page?: SetHasOne<PageInput>;
|
|
13
|
+
}
|
|
14
|
+
export declare const slugToInputCascade: (entity: Slug) => SlugInput;
|
|
15
|
+
export declare const slugToInput: (entity: Slug) => SlugInput;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface StringComparisonExp {
|
|
2
|
+
_notRegexp?: string;
|
|
3
|
+
_lt?: string;
|
|
4
|
+
_notEq?: string;
|
|
5
|
+
_regexp?: string;
|
|
6
|
+
_eq?: string;
|
|
7
|
+
_iLike?: string;
|
|
8
|
+
_gte?: string;
|
|
9
|
+
_notLike?: string;
|
|
10
|
+
_notILike?: string[];
|
|
11
|
+
_in?: string[];
|
|
12
|
+
_lte?: string;
|
|
13
|
+
_gt?: string;
|
|
14
|
+
_like?: string;
|
|
15
|
+
_isNull?: boolean;
|
|
16
|
+
_isNotNull?: boolean;
|
|
17
|
+
_notIn?: string[];
|
|
18
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Post } from './Post';
|
|
2
|
+
import { Product } from './Product';
|
|
3
|
+
import { Aggregate } from './Aggregate';
|
|
4
|
+
import { WebsitePart } from './WebsitePart';
|
|
5
|
+
export declare const TagEntityName = "Tag";
|
|
6
|
+
export declare const TagEntityLabel = "\u6587\u7AE0\u6807\u7B7E";
|
|
7
|
+
/**
|
|
8
|
+
* 文章标签
|
|
9
|
+
*
|
|
10
|
+
*/
|
|
11
|
+
export interface Tag extends WebsitePart {
|
|
12
|
+
id?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 名称
|
|
15
|
+
*/
|
|
16
|
+
name?: string;
|
|
17
|
+
color?: string;
|
|
18
|
+
posts?: Post[];
|
|
19
|
+
products?: Product[];
|
|
20
|
+
postsAggregate?: Aggregate;
|
|
21
|
+
productsAggregate?: Aggregate;
|
|
22
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
+
import { PostBoolExp } from './PostBoolExp';
|
|
5
|
+
import { ProductBoolExp } from './ProductBoolExp';
|
|
6
|
+
/**
|
|
7
|
+
* 文章标签
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export interface TagBoolExp extends WebsitePartBoolExp {
|
|
11
|
+
_and?: TagBoolExp[];
|
|
12
|
+
_or?: TagBoolExp[];
|
|
13
|
+
_not?: TagBoolExp;
|
|
14
|
+
id?: IdComparisonExp;
|
|
15
|
+
name?: StringComparisonExp;
|
|
16
|
+
color?: StringComparisonExp;
|
|
17
|
+
posts?: PostBoolExp;
|
|
18
|
+
products?: ProductBoolExp;
|
|
19
|
+
}
|