@rxdrag/rxcms-models 0.1.2 → 0.1.3
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/index.d.ts +0 -1
- package/dist/index.mjs +0 -441
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -5
- package/dist/hooks/index.d.ts +0 -110
- package/dist/hooks/useDeleteAbility.d.ts +0 -8
- package/dist/hooks/useDeleteAbilityById.d.ts +0 -8
- package/dist/hooks/useDeleteCustomer.d.ts +0 -8
- package/dist/hooks/useDeleteCustomerById.d.ts +0 -8
- package/dist/hooks/useDeleteEnquiry.d.ts +0 -8
- package/dist/hooks/useDeleteEnquiryById.d.ts +0 -8
- package/dist/hooks/useDeleteLang.d.ts +0 -8
- package/dist/hooks/useDeleteLangById.d.ts +0 -8
- package/dist/hooks/useDeleteMedia.d.ts +0 -8
- package/dist/hooks/useDeleteMediaById.d.ts +0 -8
- package/dist/hooks/useDeleteMediaFolder.d.ts +0 -8
- package/dist/hooks/useDeleteMediaFolderById.d.ts +0 -8
- package/dist/hooks/useDeletePage.d.ts +0 -8
- package/dist/hooks/useDeletePageById.d.ts +0 -8
- package/dist/hooks/useDeletePost.d.ts +0 -8
- package/dist/hooks/useDeletePostById.d.ts +0 -8
- package/dist/hooks/useDeletePostCategory.d.ts +0 -8
- package/dist/hooks/useDeletePostCategoryById.d.ts +0 -8
- package/dist/hooks/useDeleteProduct.d.ts +0 -8
- package/dist/hooks/useDeleteProductById.d.ts +0 -8
- package/dist/hooks/useDeleteProductCategory.d.ts +0 -8
- package/dist/hooks/useDeleteProductCategoryById.d.ts +0 -8
- package/dist/hooks/useDeleteRole.d.ts +0 -8
- package/dist/hooks/useDeleteRoleById.d.ts +0 -8
- package/dist/hooks/useDeleteSlug.d.ts +0 -8
- package/dist/hooks/useDeleteSlugById.d.ts +0 -8
- package/dist/hooks/useDeleteTag.d.ts +0 -8
- package/dist/hooks/useDeleteTagById.d.ts +0 -8
- package/dist/hooks/useDeleteTemplate.d.ts +0 -8
- package/dist/hooks/useDeleteTemplateById.d.ts +0 -8
- package/dist/hooks/useDeleteTemplateCategory.d.ts +0 -8
- package/dist/hooks/useDeleteTemplateCategoryById.d.ts +0 -8
- package/dist/hooks/useDeleteTheme.d.ts +0 -8
- package/dist/hooks/useDeleteThemeById.d.ts +0 -8
- package/dist/hooks/useDeleteUser.d.ts +0 -8
- package/dist/hooks/useDeleteUserById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsite.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteMeta.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteMetaById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteSettings.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteSettingsById.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteType.d.ts +0 -8
- package/dist/hooks/useDeleteWebsiteTypeById.d.ts +0 -8
- package/dist/hooks/useUpsertOneAbility.d.ts +0 -8
- package/dist/hooks/useUpsertOneCustomer.d.ts +0 -8
- package/dist/hooks/useUpsertOneEnquiry.d.ts +0 -8
- package/dist/hooks/useUpsertOneLang.d.ts +0 -8
- package/dist/hooks/useUpsertOneMedia.d.ts +0 -8
- package/dist/hooks/useUpsertOneMediaFolder.d.ts +0 -8
- package/dist/hooks/useUpsertOnePage.d.ts +0 -8
- package/dist/hooks/useUpsertOnePost.d.ts +0 -8
- package/dist/hooks/useUpsertOnePostCategory.d.ts +0 -8
- package/dist/hooks/useUpsertOneProduct.d.ts +0 -8
- package/dist/hooks/useUpsertOneProductCategory.d.ts +0 -8
- package/dist/hooks/useUpsertOneRole.d.ts +0 -8
- package/dist/hooks/useUpsertOneSlug.d.ts +0 -8
- package/dist/hooks/useUpsertOneTag.d.ts +0 -8
- package/dist/hooks/useUpsertOneTemplate.d.ts +0 -8
- package/dist/hooks/useUpsertOneTemplateCategory.d.ts +0 -8
- package/dist/hooks/useUpsertOneTheme.d.ts +0 -8
- package/dist/hooks/useUpsertOneUser.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsite.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsiteMeta.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsiteSettings.d.ts +0 -8
- package/dist/hooks/useUpsertOneWebsiteType.d.ts +0 -8
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { processHasManyClear, convertHasManyToInput, processHasOneClear, convertHasOneToInput } from "@rxdrag/entify-hooks";
|
|
2
|
-
import { useQueryEntityListWithIndicator, useQueryOneEntityWithIndicator, useUpsertEntityWithIndicator, useDeleteEntityByIdWithIndicator, useDeleteEntitiesWithIndicator } from "@rxdrag/rxcms-entify-wrapper";
|
|
3
2
|
const UserEntityName = "User";
|
|
4
3
|
const UserEntityLabel = "";
|
|
5
4
|
const roleToInputCascade = (entity) => {
|
|
@@ -840,336 +839,6 @@ const productCategoryEntry = {
|
|
|
840
839
|
entityLabel: ProductCategoryEntityLabel,
|
|
841
840
|
toInput: productCategoryToInput
|
|
842
841
|
};
|
|
843
|
-
function useUserList(queryOptions) {
|
|
844
|
-
return useQueryEntityListWithIndicator(UserEntityName, queryOptions);
|
|
845
|
-
}
|
|
846
|
-
function useOneUser(queryOptions) {
|
|
847
|
-
return useQueryOneEntityWithIndicator(UserEntityName, queryOptions);
|
|
848
|
-
}
|
|
849
|
-
function useUpsertOneUser(options) {
|
|
850
|
-
return useUpsertEntityWithIndicator(UserEntityName, options);
|
|
851
|
-
}
|
|
852
|
-
function useDeleteUserById(options) {
|
|
853
|
-
return useDeleteEntityByIdWithIndicator(UserEntityName, options);
|
|
854
|
-
}
|
|
855
|
-
function useDeleteUser(options) {
|
|
856
|
-
return useDeleteEntitiesWithIndicator(UserEntityName, options);
|
|
857
|
-
}
|
|
858
|
-
function useRoleList(queryOptions) {
|
|
859
|
-
return useQueryEntityListWithIndicator(RoleEntityName, queryOptions);
|
|
860
|
-
}
|
|
861
|
-
function useOneRole(queryOptions) {
|
|
862
|
-
return useQueryOneEntityWithIndicator(RoleEntityName, queryOptions);
|
|
863
|
-
}
|
|
864
|
-
function useUpsertOneRole(options) {
|
|
865
|
-
return useUpsertEntityWithIndicator(RoleEntityName, options);
|
|
866
|
-
}
|
|
867
|
-
function useDeleteRoleById(options) {
|
|
868
|
-
return useDeleteEntityByIdWithIndicator(RoleEntityName, options);
|
|
869
|
-
}
|
|
870
|
-
function useDeleteRole(options) {
|
|
871
|
-
return useDeleteEntitiesWithIndicator(RoleEntityName, options);
|
|
872
|
-
}
|
|
873
|
-
function useAbilityList(queryOptions) {
|
|
874
|
-
return useQueryEntityListWithIndicator(AbilityEntityName, queryOptions);
|
|
875
|
-
}
|
|
876
|
-
function useOneAbility(queryOptions) {
|
|
877
|
-
return useQueryOneEntityWithIndicator(AbilityEntityName, queryOptions);
|
|
878
|
-
}
|
|
879
|
-
function useUpsertOneAbility(options) {
|
|
880
|
-
return useUpsertEntityWithIndicator(AbilityEntityName, options);
|
|
881
|
-
}
|
|
882
|
-
function useDeleteAbilityById(options) {
|
|
883
|
-
return useDeleteEntityByIdWithIndicator(AbilityEntityName, options);
|
|
884
|
-
}
|
|
885
|
-
function useDeleteAbility(options) {
|
|
886
|
-
return useDeleteEntitiesWithIndicator(AbilityEntityName, options);
|
|
887
|
-
}
|
|
888
|
-
function useMediaList(queryOptions) {
|
|
889
|
-
return useQueryEntityListWithIndicator(MediaEntityName, queryOptions);
|
|
890
|
-
}
|
|
891
|
-
function useOneMedia(queryOptions) {
|
|
892
|
-
return useQueryOneEntityWithIndicator(MediaEntityName, queryOptions);
|
|
893
|
-
}
|
|
894
|
-
function useUpsertOneMedia(options) {
|
|
895
|
-
return useUpsertEntityWithIndicator(MediaEntityName, options);
|
|
896
|
-
}
|
|
897
|
-
function useDeleteMediaById(options) {
|
|
898
|
-
return useDeleteEntityByIdWithIndicator(MediaEntityName, options);
|
|
899
|
-
}
|
|
900
|
-
function useDeleteMedia(options) {
|
|
901
|
-
return useDeleteEntitiesWithIndicator(MediaEntityName, options);
|
|
902
|
-
}
|
|
903
|
-
function useWebsiteList(queryOptions) {
|
|
904
|
-
return useQueryEntityListWithIndicator(WebsiteEntityName, queryOptions);
|
|
905
|
-
}
|
|
906
|
-
function useOneWebsite(queryOptions) {
|
|
907
|
-
return useQueryOneEntityWithIndicator(WebsiteEntityName, queryOptions);
|
|
908
|
-
}
|
|
909
|
-
function useUpsertOneWebsite(options) {
|
|
910
|
-
return useUpsertEntityWithIndicator(WebsiteEntityName, options);
|
|
911
|
-
}
|
|
912
|
-
function useDeleteWebsiteById(options) {
|
|
913
|
-
return useDeleteEntityByIdWithIndicator(WebsiteEntityName, options);
|
|
914
|
-
}
|
|
915
|
-
function useDeleteWebsite(options) {
|
|
916
|
-
return useDeleteEntitiesWithIndicator(WebsiteEntityName, options);
|
|
917
|
-
}
|
|
918
|
-
function useLangList(queryOptions) {
|
|
919
|
-
return useQueryEntityListWithIndicator(LangEntityName, queryOptions);
|
|
920
|
-
}
|
|
921
|
-
function useOneLang(queryOptions) {
|
|
922
|
-
return useQueryOneEntityWithIndicator(LangEntityName, queryOptions);
|
|
923
|
-
}
|
|
924
|
-
function useUpsertOneLang(options) {
|
|
925
|
-
return useUpsertEntityWithIndicator(LangEntityName, options);
|
|
926
|
-
}
|
|
927
|
-
function useDeleteLangById(options) {
|
|
928
|
-
return useDeleteEntityByIdWithIndicator(LangEntityName, options);
|
|
929
|
-
}
|
|
930
|
-
function useDeleteLang(options) {
|
|
931
|
-
return useDeleteEntitiesWithIndicator(LangEntityName, options);
|
|
932
|
-
}
|
|
933
|
-
function useWebsiteTypeList(queryOptions) {
|
|
934
|
-
return useQueryEntityListWithIndicator(WebsiteTypeEntityName, queryOptions);
|
|
935
|
-
}
|
|
936
|
-
function useOneWebsiteType(queryOptions) {
|
|
937
|
-
return useQueryOneEntityWithIndicator(WebsiteTypeEntityName, queryOptions);
|
|
938
|
-
}
|
|
939
|
-
function useUpsertOneWebsiteType(options) {
|
|
940
|
-
return useUpsertEntityWithIndicator(WebsiteTypeEntityName, options);
|
|
941
|
-
}
|
|
942
|
-
function useDeleteWebsiteTypeById(options) {
|
|
943
|
-
return useDeleteEntityByIdWithIndicator(WebsiteTypeEntityName, options);
|
|
944
|
-
}
|
|
945
|
-
function useDeleteWebsiteType(options) {
|
|
946
|
-
return useDeleteEntitiesWithIndicator(WebsiteTypeEntityName, options);
|
|
947
|
-
}
|
|
948
|
-
function usePageList(queryOptions) {
|
|
949
|
-
return useQueryEntityListWithIndicator(PageEntityName, queryOptions);
|
|
950
|
-
}
|
|
951
|
-
function useOnePage(queryOptions) {
|
|
952
|
-
return useQueryOneEntityWithIndicator(PageEntityName, queryOptions);
|
|
953
|
-
}
|
|
954
|
-
function useUpsertOnePage(options) {
|
|
955
|
-
return useUpsertEntityWithIndicator(PageEntityName, options);
|
|
956
|
-
}
|
|
957
|
-
function useDeletePageById(options) {
|
|
958
|
-
return useDeleteEntityByIdWithIndicator(PageEntityName, options);
|
|
959
|
-
}
|
|
960
|
-
function useDeletePage(options) {
|
|
961
|
-
return useDeleteEntitiesWithIndicator(PageEntityName, options);
|
|
962
|
-
}
|
|
963
|
-
function usePostList(queryOptions) {
|
|
964
|
-
return useQueryEntityListWithIndicator(PostEntityName, queryOptions);
|
|
965
|
-
}
|
|
966
|
-
function useOnePost(queryOptions) {
|
|
967
|
-
return useQueryOneEntityWithIndicator(PostEntityName, queryOptions);
|
|
968
|
-
}
|
|
969
|
-
function useUpsertOnePost(options) {
|
|
970
|
-
return useUpsertEntityWithIndicator(PostEntityName, options);
|
|
971
|
-
}
|
|
972
|
-
function useDeletePostById(options) {
|
|
973
|
-
return useDeleteEntityByIdWithIndicator(PostEntityName, options);
|
|
974
|
-
}
|
|
975
|
-
function useDeletePost(options) {
|
|
976
|
-
return useDeleteEntitiesWithIndicator(PostEntityName, options);
|
|
977
|
-
}
|
|
978
|
-
function useProductList(queryOptions) {
|
|
979
|
-
return useQueryEntityListWithIndicator(ProductEntityName, queryOptions);
|
|
980
|
-
}
|
|
981
|
-
function useOneProduct(queryOptions) {
|
|
982
|
-
return useQueryOneEntityWithIndicator(ProductEntityName, queryOptions);
|
|
983
|
-
}
|
|
984
|
-
function useUpsertOneProduct(options) {
|
|
985
|
-
return useUpsertEntityWithIndicator(ProductEntityName, options);
|
|
986
|
-
}
|
|
987
|
-
function useDeleteProductById(options) {
|
|
988
|
-
return useDeleteEntityByIdWithIndicator(ProductEntityName, options);
|
|
989
|
-
}
|
|
990
|
-
function useDeleteProduct(options) {
|
|
991
|
-
return useDeleteEntitiesWithIndicator(ProductEntityName, options);
|
|
992
|
-
}
|
|
993
|
-
function useSlugList(queryOptions) {
|
|
994
|
-
return useQueryEntityListWithIndicator(SlugEntityName, queryOptions);
|
|
995
|
-
}
|
|
996
|
-
function useOneSlug(queryOptions) {
|
|
997
|
-
return useQueryOneEntityWithIndicator(SlugEntityName, queryOptions);
|
|
998
|
-
}
|
|
999
|
-
function useUpsertOneSlug(options) {
|
|
1000
|
-
return useUpsertEntityWithIndicator(SlugEntityName, options);
|
|
1001
|
-
}
|
|
1002
|
-
function useDeleteSlugById(options) {
|
|
1003
|
-
return useDeleteEntityByIdWithIndicator(SlugEntityName, options);
|
|
1004
|
-
}
|
|
1005
|
-
function useDeleteSlug(options) {
|
|
1006
|
-
return useDeleteEntitiesWithIndicator(SlugEntityName, options);
|
|
1007
|
-
}
|
|
1008
|
-
function useEnquiryList(queryOptions) {
|
|
1009
|
-
return useQueryEntityListWithIndicator(EnquiryEntityName, queryOptions);
|
|
1010
|
-
}
|
|
1011
|
-
function useOneEnquiry(queryOptions) {
|
|
1012
|
-
return useQueryOneEntityWithIndicator(EnquiryEntityName, queryOptions);
|
|
1013
|
-
}
|
|
1014
|
-
function useUpsertOneEnquiry(options) {
|
|
1015
|
-
return useUpsertEntityWithIndicator(EnquiryEntityName, options);
|
|
1016
|
-
}
|
|
1017
|
-
function useDeleteEnquiryById(options) {
|
|
1018
|
-
return useDeleteEntityByIdWithIndicator(EnquiryEntityName, options);
|
|
1019
|
-
}
|
|
1020
|
-
function useDeleteEnquiry(options) {
|
|
1021
|
-
return useDeleteEntitiesWithIndicator(EnquiryEntityName, options);
|
|
1022
|
-
}
|
|
1023
|
-
function useWebsiteMetaList(queryOptions) {
|
|
1024
|
-
return useQueryEntityListWithIndicator(WebsiteMetaEntityName, queryOptions);
|
|
1025
|
-
}
|
|
1026
|
-
function useOneWebsiteMeta(queryOptions) {
|
|
1027
|
-
return useQueryOneEntityWithIndicator(WebsiteMetaEntityName, queryOptions);
|
|
1028
|
-
}
|
|
1029
|
-
function useUpsertOneWebsiteMeta(options) {
|
|
1030
|
-
return useUpsertEntityWithIndicator(WebsiteMetaEntityName, options);
|
|
1031
|
-
}
|
|
1032
|
-
function useDeleteWebsiteMetaById(options) {
|
|
1033
|
-
return useDeleteEntityByIdWithIndicator(WebsiteMetaEntityName, options);
|
|
1034
|
-
}
|
|
1035
|
-
function useDeleteWebsiteMeta(options) {
|
|
1036
|
-
return useDeleteEntitiesWithIndicator(WebsiteMetaEntityName, options);
|
|
1037
|
-
}
|
|
1038
|
-
function useWebsiteSettingsList(queryOptions) {
|
|
1039
|
-
return useQueryEntityListWithIndicator(WebsiteSettingsEntityName, queryOptions);
|
|
1040
|
-
}
|
|
1041
|
-
function useOneWebsiteSettings(queryOptions) {
|
|
1042
|
-
return useQueryOneEntityWithIndicator(WebsiteSettingsEntityName, queryOptions);
|
|
1043
|
-
}
|
|
1044
|
-
function useUpsertOneWebsiteSettings(options) {
|
|
1045
|
-
return useUpsertEntityWithIndicator(WebsiteSettingsEntityName, options);
|
|
1046
|
-
}
|
|
1047
|
-
function useDeleteWebsiteSettingsById(options) {
|
|
1048
|
-
return useDeleteEntityByIdWithIndicator(WebsiteSettingsEntityName, options);
|
|
1049
|
-
}
|
|
1050
|
-
function useDeleteWebsiteSettings(options) {
|
|
1051
|
-
return useDeleteEntitiesWithIndicator(WebsiteSettingsEntityName, options);
|
|
1052
|
-
}
|
|
1053
|
-
function useTemplateList(queryOptions) {
|
|
1054
|
-
return useQueryEntityListWithIndicator(TemplateEntityName, queryOptions);
|
|
1055
|
-
}
|
|
1056
|
-
function useOneTemplate(queryOptions) {
|
|
1057
|
-
return useQueryOneEntityWithIndicator(TemplateEntityName, queryOptions);
|
|
1058
|
-
}
|
|
1059
|
-
function useUpsertOneTemplate(options) {
|
|
1060
|
-
return useUpsertEntityWithIndicator(TemplateEntityName, options);
|
|
1061
|
-
}
|
|
1062
|
-
function useDeleteTemplateById(options) {
|
|
1063
|
-
return useDeleteEntityByIdWithIndicator(TemplateEntityName, options);
|
|
1064
|
-
}
|
|
1065
|
-
function useDeleteTemplate(options) {
|
|
1066
|
-
return useDeleteEntitiesWithIndicator(TemplateEntityName, options);
|
|
1067
|
-
}
|
|
1068
|
-
function useTemplateCategoryList(queryOptions) {
|
|
1069
|
-
return useQueryEntityListWithIndicator(TemplateCategoryEntityName, queryOptions);
|
|
1070
|
-
}
|
|
1071
|
-
function useOneTemplateCategory(queryOptions) {
|
|
1072
|
-
return useQueryOneEntityWithIndicator(TemplateCategoryEntityName, queryOptions);
|
|
1073
|
-
}
|
|
1074
|
-
function useUpsertOneTemplateCategory(options) {
|
|
1075
|
-
return useUpsertEntityWithIndicator(TemplateCategoryEntityName, options);
|
|
1076
|
-
}
|
|
1077
|
-
function useDeleteTemplateCategoryById(options) {
|
|
1078
|
-
return useDeleteEntityByIdWithIndicator(TemplateCategoryEntityName, options);
|
|
1079
|
-
}
|
|
1080
|
-
function useDeleteTemplateCategory(options) {
|
|
1081
|
-
return useDeleteEntitiesWithIndicator(TemplateCategoryEntityName, options);
|
|
1082
|
-
}
|
|
1083
|
-
function useThemeList(queryOptions) {
|
|
1084
|
-
return useQueryEntityListWithIndicator(ThemeEntityName, queryOptions);
|
|
1085
|
-
}
|
|
1086
|
-
function useOneTheme(queryOptions) {
|
|
1087
|
-
return useQueryOneEntityWithIndicator(ThemeEntityName, queryOptions);
|
|
1088
|
-
}
|
|
1089
|
-
function useUpsertOneTheme(options) {
|
|
1090
|
-
return useUpsertEntityWithIndicator(ThemeEntityName, options);
|
|
1091
|
-
}
|
|
1092
|
-
function useDeleteThemeById(options) {
|
|
1093
|
-
return useDeleteEntityByIdWithIndicator(ThemeEntityName, options);
|
|
1094
|
-
}
|
|
1095
|
-
function useDeleteTheme(options) {
|
|
1096
|
-
return useDeleteEntitiesWithIndicator(ThemeEntityName, options);
|
|
1097
|
-
}
|
|
1098
|
-
function useMediaFolderList(queryOptions) {
|
|
1099
|
-
return useQueryEntityListWithIndicator(MediaFolderEntityName, queryOptions);
|
|
1100
|
-
}
|
|
1101
|
-
function useOneMediaFolder(queryOptions) {
|
|
1102
|
-
return useQueryOneEntityWithIndicator(MediaFolderEntityName, queryOptions);
|
|
1103
|
-
}
|
|
1104
|
-
function useUpsertOneMediaFolder(options) {
|
|
1105
|
-
return useUpsertEntityWithIndicator(MediaFolderEntityName, options);
|
|
1106
|
-
}
|
|
1107
|
-
function useDeleteMediaFolderById(options) {
|
|
1108
|
-
return useDeleteEntityByIdWithIndicator(MediaFolderEntityName, options);
|
|
1109
|
-
}
|
|
1110
|
-
function useDeleteMediaFolder(options) {
|
|
1111
|
-
return useDeleteEntitiesWithIndicator(MediaFolderEntityName, options);
|
|
1112
|
-
}
|
|
1113
|
-
function usePostCategoryList(queryOptions) {
|
|
1114
|
-
return useQueryEntityListWithIndicator(PostCategoryEntityName, queryOptions);
|
|
1115
|
-
}
|
|
1116
|
-
function useOnePostCategory(queryOptions) {
|
|
1117
|
-
return useQueryOneEntityWithIndicator(PostCategoryEntityName, queryOptions);
|
|
1118
|
-
}
|
|
1119
|
-
function useUpsertOnePostCategory(options) {
|
|
1120
|
-
return useUpsertEntityWithIndicator(PostCategoryEntityName, options);
|
|
1121
|
-
}
|
|
1122
|
-
function useDeletePostCategoryById(options) {
|
|
1123
|
-
return useDeleteEntityByIdWithIndicator(PostCategoryEntityName, options);
|
|
1124
|
-
}
|
|
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
842
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
1174
843
|
UserFields2["id"] = "id";
|
|
1175
844
|
UserFields2["loginName"] = "loginName";
|
|
@@ -1812,116 +1481,6 @@ export {
|
|
|
1812
1481
|
themeEntry,
|
|
1813
1482
|
themeToInput,
|
|
1814
1483
|
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
1484
|
userEntry,
|
|
1926
1485
|
userToInput,
|
|
1927
1486
|
userToInputCascade,
|