@rxdrag/rxcms-models 0.1.1 → 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.
Files changed (293) hide show
  1. package/dist/entries/abilityEntry.d.ts +2 -0
  2. package/dist/entries/customerEntry.d.ts +2 -0
  3. package/dist/entries/enquiryEntry.d.ts +2 -0
  4. package/dist/entries/index.d.ts +22 -0
  5. package/dist/entries/langEntry.d.ts +2 -0
  6. package/dist/entries/mediaEntry.d.ts +2 -0
  7. package/dist/entries/mediaFolderEntry.d.ts +2 -0
  8. package/dist/entries/pageEntry.d.ts +2 -0
  9. package/dist/entries/postCategoryEntry.d.ts +2 -0
  10. package/dist/entries/postEntry.d.ts +2 -0
  11. package/dist/entries/productCategoryEntry.d.ts +2 -0
  12. package/dist/entries/productEntry.d.ts +2 -0
  13. package/dist/entries/roleEntry.d.ts +2 -0
  14. package/dist/entries/slugEntry.d.ts +2 -0
  15. package/dist/entries/tagEntry.d.ts +2 -0
  16. package/dist/entries/templateCategoryEntry.d.ts +2 -0
  17. package/dist/entries/templateEntry.d.ts +2 -0
  18. package/dist/entries/themeEntry.d.ts +2 -0
  19. package/dist/entries/userEntry.d.ts +2 -0
  20. package/dist/entries/websiteEntry.d.ts +2 -0
  21. package/dist/entries/websiteMetaEntry.d.ts +2 -0
  22. package/dist/entries/websiteSettingsEntry.d.ts +2 -0
  23. package/dist/entries/websiteTypeEntry.d.ts +2 -0
  24. package/dist/fields/AbilityFields.d.ts +9 -0
  25. package/dist/fields/BaseEntityFields.d.ts +15 -0
  26. package/dist/fields/CustomerFields.d.ts +41 -0
  27. package/dist/fields/CustomizeMediaFields.d.ts +7 -0
  28. package/dist/fields/EnquiryFields.d.ts +19 -0
  29. package/dist/fields/LangFields.d.ts +32 -0
  30. package/dist/fields/MediaFields.d.ts +20 -0
  31. package/dist/fields/MediaFolderFields.d.ts +23 -0
  32. package/dist/fields/MultiLangableFields.d.ts +4 -0
  33. package/dist/fields/OgMetaFields.d.ts +9 -0
  34. package/dist/fields/PageFields.d.ts +31 -0
  35. package/dist/fields/PersonFields.d.ts +26 -0
  36. package/dist/fields/PostCategoryFields.d.ts +23 -0
  37. package/dist/fields/PostFields.d.ts +48 -0
  38. package/dist/fields/ProductCategoryFields.d.ts +23 -0
  39. package/dist/fields/ProductFields.d.ts +44 -0
  40. package/dist/fields/PublishableFields.d.ts +35 -0
  41. package/dist/fields/RoleFields.d.ts +9 -0
  42. package/dist/fields/SeoMetaFields.d.ts +6 -0
  43. package/dist/fields/SlugFields.d.ts +20 -0
  44. package/dist/fields/TagFields.d.ts +25 -0
  45. package/dist/fields/TemplateCategoryFields.d.ts +21 -0
  46. package/dist/fields/TemplateFields.d.ts +25 -0
  47. package/dist/fields/ThemeFields.d.ts +23 -0
  48. package/dist/fields/UserFields.d.ts +51 -0
  49. package/dist/fields/WebsiteContentFields.d.ts +29 -0
  50. package/dist/fields/WebsiteFields.d.ts +37 -0
  51. package/dist/fields/WebsiteMetaFields.d.ts +3 -0
  52. package/dist/fields/WebsitePartFields.d.ts +16 -0
  53. package/dist/fields/WebsiteSettingsFields.d.ts +20 -0
  54. package/dist/fields/WebsiteTypeFields.d.ts +26 -0
  55. package/dist/fields/WebsiteUserFields.d.ts +35 -0
  56. package/dist/fields/index.d.ts +32 -0
  57. package/dist/index.d.ts +3 -3
  58. package/dist/index.mjs +1497 -1403
  59. package/dist/index.mjs.map +1 -1
  60. package/dist/interfaces/Ability.d.ts +12 -0
  61. package/dist/interfaces/AbilityBoolExp.d.ts +17 -0
  62. package/dist/interfaces/AbilityDistinctExp.d.ts +10 -0
  63. package/dist/interfaces/AbilityInput.d.ts +13 -0
  64. package/dist/interfaces/AbilityOrderBy.d.ts +10 -0
  65. package/dist/interfaces/AbilityType.d.ts +18 -0
  66. package/dist/interfaces/Aggregate.d.ts +4 -0
  67. package/dist/interfaces/BaseEntity.d.ts +15 -0
  68. package/dist/interfaces/BaseEntityBoolExp.d.ts +12 -0
  69. package/dist/interfaces/BaseEntityDistinctExp.d.ts +16 -0
  70. package/dist/interfaces/BaseEntityOrderBy.d.ts +16 -0
  71. package/dist/interfaces/BooleanComparisonExp.d.ts +5 -0
  72. package/dist/interfaces/ComponentType.d.ts +34 -0
  73. package/dist/interfaces/Customer.d.ts +11 -0
  74. package/dist/interfaces/CustomerBoolExp.d.ts +11 -0
  75. package/dist/interfaces/CustomerDistinctExp.d.ts +42 -0
  76. package/dist/interfaces/CustomerInput.d.ts +11 -0
  77. package/dist/interfaces/CustomerOrderBy.d.ts +6 -0
  78. package/dist/interfaces/CustomizeMedia.d.ts +7 -0
  79. package/dist/interfaces/CustomizeMediaBoolExp.d.ts +9 -0
  80. package/dist/interfaces/CustomizeMediaDistinctExp.d.ts +8 -0
  81. package/dist/interfaces/CustomizeMediaOrderBy.d.ts +8 -0
  82. package/dist/interfaces/DateTimeComparisonExp.d.ts +11 -0
  83. package/dist/interfaces/Enquiry.d.ts +10 -0
  84. package/dist/interfaces/EnquiryBoolExp.d.ts +13 -0
  85. package/dist/interfaces/EnquiryDistinctExp.d.ts +20 -0
  86. package/dist/interfaces/EnquiryInput.d.ts +12 -0
  87. package/dist/interfaces/EnquiryOrderBy.d.ts +7 -0
  88. package/dist/interfaces/EnumComparisonExp.d.ts +8 -0
  89. package/dist/interfaces/ExtendField.d.ts +8 -0
  90. package/dist/interfaces/ExtendFieldType.d.ts +22 -0
  91. package/dist/interfaces/FileRef.d.ts +5 -0
  92. package/dist/interfaces/FormSettings.d.ts +4 -0
  93. package/dist/interfaces/IdComparisonExp.d.ts +11 -0
  94. package/dist/interfaces/Lang.d.ts +30 -0
  95. package/dist/interfaces/LangBoolExp.d.ts +18 -0
  96. package/dist/interfaces/LangDistinctExp.d.ts +34 -0
  97. package/dist/interfaces/LangInput.d.ts +31 -0
  98. package/dist/interfaces/LangOrderBy.d.ts +29 -0
  99. package/dist/interfaces/Media.d.ts +26 -0
  100. package/dist/interfaces/MediaAddon.d.ts +4 -0
  101. package/dist/interfaces/MediaBoolExp.d.ts +27 -0
  102. package/dist/interfaces/MediaDistinctExp.d.ts +18 -0
  103. package/dist/interfaces/MediaFolder.d.ts +19 -0
  104. package/dist/interfaces/MediaFolderBoolExp.d.ts +20 -0
  105. package/dist/interfaces/MediaFolderDistinctExp.d.ts +20 -0
  106. package/dist/interfaces/MediaFolderInput.d.ts +19 -0
  107. package/dist/interfaces/MediaFolderOrderBy.d.ts +11 -0
  108. package/dist/interfaces/MediaInput.d.ts +27 -0
  109. package/dist/interfaces/MediaOrderBy.d.ts +14 -0
  110. package/dist/interfaces/MediaType.d.ts +14 -0
  111. package/dist/interfaces/MultiLangable.d.ts +4 -0
  112. package/dist/interfaces/MultiLangableBoolExp.d.ts +9 -0
  113. package/dist/interfaces/MultiLangableDistinctExp.d.ts +5 -0
  114. package/dist/interfaces/MultiLangableOrderBy.d.ts +5 -0
  115. package/dist/interfaces/NumberComparisonExp.d.ts +12 -0
  116. package/dist/interfaces/OgMeta.d.ts +9 -0
  117. package/dist/interfaces/OgMetaBoolExp.d.ts +14 -0
  118. package/dist/interfaces/OgMetaDistinctExp.d.ts +10 -0
  119. package/dist/interfaces/OgMetaOrderBy.d.ts +10 -0
  120. package/dist/interfaces/Page.d.ts +15 -0
  121. package/dist/interfaces/PageBoolExp.d.ts +15 -0
  122. package/dist/interfaces/PageDistinctExp.d.ts +32 -0
  123. package/dist/interfaces/PageInput.d.ts +17 -0
  124. package/dist/interfaces/PageOrderBy.d.ts +12 -0
  125. package/dist/interfaces/Person.d.ts +26 -0
  126. package/dist/interfaces/PersonBoolExp.d.ts +19 -0
  127. package/dist/interfaces/PersonDistinctExp.d.ts +27 -0
  128. package/dist/interfaces/PersonOrderBy.d.ts +27 -0
  129. package/dist/interfaces/Post.d.ts +29 -0
  130. package/dist/interfaces/PostBoolExp.d.ts +29 -0
  131. package/dist/interfaces/PostCategory.d.ts +19 -0
  132. package/dist/interfaces/PostCategoryBoolExp.d.ts +20 -0
  133. package/dist/interfaces/PostCategoryDistinctExp.d.ts +20 -0
  134. package/dist/interfaces/PostCategoryInput.d.ts +19 -0
  135. package/dist/interfaces/PostCategoryOrderBy.d.ts +11 -0
  136. package/dist/interfaces/PostDistinctExp.d.ts +44 -0
  137. package/dist/interfaces/PostInput.d.ts +30 -0
  138. package/dist/interfaces/PostOrderBy.d.ts +16 -0
  139. package/dist/interfaces/PostSettings.d.ts +5 -0
  140. package/dist/interfaces/Product.d.ts +22 -0
  141. package/dist/interfaces/ProductBoolExp.d.ts +22 -0
  142. package/dist/interfaces/ProductCategory.d.ts +15 -0
  143. package/dist/interfaces/ProductCategoryBoolExp.d.ts +16 -0
  144. package/dist/interfaces/ProductCategoryDistinctExp.d.ts +20 -0
  145. package/dist/interfaces/ProductCategoryInput.d.ts +15 -0
  146. package/dist/interfaces/ProductCategoryOrderBy.d.ts +7 -0
  147. package/dist/interfaces/ProductDistinctExp.d.ts +39 -0
  148. package/dist/interfaces/ProductInput.d.ts +22 -0
  149. package/dist/interfaces/ProductOrderBy.d.ts +7 -0
  150. package/dist/interfaces/ProductSettings.d.ts +5 -0
  151. package/dist/interfaces/Publishable.d.ts +11 -0
  152. package/dist/interfaces/PublishableBoolExp.d.ts +14 -0
  153. package/dist/interfaces/PublishableDistinctExp.d.ts +37 -0
  154. package/dist/interfaces/PublishableOrderBy.d.ts +11 -0
  155. package/dist/interfaces/PublishableStatus.d.ts +14 -0
  156. package/dist/interfaces/Role.d.ts +13 -0
  157. package/dist/interfaces/RoleBoolExp.d.ts +15 -0
  158. package/dist/interfaces/RoleDistinctExp.d.ts +8 -0
  159. package/dist/interfaces/RoleInput.d.ts +13 -0
  160. package/dist/interfaces/RoleOrderBy.d.ts +8 -0
  161. package/dist/interfaces/SeoMeta.d.ts +6 -0
  162. package/dist/interfaces/SeoMetaBoolExp.d.ts +11 -0
  163. package/dist/interfaces/SeoMetaDistinctExp.d.ts +7 -0
  164. package/dist/interfaces/SeoMetaOrderBy.d.ts +7 -0
  165. package/dist/interfaces/Slug.d.ts +13 -0
  166. package/dist/interfaces/SlugBoolExp.d.ts +16 -0
  167. package/dist/interfaces/SlugDistinctExp.d.ts +19 -0
  168. package/dist/interfaces/SlugInput.d.ts +15 -0
  169. package/dist/interfaces/SlugOrderBy.d.ts +6 -0
  170. package/dist/interfaces/StringComparisonExp.d.ts +18 -0
  171. package/dist/interfaces/Tag.d.ts +22 -0
  172. package/dist/interfaces/TagBoolExp.d.ts +19 -0
  173. package/dist/interfaces/TagDistinctExp.d.ts +23 -0
  174. package/dist/interfaces/TagInput.d.ts +21 -0
  175. package/dist/interfaces/TagOrderBy.d.ts +14 -0
  176. package/dist/interfaces/Template.d.ts +18 -0
  177. package/dist/interfaces/TemplateBoolExp.d.ts +20 -0
  178. package/dist/interfaces/TemplateCategory.d.ts +14 -0
  179. package/dist/interfaces/TemplateCategoryBoolExp.d.ts +16 -0
  180. package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +20 -0
  181. package/dist/interfaces/TemplateCategoryInput.d.ts +15 -0
  182. package/dist/interfaces/TemplateCategoryOrderBy.d.ts +7 -0
  183. package/dist/interfaces/TemplateDistinctExp.d.ts +25 -0
  184. package/dist/interfaces/TemplateInput.d.ts +20 -0
  185. package/dist/interfaces/TemplateOrderBy.d.ts +12 -0
  186. package/dist/interfaces/TemplateType.d.ts +34 -0
  187. package/dist/interfaces/Theme.d.ts +17 -0
  188. package/dist/interfaces/ThemeBoolExp.d.ts +17 -0
  189. package/dist/interfaces/ThemeDistinctExp.d.ts +21 -0
  190. package/dist/interfaces/ThemeInput.d.ts +16 -0
  191. package/dist/interfaces/ThemeOrderBy.d.ts +8 -0
  192. package/dist/interfaces/ThemeSettings.d.ts +8 -0
  193. package/dist/interfaces/User.d.ts +29 -0
  194. package/dist/interfaces/UserBoolExp.d.ts +29 -0
  195. package/dist/interfaces/UserDistinctExp.d.ts +43 -0
  196. package/dist/interfaces/UserInput.d.ts +27 -0
  197. package/dist/interfaces/UserOrderBy.d.ts +12 -0
  198. package/dist/interfaces/UserType.d.ts +14 -0
  199. package/dist/interfaces/WebSiteUserBoolExp.d.ts +14 -0
  200. package/dist/interfaces/WebSiteUserDistinctExp.d.ts +37 -0
  201. package/dist/interfaces/WebSiteUserOrderBy.d.ts +14 -0
  202. package/dist/interfaces/Website.d.ts +48 -0
  203. package/dist/interfaces/WebsiteBoolExp.d.ts +29 -0
  204. package/dist/interfaces/WebsiteContent.d.ts +14 -0
  205. package/dist/interfaces/WebsiteContentBoolExp.d.ts +19 -0
  206. package/dist/interfaces/WebsiteContentDistinctExp.d.ts +34 -0
  207. package/dist/interfaces/WebsiteContentOrderBy.d.ts +15 -0
  208. package/dist/interfaces/WebsiteDistinctExp.d.ts +32 -0
  209. package/dist/interfaces/WebsiteInput.d.ts +49 -0
  210. package/dist/interfaces/WebsiteMeta.d.ts +5 -0
  211. package/dist/interfaces/WebsiteMetaBoolExp.d.ts +7 -0
  212. package/dist/interfaces/WebsiteMetaDistinctExp.d.ts +4 -0
  213. package/dist/interfaces/WebsiteMetaInput.d.ts +6 -0
  214. package/dist/interfaces/WebsiteMetaOrderBy.d.ts +4 -0
  215. package/dist/interfaces/WebsiteOrderBy.d.ts +36 -0
  216. package/dist/interfaces/WebsitePart.d.ts +5 -0
  217. package/dist/interfaces/WebsitePartBoolExp.d.ts +10 -0
  218. package/dist/interfaces/WebsitePartDistinctExp.d.ts +18 -0
  219. package/dist/interfaces/WebsitePartOrderBy.d.ts +6 -0
  220. package/dist/interfaces/WebsiteSettings.d.ts +10 -0
  221. package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +10 -0
  222. package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +22 -0
  223. package/dist/interfaces/WebsiteSettingsInput.d.ts +11 -0
  224. package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +9 -0
  225. package/dist/interfaces/WebsiteType.d.ts +35 -0
  226. package/dist/interfaces/WebsiteTypeBoolExp.d.ts +27 -0
  227. package/dist/interfaces/WebsiteTypeDistinctExp.d.ts +25 -0
  228. package/dist/interfaces/WebsiteTypeInput.d.ts +35 -0
  229. package/dist/interfaces/WebsiteTypeOrderBy.d.ts +29 -0
  230. package/dist/interfaces/WebsiteTypeStatus.d.ts +10 -0
  231. package/dist/interfaces/WebsiteUser.d.ts +14 -0
  232. package/dist/interfaces/index.d.ts +134 -0
  233. package/package.json +4 -4
  234. package/dist/apis/BaseService.d.ts +0 -18
  235. package/dist/apis/RxcmsEnquiry.d.ts +0 -18
  236. package/dist/apis/RxcmsLang.d.ts +0 -18
  237. package/dist/apis/RxcmsMeta.d.ts +0 -18
  238. package/dist/apis/RxcmsNavigation.d.ts +0 -18
  239. package/dist/apis/RxcmsPage.d.ts +0 -18
  240. package/dist/apis/RxcmsPost.d.ts +0 -18
  241. package/dist/apis/RxcmsProduct.d.ts +0 -18
  242. package/dist/apis/RxcmsSlug.d.ts +0 -18
  243. package/dist/apis/RxcmsTemplate.d.ts +0 -18
  244. package/dist/apis/RxcmsTemplateCategory.d.ts +0 -18
  245. package/dist/apis/RxcmsTheme.d.ts +0 -18
  246. package/dist/apis/RxcmsThemeTemplate.d.ts +0 -18
  247. package/dist/apis/RxcmsUser.d.ts +0 -18
  248. package/dist/apis/RxcmsWebsite.d.ts +0 -18
  249. package/dist/apis/RxcmsWebsiteSettings.d.ts +0 -18
  250. package/dist/apis/RxcmsWebsiteType.d.ts +0 -18
  251. package/dist/apis/index.d.ts +0 -17
  252. package/dist/entity-fields/MapObjectFields.d.ts +0 -4
  253. package/dist/entity-fields/RelatedObjectFields.d.ts +0 -6
  254. package/dist/entity-fields/RxcmsEnquiryFields.d.ts +0 -17
  255. package/dist/entity-fields/RxcmsLangFields.d.ts +0 -12
  256. package/dist/entity-fields/RxcmsMetaFields.d.ts +0 -13
  257. package/dist/entity-fields/RxcmsNavigationFields.d.ts +0 -13
  258. package/dist/entity-fields/RxcmsPageFields.d.ts +0 -15
  259. package/dist/entity-fields/RxcmsPostFields.d.ts +0 -19
  260. package/dist/entity-fields/RxcmsProductFields.d.ts +0 -20
  261. package/dist/entity-fields/RxcmsSlugFields.d.ts +0 -13
  262. package/dist/entity-fields/RxcmsTemplateCategoryFields.d.ts +0 -11
  263. package/dist/entity-fields/RxcmsTemplateFields.d.ts +0 -14
  264. package/dist/entity-fields/RxcmsThemeFields.d.ts +0 -13
  265. package/dist/entity-fields/RxcmsThemeTemplateFields.d.ts +0 -14
  266. package/dist/entity-fields/RxcmsUserFields.d.ts +0 -20
  267. package/dist/entity-fields/RxcmsWebUserFields.d.ts +0 -20
  268. package/dist/entity-fields/RxcmsWebsiteFields.d.ts +0 -16
  269. package/dist/entity-fields/RxcmsWebsiteSettingsFields.d.ts +0 -12
  270. package/dist/entity-fields/RxcmsWebsiteTypeFields.d.ts +0 -15
  271. package/dist/entity-fields/UserInfoDtoFields.d.ts +0 -10
  272. package/dist/entity-fields/index.d.ts +0 -20
  273. package/dist/entity-interfaces/MapObject.d.ts +0 -6
  274. package/dist/entity-interfaces/RelatedObject.d.ts +0 -9
  275. package/dist/entity-interfaces/RxcmsEnquiry.d.ts +0 -22
  276. package/dist/entity-interfaces/RxcmsLang.d.ts +0 -14
  277. package/dist/entity-interfaces/RxcmsMeta.d.ts +0 -15
  278. package/dist/entity-interfaces/RxcmsNavigation.d.ts +0 -18
  279. package/dist/entity-interfaces/RxcmsPage.d.ts +0 -17
  280. package/dist/entity-interfaces/RxcmsPost.d.ts +0 -24
  281. package/dist/entity-interfaces/RxcmsProduct.d.ts +0 -25
  282. package/dist/entity-interfaces/RxcmsSlug.d.ts +0 -15
  283. package/dist/entity-interfaces/RxcmsTemplate.d.ts +0 -17
  284. package/dist/entity-interfaces/RxcmsTemplateCategory.d.ts +0 -13
  285. package/dist/entity-interfaces/RxcmsTheme.d.ts +0 -17
  286. package/dist/entity-interfaces/RxcmsThemeTemplate.d.ts +0 -17
  287. package/dist/entity-interfaces/RxcmsUser.d.ts +0 -22
  288. package/dist/entity-interfaces/RxcmsWebUser.d.ts +0 -22
  289. package/dist/entity-interfaces/RxcmsWebsite.d.ts +0 -19
  290. package/dist/entity-interfaces/RxcmsWebsiteSettings.d.ts +0 -14
  291. package/dist/entity-interfaces/RxcmsWebsiteType.d.ts +0 -17
  292. package/dist/entity-interfaces/UserInfoDto.d.ts +0 -12
  293. package/dist/entity-interfaces/index.d.ts +0 -20
@@ -0,0 +1,134 @@
1
+ export * from './User';
2
+ export * from './UserInput';
3
+ export * from './UserBoolExp';
4
+ export * from './UserOrderBy';
5
+ export * from './UserDistinctExp';
6
+ export * from './Role';
7
+ export * from './RoleInput';
8
+ export * from './RoleBoolExp';
9
+ export * from './RoleOrderBy';
10
+ export * from './RoleDistinctExp';
11
+ export * from './Ability';
12
+ export * from './AbilityInput';
13
+ export * from './AbilityBoolExp';
14
+ export * from './AbilityOrderBy';
15
+ export * from './AbilityDistinctExp';
16
+ export * from './AbilityType';
17
+ export * from './Media';
18
+ export * from './MediaInput';
19
+ export * from './MediaBoolExp';
20
+ export * from './MediaOrderBy';
21
+ export * from './MediaDistinctExp';
22
+ export * from './MediaType';
23
+ export * from './Website';
24
+ export * from './WebsiteInput';
25
+ export * from './WebsiteBoolExp';
26
+ export * from './WebsiteOrderBy';
27
+ export * from './WebsiteDistinctExp';
28
+ export * from './Lang';
29
+ export * from './LangInput';
30
+ export * from './LangBoolExp';
31
+ export * from './LangOrderBy';
32
+ export * from './LangDistinctExp';
33
+ export * from './WebsiteType';
34
+ export * from './WebsiteTypeInput';
35
+ export * from './WebsiteTypeBoolExp';
36
+ export * from './WebsiteTypeOrderBy';
37
+ export * from './WebsiteTypeDistinctExp';
38
+ export * from './Page';
39
+ export * from './PageInput';
40
+ export * from './PageBoolExp';
41
+ export * from './PageOrderBy';
42
+ export * from './PageDistinctExp';
43
+ export * from './Post';
44
+ export * from './PostInput';
45
+ export * from './PostBoolExp';
46
+ export * from './PostOrderBy';
47
+ export * from './PostDistinctExp';
48
+ export * from './Product';
49
+ export * from './ProductInput';
50
+ export * from './ProductBoolExp';
51
+ export * from './ProductOrderBy';
52
+ export * from './ProductDistinctExp';
53
+ export * from './Slug';
54
+ export * from './SlugInput';
55
+ export * from './SlugBoolExp';
56
+ export * from './SlugOrderBy';
57
+ export * from './SlugDistinctExp';
58
+ export * from './Enquiry';
59
+ export * from './EnquiryInput';
60
+ export * from './EnquiryBoolExp';
61
+ export * from './EnquiryOrderBy';
62
+ export * from './EnquiryDistinctExp';
63
+ export * from './WebsiteMeta';
64
+ export * from './WebsiteMetaInput';
65
+ export * from './WebsiteMetaBoolExp';
66
+ export * from './WebsiteMetaOrderBy';
67
+ export * from './WebsiteMetaDistinctExp';
68
+ export * from './WebsiteSettings';
69
+ export * from './WebsiteSettingsInput';
70
+ export * from './WebsiteSettingsBoolExp';
71
+ export * from './WebsiteSettingsOrderBy';
72
+ export * from './WebsiteSettingsDistinctExp';
73
+ export * from './Template';
74
+ export * from './TemplateInput';
75
+ export * from './TemplateBoolExp';
76
+ export * from './TemplateOrderBy';
77
+ export * from './TemplateDistinctExp';
78
+ export * from './TemplateCategory';
79
+ export * from './TemplateCategoryInput';
80
+ export * from './TemplateCategoryBoolExp';
81
+ export * from './TemplateCategoryOrderBy';
82
+ export * from './TemplateCategoryDistinctExp';
83
+ export * from './Theme';
84
+ export * from './ThemeInput';
85
+ export * from './ThemeBoolExp';
86
+ export * from './ThemeOrderBy';
87
+ export * from './ThemeDistinctExp';
88
+ export * from './MediaFolder';
89
+ export * from './MediaFolderInput';
90
+ export * from './MediaFolderBoolExp';
91
+ export * from './MediaFolderOrderBy';
92
+ export * from './MediaFolderDistinctExp';
93
+ export * from './WebsitePart';
94
+ export * from './WebsiteTypeStatus';
95
+ export * from './WebsiteContent';
96
+ export * from './PostCategory';
97
+ export * from './PostCategoryInput';
98
+ export * from './PostCategoryBoolExp';
99
+ export * from './PostCategoryOrderBy';
100
+ export * from './PostCategoryDistinctExp';
101
+ export * from './Tag';
102
+ export * from './TagInput';
103
+ export * from './TagBoolExp';
104
+ export * from './TagOrderBy';
105
+ export * from './TagDistinctExp';
106
+ export * from './SeoMeta';
107
+ export * from './OgMeta';
108
+ export * from './Publishable';
109
+ export * from './PublishableStatus';
110
+ export * from './Person';
111
+ export * from './Customer';
112
+ export * from './CustomerInput';
113
+ export * from './CustomerBoolExp';
114
+ export * from './CustomerOrderBy';
115
+ export * from './CustomerDistinctExp';
116
+ export * from './BaseEntity';
117
+ export * from './MultiLangable';
118
+ export * from './WebsiteUser';
119
+ export * from './CustomizeMedia';
120
+ export * from './UserType';
121
+ export * from './TemplateType';
122
+ export * from './ProductCategory';
123
+ export * from './ProductCategoryInput';
124
+ export * from './ProductCategoryBoolExp';
125
+ export * from './ProductCategoryOrderBy';
126
+ export * from './ProductCategoryDistinctExp';
127
+ export * from './MediaAddon';
128
+ export * from './ThemeSettings';
129
+ export * from './ProductSettings';
130
+ export * from './PostSettings';
131
+ export * from './FormSettings';
132
+ export * from './ExtendFieldType';
133
+ export * from './ComponentType';
134
+ export * from './ExtendField';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -15,13 +15,13 @@
15
15
  "@rxdrag/eslint-config-custom": "0.1.1",
16
16
  "@rxdrag/tsconfig": "0.1.1"
17
17
  },
18
- "peerDependencies": {},
19
18
  "dependencies": {
20
- "@rxdrag/nop-hooks": "0.1.1"
19
+ "swr": "^2.2.4",
20
+ "@rxdrag/entify-hooks": "0.0.2"
21
21
  },
22
22
  "scripts": {
23
23
  "lint": "eslint . --ext .ts,tsx",
24
- "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
24
+ "clean": "rimraf -rf .turbo && rimraf -rf node_modules && rimraf -rf dist",
25
25
  "build": "vite build"
26
26
  },
27
27
  "typings": "dist/index.d.ts"
@@ -1,18 +0,0 @@
1
- import type { UserInfoDto } from '../entity-interfaces';
2
- import type { MapObject } from '../entity-interfaces';
3
- import type { RelatedObject } from '../entity-interfaces';
4
- /**
5
- * getUserInfo
6
- * @param 用户信息
7
- */
8
- export declare function BaseService__getUserInfo(): Promise<UserInfoDto | undefined>;
9
- /**
10
- * getMapObject
11
- * @param MapObject
12
- */
13
- export declare function BaseService__getMapObject(): Promise<MapObject | undefined>;
14
- /**
15
- * getRelatedObject
16
- * @param RelatedObject
17
- */
18
- export declare function BaseService__getRelatedObject(): Promise<RelatedObject | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsEnquiry } from '../entity-interfaces';
3
- export declare function RxcmsEnquiry__asDict(): Promise<RxcmsEnquiry | undefined>;
4
- export declare function RxcmsEnquiry__get(id: string): Promise<RxcmsEnquiry | undefined>;
5
- export declare function RxcmsEnquiry__batchGet(ids: string): Promise<RxcmsEnquiry[] | undefined>;
6
- export declare function RxcmsEnquiry__findList(query: IQueryPageOptions): Promise<RxcmsEnquiry[] | undefined>;
7
- export declare function RxcmsEnquiry__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsEnquiry> | undefined>;
8
- export declare function RxcmsEnquiry__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsEnquiry> | undefined>;
9
- export declare function RxcmsEnquiry__findFirst(query: IQueryPageOptions): Promise<RxcmsEnquiry | undefined>;
10
- export declare function RxcmsEnquiry__copyForNew(data: RxcmsEnquiry): Promise<RxcmsEnquiry | undefined>;
11
- export declare function RxcmsEnquiry__save(data: RxcmsEnquiry): Promise<RxcmsEnquiry | undefined>;
12
- export declare function RxcmsEnquiry__update(data: RxcmsEnquiry): Promise<RxcmsEnquiry | undefined>;
13
- export declare function RxcmsEnquiry__save_update(data: RxcmsEnquiry): Promise<RxcmsEnquiry | undefined>;
14
- export declare function RxcmsEnquiry__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsEnquiry__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsEnquiry__batchUpdate(ids: string, data: RxcmsEnquiry): Promise<RxcmsEnquiry | undefined>;
17
- export declare function RxcmsEnquiry__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsEnquiry__batchModify(delIds: string, data: RxcmsEnquiry): Promise<RxcmsEnquiry | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsLang } from '../entity-interfaces';
3
- export declare function RxcmsLang__asDict(): Promise<RxcmsLang | undefined>;
4
- export declare function RxcmsLang__get(id: string): Promise<RxcmsLang | undefined>;
5
- export declare function RxcmsLang__batchGet(ids: string): Promise<RxcmsLang[] | undefined>;
6
- export declare function RxcmsLang__findList(query: IQueryPageOptions): Promise<RxcmsLang[] | undefined>;
7
- export declare function RxcmsLang__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsLang> | undefined>;
8
- export declare function RxcmsLang__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsLang> | undefined>;
9
- export declare function RxcmsLang__findFirst(query: IQueryPageOptions): Promise<RxcmsLang | undefined>;
10
- export declare function RxcmsLang__copyForNew(data: RxcmsLang): Promise<RxcmsLang | undefined>;
11
- export declare function RxcmsLang__save(data: RxcmsLang): Promise<RxcmsLang | undefined>;
12
- export declare function RxcmsLang__update(data: RxcmsLang): Promise<RxcmsLang | undefined>;
13
- export declare function RxcmsLang__save_update(data: RxcmsLang): Promise<RxcmsLang | undefined>;
14
- export declare function RxcmsLang__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsLang__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsLang__batchUpdate(ids: string, data: RxcmsLang): Promise<RxcmsLang | undefined>;
17
- export declare function RxcmsLang__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsLang__batchModify(delIds: string, data: RxcmsLang): Promise<RxcmsLang | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsMeta } from '../entity-interfaces';
3
- export declare function RxcmsMeta__asDict(): Promise<RxcmsMeta | undefined>;
4
- export declare function RxcmsMeta__get(id: string): Promise<RxcmsMeta | undefined>;
5
- export declare function RxcmsMeta__batchGet(ids: string): Promise<RxcmsMeta[] | undefined>;
6
- export declare function RxcmsMeta__findList(query: IQueryPageOptions): Promise<RxcmsMeta[] | undefined>;
7
- export declare function RxcmsMeta__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsMeta> | undefined>;
8
- export declare function RxcmsMeta__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsMeta> | undefined>;
9
- export declare function RxcmsMeta__findFirst(query: IQueryPageOptions): Promise<RxcmsMeta | undefined>;
10
- export declare function RxcmsMeta__copyForNew(data: RxcmsMeta): Promise<RxcmsMeta | undefined>;
11
- export declare function RxcmsMeta__save(data: RxcmsMeta): Promise<RxcmsMeta | undefined>;
12
- export declare function RxcmsMeta__update(data: RxcmsMeta): Promise<RxcmsMeta | undefined>;
13
- export declare function RxcmsMeta__save_update(data: RxcmsMeta): Promise<RxcmsMeta | undefined>;
14
- export declare function RxcmsMeta__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsMeta__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsMeta__batchUpdate(ids: string, data: RxcmsMeta): Promise<RxcmsMeta | undefined>;
17
- export declare function RxcmsMeta__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsMeta__batchModify(delIds: string, data: RxcmsMeta): Promise<RxcmsMeta | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsNavigation } from '../entity-interfaces';
3
- export declare function RxcmsNavigation__asDict(): Promise<RxcmsNavigation | undefined>;
4
- export declare function RxcmsNavigation__get(id: string): Promise<RxcmsNavigation | undefined>;
5
- export declare function RxcmsNavigation__batchGet(ids: string): Promise<RxcmsNavigation[] | undefined>;
6
- export declare function RxcmsNavigation__findList(query: IQueryPageOptions): Promise<RxcmsNavigation[] | undefined>;
7
- export declare function RxcmsNavigation__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsNavigation> | undefined>;
8
- export declare function RxcmsNavigation__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsNavigation> | undefined>;
9
- export declare function RxcmsNavigation__findFirst(query: IQueryPageOptions): Promise<RxcmsNavigation | undefined>;
10
- export declare function RxcmsNavigation__copyForNew(data: RxcmsNavigation): Promise<RxcmsNavigation | undefined>;
11
- export declare function RxcmsNavigation__save(data: RxcmsNavigation): Promise<RxcmsNavigation | undefined>;
12
- export declare function RxcmsNavigation__update(data: RxcmsNavigation): Promise<RxcmsNavigation | undefined>;
13
- export declare function RxcmsNavigation__save_update(data: RxcmsNavigation): Promise<RxcmsNavigation | undefined>;
14
- export declare function RxcmsNavigation__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsNavigation__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsNavigation__batchUpdate(ids: string, data: RxcmsNavigation): Promise<RxcmsNavigation | undefined>;
17
- export declare function RxcmsNavigation__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsNavigation__batchModify(delIds: string, data: RxcmsNavigation): Promise<RxcmsNavigation | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsPage } from '../entity-interfaces';
3
- export declare function RxcmsPage__asDict(): Promise<RxcmsPage | undefined>;
4
- export declare function RxcmsPage__get(id: string): Promise<RxcmsPage | undefined>;
5
- export declare function RxcmsPage__batchGet(ids: string): Promise<RxcmsPage[] | undefined>;
6
- export declare function RxcmsPage__findList(query: IQueryPageOptions): Promise<RxcmsPage[] | undefined>;
7
- export declare function RxcmsPage__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsPage> | undefined>;
8
- export declare function RxcmsPage__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsPage> | undefined>;
9
- export declare function RxcmsPage__findFirst(query: IQueryPageOptions): Promise<RxcmsPage | undefined>;
10
- export declare function RxcmsPage__copyForNew(data: RxcmsPage): Promise<RxcmsPage | undefined>;
11
- export declare function RxcmsPage__save(data: RxcmsPage): Promise<RxcmsPage | undefined>;
12
- export declare function RxcmsPage__update(data: RxcmsPage): Promise<RxcmsPage | undefined>;
13
- export declare function RxcmsPage__save_update(data: RxcmsPage): Promise<RxcmsPage | undefined>;
14
- export declare function RxcmsPage__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsPage__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsPage__batchUpdate(ids: string, data: RxcmsPage): Promise<RxcmsPage | undefined>;
17
- export declare function RxcmsPage__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsPage__batchModify(delIds: string, data: RxcmsPage): Promise<RxcmsPage | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsPost } from '../entity-interfaces';
3
- export declare function RxcmsPost__asDict(): Promise<RxcmsPost | undefined>;
4
- export declare function RxcmsPost__get(id: string): Promise<RxcmsPost | undefined>;
5
- export declare function RxcmsPost__batchGet(ids: string): Promise<RxcmsPost[] | undefined>;
6
- export declare function RxcmsPost__findList(query: IQueryPageOptions): Promise<RxcmsPost[] | undefined>;
7
- export declare function RxcmsPost__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsPost> | undefined>;
8
- export declare function RxcmsPost__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsPost> | undefined>;
9
- export declare function RxcmsPost__findFirst(query: IQueryPageOptions): Promise<RxcmsPost | undefined>;
10
- export declare function RxcmsPost__copyForNew(data: RxcmsPost): Promise<RxcmsPost | undefined>;
11
- export declare function RxcmsPost__save(data: RxcmsPost): Promise<RxcmsPost | undefined>;
12
- export declare function RxcmsPost__update(data: RxcmsPost): Promise<RxcmsPost | undefined>;
13
- export declare function RxcmsPost__save_update(data: RxcmsPost): Promise<RxcmsPost | undefined>;
14
- export declare function RxcmsPost__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsPost__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsPost__batchUpdate(ids: string, data: RxcmsPost): Promise<RxcmsPost | undefined>;
17
- export declare function RxcmsPost__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsPost__batchModify(delIds: string, data: RxcmsPost): Promise<RxcmsPost | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsProduct } from '../entity-interfaces';
3
- export declare function RxcmsProduct__asDict(): Promise<RxcmsProduct | undefined>;
4
- export declare function RxcmsProduct__get(id: string): Promise<RxcmsProduct | undefined>;
5
- export declare function RxcmsProduct__batchGet(ids: string): Promise<RxcmsProduct[] | undefined>;
6
- export declare function RxcmsProduct__findList(query: IQueryPageOptions): Promise<RxcmsProduct[] | undefined>;
7
- export declare function RxcmsProduct__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsProduct> | undefined>;
8
- export declare function RxcmsProduct__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsProduct> | undefined>;
9
- export declare function RxcmsProduct__findFirst(query: IQueryPageOptions): Promise<RxcmsProduct | undefined>;
10
- export declare function RxcmsProduct__copyForNew(data: RxcmsProduct): Promise<RxcmsProduct | undefined>;
11
- export declare function RxcmsProduct__save(data: RxcmsProduct): Promise<RxcmsProduct | undefined>;
12
- export declare function RxcmsProduct__update(data: RxcmsProduct): Promise<RxcmsProduct | undefined>;
13
- export declare function RxcmsProduct__save_update(data: RxcmsProduct): Promise<RxcmsProduct | undefined>;
14
- export declare function RxcmsProduct__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsProduct__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsProduct__batchUpdate(ids: string, data: RxcmsProduct): Promise<RxcmsProduct | undefined>;
17
- export declare function RxcmsProduct__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsProduct__batchModify(delIds: string, data: RxcmsProduct): Promise<RxcmsProduct | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsSlug } from '../entity-interfaces';
3
- export declare function RxcmsSlug__asDict(): Promise<RxcmsSlug | undefined>;
4
- export declare function RxcmsSlug__get(id: string): Promise<RxcmsSlug | undefined>;
5
- export declare function RxcmsSlug__batchGet(ids: string): Promise<RxcmsSlug[] | undefined>;
6
- export declare function RxcmsSlug__findList(query: IQueryPageOptions): Promise<RxcmsSlug[] | undefined>;
7
- export declare function RxcmsSlug__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsSlug> | undefined>;
8
- export declare function RxcmsSlug__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsSlug> | undefined>;
9
- export declare function RxcmsSlug__findFirst(query: IQueryPageOptions): Promise<RxcmsSlug | undefined>;
10
- export declare function RxcmsSlug__copyForNew(data: RxcmsSlug): Promise<RxcmsSlug | undefined>;
11
- export declare function RxcmsSlug__save(data: RxcmsSlug): Promise<RxcmsSlug | undefined>;
12
- export declare function RxcmsSlug__update(data: RxcmsSlug): Promise<RxcmsSlug | undefined>;
13
- export declare function RxcmsSlug__save_update(data: RxcmsSlug): Promise<RxcmsSlug | undefined>;
14
- export declare function RxcmsSlug__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsSlug__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsSlug__batchUpdate(ids: string, data: RxcmsSlug): Promise<RxcmsSlug | undefined>;
17
- export declare function RxcmsSlug__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsSlug__batchModify(delIds: string, data: RxcmsSlug): Promise<RxcmsSlug | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsTemplate } from '../entity-interfaces';
3
- export declare function RxcmsTemplate__asDict(): Promise<RxcmsTemplate | undefined>;
4
- export declare function RxcmsTemplate__get(id: string): Promise<RxcmsTemplate | undefined>;
5
- export declare function RxcmsTemplate__batchGet(ids: string): Promise<RxcmsTemplate[] | undefined>;
6
- export declare function RxcmsTemplate__findList(query: IQueryPageOptions): Promise<RxcmsTemplate[] | undefined>;
7
- export declare function RxcmsTemplate__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsTemplate> | undefined>;
8
- export declare function RxcmsTemplate__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsTemplate> | undefined>;
9
- export declare function RxcmsTemplate__findFirst(query: IQueryPageOptions): Promise<RxcmsTemplate | undefined>;
10
- export declare function RxcmsTemplate__copyForNew(data: RxcmsTemplate): Promise<RxcmsTemplate | undefined>;
11
- export declare function RxcmsTemplate__save(data: RxcmsTemplate): Promise<RxcmsTemplate | undefined>;
12
- export declare function RxcmsTemplate__update(data: RxcmsTemplate): Promise<RxcmsTemplate | undefined>;
13
- export declare function RxcmsTemplate__save_update(data: RxcmsTemplate): Promise<RxcmsTemplate | undefined>;
14
- export declare function RxcmsTemplate__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsTemplate__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsTemplate__batchUpdate(ids: string, data: RxcmsTemplate): Promise<RxcmsTemplate | undefined>;
17
- export declare function RxcmsTemplate__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsTemplate__batchModify(delIds: string, data: RxcmsTemplate): Promise<RxcmsTemplate | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsTemplateCategory } from '../entity-interfaces';
3
- export declare function RxcmsTemplateCategory__asDict(): Promise<RxcmsTemplateCategory | undefined>;
4
- export declare function RxcmsTemplateCategory__get(id: string): Promise<RxcmsTemplateCategory | undefined>;
5
- export declare function RxcmsTemplateCategory__batchGet(ids: string): Promise<RxcmsTemplateCategory[] | undefined>;
6
- export declare function RxcmsTemplateCategory__findList(query: IQueryPageOptions): Promise<RxcmsTemplateCategory[] | undefined>;
7
- export declare function RxcmsTemplateCategory__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsTemplateCategory> | undefined>;
8
- export declare function RxcmsTemplateCategory__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsTemplateCategory> | undefined>;
9
- export declare function RxcmsTemplateCategory__findFirst(query: IQueryPageOptions): Promise<RxcmsTemplateCategory | undefined>;
10
- export declare function RxcmsTemplateCategory__copyForNew(data: RxcmsTemplateCategory): Promise<RxcmsTemplateCategory | undefined>;
11
- export declare function RxcmsTemplateCategory__save(data: RxcmsTemplateCategory): Promise<RxcmsTemplateCategory | undefined>;
12
- export declare function RxcmsTemplateCategory__update(data: RxcmsTemplateCategory): Promise<RxcmsTemplateCategory | undefined>;
13
- export declare function RxcmsTemplateCategory__save_update(data: RxcmsTemplateCategory): Promise<RxcmsTemplateCategory | undefined>;
14
- export declare function RxcmsTemplateCategory__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsTemplateCategory__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsTemplateCategory__batchUpdate(ids: string, data: RxcmsTemplateCategory): Promise<RxcmsTemplateCategory | undefined>;
17
- export declare function RxcmsTemplateCategory__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsTemplateCategory__batchModify(delIds: string, data: RxcmsTemplateCategory): Promise<RxcmsTemplateCategory | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsTheme } from '../entity-interfaces';
3
- export declare function RxcmsTheme__asDict(): Promise<RxcmsTheme | undefined>;
4
- export declare function RxcmsTheme__get(id: string): Promise<RxcmsTheme | undefined>;
5
- export declare function RxcmsTheme__batchGet(ids: string): Promise<RxcmsTheme[] | undefined>;
6
- export declare function RxcmsTheme__findList(query: IQueryPageOptions): Promise<RxcmsTheme[] | undefined>;
7
- export declare function RxcmsTheme__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsTheme> | undefined>;
8
- export declare function RxcmsTheme__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsTheme> | undefined>;
9
- export declare function RxcmsTheme__findFirst(query: IQueryPageOptions): Promise<RxcmsTheme | undefined>;
10
- export declare function RxcmsTheme__copyForNew(data: RxcmsTheme): Promise<RxcmsTheme | undefined>;
11
- export declare function RxcmsTheme__save(data: RxcmsTheme): Promise<RxcmsTheme | undefined>;
12
- export declare function RxcmsTheme__update(data: RxcmsTheme): Promise<RxcmsTheme | undefined>;
13
- export declare function RxcmsTheme__save_update(data: RxcmsTheme): Promise<RxcmsTheme | undefined>;
14
- export declare function RxcmsTheme__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsTheme__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsTheme__batchUpdate(ids: string, data: RxcmsTheme): Promise<RxcmsTheme | undefined>;
17
- export declare function RxcmsTheme__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsTheme__batchModify(delIds: string, data: RxcmsTheme): Promise<RxcmsTheme | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsThemeTemplate } from '../entity-interfaces';
3
- export declare function RxcmsThemeTemplate__asDict(): Promise<RxcmsThemeTemplate | undefined>;
4
- export declare function RxcmsThemeTemplate__get(id: string): Promise<RxcmsThemeTemplate | undefined>;
5
- export declare function RxcmsThemeTemplate__batchGet(ids: string): Promise<RxcmsThemeTemplate[] | undefined>;
6
- export declare function RxcmsThemeTemplate__findList(query: IQueryPageOptions): Promise<RxcmsThemeTemplate[] | undefined>;
7
- export declare function RxcmsThemeTemplate__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsThemeTemplate> | undefined>;
8
- export declare function RxcmsThemeTemplate__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsThemeTemplate> | undefined>;
9
- export declare function RxcmsThemeTemplate__findFirst(query: IQueryPageOptions): Promise<RxcmsThemeTemplate | undefined>;
10
- export declare function RxcmsThemeTemplate__copyForNew(data: RxcmsThemeTemplate): Promise<RxcmsThemeTemplate | undefined>;
11
- export declare function RxcmsThemeTemplate__save(data: RxcmsThemeTemplate): Promise<RxcmsThemeTemplate | undefined>;
12
- export declare function RxcmsThemeTemplate__update(data: RxcmsThemeTemplate): Promise<RxcmsThemeTemplate | undefined>;
13
- export declare function RxcmsThemeTemplate__save_update(data: RxcmsThemeTemplate): Promise<RxcmsThemeTemplate | undefined>;
14
- export declare function RxcmsThemeTemplate__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsThemeTemplate__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsThemeTemplate__batchUpdate(ids: string, data: RxcmsThemeTemplate): Promise<RxcmsThemeTemplate | undefined>;
17
- export declare function RxcmsThemeTemplate__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsThemeTemplate__batchModify(delIds: string, data: RxcmsThemeTemplate): Promise<RxcmsThemeTemplate | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsUser } from '../entity-interfaces';
3
- export declare function RxcmsUser__asDict(): Promise<RxcmsUser | undefined>;
4
- export declare function RxcmsUser__get(id: string): Promise<RxcmsUser | undefined>;
5
- export declare function RxcmsUser__batchGet(ids: string): Promise<RxcmsUser[] | undefined>;
6
- export declare function RxcmsUser__findList(query: IQueryPageOptions): Promise<RxcmsUser[] | undefined>;
7
- export declare function RxcmsUser__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsUser> | undefined>;
8
- export declare function RxcmsUser__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsUser> | undefined>;
9
- export declare function RxcmsUser__findFirst(query: IQueryPageOptions): Promise<RxcmsUser | undefined>;
10
- export declare function RxcmsUser__copyForNew(data: RxcmsUser): Promise<RxcmsUser | undefined>;
11
- export declare function RxcmsUser__save(data: RxcmsUser): Promise<RxcmsUser | undefined>;
12
- export declare function RxcmsUser__update(data: RxcmsUser): Promise<RxcmsUser | undefined>;
13
- export declare function RxcmsUser__save_update(data: RxcmsUser): Promise<RxcmsUser | undefined>;
14
- export declare function RxcmsUser__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsUser__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsUser__batchUpdate(ids: string, data: RxcmsUser): Promise<RxcmsUser | undefined>;
17
- export declare function RxcmsUser__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsUser__batchModify(delIds: string, data: RxcmsUser): Promise<RxcmsUser | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsWebsite } from '../entity-interfaces';
3
- export declare function RxcmsWebsite__asDict(): Promise<RxcmsWebsite | undefined>;
4
- export declare function RxcmsWebsite__get(id: string): Promise<RxcmsWebsite | undefined>;
5
- export declare function RxcmsWebsite__batchGet(ids: string): Promise<RxcmsWebsite[] | undefined>;
6
- export declare function RxcmsWebsite__findList(query: IQueryPageOptions): Promise<RxcmsWebsite[] | undefined>;
7
- export declare function RxcmsWebsite__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsWebsite> | undefined>;
8
- export declare function RxcmsWebsite__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsWebsite> | undefined>;
9
- export declare function RxcmsWebsite__findFirst(query: IQueryPageOptions): Promise<RxcmsWebsite | undefined>;
10
- export declare function RxcmsWebsite__copyForNew(data: RxcmsWebsite): Promise<RxcmsWebsite | undefined>;
11
- export declare function RxcmsWebsite__save(data: RxcmsWebsite): Promise<RxcmsWebsite | undefined>;
12
- export declare function RxcmsWebsite__update(data: RxcmsWebsite): Promise<RxcmsWebsite | undefined>;
13
- export declare function RxcmsWebsite__save_update(data: RxcmsWebsite): Promise<RxcmsWebsite | undefined>;
14
- export declare function RxcmsWebsite__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsWebsite__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsWebsite__batchUpdate(ids: string, data: RxcmsWebsite): Promise<RxcmsWebsite | undefined>;
17
- export declare function RxcmsWebsite__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsWebsite__batchModify(delIds: string, data: RxcmsWebsite): Promise<RxcmsWebsite | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsWebsiteSettings } from '../entity-interfaces';
3
- export declare function RxcmsWebsiteSettings__asDict(): Promise<RxcmsWebsiteSettings | undefined>;
4
- export declare function RxcmsWebsiteSettings__get(id: string): Promise<RxcmsWebsiteSettings | undefined>;
5
- export declare function RxcmsWebsiteSettings__batchGet(ids: string): Promise<RxcmsWebsiteSettings[] | undefined>;
6
- export declare function RxcmsWebsiteSettings__findList(query: IQueryPageOptions): Promise<RxcmsWebsiteSettings[] | undefined>;
7
- export declare function RxcmsWebsiteSettings__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsWebsiteSettings> | undefined>;
8
- export declare function RxcmsWebsiteSettings__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsWebsiteSettings> | undefined>;
9
- export declare function RxcmsWebsiteSettings__findFirst(query: IQueryPageOptions): Promise<RxcmsWebsiteSettings | undefined>;
10
- export declare function RxcmsWebsiteSettings__copyForNew(data: RxcmsWebsiteSettings): Promise<RxcmsWebsiteSettings | undefined>;
11
- export declare function RxcmsWebsiteSettings__save(data: RxcmsWebsiteSettings): Promise<RxcmsWebsiteSettings | undefined>;
12
- export declare function RxcmsWebsiteSettings__update(data: RxcmsWebsiteSettings): Promise<RxcmsWebsiteSettings | undefined>;
13
- export declare function RxcmsWebsiteSettings__save_update(data: RxcmsWebsiteSettings): Promise<RxcmsWebsiteSettings | undefined>;
14
- export declare function RxcmsWebsiteSettings__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsWebsiteSettings__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsWebsiteSettings__batchUpdate(ids: string, data: RxcmsWebsiteSettings): Promise<RxcmsWebsiteSettings | undefined>;
17
- export declare function RxcmsWebsiteSettings__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsWebsiteSettings__batchModify(delIds: string, data: RxcmsWebsiteSettings): Promise<RxcmsWebsiteSettings | undefined>;
@@ -1,18 +0,0 @@
1
- import { IQueryPageOptions } from '@rxdrag/nop-hooks';
2
- import { RxcmsWebsiteType } from '../entity-interfaces';
3
- export declare function RxcmsWebsiteType__asDict(): Promise<RxcmsWebsiteType | undefined>;
4
- export declare function RxcmsWebsiteType__get(id: string): Promise<RxcmsWebsiteType | undefined>;
5
- export declare function RxcmsWebsiteType__batchGet(ids: string): Promise<RxcmsWebsiteType[] | undefined>;
6
- export declare function RxcmsWebsiteType__findList(query: IQueryPageOptions): Promise<RxcmsWebsiteType[] | undefined>;
7
- export declare function RxcmsWebsiteType__findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsWebsiteType> | undefined>;
8
- export declare function RxcmsWebsiteType__deleted_findPage(query: IQueryPageOptions): Promise<import("@rxdrag/nop-hooks").IPageBean<RxcmsWebsiteType> | undefined>;
9
- export declare function RxcmsWebsiteType__findFirst(query: IQueryPageOptions): Promise<RxcmsWebsiteType | undefined>;
10
- export declare function RxcmsWebsiteType__copyForNew(data: RxcmsWebsiteType): Promise<RxcmsWebsiteType | undefined>;
11
- export declare function RxcmsWebsiteType__save(data: RxcmsWebsiteType): Promise<RxcmsWebsiteType | undefined>;
12
- export declare function RxcmsWebsiteType__update(data: RxcmsWebsiteType): Promise<RxcmsWebsiteType | undefined>;
13
- export declare function RxcmsWebsiteType__save_update(data: RxcmsWebsiteType): Promise<RxcmsWebsiteType | undefined>;
14
- export declare function RxcmsWebsiteType__delete(id: string): Promise<unknown>;
15
- export declare function RxcmsWebsiteType__recoverDeleted(id: string): Promise<unknown>;
16
- export declare function RxcmsWebsiteType__batchUpdate(ids: string, data: RxcmsWebsiteType): Promise<RxcmsWebsiteType | undefined>;
17
- export declare function RxcmsWebsiteType__batchDelete(ids: string): Promise<unknown>;
18
- export declare function RxcmsWebsiteType__batchModify(delIds: string, data: RxcmsWebsiteType): Promise<RxcmsWebsiteType | undefined>;
@@ -1,17 +0,0 @@
1
- export * from './RxcmsEnquiry';
2
- export * from './RxcmsLang';
3
- export * from './RxcmsMeta';
4
- export * from './RxcmsNavigation';
5
- export * from './RxcmsPage';
6
- export * from './RxcmsPost';
7
- export * from './RxcmsProduct';
8
- export * from './RxcmsSlug';
9
- export * from './RxcmsTemplate';
10
- export * from './RxcmsTemplateCategory';
11
- export * from './RxcmsTheme';
12
- export * from './RxcmsThemeTemplate';
13
- export * from './RxcmsUser';
14
- export * from './RxcmsWebsite';
15
- export * from './RxcmsWebsiteSettings';
16
- export * from './RxcmsWebsiteType';
17
- export * from './BaseService';
@@ -1,4 +0,0 @@
1
- export declare enum MapObjectFields {
2
- name = "name",
3
- value = "value"
4
- }
@@ -1,6 +0,0 @@
1
- export declare enum RelatedObjectFields {
2
- name = "name",
3
- displayName = "displayName",
4
- namespace = "namespace",
5
- ref = "ref"
6
- }
@@ -1,17 +0,0 @@
1
- export declare enum RxcmsEnquiryFields {
2
- id = "id",
3
- name = "name",
4
- company = "company",
5
- email = "email",
6
- message = "message",
7
- noticeEmail = "noticeEmail",
8
- noticeMessage = "noticeMessage",
9
- thanksMessage = "thanksMessage",
10
- createdBy = "createdBy",
11
- createTime = "createTime",
12
- updatedBy = "updatedBy",
13
- updateTime = "updateTime",
14
- remark = "remark",
15
- websiteId = "websiteId",
16
- extFields = "extFields"
17
- }
@@ -1,12 +0,0 @@
1
- export declare enum RxcmsLangFields {
2
- id = "id",
3
- abbr = "abbr",
4
- enName = "enName",
5
- localName = "localName",
6
- icon = "icon",
7
- createdBy = "createdBy",
8
- createTime = "createTime",
9
- updatedBy = "updatedBy",
10
- updateTime = "updateTime",
11
- remark = "remark"
12
- }
@@ -1,13 +0,0 @@
1
- export declare enum RxcmsMetaFields {
2
- id = "id",
3
- title = "title",
4
- keywords = "keywords",
5
- description = "description",
6
- createdBy = "createdBy",
7
- createTime = "createTime",
8
- updatedBy = "updatedBy",
9
- updateTime = "updateTime",
10
- remark = "remark",
11
- websiteId = "websiteId",
12
- langAbbr = "langAbbr"
13
- }
@@ -1,13 +0,0 @@
1
- export declare enum RxcmsNavigationFields {
2
- id = "id",
3
- displayName = "displayName",
4
- content = "content",
5
- createdBy = "createdBy",
6
- createTime = "createTime",
7
- updatedBy = "updatedBy",
8
- updateTime = "updateTime",
9
- remark = "remark",
10
- websiteId = "websiteId",
11
- langAbbr = "langAbbr",
12
- extFields = "extFields"
13
- }
@@ -1,15 +0,0 @@
1
- export declare enum RxcmsPageFields {
2
- id = "id",
3
- title = "title",
4
- slug = "slug",
5
- content = "content",
6
- metaId = "metaId",
7
- createdBy = "createdBy",
8
- createTime = "createTime",
9
- updatedBy = "updatedBy",
10
- updateTime = "updateTime",
11
- remark = "remark",
12
- deleted = "deleted",
13
- websiteId = "websiteId",
14
- langAbbr = "langAbbr"
15
- }