@mrxsys/mrx-core 2.4.0 → 2.5.0

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 (312) hide show
  1. package/CHANGELOG.md +318 -33
  2. package/README.md +3 -3
  3. package/dist/chunk-1a3wj3m1.js +272 -0
  4. package/dist/chunk-370444pc.js +43 -0
  5. package/dist/chunk-5qtpggzv.js +38 -0
  6. package/dist/chunk-84mqvfsk.js +69 -0
  7. package/dist/chunk-cq973ydc.js +82 -0
  8. package/dist/chunk-f5z7x01b.js +352 -0
  9. package/dist/chunk-pc66jgqv.js +220 -0
  10. package/dist/chunk-s07amdhx.js +77 -0
  11. package/dist/chunk-v8v7982b.js +58 -0
  12. package/dist/chunk-vknq69e0.js +23 -0
  13. package/dist/chunk-yvyahr2h.js +40 -0
  14. package/dist/errors/baseError.d.ts +9 -0
  15. package/dist/errors/enums/httpErrorStatusCodes.d.ts +42 -0
  16. package/dist/errors/httpError.d.ts +14 -0
  17. package/dist/errors/index.d.ts +2 -0
  18. package/dist/errors/index.js +11 -0
  19. package/dist/errors/types/baseErrorOptions.d.ts +15 -0
  20. package/dist/errors/types/httpErrorOptions.d.ts +13 -0
  21. package/dist/errors/types/index.d.ts +2 -0
  22. package/dist/modules/data/data.d.ts +115 -0
  23. package/dist/modules/data/enums/dataErrorKeys.d.ts +3 -0
  24. package/dist/modules/data/index.d.ts +1 -0
  25. package/dist/modules/data/index.js +16 -0
  26. package/dist/modules/data/transformers/camelCase.d.ts +25 -0
  27. package/dist/modules/data/transformers/index.d.ts +4 -0
  28. package/dist/modules/data/transformers/index.js +32 -0
  29. package/dist/modules/data/transformers/kebabCase.d.ts +25 -0
  30. package/dist/modules/data/transformers/pascalCase.d.ts +25 -0
  31. package/dist/modules/data/transformers/snakeCase.d.ts +25 -0
  32. package/dist/modules/data/types/camelCase.d.ts +1 -0
  33. package/dist/modules/data/types/caseTransformer.d.ts +13 -0
  34. package/dist/modules/data/types/index.d.ts +10 -0
  35. package/dist/modules/data/types/kebabCase.d.ts +1 -0
  36. package/dist/modules/data/types/pascalCase.d.ts +2 -0
  37. package/dist/modules/data/types/snakeCase.d.ts +1 -0
  38. package/dist/modules/data/types/transformKeysCamelCase.d.ts +4 -0
  39. package/dist/modules/data/types/transformKeysKebabCase.d.ts +4 -0
  40. package/dist/modules/data/types/transformKeysPascalCase.d.ts +4 -0
  41. package/dist/modules/data/types/transformKeysSnakeCase.d.ts +4 -0
  42. package/dist/modules/data/types/transformObjectKeys.d.ts +9 -0
  43. package/dist/modules/database/enums/databaseErrorKeys.d.ts +28 -0
  44. package/dist/modules/database/enums/mssqlErrorCode.d.ts +25 -0
  45. package/dist/modules/database/events/index.d.ts +2 -0
  46. package/dist/modules/database/events/mssqlEventMap.d.ts +6 -0
  47. package/dist/modules/database/events/tableEventMap.d.ts +7 -0
  48. package/dist/modules/database/index.d.ts +2 -0
  49. package/dist/modules/database/index.js +14 -0
  50. package/dist/{database → modules/database}/mssql.d.ts +21 -25
  51. package/dist/{database → modules/database}/table.d.ts +6 -6
  52. package/dist/modules/database/types/index.d.ts +3 -0
  53. package/dist/{database → modules/database}/types/mssqlDatabaseOption.d.ts +16 -37
  54. package/dist/modules/database/types/mssqlEventLog.d.ts +14 -0
  55. package/dist/modules/database/types/queryContext.d.ts +11 -0
  56. package/dist/modules/elysia/crud/crud.d.ts +46 -0
  57. package/dist/modules/elysia/crud/index.d.ts +1 -0
  58. package/dist/modules/elysia/crud/index.js +299 -0
  59. package/dist/modules/elysia/crud/types/crudOperationBaseOptions.d.ts +6 -0
  60. package/dist/modules/elysia/crud/types/crudOperationCountOptions.d.ts +2 -0
  61. package/dist/modules/elysia/crud/types/crudOperationDeleteOneOptions.d.ts +2 -0
  62. package/dist/modules/elysia/crud/types/crudOperationDeleteOptions.d.ts +2 -0
  63. package/dist/modules/elysia/crud/types/crudOperationFindOneOptions.d.ts +2 -0
  64. package/dist/modules/elysia/crud/types/crudOperationFindOptions.d.ts +2 -0
  65. package/dist/modules/elysia/crud/types/crudOperationInsertOptions.d.ts +2 -0
  66. package/dist/modules/elysia/crud/types/crudOperationUpdateOneOptions.d.ts +2 -0
  67. package/dist/modules/elysia/crud/types/crudOperationUpdateOptions.d.ts +2 -0
  68. package/dist/modules/elysia/crud/types/crudOperationsOptions.d.ts +18 -0
  69. package/dist/modules/elysia/crud/types/crudOptions.d.ts +23 -0
  70. package/dist/modules/elysia/crud/types/index.d.ts +11 -0
  71. package/dist/modules/elysia/crudSchema/crudSchema.d.ts +18 -0
  72. package/dist/modules/elysia/crudSchema/index.d.ts +1 -0
  73. package/dist/modules/elysia/crudSchema/index.js +10 -0
  74. package/dist/modules/elysia/crudSchema/types/adaptiveWhereClauseSchema.d.ts +31 -0
  75. package/dist/modules/elysia/crudSchema/types/crudModelsType.d.ts +14 -0
  76. package/dist/modules/elysia/crudSchema/types/crudSchemaOperations.d.ts +10 -0
  77. package/dist/modules/elysia/crudSchema/types/crudSchemaOptions.d.ts +13 -0
  78. package/dist/modules/elysia/crudSchema/types/index.d.ts +8 -0
  79. package/dist/modules/elysia/crudSchema/types/orderSchema.d.ts +11 -0
  80. package/dist/modules/elysia/crudSchema/types/qSchema.d.ts +15 -0
  81. package/dist/modules/elysia/crudSchema/types/queryOptionsBuilderOptions.d.ts +11 -0
  82. package/dist/modules/elysia/crudSchema/types/selectedFieldSchema.d.ts +6 -0
  83. package/dist/modules/elysia/crudSchema/utils/createAdaptiveWhereClauseSchema.d.ts +17 -0
  84. package/dist/modules/elysia/crudSchema/utils/createCountResponse200Schema.d.ts +11 -0
  85. package/dist/modules/elysia/crudSchema/utils/createCountSchema.d.ts +16 -0
  86. package/dist/modules/elysia/crudSchema/utils/createDeleteSchema.d.ts +18 -0
  87. package/dist/modules/elysia/crudSchema/utils/createFiltersSchema.d.ts +17 -0
  88. package/dist/modules/elysia/crudSchema/utils/createFindSchema.d.ts +22 -0
  89. package/dist/modules/elysia/crudSchema/utils/createIdParamSchema.d.ts +4 -0
  90. package/dist/modules/elysia/crudSchema/utils/createInsertSchema.d.ts +8 -0
  91. package/dist/modules/elysia/crudSchema/utils/createOrderSchema.d.ts +12 -0
  92. package/dist/modules/elysia/crudSchema/utils/createPropertiesSchema.d.ts +12 -0
  93. package/dist/modules/elysia/crudSchema/utils/createQSchema.d.ts +12 -0
  94. package/dist/modules/elysia/crudSchema/utils/createResponse200Schema.d.ts +5 -0
  95. package/dist/modules/elysia/crudSchema/utils/createSelectedFieldsSchema.d.ts +12 -0
  96. package/dist/modules/elysia/crudSchema/utils/createUpdateOneSchema.d.ts +4 -0
  97. package/dist/modules/elysia/crudSchema/utils/createUpdateSchema.d.ts +10 -0
  98. package/dist/modules/elysia/crudSchema/utils/index.d.ts +15 -0
  99. package/dist/modules/elysia/crudSchema/utils/index.js +37 -0
  100. package/dist/modules/elysia/crudSchema/utils/isDateFromElysiaTypeBox.d.ts +2 -0
  101. package/dist/modules/elysia/dbResolver/dbResolver.d.ts +17 -0
  102. package/dist/modules/elysia/dbResolver/enums/dbResolverErrorKeys.d.ts +3 -0
  103. package/dist/modules/elysia/dbResolver/index.d.ts +1 -0
  104. package/dist/modules/elysia/dbResolver/index.js +14 -0
  105. package/dist/modules/elysia/dbResolver/types/dynamicDbOptions.d.ts +7 -0
  106. package/dist/modules/elysia/dbResolver/types/index.d.ts +1 -0
  107. package/dist/modules/elysia/error/error.d.ts +34 -0
  108. package/dist/modules/elysia/error/index.d.ts +1 -0
  109. package/dist/modules/elysia/error/index.js +58 -0
  110. package/dist/modules/elysia/jwt/enums/jwtErrorKeys.d.ts +4 -0
  111. package/dist/modules/elysia/jwt/index.d.ts +1 -0
  112. package/dist/modules/elysia/jwt/index.js +81 -0
  113. package/dist/modules/elysia/jwt/jwt.d.ts +119 -0
  114. package/dist/modules/elysia/jwt/types/index.d.ts +1 -0
  115. package/dist/modules/elysia/jwt/types/jwtOptions.d.ts +98 -0
  116. package/dist/modules/elysia/microservice/index.d.ts +1 -0
  117. package/dist/modules/elysia/microservice/index.js +96 -0
  118. package/dist/{elysia → modules/elysia/microservice}/microservice.d.ts +1 -1
  119. package/dist/modules/elysia/ratelimit/enums/ratelimitErrorKeys.d.ts +3 -0
  120. package/dist/modules/elysia/ratelimit/index.d.ts +1 -0
  121. package/dist/modules/elysia/ratelimit/index.js +55 -0
  122. package/dist/{elysia → modules/elysia/ratelimit}/ratelimit.d.ts +3 -13
  123. package/dist/modules/elysia/ratelimit/types/index.d.ts +1 -0
  124. package/dist/{elysia → modules/elysia/ratelimit}/types/rateLimitOptions.d.ts +6 -16
  125. package/dist/modules/logger/enums/loggerErrorKeys.d.ts +6 -0
  126. package/dist/modules/logger/events/index.d.ts +1 -0
  127. package/dist/modules/logger/events/loggerEvents.d.ts +11 -0
  128. package/dist/modules/logger/index.d.ts +1 -0
  129. package/dist/modules/logger/index.js +139 -0
  130. package/dist/modules/logger/logger.d.ts +189 -0
  131. package/dist/{logger → modules/logger}/strategies/consoleLogger.d.ts +4 -4
  132. package/dist/{logger → modules/logger}/strategies/fileLogger.d.ts +4 -4
  133. package/dist/modules/logger/strategies/index.d.ts +2 -0
  134. package/dist/modules/logger/strategies/index.js +44 -0
  135. package/dist/modules/logger/types/index.d.ts +6 -0
  136. package/dist/modules/logger/types/index.js +1 -0
  137. package/dist/{logger → modules/logger}/types/logStreamChunk.d.ts +4 -4
  138. package/dist/{logger → modules/logger}/types/loggerStrategy.d.ts +1 -1
  139. package/dist/modules/mailer/enums/mailerErrorKeys.d.ts +5 -0
  140. package/dist/modules/mailer/index.d.ts +1 -0
  141. package/dist/modules/mailer/index.js +64 -0
  142. package/dist/{mailer → modules/mailer}/smtp.d.ts +6 -6
  143. package/dist/modules/mailer/types/index.d.ts +3 -0
  144. package/dist/modules/mailer/types/index.js +1 -0
  145. package/dist/{mailer → modules/mailer}/types/smtpCredentials.d.ts +2 -2
  146. package/dist/{mailer → modules/mailer}/types/smtpOptions.d.ts +5 -5
  147. package/dist/{mailer → modules/mailer}/types/smtpPoolOptions.d.ts +1 -1
  148. package/dist/modules/repository/index.d.ts +1 -0
  149. package/dist/modules/repository/index.js +10 -0
  150. package/dist/modules/repository/repository.d.ts +421 -0
  151. package/dist/modules/repository/types/adaptiveWhereClause.d.ts +30 -0
  152. package/dist/modules/repository/types/filter.d.ts +43 -0
  153. package/dist/modules/repository/types/index.d.ts +8 -0
  154. package/dist/modules/repository/types/index.js +1 -0
  155. package/dist/modules/repository/types/orderByItem.d.ts +42 -0
  156. package/dist/modules/repository/types/queryOptions.d.ts +36 -0
  157. package/dist/{repository → modules/repository}/types/queryOptionsExtendPagination.d.ts +2 -2
  158. package/dist/{repository → modules/repository}/types/queryOptionsExtendStream.d.ts +1 -1
  159. package/dist/modules/repository/types/selectedFields.d.ts +37 -0
  160. package/dist/modules/singletonManager/enums/singletonManagerErrorKeys.d.ts +4 -0
  161. package/dist/modules/singletonManager/index.d.ts +1 -0
  162. package/dist/modules/singletonManager/index.js +8 -0
  163. package/dist/modules/singletonManager/singletonManager.d.ts +75 -0
  164. package/dist/modules/typedEventEmitter/index.d.ts +1 -0
  165. package/dist/modules/typedEventEmitter/index.js +7 -0
  166. package/dist/{typedEventEmitter → modules/typedEventEmitter}/typedEventEmitter.d.ts +33 -11
  167. package/dist/modules/typedEventEmitter/types/index.d.ts +1 -0
  168. package/dist/modules/typedEventEmitter/types/index.js +1 -0
  169. package/dist/utils/enums/utilsErrorKeys.d.ts +3 -0
  170. package/dist/utils/env.d.ts +1 -1
  171. package/dist/utils/index.d.ts +3 -3
  172. package/dist/utils/index.js +32 -1
  173. package/dist/utils/isDateString.d.ts +16 -0
  174. package/dist/utils/stream.d.ts +12 -1
  175. package/dist/utils/types/index.d.ts +1 -1
  176. package/dist/utils/types/streamWithAsyncIterable.d.ts +12 -5
  177. package/package.json +128 -128
  178. package/dist/chunk-1c7w5cx7.js +0 -3
  179. package/dist/chunk-40pg2cqx.js +0 -2
  180. package/dist/chunk-4v4tp5qj.js +0 -2
  181. package/dist/chunk-4w7nd4nw.js +0 -2
  182. package/dist/chunk-5nvsx7md.js +0 -2
  183. package/dist/chunk-89mnpfvy.js +0 -2
  184. package/dist/chunk-91srr77d.js +0 -2
  185. package/dist/chunk-9hj714bv.js +0 -2
  186. package/dist/chunk-9rss6865.js +0 -2
  187. package/dist/chunk-df9xr1f5.js +0 -2
  188. package/dist/chunk-dq00mfya.js +0 -2
  189. package/dist/chunk-fnb68m68.js +0 -2
  190. package/dist/chunk-g6a16nyh.js +0 -2
  191. package/dist/chunk-gtgpa8nc.js +0 -2
  192. package/dist/chunk-gxjax5n3.js +0 -2
  193. package/dist/chunk-h9er1sh5.js +0 -2
  194. package/dist/chunk-mwpajm9x.js +0 -2
  195. package/dist/chunk-n5w9cwwg.js +0 -2
  196. package/dist/chunk-pt7wrvtr.js +0 -2
  197. package/dist/chunk-qndyhwdn.js +0 -2
  198. package/dist/chunk-v5dfx8mh.js +0 -2
  199. package/dist/chunk-wgq0yyqw.js +0 -2
  200. package/dist/chunk-wtfcgg9s.js +0 -2
  201. package/dist/chunk-z00b1r18.js +0 -2
  202. package/dist/data/data.d.ts +0 -99
  203. package/dist/data/enums/dataErrorKeys.d.ts +0 -7
  204. package/dist/data/enums/index.d.ts +0 -1
  205. package/dist/data/enums/index.js +0 -2
  206. package/dist/data/index.d.ts +0 -1
  207. package/dist/data/index.js +0 -2
  208. package/dist/data/transformers/camelCase.d.ts +0 -25
  209. package/dist/data/transformers/index.d.ts +0 -4
  210. package/dist/data/transformers/index.js +0 -2
  211. package/dist/data/transformers/kebabCase.d.ts +0 -25
  212. package/dist/data/transformers/pascalCase.d.ts +0 -25
  213. package/dist/data/transformers/snakeCase.d.ts +0 -25
  214. package/dist/data/types/index.d.ts +0 -1
  215. package/dist/data/types/keyTransformer.d.ts +0 -11
  216. package/dist/database/enums/databaseErrorKeys.d.ts +0 -52
  217. package/dist/database/enums/index.d.ts +0 -2
  218. package/dist/database/enums/index.js +0 -2
  219. package/dist/database/enums/mssqlErrorCode.d.ts +0 -25
  220. package/dist/database/events/index.d.ts +0 -2
  221. package/dist/database/events/mssqlEventMap.d.ts +0 -6
  222. package/dist/database/events/tableEventMap.d.ts +0 -7
  223. package/dist/database/index.d.ts +0 -2
  224. package/dist/database/index.js +0 -2
  225. package/dist/database/types/index.d.ts +0 -3
  226. package/dist/database/types/mssqlEventLog.d.ts +0 -29
  227. package/dist/database/types/queryContext.d.ts +0 -11
  228. package/dist/elysia/advancedSearch.d.ts +0 -460
  229. package/dist/elysia/crud.d.ts +0 -609
  230. package/dist/elysia/dynamicDatabaseSelector.d.ts +0 -352
  231. package/dist/elysia/enums/elysiaErrorKeys.d.ts +0 -12
  232. package/dist/elysia/enums/httpStatusCode.d.ts +0 -241
  233. package/dist/elysia/enums/index.d.ts +0 -2
  234. package/dist/elysia/enums/index.js +0 -2
  235. package/dist/elysia/error.d.ts +0 -46
  236. package/dist/elysia/index.d.ts +0 -7
  237. package/dist/elysia/index.js +0 -2
  238. package/dist/elysia/jwt.d.ts +0 -46
  239. package/dist/elysia/schemas/index.d.ts +0 -2
  240. package/dist/elysia/schemas/index.js +0 -2
  241. package/dist/elysia/types/crudOptions.d.ts +0 -126
  242. package/dist/elysia/types/crudRoutes.d.ts +0 -2
  243. package/dist/elysia/types/dynamicDatabaseSelectorPluginOptions.d.ts +0 -30
  244. package/dist/elysia/types/index.d.ts +0 -5
  245. package/dist/elysia/types/jwtOptions.d.ts +0 -92
  246. package/dist/error/coreError.d.ts +0 -89
  247. package/dist/error/index.d.ts +0 -1
  248. package/dist/error/index.js +0 -2
  249. package/dist/error/types/coreErrorOptions.d.ts +0 -21
  250. package/dist/error/types/index.d.ts +0 -1
  251. package/dist/index.d.ts +0 -68
  252. package/dist/index.js +0 -2
  253. package/dist/logger/enums/index.d.ts +0 -1
  254. package/dist/logger/enums/index.js +0 -2
  255. package/dist/logger/enums/loggerErrorKeys.d.ts +0 -6
  256. package/dist/logger/events/index.d.ts +0 -1
  257. package/dist/logger/events/loggerEvents.d.ts +0 -4
  258. package/dist/logger/index.d.ts +0 -1
  259. package/dist/logger/index.js +0 -2
  260. package/dist/logger/logger.d.ts +0 -173
  261. package/dist/logger/strategies/index.d.ts +0 -2
  262. package/dist/logger/strategies/index.js +0 -2
  263. package/dist/logger/types/index.d.ts +0 -6
  264. package/dist/mailer/enums/index.d.ts +0 -1
  265. package/dist/mailer/enums/index.js +0 -2
  266. package/dist/mailer/enums/mailerErrorKeys.d.ts +0 -8
  267. package/dist/mailer/index.d.ts +0 -1
  268. package/dist/mailer/index.js +0 -2
  269. package/dist/mailer/types/index.d.ts +0 -3
  270. package/dist/repository/index.d.ts +0 -1
  271. package/dist/repository/index.js +0 -2
  272. package/dist/repository/repository.d.ts +0 -378
  273. package/dist/repository/types/advancedSearch.d.ts +0 -47
  274. package/dist/repository/types/index.d.ts +0 -8
  275. package/dist/repository/types/orderBy.d.ts +0 -21
  276. package/dist/repository/types/queryOptions.d.ts +0 -33
  277. package/dist/repository/types/selectedFields.d.ts +0 -16
  278. package/dist/repository/types/whereClause.d.ts +0 -15
  279. package/dist/singletonManager/enums/index.d.ts +0 -1
  280. package/dist/singletonManager/enums/index.js +0 -2
  281. package/dist/singletonManager/enums/singletonManagerErrorKeys.d.ts +0 -7
  282. package/dist/singletonManager/index.d.ts +0 -1
  283. package/dist/singletonManager/index.js +0 -2
  284. package/dist/singletonManager/singletonManager.d.ts +0 -112
  285. package/dist/store/index.d.ts +0 -1
  286. package/dist/store/index.js +0 -2
  287. package/dist/store/redis.d.ts +0 -6
  288. package/dist/typedEventEmitter/index.d.ts +0 -1
  289. package/dist/typedEventEmitter/index.js +0 -2
  290. package/dist/typedEventEmitter/types/index.d.ts +0 -1
  291. package/dist/utils/enums/index.d.ts +0 -1
  292. package/dist/utils/enums/index.js +0 -2
  293. package/dist/utils/enums/utilErrorKeys.d.ts +0 -4
  294. package/dist/utils/isIsoDateString.d.ts +0 -1
  295. /package/dist/{data → errors}/types/index.js +0 -0
  296. /package/dist/{database/events → modules/data/types}/index.js +0 -0
  297. /package/dist/{database/types → modules/database/events}/index.js +0 -0
  298. /package/dist/{elysia → modules/database}/types/index.js +0 -0
  299. /package/dist/{error → modules/elysia/crud}/types/index.js +0 -0
  300. /package/dist/{logger/events → modules/elysia/crudSchema/types}/index.js +0 -0
  301. /package/dist/{logger → modules/elysia/dbResolver}/types/index.js +0 -0
  302. /package/dist/{mailer → modules/elysia/jwt}/types/index.js +0 -0
  303. /package/dist/{elysia → modules/elysia/microservice}/schemas/info.d.ts +0 -0
  304. /package/dist/{elysia → modules/elysia/microservice}/schemas/ping.d.ts +0 -0
  305. /package/dist/{repository → modules/elysia/ratelimit}/types/index.js +0 -0
  306. /package/dist/{typedEventEmitter/types → modules/logger/events}/index.js +0 -0
  307. /package/dist/{logger → modules/logger}/types/bodiesIntersection.d.ts +0 -0
  308. /package/dist/{logger → modules/logger}/types/logLevels.d.ts +0 -0
  309. /package/dist/{logger → modules/logger}/types/strategyBody.d.ts +0 -0
  310. /package/dist/{logger → modules/logger}/types/strategyMap.d.ts +0 -0
  311. /package/dist/{repository → modules/repository}/types/transaction.d.ts +0 -0
  312. /package/dist/{typedEventEmitter → modules/typedEventEmitter}/types/eventMap.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,65 +1,350 @@
1
1
 
2
- ## v2.4.0
2
+ ## v2.5.0
3
3
 
4
- [compare changes](https://github.com/MRX-Systems/MRX-Core/compare/v2.4.0-canary-20250521-731c6b4...v2.4.0)
5
-
6
- ## v2.4.0-canary-20250521-731c6b4
7
-
8
- [compare changes](https://github.com/MRX-Systems/MRX-Core/compare/v2.3.5-canary-20250520-f78ef3f...v2.4.0-canary-20250521-731c6b4)
4
+ [compare changes](https://github.com/MRX-Systems/MRX-Core/compare/v2.4.0-canary-20250521-731c6b4...v2.5.0)
9
5
 
10
6
  ### 🚀 Enhancements
11
7
 
12
- - **🚀:** [Add TypedEventEmitter and EventMap for type-safe event handling] ([e0f221d7](https://github.com/MRX-Systems/MRX-Core/commit/e0f221d7))
13
- - **🚀:** [Implement a type-safe logging system with strategies] ([93072596](https://github.com/MRX-Systems/MRX-Core/commit/93072596))
14
- - **🚀:** [Add SingletonManager and error handling enums] ([dd0eb052](https://github.com/MRX-Systems/MRX-Core/commit/dd0eb052))
15
- - **🚀:** [Add data validation and transformation utilities] ([3aff1742](https://github.com/MRX-Systems/MRX-Core/commit/3aff1742))
8
+ - **🚀:** [Enhance dynamicDatabaseSelectorPlugin with type safety and add guard] ([82f81dcc](https://github.com/MRX-Systems/MRX-Core/commit/82f81dcc))
9
+ - **🚀:** [Enhance advanced search schema with new query capabilities] ([90825e6e](https://github.com/MRX-Systems/MRX-Core/commit/90825e6e))
10
+ - **🚀:** [Add createSelectedFieldsSchema for field selection] ([a1781f24](https://github.com/MRX-Systems/MRX-Core/commit/a1781f24))
11
+ - **🚀:** [Add examples to createSelectedFieldsSchema] ([6880e233](https://github.com/MRX-Systems/MRX-Core/commit/6880e233))
12
+ - **🚀:** [Add createOrderBySchema function for ordering results] ([d4685424](https://github.com/MRX-Systems/MRX-Core/commit/d4685424))
13
+ - **🚀:** [Add createQSchema function for search query schema] ([5b25c397](https://github.com/MRX-Systems/MRX-Core/commit/5b25c397))
14
+ - **🚀:** [Add createPropertiesSearchSchema for query handling] ([9b0f4e5c](https://github.com/MRX-Systems/MRX-Core/commit/9b0f4e5c))
15
+ - **🚀:** [Add filterByKeyExclusionRecursive] ([0ddb6308](https://github.com/MRX-Systems/MRX-Core/commit/0ddb6308))
16
+ - **🚀:** [Add removeValidationFromSchema function] ([073a352f](https://github.com/MRX-Systems/MRX-Core/commit/073a352f))
17
+ - **🚀:** [Refactor advanced search to filter functionality] ## Features - Replaced all instances of `advancedSearch` with `filter` in the repository. - Introduced a new `Filter` type for more dynamic querying. ([e77f4402](https://github.com/MRX-Systems/MRX-Core/commit/e77f4402))
18
+ - **🚀:** [Improve architecture+AdaptiveWhereClause+QueryBuilderPlugin] ([0b09fcec](https://github.com/MRX-Systems/MRX-Core/commit/0b09fcec))
19
+ - **🚀:** [Add isDateFromElysiaTypeBox utility function] ([2ada8aa8](https://github.com/MRX-Systems/MRX-Core/commit/2ada8aa8))
20
+ - **🚀:** [Introduce case transformers and type definitions] ## Features - Added `CaseTransformer` interface for transforming strings. - Implemented `CamelCaseTransformer`, `KebabCaseTransformer`, `PascalCaseTransformer`, and `SnakeCaseTransformer` classes. - Created type definitions for `CamelCase`, `KebabCase`, `PascalCase`, and `SnakeCase`. - Added utility types for transforming object keys based on case transformers. ([dddddb6b](https://github.com/MRX-Systems/MRX-Core/commit/dddddb6b))
21
+ - **🚀:** [Add new database error keys for conversion failures] - Added `mssqlDatabaseConversionFailed` to `databaseErrorKeys`. - Updated `mssqlErrorCode` to include the new conversion failure error. ([e7e4f7fa](https://github.com/MRX-Systems/MRX-Core/commit/e7e4f7fa))
22
+ - **🚀:** [Implement CRUD plugin with enhanced schema handling + resolve db injector] ([c4dd0b9a](https://github.com/MRX-Systems/MRX-Core/commit/c4dd0b9a))
23
+ - **🚀:** [Add default operations and route handling for CRUD plugin and add Find, FindOne and Insert] ([c576c6c3](https://github.com/MRX-Systems/MRX-Core/commit/c576c6c3))
24
+ - **🚀:** [Add CrudSchemaPlugin] ([550d37dd](https://github.com/MRX-Systems/MRX-Core/commit/550d37dd))
25
+ - **🚀:** [Add base of Crud plugin] ([e33aa9ef](https://github.com/MRX-Systems/MRX-Core/commit/e33aa9ef))
26
+ - **🚀:** [Add dbResolverPlugin with dynamic database resolution] ([a54072af](https://github.com/MRX-Systems/MRX-Core/commit/a54072af))
27
+ - **🚀:** [Add db resolver to crud and add return type] ([e0165ffe](https://github.com/MRX-Systems/MRX-Core/commit/e0165ffe))
28
+ - **🚀:** [Add CRUD options interface for dynamic database handling] ([3515a980](https://github.com/MRX-Systems/MRX-Core/commit/3515a980))
29
+ - **🚀:** [Enhance crudPlugin add route and improve schema] ([28d660fd](https://github.com/MRX-Systems/MRX-Core/commit/28d660fd))
30
+ - **🚀:** [Add BaseError and HttpError classes with HTTP status codes] ([8f68cc5f](https://github.com/MRX-Systems/MRX-Core/commit/8f68cc5f))
31
+ - **🚀:** Implement transaction support in repository _applyQueryOptions ([7d9b6592](https://github.com/MRX-Systems/MRX-Core/commit/7d9b6592))
32
+ - **🚀:** Complete transaction support for all repository methods ([d2ca4d0f](https://github.com/MRX-Systems/MRX-Core/commit/d2ca4d0f))
16
33
 
17
34
  ### 🔧 Fixes
18
35
 
19
- - **🔧:** [Correction pull request] ([28bfd9be](https://github.com/MRX-Systems/MRX-Core/commit/28bfd9be))
36
+ - **🔧:** [Fix build] ([ded824e0](https://github.com/MRX-Systems/MRX-Core/commit/ded824e0))
37
+ - **🔧:** [Fix export in packagejson..] ([7665e67a](https://github.com/MRX-Systems/MRX-Core/commit/7665e67a))
38
+ - **🔧:** [Correction of import] ([d4b890eb](https://github.com/MRX-Systems/MRX-Core/commit/d4b890eb))
39
+ - **🔧:** [Handle undefined and null values in adaptive where clause] ([cfee1d10](https://github.com/MRX-Systems/MRX-Core/commit/cfee1d10))
40
+ - **🔧:** [change scope to global] ([aa752e7a](https://github.com/MRX-Systems/MRX-Core/commit/aa752e7a))
41
+ - **🔧:** [Specify template type for _createDefaultOperationsWithHandlers] ([209d1972](https://github.com/MRX-Systems/MRX-Core/commit/209d1972))
42
+ - **🔧:** [only check if database is an Object in dbResolver] ([7f1ee06f](https://github.com/MRX-Systems/MRX-Core/commit/7f1ee06f))
43
+ - **🔧:** [Update logger error message key for clarity] ## Bug Fixes - Changed the error message key from `LOGGER_ERROR_KEYS.loggerStrategyError` to `LOGGER_ERROR_KEYS.STRATEGY_ERROR`. ([19ddaabb](https://github.com/MRX-Systems/MRX-Core/commit/19ddaabb))
44
+ - **🔧:** [Correct validation error status code to 422] ([f8071846](https://github.com/MRX-Systems/MRX-Core/commit/f8071846))
20
45
 
21
46
  ### 🧹 Refactors
22
47
 
23
- - **🧹:** [Organize exports in index.ts for better clarity] ## Refactoring - Restructured export statements in `index.ts` for improved organization. - Grouped related exports under clear section headers for Database, Elysia, Error, Mailer, and Repository. ([fe7da3ca](https://github.com/MRX-Systems/MRX-Core/commit/fe7da3ca))
24
- - **🧹:** [rename tranformer folder to transformers] ([739fffea](https://github.com/MRX-Systems/MRX-Core/commit/739fffea))
25
- - **🧹:** [Update import paths for consistency and clarity] ([42d1d56d](https://github.com/MRX-Systems/MRX-Core/commit/42d1d56d))
26
- - **🧹:** [Organize and update exports in index files] ([d077840a](https://github.com/MRX-Systems/MRX-Core/commit/d077840a))
48
+ - **🧹:** [Remove guard configuration from dynamicDatabaseSelectorPlugin] ([ce30494a](https://github.com/MRX-Systems/MRX-Core/commit/ce30494a))
49
+ - **🧹:** [Improve loop syntax for consistency across tests] ([721a9f78](https://github.com/MRX-Systems/MRX-Core/commit/721a9f78))
50
+ - **🧹:** [little clean] ([8ded101a](https://github.com/MRX-Systems/MRX-Core/commit/8ded101a))
51
+ - **🧹:** [externialize util fonction to create schema° ([c2b58161](https://github.com/MRX-Systems/MRX-Core/commit/c2b58161))
52
+ - **🧹:** [Simplify type checks in createAdaptiveWhereClauseSchema] ([eb7aab4d](https://github.com/MRX-Systems/MRX-Core/commit/eb7aab4d))
53
+ - **🧹:** [Refactor SingletonManager class for clarity and structure] - Updated class name from SingletonManagerSingleton to SingletonManager. - Removed unnecessary singleton instance logic, making the class static. - Simplified method signatures and documentation for better clarity. - Enhanced comments to accurately reflect the class's functionality. ([15d7309f](https://github.com/MRX-Systems/MRX-Core/commit/15d7309f))
54
+ - **🧹:** [Refactor TypeDoc options in tsconfig files] ([4f35b472](https://github.com/MRX-Systems/MRX-Core/commit/4f35b472))
55
+ - **🧹:** [Update throwIfNoResult type to allow string messages] ([dedcab99](https://github.com/MRX-Systems/MRX-Core/commit/dedcab99))
56
+ - **🧹:** [Organize imports] ([86220d05](https://github.com/MRX-Systems/MRX-Core/commit/86220d05))
57
+ - **🧹:** [Enhance rateLimitPlugin to retrieve IP from server socket] ([dbbe73d6](https://github.com/MRX-Systems/MRX-Core/commit/dbbe73d6))
58
+ - **🧹:** [Simplify + Rename to dbSelector] ([dd0069cd](https://github.com/MRX-Systems/MRX-Core/commit/dd0069cd))
59
+ - **🧹:** [Update filteredData type in filterByKeyExclusionRecursive] - Changed the type of filteredData from Record<string, unknown> to Record<PropertyKey, unknown> for better type safety. - Added handling for symbol keys in the filteredData to ensure all properties are included. ([151d0c6d](https://github.com/MRX-Systems/MRX-Core/commit/151d0c6d))
60
+ - **🧹:** [Update model name format in queryOptionsBuilderPlugin] - Changed model name from `queryOptionsBuilderqueryOptionsBuilder${schemaName}` to `${schemaName}Search` for clarity and consistency. ([c9e1ce57](https://github.com/MRX-Systems/MRX-Core/commit/c9e1ce57))
61
+ - **🧹:** [Refactor property schema creation in queryOptionsBuilderPlugin] ([b0426fa2](https://github.com/MRX-Systems/MRX-Core/commit/b0426fa2))
62
+ - **🧹:** [improvement repository] ([d6b80449](https://github.com/MRX-Systems/MRX-Core/commit/d6b80449))
63
+ - **🧹:** [Simplify query handling for '$q' operator] ([a6cbb7d5](https://github.com/MRX-Systems/MRX-Core/commit/a6cbb7d5))
64
+ - **🧹:** [Improve search query handling in Repository class] ([f3c4c36f](https://github.com/MRX-Systems/MRX-Core/commit/f3c4c36f))
65
+ - **🧹:** [Update description for selected fields schema] ([ced801c4](https://github.com/MRX-Systems/MRX-Core/commit/ced801c4))
66
+ - **🧹:** [Refactor createOrderBySchema for improved structure] ([03053cfb](https://github.com/MRX-Systems/MRX-Core/commit/03053cfb))
67
+ - **🧹:** [Enhance createSelectedFieldsSchema validation] ([b0016b45](https://github.com/MRX-Systems/MRX-Core/commit/b0016b45))
68
+ - **🧹:** [Enhance createOrderBySchema with uniqueItems validation] ## Refactoring - Added `uniqueItems: true` to the array schema in `createOrderBySchema`. ([04fe4bb7](https://github.com/MRX-Systems/MRX-Core/commit/04fe4bb7))
69
+ - **🧹:** [Refactor selectedFields schema for clarity and validation] ## Refactoring - Updated the `selectedFields` schema to improve clarity. - Changed the structure to allow a union of a literal '*' and an array of keys with validation. ([2576021d](https://github.com/MRX-Systems/MRX-Core/commit/2576021d))
70
+ - **🧹:** [readd filters with single object] ([df642676](https://github.com/MRX-Systems/MRX-Core/commit/df642676))
71
+ - **🧹:** [remove array literral * in createSelectedFieldsSchema] ## Refactoring - Removed unnecessary union in the array construction for selected fields. ([5124f0a4](https://github.com/MRX-Systems/MRX-Core/commit/5124f0a4))
72
+ - **🧹:** [Remove 'format' for filterByKeyExclusionRecursive un queryOptionzBuilder] ([6446d871](https://github.com/MRX-Systems/MRX-Core/commit/6446d871))
73
+ - **🧹:** [Rename createOrderBySchema to createOrderSchema and add return type] ([21cc7fe7](https://github.com/MRX-Systems/MRX-Core/commit/21cc7fe7))
74
+ - **🧹:** [Rename createOrderBySchema to createOrderSchema] ([5c754ba1](https://github.com/MRX-Systems/MRX-Core/commit/5c754ba1))
75
+ - **🧹:** [Rename createOrderBySchema to createOrderSchema] Refactored the test suite to use createOrderSchema instead of createOrderBySchema for better clarity and consistency in naming conventions. ([0977e8a6](https://github.com/MRX-Systems/MRX-Core/commit/0977e8a6))
76
+ - **🧹:** [Remove CRUD plugin] ([474e31d3](https://github.com/MRX-Systems/MRX-Core/commit/474e31d3))
77
+ - **🧹:** [Rename type parameters for clarity and consistency] ([b118d040](https://github.com/MRX-Systems/MRX-Core/commit/b118d040))
78
+ - **🧹:** [Remove unused CRUD plugin tests] ([525028d7](https://github.com/MRX-Systems/MRX-Core/commit/525028d7))
79
+ - **🧹:** [Remove commented-out 'format' property from schema] ([3b400054](https://github.com/MRX-Systems/MRX-Core/commit/3b400054))
80
+ - **🧹:** [Reset Crud] ([f6a97ff9](https://github.com/MRX-Systems/MRX-Core/commit/f6a97ff9))
81
+ - **🧹:** [Delete QueryOptionsBuilder Plugin] ([b4715db2](https://github.com/MRX-Systems/MRX-Core/commit/b4715db2))
82
+ - **🧹:** [Delete CrudPlugin] ([2172e6c8](https://github.com/MRX-Systems/MRX-Core/commit/2172e6c8))
83
+ - **🧹:** [Update CrudSchemaOperations to use optional properties] ## Refactoring - Changed properties in `CrudSchemaOperations` interface from required to optional. ([a763feb1](https://github.com/MRX-Systems/MRX-Core/commit/a763feb1))
84
+ - **🧹:** [Clean up unused files and code in dbResolverPlugin] ([849196ff](https://github.com/MRX-Systems/MRX-Core/commit/849196ff))
85
+ - **🧹:** [add const to template type createCountSchema] ([d98f1482](https://github.com/MRX-Systems/MRX-Core/commit/d98f1482))
86
+ - **🧹:** [Remove CoreError class and related types] ([bc7bd5ad](https://github.com/MRX-Systems/MRX-Core/commit/bc7bd5ad))
87
+ - **🧹:** [Remove CoreError class and related types in data modules] ([5f66a91b](https://github.com/MRX-Systems/MRX-Core/commit/5f66a91b))
88
+ - **🧹:** [Update error handling and constants in MSSQL module] ([fd7cc6ea](https://github.com/MRX-Systems/MRX-Core/commit/fd7cc6ea))
89
+ - **🧹:** [Improve CRUD operation messages and clean up comments] - Updated the message returned by CRUD operations to specify when no records are updated. - Cleaned up commented code for clarity. ([45f0f2d4](https://github.com/MRX-Systems/MRX-Core/commit/45f0f2d4))
90
+ - **🧹:** [Replace CoreError with HttpError and update error keys] ([d2f2fe95](https://github.com/MRX-Systems/MRX-Core/commit/d2f2fe95))
91
+ - **🧹:** [Replace CoreError with HttpError in jwtPlugin] ([1c75fbba](https://github.com/MRX-Systems/MRX-Core/commit/1c75fbba))
92
+ - **🧹:** [Refine HttpError and HttpErrorOptions types] ([ff6a8978](https://github.com/MRX-Systems/MRX-Core/commit/ff6a8978))
93
+ - **🧹:** [Update HttpError status code to use string constant] ([edf1ee79](https://github.com/MRX-Systems/MRX-Core/commit/edf1ee79))
94
+ - **🧹:** [Rename CrudPlugin to Crud] ([c9d0919d](https://github.com/MRX-Systems/MRX-Core/commit/c9d0919d))
95
+ - **🧹:** [Rename CrudSchemaPlugin to CrudSchema] ([5c0441b8](https://github.com/MRX-Systems/MRX-Core/commit/5c0441b8))
96
+ - **🧹:** [Rename dbResolverPlugin to dbResolver] ([9adcc4e8](https://github.com/MRX-Systems/MRX-Core/commit/9adcc4e8))
97
+ - **🧹:** [Rename jwtPlugin to jwt] ([6ec95e1a](https://github.com/MRX-Systems/MRX-Core/commit/6ec95e1a))
98
+ - **🧹:** [Rename microservicePlugin to microservice] ([5e14678d](https://github.com/MRX-Systems/MRX-Core/commit/5e14678d))
99
+ - **🧹:** [Rename ratelimitPlugin to ratelimit and use HttpError instead CoreError] ([50afc2c1](https://github.com/MRX-Systems/MRX-Core/commit/50afc2c1))
100
+ - **🧹:** [Rename errorPlugin to error and restructure error handling] ([bac00088](https://github.com/MRX-Systems/MRX-Core/commit/bac00088))
101
+ - **🧹:** [Refactor logger error handling and key naming conventions] ([8a442fc6](https://github.com/MRX-Systems/MRX-Core/commit/8a442fc6))
102
+ - **🧹:** [Refactor mailer error handling and key naming conventions] ([aeddc6bc](https://github.com/MRX-Systems/MRX-Core/commit/aeddc6bc))
103
+ - **🧹:** [Refactor error handling to use HttpError instead of CoreError] ([fd5b5612](https://github.com/MRX-Systems/MRX-Core/commit/fd5b5612))
104
+ - **🧹:** [Remove Redis module and related code] ([a1671cd6](https://github.com/MRX-Systems/MRX-Core/commit/a1671cd6))
105
+ - **🧹:** [Update error handling in SingletonManager] ([367abc61](https://github.com/MRX-Systems/MRX-Core/commit/367abc61))
106
+ - **🧹:** [Update error handling and constants for environment validation] - Refactored error handling in `validateEnv` to use `BaseError` instead of `CoreError`. - Introduced a new constants file `utilsErrorKeys.ts` for better error key management. ([4f556fa4](https://github.com/MRX-Systems/MRX-Core/commit/4f556fa4))
107
+ - **🧹:** [Remove obsolete test files for schema validation] ([e92a7860](https://github.com/MRX-Systems/MRX-Core/commit/e92a7860))
108
+ - **🧹:** [Remove descriptions from schema definitions] ([0213e701](https://github.com/MRX-Systems/MRX-Core/commit/0213e701))
109
+ - **🧹:** [Improve import formatting in schema files] ([e191135f](https://github.com/MRX-Systems/MRX-Core/commit/e191135f))
110
+ - **🧹:** [Correct ratelimit error key casing] ([a401d0a4](https://github.com/MRX-Systems/MRX-Core/commit/a401d0a4))
111
+ - **🧹:** [Simplify database options and header key handling] ## Refactoring - Removed unnecessary generic parameters from `DynamicDbOptions`, `dbResolver`, and related functions. - Simplified the handling of the database header key by using a fixed value. - Cleaned up type definitions to enhance readability and maintainability. ([5a96e288](https://github.com/MRX-Systems/MRX-Core/commit/5a96e288))
112
+ - **🧹:** [Simplify error handling messages] ([92f8ae2f](https://github.com/MRX-Systems/MRX-Core/commit/92f8ae2f))
113
+ - **🧹:** [Refactor dbResolver to utilize headers for dynamic DB selection] - Updated _resolveDatabaseConnection to accept headers as a parameter. - Changed the way dynamic database names are retrieved from headers. - Adjusted dbResolver to pass headers to the connection resolver. ([6be925ee](https://github.com/MRX-Systems/MRX-Core/commit/6be925ee))
114
+ - **🧹:** [Update microservice plugin import for consistency] ([4bc7874e](https://github.com/MRX-Systems/MRX-Core/commit/4bc7874e))
115
+ - **🧹:** [Rename HTTP_STATUS_CODES to HTTP_ERROR_STATUS_CODES] Refactored the error handling code to improve clarity and consistency by renaming `HTTP_STATUS_CODES` to `HTTP_ERROR_STATUS_CODES`. This change ensures that the naming convention accurately reflects the purpose of the constants used for HTTP error status codes. Updated all relevant imports and references throughout the codebase to maintain functionality. ([5375f351](https://github.com/MRX-Systems/MRX-Core/commit/5375f351))
116
+ - **🧹:** [Organize HTTP error status codes into a dedicated file] ([6cbdaf02](https://github.com/MRX-Systems/MRX-Core/commit/6cbdaf02))
117
+
118
+ ### 📖 Documentation
119
+
120
+ - **📖:** [Add TSDoc for isDateString] ([8d3a0b74](https://github.com/MRX-Systems/MRX-Core/commit/8d3a0b74))
121
+ - **📖:** [Update example in makeStreamAsyncIterable documentation] ([75cf0b8f](https://github.com/MRX-Systems/MRX-Core/commit/75cf0b8f))
122
+ - **📖:** [Improve doc clarity with additional spacing] ([3d53190f](https://github.com/MRX-Systems/MRX-Core/commit/3d53190f))
123
+ - **📖:** [Remove unnecessary comments in connect method] ([6dbdf2b3](https://github.com/MRX-Systems/MRX-Core/commit/6dbdf2b3))
124
+ - **📖:** [Remove redundant comment from CoreErrorOptions interface] ([d616e9b1](https://github.com/MRX-Systems/MRX-Core/commit/d616e9b1))
125
+ - **📖:** [Clean up MSSQL related code and documentation] ([9ee73ded](https://github.com/MRX-Systems/MRX-Core/commit/9ee73ded))
126
+ - **📖:** [Update example code formatting in CoreError documentation] ([c362817a](https://github.com/MRX-Systems/MRX-Core/commit/c362817a))
127
+ - **📖:** [Refine documentation for data transformation classes] ([a7396495](https://github.com/MRX-Systems/MRX-Core/commit/a7396495))
128
+ - **📖:** [Update MSSQL and Table class documentation for clarity] ## Documentation Changes - Clarified the inheritance of `MSSQL` class from `TypedEventEmitter`. - Simplified event emission descriptions in the `MSSQL` and `Table` classes. - Updated example usage for event listeners to use lowercase event names. - Removed outdated example code from `MSSQLDatabaseOptions` interface. ([793740dc](https://github.com/MRX-Systems/MRX-Core/commit/793740dc))
129
+ - **📖:** [Enhance documentation examples for clarity and consistency] Updated examples in various interfaces and plugins to improve clarity. - Added clear distinctions between static and dynamic database connection examples. - Improved descriptions for required insertion properties and included routes. - Removed redundant comments and streamlined example formatting for better readability. ([41a4f32a](https://github.com/MRX-Systems/MRX-Core/commit/41a4f32a))
130
+ - **📖:** [Refine logger strategy documentation for clarity] Updated documentation for Logger, ConsoleLoggerStrategy, FileLoggerStrategy, and LoggerStrategy to improve clarity by removing unnecessary references and ensuring consistency in parameter descriptions. ([c7255d97](https://github.com/MRX-Systems/MRX-Core/commit/c7255d97))
131
+ - **📖:** [Refine parameter descriptions in SMTP class documentation] ([1aaddb73](https://github.com/MRX-Systems/MRX-Core/commit/1aaddb73))
132
+ - **📖:** [Refine repository documentation for clarity and examples] ([a8bb908d](https://github.com/MRX-Systems/MRX-Core/commit/a8bb908d))
133
+ - **📖:** [Refine error documentation in env and stream utilities] ([69af0a7e](https://github.com/MRX-Systems/MRX-Core/commit/69af0a7e))
134
+ - **📖:** [QueryOptions.selectedFields add defaultValue tsdoc] ([30e901b9](https://github.com/MRX-Systems/MRX-Core/commit/30e901b9))
135
+ - **📖:** [Remove useless comment in queryOptionBuilder] ([b883a8e7](https://github.com/MRX-Systems/MRX-Core/commit/b883a8e7))
136
+ - **📖:** [Improve adaptive where clause schema documentation] ([24d1bc22](https://github.com/MRX-Systems/MRX-Core/commit/24d1bc22))
137
+ - **📖:** [Update documentation for createCountResponse200Schema] ([1bee9523](https://github.com/MRX-Systems/MRX-Core/commit/1bee9523))
138
+ - **📖:** [Update createCountSchema documentation for clarity] ([3f487c56](https://github.com/MRX-Systems/MRX-Core/commit/3f487c56))
139
+ - **📖:** [Update createDeleteSchema documentation for clarity] ([d300e72d](https://github.com/MRX-Systems/MRX-Core/commit/d300e72d))
140
+ - **📖:** [Improve createFiltersSchema documentation for clarity] ([0f541570](https://github.com/MRX-Systems/MRX-Core/commit/0f541570))
141
+ - **📖:** [Improve documentation formatting for clarity] ([f6db908b](https://github.com/MRX-Systems/MRX-Core/commit/f6db908b))
142
+ - **📖:** [clean tsdoc SingletonManager module] ([e5972086](https://github.com/MRX-Systems/MRX-Core/commit/e5972086))
143
+ - **📖:** [Clean tsdoc repository module] ([e62a3676](https://github.com/MRX-Systems/MRX-Core/commit/e62a3676))
144
+ - **📖:** [Little clean] ([2ef09cb4](https://github.com/MRX-Systems/MRX-Core/commit/2ef09cb4))
145
+ - **📖:** [Add comprehensive copilot instructions for the project] ([24627a56](https://github.com/MRX-Systems/MRX-Core/commit/24627a56))
146
+ - **📖:** [Add commit message convention guidelines] ([ffbdd1db](https://github.com/MRX-Systems/MRX-Core/commit/ffbdd1db))
147
+ - **📖:** [Update commit message guidelines for clarity] ([1f377b32](https://github.com/MRX-Systems/MRX-Core/commit/1f377b32))
148
+ - **📖:** [Revise copilot instructions for clarity and structure] ([f5a7f3b4](https://github.com/MRX-Systems/MRX-Core/commit/f5a7f3b4))
149
+ - **📖:** [Clarify internal import guidelines and commit practices] ([c7ca17a0](https://github.com/MRX-Systems/MRX-Core/commit/c7ca17a0))
27
150
 
28
151
  ### 📦 Build
29
152
 
30
- - **📦:** [clean build entry point] ([0109b161](https://github.com/MRX-Systems/MRX-Core/commit/0109b161))
31
- - **📦:** [Remove unused peer dependencies from package.json] ([83c381a4](https://github.com/MRX-Systems/MRX-Core/commit/83c381a4))
32
- - **📦:** [Organize and update entry points in builder.ts and package.json] ([29942972](https://github.com/MRX-Systems/MRX-Core/commit/29942972))
33
- - **📦:** [Update dependencies to latest versions] Updated all devDependencies and peerDependencies in bun.lock to their latest versions for improved compatibility and security. ([e4bd5874](https://github.com/MRX-Systems/MRX-Core/commit/e4bd5874))
34
- - **📦:** [Organize and update exports for utils module] ## Refactoring - Added exports for utils and their types in index files. - Updated package.json to include new utils paths. ([aeedb9a8](https://github.com/MRX-Systems/MRX-Core/commit/aeedb9a8))
153
+ - **📦:** [Update @types/bun dependency to version 1.2.14] ([dbb4226b](https://github.com/MRX-Systems/MRX-Core/commit/dbb4226b))
154
+ - **📦:** [Update dependencies in package.json] ([9f61b157](https://github.com/MRX-Systems/MRX-Core/commit/9f61b157))
155
+ - **📦:** [Update peer dependency version for elysia] ([b3dcc952](https://github.com/MRX-Systems/MRX-Core/commit/b3dcc952))
156
+ - **📦:** [Update @stylistic/eslint-plugin to version 4.4.1] ([d46af7fa](https://github.com/MRX-Systems/MRX-Core/commit/d46af7fa))
157
+ - **📦:** Update dependencies in package.json and bun.lock ([ccb6d1de](https://github.com/MRX-Systems/MRX-Core/commit/ccb6d1de))
158
+ - **📦:** [Update ESLint and TypeBox dependencies] ([97ca4473](https://github.com/MRX-Systems/MRX-Core/commit/97ca4473))
159
+ - **📦:** [Fix build] ([9354723d](https://github.com/MRX-Systems/MRX-Core/commit/9354723d))
160
+ - **📦:** [fix path] ([7f22fd0b](https://github.com/MRX-Systems/MRX-Core/commit/7f22fd0b))
161
+ - **📦:** [Update dependencies in package.json] ## Build Changes - Updated `typescript-eslint` from `^8.34.0` to `^8.34.1` - Updated `@sinclair/typebox` from `0.34.33` to `0.34.35` - Updated `elysia` from `^1.3.4` to `^1.3.5` ([b59b5abb](https://github.com/MRX-Systems/MRX-Core/commit/b59b5abb))
162
+ - **📦:** [Update dev and peer dependencies in package.json] ([137663c1](https://github.com/MRX-Systems/MRX-Core/commit/137663c1))
163
+ - **📦:** [Little improvement] ([cfc6049a](https://github.com/MRX-Systems/MRX-Core/commit/cfc6049a))
164
+ - **📦:** [Update dependencies in package.json] ## Build Changes - Updated `@eslint/js` from `^9.30.1` to `^9.31.0` - Updated `eslint` from `^9.30.1` to `^9.31.0` - Updated `nodemailer` from `^7.0.4` to `^7.0.5` ([2656e6d9](https://github.com/MRX-Systems/MRX-Core/commit/2656e6d9))
165
+ - **📦:** [Update TypeScript project configuration for build process] - Changed TypeScript project configuration from `tsconfig.dts.json` to `tsconfig.build.json` for better build management. - Ensured consistency in the build process by aligning the configuration used for type analysis and aliasing. ([adc821c5](https://github.com/MRX-Systems/MRX-Core/commit/adc821c5))
166
+ - **📦:** [Refacto export and build entrypoints] ([36542f7f](https://github.com/MRX-Systems/MRX-Core/commit/36542f7f))
167
+ - **📦:** [Update devDependencies and peerDependencies versions] - Updated @stylistic/eslint-plugin from ^5.1.0 to ^5.2.0 - Updated typescript-eslint from ^8.36.0 to ^8.37.0 - Updated jose from ^6.0.11 to ^6.0.12 ([2aef9c3d](https://github.com/MRX-Systems/MRX-Core/commit/2aef9c3d))
168
+ - **📦:** [Update dependencies and update entrypoints] ([f35fbe1a](https://github.com/MRX-Systems/MRX-Core/commit/f35fbe1a))
169
+ - **📦:** [Update devDependencies and peerDependencies versions] ([35d74c5a](https://github.com/MRX-Systems/MRX-Core/commit/35d74c5a))
170
+ - **📦:** [Update package.json dependencies and exports] ## Build Changes - Removed several unused exports from the `exports` section. - Updated `@eslint/js` and `eslint` versions to `^9.32.0`. - Updated `@sinclair/typebox` to `0.34.38` and `elysia` to `^1.3.6`. ([d01ba994](https://github.com/MRX-Systems/MRX-Core/commit/d01ba994))
171
+ - **📦:** [Refactor entrypoints in builder.ts] ([3c67e934](https://github.com/MRX-Systems/MRX-Core/commit/3c67e934))
172
+ - **📦:** [update elysia dependency version to ^1.3.7] ([26cc8db2](https://github.com/MRX-Systems/MRX-Core/commit/26cc8db2))
173
+ - **📦:** [Refactor entrypoints + include for type compile] ([ff97ec2e](https://github.com/MRX-Systems/MRX-Core/commit/ff97ec2e))
174
+ - **📦:** [Update ioredis dependency version to ^5.7.0] ([a2a6a52b](https://github.com/MRX-Systems/MRX-Core/commit/a2a6a52b))
175
+ - **📦:** [Update ioredis dependency version to ^5.7.0] ([f51abe71](https://github.com/MRX-Systems/MRX-Core/commit/f51abe71))
35
176
 
36
177
  ### 🌊 Types
37
178
 
38
- - **🌊:** [Don't worry typescript, it's ok] ([a04c0192](https://github.com/MRX-Systems/MRX-Core/commit/a04c0192))
179
+ - **🌊:** [Update JWTOptions type definition for clarity] ([3138e37b](https://github.com/MRX-Systems/MRX-Core/commit/3138e37b))
180
+ - **🌊:** [Update DynamicDatabaseSelectorPluginOptions type definition] ([db354b7e](https://github.com/MRX-Systems/MRX-Core/commit/db354b7e))
181
+ - **🌊:** [Add AdvancedSearchOptions] ([bc144bc0](https://github.com/MRX-Systems/MRX-Core/commit/bc144bc0))
182
+ - **🌊:** [Update LoggerEvent type for improved error handling] ([9e3f201c](https://github.com/MRX-Systems/MRX-Core/commit/9e3f201c))
183
+ - **🌊:** [Add readonly] ([28ab447a](https://github.com/MRX-Systems/MRX-Core/commit/28ab447a))
184
+ - **🌊:** [Refactor AdaptiveWhereClauseSchema type definitions] ## Refactoring - Replaced `TOptional` with `TValue` for required fields. - Simplified the structure of the `AdaptiveWhereClauseSchema` type. - Enhanced clarity by removing unnecessary optionality in type definitions. ([33cc4836](https://github.com/MRX-Systems/MRX-Core/commit/33cc4836))
185
+ - **🌊:** [Add CrudOperationOptions and CrudOperations types] ## Type Changes - Introduced `CrudOperationOptions` type to define CRUD operation parameters. - Created `CrudOperations` interface to utilize `CrudOperationOptions` for various CRUD operations. ## Description This commit adds type definitions for CRUD operations, enhancing type safety and clarity in the codebase. The `CrudOperationOptions` type allows for specifying optional path and method properties, while the `CrudOperations` interface outlines the structure for different CRUD actions. ([a7bdf18d](https://github.com/MRX-Systems/MRX-Core/commit/a7bdf18d))
186
+ - **🌊:** [Improve documentation and type definition clarity] ([d7c380b6](https://github.com/MRX-Systems/MRX-Core/commit/d7c380b6))
187
+ - **🌊:** [Add OrderByItem type definition] ([7b97b4a6](https://github.com/MRX-Systems/MRX-Core/commit/7b97b4a6))
188
+ - **🌊:** [Update OrderBy type reference in QueryOptions interface] ([4d208d6c](https://github.com/MRX-Systems/MRX-Core/commit/4d208d6c))
189
+ - **🌊:** [Update SelectedFields type definition for clarity] ## Type Changes - Enhanced the documentation for the `SelectedFields` type. - Improved examples to demonstrate usage more clearly. - Clarified the type definition to ensure better type safety and usability. ([1f3be9ce](https://github.com/MRX-Systems/MRX-Core/commit/1f3be9ce))
190
+ - **🌊:** [Update SelectedFields type remove array litteral *] ([a8aa06bc](https://github.com/MRX-Systems/MRX-Core/commit/a8aa06bc))
191
+ - **🌊:** [Update AdaptiveWhereClause type set explicit boolean type] ## Type Changes - Changed the type of `$eq` and `$neq` from `TValue` to `boolean` for non-string types. ## Description This update clarifies the expected types for equality checks in the `AdaptiveWhereClause` type, ensuring that boolean values are used for equality comparisons when the value type is not a string. ([caef1652](https://github.com/MRX-Systems/MRX-Core/commit/caef1652))
192
+ - **🌊:** [Update AdaptiveWhereClauseSchema set explicit boolean type] ## Type Changes - Changed the types of `$eq` and `$neq` from `TValue` to `TBoolean` in `AdaptiveWhereClauseSchema`. ([707d218e](https://github.com/MRX-Systems/MRX-Core/commit/707d218e))
193
+ - **🌊:** [Add OrderSchema type definition for query options] ## Type Changes - Introduced a new type `OrderSchema` for defining order options in queries. ## Description This commit adds a new TypeScript type `OrderSchema` that allows for specifying the order of fields in a query. It includes options for selecting fields and defining the direction of sorting (ascending or descending). ([81f23ef6](https://github.com/MRX-Systems/MRX-Core/commit/81f23ef6))
194
+ - **🌊:** [Add QSchema type definition for query options] ([f0f7ea25](https://github.com/MRX-Systems/MRX-Core/commit/f0f7ea25))
195
+ - **🌊:** [Add SelectedFieldsSchema type definition for query options] ([401f5d5f](https://github.com/MRX-Systems/MRX-Core/commit/401f5d5f))
196
+ - **🌊:** [Add additional type definitions for query options] ## Type Changes - Added `OrderSchema` type definition. - Added `QSchema` type definition. - Added `SelectedFieldsSchema` type definition. ([0dbfe74e](https://github.com/MRX-Systems/MRX-Core/commit/0dbfe74e))
197
+ - **🌊:** [Add return type for createAdaptiveWhereClauseSchema function] ## Type Changes - Added return type `AdaptiveWhereClauseSchema<TInferedSchema>` to the `createAdaptiveWhereClauseSchema` function. ## Description This change clarifies the expected return type of the function, enhancing type safety and improving code readability. ([6f1348db](https://github.com/MRX-Systems/MRX-Core/commit/6f1348db))
198
+ - **🌊:** [Add return type for createQSchema function] ## Type Changes - Added return type for the createQSchema function. ## Description This change specifies the return type of the createQSchema function as QSchema<TInferedObject>, enhancing type safety and clarity in the codebase. ([98ba74cd](https://github.com/MRX-Systems/MRX-Core/commit/98ba74cd))
199
+ - **🌊:** [Add return type for createSelectedFieldsSchema function] ([1e386380](https://github.com/MRX-Systems/MRX-Core/commit/1e386380))
200
+ - **🌊:** [Add return type for isDateFromElysiaTypeBox function] ([4d0608aa](https://github.com/MRX-Systems/MRX-Core/commit/4d0608aa))
201
+ - **🌊:** [Add return type for all function in queryOptionsBuilder plugin] ([e1ed8835](https://github.com/MRX-Systems/MRX-Core/commit/e1ed8835))
202
+ - **🌊:** [Add CRUD operation type definitions] ([f2e05c12](https://github.com/MRX-Systems/MRX-Core/commit/f2e05c12))
203
+ - **🌊:** [Add CrudSourceSchemasOptions type definition] ([c6235101](https://github.com/MRX-Systems/MRX-Core/commit/c6235101))
204
+ - **🌊:** [Add CrudOperationsOptions type definition] ([8a617612](https://github.com/MRX-Systems/MRX-Core/commit/8a617612))
205
+ - **🌊:** [Add CrudModelsType type definition] ([1316e3cf](https://github.com/MRX-Systems/MRX-Core/commit/1316e3cf))
206
+ - **🌊:** [Add CrudOptions type definition] ([1605102f](https://github.com/MRX-Systems/MRX-Core/commit/1605102f))
207
+ - **🌊:** [Refactor CRUD type definitions for improved clarity] ## Type Changes - Updated `CrudModelsType` to include more specific operation types. - Refactored `CrudOptions` to simplify schema definitions and improve type safety. - Removed `CrudSourceSchemasOptions` as it was redundant. ([71a46a1e](https://github.com/MRX-Systems/MRX-Core/commit/71a46a1e))
208
+ - **🌊:** [Refactor CRUD type definitions for improved clarity] ([49fd0e9c](https://github.com/MRX-Systems/MRX-Core/commit/49fd0e9c))
39
209
 
40
210
  ### 🦉 Chore
41
211
 
42
- - **🦉:** V2.3.5-canary-20250520-f78ef3f ([9dcef466](https://github.com/MRX-Systems/MRX-Core/commit/9dcef466))
43
- - **🦉:** V2.3.5-canary-20250520-f78ef3f ([84e1c9e5](https://github.com/MRX-Systems/MRX-Core/commit/84e1c9e5))
44
- - **🦉:** V2.3.5 ([c62e1461](https://github.com/MRX-Systems/MRX-Core/commit/c62e1461))
45
- - **🦉:** [Remove unused server.ts file] ([e1c1d557](https://github.com/MRX-Systems/MRX-Core/commit/e1c1d557))
46
- - **🦉:** [Remove outdated changelog entries] ([b13e823d](https://github.com/MRX-Systems/MRX-Core/commit/b13e823d))
212
+ - **🦉:** V2.4.0 ([8a55535a](https://github.com/MRX-Systems/MRX-Core/commit/8a55535a))
213
+ - **🦉:** [Remove MSSQL] ([0a6c81d8](https://github.com/MRX-Systems/MRX-Core/commit/0a6c81d8))
214
+ - **🦉:** [Remove logs file] ([b5abeb28](https://github.com/MRX-Systems/MRX-Core/commit/b5abeb28))
215
+ - **🦉:** [update dependencies and remove unused packages] ([7e459687](https://github.com/MRX-Systems/MRX-Core/commit/7e459687))
216
+ - **🦉:** [Remove outdated changelog entries] ([ec120e0d](https://github.com/MRX-Systems/MRX-Core/commit/ec120e0d))
217
+ - **🦉:** [Update .gitignore for additional files] ([370f4d8a](https://github.com/MRX-Systems/MRX-Core/commit/370f4d8a))
218
+ - **🦉:** [Remove array and object iteration benchmark files] ([86f791c5](https://github.com/MRX-Systems/MRX-Core/commit/86f791c5))
219
+ - **🦉:** [Remove unused environment variables from .env.sample] ([5dd70c13](https://github.com/MRX-Systems/MRX-Core/commit/5dd70c13))
47
220
 
48
221
  ### 🧪 Tests
49
222
 
50
- - **🧪:** [Add unit tests for TypedEventEmitter functionality] ([201d9b32](https://github.com/MRX-Systems/MRX-Core/commit/201d9b32))
51
- - **🧪:** [Add comprehensive tests for Logger class functionality] ([c460845e](https://github.com/MRX-Systems/MRX-Core/commit/c460845e))
52
- - **🧪:** [Add tests for SingletonManager functionality] ([d473a2a1](https://github.com/MRX-Systems/MRX-Core/commit/d473a2a1))
53
- - **🧪:** [Add comprehensive data filtering and transformation tests] ([e7a3c2cc](https://github.com/MRX-Systems/MRX-Core/commit/e7a3c2cc))
54
- - **🧪:** [Update transformer import paths for consistency] ([aead523c](https://github.com/MRX-Systems/MRX-Core/commit/aead523c))
55
- - **🧪:** [Add tests for key transformation functions] ## Tests - Added tests for `CamelCaseTransformer`, `KebabCaseTransformer`, `PascalCaseTransformer`, and `SnakeCaseTransformer` to ensure correct key transformations. - Each transformer now includes tests for edge cases, such as transforming keys that are already in the desired format. ([43c82d00](https://github.com/MRX-Systems/MRX-Core/commit/43c82d00))
223
+ - **🧪:** [Refactor dynamicDatabaseSelector tests for consistency] ([1e540b73](https://github.com/MRX-Systems/MRX-Core/commit/1e540b73))
224
+ - **🧪:** [Enhance stream async iterable tests with various scenarios] ([5c7c3cfb](https://github.com/MRX-Systems/MRX-Core/commit/5c7c3cfb))
225
+ - **🧪:** [Enhance environment validation tests with various scenarios] ([f252fd1a](https://github.com/MRX-Systems/MRX-Core/commit/f252fd1a))
226
+ - **🧪:** [Enhance TypedEventEmitter tests with new event scenarios] ([e4733df6](https://github.com/MRX-Systems/MRX-Core/commit/e4733df6))
227
+ - **🧪:** [Enhance SingletonManager tests with comprehensive scenarios] ([08d72dd6](https://github.com/MRX-Systems/MRX-Core/commit/08d72dd6))
228
+ - **🧪:** [Enhance Repository tests with null instance scenarios] ([85d58f14](https://github.com/MRX-Systems/MRX-Core/commit/85d58f14))
229
+ - **🧪:** [Refactor SMTP tests for improved clarity and coverage] ([600f0f9b](https://github.com/MRX-Systems/MRX-Core/commit/600f0f9b))
230
+ - **🧪:** [Enhance CoreError tests with comprehensive scenarios] ([9100d80d](https://github.com/MRX-Systems/MRX-Core/commit/9100d80d))
231
+ - **🧪:** [Enhance Table class tests with comprehensive scenarios] ([faafda8e](https://github.com/MRX-Systems/MRX-Core/commit/faafda8e))
232
+ - **🧪:** [Enhance data filtering tests with comprehensive scenarios] ## Tests - Added tests for `filterByKeyExclusion` to cover various cases including: - Filtering with specified keys. - Excluding null and undefined values. - Handling edge cases like empty objects and non-existent keys. - Enhanced `filterByKeyInclusion` tests to ensure correct behavior with: - Specified keys and exclusion of null/undefined values. - Edge cases for empty keys and non-existent keys. - Expanded `filterByValue` tests to validate filtering based on predicates, including: - Handling complex predicates and array values. - Introduced transformer tests for `CamelCase`, `KebabCase`, `PascalCase`, and `SnakeCase` to ensure key transformations are accurate. - Comprehensive function coverage tests added to validate all edge cases and regex patterns in transformers. ([ac6cab48](https://github.com/MRX-Systems/MRX-Core/commit/ac6cab48))
233
+ - **🧪:** [Add MSSQL integration tests for database functionality] ([ad4cd104](https://github.com/MRX-Systems/MRX-Core/commit/ad4cd104))
234
+ - **🧪:** [Enhance rate limit plugin tests with comprehensive scenarios] ([4a138afd](https://github.com/MRX-Systems/MRX-Core/commit/4a138afd))
235
+ - **🧪:** [Refactor microservice tests for clarity and consistency] ([0638e8a0](https://github.com/MRX-Systems/MRX-Core/commit/0638e8a0))
236
+ - **🧪:** [Add edge case and configuration tests for JWT plugin] ## Tests - Added tests for handling empty/null token verification. - Implemented tests for malformed tokens. - Created tests for verifying tokens with wrong secrets. - Added tests for special characters in payload. - Implemented tests for large payloads. - Added tests for different secret formats. - Created tests for handling different expiration formats. ([ac4eed05](https://github.com/MRX-Systems/MRX-Core/commit/ac4eed05))
237
+ - **🧪:** [Enhance error plugin tests with edge cases and performance checks] ([def110cd](https://github.com/MRX-Systems/MRX-Core/commit/def110cd))
238
+ - **🧪:** [Refactor microservice tests for better readability] ([b18a023b](https://github.com/MRX-Systems/MRX-Core/commit/b18a023b))
239
+ - **🧪:** [Add tests for createSelectedFieldsSchema function] ## Tests - Introduced a new test suite for the `createSelectedFieldsSchema` function. - Added multiple test cases to validate the structure and behavior of the selected fields schema. ([42a27afe](https://github.com/MRX-Systems/MRX-Core/commit/42a27afe))
240
+ - **🧪:** [Enhance tests for createSelectedFieldsSchema function] ## Tests - Added assertions to verify the structure of the selected fields schema. - Ensured the schema has a minimum of one item in the array. - Confirmed the default value is set to ["*"] and includes examples. ([90405973](https://github.com/MRX-Systems/MRX-Core/commit/90405973))
241
+ - **🧪:** [Add tests for createOrderBySchema function] ([663b2ca6](https://github.com/MRX-Systems/MRX-Core/commit/663b2ca6))
242
+ - **🧪:** [Add tests for createQSchema function] ([db252115](https://github.com/MRX-Systems/MRX-Core/commit/db252115))
243
+ - **🧪:** [Add createPropertiesSearchSchema test suite] ([e30ec813](https://github.com/MRX-Systems/MRX-Core/commit/e30ec813))
244
+ - **🧪:** [Enhance tests for createOrderBySchema, createQSchema, and createSelectedFieldsSchema] ## Tests - Improved test descriptions for clarity. - Added assertions for maximum items in `createOrderBySchema`. - Enhanced example checks in `createQSchema`. - Refined union options validation in `createSelectedFieldsSchema`. ([75abdfbb](https://github.com/MRX-Systems/MRX-Core/commit/75abdfbb))
245
+ - **🧪:** [Enhance tests for createPropertiesSearchSchema operators and fix util] ## Tests - Added comprehensive tests for string, number, integer, date, and boolean properties in `createPropertiesSearchSchema`. - Verified the correct creation of basic, array/pattern, and comparison operators for each property type. - Ensured that boolean properties do not have array/pattern or comparison operators. - Confirmed that all expected schema properties are included in the result. ([498dda70](https://github.com/MRX-Systems/MRX-Core/commit/498dda70))
246
+ - **🧪:** [Add filterByKeyExclusionRecursive functionality] ([b23effec](https://github.com/MRX-Systems/MRX-Core/commit/b23effec))
247
+ - **🧪:** [Add tests for removeValidationFromSchema function] ([916e303f](https://github.com/MRX-Systems/MRX-Core/commit/916e303f))
248
+ - **🧪:** [Add tests for createOrderBySchema utility function] ([7241aac4](https://github.com/MRX-Systems/MRX-Core/commit/7241aac4))
249
+ - **🧪:** [Add tests for createQSchema utility function] ## Tests - Implement unit tests for the createQSchema function. - Validate the structure of the generated union schema. - Ensure correct descriptions and properties for union elements. ([e19acb4b](https://github.com/MRX-Systems/MRX-Core/commit/e19acb4b))
250
+ - **🧪:** [Refactor tests for createOrderBySchema utility function] ## Tests - Updated test cases for `createOrderBySchema` to improve clarity and structure. - Each test now clearly states its purpose, enhancing readability and maintainability. ([62a94077](https://github.com/MRX-Systems/MRX-Core/commit/62a94077))
251
+ - **🧪:** [Refactor tests for createQSchema utility function] - Updated test descriptions for clarity and consistency. - Ensured tests accurately reflect the expected structure of the union schema. ([e8b74a00](https://github.com/MRX-Systems/MRX-Core/commit/e8b74a00))
252
+ - **🧪:** [little fix] ([64d2f235](https://github.com/MRX-Systems/MRX-Core/commit/64d2f235))
253
+ - **🧪:** [Add tests for isDateFromElysiaTypeBox utility function] ([a1720704](https://github.com/MRX-Systems/MRX-Core/commit/a1720704))
254
+ - **🧪:** [Add tests for createSelectedFieldsSchema utility function] ([e1f1a4da](https://github.com/MRX-Systems/MRX-Core/commit/e1f1a4da))
255
+ - **🧪:** [Add tests for createAdaptiveWhereClauseSchema utility function] ([2ef1f3ab](https://github.com/MRX-Systems/MRX-Core/commit/2ef1f3ab))
256
+ - **🧪:** [Refactor key transformation methods for consistency] ## Refactoring - Replaced `transformKey` method with `convertCase` in various transformers. - Updated test cases to reflect the new method name for clarity. ([8e76b0fb](https://github.com/MRX-Systems/MRX-Core/commit/8e76b0fb))
257
+ - **🧪:** [Remove console log from performance test] ([d12c843d](https://github.com/MRX-Systems/MRX-Core/commit/d12c843d))
258
+ - **🧪:** [Update database schema field names for consistency] ([b902ca97](https://github.com/MRX-Systems/MRX-Core/commit/b902ca97))
259
+ - **🧪:** [Refactor isDateString tests for better organization] ([dd9edd31](https://github.com/MRX-Systems/MRX-Core/commit/dd9edd31))
260
+ - **🧪:** [Enhance filterByKeyExclusionRecursive test cases] ([632145f3](https://github.com/MRX-Systems/MRX-Core/commit/632145f3))
261
+ - **🧪:** [Add tests for error handling in repository methods] ## Tests - Added a test to verify that an error is thrown when no results are found with `throwIfNoResult` set to true. - Included a test for custom error messages when no results are found. - Updated existing tests to improve clarity and consistency in error handling. ([95c84f73](https://github.com/MRX-Systems/MRX-Core/commit/95c84f73))
262
+ - **🧪:** [Remove redundant tests for error handling in repository] ([1780a417](https://github.com/MRX-Systems/MRX-Core/commit/1780a417))
263
+ - **🧪:** [Add test for filtering object with symbol keys] Added a test case to verify that the `filterByKeyExclusionRecursive` function correctly handles objects with symbol keys. This ensures that symbols are preserved in the output when no keys are excluded. ([af5e0e69](https://github.com/MRX-Systems/MRX-Core/commit/af5e0e69))
264
+ - **🧪:** [Rename test schema for clarity] ## Test - Updated the test schema name from `queryOptionsBuilderTestSchema` to `TestSchemaSearch`. ## Description This change improves the clarity of the test by aligning the schema name with its intended purpose, making it easier to understand and maintain. ([3c81e640](https://github.com/MRX-Systems/MRX-Core/commit/3c81e640))
265
+ - **🧪:** [Refactor repository tests] ([9b9f3539](https://github.com/MRX-Systems/MRX-Core/commit/9b9f3539))
266
+ - **🧪:** [Refactor tests for createSelectedFieldsSchema] ([3e980f8a](https://github.com/MRX-Systems/MRX-Core/commit/3e980f8a))
267
+ - **🧪:** [Refactor createOrderBySchema tests for clarity and accuracy] ([a7c16313](https://github.com/MRX-Systems/MRX-Core/commit/a7c16313))
268
+ - **🧪:** [Enhance third element validation in selected fields schema] ([3ce88a33](https://github.com/MRX-Systems/MRX-Core/commit/3ce88a33))
269
+ - **🧪:** [Add uniqueItems validation to second element in orderBySchema] - Enhanced the second element validation in createOrderBySchema tests to check for uniqueItems property. - This ensures that the array of objects returned has unique items, improving data integrity. ([ab62daf2](https://github.com/MRX-Systems/MRX-Core/commit/ab62daf2))
270
+ - **🧪:** [Refactor createQSchema tests for clarity and structure] - Improved test descriptions for better readability. - Streamlined assertions for the `selectedFields` structure. - Enhanced validation checks for `anyOf` elements in the schema. ([4f941480](https://github.com/MRX-Systems/MRX-Core/commit/4f941480))
271
+ - **🧪:** [Correctiion and add tests repository and fix repo] ([575e49f2](https://github.com/MRX-Systems/MRX-Core/commit/575e49f2))
272
+ - **🧪:** [Fix create selected fields schema tests] ([a8bae0ac](https://github.com/MRX-Systems/MRX-Core/commit/a8bae0ac))
273
+ - **🧪:** [Add unit tests for createAdaptiveWhereClauseSchema] ([0850cb4f](https://github.com/MRX-Systems/MRX-Core/commit/0850cb4f))
274
+ - **🧪:** [Add unit tests for createCountResponse200Schema] ([fae50e2f](https://github.com/MRX-Systems/MRX-Core/commit/fae50e2f))
275
+ - **🧪:** [Add unit tests for createCountSchema] ([368f93c9](https://github.com/MRX-Systems/MRX-Core/commit/368f93c9))
276
+ - **🧪:** [Add unit tests for createDeleteSchema] ([8f27f6ba](https://github.com/MRX-Systems/MRX-Core/commit/8f27f6ba))
277
+ - **🧪:** [Add unit tests for createFiltersSchema] ([588e2af6](https://github.com/MRX-Systems/MRX-Core/commit/588e2af6))
278
+ - **🧪:** [createDeleteSchema Add tests check optional & required props] ([2f919931](https://github.com/MRX-Systems/MRX-Core/commit/2f919931))
279
+ - **🧪:** [Update test/unit/modules/elysia/crudSchemaPlugin/utils/createFiltersSchema.spec.ts] ([a8f51681](https://github.com/MRX-Systems/MRX-Core/commit/a8f51681))
280
+ - **🧪:** [Update test/unit/modules/elysia/crudSchemaPlugin/utils/createDeleteSchema.spec.ts] ([7068a229](https://github.com/MRX-Systems/MRX-Core/commit/7068a229))
281
+ - **🧪:** [Update test/unit/modules/elysia/crudSchemaPlugin/utils/createDeleteSchema.spec.ts] ([241cadca](https://github.com/MRX-Systems/MRX-Core/commit/241cadca))
282
+ - **🧪:** [Update test/unit/modules/elysia/crudSchemaPlugin/utils/createCountSchema.spec.ts] ([a0fbb2f4](https://github.com/MRX-Systems/MRX-Core/commit/a0fbb2f4))
283
+ - **🧪:** [Add unit tests for BaseError and HttpError classes] ([d07a8fb4](https://github.com/MRX-Systems/MRX-Core/commit/d07a8fb4))
284
+ - **🧪:** [Update expected error messages to use DATA_ERROR_KEYS] ([fef36ddb](https://github.com/MRX-Systems/MRX-Core/commit/fef36ddb))
285
+ - **🧪:** [Add unit tests for createAdaptiveWhereClauseSchema function] ([27b1d362](https://github.com/MRX-Systems/MRX-Core/commit/27b1d362))
286
+ - **🧪:** [Add unit tests for createCountResponse200Schema function] ([f8a5fd2c](https://github.com/MRX-Systems/MRX-Core/commit/f8a5fd2c))
287
+ - **🧪:** [Add unit tests for createCountSchema function] ## Tests - Introduced unit tests for the `createCountSchema` function. - Verified schema creation, properties, and types for `queryOptions`. - Ensured `queryOptions` contains only the `filters` property. ([e677315d](https://github.com/MRX-Systems/MRX-Core/commit/e677315d))
288
+ - **🧪:** [Add unit tests for createDeleteSchema function] ([e14deb8c](https://github.com/MRX-Systems/MRX-Core/commit/e14deb8c))
289
+ - **🧪:** [Add unit tests for createFiltersSchema function] ([2e628b43](https://github.com/MRX-Systems/MRX-Core/commit/2e628b43))
290
+ - **🧪:** [Add unit tests for createFindSchema function] ## Tests - Introduced a new test suite for the `createFindSchema` function. - Verified the schema creation, properties, and optional fields for `queryOptions`. - Ensured that all expected properties such as `selectedFields`, `orderBy`, `filters`, `limit`, and `offset` are correctly defined and marked as optional. ([c68e67b6](https://github.com/MRX-Systems/MRX-Core/commit/c68e67b6))
291
+ - **🧪:** [Add unit tests for createIdParamSchema function] ([da69cf8e](https://github.com/MRX-Systems/MRX-Core/commit/da69cf8e))
292
+ - **🧪:** [Add unit tests for createInsertSchema function] ([85c47c66](https://github.com/MRX-Systems/MRX-Core/commit/85c47c66))
293
+ - **🧪:** [Add unit tests for createOrderSchema function] ## Tests - Introduced a new test suite for the `createOrderSchema` function. - Added tests to verify the schema creation, including type checks and required properties. - Ensured that the generated schema meets the expected structure and constraints. ([e0106e34](https://github.com/MRX-Systems/MRX-Core/commit/e0106e34))
294
+ - **🧪:** [Add unit tests for createPropertiesSchema function] ([6196183c](https://github.com/MRX-Systems/MRX-Core/commit/6196183c))
295
+ - **🧪:** [Add unit tests for createQSchema function] ([60b0b23a](https://github.com/MRX-Systems/MRX-Core/commit/60b0b23a))
296
+ - **🧪:** [Add unit tests for createResponse200Schema function] ([dcef1105](https://github.com/MRX-Systems/MRX-Core/commit/dcef1105))
297
+ - **🧪:** [Add unit tests for createSelectedFieldsSchema function] ([35b124ff](https://github.com/MRX-Systems/MRX-Core/commit/35b124ff))
298
+ - **🧪:** [Fix test suite description for createInsertSchema function] ([4bedc522](https://github.com/MRX-Systems/MRX-Core/commit/4bedc522))
299
+ - **🧪:** [Add unit tests for createUpdateOneSchema function] ([43f7ccd0](https://github.com/MRX-Systems/MRX-Core/commit/43f7ccd0))
300
+ - **🧪:** [Add tests for limit and offset properties in createFindSchema] ([1d67e0be](https://github.com/MRX-Systems/MRX-Core/commit/1d67e0be))
301
+ - **🧪:** [Refactor tests for createIdParamSchema function] ## Tests - Refactored the test cases for the `createIdParamSchema` function to improve clarity and structure. - Updated test descriptions for better understanding. - Separated assertions for the first and second union types of the `id` property. ([14ea65c4](https://github.com/MRX-Systems/MRX-Core/commit/14ea65c4))
302
+ - **🧪:** [Add unit tests for createUpdateSchema function] ## Tests - Introduced a comprehensive test suite for the `createUpdateSchema` function. - Verified schema creation, property types, and required fields. - Ensured that `queryOptions` and `data` properties are correctly defined and validated. ([df69d56b](https://github.com/MRX-Systems/MRX-Core/commit/df69d56b))
303
+ - **🧪:** [Refactor tests for queryOptions in createCountSchema] ([b2865408](https://github.com/MRX-Systems/MRX-Core/commit/b2865408))
304
+ - **🧪:** [Refactor test descriptions for createOrderSchema] Updated test descriptions in createOrderSchema.spec.ts for consistency and clarity. Changed capitalization for object types and union descriptions to follow standard conventions. Added a new test to ensure the first element's items are required. ([23f46f41](https://github.com/MRX-Systems/MRX-Core/commit/23f46f41))
305
+ - **🧪:** [Add tests for isDateFromElysiaTypeBox function] ## Tests - Introduced unit tests for the `isDateFromElysiaTypeBox` function. ## Description - Added tests to verify that the function correctly identifies TypeBox Date and String types, ensuring accurate type validation. ([6dbed765](https://github.com/MRX-Systems/MRX-Core/commit/6dbed765))
306
+ - **🧪:** [Add comprehensive tests for JWT plugin functionality] ([04d72e08](https://github.com/MRX-Systems/MRX-Core/commit/04d72e08))
307
+ - **🧪:** [Add comprehensive tests for rate limiting functionality] ([b77207f6](https://github.com/MRX-Systems/MRX-Core/commit/b77207f6))
308
+ - **🧪:** [Add CRUD schema tests for Elysia app] ([84d1fa7c](https://github.com/MRX-Systems/MRX-Core/commit/84d1fa7c))
309
+ - **🧪:** [Refactor Logger tests for consistency and clarity] ([345db630](https://github.com/MRX-Systems/MRX-Core/commit/345db630))
310
+ - **🧪:** [Refactor error handling in SMTP tests for consistency] - Updated error handling in SMTP tests to use BaseError instead of CoreError. - Replaced hardcoded error messages with constants from MAILER_ERROR_KEYS for better maintainability. - Ensured consistent error handling across connection and sendMail tests. ([9973bed9](https://github.com/MRX-Systems/MRX-Core/commit/9973bed9))
311
+ - **🧪:** [Update error handling in repository tests for HttpError] ([6c5124fb](https://github.com/MRX-Systems/MRX-Core/commit/6c5124fb))
312
+ - **🧪:** [Refactor singleton tests for improved error handling] ([61aa6b81](https://github.com/MRX-Systems/MRX-Core/commit/61aa6b81))
313
+ - **🧪:** [Update test data constants for consistency] ([2e32c3b5](https://github.com/MRX-Systems/MRX-Core/commit/2e32c3b5))
314
+ - **🧪:** [Refactor error handling in env validation tests] - Updated error handling in environment validation tests to use BaseError instead of CoreError for consistency. - Adjusted test descriptions to reflect the change in error type. - Ensured all relevant tests throw BaseError with appropriate messages and keys. ([12f1a36e](https://github.com/MRX-Systems/MRX-Core/commit/12f1a36e))
315
+ - **🧪:** [Reorder import statements for consistency across tests] ([04228722](https://github.com/MRX-Systems/MRX-Core/commit/04228722))
316
+ - **🧪:** [rename rateLimit to ratelimit] ([3154cf42](https://github.com/MRX-Systems/MRX-Core/commit/3154cf42))
317
+ - **🧪:** [use arrow function in repository] ([629cb8c9](https://github.com/MRX-Systems/MRX-Core/commit/629cb8c9))
318
+ - **🧪:** [Add comprehensive error handling tests] ([406b722d](https://github.com/MRX-Systems/MRX-Core/commit/406b722d))
319
+ - **🧪:** [Add unit tests for dbResolver functionality] ## Tests - Implemented unit tests for static and dynamic database resolution. - Verified connection establishment and property injection based on database mode. - Included error handling tests for connection failures and missing headers. ## Description This commit introduces a comprehensive suite of unit tests for the `dbResolver` functionality. It ensures that both static and dynamic database connections are correctly resolved based on the provided configurations and headers. The tests also cover scenarios where errors are expected, such as invalid database names and missing required headers, enhancing the robustness of the database resolution logic. ([f8c25abe](https://github.com/MRX-Systems/MRX-Core/commit/f8c25abe))
320
+ - **🧪:** [Remove integration tests] ([ea901bc0](https://github.com/MRX-Systems/MRX-Core/commit/ea901bc0))
321
+ - **🧪:** [Fix Correct response status code for error handling in tests] ([a20f0626](https://github.com/MRX-Systems/MRX-Core/commit/a20f0626))
322
+ - **🧪:** [Correct string payload reference in tests] ([a99a77c7](https://github.com/MRX-Systems/MRX-Core/commit/a99a77c7))
56
323
 
57
324
  ### 🎨 Styles
58
325
 
59
- - **🎨:** [Disable no-empty-object-type rule in ESLint config] Updated the ESLint configuration to turn off the '@typescript-eslint/no-empty-object-type' rule for improved flexibility in type definitions. ([78af9f9c](https://github.com/MRX-Systems/MRX-Core/commit/78af9f9c))
326
+ - **🎨:** [Remove ESLint directive for max classes per file] ([71eb0b03](https://github.com/MRX-Systems/MRX-Core/commit/71eb0b03))
327
+ - **🎨:** [explicit files inclusion] ([a5324621](https://github.com/MRX-Systems/MRX-Core/commit/a5324621))
328
+ - **🎨:** [Change space to tab indent] ([503d265d](https://github.com/MRX-Systems/MRX-Core/commit/503d265d))
329
+ - **🎨:** [Fix indent] ([d57d8f70](https://github.com/MRX-Systems/MRX-Core/commit/d57d8f70))
330
+ - **🎨:** [Indent with tab] ([212c4477](https://github.com/MRX-Systems/MRX-Core/commit/212c4477))
331
+ - **🎨:** [Fix indentation in Table of contents section] Updated the indentation for the items in the Table of contents to ensure consistent formatting throughout the README file. ([7abf1e2f](https://github.com/MRX-Systems/MRX-Core/commit/7abf1e2f))
332
+ - **🎨:** [Update Inconsistent loop increment style logger.spec.ts] ([e80a31fc](https://github.com/MRX-Systems/MRX-Core/commit/e80a31fc))
333
+ - **🎨:** [Fix formatting in unregister method documentation] Updated the documentation for the unregister method in the SingletonManager class to correct formatting issues, ensuring clarity and consistency in the comments. ([80033475](https://github.com/MRX-Systems/MRX-Core/commit/80033475))
334
+
335
+ ### 🤖 CI
336
+
337
+ - **🤖:** [Refactor CI workflows for improved structure and efficiency] ([9ee99bbf](https://github.com/MRX-Systems/MRX-Core/commit/9ee99bbf))
338
+ - **🤖:** [Enhance CI workflows with integration tests and secrets management] ([134b0e6b](https://github.com/MRX-Systems/MRX-Core/commit/134b0e6b))
339
+ - **🤖:** [Rename workflow for clarity] ([cea8261c](https://github.com/MRX-Systems/MRX-Core/commit/cea8261c))
340
+ - **🤖:** [downgrade to 1.2.15 bun for the moment] ([251f9baa](https://github.com/MRX-Systems/MRX-Core/commit/251f9baa))
341
+ - **🤖:** [Add Copilot setup workflow for automated steps] ([6f2a309b](https://github.com/MRX-Systems/MRX-Core/commit/6f2a309b))
342
+ - **🤖:** [Remove unnecessary parameters from checkout step] ([e5e639d2](https://github.com/MRX-Systems/MRX-Core/commit/e5e639d2))
60
343
 
61
344
  ### ❤️ Contributors
62
345
 
63
346
  - Ruby <necrelox@proton.me>
347
+ - Necrelox ([@Necrelox](https://github.com/Necrelox))
348
+ - Komiroko <komiriko@pm.me>
64
349
  - Github-actions <maxime.meriaux@mrxsys.com>
65
350
 
package/README.md CHANGED
@@ -5,9 +5,9 @@
5
5
  ## 📌 Table of contents
6
6
 
7
7
  - [📦 Core](#-core)
8
- - [📌 Table of contents](#-table-of-contents)
9
- - [⚖️ License](#-license)
10
- - [📧 Contact](#-contact)
8
+ - [📌 Table of contents](#-table-of-contents)
9
+ - [⚖️ License](#-license)
10
+ - [📧 Contact](#-contact)
11
11
 
12
12
  ## ⚖️ License
13
13