@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
package/dist/index.mjs
CHANGED
|
@@ -1,1406 +1,1941 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
return
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
return
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
return
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
return
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
return
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
return
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
return
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
return
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
return
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
return
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
1
|
+
import { processHasManyClear, convertHasManyToInput, processHasOneClear, convertHasOneToInput } from "@rxdrag/entify-hooks";
|
|
2
|
+
import { useQueryEntityListWithIndicator, useQueryOneEntityWithIndicator, useUpsertEntityWithIndicator, useDeleteEntityByIdWithIndicator, useDeleteEntitiesWithIndicator } from "@rxdrag/rxcms-entify-wrapper";
|
|
3
|
+
const UserEntityName = "User";
|
|
4
|
+
const UserEntityLabel = "";
|
|
5
|
+
const roleToInputCascade = (entity) => {
|
|
6
|
+
var _a;
|
|
7
|
+
return {
|
|
8
|
+
...entity,
|
|
9
|
+
users: entity.users ? processHasManyClear({ sync: (_a = entity.users) == null ? void 0 : _a.map((ent) => userToInput(ent)) }) : void 0
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
const roleToInput = (entity) => {
|
|
13
|
+
return {
|
|
14
|
+
...entity,
|
|
15
|
+
users: convertHasManyToInput(entity.users)
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
const mediaFolderToInputCascade = (entity) => {
|
|
19
|
+
var _a, _b;
|
|
20
|
+
return {
|
|
21
|
+
...entity,
|
|
22
|
+
children: entity.children ? processHasManyClear({ sync: (_a = entity.children) == null ? void 0 : _a.map((ent) => mediaFolderToInput(ent)) }) : void 0,
|
|
23
|
+
parent: entity.parent ? processHasOneClear({ sync: mediaFolderToInput(entity.parent) }) : void 0,
|
|
24
|
+
medias: entity.medias ? processHasManyClear({ sync: (_b = entity.medias) == null ? void 0 : _b.map((ent) => mediaToInput(ent)) }) : void 0
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
const mediaFolderToInput = (entity) => {
|
|
28
|
+
return {
|
|
29
|
+
...entity,
|
|
30
|
+
children: convertHasManyToInput(entity.children),
|
|
31
|
+
parent: convertHasOneToInput(entity.parent),
|
|
32
|
+
medias: convertHasManyToInput(entity.medias)
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
const productCategoryToInputCascade = (entity) => {
|
|
36
|
+
var _a, _b;
|
|
37
|
+
return {
|
|
38
|
+
...entity,
|
|
39
|
+
children: entity.children ? processHasManyClear({ sync: (_a = entity.children) == null ? void 0 : _a.map((ent) => productCategoryToInput(ent)) }) : void 0,
|
|
40
|
+
parent: entity.parent ? processHasOneClear({ sync: productCategoryToInput(entity.parent) }) : void 0,
|
|
41
|
+
products: entity.products ? processHasManyClear({ sync: (_b = entity.products) == null ? void 0 : _b.map((ent) => productToInput(ent)) }) : void 0
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
const productCategoryToInput = (entity) => {
|
|
45
|
+
return {
|
|
46
|
+
...entity,
|
|
47
|
+
children: convertHasManyToInput(entity.children),
|
|
48
|
+
parent: convertHasOneToInput(entity.parent),
|
|
49
|
+
products: convertHasManyToInput(entity.products)
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
const tagToInputCascade = (entity) => {
|
|
53
|
+
var _a, _b;
|
|
54
|
+
return {
|
|
55
|
+
...entity,
|
|
56
|
+
posts: entity.posts ? processHasManyClear({ sync: (_a = entity.posts) == null ? void 0 : _a.map((ent) => postToInput(ent)) }) : void 0,
|
|
57
|
+
products: entity.products ? processHasManyClear({ sync: (_b = entity.products) == null ? void 0 : _b.map((ent) => productToInput(ent)) }) : void 0
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
const tagToInput = (entity) => {
|
|
61
|
+
return {
|
|
62
|
+
...entity,
|
|
63
|
+
posts: convertHasManyToInput(entity.posts),
|
|
64
|
+
products: convertHasManyToInput(entity.products)
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
const postCategoryToInputCascade = (entity) => {
|
|
68
|
+
var _a, _b;
|
|
69
|
+
return {
|
|
70
|
+
...entity,
|
|
71
|
+
children: entity.children ? processHasManyClear({ sync: (_a = entity.children) == null ? void 0 : _a.map((ent) => postCategoryToInput(ent)) }) : void 0,
|
|
72
|
+
posts: entity.posts ? processHasManyClear({ sync: (_b = entity.posts) == null ? void 0 : _b.map((ent) => postToInput(ent)) }) : void 0,
|
|
73
|
+
parent: entity.parent ? processHasOneClear({ sync: postCategoryToInput(entity.parent) }) : void 0
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
const postCategoryToInput = (entity) => {
|
|
77
|
+
return {
|
|
78
|
+
...entity,
|
|
79
|
+
children: convertHasManyToInput(entity.children),
|
|
80
|
+
posts: convertHasManyToInput(entity.posts),
|
|
81
|
+
parent: convertHasOneToInput(entity.parent)
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
const postToInputCascade = (entity) => {
|
|
85
|
+
var _a;
|
|
86
|
+
return {
|
|
87
|
+
...entity,
|
|
88
|
+
slug: entity.slug ? processHasOneClear({ sync: slugToInput(entity.slug) }) : void 0,
|
|
89
|
+
tags: entity.tags ? processHasManyClear({ sync: (_a = entity.tags) == null ? void 0 : _a.map((ent) => tagToInput(ent)) }) : void 0,
|
|
90
|
+
author: entity.author ? processHasOneClear({ sync: userToInput(entity.author) }) : void 0,
|
|
91
|
+
cover: entity.cover ? processHasOneClear({ sync: mediaToInput(entity.cover) }) : void 0,
|
|
92
|
+
category: entity.category ? processHasOneClear({ sync: postCategoryToInput(entity.category) }) : void 0
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
const postToInput = (entity) => {
|
|
96
|
+
return {
|
|
97
|
+
...entity,
|
|
98
|
+
slug: convertHasOneToInput(entity.slug),
|
|
99
|
+
tags: convertHasManyToInput(entity.tags),
|
|
100
|
+
author: convertHasOneToInput(entity.author),
|
|
101
|
+
cover: convertHasOneToInput(entity.cover),
|
|
102
|
+
category: convertHasOneToInput(entity.category)
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
const pageToInputCascade = (entity) => {
|
|
106
|
+
return {
|
|
107
|
+
...entity,
|
|
108
|
+
slug: entity.slug ? processHasOneClear({ sync: slugToInput(entity.slug) }) : void 0
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
const pageToInput = (entity) => {
|
|
112
|
+
return {
|
|
113
|
+
...entity,
|
|
114
|
+
slug: convertHasOneToInput(entity.slug)
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
const slugToInputCascade = (entity) => {
|
|
118
|
+
return {
|
|
119
|
+
...entity,
|
|
120
|
+
post: entity.post ? processHasOneClear({ sync: postToInput(entity.post) }) : void 0,
|
|
121
|
+
product: entity.product ? processHasOneClear({ sync: productToInput(entity.product) }) : void 0,
|
|
122
|
+
page: entity.page ? processHasOneClear({ sync: pageToInput(entity.page) }) : void 0
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
const slugToInput = (entity) => {
|
|
126
|
+
return {
|
|
127
|
+
...entity,
|
|
128
|
+
post: convertHasOneToInput(entity.post),
|
|
129
|
+
product: convertHasOneToInput(entity.product),
|
|
130
|
+
page: convertHasOneToInput(entity.page)
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
const productToInputCascade = (entity) => {
|
|
134
|
+
var _a, _b;
|
|
135
|
+
return {
|
|
136
|
+
...entity,
|
|
137
|
+
category: entity.category ? processHasOneClear({ sync: productCategoryToInput(entity.category) }) : void 0,
|
|
138
|
+
medias: entity.medias ? processHasManyClear({ sync: (_a = entity.medias) == null ? void 0 : _a.map((ent) => mediaToInput(ent)) }) : void 0,
|
|
139
|
+
slug: entity.slug ? processHasOneClear({ sync: slugToInput(entity.slug) }) : void 0,
|
|
140
|
+
tags: entity.tags ? processHasManyClear({ sync: (_b = entity.tags) == null ? void 0 : _b.map((ent) => tagToInput(ent)) }) : void 0,
|
|
141
|
+
creator: entity.creator ? processHasOneClear({ sync: userToInput(entity.creator) }) : void 0
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
const productToInput = (entity) => {
|
|
145
|
+
return {
|
|
146
|
+
...entity,
|
|
147
|
+
category: convertHasOneToInput(entity.category),
|
|
148
|
+
medias: convertHasManyToInput(entity.medias),
|
|
149
|
+
slug: convertHasOneToInput(entity.slug),
|
|
150
|
+
tags: convertHasManyToInput(entity.tags),
|
|
151
|
+
creator: convertHasOneToInput(entity.creator)
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
const mediaToInputCascade = (entity) => {
|
|
155
|
+
var _a;
|
|
156
|
+
const { file, ...rest } = entity;
|
|
157
|
+
return {
|
|
158
|
+
...rest,
|
|
159
|
+
folder: entity.folder ? processHasOneClear({ sync: mediaFolderToInput(entity.folder) }) : void 0,
|
|
160
|
+
avatarOfUser: entity.avatarOfUser ? processHasOneClear({ sync: userToInput(entity.avatarOfUser) }) : void 0,
|
|
161
|
+
usedByProducts: entity.usedByProducts ? processHasManyClear({ sync: (_a = entity.usedByProducts) == null ? void 0 : _a.map((ent) => productToInput(ent)) }) : void 0
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
const mediaToInput = (entity) => {
|
|
165
|
+
const { file, ...rest } = entity;
|
|
166
|
+
return {
|
|
167
|
+
...rest,
|
|
168
|
+
folder: convertHasOneToInput(entity.folder),
|
|
169
|
+
avatarOfUser: convertHasOneToInput(entity.avatarOfUser),
|
|
170
|
+
usedByProducts: convertHasManyToInput(entity.usedByProducts)
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
const websiteTypeToInputCascade = (entity) => {
|
|
174
|
+
var _a;
|
|
175
|
+
return {
|
|
176
|
+
...entity,
|
|
177
|
+
websites: entity.websites ? processHasManyClear({ sync: (_a = entity.websites) == null ? void 0 : _a.map((ent) => websiteToInput(ent)) }) : void 0
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
const websiteTypeToInput = (entity) => {
|
|
181
|
+
return {
|
|
182
|
+
...entity,
|
|
183
|
+
websites: convertHasManyToInput(entity.websites)
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
const templateCategoryToInputCascade = (entity) => {
|
|
187
|
+
var _a;
|
|
188
|
+
return {
|
|
189
|
+
...entity,
|
|
190
|
+
templates: entity.templates ? processHasManyClear({ sync: (_a = entity.templates) == null ? void 0 : _a.map((ent) => templateToInput(ent)) }) : void 0,
|
|
191
|
+
theme: entity.theme ? processHasOneClear({ sync: themeToInput(entity.theme) }) : void 0
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
const templateCategoryToInput = (entity) => {
|
|
195
|
+
return {
|
|
196
|
+
...entity,
|
|
197
|
+
templates: convertHasManyToInput(entity.templates),
|
|
198
|
+
theme: convertHasOneToInput(entity.theme)
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
const templateToInputCascade = (entity) => {
|
|
202
|
+
return {
|
|
203
|
+
...entity,
|
|
204
|
+
category: entity.category ? processHasOneClear({ sync: templateCategoryToInput(entity.category) }) : void 0,
|
|
205
|
+
theme: entity.theme ? processHasOneClear({ sync: themeToInput(entity.theme) }) : void 0
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
const templateToInput = (entity) => {
|
|
209
|
+
return {
|
|
210
|
+
...entity,
|
|
211
|
+
category: convertHasOneToInput(entity.category),
|
|
212
|
+
theme: convertHasOneToInput(entity.theme)
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
const themeToInputCascade = (entity) => {
|
|
216
|
+
var _a, _b;
|
|
217
|
+
return {
|
|
218
|
+
...entity,
|
|
219
|
+
templates: entity.templates ? processHasManyClear({ sync: (_a = entity.templates) == null ? void 0 : _a.map((ent) => templateToInput(ent)) }) : void 0,
|
|
220
|
+
themlateCategories: entity.themlateCategories ? processHasManyClear({ sync: (_b = entity.themlateCategories) == null ? void 0 : _b.map((ent) => templateCategoryToInput(ent)) }) : void 0
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
const themeToInput = (entity) => {
|
|
224
|
+
return {
|
|
225
|
+
...entity,
|
|
226
|
+
templates: convertHasManyToInput(entity.templates),
|
|
227
|
+
themlateCategories: convertHasManyToInput(entity.themlateCategories)
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
const websiteToInputCascade = (entity) => {
|
|
231
|
+
var _a;
|
|
232
|
+
return {
|
|
233
|
+
...entity,
|
|
234
|
+
websiteType: entity.websiteType ? processHasOneClear({ sync: websiteTypeToInput(entity.websiteType) }) : void 0,
|
|
235
|
+
selectedTheme: entity.selectedTheme ? processHasOneClear({ sync: themeToInput(entity.selectedTheme) }) : void 0,
|
|
236
|
+
homePage: entity.homePage ? processHasOneClear({ sync: pageToInput(entity.homePage) }) : void 0,
|
|
237
|
+
owner: entity.owner ? processHasOneClear({ sync: userToInput(entity.owner) }) : void 0,
|
|
238
|
+
users: entity.users ? processHasManyClear({ sync: (_a = entity.users) == null ? void 0 : _a.map((ent) => userToInput(ent)) }) : void 0
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
const websiteToInput = (entity) => {
|
|
242
|
+
return {
|
|
243
|
+
...entity,
|
|
244
|
+
websiteType: convertHasOneToInput(entity.websiteType),
|
|
245
|
+
selectedTheme: convertHasOneToInput(entity.selectedTheme),
|
|
246
|
+
homePage: convertHasOneToInput(entity.homePage),
|
|
247
|
+
owner: convertHasOneToInput(entity.owner),
|
|
248
|
+
users: convertHasManyToInput(entity.users)
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
const userToInputCascade = (entity) => {
|
|
252
|
+
var _a, _b, _c, _d;
|
|
253
|
+
return {
|
|
254
|
+
...entity,
|
|
255
|
+
roles: entity.roles ? processHasManyClear({ sync: (_a = entity.roles) == null ? void 0 : _a.map((ent) => roleToInput(ent)) }) : void 0,
|
|
256
|
+
avatar: entity.avatar ? processHasOneClear({ sync: mediaToInput(entity.avatar) }) : void 0,
|
|
257
|
+
products: entity.products ? processHasManyClear({ sync: (_b = entity.products) == null ? void 0 : _b.map((ent) => productToInput(ent)) }) : void 0,
|
|
258
|
+
posts: entity.posts ? processHasManyClear({ sync: (_c = entity.posts) == null ? void 0 : _c.map((ent) => postToInput(ent)) }) : void 0,
|
|
259
|
+
websites: entity.websites ? processHasManyClear({ sync: (_d = entity.websites) == null ? void 0 : _d.map((ent) => websiteToInput(ent)) }) : void 0,
|
|
260
|
+
belongsTo: entity.belongsTo ? processHasOneClear({ sync: websiteToInput(entity.belongsTo) }) : void 0
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
const userToInput = (entity) => {
|
|
264
|
+
return {
|
|
265
|
+
...entity,
|
|
266
|
+
roles: convertHasManyToInput(entity.roles),
|
|
267
|
+
avatar: convertHasOneToInput(entity.avatar),
|
|
268
|
+
products: convertHasManyToInput(entity.products),
|
|
269
|
+
posts: convertHasManyToInput(entity.posts),
|
|
270
|
+
websites: convertHasManyToInput(entity.websites),
|
|
271
|
+
belongsTo: convertHasOneToInput(entity.belongsTo)
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
var UserDistinctEnum = /* @__PURE__ */ ((UserDistinctEnum2) => {
|
|
275
|
+
UserDistinctEnum2["id"] = "id";
|
|
276
|
+
UserDistinctEnum2["loginName"] = "loginName";
|
|
277
|
+
UserDistinctEnum2["name"] = "name";
|
|
278
|
+
UserDistinctEnum2["mobileNumber"] = "mobileNumber";
|
|
279
|
+
UserDistinctEnum2["isSupperAdmin"] = "isSupperAdmin";
|
|
280
|
+
UserDistinctEnum2["password"] = "password";
|
|
281
|
+
UserDistinctEnum2["createdAt"] = "createdAt";
|
|
282
|
+
UserDistinctEnum2["updatedAt"] = "updatedAt";
|
|
283
|
+
UserDistinctEnum2["postion"] = "postion";
|
|
284
|
+
UserDistinctEnum2["profile"] = "profile";
|
|
285
|
+
UserDistinctEnum2["userType"] = "userType";
|
|
286
|
+
UserDistinctEnum2["email"] = "email";
|
|
287
|
+
UserDistinctEnum2["tel"] = "tel";
|
|
288
|
+
UserDistinctEnum2["tel2"] = "tel2";
|
|
289
|
+
UserDistinctEnum2["mobile"] = "mobile";
|
|
290
|
+
UserDistinctEnum2["whatsApp"] = "whatsApp";
|
|
291
|
+
UserDistinctEnum2["linkedIn"] = "linkedIn";
|
|
292
|
+
UserDistinctEnum2["twitter"] = "twitter";
|
|
293
|
+
UserDistinctEnum2["facebook"] = "facebook";
|
|
294
|
+
UserDistinctEnum2["instagram"] = "instagram";
|
|
295
|
+
UserDistinctEnum2["summary"] = "summary";
|
|
296
|
+
return UserDistinctEnum2;
|
|
297
|
+
})(UserDistinctEnum || {});
|
|
298
|
+
const RoleEntityName = "Role";
|
|
299
|
+
const RoleEntityLabel = "";
|
|
300
|
+
var RoleDistinctEnum = /* @__PURE__ */ ((RoleDistinctEnum2) => {
|
|
301
|
+
RoleDistinctEnum2["id"] = "id";
|
|
302
|
+
RoleDistinctEnum2["name"] = "name";
|
|
303
|
+
RoleDistinctEnum2["description"] = "description";
|
|
304
|
+
RoleDistinctEnum2["createdAt"] = "createdAt";
|
|
305
|
+
RoleDistinctEnum2["updatedAt"] = "updatedAt";
|
|
306
|
+
return RoleDistinctEnum2;
|
|
307
|
+
})(RoleDistinctEnum || {});
|
|
308
|
+
const AbilityEntityName = "Ability";
|
|
309
|
+
const AbilityEntityLabel = "";
|
|
310
|
+
const abilityToInputCascade = (entity) => {
|
|
311
|
+
return {
|
|
312
|
+
...entity
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
const abilityToInput = (entity) => {
|
|
316
|
+
return {
|
|
317
|
+
...entity
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
var AbilityDistinctEnum = /* @__PURE__ */ ((AbilityDistinctEnum2) => {
|
|
321
|
+
AbilityDistinctEnum2["id"] = "id";
|
|
322
|
+
AbilityDistinctEnum2["entityUuid"] = "entityUuid";
|
|
323
|
+
AbilityDistinctEnum2["columnUuid"] = "columnUuid";
|
|
324
|
+
AbilityDistinctEnum2["can"] = "can";
|
|
325
|
+
AbilityDistinctEnum2["expression"] = "expression";
|
|
326
|
+
AbilityDistinctEnum2["abilityType"] = "abilityType";
|
|
327
|
+
AbilityDistinctEnum2["roleId"] = "roleId";
|
|
328
|
+
return AbilityDistinctEnum2;
|
|
329
|
+
})(AbilityDistinctEnum || {});
|
|
330
|
+
var AbilityType = /* @__PURE__ */ ((AbilityType2) => {
|
|
331
|
+
AbilityType2["create"] = "create";
|
|
332
|
+
AbilityType2["read"] = "read";
|
|
333
|
+
AbilityType2["update"] = "update";
|
|
334
|
+
AbilityType2["delete"] = "delete";
|
|
335
|
+
return AbilityType2;
|
|
336
|
+
})(AbilityType || {});
|
|
337
|
+
const MediaEntityName = "Media";
|
|
338
|
+
const MediaEntityLabel = "";
|
|
339
|
+
var MediaDistinctEnum = /* @__PURE__ */ ((MediaDistinctEnum2) => {
|
|
340
|
+
MediaDistinctEnum2["id"] = "id";
|
|
341
|
+
MediaDistinctEnum2["name"] = "name";
|
|
342
|
+
MediaDistinctEnum2["size"] = "size";
|
|
343
|
+
MediaDistinctEnum2["mimeType"] = "mimeType";
|
|
344
|
+
MediaDistinctEnum2["extName"] = "extName";
|
|
345
|
+
MediaDistinctEnum2["file"] = "file";
|
|
346
|
+
MediaDistinctEnum2["description"] = "description";
|
|
347
|
+
MediaDistinctEnum2["createdAt"] = "createdAt";
|
|
348
|
+
MediaDistinctEnum2["updatedAt"] = "updatedAt";
|
|
349
|
+
MediaDistinctEnum2["mediaType"] = "mediaType";
|
|
350
|
+
MediaDistinctEnum2["websiteId"] = "websiteId";
|
|
351
|
+
return MediaDistinctEnum2;
|
|
352
|
+
})(MediaDistinctEnum || {});
|
|
353
|
+
var MediaType = /* @__PURE__ */ ((MediaType2) => {
|
|
354
|
+
MediaType2["image"] = "image";
|
|
355
|
+
MediaType2["video"] = "video";
|
|
356
|
+
MediaType2["document"] = "document";
|
|
357
|
+
return MediaType2;
|
|
358
|
+
})(MediaType || {});
|
|
359
|
+
const WebsiteEntityName = "Website";
|
|
360
|
+
const WebsiteEntityLabel = "站点";
|
|
361
|
+
var WebsiteDistinctEnum = /* @__PURE__ */ ((WebsiteDistinctEnum2) => {
|
|
362
|
+
WebsiteDistinctEnum2["id"] = "id";
|
|
363
|
+
WebsiteDistinctEnum2["name"] = "name";
|
|
364
|
+
WebsiteDistinctEnum2["remark"] = "remark";
|
|
365
|
+
WebsiteDistinctEnum2["createdBy"] = "createdBy";
|
|
366
|
+
WebsiteDistinctEnum2["createdAt"] = "createdAt";
|
|
367
|
+
WebsiteDistinctEnum2["lastOpenTime"] = "lastOpenTime";
|
|
368
|
+
WebsiteDistinctEnum2["updatedAt"] = "updatedAt";
|
|
369
|
+
WebsiteDistinctEnum2["updatedBy"] = "updatedBy";
|
|
370
|
+
return WebsiteDistinctEnum2;
|
|
371
|
+
})(WebsiteDistinctEnum || {});
|
|
372
|
+
const LangEntityName = "Lang";
|
|
373
|
+
const LangEntityLabel = "语言";
|
|
374
|
+
const langToInputCascade = (entity) => {
|
|
375
|
+
return {
|
|
376
|
+
...entity
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
const langToInput = (entity) => {
|
|
380
|
+
return {
|
|
381
|
+
...entity
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
var LangDistinctEnum = /* @__PURE__ */ ((LangDistinctEnum2) => {
|
|
385
|
+
LangDistinctEnum2["id"] = "id";
|
|
386
|
+
LangDistinctEnum2["abbr"] = "abbr";
|
|
387
|
+
LangDistinctEnum2["enName"] = "enName";
|
|
388
|
+
LangDistinctEnum2["localName"] = "localName";
|
|
389
|
+
LangDistinctEnum2["icon"] = "icon";
|
|
390
|
+
LangDistinctEnum2["remark"] = "remark";
|
|
391
|
+
LangDistinctEnum2["websiteId"] = "websiteId";
|
|
392
|
+
LangDistinctEnum2["createdAt"] = "createdAt";
|
|
393
|
+
LangDistinctEnum2["updatedAt"] = "updatedAt";
|
|
394
|
+
return LangDistinctEnum2;
|
|
395
|
+
})(LangDistinctEnum || {});
|
|
396
|
+
const WebsiteTypeEntityName = "WebsiteType";
|
|
397
|
+
const WebsiteTypeEntityLabel = "站点类型";
|
|
398
|
+
var WebsiteTypeDistinctEnum = /* @__PURE__ */ ((WebsiteTypeDistinctEnum2) => {
|
|
399
|
+
WebsiteTypeDistinctEnum2["id"] = "id";
|
|
400
|
+
WebsiteTypeDistinctEnum2["name"] = "name";
|
|
401
|
+
WebsiteTypeDistinctEnum2["displayName"] = "displayName";
|
|
402
|
+
WebsiteTypeDistinctEnum2["pricePerMonth"] = "pricePerMonth";
|
|
403
|
+
WebsiteTypeDistinctEnum2["pricePerYear"] = "pricePerYear";
|
|
404
|
+
WebsiteTypeDistinctEnum2["remark"] = "remark";
|
|
405
|
+
WebsiteTypeDistinctEnum2["createdAt"] = "createdAt";
|
|
406
|
+
WebsiteTypeDistinctEnum2["updatedAt"] = "updatedAt";
|
|
407
|
+
WebsiteTypeDistinctEnum2["status"] = "status";
|
|
408
|
+
WebsiteTypeDistinctEnum2["level"] = "level";
|
|
409
|
+
return WebsiteTypeDistinctEnum2;
|
|
410
|
+
})(WebsiteTypeDistinctEnum || {});
|
|
411
|
+
const PageEntityName = "Page";
|
|
412
|
+
const PageEntityLabel = "";
|
|
413
|
+
var PageDistinctEnum = /* @__PURE__ */ ((PageDistinctEnum2) => {
|
|
414
|
+
PageDistinctEnum2["id"] = "id";
|
|
415
|
+
PageDistinctEnum2["title"] = "title";
|
|
416
|
+
PageDistinctEnum2["content"] = "content";
|
|
417
|
+
PageDistinctEnum2["remark"] = "remark";
|
|
418
|
+
PageDistinctEnum2["langAbbr"] = "langAbbr";
|
|
419
|
+
PageDistinctEnum2["extends"] = "extends";
|
|
420
|
+
PageDistinctEnum2["websiteId"] = "websiteId";
|
|
421
|
+
PageDistinctEnum2["createdAt"] = "createdAt";
|
|
422
|
+
PageDistinctEnum2["updatedAt"] = "updatedAt";
|
|
423
|
+
PageDistinctEnum2["seoTitle"] = "seoTitle";
|
|
424
|
+
PageDistinctEnum2["seoKeywords"] = "seoKeywords";
|
|
425
|
+
PageDistinctEnum2["seoDescription"] = "seoDescription";
|
|
426
|
+
PageDistinctEnum2["ogTitle"] = "ogTitle";
|
|
427
|
+
PageDistinctEnum2["ogDescription"] = "ogDescription";
|
|
428
|
+
PageDistinctEnum2["ogImageUrl"] = "ogImageUrl";
|
|
429
|
+
PageDistinctEnum2["ogUrl"] = "ogUrl";
|
|
430
|
+
PageDistinctEnum2["ogSiteName"] = "ogSiteName";
|
|
431
|
+
PageDistinctEnum2["ogType"] = "ogType";
|
|
432
|
+
PageDistinctEnum2["lang"] = "lang";
|
|
433
|
+
return PageDistinctEnum2;
|
|
434
|
+
})(PageDistinctEnum || {});
|
|
435
|
+
const PostEntityName = "Post";
|
|
436
|
+
const PostEntityLabel = "文章";
|
|
437
|
+
var PostDistinctEnum = /* @__PURE__ */ ((PostDistinctEnum2) => {
|
|
438
|
+
PostDistinctEnum2["id"] = "id";
|
|
439
|
+
PostDistinctEnum2["seqValue"] = "seqValue";
|
|
440
|
+
PostDistinctEnum2["pinToTop"] = "pinToTop";
|
|
441
|
+
PostDistinctEnum2["authorEmail"] = "authorEmail";
|
|
442
|
+
PostDistinctEnum2["summary"] = "summary";
|
|
443
|
+
PostDistinctEnum2["publishedContent"] = "publishedContent";
|
|
444
|
+
PostDistinctEnum2["publishedAt"] = "publishedAt";
|
|
445
|
+
PostDistinctEnum2["status"] = "status";
|
|
446
|
+
PostDistinctEnum2["title"] = "title";
|
|
447
|
+
PostDistinctEnum2["content"] = "content";
|
|
448
|
+
PostDistinctEnum2["extends"] = "extends";
|
|
449
|
+
PostDistinctEnum2["websiteId"] = "websiteId";
|
|
450
|
+
PostDistinctEnum2["createdAt"] = "createdAt";
|
|
451
|
+
PostDistinctEnum2["updatedAt"] = "updatedAt";
|
|
452
|
+
PostDistinctEnum2["remark"] = "remark";
|
|
453
|
+
PostDistinctEnum2["seoTitle"] = "seoTitle";
|
|
454
|
+
PostDistinctEnum2["seoKeywords"] = "seoKeywords";
|
|
455
|
+
PostDistinctEnum2["seoDescription"] = "seoDescription";
|
|
456
|
+
PostDistinctEnum2["ogTitle"] = "ogTitle";
|
|
457
|
+
PostDistinctEnum2["ogDescription"] = "ogDescription";
|
|
458
|
+
PostDistinctEnum2["ogImageUrl"] = "ogImageUrl";
|
|
459
|
+
PostDistinctEnum2["ogUrl"] = "ogUrl";
|
|
460
|
+
PostDistinctEnum2["ogSiteName"] = "ogSiteName";
|
|
461
|
+
PostDistinctEnum2["ogType"] = "ogType";
|
|
462
|
+
PostDistinctEnum2["lang"] = "lang";
|
|
463
|
+
return PostDistinctEnum2;
|
|
464
|
+
})(PostDistinctEnum || {});
|
|
465
|
+
const ProductEntityName = "Product";
|
|
466
|
+
const ProductEntityLabel = "";
|
|
467
|
+
var ProductDistinctEnum = /* @__PURE__ */ ((ProductDistinctEnum2) => {
|
|
468
|
+
ProductDistinctEnum2["id"] = "id";
|
|
469
|
+
ProductDistinctEnum2["published"] = "published";
|
|
470
|
+
ProductDistinctEnum2["summary"] = "summary";
|
|
471
|
+
ProductDistinctEnum2["publishedContent"] = "publishedContent";
|
|
472
|
+
ProductDistinctEnum2["publishedAt"] = "publishedAt";
|
|
473
|
+
ProductDistinctEnum2["status"] = "status";
|
|
474
|
+
ProductDistinctEnum2["title"] = "title";
|
|
475
|
+
ProductDistinctEnum2["content"] = "content";
|
|
476
|
+
ProductDistinctEnum2["extends"] = "extends";
|
|
477
|
+
ProductDistinctEnum2["websiteId"] = "websiteId";
|
|
478
|
+
ProductDistinctEnum2["createdAt"] = "createdAt";
|
|
479
|
+
ProductDistinctEnum2["updatedAt"] = "updatedAt";
|
|
480
|
+
ProductDistinctEnum2["remark"] = "remark";
|
|
481
|
+
ProductDistinctEnum2["seoTitle"] = "seoTitle";
|
|
482
|
+
ProductDistinctEnum2["seoKeywords"] = "seoKeywords";
|
|
483
|
+
ProductDistinctEnum2["seoDescription"] = "seoDescription";
|
|
484
|
+
ProductDistinctEnum2["ogTitle"] = "ogTitle";
|
|
485
|
+
ProductDistinctEnum2["ogDescription"] = "ogDescription";
|
|
486
|
+
ProductDistinctEnum2["ogImageUrl"] = "ogImageUrl";
|
|
487
|
+
ProductDistinctEnum2["ogUrl"] = "ogUrl";
|
|
488
|
+
ProductDistinctEnum2["ogSiteName"] = "ogSiteName";
|
|
489
|
+
ProductDistinctEnum2["ogType"] = "ogType";
|
|
490
|
+
ProductDistinctEnum2["lang"] = "lang";
|
|
491
|
+
return ProductDistinctEnum2;
|
|
492
|
+
})(ProductDistinctEnum || {});
|
|
493
|
+
const SlugEntityName = "Slug";
|
|
494
|
+
const SlugEntityLabel = "";
|
|
495
|
+
var SlugDistinctEnum = /* @__PURE__ */ ((SlugDistinctEnum2) => {
|
|
496
|
+
SlugDistinctEnum2["id"] = "id";
|
|
497
|
+
SlugDistinctEnum2["uniqueName"] = "uniqueName";
|
|
498
|
+
SlugDistinctEnum2["websiteId"] = "websiteId";
|
|
499
|
+
SlugDistinctEnum2["createdAt"] = "createdAt";
|
|
500
|
+
SlugDistinctEnum2["updatedAt"] = "updatedAt";
|
|
501
|
+
SlugDistinctEnum2["remark"] = "remark";
|
|
502
|
+
return SlugDistinctEnum2;
|
|
503
|
+
})(SlugDistinctEnum || {});
|
|
504
|
+
const EnquiryEntityName = "Enquiry";
|
|
505
|
+
const EnquiryEntityLabel = "";
|
|
506
|
+
const customerToInputCascade = (entity) => {
|
|
507
|
+
var _a;
|
|
508
|
+
return {
|
|
509
|
+
...entity,
|
|
510
|
+
enquires: entity.enquires ? processHasManyClear({ sync: (_a = entity.enquires) == null ? void 0 : _a.map((ent) => enquiryToInput(ent)) }) : void 0
|
|
511
|
+
};
|
|
512
|
+
};
|
|
513
|
+
const customerToInput = (entity) => {
|
|
514
|
+
return {
|
|
515
|
+
...entity,
|
|
516
|
+
enquires: convertHasManyToInput(entity.enquires)
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
const enquiryToInputCascade = (entity) => {
|
|
520
|
+
return {
|
|
521
|
+
...entity,
|
|
522
|
+
customer: entity.customer ? processHasOneClear({ sync: customerToInput(entity.customer) }) : void 0
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
const enquiryToInput = (entity) => {
|
|
526
|
+
return {
|
|
527
|
+
...entity,
|
|
528
|
+
customer: convertHasOneToInput(entity.customer)
|
|
529
|
+
};
|
|
530
|
+
};
|
|
531
|
+
var EnquiryDistinctEnum = /* @__PURE__ */ ((EnquiryDistinctEnum2) => {
|
|
532
|
+
EnquiryDistinctEnum2["id"] = "id";
|
|
533
|
+
EnquiryDistinctEnum2["title"] = "title";
|
|
534
|
+
EnquiryDistinctEnum2["content"] = "content";
|
|
535
|
+
EnquiryDistinctEnum2["websiteId"] = "websiteId";
|
|
536
|
+
EnquiryDistinctEnum2["createdAt"] = "createdAt";
|
|
537
|
+
EnquiryDistinctEnum2["updatedAt"] = "updatedAt";
|
|
538
|
+
EnquiryDistinctEnum2["remark"] = "remark";
|
|
539
|
+
return EnquiryDistinctEnum2;
|
|
540
|
+
})(EnquiryDistinctEnum || {});
|
|
541
|
+
const WebsiteMetaEntityName = "WebsiteMeta";
|
|
542
|
+
const WebsiteMetaEntityLabel = "";
|
|
543
|
+
const websiteMetaToInputCascade = (entity) => {
|
|
544
|
+
return {
|
|
545
|
+
...entity
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
const websiteMetaToInput = (entity) => {
|
|
549
|
+
return {
|
|
550
|
+
...entity
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
var WebsiteMetaDistinctEnum = /* @__PURE__ */ ((WebsiteMetaDistinctEnum2) => {
|
|
554
|
+
WebsiteMetaDistinctEnum2["id"] = "id";
|
|
555
|
+
return WebsiteMetaDistinctEnum2;
|
|
556
|
+
})(WebsiteMetaDistinctEnum || {});
|
|
557
|
+
const WebsiteSettingsEntityName = "WebsiteSettings";
|
|
558
|
+
const WebsiteSettingsEntityLabel = "";
|
|
559
|
+
const websiteSettingsToInputCascade = (entity) => {
|
|
560
|
+
return {
|
|
561
|
+
...entity
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
const websiteSettingsToInput = (entity) => {
|
|
565
|
+
return {
|
|
566
|
+
...entity
|
|
567
|
+
};
|
|
568
|
+
};
|
|
569
|
+
var WebsiteSettingsDistinctEnum = /* @__PURE__ */ ((WebsiteSettingsDistinctEnum2) => {
|
|
570
|
+
WebsiteSettingsDistinctEnum2["id"] = "id";
|
|
571
|
+
WebsiteSettingsDistinctEnum2["smtpConfig"] = "smtpConfig";
|
|
572
|
+
WebsiteSettingsDistinctEnum2["websiteId"] = "websiteId";
|
|
573
|
+
WebsiteSettingsDistinctEnum2["createdAt"] = "createdAt";
|
|
574
|
+
WebsiteSettingsDistinctEnum2["updatedAt"] = "updatedAt";
|
|
575
|
+
WebsiteSettingsDistinctEnum2["remark"] = "remark";
|
|
576
|
+
return WebsiteSettingsDistinctEnum2;
|
|
577
|
+
})(WebsiteSettingsDistinctEnum || {});
|
|
578
|
+
const TemplateEntityName = "Template";
|
|
579
|
+
const TemplateEntityLabel = "";
|
|
580
|
+
var TemplateDistinctEnum = /* @__PURE__ */ ((TemplateDistinctEnum2) => {
|
|
581
|
+
TemplateDistinctEnum2["id"] = "id";
|
|
582
|
+
TemplateDistinctEnum2["name"] = "name";
|
|
583
|
+
TemplateDistinctEnum2["seqValue"] = "seqValue";
|
|
584
|
+
TemplateDistinctEnum2["content"] = "content";
|
|
585
|
+
TemplateDistinctEnum2["templateType"] = "templateType";
|
|
586
|
+
TemplateDistinctEnum2["websiteId"] = "websiteId";
|
|
587
|
+
TemplateDistinctEnum2["createdAt"] = "createdAt";
|
|
588
|
+
TemplateDistinctEnum2["updatedAt"] = "updatedAt";
|
|
589
|
+
TemplateDistinctEnum2["remark"] = "remark";
|
|
590
|
+
return TemplateDistinctEnum2;
|
|
591
|
+
})(TemplateDistinctEnum || {});
|
|
592
|
+
const TemplateCategoryEntityName = "TemplateCategory";
|
|
593
|
+
const TemplateCategoryEntityLabel = "";
|
|
594
|
+
var TemplateCategoryDistinctEnum = /* @__PURE__ */ ((TemplateCategoryDistinctEnum2) => {
|
|
595
|
+
TemplateCategoryDistinctEnum2["id"] = "id";
|
|
596
|
+
TemplateCategoryDistinctEnum2["name"] = "name";
|
|
597
|
+
TemplateCategoryDistinctEnum2["seqValue"] = "seqValue";
|
|
598
|
+
TemplateCategoryDistinctEnum2["websiteId"] = "websiteId";
|
|
599
|
+
TemplateCategoryDistinctEnum2["createdAt"] = "createdAt";
|
|
600
|
+
TemplateCategoryDistinctEnum2["updatedAt"] = "updatedAt";
|
|
601
|
+
TemplateCategoryDistinctEnum2["remark"] = "remark";
|
|
602
|
+
return TemplateCategoryDistinctEnum2;
|
|
603
|
+
})(TemplateCategoryDistinctEnum || {});
|
|
604
|
+
const ThemeEntityName = "Theme";
|
|
605
|
+
const ThemeEntityLabel = "";
|
|
606
|
+
var ThemeDistinctEnum = /* @__PURE__ */ ((ThemeDistinctEnum2) => {
|
|
607
|
+
ThemeDistinctEnum2["id"] = "id";
|
|
608
|
+
ThemeDistinctEnum2["name"] = "name";
|
|
609
|
+
ThemeDistinctEnum2["styles"] = "styles";
|
|
610
|
+
ThemeDistinctEnum2["settings"] = "settings";
|
|
611
|
+
ThemeDistinctEnum2["websiteId"] = "websiteId";
|
|
612
|
+
ThemeDistinctEnum2["createdAt"] = "createdAt";
|
|
613
|
+
ThemeDistinctEnum2["updatedAt"] = "updatedAt";
|
|
614
|
+
ThemeDistinctEnum2["remark"] = "remark";
|
|
615
|
+
return ThemeDistinctEnum2;
|
|
616
|
+
})(ThemeDistinctEnum || {});
|
|
617
|
+
const MediaFolderEntityName = "MediaFolder";
|
|
618
|
+
const MediaFolderEntityLabel = "媒体分类";
|
|
619
|
+
var MediaFolderDistinctEnum = /* @__PURE__ */ ((MediaFolderDistinctEnum2) => {
|
|
620
|
+
MediaFolderDistinctEnum2["id"] = "id";
|
|
621
|
+
MediaFolderDistinctEnum2["name"] = "name";
|
|
622
|
+
MediaFolderDistinctEnum2["seqValue"] = "seqValue";
|
|
623
|
+
MediaFolderDistinctEnum2["websiteId"] = "websiteId";
|
|
624
|
+
MediaFolderDistinctEnum2["createdAt"] = "createdAt";
|
|
625
|
+
MediaFolderDistinctEnum2["updatedAt"] = "updatedAt";
|
|
626
|
+
MediaFolderDistinctEnum2["remark"] = "remark";
|
|
627
|
+
return MediaFolderDistinctEnum2;
|
|
628
|
+
})(MediaFolderDistinctEnum || {});
|
|
629
|
+
var WebsiteTypeStatus = /* @__PURE__ */ ((WebsiteTypeStatus2) => {
|
|
630
|
+
WebsiteTypeStatus2["normal"] = "normal";
|
|
631
|
+
WebsiteTypeStatus2["expried"] = "expried";
|
|
632
|
+
return WebsiteTypeStatus2;
|
|
633
|
+
})(WebsiteTypeStatus || {});
|
|
634
|
+
const PostCategoryEntityName = "PostCategory";
|
|
635
|
+
const PostCategoryEntityLabel = "文章分类";
|
|
636
|
+
var PostCategoryDistinctEnum = /* @__PURE__ */ ((PostCategoryDistinctEnum2) => {
|
|
637
|
+
PostCategoryDistinctEnum2["id"] = "id";
|
|
638
|
+
PostCategoryDistinctEnum2["name"] = "name";
|
|
639
|
+
PostCategoryDistinctEnum2["seqValue"] = "seqValue";
|
|
640
|
+
PostCategoryDistinctEnum2["websiteId"] = "websiteId";
|
|
641
|
+
PostCategoryDistinctEnum2["createdAt"] = "createdAt";
|
|
642
|
+
PostCategoryDistinctEnum2["updatedAt"] = "updatedAt";
|
|
643
|
+
PostCategoryDistinctEnum2["remark"] = "remark";
|
|
644
|
+
return PostCategoryDistinctEnum2;
|
|
645
|
+
})(PostCategoryDistinctEnum || {});
|
|
646
|
+
const TagEntityName = "Tag";
|
|
647
|
+
const TagEntityLabel = "文章标签";
|
|
648
|
+
var TagDistinctEnum = /* @__PURE__ */ ((TagDistinctEnum2) => {
|
|
649
|
+
TagDistinctEnum2["id"] = "id";
|
|
650
|
+
TagDistinctEnum2["name"] = "name";
|
|
651
|
+
TagDistinctEnum2["color"] = "color";
|
|
652
|
+
TagDistinctEnum2["websiteId"] = "websiteId";
|
|
653
|
+
TagDistinctEnum2["createdAt"] = "createdAt";
|
|
654
|
+
TagDistinctEnum2["updatedAt"] = "updatedAt";
|
|
655
|
+
TagDistinctEnum2["remark"] = "remark";
|
|
656
|
+
return TagDistinctEnum2;
|
|
657
|
+
})(TagDistinctEnum || {});
|
|
658
|
+
var PublishableStatus = /* @__PURE__ */ ((PublishableStatus2) => {
|
|
659
|
+
PublishableStatus2["draft"] = "draft";
|
|
660
|
+
PublishableStatus2["published"] = "published";
|
|
661
|
+
PublishableStatus2["cancelled"] = "cancelled";
|
|
662
|
+
return PublishableStatus2;
|
|
663
|
+
})(PublishableStatus || {});
|
|
664
|
+
const CustomerEntityName = "Customer";
|
|
665
|
+
const CustomerEntityLabel = "";
|
|
666
|
+
var CustomerDistinctEnum = /* @__PURE__ */ ((CustomerDistinctEnum2) => {
|
|
667
|
+
CustomerDistinctEnum2["id"] = "id";
|
|
668
|
+
CustomerDistinctEnum2["websiteId"] = "websiteId";
|
|
669
|
+
CustomerDistinctEnum2["createdAt"] = "createdAt";
|
|
670
|
+
CustomerDistinctEnum2["updatedAt"] = "updatedAt";
|
|
671
|
+
CustomerDistinctEnum2["remark"] = "remark";
|
|
672
|
+
CustomerDistinctEnum2["email"] = "email";
|
|
673
|
+
CustomerDistinctEnum2["tel"] = "tel";
|
|
674
|
+
CustomerDistinctEnum2["tel2"] = "tel2";
|
|
675
|
+
CustomerDistinctEnum2["name"] = "name";
|
|
676
|
+
CustomerDistinctEnum2["mobile"] = "mobile";
|
|
677
|
+
CustomerDistinctEnum2["whatsApp"] = "whatsApp";
|
|
678
|
+
CustomerDistinctEnum2["linkedIn"] = "linkedIn";
|
|
679
|
+
CustomerDistinctEnum2["twitter"] = "twitter";
|
|
680
|
+
CustomerDistinctEnum2["facebook"] = "facebook";
|
|
681
|
+
CustomerDistinctEnum2["instagram"] = "instagram";
|
|
682
|
+
CustomerDistinctEnum2["summary"] = "summary";
|
|
683
|
+
return CustomerDistinctEnum2;
|
|
684
|
+
})(CustomerDistinctEnum || {});
|
|
685
|
+
var UserType = /* @__PURE__ */ ((UserType2) => {
|
|
686
|
+
UserType2["saasUser"] = "saasUser";
|
|
687
|
+
UserType2["websiteUser"] = "websiteUser";
|
|
688
|
+
UserType2["systemAdmin"] = "systemAdmin";
|
|
689
|
+
return UserType2;
|
|
690
|
+
})(UserType || {});
|
|
691
|
+
var TemplateType = /* @__PURE__ */ ((TemplateType2) => {
|
|
692
|
+
TemplateType2["Block"] = "Block";
|
|
693
|
+
TemplateType2["PostCategory"] = "PostCategory";
|
|
694
|
+
TemplateType2["Post"] = "Post";
|
|
695
|
+
TemplateType2["ProductCategory"] = "ProductCategory";
|
|
696
|
+
TemplateType2["Product"] = "Product";
|
|
697
|
+
TemplateType2["Page"] = "Page";
|
|
698
|
+
TemplateType2["Frame"] = "Frame";
|
|
699
|
+
TemplateType2["SearchList"] = "SearchList";
|
|
700
|
+
return TemplateType2;
|
|
701
|
+
})(TemplateType || {});
|
|
702
|
+
const ProductCategoryEntityName = "ProductCategory";
|
|
703
|
+
const ProductCategoryEntityLabel = "";
|
|
704
|
+
var ProductCategoryDistinctEnum = /* @__PURE__ */ ((ProductCategoryDistinctEnum2) => {
|
|
705
|
+
ProductCategoryDistinctEnum2["id"] = "id";
|
|
706
|
+
ProductCategoryDistinctEnum2["name"] = "name";
|
|
707
|
+
ProductCategoryDistinctEnum2["seqValue"] = "seqValue";
|
|
708
|
+
ProductCategoryDistinctEnum2["websiteId"] = "websiteId";
|
|
709
|
+
ProductCategoryDistinctEnum2["createdAt"] = "createdAt";
|
|
710
|
+
ProductCategoryDistinctEnum2["updatedAt"] = "updatedAt";
|
|
711
|
+
ProductCategoryDistinctEnum2["remark"] = "remark";
|
|
712
|
+
return ProductCategoryDistinctEnum2;
|
|
713
|
+
})(ProductCategoryDistinctEnum || {});
|
|
714
|
+
var ExtendFieldType = /* @__PURE__ */ ((ExtendFieldType2) => {
|
|
715
|
+
ExtendFieldType2["String"] = "String";
|
|
716
|
+
ExtendFieldType2["Number"] = "Number";
|
|
717
|
+
ExtendFieldType2["Boolean"] = "Boolean";
|
|
718
|
+
ExtendFieldType2["Json"] = "Json";
|
|
719
|
+
ExtendFieldType2["Date"] = "Date";
|
|
720
|
+
return ExtendFieldType2;
|
|
721
|
+
})(ExtendFieldType || {});
|
|
722
|
+
var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
723
|
+
ComponentType2["Input"] = "Input";
|
|
724
|
+
ComponentType2["Textarea"] = "Textarea";
|
|
725
|
+
ComponentType2["Select"] = "Select";
|
|
726
|
+
ComponentType2["Checkbox"] = "Checkbox";
|
|
727
|
+
ComponentType2["Radio"] = "Radio";
|
|
728
|
+
ComponentType2["DatePicker"] = "DatePicker";
|
|
729
|
+
ComponentType2["Switch"] = "Switch";
|
|
730
|
+
ComponentType2["RichText"] = "RichText";
|
|
731
|
+
return ComponentType2;
|
|
732
|
+
})(ComponentType || {});
|
|
733
|
+
const userEntry = {
|
|
734
|
+
entityName: UserEntityName,
|
|
735
|
+
entityLabel: UserEntityLabel,
|
|
736
|
+
toInput: userToInput
|
|
737
|
+
};
|
|
738
|
+
const roleEntry = {
|
|
739
|
+
entityName: RoleEntityName,
|
|
740
|
+
entityLabel: RoleEntityLabel,
|
|
741
|
+
toInput: roleToInput
|
|
742
|
+
};
|
|
743
|
+
const abilityEntry = {
|
|
744
|
+
entityName: AbilityEntityName,
|
|
745
|
+
entityLabel: AbilityEntityLabel,
|
|
746
|
+
toInput: abilityToInput
|
|
747
|
+
};
|
|
748
|
+
const mediaEntry = {
|
|
749
|
+
entityName: MediaEntityName,
|
|
750
|
+
entityLabel: MediaEntityLabel,
|
|
751
|
+
toInput: mediaToInput
|
|
752
|
+
};
|
|
753
|
+
const websiteEntry = {
|
|
754
|
+
entityName: WebsiteEntityName,
|
|
755
|
+
entityLabel: WebsiteEntityLabel,
|
|
756
|
+
toInput: websiteToInput
|
|
757
|
+
};
|
|
758
|
+
const langEntry = {
|
|
759
|
+
entityName: LangEntityName,
|
|
760
|
+
entityLabel: LangEntityLabel,
|
|
761
|
+
toInput: langToInput
|
|
762
|
+
};
|
|
763
|
+
const websiteTypeEntry = {
|
|
764
|
+
entityName: WebsiteTypeEntityName,
|
|
765
|
+
entityLabel: WebsiteTypeEntityLabel,
|
|
766
|
+
toInput: websiteTypeToInput
|
|
767
|
+
};
|
|
768
|
+
const pageEntry = {
|
|
769
|
+
entityName: PageEntityName,
|
|
770
|
+
entityLabel: PageEntityLabel,
|
|
771
|
+
toInput: pageToInput
|
|
772
|
+
};
|
|
773
|
+
const postEntry = {
|
|
774
|
+
entityName: PostEntityName,
|
|
775
|
+
entityLabel: PostEntityLabel,
|
|
776
|
+
toInput: postToInput
|
|
777
|
+
};
|
|
778
|
+
const productEntry = {
|
|
779
|
+
entityName: ProductEntityName,
|
|
780
|
+
entityLabel: ProductEntityLabel,
|
|
781
|
+
toInput: productToInput
|
|
782
|
+
};
|
|
783
|
+
const slugEntry = {
|
|
784
|
+
entityName: SlugEntityName,
|
|
785
|
+
entityLabel: SlugEntityLabel,
|
|
786
|
+
toInput: slugToInput
|
|
787
|
+
};
|
|
788
|
+
const enquiryEntry = {
|
|
789
|
+
entityName: EnquiryEntityName,
|
|
790
|
+
entityLabel: EnquiryEntityLabel,
|
|
791
|
+
toInput: enquiryToInput
|
|
792
|
+
};
|
|
793
|
+
const websiteMetaEntry = {
|
|
794
|
+
entityName: WebsiteMetaEntityName,
|
|
795
|
+
entityLabel: WebsiteMetaEntityLabel,
|
|
796
|
+
toInput: websiteMetaToInput
|
|
797
|
+
};
|
|
798
|
+
const websiteSettingsEntry = {
|
|
799
|
+
entityName: WebsiteSettingsEntityName,
|
|
800
|
+
entityLabel: WebsiteSettingsEntityLabel,
|
|
801
|
+
toInput: websiteSettingsToInput
|
|
802
|
+
};
|
|
803
|
+
const templateEntry = {
|
|
804
|
+
entityName: TemplateEntityName,
|
|
805
|
+
entityLabel: TemplateEntityLabel,
|
|
806
|
+
toInput: templateToInput
|
|
807
|
+
};
|
|
808
|
+
const templateCategoryEntry = {
|
|
809
|
+
entityName: TemplateCategoryEntityName,
|
|
810
|
+
entityLabel: TemplateCategoryEntityLabel,
|
|
811
|
+
toInput: templateCategoryToInput
|
|
812
|
+
};
|
|
813
|
+
const themeEntry = {
|
|
814
|
+
entityName: ThemeEntityName,
|
|
815
|
+
entityLabel: ThemeEntityLabel,
|
|
816
|
+
toInput: themeToInput
|
|
817
|
+
};
|
|
818
|
+
const mediaFolderEntry = {
|
|
819
|
+
entityName: MediaFolderEntityName,
|
|
820
|
+
entityLabel: MediaFolderEntityLabel,
|
|
821
|
+
toInput: mediaFolderToInput
|
|
822
|
+
};
|
|
823
|
+
const postCategoryEntry = {
|
|
824
|
+
entityName: PostCategoryEntityName,
|
|
825
|
+
entityLabel: PostCategoryEntityLabel,
|
|
826
|
+
toInput: postCategoryToInput
|
|
827
|
+
};
|
|
828
|
+
const tagEntry = {
|
|
829
|
+
entityName: TagEntityName,
|
|
830
|
+
entityLabel: TagEntityLabel,
|
|
831
|
+
toInput: tagToInput
|
|
832
|
+
};
|
|
833
|
+
const customerEntry = {
|
|
834
|
+
entityName: CustomerEntityName,
|
|
835
|
+
entityLabel: CustomerEntityLabel,
|
|
836
|
+
toInput: customerToInput
|
|
837
|
+
};
|
|
838
|
+
const productCategoryEntry = {
|
|
839
|
+
entityName: ProductCategoryEntityName,
|
|
840
|
+
entityLabel: ProductCategoryEntityLabel,
|
|
841
|
+
toInput: productCategoryToInput
|
|
842
|
+
};
|
|
843
|
+
function useUserList(queryOptions) {
|
|
844
|
+
return useQueryEntityListWithIndicator(UserEntityName, queryOptions);
|
|
471
845
|
}
|
|
472
|
-
function
|
|
473
|
-
return
|
|
846
|
+
function useOneUser(queryOptions) {
|
|
847
|
+
return useQueryOneEntityWithIndicator(UserEntityName, queryOptions);
|
|
474
848
|
}
|
|
475
|
-
function
|
|
476
|
-
return
|
|
849
|
+
function useUpsertOneUser(options) {
|
|
850
|
+
return useUpsertEntityWithIndicator(UserEntityName, options);
|
|
477
851
|
}
|
|
478
|
-
function
|
|
479
|
-
return
|
|
852
|
+
function useDeleteUserById(options) {
|
|
853
|
+
return useDeleteEntityByIdWithIndicator(UserEntityName, options);
|
|
480
854
|
}
|
|
481
|
-
function
|
|
482
|
-
return
|
|
855
|
+
function useDeleteUser(options) {
|
|
856
|
+
return useDeleteEntitiesWithIndicator(UserEntityName, options);
|
|
483
857
|
}
|
|
484
|
-
function
|
|
485
|
-
return
|
|
858
|
+
function useRoleList(queryOptions) {
|
|
859
|
+
return useQueryEntityListWithIndicator(RoleEntityName, queryOptions);
|
|
486
860
|
}
|
|
487
|
-
function
|
|
488
|
-
return
|
|
861
|
+
function useOneRole(queryOptions) {
|
|
862
|
+
return useQueryOneEntityWithIndicator(RoleEntityName, queryOptions);
|
|
489
863
|
}
|
|
490
|
-
function
|
|
491
|
-
return
|
|
864
|
+
function useUpsertOneRole(options) {
|
|
865
|
+
return useUpsertEntityWithIndicator(RoleEntityName, options);
|
|
492
866
|
}
|
|
493
|
-
function
|
|
494
|
-
return
|
|
867
|
+
function useDeleteRoleById(options) {
|
|
868
|
+
return useDeleteEntityByIdWithIndicator(RoleEntityName, options);
|
|
495
869
|
}
|
|
496
|
-
function
|
|
497
|
-
return
|
|
870
|
+
function useDeleteRole(options) {
|
|
871
|
+
return useDeleteEntitiesWithIndicator(RoleEntityName, options);
|
|
498
872
|
}
|
|
499
|
-
function
|
|
500
|
-
return
|
|
873
|
+
function useAbilityList(queryOptions) {
|
|
874
|
+
return useQueryEntityListWithIndicator(AbilityEntityName, queryOptions);
|
|
501
875
|
}
|
|
502
|
-
function
|
|
503
|
-
return
|
|
876
|
+
function useOneAbility(queryOptions) {
|
|
877
|
+
return useQueryOneEntityWithIndicator(AbilityEntityName, queryOptions);
|
|
504
878
|
}
|
|
505
|
-
function
|
|
506
|
-
return
|
|
879
|
+
function useUpsertOneAbility(options) {
|
|
880
|
+
return useUpsertEntityWithIndicator(AbilityEntityName, options);
|
|
507
881
|
}
|
|
508
|
-
function
|
|
509
|
-
return
|
|
882
|
+
function useDeleteAbilityById(options) {
|
|
883
|
+
return useDeleteEntityByIdWithIndicator(AbilityEntityName, options);
|
|
510
884
|
}
|
|
511
|
-
function
|
|
512
|
-
return
|
|
885
|
+
function useDeleteAbility(options) {
|
|
886
|
+
return useDeleteEntitiesWithIndicator(AbilityEntityName, options);
|
|
513
887
|
}
|
|
514
|
-
function
|
|
515
|
-
return
|
|
888
|
+
function useMediaList(queryOptions) {
|
|
889
|
+
return useQueryEntityListWithIndicator(MediaEntityName, queryOptions);
|
|
516
890
|
}
|
|
517
|
-
function
|
|
518
|
-
return
|
|
891
|
+
function useOneMedia(queryOptions) {
|
|
892
|
+
return useQueryOneEntityWithIndicator(MediaEntityName, queryOptions);
|
|
519
893
|
}
|
|
520
|
-
function
|
|
521
|
-
return
|
|
894
|
+
function useUpsertOneMedia(options) {
|
|
895
|
+
return useUpsertEntityWithIndicator(MediaEntityName, options);
|
|
522
896
|
}
|
|
523
|
-
function
|
|
524
|
-
return
|
|
897
|
+
function useDeleteMediaById(options) {
|
|
898
|
+
return useDeleteEntityByIdWithIndicator(MediaEntityName, options);
|
|
525
899
|
}
|
|
526
|
-
function
|
|
527
|
-
return
|
|
900
|
+
function useDeleteMedia(options) {
|
|
901
|
+
return useDeleteEntitiesWithIndicator(MediaEntityName, options);
|
|
528
902
|
}
|
|
529
|
-
function
|
|
530
|
-
return
|
|
903
|
+
function useWebsiteList(queryOptions) {
|
|
904
|
+
return useQueryEntityListWithIndicator(WebsiteEntityName, queryOptions);
|
|
531
905
|
}
|
|
532
|
-
function
|
|
533
|
-
return
|
|
906
|
+
function useOneWebsite(queryOptions) {
|
|
907
|
+
return useQueryOneEntityWithIndicator(WebsiteEntityName, queryOptions);
|
|
534
908
|
}
|
|
535
|
-
function
|
|
536
|
-
return
|
|
909
|
+
function useUpsertOneWebsite(options) {
|
|
910
|
+
return useUpsertEntityWithIndicator(WebsiteEntityName, options);
|
|
537
911
|
}
|
|
538
|
-
function
|
|
539
|
-
return
|
|
912
|
+
function useDeleteWebsiteById(options) {
|
|
913
|
+
return useDeleteEntityByIdWithIndicator(WebsiteEntityName, options);
|
|
540
914
|
}
|
|
541
|
-
function
|
|
542
|
-
return
|
|
915
|
+
function useDeleteWebsite(options) {
|
|
916
|
+
return useDeleteEntitiesWithIndicator(WebsiteEntityName, options);
|
|
543
917
|
}
|
|
544
|
-
function
|
|
545
|
-
return
|
|
918
|
+
function useLangList(queryOptions) {
|
|
919
|
+
return useQueryEntityListWithIndicator(LangEntityName, queryOptions);
|
|
546
920
|
}
|
|
547
|
-
function
|
|
548
|
-
return
|
|
921
|
+
function useOneLang(queryOptions) {
|
|
922
|
+
return useQueryOneEntityWithIndicator(LangEntityName, queryOptions);
|
|
549
923
|
}
|
|
550
|
-
function
|
|
551
|
-
return
|
|
924
|
+
function useUpsertOneLang(options) {
|
|
925
|
+
return useUpsertEntityWithIndicator(LangEntityName, options);
|
|
552
926
|
}
|
|
553
|
-
function
|
|
554
|
-
return
|
|
927
|
+
function useDeleteLangById(options) {
|
|
928
|
+
return useDeleteEntityByIdWithIndicator(LangEntityName, options);
|
|
555
929
|
}
|
|
556
|
-
function
|
|
557
|
-
return
|
|
930
|
+
function useDeleteLang(options) {
|
|
931
|
+
return useDeleteEntitiesWithIndicator(LangEntityName, options);
|
|
558
932
|
}
|
|
559
|
-
function
|
|
560
|
-
return
|
|
933
|
+
function useWebsiteTypeList(queryOptions) {
|
|
934
|
+
return useQueryEntityListWithIndicator(WebsiteTypeEntityName, queryOptions);
|
|
561
935
|
}
|
|
562
|
-
function
|
|
563
|
-
return
|
|
936
|
+
function useOneWebsiteType(queryOptions) {
|
|
937
|
+
return useQueryOneEntityWithIndicator(WebsiteTypeEntityName, queryOptions);
|
|
564
938
|
}
|
|
565
|
-
function
|
|
566
|
-
return
|
|
939
|
+
function useUpsertOneWebsiteType(options) {
|
|
940
|
+
return useUpsertEntityWithIndicator(WebsiteTypeEntityName, options);
|
|
567
941
|
}
|
|
568
|
-
function
|
|
569
|
-
return
|
|
942
|
+
function useDeleteWebsiteTypeById(options) {
|
|
943
|
+
return useDeleteEntityByIdWithIndicator(WebsiteTypeEntityName, options);
|
|
570
944
|
}
|
|
571
|
-
function
|
|
572
|
-
return
|
|
945
|
+
function useDeleteWebsiteType(options) {
|
|
946
|
+
return useDeleteEntitiesWithIndicator(WebsiteTypeEntityName, options);
|
|
573
947
|
}
|
|
574
|
-
function
|
|
575
|
-
return
|
|
948
|
+
function usePageList(queryOptions) {
|
|
949
|
+
return useQueryEntityListWithIndicator(PageEntityName, queryOptions);
|
|
576
950
|
}
|
|
577
|
-
function
|
|
578
|
-
return
|
|
951
|
+
function useOnePage(queryOptions) {
|
|
952
|
+
return useQueryOneEntityWithIndicator(PageEntityName, queryOptions);
|
|
579
953
|
}
|
|
580
|
-
function
|
|
581
|
-
return
|
|
954
|
+
function useUpsertOnePage(options) {
|
|
955
|
+
return useUpsertEntityWithIndicator(PageEntityName, options);
|
|
582
956
|
}
|
|
583
|
-
function
|
|
584
|
-
return
|
|
957
|
+
function useDeletePageById(options) {
|
|
958
|
+
return useDeleteEntityByIdWithIndicator(PageEntityName, options);
|
|
585
959
|
}
|
|
586
|
-
function
|
|
587
|
-
return
|
|
960
|
+
function useDeletePage(options) {
|
|
961
|
+
return useDeleteEntitiesWithIndicator(PageEntityName, options);
|
|
588
962
|
}
|
|
589
|
-
function
|
|
590
|
-
return
|
|
963
|
+
function usePostList(queryOptions) {
|
|
964
|
+
return useQueryEntityListWithIndicator(PostEntityName, queryOptions);
|
|
591
965
|
}
|
|
592
|
-
function
|
|
593
|
-
return
|
|
966
|
+
function useOnePost(queryOptions) {
|
|
967
|
+
return useQueryOneEntityWithIndicator(PostEntityName, queryOptions);
|
|
594
968
|
}
|
|
595
|
-
function
|
|
596
|
-
return
|
|
969
|
+
function useUpsertOnePost(options) {
|
|
970
|
+
return useUpsertEntityWithIndicator(PostEntityName, options);
|
|
597
971
|
}
|
|
598
|
-
function
|
|
599
|
-
return
|
|
972
|
+
function useDeletePostById(options) {
|
|
973
|
+
return useDeleteEntityByIdWithIndicator(PostEntityName, options);
|
|
600
974
|
}
|
|
601
|
-
function
|
|
602
|
-
return
|
|
975
|
+
function useDeletePost(options) {
|
|
976
|
+
return useDeleteEntitiesWithIndicator(PostEntityName, options);
|
|
603
977
|
}
|
|
604
|
-
function
|
|
605
|
-
return
|
|
978
|
+
function useProductList(queryOptions) {
|
|
979
|
+
return useQueryEntityListWithIndicator(ProductEntityName, queryOptions);
|
|
606
980
|
}
|
|
607
|
-
function
|
|
608
|
-
return
|
|
981
|
+
function useOneProduct(queryOptions) {
|
|
982
|
+
return useQueryOneEntityWithIndicator(ProductEntityName, queryOptions);
|
|
609
983
|
}
|
|
610
|
-
function
|
|
611
|
-
return
|
|
984
|
+
function useUpsertOneProduct(options) {
|
|
985
|
+
return useUpsertEntityWithIndicator(ProductEntityName, options);
|
|
612
986
|
}
|
|
613
|
-
function
|
|
614
|
-
return
|
|
987
|
+
function useDeleteProductById(options) {
|
|
988
|
+
return useDeleteEntityByIdWithIndicator(ProductEntityName, options);
|
|
615
989
|
}
|
|
616
|
-
function
|
|
617
|
-
return
|
|
990
|
+
function useDeleteProduct(options) {
|
|
991
|
+
return useDeleteEntitiesWithIndicator(ProductEntityName, options);
|
|
618
992
|
}
|
|
619
|
-
function
|
|
620
|
-
return
|
|
993
|
+
function useSlugList(queryOptions) {
|
|
994
|
+
return useQueryEntityListWithIndicator(SlugEntityName, queryOptions);
|
|
621
995
|
}
|
|
622
|
-
function
|
|
623
|
-
return
|
|
996
|
+
function useOneSlug(queryOptions) {
|
|
997
|
+
return useQueryOneEntityWithIndicator(SlugEntityName, queryOptions);
|
|
624
998
|
}
|
|
625
|
-
function
|
|
626
|
-
return
|
|
999
|
+
function useUpsertOneSlug(options) {
|
|
1000
|
+
return useUpsertEntityWithIndicator(SlugEntityName, options);
|
|
627
1001
|
}
|
|
628
|
-
function
|
|
629
|
-
return
|
|
1002
|
+
function useDeleteSlugById(options) {
|
|
1003
|
+
return useDeleteEntityByIdWithIndicator(SlugEntityName, options);
|
|
630
1004
|
}
|
|
631
|
-
function
|
|
632
|
-
return
|
|
1005
|
+
function useDeleteSlug(options) {
|
|
1006
|
+
return useDeleteEntitiesWithIndicator(SlugEntityName, options);
|
|
633
1007
|
}
|
|
634
|
-
function
|
|
635
|
-
return
|
|
1008
|
+
function useEnquiryList(queryOptions) {
|
|
1009
|
+
return useQueryEntityListWithIndicator(EnquiryEntityName, queryOptions);
|
|
636
1010
|
}
|
|
637
|
-
function
|
|
638
|
-
return
|
|
1011
|
+
function useOneEnquiry(queryOptions) {
|
|
1012
|
+
return useQueryOneEntityWithIndicator(EnquiryEntityName, queryOptions);
|
|
639
1013
|
}
|
|
640
|
-
function
|
|
641
|
-
return
|
|
1014
|
+
function useUpsertOneEnquiry(options) {
|
|
1015
|
+
return useUpsertEntityWithIndicator(EnquiryEntityName, options);
|
|
642
1016
|
}
|
|
643
|
-
function
|
|
644
|
-
return
|
|
1017
|
+
function useDeleteEnquiryById(options) {
|
|
1018
|
+
return useDeleteEntityByIdWithIndicator(EnquiryEntityName, options);
|
|
645
1019
|
}
|
|
646
|
-
function
|
|
647
|
-
return
|
|
1020
|
+
function useDeleteEnquiry(options) {
|
|
1021
|
+
return useDeleteEntitiesWithIndicator(EnquiryEntityName, options);
|
|
648
1022
|
}
|
|
649
|
-
function
|
|
650
|
-
return
|
|
1023
|
+
function useWebsiteMetaList(queryOptions) {
|
|
1024
|
+
return useQueryEntityListWithIndicator(WebsiteMetaEntityName, queryOptions);
|
|
651
1025
|
}
|
|
652
|
-
function
|
|
653
|
-
return
|
|
1026
|
+
function useOneWebsiteMeta(queryOptions) {
|
|
1027
|
+
return useQueryOneEntityWithIndicator(WebsiteMetaEntityName, queryOptions);
|
|
654
1028
|
}
|
|
655
|
-
function
|
|
656
|
-
return
|
|
1029
|
+
function useUpsertOneWebsiteMeta(options) {
|
|
1030
|
+
return useUpsertEntityWithIndicator(WebsiteMetaEntityName, options);
|
|
657
1031
|
}
|
|
658
|
-
function
|
|
659
|
-
return
|
|
1032
|
+
function useDeleteWebsiteMetaById(options) {
|
|
1033
|
+
return useDeleteEntityByIdWithIndicator(WebsiteMetaEntityName, options);
|
|
660
1034
|
}
|
|
661
|
-
function
|
|
662
|
-
return
|
|
1035
|
+
function useDeleteWebsiteMeta(options) {
|
|
1036
|
+
return useDeleteEntitiesWithIndicator(WebsiteMetaEntityName, options);
|
|
663
1037
|
}
|
|
664
|
-
function
|
|
665
|
-
return
|
|
1038
|
+
function useWebsiteSettingsList(queryOptions) {
|
|
1039
|
+
return useQueryEntityListWithIndicator(WebsiteSettingsEntityName, queryOptions);
|
|
666
1040
|
}
|
|
667
|
-
function
|
|
668
|
-
return
|
|
1041
|
+
function useOneWebsiteSettings(queryOptions) {
|
|
1042
|
+
return useQueryOneEntityWithIndicator(WebsiteSettingsEntityName, queryOptions);
|
|
669
1043
|
}
|
|
670
|
-
function
|
|
671
|
-
return
|
|
1044
|
+
function useUpsertOneWebsiteSettings(options) {
|
|
1045
|
+
return useUpsertEntityWithIndicator(WebsiteSettingsEntityName, options);
|
|
672
1046
|
}
|
|
673
|
-
function
|
|
674
|
-
return
|
|
1047
|
+
function useDeleteWebsiteSettingsById(options) {
|
|
1048
|
+
return useDeleteEntityByIdWithIndicator(WebsiteSettingsEntityName, options);
|
|
675
1049
|
}
|
|
676
|
-
function
|
|
677
|
-
return
|
|
1050
|
+
function useDeleteWebsiteSettings(options) {
|
|
1051
|
+
return useDeleteEntitiesWithIndicator(WebsiteSettingsEntityName, options);
|
|
678
1052
|
}
|
|
679
|
-
function
|
|
680
|
-
return
|
|
1053
|
+
function useTemplateList(queryOptions) {
|
|
1054
|
+
return useQueryEntityListWithIndicator(TemplateEntityName, queryOptions);
|
|
681
1055
|
}
|
|
682
|
-
function
|
|
683
|
-
return
|
|
1056
|
+
function useOneTemplate(queryOptions) {
|
|
1057
|
+
return useQueryOneEntityWithIndicator(TemplateEntityName, queryOptions);
|
|
684
1058
|
}
|
|
685
|
-
function
|
|
686
|
-
return
|
|
1059
|
+
function useUpsertOneTemplate(options) {
|
|
1060
|
+
return useUpsertEntityWithIndicator(TemplateEntityName, options);
|
|
687
1061
|
}
|
|
688
|
-
function
|
|
689
|
-
return
|
|
1062
|
+
function useDeleteTemplateById(options) {
|
|
1063
|
+
return useDeleteEntityByIdWithIndicator(TemplateEntityName, options);
|
|
690
1064
|
}
|
|
691
|
-
function
|
|
692
|
-
return
|
|
1065
|
+
function useDeleteTemplate(options) {
|
|
1066
|
+
return useDeleteEntitiesWithIndicator(TemplateEntityName, options);
|
|
693
1067
|
}
|
|
694
|
-
function
|
|
695
|
-
return
|
|
1068
|
+
function useTemplateCategoryList(queryOptions) {
|
|
1069
|
+
return useQueryEntityListWithIndicator(TemplateCategoryEntityName, queryOptions);
|
|
696
1070
|
}
|
|
697
|
-
function
|
|
698
|
-
return
|
|
1071
|
+
function useOneTemplateCategory(queryOptions) {
|
|
1072
|
+
return useQueryOneEntityWithIndicator(TemplateCategoryEntityName, queryOptions);
|
|
699
1073
|
}
|
|
700
|
-
function
|
|
701
|
-
return
|
|
1074
|
+
function useUpsertOneTemplateCategory(options) {
|
|
1075
|
+
return useUpsertEntityWithIndicator(TemplateCategoryEntityName, options);
|
|
702
1076
|
}
|
|
703
|
-
function
|
|
704
|
-
return
|
|
1077
|
+
function useDeleteTemplateCategoryById(options) {
|
|
1078
|
+
return useDeleteEntityByIdWithIndicator(TemplateCategoryEntityName, options);
|
|
705
1079
|
}
|
|
706
|
-
function
|
|
707
|
-
return
|
|
1080
|
+
function useDeleteTemplateCategory(options) {
|
|
1081
|
+
return useDeleteEntitiesWithIndicator(TemplateCategoryEntityName, options);
|
|
708
1082
|
}
|
|
709
|
-
function
|
|
710
|
-
return
|
|
1083
|
+
function useThemeList(queryOptions) {
|
|
1084
|
+
return useQueryEntityListWithIndicator(ThemeEntityName, queryOptions);
|
|
711
1085
|
}
|
|
712
|
-
function
|
|
713
|
-
return
|
|
1086
|
+
function useOneTheme(queryOptions) {
|
|
1087
|
+
return useQueryOneEntityWithIndicator(ThemeEntityName, queryOptions);
|
|
714
1088
|
}
|
|
715
|
-
function
|
|
716
|
-
return
|
|
1089
|
+
function useUpsertOneTheme(options) {
|
|
1090
|
+
return useUpsertEntityWithIndicator(ThemeEntityName, options);
|
|
717
1091
|
}
|
|
718
|
-
function
|
|
719
|
-
return
|
|
1092
|
+
function useDeleteThemeById(options) {
|
|
1093
|
+
return useDeleteEntityByIdWithIndicator(ThemeEntityName, options);
|
|
720
1094
|
}
|
|
721
|
-
function
|
|
722
|
-
return
|
|
1095
|
+
function useDeleteTheme(options) {
|
|
1096
|
+
return useDeleteEntitiesWithIndicator(ThemeEntityName, options);
|
|
723
1097
|
}
|
|
724
|
-
function
|
|
725
|
-
return
|
|
1098
|
+
function useMediaFolderList(queryOptions) {
|
|
1099
|
+
return useQueryEntityListWithIndicator(MediaFolderEntityName, queryOptions);
|
|
726
1100
|
}
|
|
727
|
-
function
|
|
728
|
-
return
|
|
1101
|
+
function useOneMediaFolder(queryOptions) {
|
|
1102
|
+
return useQueryOneEntityWithIndicator(MediaFolderEntityName, queryOptions);
|
|
729
1103
|
}
|
|
730
|
-
function
|
|
731
|
-
return
|
|
1104
|
+
function useUpsertOneMediaFolder(options) {
|
|
1105
|
+
return useUpsertEntityWithIndicator(MediaFolderEntityName, options);
|
|
732
1106
|
}
|
|
733
|
-
function
|
|
734
|
-
return
|
|
1107
|
+
function useDeleteMediaFolderById(options) {
|
|
1108
|
+
return useDeleteEntityByIdWithIndicator(MediaFolderEntityName, options);
|
|
735
1109
|
}
|
|
736
|
-
function
|
|
737
|
-
return
|
|
1110
|
+
function useDeleteMediaFolder(options) {
|
|
1111
|
+
return useDeleteEntitiesWithIndicator(MediaFolderEntityName, options);
|
|
738
1112
|
}
|
|
739
|
-
function
|
|
740
|
-
return
|
|
1113
|
+
function usePostCategoryList(queryOptions) {
|
|
1114
|
+
return useQueryEntityListWithIndicator(PostCategoryEntityName, queryOptions);
|
|
741
1115
|
}
|
|
742
|
-
function
|
|
743
|
-
return
|
|
1116
|
+
function useOnePostCategory(queryOptions) {
|
|
1117
|
+
return useQueryOneEntityWithIndicator(PostCategoryEntityName, queryOptions);
|
|
744
1118
|
}
|
|
745
|
-
function
|
|
746
|
-
return
|
|
1119
|
+
function useUpsertOnePostCategory(options) {
|
|
1120
|
+
return useUpsertEntityWithIndicator(PostCategoryEntityName, options);
|
|
747
1121
|
}
|
|
748
|
-
function
|
|
749
|
-
return
|
|
1122
|
+
function useDeletePostCategoryById(options) {
|
|
1123
|
+
return useDeleteEntityByIdWithIndicator(PostCategoryEntityName, options);
|
|
750
1124
|
}
|
|
751
|
-
function
|
|
752
|
-
return
|
|
753
|
-
}
|
|
754
|
-
function
|
|
755
|
-
return
|
|
756
|
-
}
|
|
757
|
-
function
|
|
758
|
-
return
|
|
759
|
-
}
|
|
760
|
-
function
|
|
761
|
-
return
|
|
762
|
-
}
|
|
763
|
-
function
|
|
764
|
-
return
|
|
765
|
-
}
|
|
766
|
-
function
|
|
767
|
-
return
|
|
768
|
-
}
|
|
769
|
-
function
|
|
770
|
-
return
|
|
771
|
-
}
|
|
772
|
-
function
|
|
773
|
-
return
|
|
774
|
-
}
|
|
775
|
-
function
|
|
776
|
-
return
|
|
777
|
-
}
|
|
778
|
-
function
|
|
779
|
-
return
|
|
780
|
-
}
|
|
781
|
-
function
|
|
782
|
-
return
|
|
783
|
-
}
|
|
784
|
-
function
|
|
785
|
-
return
|
|
786
|
-
}
|
|
787
|
-
function
|
|
788
|
-
return
|
|
789
|
-
}
|
|
790
|
-
function
|
|
791
|
-
return
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
}
|
|
796
|
-
function
|
|
797
|
-
return
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
return
|
|
852
|
-
})(
|
|
853
|
-
var
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
return
|
|
937
|
-
})(
|
|
938
|
-
var
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1125
|
+
function useDeletePostCategory(options) {
|
|
1126
|
+
return useDeleteEntitiesWithIndicator(PostCategoryEntityName, options);
|
|
1127
|
+
}
|
|
1128
|
+
function useTagList(queryOptions) {
|
|
1129
|
+
return useQueryEntityListWithIndicator(TagEntityName, queryOptions);
|
|
1130
|
+
}
|
|
1131
|
+
function useOneTag(queryOptions) {
|
|
1132
|
+
return useQueryOneEntityWithIndicator(TagEntityName, queryOptions);
|
|
1133
|
+
}
|
|
1134
|
+
function useUpsertOneTag(options) {
|
|
1135
|
+
return useUpsertEntityWithIndicator(TagEntityName, options);
|
|
1136
|
+
}
|
|
1137
|
+
function useDeleteTagById(options) {
|
|
1138
|
+
return useDeleteEntityByIdWithIndicator(TagEntityName, options);
|
|
1139
|
+
}
|
|
1140
|
+
function useDeleteTag(options) {
|
|
1141
|
+
return useDeleteEntitiesWithIndicator(TagEntityName, options);
|
|
1142
|
+
}
|
|
1143
|
+
function useCustomerList(queryOptions) {
|
|
1144
|
+
return useQueryEntityListWithIndicator(CustomerEntityName, queryOptions);
|
|
1145
|
+
}
|
|
1146
|
+
function useOneCustomer(queryOptions) {
|
|
1147
|
+
return useQueryOneEntityWithIndicator(CustomerEntityName, queryOptions);
|
|
1148
|
+
}
|
|
1149
|
+
function useUpsertOneCustomer(options) {
|
|
1150
|
+
return useUpsertEntityWithIndicator(CustomerEntityName, options);
|
|
1151
|
+
}
|
|
1152
|
+
function useDeleteCustomerById(options) {
|
|
1153
|
+
return useDeleteEntityByIdWithIndicator(CustomerEntityName, options);
|
|
1154
|
+
}
|
|
1155
|
+
function useDeleteCustomer(options) {
|
|
1156
|
+
return useDeleteEntitiesWithIndicator(CustomerEntityName, options);
|
|
1157
|
+
}
|
|
1158
|
+
function useProductCategoryList(queryOptions) {
|
|
1159
|
+
return useQueryEntityListWithIndicator(ProductCategoryEntityName, queryOptions);
|
|
1160
|
+
}
|
|
1161
|
+
function useOneProductCategory(queryOptions) {
|
|
1162
|
+
return useQueryOneEntityWithIndicator(ProductCategoryEntityName, queryOptions);
|
|
1163
|
+
}
|
|
1164
|
+
function useUpsertOneProductCategory(options) {
|
|
1165
|
+
return useUpsertEntityWithIndicator(ProductCategoryEntityName, options);
|
|
1166
|
+
}
|
|
1167
|
+
function useDeleteProductCategoryById(options) {
|
|
1168
|
+
return useDeleteEntityByIdWithIndicator(ProductCategoryEntityName, options);
|
|
1169
|
+
}
|
|
1170
|
+
function useDeleteProductCategory(options) {
|
|
1171
|
+
return useDeleteEntitiesWithIndicator(ProductCategoryEntityName, options);
|
|
1172
|
+
}
|
|
1173
|
+
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
1174
|
+
UserFields2["id"] = "id";
|
|
1175
|
+
UserFields2["loginName"] = "loginName";
|
|
1176
|
+
UserFields2["name"] = "name";
|
|
1177
|
+
UserFields2["mobileNumber"] = "mobileNumber";
|
|
1178
|
+
UserFields2["isSupperAdmin"] = "isSupperAdmin";
|
|
1179
|
+
UserFields2["password"] = "password";
|
|
1180
|
+
UserFields2["createdAt"] = "createdAt";
|
|
1181
|
+
UserFields2["updatedAt"] = "updatedAt";
|
|
1182
|
+
UserFields2["postion"] = "postion";
|
|
1183
|
+
UserFields2["profile"] = "profile";
|
|
1184
|
+
UserFields2["userType"] = "userType";
|
|
1185
|
+
UserFields2["email"] = "email";
|
|
1186
|
+
UserFields2["tel"] = "tel";
|
|
1187
|
+
UserFields2["tel2"] = "tel2";
|
|
1188
|
+
UserFields2["mobile"] = "mobile";
|
|
1189
|
+
UserFields2["whatsApp"] = "whatsApp";
|
|
1190
|
+
UserFields2["linkedIn"] = "linkedIn";
|
|
1191
|
+
UserFields2["twitter"] = "twitter";
|
|
1192
|
+
UserFields2["facebook"] = "facebook";
|
|
1193
|
+
UserFields2["instagram"] = "instagram";
|
|
1194
|
+
UserFields2["summary"] = "summary";
|
|
1195
|
+
UserFields2["roles"] = "roles";
|
|
1196
|
+
UserFields2["rolesAggregate"] = "rolesAggregate";
|
|
1197
|
+
UserFields2["avatar"] = "avatar";
|
|
1198
|
+
UserFields2["products"] = "products";
|
|
1199
|
+
UserFields2["productsAggregate"] = "productsAggregate";
|
|
1200
|
+
UserFields2["posts"] = "posts";
|
|
1201
|
+
UserFields2["postsAggregate"] = "postsAggregate";
|
|
1202
|
+
UserFields2["websites"] = "websites";
|
|
1203
|
+
UserFields2["websitesAggregate"] = "websitesAggregate";
|
|
1204
|
+
UserFields2["belongsTo"] = "belongsTo";
|
|
1205
|
+
return UserFields2;
|
|
1206
|
+
})(UserFields || {});
|
|
1207
|
+
var RoleFields = /* @__PURE__ */ ((RoleFields2) => {
|
|
1208
|
+
RoleFields2["id"] = "id";
|
|
1209
|
+
RoleFields2["name"] = "name";
|
|
1210
|
+
RoleFields2["description"] = "description";
|
|
1211
|
+
RoleFields2["createdAt"] = "createdAt";
|
|
1212
|
+
RoleFields2["updatedAt"] = "updatedAt";
|
|
1213
|
+
RoleFields2["users"] = "users";
|
|
1214
|
+
RoleFields2["usersAggregate"] = "usersAggregate";
|
|
1215
|
+
return RoleFields2;
|
|
1216
|
+
})(RoleFields || {});
|
|
1217
|
+
var AbilityFields = /* @__PURE__ */ ((AbilityFields2) => {
|
|
1218
|
+
AbilityFields2["id"] = "id";
|
|
1219
|
+
AbilityFields2["entityUuid"] = "entityUuid";
|
|
1220
|
+
AbilityFields2["columnUuid"] = "columnUuid";
|
|
1221
|
+
AbilityFields2["can"] = "can";
|
|
1222
|
+
AbilityFields2["expression"] = "expression";
|
|
1223
|
+
AbilityFields2["abilityType"] = "abilityType";
|
|
1224
|
+
AbilityFields2["roleId"] = "roleId";
|
|
1225
|
+
return AbilityFields2;
|
|
1226
|
+
})(AbilityFields || {});
|
|
1227
|
+
var MediaFields = /* @__PURE__ */ ((MediaFields2) => {
|
|
1228
|
+
MediaFields2["id"] = "id";
|
|
1229
|
+
MediaFields2["name"] = "name";
|
|
1230
|
+
MediaFields2["size"] = "size";
|
|
1231
|
+
MediaFields2["mimeType"] = "mimeType";
|
|
1232
|
+
MediaFields2["extName"] = "extName";
|
|
1233
|
+
MediaFields2["file"] = "file";
|
|
1234
|
+
MediaFields2["description"] = "description";
|
|
1235
|
+
MediaFields2["createdAt"] = "createdAt";
|
|
1236
|
+
MediaFields2["updatedAt"] = "updatedAt";
|
|
1237
|
+
MediaFields2["mediaType"] = "mediaType";
|
|
1238
|
+
MediaFields2["websiteId"] = "websiteId";
|
|
1239
|
+
MediaFields2["folder"] = "folder";
|
|
1240
|
+
MediaFields2["avatarOfUser"] = "avatarOfUser";
|
|
1241
|
+
MediaFields2["usedByProducts"] = "usedByProducts";
|
|
1242
|
+
MediaFields2["usedByProductsAggregate"] = "usedByProductsAggregate";
|
|
1243
|
+
return MediaFields2;
|
|
1244
|
+
})(MediaFields || {});
|
|
1245
|
+
var WebsiteFields = /* @__PURE__ */ ((WebsiteFields2) => {
|
|
1246
|
+
WebsiteFields2["id"] = "id";
|
|
1247
|
+
WebsiteFields2["name"] = "name";
|
|
1248
|
+
WebsiteFields2["remark"] = "remark";
|
|
1249
|
+
WebsiteFields2["createdBy"] = "createdBy";
|
|
1250
|
+
WebsiteFields2["createdAt"] = "createdAt";
|
|
1251
|
+
WebsiteFields2["lastOpenTime"] = "lastOpenTime";
|
|
1252
|
+
WebsiteFields2["updatedAt"] = "updatedAt";
|
|
1253
|
+
WebsiteFields2["updatedBy"] = "updatedBy";
|
|
1254
|
+
WebsiteFields2["websiteType"] = "websiteType";
|
|
1255
|
+
WebsiteFields2["selectedTheme"] = "selectedTheme";
|
|
1256
|
+
WebsiteFields2["homePage"] = "homePage";
|
|
1257
|
+
WebsiteFields2["owner"] = "owner";
|
|
1258
|
+
WebsiteFields2["users"] = "users";
|
|
1259
|
+
WebsiteFields2["usersAggregate"] = "usersAggregate";
|
|
1260
|
+
return WebsiteFields2;
|
|
1261
|
+
})(WebsiteFields || {});
|
|
1262
|
+
var LangFields = /* @__PURE__ */ ((LangFields2) => {
|
|
1263
|
+
LangFields2["id"] = "id";
|
|
1264
|
+
LangFields2["abbr"] = "abbr";
|
|
1265
|
+
LangFields2["enName"] = "enName";
|
|
1266
|
+
LangFields2["localName"] = "localName";
|
|
1267
|
+
LangFields2["icon"] = "icon";
|
|
1268
|
+
LangFields2["remark"] = "remark";
|
|
1269
|
+
LangFields2["websiteId"] = "websiteId";
|
|
1270
|
+
LangFields2["createdAt"] = "createdAt";
|
|
1271
|
+
LangFields2["updatedAt"] = "updatedAt";
|
|
1272
|
+
return LangFields2;
|
|
1273
|
+
})(LangFields || {});
|
|
1274
|
+
var WebsiteTypeFields = /* @__PURE__ */ ((WebsiteTypeFields2) => {
|
|
1275
|
+
WebsiteTypeFields2["id"] = "id";
|
|
1276
|
+
WebsiteTypeFields2["name"] = "name";
|
|
1277
|
+
WebsiteTypeFields2["displayName"] = "displayName";
|
|
1278
|
+
WebsiteTypeFields2["pricePerMonth"] = "pricePerMonth";
|
|
1279
|
+
WebsiteTypeFields2["pricePerYear"] = "pricePerYear";
|
|
1280
|
+
WebsiteTypeFields2["remark"] = "remark";
|
|
1281
|
+
WebsiteTypeFields2["createdAt"] = "createdAt";
|
|
1282
|
+
WebsiteTypeFields2["updatedAt"] = "updatedAt";
|
|
1283
|
+
WebsiteTypeFields2["status"] = "status";
|
|
1284
|
+
WebsiteTypeFields2["level"] = "level";
|
|
1285
|
+
WebsiteTypeFields2["websites"] = "websites";
|
|
1286
|
+
WebsiteTypeFields2["websitesAggregate"] = "websitesAggregate";
|
|
1287
|
+
return WebsiteTypeFields2;
|
|
1288
|
+
})(WebsiteTypeFields || {});
|
|
1289
|
+
var PageFields = /* @__PURE__ */ ((PageFields2) => {
|
|
1290
|
+
PageFields2["id"] = "id";
|
|
1291
|
+
PageFields2["title"] = "title";
|
|
1292
|
+
PageFields2["content"] = "content";
|
|
1293
|
+
PageFields2["remark"] = "remark";
|
|
1294
|
+
PageFields2["langAbbr"] = "langAbbr";
|
|
1295
|
+
PageFields2["extends"] = "extends";
|
|
1296
|
+
PageFields2["websiteId"] = "websiteId";
|
|
1297
|
+
PageFields2["createdAt"] = "createdAt";
|
|
1298
|
+
PageFields2["updatedAt"] = "updatedAt";
|
|
1299
|
+
PageFields2["seoTitle"] = "seoTitle";
|
|
1300
|
+
PageFields2["seoKeywords"] = "seoKeywords";
|
|
1301
|
+
PageFields2["seoDescription"] = "seoDescription";
|
|
1302
|
+
PageFields2["ogTitle"] = "ogTitle";
|
|
1303
|
+
PageFields2["ogDescription"] = "ogDescription";
|
|
1304
|
+
PageFields2["ogImageUrl"] = "ogImageUrl";
|
|
1305
|
+
PageFields2["ogUrl"] = "ogUrl";
|
|
1306
|
+
PageFields2["ogSiteName"] = "ogSiteName";
|
|
1307
|
+
PageFields2["ogType"] = "ogType";
|
|
1308
|
+
PageFields2["lang"] = "lang";
|
|
1309
|
+
PageFields2["slug"] = "slug";
|
|
1310
|
+
return PageFields2;
|
|
1311
|
+
})(PageFields || {});
|
|
1312
|
+
var PostFields = /* @__PURE__ */ ((PostFields2) => {
|
|
1313
|
+
PostFields2["id"] = "id";
|
|
1314
|
+
PostFields2["seqValue"] = "seqValue";
|
|
1315
|
+
PostFields2["pinToTop"] = "pinToTop";
|
|
1316
|
+
PostFields2["authorEmail"] = "authorEmail";
|
|
1317
|
+
PostFields2["summary"] = "summary";
|
|
1318
|
+
PostFields2["publishedContent"] = "publishedContent";
|
|
1319
|
+
PostFields2["publishedAt"] = "publishedAt";
|
|
1320
|
+
PostFields2["status"] = "status";
|
|
1321
|
+
PostFields2["title"] = "title";
|
|
1322
|
+
PostFields2["content"] = "content";
|
|
1323
|
+
PostFields2["extends"] = "extends";
|
|
1324
|
+
PostFields2["websiteId"] = "websiteId";
|
|
1325
|
+
PostFields2["createdAt"] = "createdAt";
|
|
1326
|
+
PostFields2["updatedAt"] = "updatedAt";
|
|
1327
|
+
PostFields2["remark"] = "remark";
|
|
1328
|
+
PostFields2["seoTitle"] = "seoTitle";
|
|
1329
|
+
PostFields2["seoKeywords"] = "seoKeywords";
|
|
1330
|
+
PostFields2["seoDescription"] = "seoDescription";
|
|
1331
|
+
PostFields2["ogTitle"] = "ogTitle";
|
|
1332
|
+
PostFields2["ogDescription"] = "ogDescription";
|
|
1333
|
+
PostFields2["ogImageUrl"] = "ogImageUrl";
|
|
1334
|
+
PostFields2["ogUrl"] = "ogUrl";
|
|
1335
|
+
PostFields2["ogSiteName"] = "ogSiteName";
|
|
1336
|
+
PostFields2["ogType"] = "ogType";
|
|
1337
|
+
PostFields2["lang"] = "lang";
|
|
1338
|
+
PostFields2["slug"] = "slug";
|
|
1339
|
+
PostFields2["tags"] = "tags";
|
|
1340
|
+
PostFields2["tagsAggregate"] = "tagsAggregate";
|
|
1341
|
+
PostFields2["author"] = "author";
|
|
1342
|
+
PostFields2["cover"] = "cover";
|
|
1343
|
+
PostFields2["category"] = "category";
|
|
1344
|
+
return PostFields2;
|
|
1345
|
+
})(PostFields || {});
|
|
1346
|
+
var ProductFields = /* @__PURE__ */ ((ProductFields2) => {
|
|
1347
|
+
ProductFields2["id"] = "id";
|
|
1348
|
+
ProductFields2["published"] = "published";
|
|
1349
|
+
ProductFields2["summary"] = "summary";
|
|
1350
|
+
ProductFields2["publishedContent"] = "publishedContent";
|
|
1351
|
+
ProductFields2["publishedAt"] = "publishedAt";
|
|
1352
|
+
ProductFields2["status"] = "status";
|
|
1353
|
+
ProductFields2["title"] = "title";
|
|
1354
|
+
ProductFields2["content"] = "content";
|
|
1355
|
+
ProductFields2["extends"] = "extends";
|
|
1356
|
+
ProductFields2["websiteId"] = "websiteId";
|
|
1357
|
+
ProductFields2["createdAt"] = "createdAt";
|
|
1358
|
+
ProductFields2["updatedAt"] = "updatedAt";
|
|
1359
|
+
ProductFields2["remark"] = "remark";
|
|
1360
|
+
ProductFields2["seoTitle"] = "seoTitle";
|
|
1361
|
+
ProductFields2["seoKeywords"] = "seoKeywords";
|
|
1362
|
+
ProductFields2["seoDescription"] = "seoDescription";
|
|
1363
|
+
ProductFields2["ogTitle"] = "ogTitle";
|
|
1364
|
+
ProductFields2["ogDescription"] = "ogDescription";
|
|
1365
|
+
ProductFields2["ogImageUrl"] = "ogImageUrl";
|
|
1366
|
+
ProductFields2["ogUrl"] = "ogUrl";
|
|
1367
|
+
ProductFields2["ogSiteName"] = "ogSiteName";
|
|
1368
|
+
ProductFields2["ogType"] = "ogType";
|
|
1369
|
+
ProductFields2["lang"] = "lang";
|
|
1370
|
+
ProductFields2["category"] = "category";
|
|
1371
|
+
ProductFields2["medias"] = "medias";
|
|
1372
|
+
ProductFields2["mediasAggregate"] = "mediasAggregate";
|
|
1373
|
+
ProductFields2["slug"] = "slug";
|
|
1374
|
+
ProductFields2["tags"] = "tags";
|
|
1375
|
+
ProductFields2["tagsAggregate"] = "tagsAggregate";
|
|
1376
|
+
ProductFields2["creator"] = "creator";
|
|
1377
|
+
return ProductFields2;
|
|
1378
|
+
})(ProductFields || {});
|
|
1379
|
+
var SlugFields = /* @__PURE__ */ ((SlugFields2) => {
|
|
1380
|
+
SlugFields2["id"] = "id";
|
|
1381
|
+
SlugFields2["uniqueName"] = "uniqueName";
|
|
1382
|
+
SlugFields2["websiteId"] = "websiteId";
|
|
1383
|
+
SlugFields2["createdAt"] = "createdAt";
|
|
1384
|
+
SlugFields2["updatedAt"] = "updatedAt";
|
|
1385
|
+
SlugFields2["remark"] = "remark";
|
|
1386
|
+
SlugFields2["post"] = "post";
|
|
1387
|
+
SlugFields2["product"] = "product";
|
|
1388
|
+
SlugFields2["page"] = "page";
|
|
1389
|
+
return SlugFields2;
|
|
1390
|
+
})(SlugFields || {});
|
|
1391
|
+
var EnquiryFields = /* @__PURE__ */ ((EnquiryFields2) => {
|
|
1392
|
+
EnquiryFields2["id"] = "id";
|
|
1393
|
+
EnquiryFields2["title"] = "title";
|
|
1394
|
+
EnquiryFields2["content"] = "content";
|
|
1395
|
+
EnquiryFields2["websiteId"] = "websiteId";
|
|
1396
|
+
EnquiryFields2["createdAt"] = "createdAt";
|
|
1397
|
+
EnquiryFields2["updatedAt"] = "updatedAt";
|
|
1398
|
+
EnquiryFields2["remark"] = "remark";
|
|
1399
|
+
EnquiryFields2["customer"] = "customer";
|
|
1400
|
+
return EnquiryFields2;
|
|
1401
|
+
})(EnquiryFields || {});
|
|
1402
|
+
var WebsiteMetaFields = /* @__PURE__ */ ((WebsiteMetaFields2) => {
|
|
1403
|
+
WebsiteMetaFields2["id"] = "id";
|
|
1404
|
+
return WebsiteMetaFields2;
|
|
1405
|
+
})(WebsiteMetaFields || {});
|
|
1406
|
+
var WebsiteSettingsFields = /* @__PURE__ */ ((WebsiteSettingsFields2) => {
|
|
1407
|
+
WebsiteSettingsFields2["id"] = "id";
|
|
1408
|
+
WebsiteSettingsFields2["smtpConfig"] = "smtpConfig";
|
|
1409
|
+
WebsiteSettingsFields2["websiteId"] = "websiteId";
|
|
1410
|
+
WebsiteSettingsFields2["createdAt"] = "createdAt";
|
|
1411
|
+
WebsiteSettingsFields2["updatedAt"] = "updatedAt";
|
|
1412
|
+
WebsiteSettingsFields2["remark"] = "remark";
|
|
1413
|
+
return WebsiteSettingsFields2;
|
|
1414
|
+
})(WebsiteSettingsFields || {});
|
|
1415
|
+
var TemplateFields = /* @__PURE__ */ ((TemplateFields2) => {
|
|
1416
|
+
TemplateFields2["id"] = "id";
|
|
1417
|
+
TemplateFields2["name"] = "name";
|
|
1418
|
+
TemplateFields2["seqValue"] = "seqValue";
|
|
1419
|
+
TemplateFields2["content"] = "content";
|
|
1420
|
+
TemplateFields2["templateType"] = "templateType";
|
|
1421
|
+
TemplateFields2["websiteId"] = "websiteId";
|
|
1422
|
+
TemplateFields2["createdAt"] = "createdAt";
|
|
1423
|
+
TemplateFields2["updatedAt"] = "updatedAt";
|
|
1424
|
+
TemplateFields2["remark"] = "remark";
|
|
1425
|
+
TemplateFields2["category"] = "category";
|
|
1426
|
+
TemplateFields2["theme"] = "theme";
|
|
1427
|
+
return TemplateFields2;
|
|
1428
|
+
})(TemplateFields || {});
|
|
1429
|
+
var TemplateCategoryFields = /* @__PURE__ */ ((TemplateCategoryFields2) => {
|
|
1430
|
+
TemplateCategoryFields2["id"] = "id";
|
|
1431
|
+
TemplateCategoryFields2["name"] = "name";
|
|
1432
|
+
TemplateCategoryFields2["seqValue"] = "seqValue";
|
|
1433
|
+
TemplateCategoryFields2["websiteId"] = "websiteId";
|
|
1434
|
+
TemplateCategoryFields2["createdAt"] = "createdAt";
|
|
1435
|
+
TemplateCategoryFields2["updatedAt"] = "updatedAt";
|
|
1436
|
+
TemplateCategoryFields2["remark"] = "remark";
|
|
1437
|
+
TemplateCategoryFields2["templates"] = "templates";
|
|
1438
|
+
TemplateCategoryFields2["templatesAggregate"] = "templatesAggregate";
|
|
1439
|
+
TemplateCategoryFields2["theme"] = "theme";
|
|
1440
|
+
return TemplateCategoryFields2;
|
|
1441
|
+
})(TemplateCategoryFields || {});
|
|
1442
|
+
var ThemeFields = /* @__PURE__ */ ((ThemeFields2) => {
|
|
1443
|
+
ThemeFields2["id"] = "id";
|
|
1444
|
+
ThemeFields2["name"] = "name";
|
|
1445
|
+
ThemeFields2["styles"] = "styles";
|
|
1446
|
+
ThemeFields2["settings"] = "settings";
|
|
1447
|
+
ThemeFields2["websiteId"] = "websiteId";
|
|
1448
|
+
ThemeFields2["createdAt"] = "createdAt";
|
|
1449
|
+
ThemeFields2["updatedAt"] = "updatedAt";
|
|
1450
|
+
ThemeFields2["remark"] = "remark";
|
|
1451
|
+
ThemeFields2["templates"] = "templates";
|
|
1452
|
+
ThemeFields2["templatesAggregate"] = "templatesAggregate";
|
|
1453
|
+
ThemeFields2["themlateCategories"] = "themlateCategories";
|
|
1454
|
+
ThemeFields2["themlateCategoriesAggregate"] = "themlateCategoriesAggregate";
|
|
1455
|
+
return ThemeFields2;
|
|
1456
|
+
})(ThemeFields || {});
|
|
1457
|
+
var MediaFolderFields = /* @__PURE__ */ ((MediaFolderFields2) => {
|
|
1458
|
+
MediaFolderFields2["id"] = "id";
|
|
1459
|
+
MediaFolderFields2["name"] = "name";
|
|
1460
|
+
MediaFolderFields2["seqValue"] = "seqValue";
|
|
1461
|
+
MediaFolderFields2["websiteId"] = "websiteId";
|
|
1462
|
+
MediaFolderFields2["createdAt"] = "createdAt";
|
|
1463
|
+
MediaFolderFields2["updatedAt"] = "updatedAt";
|
|
1464
|
+
MediaFolderFields2["remark"] = "remark";
|
|
1465
|
+
MediaFolderFields2["children"] = "children";
|
|
1466
|
+
MediaFolderFields2["childrenAggregate"] = "childrenAggregate";
|
|
1467
|
+
MediaFolderFields2["parent"] = "parent";
|
|
1468
|
+
MediaFolderFields2["medias"] = "medias";
|
|
1469
|
+
MediaFolderFields2["mediasAggregate"] = "mediasAggregate";
|
|
1470
|
+
return MediaFolderFields2;
|
|
1471
|
+
})(MediaFolderFields || {});
|
|
1472
|
+
var WebsitePartFields = /* @__PURE__ */ ((WebsitePartFields2) => {
|
|
1473
|
+
WebsitePartFields2["id"] = "id";
|
|
1474
|
+
WebsitePartFields2["websiteId"] = "websiteId";
|
|
1475
|
+
WebsitePartFields2["createdAt"] = "createdAt";
|
|
1476
|
+
WebsitePartFields2["updatedAt"] = "updatedAt";
|
|
1477
|
+
WebsitePartFields2["remark"] = "remark";
|
|
1478
|
+
return WebsitePartFields2;
|
|
1479
|
+
})(WebsitePartFields || {});
|
|
1480
|
+
var WebsiteContentFields = /* @__PURE__ */ ((WebsiteContentFields2) => {
|
|
1481
|
+
WebsiteContentFields2["id"] = "id";
|
|
1482
|
+
WebsiteContentFields2["title"] = "title";
|
|
1483
|
+
WebsiteContentFields2["content"] = "content";
|
|
1484
|
+
WebsiteContentFields2["extends"] = "extends";
|
|
1485
|
+
WebsiteContentFields2["websiteId"] = "websiteId";
|
|
1486
|
+
WebsiteContentFields2["createdAt"] = "createdAt";
|
|
1487
|
+
WebsiteContentFields2["updatedAt"] = "updatedAt";
|
|
1488
|
+
WebsiteContentFields2["remark"] = "remark";
|
|
1489
|
+
WebsiteContentFields2["seoTitle"] = "seoTitle";
|
|
1490
|
+
WebsiteContentFields2["seoKeywords"] = "seoKeywords";
|
|
1491
|
+
WebsiteContentFields2["seoDescription"] = "seoDescription";
|
|
1492
|
+
WebsiteContentFields2["ogTitle"] = "ogTitle";
|
|
1493
|
+
WebsiteContentFields2["ogDescription"] = "ogDescription";
|
|
1494
|
+
WebsiteContentFields2["ogImageUrl"] = "ogImageUrl";
|
|
1495
|
+
WebsiteContentFields2["ogUrl"] = "ogUrl";
|
|
1496
|
+
WebsiteContentFields2["ogSiteName"] = "ogSiteName";
|
|
1497
|
+
WebsiteContentFields2["ogType"] = "ogType";
|
|
1498
|
+
WebsiteContentFields2["lang"] = "lang";
|
|
1499
|
+
return WebsiteContentFields2;
|
|
1500
|
+
})(WebsiteContentFields || {});
|
|
1501
|
+
var PostCategoryFields = /* @__PURE__ */ ((PostCategoryFields2) => {
|
|
1502
|
+
PostCategoryFields2["id"] = "id";
|
|
1503
|
+
PostCategoryFields2["name"] = "name";
|
|
1504
|
+
PostCategoryFields2["seqValue"] = "seqValue";
|
|
1505
|
+
PostCategoryFields2["websiteId"] = "websiteId";
|
|
1506
|
+
PostCategoryFields2["createdAt"] = "createdAt";
|
|
1507
|
+
PostCategoryFields2["updatedAt"] = "updatedAt";
|
|
1508
|
+
PostCategoryFields2["remark"] = "remark";
|
|
1509
|
+
PostCategoryFields2["children"] = "children";
|
|
1510
|
+
PostCategoryFields2["childrenAggregate"] = "childrenAggregate";
|
|
1511
|
+
PostCategoryFields2["posts"] = "posts";
|
|
1512
|
+
PostCategoryFields2["postsAggregate"] = "postsAggregate";
|
|
1513
|
+
PostCategoryFields2["parent"] = "parent";
|
|
1514
|
+
return PostCategoryFields2;
|
|
1515
|
+
})(PostCategoryFields || {});
|
|
1516
|
+
var TagFields = /* @__PURE__ */ ((TagFields2) => {
|
|
1517
|
+
TagFields2["id"] = "id";
|
|
1518
|
+
TagFields2["name"] = "name";
|
|
1519
|
+
TagFields2["color"] = "color";
|
|
1520
|
+
TagFields2["websiteId"] = "websiteId";
|
|
1521
|
+
TagFields2["createdAt"] = "createdAt";
|
|
1522
|
+
TagFields2["updatedAt"] = "updatedAt";
|
|
1523
|
+
TagFields2["remark"] = "remark";
|
|
1524
|
+
TagFields2["posts"] = "posts";
|
|
1525
|
+
TagFields2["postsAggregate"] = "postsAggregate";
|
|
1526
|
+
TagFields2["products"] = "products";
|
|
1527
|
+
TagFields2["productsAggregate"] = "productsAggregate";
|
|
1528
|
+
return TagFields2;
|
|
1529
|
+
})(TagFields || {});
|
|
1530
|
+
var SeoMetaFields = /* @__PURE__ */ ((SeoMetaFields2) => {
|
|
1531
|
+
SeoMetaFields2["id"] = "id";
|
|
1532
|
+
SeoMetaFields2["seoTitle"] = "seoTitle";
|
|
1533
|
+
SeoMetaFields2["seoKeywords"] = "seoKeywords";
|
|
1534
|
+
SeoMetaFields2["seoDescription"] = "seoDescription";
|
|
1535
|
+
return SeoMetaFields2;
|
|
1536
|
+
})(SeoMetaFields || {});
|
|
1537
|
+
var OgMetaFields = /* @__PURE__ */ ((OgMetaFields2) => {
|
|
1538
|
+
OgMetaFields2["id"] = "id";
|
|
1539
|
+
OgMetaFields2["ogTitle"] = "ogTitle";
|
|
1540
|
+
OgMetaFields2["ogDescription"] = "ogDescription";
|
|
1541
|
+
OgMetaFields2["ogImageUrl"] = "ogImageUrl";
|
|
1542
|
+
OgMetaFields2["ogUrl"] = "ogUrl";
|
|
1543
|
+
OgMetaFields2["ogSiteName"] = "ogSiteName";
|
|
1544
|
+
OgMetaFields2["ogType"] = "ogType";
|
|
1545
|
+
return OgMetaFields2;
|
|
1546
|
+
})(OgMetaFields || {});
|
|
1547
|
+
var PublishableFields = /* @__PURE__ */ ((PublishableFields2) => {
|
|
1548
|
+
PublishableFields2["id"] = "id";
|
|
1549
|
+
PublishableFields2["publishedContent"] = "publishedContent";
|
|
1550
|
+
PublishableFields2["publishedAt"] = "publishedAt";
|
|
1551
|
+
PublishableFields2["status"] = "status";
|
|
1552
|
+
PublishableFields2["title"] = "title";
|
|
1553
|
+
PublishableFields2["content"] = "content";
|
|
1554
|
+
PublishableFields2["extends"] = "extends";
|
|
1555
|
+
PublishableFields2["websiteId"] = "websiteId";
|
|
1556
|
+
PublishableFields2["createdAt"] = "createdAt";
|
|
1557
|
+
PublishableFields2["updatedAt"] = "updatedAt";
|
|
1558
|
+
PublishableFields2["remark"] = "remark";
|
|
1559
|
+
PublishableFields2["seoTitle"] = "seoTitle";
|
|
1560
|
+
PublishableFields2["seoKeywords"] = "seoKeywords";
|
|
1561
|
+
PublishableFields2["seoDescription"] = "seoDescription";
|
|
1562
|
+
PublishableFields2["ogTitle"] = "ogTitle";
|
|
1563
|
+
PublishableFields2["ogDescription"] = "ogDescription";
|
|
1564
|
+
PublishableFields2["ogImageUrl"] = "ogImageUrl";
|
|
1565
|
+
PublishableFields2["ogUrl"] = "ogUrl";
|
|
1566
|
+
PublishableFields2["ogSiteName"] = "ogSiteName";
|
|
1567
|
+
PublishableFields2["ogType"] = "ogType";
|
|
1568
|
+
PublishableFields2["lang"] = "lang";
|
|
1569
|
+
return PublishableFields2;
|
|
1570
|
+
})(PublishableFields || {});
|
|
1571
|
+
var PersonFields = /* @__PURE__ */ ((PersonFields2) => {
|
|
1572
|
+
PersonFields2["id"] = "id";
|
|
1573
|
+
PersonFields2["email"] = "email";
|
|
1574
|
+
PersonFields2["tel"] = "tel";
|
|
1575
|
+
PersonFields2["tel2"] = "tel2";
|
|
1576
|
+
PersonFields2["name"] = "name";
|
|
1577
|
+
PersonFields2["mobile"] = "mobile";
|
|
1578
|
+
PersonFields2["whatsApp"] = "whatsApp";
|
|
1579
|
+
PersonFields2["linkedIn"] = "linkedIn";
|
|
1580
|
+
PersonFields2["twitter"] = "twitter";
|
|
1581
|
+
PersonFields2["facebook"] = "facebook";
|
|
1582
|
+
PersonFields2["instagram"] = "instagram";
|
|
1583
|
+
PersonFields2["summary"] = "summary";
|
|
1584
|
+
return PersonFields2;
|
|
1585
|
+
})(PersonFields || {});
|
|
1586
|
+
var CustomerFields = /* @__PURE__ */ ((CustomerFields2) => {
|
|
1587
|
+
CustomerFields2["id"] = "id";
|
|
1588
|
+
CustomerFields2["websiteId"] = "websiteId";
|
|
1589
|
+
CustomerFields2["createdAt"] = "createdAt";
|
|
1590
|
+
CustomerFields2["updatedAt"] = "updatedAt";
|
|
1591
|
+
CustomerFields2["remark"] = "remark";
|
|
1592
|
+
CustomerFields2["email"] = "email";
|
|
1593
|
+
CustomerFields2["tel"] = "tel";
|
|
1594
|
+
CustomerFields2["tel2"] = "tel2";
|
|
1595
|
+
CustomerFields2["name"] = "name";
|
|
1596
|
+
CustomerFields2["mobile"] = "mobile";
|
|
1597
|
+
CustomerFields2["whatsApp"] = "whatsApp";
|
|
1598
|
+
CustomerFields2["linkedIn"] = "linkedIn";
|
|
1599
|
+
CustomerFields2["twitter"] = "twitter";
|
|
1600
|
+
CustomerFields2["facebook"] = "facebook";
|
|
1601
|
+
CustomerFields2["instagram"] = "instagram";
|
|
1602
|
+
CustomerFields2["summary"] = "summary";
|
|
1603
|
+
CustomerFields2["enquires"] = "enquires";
|
|
1604
|
+
CustomerFields2["enquiresAggregate"] = "enquiresAggregate";
|
|
1605
|
+
return CustomerFields2;
|
|
1606
|
+
})(CustomerFields || {});
|
|
1607
|
+
var BaseEntityFields = /* @__PURE__ */ ((BaseEntityFields2) => {
|
|
1608
|
+
BaseEntityFields2["id"] = "id";
|
|
1609
|
+
BaseEntityFields2["createdAt"] = "createdAt";
|
|
1610
|
+
BaseEntityFields2["updatedAt"] = "updatedAt";
|
|
1611
|
+
BaseEntityFields2["remark"] = "remark";
|
|
1612
|
+
return BaseEntityFields2;
|
|
1613
|
+
})(BaseEntityFields || {});
|
|
1614
|
+
var MultiLangableFields = /* @__PURE__ */ ((MultiLangableFields2) => {
|
|
1615
|
+
MultiLangableFields2["id"] = "id";
|
|
1616
|
+
MultiLangableFields2["lang"] = "lang";
|
|
1617
|
+
return MultiLangableFields2;
|
|
1618
|
+
})(MultiLangableFields || {});
|
|
1619
|
+
var WebsiteUserFields = /* @__PURE__ */ ((WebsiteUserFields2) => {
|
|
1620
|
+
WebsiteUserFields2["id"] = "id";
|
|
1621
|
+
WebsiteUserFields2["postion"] = "postion";
|
|
1622
|
+
WebsiteUserFields2["profile"] = "profile";
|
|
1623
|
+
WebsiteUserFields2["userType"] = "userType";
|
|
1624
|
+
WebsiteUserFields2["email"] = "email";
|
|
1625
|
+
WebsiteUserFields2["tel"] = "tel";
|
|
1626
|
+
WebsiteUserFields2["tel2"] = "tel2";
|
|
1627
|
+
WebsiteUserFields2["name"] = "name";
|
|
1628
|
+
WebsiteUserFields2["mobile"] = "mobile";
|
|
1629
|
+
WebsiteUserFields2["whatsApp"] = "whatsApp";
|
|
1630
|
+
WebsiteUserFields2["linkedIn"] = "linkedIn";
|
|
1631
|
+
WebsiteUserFields2["twitter"] = "twitter";
|
|
1632
|
+
WebsiteUserFields2["facebook"] = "facebook";
|
|
1633
|
+
WebsiteUserFields2["instagram"] = "instagram";
|
|
1634
|
+
WebsiteUserFields2["summary"] = "summary";
|
|
1635
|
+
return WebsiteUserFields2;
|
|
1636
|
+
})(WebsiteUserFields || {});
|
|
1637
|
+
var CustomizeMediaFields = /* @__PURE__ */ ((CustomizeMediaFields2) => {
|
|
1638
|
+
CustomizeMediaFields2["id"] = "id";
|
|
1639
|
+
CustomizeMediaFields2["websiteId"] = "websiteId";
|
|
1640
|
+
return CustomizeMediaFields2;
|
|
1641
|
+
})(CustomizeMediaFields || {});
|
|
1642
|
+
var ProductCategoryFields = /* @__PURE__ */ ((ProductCategoryFields2) => {
|
|
1643
|
+
ProductCategoryFields2["id"] = "id";
|
|
1644
|
+
ProductCategoryFields2["name"] = "name";
|
|
1645
|
+
ProductCategoryFields2["seqValue"] = "seqValue";
|
|
1646
|
+
ProductCategoryFields2["websiteId"] = "websiteId";
|
|
1647
|
+
ProductCategoryFields2["createdAt"] = "createdAt";
|
|
1648
|
+
ProductCategoryFields2["updatedAt"] = "updatedAt";
|
|
1649
|
+
ProductCategoryFields2["remark"] = "remark";
|
|
1650
|
+
ProductCategoryFields2["children"] = "children";
|
|
1651
|
+
ProductCategoryFields2["childrenAggregate"] = "childrenAggregate";
|
|
1652
|
+
ProductCategoryFields2["parent"] = "parent";
|
|
1653
|
+
ProductCategoryFields2["products"] = "products";
|
|
1654
|
+
ProductCategoryFields2["productsAggregate"] = "productsAggregate";
|
|
1655
|
+
return ProductCategoryFields2;
|
|
1656
|
+
})(ProductCategoryFields || {});
|
|
1105
1657
|
export {
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
RxcmsWebsite__batchDelete,
|
|
1389
|
-
RxcmsWebsite__batchGet,
|
|
1390
|
-
RxcmsWebsite__batchModify,
|
|
1391
|
-
RxcmsWebsite__batchUpdate,
|
|
1392
|
-
RxcmsWebsite__copyForNew,
|
|
1393
|
-
RxcmsWebsite__delete,
|
|
1394
|
-
RxcmsWebsite__deleted_findPage,
|
|
1395
|
-
RxcmsWebsite__findFirst,
|
|
1396
|
-
RxcmsWebsite__findList,
|
|
1397
|
-
RxcmsWebsite__findPage,
|
|
1398
|
-
RxcmsWebsite__get,
|
|
1399
|
-
RxcmsWebsite__recoverDeleted,
|
|
1400
|
-
RxcmsWebsite__save,
|
|
1401
|
-
RxcmsWebsite__save_update,
|
|
1402
|
-
RxcmsWebsite__update,
|
|
1403
|
-
UserInfoDtoFields,
|
|
1404
|
-
UserInfoDtoName
|
|
1658
|
+
AbilityDistinctEnum,
|
|
1659
|
+
AbilityEntityLabel,
|
|
1660
|
+
AbilityEntityName,
|
|
1661
|
+
AbilityFields,
|
|
1662
|
+
AbilityType,
|
|
1663
|
+
BaseEntityFields,
|
|
1664
|
+
ComponentType,
|
|
1665
|
+
CustomerDistinctEnum,
|
|
1666
|
+
CustomerEntityLabel,
|
|
1667
|
+
CustomerEntityName,
|
|
1668
|
+
CustomerFields,
|
|
1669
|
+
CustomizeMediaFields,
|
|
1670
|
+
EnquiryDistinctEnum,
|
|
1671
|
+
EnquiryEntityLabel,
|
|
1672
|
+
EnquiryEntityName,
|
|
1673
|
+
EnquiryFields,
|
|
1674
|
+
ExtendFieldType,
|
|
1675
|
+
LangDistinctEnum,
|
|
1676
|
+
LangEntityLabel,
|
|
1677
|
+
LangEntityName,
|
|
1678
|
+
LangFields,
|
|
1679
|
+
MediaDistinctEnum,
|
|
1680
|
+
MediaEntityLabel,
|
|
1681
|
+
MediaEntityName,
|
|
1682
|
+
MediaFields,
|
|
1683
|
+
MediaFolderDistinctEnum,
|
|
1684
|
+
MediaFolderEntityLabel,
|
|
1685
|
+
MediaFolderEntityName,
|
|
1686
|
+
MediaFolderFields,
|
|
1687
|
+
MediaType,
|
|
1688
|
+
MultiLangableFields,
|
|
1689
|
+
OgMetaFields,
|
|
1690
|
+
PageDistinctEnum,
|
|
1691
|
+
PageEntityLabel,
|
|
1692
|
+
PageEntityName,
|
|
1693
|
+
PageFields,
|
|
1694
|
+
PersonFields,
|
|
1695
|
+
PostCategoryDistinctEnum,
|
|
1696
|
+
PostCategoryEntityLabel,
|
|
1697
|
+
PostCategoryEntityName,
|
|
1698
|
+
PostCategoryFields,
|
|
1699
|
+
PostDistinctEnum,
|
|
1700
|
+
PostEntityLabel,
|
|
1701
|
+
PostEntityName,
|
|
1702
|
+
PostFields,
|
|
1703
|
+
ProductCategoryDistinctEnum,
|
|
1704
|
+
ProductCategoryEntityLabel,
|
|
1705
|
+
ProductCategoryEntityName,
|
|
1706
|
+
ProductCategoryFields,
|
|
1707
|
+
ProductDistinctEnum,
|
|
1708
|
+
ProductEntityLabel,
|
|
1709
|
+
ProductEntityName,
|
|
1710
|
+
ProductFields,
|
|
1711
|
+
PublishableFields,
|
|
1712
|
+
PublishableStatus,
|
|
1713
|
+
RoleDistinctEnum,
|
|
1714
|
+
RoleEntityLabel,
|
|
1715
|
+
RoleEntityName,
|
|
1716
|
+
RoleFields,
|
|
1717
|
+
SeoMetaFields,
|
|
1718
|
+
SlugDistinctEnum,
|
|
1719
|
+
SlugEntityLabel,
|
|
1720
|
+
SlugEntityName,
|
|
1721
|
+
SlugFields,
|
|
1722
|
+
TagDistinctEnum,
|
|
1723
|
+
TagEntityLabel,
|
|
1724
|
+
TagEntityName,
|
|
1725
|
+
TagFields,
|
|
1726
|
+
TemplateCategoryDistinctEnum,
|
|
1727
|
+
TemplateCategoryEntityLabel,
|
|
1728
|
+
TemplateCategoryEntityName,
|
|
1729
|
+
TemplateCategoryFields,
|
|
1730
|
+
TemplateDistinctEnum,
|
|
1731
|
+
TemplateEntityLabel,
|
|
1732
|
+
TemplateEntityName,
|
|
1733
|
+
TemplateFields,
|
|
1734
|
+
TemplateType,
|
|
1735
|
+
ThemeDistinctEnum,
|
|
1736
|
+
ThemeEntityLabel,
|
|
1737
|
+
ThemeEntityName,
|
|
1738
|
+
ThemeFields,
|
|
1739
|
+
UserDistinctEnum,
|
|
1740
|
+
UserEntityLabel,
|
|
1741
|
+
UserEntityName,
|
|
1742
|
+
UserFields,
|
|
1743
|
+
UserType,
|
|
1744
|
+
WebsiteContentFields,
|
|
1745
|
+
WebsiteDistinctEnum,
|
|
1746
|
+
WebsiteEntityLabel,
|
|
1747
|
+
WebsiteEntityName,
|
|
1748
|
+
WebsiteFields,
|
|
1749
|
+
WebsiteMetaDistinctEnum,
|
|
1750
|
+
WebsiteMetaEntityLabel,
|
|
1751
|
+
WebsiteMetaEntityName,
|
|
1752
|
+
WebsiteMetaFields,
|
|
1753
|
+
WebsitePartFields,
|
|
1754
|
+
WebsiteSettingsDistinctEnum,
|
|
1755
|
+
WebsiteSettingsEntityLabel,
|
|
1756
|
+
WebsiteSettingsEntityName,
|
|
1757
|
+
WebsiteSettingsFields,
|
|
1758
|
+
WebsiteTypeDistinctEnum,
|
|
1759
|
+
WebsiteTypeEntityLabel,
|
|
1760
|
+
WebsiteTypeEntityName,
|
|
1761
|
+
WebsiteTypeFields,
|
|
1762
|
+
WebsiteTypeStatus,
|
|
1763
|
+
WebsiteUserFields,
|
|
1764
|
+
abilityEntry,
|
|
1765
|
+
abilityToInput,
|
|
1766
|
+
abilityToInputCascade,
|
|
1767
|
+
customerEntry,
|
|
1768
|
+
customerToInput,
|
|
1769
|
+
customerToInputCascade,
|
|
1770
|
+
enquiryEntry,
|
|
1771
|
+
enquiryToInput,
|
|
1772
|
+
enquiryToInputCascade,
|
|
1773
|
+
langEntry,
|
|
1774
|
+
langToInput,
|
|
1775
|
+
langToInputCascade,
|
|
1776
|
+
mediaEntry,
|
|
1777
|
+
mediaFolderEntry,
|
|
1778
|
+
mediaFolderToInput,
|
|
1779
|
+
mediaFolderToInputCascade,
|
|
1780
|
+
mediaToInput,
|
|
1781
|
+
mediaToInputCascade,
|
|
1782
|
+
pageEntry,
|
|
1783
|
+
pageToInput,
|
|
1784
|
+
pageToInputCascade,
|
|
1785
|
+
postCategoryEntry,
|
|
1786
|
+
postCategoryToInput,
|
|
1787
|
+
postCategoryToInputCascade,
|
|
1788
|
+
postEntry,
|
|
1789
|
+
postToInput,
|
|
1790
|
+
postToInputCascade,
|
|
1791
|
+
productCategoryEntry,
|
|
1792
|
+
productCategoryToInput,
|
|
1793
|
+
productCategoryToInputCascade,
|
|
1794
|
+
productEntry,
|
|
1795
|
+
productToInput,
|
|
1796
|
+
productToInputCascade,
|
|
1797
|
+
roleEntry,
|
|
1798
|
+
roleToInput,
|
|
1799
|
+
roleToInputCascade,
|
|
1800
|
+
slugEntry,
|
|
1801
|
+
slugToInput,
|
|
1802
|
+
slugToInputCascade,
|
|
1803
|
+
tagEntry,
|
|
1804
|
+
tagToInput,
|
|
1805
|
+
tagToInputCascade,
|
|
1806
|
+
templateCategoryEntry,
|
|
1807
|
+
templateCategoryToInput,
|
|
1808
|
+
templateCategoryToInputCascade,
|
|
1809
|
+
templateEntry,
|
|
1810
|
+
templateToInput,
|
|
1811
|
+
templateToInputCascade,
|
|
1812
|
+
themeEntry,
|
|
1813
|
+
themeToInput,
|
|
1814
|
+
themeToInputCascade,
|
|
1815
|
+
useAbilityList,
|
|
1816
|
+
useCustomerList,
|
|
1817
|
+
useDeleteAbility,
|
|
1818
|
+
useDeleteAbilityById,
|
|
1819
|
+
useDeleteCustomer,
|
|
1820
|
+
useDeleteCustomerById,
|
|
1821
|
+
useDeleteEnquiry,
|
|
1822
|
+
useDeleteEnquiryById,
|
|
1823
|
+
useDeleteLang,
|
|
1824
|
+
useDeleteLangById,
|
|
1825
|
+
useDeleteMedia,
|
|
1826
|
+
useDeleteMediaById,
|
|
1827
|
+
useDeleteMediaFolder,
|
|
1828
|
+
useDeleteMediaFolderById,
|
|
1829
|
+
useDeletePage,
|
|
1830
|
+
useDeletePageById,
|
|
1831
|
+
useDeletePost,
|
|
1832
|
+
useDeletePostById,
|
|
1833
|
+
useDeletePostCategory,
|
|
1834
|
+
useDeletePostCategoryById,
|
|
1835
|
+
useDeleteProduct,
|
|
1836
|
+
useDeleteProductById,
|
|
1837
|
+
useDeleteProductCategory,
|
|
1838
|
+
useDeleteProductCategoryById,
|
|
1839
|
+
useDeleteRole,
|
|
1840
|
+
useDeleteRoleById,
|
|
1841
|
+
useDeleteSlug,
|
|
1842
|
+
useDeleteSlugById,
|
|
1843
|
+
useDeleteTag,
|
|
1844
|
+
useDeleteTagById,
|
|
1845
|
+
useDeleteTemplate,
|
|
1846
|
+
useDeleteTemplateById,
|
|
1847
|
+
useDeleteTemplateCategory,
|
|
1848
|
+
useDeleteTemplateCategoryById,
|
|
1849
|
+
useDeleteTheme,
|
|
1850
|
+
useDeleteThemeById,
|
|
1851
|
+
useDeleteUser,
|
|
1852
|
+
useDeleteUserById,
|
|
1853
|
+
useDeleteWebsite,
|
|
1854
|
+
useDeleteWebsiteById,
|
|
1855
|
+
useDeleteWebsiteMeta,
|
|
1856
|
+
useDeleteWebsiteMetaById,
|
|
1857
|
+
useDeleteWebsiteSettings,
|
|
1858
|
+
useDeleteWebsiteSettingsById,
|
|
1859
|
+
useDeleteWebsiteType,
|
|
1860
|
+
useDeleteWebsiteTypeById,
|
|
1861
|
+
useEnquiryList,
|
|
1862
|
+
useLangList,
|
|
1863
|
+
useMediaFolderList,
|
|
1864
|
+
useMediaList,
|
|
1865
|
+
useOneAbility,
|
|
1866
|
+
useOneCustomer,
|
|
1867
|
+
useOneEnquiry,
|
|
1868
|
+
useOneLang,
|
|
1869
|
+
useOneMedia,
|
|
1870
|
+
useOneMediaFolder,
|
|
1871
|
+
useOnePage,
|
|
1872
|
+
useOnePost,
|
|
1873
|
+
useOnePostCategory,
|
|
1874
|
+
useOneProduct,
|
|
1875
|
+
useOneProductCategory,
|
|
1876
|
+
useOneRole,
|
|
1877
|
+
useOneSlug,
|
|
1878
|
+
useOneTag,
|
|
1879
|
+
useOneTemplate,
|
|
1880
|
+
useOneTemplateCategory,
|
|
1881
|
+
useOneTheme,
|
|
1882
|
+
useOneUser,
|
|
1883
|
+
useOneWebsite,
|
|
1884
|
+
useOneWebsiteMeta,
|
|
1885
|
+
useOneWebsiteSettings,
|
|
1886
|
+
useOneWebsiteType,
|
|
1887
|
+
usePageList,
|
|
1888
|
+
usePostCategoryList,
|
|
1889
|
+
usePostList,
|
|
1890
|
+
useProductCategoryList,
|
|
1891
|
+
useProductList,
|
|
1892
|
+
useRoleList,
|
|
1893
|
+
useSlugList,
|
|
1894
|
+
useTagList,
|
|
1895
|
+
useTemplateCategoryList,
|
|
1896
|
+
useTemplateList,
|
|
1897
|
+
useThemeList,
|
|
1898
|
+
useUpsertOneAbility,
|
|
1899
|
+
useUpsertOneCustomer,
|
|
1900
|
+
useUpsertOneEnquiry,
|
|
1901
|
+
useUpsertOneLang,
|
|
1902
|
+
useUpsertOneMedia,
|
|
1903
|
+
useUpsertOneMediaFolder,
|
|
1904
|
+
useUpsertOnePage,
|
|
1905
|
+
useUpsertOnePost,
|
|
1906
|
+
useUpsertOnePostCategory,
|
|
1907
|
+
useUpsertOneProduct,
|
|
1908
|
+
useUpsertOneProductCategory,
|
|
1909
|
+
useUpsertOneRole,
|
|
1910
|
+
useUpsertOneSlug,
|
|
1911
|
+
useUpsertOneTag,
|
|
1912
|
+
useUpsertOneTemplate,
|
|
1913
|
+
useUpsertOneTemplateCategory,
|
|
1914
|
+
useUpsertOneTheme,
|
|
1915
|
+
useUpsertOneUser,
|
|
1916
|
+
useUpsertOneWebsite,
|
|
1917
|
+
useUpsertOneWebsiteMeta,
|
|
1918
|
+
useUpsertOneWebsiteSettings,
|
|
1919
|
+
useUpsertOneWebsiteType,
|
|
1920
|
+
useUserList,
|
|
1921
|
+
useWebsiteList,
|
|
1922
|
+
useWebsiteMetaList,
|
|
1923
|
+
useWebsiteSettingsList,
|
|
1924
|
+
useWebsiteTypeList,
|
|
1925
|
+
userEntry,
|
|
1926
|
+
userToInput,
|
|
1927
|
+
userToInputCascade,
|
|
1928
|
+
websiteEntry,
|
|
1929
|
+
websiteMetaEntry,
|
|
1930
|
+
websiteMetaToInput,
|
|
1931
|
+
websiteMetaToInputCascade,
|
|
1932
|
+
websiteSettingsEntry,
|
|
1933
|
+
websiteSettingsToInput,
|
|
1934
|
+
websiteSettingsToInputCascade,
|
|
1935
|
+
websiteToInput,
|
|
1936
|
+
websiteToInputCascade,
|
|
1937
|
+
websiteTypeEntry,
|
|
1938
|
+
websiteTypeToInput,
|
|
1939
|
+
websiteTypeToInputCascade
|
|
1405
1940
|
};
|
|
1406
1941
|
//# sourceMappingURL=index.mjs.map
|