@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
|
+
export declare enum ThemeFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
name = "name",
|
|
4
|
+
styles = "styles",
|
|
5
|
+
settings = "settings",
|
|
6
|
+
websiteId = "websiteId",
|
|
7
|
+
/**
|
|
8
|
+
* 创建时间
|
|
9
|
+
*/
|
|
10
|
+
createdAt = "createdAt",
|
|
11
|
+
/**
|
|
12
|
+
* 更新时间
|
|
13
|
+
*/
|
|
14
|
+
updatedAt = "updatedAt",
|
|
15
|
+
/**
|
|
16
|
+
* 备注
|
|
17
|
+
*/
|
|
18
|
+
remark = "remark",
|
|
19
|
+
templates = "templates",
|
|
20
|
+
templatesAggregate = "templatesAggregate",
|
|
21
|
+
themlateCategories = "themlateCategories",
|
|
22
|
+
themlateCategoriesAggregate = "themlateCategoriesAggregate"
|
|
23
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export declare enum UserFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
loginName = "loginName",
|
|
4
|
+
name = "name",
|
|
5
|
+
mobileNumber = "mobileNumber",
|
|
6
|
+
isSupperAdmin = "isSupperAdmin",
|
|
7
|
+
password = "password",
|
|
8
|
+
createdAt = "createdAt",
|
|
9
|
+
updatedAt = "updatedAt",
|
|
10
|
+
/**
|
|
11
|
+
* 职位
|
|
12
|
+
*/
|
|
13
|
+
postion = "postion",
|
|
14
|
+
/**
|
|
15
|
+
* 自我介绍
|
|
16
|
+
*/
|
|
17
|
+
profile = "profile",
|
|
18
|
+
userType = "userType",
|
|
19
|
+
/**
|
|
20
|
+
* 邮箱
|
|
21
|
+
*/
|
|
22
|
+
email = "email",
|
|
23
|
+
/**
|
|
24
|
+
* 电话
|
|
25
|
+
*/
|
|
26
|
+
tel = "tel",
|
|
27
|
+
/**
|
|
28
|
+
* 电话2
|
|
29
|
+
*/
|
|
30
|
+
tel2 = "tel2",
|
|
31
|
+
mobile = "mobile",
|
|
32
|
+
whatsApp = "whatsApp",
|
|
33
|
+
linkedIn = "linkedIn",
|
|
34
|
+
twitter = "twitter",
|
|
35
|
+
facebook = "facebook",
|
|
36
|
+
instagram = "instagram",
|
|
37
|
+
/**
|
|
38
|
+
* 简介
|
|
39
|
+
*/
|
|
40
|
+
summary = "summary",
|
|
41
|
+
roles = "roles",
|
|
42
|
+
rolesAggregate = "rolesAggregate",
|
|
43
|
+
avatar = "avatar",
|
|
44
|
+
products = "products",
|
|
45
|
+
productsAggregate = "productsAggregate",
|
|
46
|
+
posts = "posts",
|
|
47
|
+
postsAggregate = "postsAggregate",
|
|
48
|
+
websites = "websites",
|
|
49
|
+
websitesAggregate = "websitesAggregate",
|
|
50
|
+
belongsTo = "belongsTo"
|
|
51
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare enum WebsiteContentFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
title = "title",
|
|
4
|
+
content = "content",
|
|
5
|
+
extends = "extends",
|
|
6
|
+
websiteId = "websiteId",
|
|
7
|
+
/**
|
|
8
|
+
* 创建时间
|
|
9
|
+
*/
|
|
10
|
+
createdAt = "createdAt",
|
|
11
|
+
/**
|
|
12
|
+
* 更新时间
|
|
13
|
+
*/
|
|
14
|
+
updatedAt = "updatedAt",
|
|
15
|
+
/**
|
|
16
|
+
* 备注
|
|
17
|
+
*/
|
|
18
|
+
remark = "remark",
|
|
19
|
+
seoTitle = "seoTitle",
|
|
20
|
+
seoKeywords = "seoKeywords",
|
|
21
|
+
seoDescription = "seoDescription",
|
|
22
|
+
ogTitle = "ogTitle",
|
|
23
|
+
ogDescription = "ogDescription",
|
|
24
|
+
ogImageUrl = "ogImageUrl",
|
|
25
|
+
ogUrl = "ogUrl",
|
|
26
|
+
ogSiteName = "ogSiteName",
|
|
27
|
+
ogType = "ogType",
|
|
28
|
+
lang = "lang"
|
|
29
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare enum WebsiteFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 站点名称
|
|
5
|
+
*/
|
|
6
|
+
name = "name",
|
|
7
|
+
/**
|
|
8
|
+
* 站点备注
|
|
9
|
+
*/
|
|
10
|
+
remark = "remark",
|
|
11
|
+
/**
|
|
12
|
+
* 创建者ID
|
|
13
|
+
*/
|
|
14
|
+
createdBy = "createdBy",
|
|
15
|
+
/**
|
|
16
|
+
* 创建时间
|
|
17
|
+
*/
|
|
18
|
+
createdAt = "createdAt",
|
|
19
|
+
/**
|
|
20
|
+
* 最近打开时间
|
|
21
|
+
*/
|
|
22
|
+
lastOpenTime = "lastOpenTime",
|
|
23
|
+
/**
|
|
24
|
+
* 更新时间
|
|
25
|
+
*/
|
|
26
|
+
updatedAt = "updatedAt",
|
|
27
|
+
/**
|
|
28
|
+
* 更新者ID
|
|
29
|
+
*/
|
|
30
|
+
updatedBy = "updatedBy",
|
|
31
|
+
websiteType = "websiteType",
|
|
32
|
+
selectedTheme = "selectedTheme",
|
|
33
|
+
homePage = "homePage",
|
|
34
|
+
owner = "owner",
|
|
35
|
+
users = "users",
|
|
36
|
+
usersAggregate = "usersAggregate"
|
|
37
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare enum WebsiteSettingsFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 邮件配置
|
|
5
|
+
*/
|
|
6
|
+
smtpConfig = "smtpConfig",
|
|
7
|
+
websiteId = "websiteId",
|
|
8
|
+
/**
|
|
9
|
+
* 创建时间
|
|
10
|
+
*/
|
|
11
|
+
createdAt = "createdAt",
|
|
12
|
+
/**
|
|
13
|
+
* 更新时间
|
|
14
|
+
*/
|
|
15
|
+
updatedAt = "updatedAt",
|
|
16
|
+
/**
|
|
17
|
+
* 备注
|
|
18
|
+
*/
|
|
19
|
+
remark = "remark"
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare enum WebsiteTypeFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 网站类型名称
|
|
5
|
+
*/
|
|
6
|
+
name = "name",
|
|
7
|
+
/**
|
|
8
|
+
* 显示名称
|
|
9
|
+
*/
|
|
10
|
+
displayName = "displayName",
|
|
11
|
+
pricePerMonth = "pricePerMonth",
|
|
12
|
+
pricePerYear = "pricePerYear",
|
|
13
|
+
/**
|
|
14
|
+
* 备注
|
|
15
|
+
*/
|
|
16
|
+
remark = "remark",
|
|
17
|
+
createdAt = "createdAt",
|
|
18
|
+
updatedAt = "updatedAt",
|
|
19
|
+
status = "status",
|
|
20
|
+
/**
|
|
21
|
+
* 等级
|
|
22
|
+
*/
|
|
23
|
+
level = "level",
|
|
24
|
+
websites = "websites",
|
|
25
|
+
websitesAggregate = "websitesAggregate"
|
|
26
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare enum WebsiteUserFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
/**
|
|
4
|
+
* 职位
|
|
5
|
+
*/
|
|
6
|
+
postion = "postion",
|
|
7
|
+
/**
|
|
8
|
+
* 自我介绍
|
|
9
|
+
*/
|
|
10
|
+
profile = "profile",
|
|
11
|
+
userType = "userType",
|
|
12
|
+
/**
|
|
13
|
+
* 邮箱
|
|
14
|
+
*/
|
|
15
|
+
email = "email",
|
|
16
|
+
/**
|
|
17
|
+
* 电话
|
|
18
|
+
*/
|
|
19
|
+
tel = "tel",
|
|
20
|
+
/**
|
|
21
|
+
* 电话2
|
|
22
|
+
*/
|
|
23
|
+
tel2 = "tel2",
|
|
24
|
+
name = "name",
|
|
25
|
+
mobile = "mobile",
|
|
26
|
+
whatsApp = "whatsApp",
|
|
27
|
+
linkedIn = "linkedIn",
|
|
28
|
+
twitter = "twitter",
|
|
29
|
+
facebook = "facebook",
|
|
30
|
+
instagram = "instagram",
|
|
31
|
+
/**
|
|
32
|
+
* 简介
|
|
33
|
+
*/
|
|
34
|
+
summary = "summary"
|
|
35
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from './UserFields';
|
|
2
|
+
export * from './RoleFields';
|
|
3
|
+
export * from './AbilityFields';
|
|
4
|
+
export * from './MediaFields';
|
|
5
|
+
export * from './WebsiteFields';
|
|
6
|
+
export * from './LangFields';
|
|
7
|
+
export * from './WebsiteTypeFields';
|
|
8
|
+
export * from './PageFields';
|
|
9
|
+
export * from './PostFields';
|
|
10
|
+
export * from './ProductFields';
|
|
11
|
+
export * from './SlugFields';
|
|
12
|
+
export * from './EnquiryFields';
|
|
13
|
+
export * from './WebsiteMetaFields';
|
|
14
|
+
export * from './WebsiteSettingsFields';
|
|
15
|
+
export * from './TemplateFields';
|
|
16
|
+
export * from './TemplateCategoryFields';
|
|
17
|
+
export * from './ThemeFields';
|
|
18
|
+
export * from './MediaFolderFields';
|
|
19
|
+
export * from './WebsitePartFields';
|
|
20
|
+
export * from './WebsiteContentFields';
|
|
21
|
+
export * from './PostCategoryFields';
|
|
22
|
+
export * from './TagFields';
|
|
23
|
+
export * from './SeoMetaFields';
|
|
24
|
+
export * from './OgMetaFields';
|
|
25
|
+
export * from './PublishableFields';
|
|
26
|
+
export * from './PersonFields';
|
|
27
|
+
export * from './CustomerFields';
|
|
28
|
+
export * from './BaseEntityFields';
|
|
29
|
+
export * from './MultiLangableFields';
|
|
30
|
+
export * from './WebsiteUserFields';
|
|
31
|
+
export * from './CustomizeMediaFields';
|
|
32
|
+
export * from './ProductCategoryFields';
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
export * from './useUserList';
|
|
2
|
+
export * from './useOneUser';
|
|
3
|
+
export * from './useUpsertOneUser';
|
|
4
|
+
export * from './useDeleteUserById';
|
|
5
|
+
export * from './useDeleteUser';
|
|
6
|
+
export * from './useRoleList';
|
|
7
|
+
export * from './useOneRole';
|
|
8
|
+
export * from './useUpsertOneRole';
|
|
9
|
+
export * from './useDeleteRoleById';
|
|
10
|
+
export * from './useDeleteRole';
|
|
11
|
+
export * from './useAbilityList';
|
|
12
|
+
export * from './useOneAbility';
|
|
13
|
+
export * from './useUpsertOneAbility';
|
|
14
|
+
export * from './useDeleteAbilityById';
|
|
15
|
+
export * from './useDeleteAbility';
|
|
16
|
+
export * from './useMediaList';
|
|
17
|
+
export * from './useOneMedia';
|
|
18
|
+
export * from './useUpsertOneMedia';
|
|
19
|
+
export * from './useDeleteMediaById';
|
|
20
|
+
export * from './useDeleteMedia';
|
|
21
|
+
export * from './useWebsiteList';
|
|
22
|
+
export * from './useOneWebsite';
|
|
23
|
+
export * from './useUpsertOneWebsite';
|
|
24
|
+
export * from './useDeleteWebsiteById';
|
|
25
|
+
export * from './useDeleteWebsite';
|
|
26
|
+
export * from './useLangList';
|
|
27
|
+
export * from './useOneLang';
|
|
28
|
+
export * from './useUpsertOneLang';
|
|
29
|
+
export * from './useDeleteLangById';
|
|
30
|
+
export * from './useDeleteLang';
|
|
31
|
+
export * from './useWebsiteTypeList';
|
|
32
|
+
export * from './useOneWebsiteType';
|
|
33
|
+
export * from './useUpsertOneWebsiteType';
|
|
34
|
+
export * from './useDeleteWebsiteTypeById';
|
|
35
|
+
export * from './useDeleteWebsiteType';
|
|
36
|
+
export * from './usePageList';
|
|
37
|
+
export * from './useOnePage';
|
|
38
|
+
export * from './useUpsertOnePage';
|
|
39
|
+
export * from './useDeletePageById';
|
|
40
|
+
export * from './useDeletePage';
|
|
41
|
+
export * from './usePostList';
|
|
42
|
+
export * from './useOnePost';
|
|
43
|
+
export * from './useUpsertOnePost';
|
|
44
|
+
export * from './useDeletePostById';
|
|
45
|
+
export * from './useDeletePost';
|
|
46
|
+
export * from './useProductList';
|
|
47
|
+
export * from './useOneProduct';
|
|
48
|
+
export * from './useUpsertOneProduct';
|
|
49
|
+
export * from './useDeleteProductById';
|
|
50
|
+
export * from './useDeleteProduct';
|
|
51
|
+
export * from './useSlugList';
|
|
52
|
+
export * from './useOneSlug';
|
|
53
|
+
export * from './useUpsertOneSlug';
|
|
54
|
+
export * from './useDeleteSlugById';
|
|
55
|
+
export * from './useDeleteSlug';
|
|
56
|
+
export * from './useEnquiryList';
|
|
57
|
+
export * from './useOneEnquiry';
|
|
58
|
+
export * from './useUpsertOneEnquiry';
|
|
59
|
+
export * from './useDeleteEnquiryById';
|
|
60
|
+
export * from './useDeleteEnquiry';
|
|
61
|
+
export * from './useWebsiteMetaList';
|
|
62
|
+
export * from './useOneWebsiteMeta';
|
|
63
|
+
export * from './useUpsertOneWebsiteMeta';
|
|
64
|
+
export * from './useDeleteWebsiteMetaById';
|
|
65
|
+
export * from './useDeleteWebsiteMeta';
|
|
66
|
+
export * from './useWebsiteSettingsList';
|
|
67
|
+
export * from './useOneWebsiteSettings';
|
|
68
|
+
export * from './useUpsertOneWebsiteSettings';
|
|
69
|
+
export * from './useDeleteWebsiteSettingsById';
|
|
70
|
+
export * from './useDeleteWebsiteSettings';
|
|
71
|
+
export * from './useTemplateList';
|
|
72
|
+
export * from './useOneTemplate';
|
|
73
|
+
export * from './useUpsertOneTemplate';
|
|
74
|
+
export * from './useDeleteTemplateById';
|
|
75
|
+
export * from './useDeleteTemplate';
|
|
76
|
+
export * from './useTemplateCategoryList';
|
|
77
|
+
export * from './useOneTemplateCategory';
|
|
78
|
+
export * from './useUpsertOneTemplateCategory';
|
|
79
|
+
export * from './useDeleteTemplateCategoryById';
|
|
80
|
+
export * from './useDeleteTemplateCategory';
|
|
81
|
+
export * from './useThemeList';
|
|
82
|
+
export * from './useOneTheme';
|
|
83
|
+
export * from './useUpsertOneTheme';
|
|
84
|
+
export * from './useDeleteThemeById';
|
|
85
|
+
export * from './useDeleteTheme';
|
|
86
|
+
export * from './useMediaFolderList';
|
|
87
|
+
export * from './useOneMediaFolder';
|
|
88
|
+
export * from './useUpsertOneMediaFolder';
|
|
89
|
+
export * from './useDeleteMediaFolderById';
|
|
90
|
+
export * from './useDeleteMediaFolder';
|
|
91
|
+
export * from './usePostCategoryList';
|
|
92
|
+
export * from './useOnePostCategory';
|
|
93
|
+
export * from './useUpsertOnePostCategory';
|
|
94
|
+
export * from './useDeletePostCategoryById';
|
|
95
|
+
export * from './useDeletePostCategory';
|
|
96
|
+
export * from './useTagList';
|
|
97
|
+
export * from './useOneTag';
|
|
98
|
+
export * from './useUpsertOneTag';
|
|
99
|
+
export * from './useDeleteTagById';
|
|
100
|
+
export * from './useDeleteTag';
|
|
101
|
+
export * from './useCustomerList';
|
|
102
|
+
export * from './useOneCustomer';
|
|
103
|
+
export * from './useUpsertOneCustomer';
|
|
104
|
+
export * from './useDeleteCustomerById';
|
|
105
|
+
export * from './useDeleteCustomer';
|
|
106
|
+
export * from './useProductCategoryList';
|
|
107
|
+
export * from './useOneProductCategory';
|
|
108
|
+
export * from './useUpsertOneProductCategory';
|
|
109
|
+
export * from './useDeleteProductCategoryById';
|
|
110
|
+
export * from './useDeleteProductCategory';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Ability } from '../interfaces';
|
|
4
|
+
export declare function useDeleteAbility(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Ability> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Ability } from '../interfaces';
|
|
4
|
+
export declare function useDeleteAbilityById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Ability | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Customer } from '../interfaces';
|
|
4
|
+
export declare function useDeleteCustomer(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Customer> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Customer } from '../interfaces';
|
|
4
|
+
export declare function useDeleteCustomerById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Customer | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Enquiry } from '../interfaces';
|
|
4
|
+
export declare function useDeleteEnquiry(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Enquiry> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Enquiry } from '../interfaces';
|
|
4
|
+
export declare function useDeleteEnquiryById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Enquiry | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Lang } from '../interfaces';
|
|
4
|
+
export declare function useDeleteLang(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Lang> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Lang } from '../interfaces';
|
|
4
|
+
export declare function useDeleteLangById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Lang | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Media } from '../interfaces';
|
|
4
|
+
export declare function useDeleteMedia(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Media> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Media } from '../interfaces';
|
|
4
|
+
export declare function useDeleteMediaById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Media | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { MediaFolder } from '../interfaces';
|
|
4
|
+
export declare function useDeleteMediaFolder(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<MediaFolder> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { MediaFolder } from '../interfaces';
|
|
4
|
+
export declare function useDeleteMediaFolderById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: MediaFolder | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Page } from '../interfaces';
|
|
4
|
+
export declare function useDeletePage(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Page> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Page } from '../interfaces';
|
|
4
|
+
export declare function useDeletePageById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Page | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Post } from '../interfaces';
|
|
4
|
+
export declare function useDeletePost(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Post> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Post } from '../interfaces';
|
|
4
|
+
export declare function useDeletePostById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Post | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { PostCategory } from '../interfaces';
|
|
4
|
+
export declare function useDeletePostCategory(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<PostCategory> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { PostCategory } from '../interfaces';
|
|
4
|
+
export declare function useDeletePostCategoryById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: PostCategory | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Product } from '../interfaces';
|
|
4
|
+
export declare function useDeleteProduct(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Product> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Product } from '../interfaces';
|
|
4
|
+
export declare function useDeleteProductById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Product | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { ProductCategory } from '../interfaces';
|
|
4
|
+
export declare function useDeleteProductCategory(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<ProductCategory> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { ProductCategory } from '../interfaces';
|
|
4
|
+
export declare function useDeleteProductCategoryById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: ProductCategory | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Role } from '../interfaces';
|
|
4
|
+
export declare function useDeleteRole(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Role> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Role } from '../interfaces';
|
|
4
|
+
export declare function useDeleteRoleById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Role | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Slug } from '../interfaces';
|
|
4
|
+
export declare function useDeleteSlug(options?: IMutationOptions & IIndicatorOptions): [(where: unknown) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: import("@rxdrag/entify-hooks").IDeleteResponse<Slug> | undefined;
|
|
8
|
+
}];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMutationOptions } from '@rxdrag/entify-hooks';
|
|
2
|
+
import { IIndicatorOptions } from '@rxdrag/rxcms-entify-wrapper';
|
|
3
|
+
import { Slug } from '../interfaces';
|
|
4
|
+
export declare function useDeleteSlugById(options?: IMutationOptions & IIndicatorOptions): [(id: string) => void, {
|
|
5
|
+
isMutating?: boolean | undefined;
|
|
6
|
+
error?: Error | undefined;
|
|
7
|
+
data?: Slug | undefined;
|
|
8
|
+
}];
|