@palmares/schemas 0.1.25 → 0.2.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 (305) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/src/adapter/fields/array.cjs +96 -0
  3. package/dist/src/adapter/fields/array.d.ts.map +1 -0
  4. package/dist/src/adapter/fields/array.js +70 -0
  5. package/dist/src/adapter/fields/boolean.cjs +102 -0
  6. package/dist/src/adapter/fields/boolean.d.ts.map +1 -0
  7. package/dist/src/adapter/fields/boolean.js +76 -0
  8. package/dist/src/adapter/fields/datetime.cjs +102 -0
  9. package/dist/src/adapter/fields/datetime.d.ts.map +1 -0
  10. package/dist/src/adapter/fields/datetime.js +76 -0
  11. package/dist/src/adapter/fields/index.cjs +87 -0
  12. package/dist/src/adapter/fields/index.d.ts.map +1 -0
  13. package/dist/src/adapter/fields/index.js +61 -0
  14. package/dist/src/adapter/fields/number.cjs +102 -0
  15. package/dist/src/adapter/fields/number.d.ts.map +1 -0
  16. package/dist/src/adapter/fields/number.js +76 -0
  17. package/dist/src/adapter/fields/object.cjs +108 -0
  18. package/dist/src/adapter/fields/object.d.ts.map +1 -0
  19. package/dist/src/adapter/fields/object.js +82 -0
  20. package/dist/src/adapter/fields/string.cjs +102 -0
  21. package/dist/src/adapter/fields/string.d.ts.map +1 -0
  22. package/dist/src/adapter/fields/string.js +76 -0
  23. package/dist/src/adapter/fields/union.cjs +102 -0
  24. package/dist/src/adapter/fields/union.d.ts.map +1 -0
  25. package/dist/src/adapter/fields/union.js +76 -0
  26. package/dist/src/adapter/index.cjs +65 -0
  27. package/dist/src/adapter/index.d.ts.map +1 -0
  28. package/dist/src/adapter/index.js +40 -0
  29. package/dist/src/adapter/types.cjs +18 -0
  30. package/dist/src/adapter/types.d.ts.map +1 -0
  31. package/dist/src/adapter/types.js +0 -0
  32. package/dist/src/compile.cjs +59 -0
  33. package/dist/src/compile.d.ts.map +1 -0
  34. package/dist/src/compile.js +36 -0
  35. package/dist/src/conf.cjs +53 -0
  36. package/dist/src/conf.d.ts.map +1 -0
  37. package/dist/src/conf.js +27 -0
  38. package/dist/src/constants.cjs +40 -0
  39. package/dist/src/constants.d.ts.map +1 -0
  40. package/dist/src/constants.js +14 -0
  41. package/dist/src/domain.cjs +63 -0
  42. package/dist/src/domain.d.ts.map +1 -0
  43. package/dist/src/domain.js +40 -0
  44. package/dist/src/exceptions.cjs +48 -0
  45. package/dist/{cjs/types → src}/exceptions.d.ts +0 -3
  46. package/dist/src/exceptions.d.ts.map +1 -0
  47. package/dist/src/exceptions.js +24 -0
  48. package/dist/src/index.cjs +6509 -0
  49. package/dist/src/index.d.ts.map +1 -0
  50. package/dist/src/index.js +6445 -0
  51. package/dist/src/middleware.cjs +58 -0
  52. package/dist/src/middleware.d.ts.map +1 -0
  53. package/dist/src/middleware.js +35 -0
  54. package/dist/src/model.cjs +5992 -0
  55. package/dist/src/model.d.ts.map +1 -0
  56. package/dist/src/model.js +5967 -0
  57. package/dist/src/parsers/convert-from-number.cjs +34 -0
  58. package/dist/src/parsers/convert-from-number.d.ts.map +1 -0
  59. package/dist/src/parsers/convert-from-number.js +11 -0
  60. package/dist/src/parsers/convert-from-string.cjs +40 -0
  61. package/dist/src/parsers/convert-from-string.d.ts.map +1 -0
  62. package/dist/src/parsers/convert-from-string.js +17 -0
  63. package/dist/src/parsers/index.cjs +50 -0
  64. package/dist/src/parsers/index.d.ts.map +1 -0
  65. package/dist/src/parsers/index.js +24 -0
  66. package/dist/src/schema/array.cjs +1863 -0
  67. package/dist/src/schema/array.d.ts.map +1 -0
  68. package/dist/src/schema/array.js +1837 -0
  69. package/dist/src/schema/boolean.cjs +1800 -0
  70. package/dist/src/schema/boolean.d.ts.map +1 -0
  71. package/dist/src/schema/boolean.js +1774 -0
  72. package/dist/src/schema/datetime.cjs +1789 -0
  73. package/dist/src/schema/datetime.d.ts.map +1 -0
  74. package/dist/src/schema/datetime.js +1763 -0
  75. package/dist/src/schema/index.cjs +2026 -0
  76. package/dist/src/schema/index.d.ts.map +1 -0
  77. package/dist/src/schema/index.js +2001 -0
  78. package/dist/src/schema/number.cjs +2026 -0
  79. package/dist/src/schema/number.d.ts.map +1 -0
  80. package/dist/src/schema/number.js +2000 -0
  81. package/dist/src/schema/object.cjs +1795 -0
  82. package/dist/src/schema/object.d.ts.map +1 -0
  83. package/dist/src/schema/object.js +1769 -0
  84. package/dist/src/schema/schema.cjs +844 -0
  85. package/dist/src/schema/schema.d.ts.map +1 -0
  86. package/dist/src/schema/schema.js +818 -0
  87. package/dist/src/schema/string.cjs +2126 -0
  88. package/dist/src/schema/string.d.ts.map +1 -0
  89. package/dist/src/schema/string.js +2100 -0
  90. package/dist/src/schema/types.cjs +18 -0
  91. package/dist/src/schema/types.d.ts.map +1 -0
  92. package/dist/src/schema/types.js +0 -0
  93. package/dist/src/schema/union.cjs +1737 -0
  94. package/dist/src/schema/union.d.ts.map +1 -0
  95. package/dist/src/schema/union.js +1711 -0
  96. package/dist/src/types.cjs +18 -0
  97. package/dist/src/types.d.ts.map +1 -0
  98. package/dist/src/types.js +0 -0
  99. package/dist/src/utils.cjs +477 -0
  100. package/dist/src/utils.d.ts.map +1 -0
  101. package/dist/src/utils.js +445 -0
  102. package/dist/src/validators/array.cjs +176 -0
  103. package/dist/src/validators/array.d.ts.map +1 -0
  104. package/dist/src/validators/array.js +150 -0
  105. package/dist/src/validators/boolean.cjs +71 -0
  106. package/dist/src/validators/boolean.d.ts.map +1 -0
  107. package/dist/src/validators/boolean.js +47 -0
  108. package/dist/src/validators/datetime.cjs +129 -0
  109. package/dist/src/validators/datetime.d.ts.map +1 -0
  110. package/dist/src/validators/datetime.js +103 -0
  111. package/dist/src/validators/number.cjs +194 -0
  112. package/dist/src/validators/number.d.ts.map +1 -0
  113. package/dist/src/validators/number.js +166 -0
  114. package/dist/src/validators/object.cjs +69 -0
  115. package/dist/src/validators/object.d.ts.map +1 -0
  116. package/dist/src/validators/object.js +46 -0
  117. package/dist/src/validators/schema.cjs +158 -0
  118. package/dist/src/validators/schema.d.ts.map +1 -0
  119. package/dist/src/validators/schema.js +132 -0
  120. package/dist/src/validators/string.cjs +255 -0
  121. package/dist/src/validators/string.d.ts.map +1 -0
  122. package/dist/src/validators/string.js +224 -0
  123. package/dist/src/validators/types.cjs +18 -0
  124. package/dist/src/validators/types.d.ts.map +1 -0
  125. package/dist/src/validators/types.js +0 -0
  126. package/dist/src/validators/union.cjs +69 -0
  127. package/dist/src/validators/union.d.ts.map +1 -0
  128. package/dist/src/validators/union.js +46 -0
  129. package/dist/src/validators/utils.cjs +165 -0
  130. package/dist/src/validators/utils.d.ts.map +1 -0
  131. package/dist/src/validators/utils.js +142 -0
  132. package/dist/tsconfig.types.tsbuildinfo +1 -0
  133. package/package.json +15 -23
  134. package/dist/cjs/src/adapter/fields/array.js +0 -152
  135. package/dist/cjs/src/adapter/fields/boolean.js +0 -162
  136. package/dist/cjs/src/adapter/fields/datetime.js +0 -162
  137. package/dist/cjs/src/adapter/fields/index.js +0 -311
  138. package/dist/cjs/src/adapter/fields/number.js +0 -162
  139. package/dist/cjs/src/adapter/fields/object.js +0 -171
  140. package/dist/cjs/src/adapter/fields/string.js +0 -162
  141. package/dist/cjs/src/adapter/fields/union.js +0 -162
  142. package/dist/cjs/src/adapter/index.js +0 -201
  143. package/dist/cjs/src/adapter/types.js +0 -4
  144. package/dist/cjs/src/compile.js +0 -262
  145. package/dist/cjs/src/conf.js +0 -26
  146. package/dist/cjs/src/constants.js +0 -36
  147. package/dist/cjs/src/domain.js +0 -156
  148. package/dist/cjs/src/exceptions.js +0 -168
  149. package/dist/cjs/src/index.js +0 -317
  150. package/dist/cjs/src/middleware.js +0 -213
  151. package/dist/cjs/src/model.js +0 -628
  152. package/dist/cjs/src/parsers/convert-from-number.js +0 -15
  153. package/dist/cjs/src/parsers/convert-from-string.js +0 -19
  154. package/dist/cjs/src/parsers/index.js +0 -20
  155. package/dist/cjs/src/schema/array.js +0 -1014
  156. package/dist/cjs/src/schema/boolean.js +0 -883
  157. package/dist/cjs/src/schema/datetime.js +0 -840
  158. package/dist/cjs/src/schema/index.js +0 -12
  159. package/dist/cjs/src/schema/number.js +0 -976
  160. package/dist/cjs/src/schema/object.js +0 -1052
  161. package/dist/cjs/src/schema/schema.js +0 -1840
  162. package/dist/cjs/src/schema/string.js +0 -1038
  163. package/dist/cjs/src/schema/types.js +0 -4
  164. package/dist/cjs/src/schema/union.js +0 -1070
  165. package/dist/cjs/src/types.js +0 -4
  166. package/dist/cjs/src/utils.js +0 -647
  167. package/dist/cjs/src/validators/array.js +0 -462
  168. package/dist/cjs/src/validators/boolean.js +0 -201
  169. package/dist/cjs/src/validators/datetime.js +0 -291
  170. package/dist/cjs/src/validators/number.js +0 -375
  171. package/dist/cjs/src/validators/object.js +0 -291
  172. package/dist/cjs/src/validators/schema.js +0 -322
  173. package/dist/cjs/src/validators/string.js +0 -467
  174. package/dist/cjs/src/validators/types.js +0 -4
  175. package/dist/cjs/src/validators/union.js +0 -233
  176. package/dist/cjs/src/validators/utils.js +0 -499
  177. package/dist/cjs/tsconfig.types.tsbuildinfo +0 -1
  178. package/dist/cjs/types/adapter/fields/array.d.ts.map +0 -1
  179. package/dist/cjs/types/adapter/fields/boolean.d.ts.map +0 -1
  180. package/dist/cjs/types/adapter/fields/datetime.d.ts.map +0 -1
  181. package/dist/cjs/types/adapter/fields/index.d.ts.map +0 -1
  182. package/dist/cjs/types/adapter/fields/number.d.ts.map +0 -1
  183. package/dist/cjs/types/adapter/fields/object.d.ts.map +0 -1
  184. package/dist/cjs/types/adapter/fields/string.d.ts.map +0 -1
  185. package/dist/cjs/types/adapter/fields/union.d.ts.map +0 -1
  186. package/dist/cjs/types/adapter/index.d.ts.map +0 -1
  187. package/dist/cjs/types/adapter/types.d.ts.map +0 -1
  188. package/dist/cjs/types/compile.d.ts.map +0 -1
  189. package/dist/cjs/types/conf.d.ts.map +0 -1
  190. package/dist/cjs/types/constants.d.ts.map +0 -1
  191. package/dist/cjs/types/domain.d.ts.map +0 -1
  192. package/dist/cjs/types/exceptions.d.ts.map +0 -1
  193. package/dist/cjs/types/index.d.ts.map +0 -1
  194. package/dist/cjs/types/middleware.d.ts.map +0 -1
  195. package/dist/cjs/types/model.d.ts.map +0 -1
  196. package/dist/cjs/types/parsers/convert-from-number.d.ts.map +0 -1
  197. package/dist/cjs/types/parsers/convert-from-string.d.ts.map +0 -1
  198. package/dist/cjs/types/parsers/index.d.ts.map +0 -1
  199. package/dist/cjs/types/schema/array.d.ts.map +0 -1
  200. package/dist/cjs/types/schema/boolean.d.ts.map +0 -1
  201. package/dist/cjs/types/schema/datetime.d.ts.map +0 -1
  202. package/dist/cjs/types/schema/index.d.ts.map +0 -1
  203. package/dist/cjs/types/schema/number.d.ts.map +0 -1
  204. package/dist/cjs/types/schema/object.d.ts.map +0 -1
  205. package/dist/cjs/types/schema/schema.d.ts.map +0 -1
  206. package/dist/cjs/types/schema/string.d.ts.map +0 -1
  207. package/dist/cjs/types/schema/types.d.ts.map +0 -1
  208. package/dist/cjs/types/schema/union.d.ts.map +0 -1
  209. package/dist/cjs/types/types.d.ts.map +0 -1
  210. package/dist/cjs/types/utils.d.ts.map +0 -1
  211. package/dist/cjs/types/validators/array.d.ts.map +0 -1
  212. package/dist/cjs/types/validators/boolean.d.ts.map +0 -1
  213. package/dist/cjs/types/validators/datetime.d.ts.map +0 -1
  214. package/dist/cjs/types/validators/number.d.ts.map +0 -1
  215. package/dist/cjs/types/validators/object.d.ts.map +0 -1
  216. package/dist/cjs/types/validators/schema.d.ts.map +0 -1
  217. package/dist/cjs/types/validators/string.d.ts.map +0 -1
  218. package/dist/cjs/types/validators/types.d.ts.map +0 -1
  219. package/dist/cjs/types/validators/union.d.ts.map +0 -1
  220. package/dist/cjs/types/validators/utils.d.ts.map +0 -1
  221. package/dist/esm/src/adapter/fields/array.js +0 -13
  222. package/dist/esm/src/adapter/fields/boolean.js +0 -20
  223. package/dist/esm/src/adapter/fields/datetime.js +0 -20
  224. package/dist/esm/src/adapter/fields/index.js +0 -37
  225. package/dist/esm/src/adapter/fields/number.js +0 -20
  226. package/dist/esm/src/adapter/fields/object.js +0 -26
  227. package/dist/esm/src/adapter/fields/string.js +0 -20
  228. package/dist/esm/src/adapter/fields/union.js +0 -20
  229. package/dist/esm/src/adapter/index.js +0 -21
  230. package/dist/esm/src/adapter/types.js +0 -1
  231. package/dist/esm/src/compile.js +0 -10
  232. package/dist/esm/src/conf.js +0 -18
  233. package/dist/esm/src/constants.js +0 -4
  234. package/dist/esm/src/domain.js +0 -11
  235. package/dist/esm/src/exceptions.js +0 -15
  236. package/dist/esm/src/index.js +0 -126
  237. package/dist/esm/src/middleware.js +0 -29
  238. package/dist/esm/src/model.js +0 -264
  239. package/dist/esm/src/parsers/convert-from-number.js +0 -8
  240. package/dist/esm/src/parsers/convert-from-string.js +0 -14
  241. package/dist/esm/src/parsers/index.js +0 -2
  242. package/dist/esm/src/schema/array.js +0 -487
  243. package/dist/esm/src/schema/boolean.js +0 -520
  244. package/dist/esm/src/schema/datetime.js +0 -477
  245. package/dist/esm/src/schema/index.js +0 -3
  246. package/dist/esm/src/schema/number.js +0 -610
  247. package/dist/esm/src/schema/object.js +0 -521
  248. package/dist/esm/src/schema/schema.js +0 -767
  249. package/dist/esm/src/schema/string.js +0 -668
  250. package/dist/esm/src/schema/types.js +0 -1
  251. package/dist/esm/src/schema/union.js +0 -468
  252. package/dist/esm/src/types.js +0 -14
  253. package/dist/esm/src/utils.js +0 -207
  254. package/dist/esm/src/validators/array.js +0 -140
  255. package/dist/esm/src/validators/boolean.js +0 -37
  256. package/dist/esm/src/validators/datetime.js +0 -89
  257. package/dist/esm/src/validators/number.js +0 -148
  258. package/dist/esm/src/validators/object.js +0 -39
  259. package/dist/esm/src/validators/schema.js +0 -118
  260. package/dist/esm/src/validators/string.js +0 -202
  261. package/dist/esm/src/validators/types.js +0 -1
  262. package/dist/esm/src/validators/union.js +0 -39
  263. package/dist/esm/src/validators/utils.js +0 -147
  264. /package/dist/{cjs/types → src}/adapter/fields/array.d.ts +0 -0
  265. /package/dist/{cjs/types → src}/adapter/fields/boolean.d.ts +0 -0
  266. /package/dist/{cjs/types → src}/adapter/fields/datetime.d.ts +0 -0
  267. /package/dist/{cjs/types → src}/adapter/fields/index.d.ts +0 -0
  268. /package/dist/{cjs/types → src}/adapter/fields/number.d.ts +0 -0
  269. /package/dist/{cjs/types → src}/adapter/fields/object.d.ts +0 -0
  270. /package/dist/{cjs/types → src}/adapter/fields/string.d.ts +0 -0
  271. /package/dist/{cjs/types → src}/adapter/fields/union.d.ts +0 -0
  272. /package/dist/{cjs/types → src}/adapter/index.d.ts +0 -0
  273. /package/dist/{cjs/types → src}/adapter/types.d.ts +0 -0
  274. /package/dist/{cjs/types → src}/compile.d.ts +0 -0
  275. /package/dist/{cjs/types → src}/conf.d.ts +0 -0
  276. /package/dist/{cjs/types → src}/constants.d.ts +0 -0
  277. /package/dist/{cjs/types → src}/domain.d.ts +0 -0
  278. /package/dist/{cjs/types → src}/index.d.ts +0 -0
  279. /package/dist/{cjs/types → src}/middleware.d.ts +0 -0
  280. /package/dist/{cjs/types → src}/model.d.ts +0 -0
  281. /package/dist/{cjs/types → src}/parsers/convert-from-number.d.ts +0 -0
  282. /package/dist/{cjs/types → src}/parsers/convert-from-string.d.ts +0 -0
  283. /package/dist/{cjs/types → src}/parsers/index.d.ts +0 -0
  284. /package/dist/{cjs/types → src}/schema/array.d.ts +0 -0
  285. /package/dist/{cjs/types → src}/schema/boolean.d.ts +0 -0
  286. /package/dist/{cjs/types → src}/schema/datetime.d.ts +0 -0
  287. /package/dist/{cjs/types → src}/schema/index.d.ts +0 -0
  288. /package/dist/{cjs/types → src}/schema/number.d.ts +0 -0
  289. /package/dist/{cjs/types → src}/schema/object.d.ts +0 -0
  290. /package/dist/{cjs/types → src}/schema/schema.d.ts +0 -0
  291. /package/dist/{cjs/types → src}/schema/string.d.ts +0 -0
  292. /package/dist/{cjs/types → src}/schema/types.d.ts +0 -0
  293. /package/dist/{cjs/types → src}/schema/union.d.ts +0 -0
  294. /package/dist/{cjs/types → src}/types.d.ts +0 -0
  295. /package/dist/{cjs/types → src}/utils.d.ts +0 -0
  296. /package/dist/{cjs/types → src}/validators/array.d.ts +0 -0
  297. /package/dist/{cjs/types → src}/validators/boolean.d.ts +0 -0
  298. /package/dist/{cjs/types → src}/validators/datetime.d.ts +0 -0
  299. /package/dist/{cjs/types → src}/validators/number.d.ts +0 -0
  300. /package/dist/{cjs/types → src}/validators/object.d.ts +0 -0
  301. /package/dist/{cjs/types → src}/validators/schema.d.ts +0 -0
  302. /package/dist/{cjs/types → src}/validators/string.d.ts +0 -0
  303. /package/dist/{cjs/types → src}/validators/types.d.ts +0 -0
  304. /package/dist/{cjs/types → src}/validators/union.d.ts +0 -0
  305. /package/dist/{cjs/types → src}/validators/utils.d.ts +0 -0
@@ -1,610 +0,0 @@
1
- import { Schema } from './schema';
2
- import { DEFAULT_NUMBER_INTEGER_EXCEPTION, DEFAULT_NUMBER_MAX_EXCEPTION, DEFAULT_NUMBER_MIN_EXCEPTION } from '../constants';
3
- import { convertFromStringBuilder } from '../parsers';
4
- import { defaultTransform, defaultTransformToAdapter } from '../utils';
5
- import { decimalPlaces, integer, max, maxDigits, min, numberValidation } from '../validators/number';
6
- import { is, nullable, optional } from '../validators/schema';
7
- export class NumberSchema extends Schema {
8
- fieldType = 'number';
9
- __allowString;
10
- __is;
11
- __integer;
12
- __maxDigits;
13
- __decimalPlaces;
14
- __max;
15
- __min;
16
- __type = {
17
- message: 'Invalid type',
18
- check: (value)=>{
19
- const isNumber = new RegExp('^-?\\d*(\\.\\d+)?$').test(value);
20
- if (typeof value === 'string' && this.__allowString && isNumber) return true;
21
- return typeof value === 'number';
22
- }
23
- };
24
- async __transformToAdapter(options) {
25
- return defaultTransformToAdapter(async (adapter)=>{
26
- return defaultTransform('number', this, adapter, adapter.number, ()=>({
27
- is: this.__is,
28
- min: this.__min,
29
- max: this.__max,
30
- integer: this.__integer,
31
- optional: this.__optional,
32
- nullable: this.__nullable,
33
- maxDigits: this.__maxDigits,
34
- decimalPlaces: this.__decimalPlaces,
35
- type: this.__type,
36
- parsers: {
37
- allowString: this.__allowString,
38
- nullable: this.__nullable.allow,
39
- optional: this.__optional.allow
40
- }
41
- }), {
42
- max,
43
- min,
44
- maxDigits: maxDigits,
45
- is: is,
46
- optional: optional,
47
- nullable: nullable,
48
- decimalPlaces: decimalPlaces,
49
- integer: integer
50
- }, {
51
- validatorsIfFallbackOrNotSupported: numberValidation(),
52
- shouldAddStringVersion: options.shouldAddStringVersion,
53
- // eslint-disable-next-line ts/require-await
54
- fallbackIfNotSupported: async ()=>{
55
- return [];
56
- }
57
- });
58
- }, this, this.__transformedSchemas, options, 'number');
59
- }
60
- /**
61
- * This let's you refine the schema with custom validations. This is useful when you want to validate something
62
- * that is not supported by default by the schema adapter.
63
- *
64
- * @example
65
- * ```typescript
66
- * import * as p from '@palmares/schemas';
67
- *
68
- * const numberSchema = p.number().refine((value) => {
69
- * if (value < 0) return { code: 'invalid_number', message: 'The number should be greater than 0' };
70
- * });
71
- *
72
- * const { errors, parsed } = await numberSchema.parse(-1);
73
- *
74
- * console.log(errors);
75
- * // [{ isValid: false, code: 'invalid_number', message: 'The number should be greater than 0', path: [] }]
76
- * ```
77
- *
78
- * @param refinementCallback - The callback that will be called to validate the value.
79
- * @param options - Options for the refinement.
80
- * @param options.isAsync - Whether the callback is async or not. Defaults to true.
81
- *
82
- * @returns The schema.
83
- */ refine(refinementCallback) {
84
- return super.refine(refinementCallback);
85
- }
86
- /**
87
- * Allows the value to be either undefined or null.
88
- *
89
- * @example
90
- * ```typescript
91
- * import * as p from '@palmares/schemas';
92
- *
93
- * const numberSchema = p.number().optional();
94
- *
95
- * const { errors, parsed } = await numberSchema.parse(undefined);
96
- *
97
- * console.log(parsed); // undefined
98
- *
99
- * const { errors, parsed } = await numberSchema.parse(null);
100
- *
101
- * console.log(parsed); // null
102
- *
103
- * const { errors, parsed } = await numberSchema.parse(1);
104
- *
105
- * console.log(parsed); // 1
106
- * ```
107
- *
108
- * @returns - The schema we are working with.
109
- */ optional(options) {
110
- return super.optional(options);
111
- }
112
- /**
113
- * Just adds a message when the value is undefined. It's just a syntax sugar for
114
- *
115
- * ```typescript
116
- * p.string().optional({ message: 'This value cannot be null', allow: false })
117
- * ```
118
- *
119
- * @param options - The options of nonOptional function
120
- * @param options.message - A custom message if the value is undefined.
121
- *
122
- * @returns - The schema.
123
- */ nonOptional(options) {
124
- return super.optional({
125
- message: options?.message,
126
- allow: false
127
- });
128
- }
129
- /**
130
- * Allows the value to be null and ONLY null. You can also use this function to set a custom message when the value
131
- * is NULL by setting the { message: 'Your custom message', allow: false } on the options.
132
- *
133
- * @example
134
- * ```typescript
135
- * import * as p from '@palmares/schemas';
136
- *
137
- * const numberSchema = p.number().nullable();
138
- *
139
- * const { errors, parsed } = await numberSchema.parse(null);
140
- *
141
- * console.log(parsed); // null
142
- *
143
- * const { errors, parsed } = await numberSchema.parse(undefined);
144
- *
145
- * console.log(errors); // [{ isValid: false, code: 'invalid_type', message: 'Invalid type', path: [] }]
146
- * ```
147
- *
148
- * @param options - The options for the nullable function.
149
- * @param options.message - The message to be shown when the value is not null. Defaults to 'Cannot be null'.
150
- * @param options.allow - Whether the value can be null or not. Defaults to true.
151
- *
152
- * @returns The schema.
153
- */ nullable(options) {
154
- return super.nullable(options);
155
- }
156
- /**
157
- * Just adds a message when the value is null. It's just a syntax sugar for
158
- *
159
- * ```typescript
160
- * p.string().nullable({ message: 'This value cannot be null', allow: false })
161
- * ```
162
- *
163
- * @param options - The options of nonNullable function
164
- * @param options.message - A custom message if the value is null.
165
- *
166
- * @returns - The schema.
167
- */ nonNullable(options) {
168
- return super.nullable({
169
- message: options?.message || '',
170
- allow: false
171
- });
172
- }
173
- /**
174
- * This method will remove the value from the representation of the schema. If the value is undefined it will keep
175
- * that way otherwise it will set the value to undefined after it's validated.
176
- * This is used in conjunction with the {@link data} function, the {@link parse} function or {@link validate}
177
- * function. This will remove the value from the representation of the schema.
178
- *
179
- * By default, the value will be removed just from the representation, in other words, when you call the {@link data}
180
- * function.
181
- * But if you want to remove the value from the internal representation, you can pass the argument `toInternal`
182
- * as true. Then if you still want to remove the value from the representation, you will need to pass the argument
183
- * `toRepresentation` as true as well.
184
- *
185
- * @example
186
- * ```typescript
187
- * import * as p from '@palmares/schemas';
188
- *
189
- * const userSchema = p.object({
190
- * id: p.number().optional(),
191
- * name: p.string(),
192
- * password: p.string().omit()
193
- * });
194
- *
195
- * const user = await userSchema.data({
196
- * id: 1,
197
- * name: 'John Doe',
198
- * password: '123456'
199
- * });
200
- *
201
- * console.log(user); // { id: 1, name: 'John Doe' }
202
- * ```
203
- *
204
- *
205
- * @param args - By default, the value will be removed just from the representation, in other words, when you call
206
- * the {@link data} function.
207
- * But if you want to remove the value from the internal representation, you can pass the argument `toInternal`
208
- * as true. Then if you still want to remove the value from the representation, you will need to pass the argument
209
- * `toRepresentation` as true as well.
210
- *
211
- * @returns The schema.
212
- */ omit(args) {
213
- return super.omit(args);
214
- }
215
- /**
216
- * This will allow the value to be a string, it does not validate, it just parses inputs as strings and allows the
217
- * result to be a string as well.
218
- *
219
- * @example
220
- * ```ts
221
- * number().allowString().parse('true') // true
222
- * ```
223
- *
224
- * @returns - The schema instance
225
- */ allowString() {
226
- this.__allowString = true;
227
- this.__parsers.low.set('allowString', convertFromStringBuilder((value)=>{
228
- return {
229
- value: Number(value),
230
- preventNextParsers: false
231
- };
232
- }));
233
- return this;
234
- }
235
- /**
236
- * This function is used in conjunction with the {@link validate} function. It's used to save a value to an external
237
- * source like a database. You should always return the schema after you save the value, that way we will always
238
- * have the correct type of the schema after the save operation.
239
- *
240
- * You can use the {@link toRepresentation} function to transform and clean the value it returns after the save.
241
- *
242
- * @example
243
- * ```typescript
244
- * import * as p from '@palmares/schemas';
245
- *
246
- * import { User } from './models';
247
- *
248
- * const userSchema = p.object({
249
- * id: p.number().optional(),
250
- * name: p.string(),
251
- * email: p.string().email(),
252
- * }).onSave(async (value) => {
253
- * // Create or update the user on the database using palmares models or any other library of your choice.
254
- * if (value.id)
255
- * await User.default.set(value, { search: { id: value.id } });
256
- * else
257
- * await User.default.set(value);
258
- *
259
- * return value;
260
- * });
261
- *
262
- *
263
- * // Then, on your controller, do something like this:
264
- * const { isValid, save, errors } = await userSchema.validate(req.body);
265
- * if (isValid) {
266
- * const savedValue = await save();
267
- * return Response.json(savedValue, { status: 201 });
268
- * }
269
- *
270
- * return Response.json({ errors }, { status: 400 });
271
- * ```
272
- *
273
- * @param callback - The callback that will be called to save the value on an external source.
274
- *
275
- * @returns The schema.
276
- */ onSave(callback) {
277
- return super.onSave(callback);
278
- }
279
- /**
280
- * This function is used to add a default value to the schema. If the value is either undefined or null, the default
281
- * value will be used.
282
- *
283
- * @example
284
- * ```typescript
285
- * import * as p from '@palmares/schemas';
286
- *
287
- * const numberSchema = p.number().default(0);
288
- *
289
- * const { errors, parsed } = await numberSchema.parse(undefined);
290
- *
291
- * console.log(parsed); // 0
292
- * ```
293
- */ default(defaultValueOrFunction) {
294
- return super.default(defaultValueOrFunction);
295
- }
296
- /**
297
- * This function let's you customize the schema your own way. After we translate the schema on the adapter we call
298
- * this function to let you customize the custom schema your own way. Our API does not support passthrough?
299
- * No problem, you can use this function to customize the zod schema.
300
- *
301
- * @example
302
- * ```typescript
303
- * import * as p from '@palmares/schemas';
304
- *
305
- * const numberSchema = p.number().extends((schema) => {
306
- * return schema.nonnegative();
307
- * });
308
- *
309
- * const { errors, parsed } = await numberSchema.parse(-1);
310
- *
311
- * console.log(errors);
312
- * // [{ isValid: false, code: 'nonnegative', message: 'The number should be nonnegative', path: [] }]
313
- * ```
314
- *
315
- * @param callback - The callback that will be called to customize the schema.
316
- * @param toStringCallback - The callback that will be called to transform the schema to a string when you
317
- * want to compile the underlying schema to a string so you can save it for future runs.
318
- *
319
- * @returns The schema.
320
- */ extends(callback, toStringCallback) {
321
- return super.extends(callback, toStringCallback);
322
- }
323
- /**
324
- * This function is used to transform the value to the representation of the schema. When using the {@link data}
325
- * function. With this function you have full control to add data cleaning for example, transforming the data and
326
- * whatever. Another use case is when you want to return deeply nested recursive data.
327
- * The schema maps to itself.
328
- *
329
- * @example
330
- * ```typescript
331
- * import * as p from '@palmares/schemas';
332
- *
333
- * const recursiveSchema = p.object({
334
- * id: p.number().optional(),
335
- * name: p.string(),
336
- * }).toRepresentation(async (value) => {
337
- * return {
338
- * id: value.id,
339
- * name: value.name,
340
- * children: await Promise.all(value.children.map(async (child) => await recursiveSchema.data(child)))
341
- * }
342
- * });
343
- *
344
- * const data = await recursiveSchema.data({
345
- * id: 1,
346
- * name: 'John Doe',
347
- * });
348
- * ```
349
- *
350
- * @example
351
- * ```
352
- * import * as p from '@palmares/schemas';
353
- *
354
- * const colorToRGBSchema = p.string().toRepresentation(async (value) => {
355
- * switch (value) {
356
- * case 'red': return { r: 255, g: 0, b: 0 };
357
- * case 'green': return { r: 0, g: 255, b: 0 };
358
- * case 'blue': return { r: 0, g: 0, b: 255 };
359
- * default: return { r: 0, g: 0, b: 0 };
360
- * }
361
- * });
362
- * ```
363
- * @param toRepresentationCallback - The callback that will be called to transform the value to the representation.
364
- *
365
- * @returns The schema with a new return type
366
- */ toRepresentation(toRepresentationCallback) {
367
- return super.toRepresentation(toRepresentationCallback);
368
- }
369
- /**
370
- * This function is used to transform the value to the internal representation of the schema. This is useful when
371
- * you want to transform the value to a type that the schema adapter can understand. For example, you might want
372
- * to transform a string to a date. This is the function you use.
373
- *
374
- * @example
375
- * ```typescript
376
- * import * as p from '@palmares/schemas';
377
- *
378
- * const dateSchema = p.string().toInternal((value) => {
379
- * return new Date(value);
380
- * });
381
- *
382
- * const date = await dateSchema.parse('2021-01-01');
383
- *
384
- * console.log(date); // Date object
385
- *
386
- * const rgbToColorSchema = p.object({
387
- * r: p.number().min(0).max(255),
388
- * g: p.number().min(0).max(255),
389
- * b: p.number().min(0).max(255),
390
- * }).toInternal(async (value) => {
391
- * if (value.r === 255 && value.g === 0 && value.b === 0) return 'red';
392
- * if (value.r === 0 && value.g === 255 && value.b === 0) return 'green';
393
- * if (value.r === 0 && value.g === 0 && value.b === 255) return 'blue';
394
- * return `rgb(${value.r}, ${value.g}, ${value.b})`;
395
- * });
396
- * ```
397
- *
398
- * @param toInternalCallback - The callback that will be called to transform the value to the internal representation.
399
- *
400
- * @returns The schema with a new return type.
401
- */ toInternal(toInternalCallback) {
402
- return super.toInternal(toInternalCallback);
403
- }
404
- /**
405
- * Called before the validation of the schema. Let's say that you want to validate a date that might receive a string,
406
- * you can convert that string to a date
407
- * here BEFORE the validation. This pretty much transforms the value to a type that the schema adapter can understand.
408
- *
409
- * @example
410
- * ```
411
- * import * as p from '@palmares/schemas';
412
- * import * as z from 'zod';
413
- *
414
- * const customRecordToMapSchema = p.schema().appendSchema(z.map()).toValidate(async (value) => {
415
- * return new Map(value); // Before validating we transform the value to a map.
416
- * });
417
- *
418
- * const { errors, parsed } = await customRecordToMapSchema.parse({ key: 'value' });
419
- * ```
420
- *
421
- * @param toValidateCallback - The callback that will be called to validate the value.
422
- *
423
- * @returns The schema with a new return type.
424
- */ toValidate(toValidateCallback) {
425
- return super.toValidate(toValidateCallback);
426
- }
427
- /**
428
- * Defines a list of numbers that are allowed, it's not a range but the actual numbers that are allowed, it's useful
429
- * when you want to allow only specific set of numbers.
430
- *
431
- * @example
432
- * ```typescript
433
- * import * as p from '@palmares/schema';
434
- *
435
- * const schema = p.number().is([1, 2, 3]);
436
- *
437
- * schema.parse(1); // { errors: [], parsed: 1 }
438
- * schema.parse(2); // { errors: [], parsed: 2 }
439
- * schema.parse(3); // { errors: [], parsed: 3 }
440
- * schema.parse(4); // { errors: [{ code: 'is', message: 'The value should be equal to 1,2,3' }], parsed: 4 }
441
- * ```
442
- *
443
- * @param value - The list of numbers that are allowed
444
- *
445
- * @returns - The schema instance
446
- */ is(value, options) {
447
- this.__is = {
448
- value,
449
- message: typeof options?.message === 'string' ? options.message : `The value should be equal to ${value.join(',')}`
450
- };
451
- return this;
452
- }
453
- /**
454
- * Allows only numbers that are less than the value passed. If you want to allow the number to be equal to the value,
455
- * you can pass the option `inclusive` as `true`.
456
- * Otherwise, it will only allow numbers less than the value.
457
- *
458
- * @example
459
- * ```typescript
460
- * import * as p from '@palmares/schema';
461
- *
462
- * const schema = p.number().max(10);
463
- *
464
- * schema.parse(10); // { errors: [{ code: 'max', message: 'The number should be less than 10' }], parsed: 10 }
465
- * schema.parse(9); // { errors: [], parsed: 9 }
466
- *
467
- * const schema = p.number().max(10, { inclusive: true });
468
- *
469
- * schema.parse(10); // { errors: [], parsed: 10 }
470
- * ```
471
- *
472
- * @param value - The value to compare with the number
473
- * @param options - The options to be passed to the validation
474
- * @param options.inclusive - If you want to allow the number to be equal to the value, you can pass this option
475
- * @param options.message - The message to be returned if the validation fails
476
- *
477
- * @returns - The schema instance
478
- */ max(value, options) {
479
- const inclusive = typeof options?.inclusive === 'boolean' ? options.inclusive : false;
480
- const message = typeof options?.message === 'string' ? options.message : DEFAULT_NUMBER_MAX_EXCEPTION(value, inclusive);
481
- this.__max = {
482
- value,
483
- inclusive,
484
- message
485
- };
486
- return this;
487
- }
488
- /**
489
- * This method will validate if the number is greater than the value passed. If you want to allow the number to be
490
- * equal to the value, you can pass the option `inclusive` as `true`.
491
- * Otherwise, it will only allow numbers greater than the value.
492
- *
493
- * @example
494
- * ```typescript
495
- * import * as p from '@palmares/schema';
496
- *
497
- * const schema = p.number().min(10);
498
- *
499
- * schema.parse(10); // { errors: [], parsed: 10 }
500
- * schema.parse(9); // { errors: [{ code: 'min', message: 'The number should be greater than 10' }], parsed: 9 }
501
- *
502
- * const schema = p.number().min(10, { inclusive: true });
503
- *
504
- * schema.parse(10); // { errors: [], parsed: 10 }
505
- * ```
506
- *
507
- * @param value - The value to compare with the number
508
- * @param options - The options to be passed to the validation
509
- * @param options.inclusive - If you want to allow the number to be equal to the value, you can pass this option
510
- * @param options.message - The message to be returned if the validation fails
511
- *
512
- * @returns - The schema instance
513
- */ min(value, options) {
514
- const inclusive = typeof options?.inclusive === 'boolean' ? options.inclusive : false;
515
- const message = typeof options?.message === 'string' ? options.message : DEFAULT_NUMBER_MIN_EXCEPTION(value, inclusive);
516
- this.__min = {
517
- value,
518
- inclusive,
519
- message
520
- };
521
- return this;
522
- }
523
- /**
524
- * This method will validate the number to have the exact number of decimal places. It's usually useful for decimal
525
- * numbers like currencies.
526
- *
527
- * @example
528
- * ```
529
- * const schema = number().decimalPlaces(2);
530
- *
531
- * schema.parse(10.00); // { errors: [], parsed: 10.00}
532
- *
533
- * schema.parse(10.000);
534
- * // { errors: [{ code: 'decimal_places', message: 'The number should have 2 decimal places' }], parsed: 10.000}
535
- * ```
536
- *
537
- * @param value - The number of decimal places.
538
- * @param options - The options.
539
- * @param options.message - The message to show if the validation fails.
540
- *
541
- * @returns The schema so you can chain other methods.
542
- */ decimalPlaces(value, options) {
543
- const message = typeof options?.message === 'string' ? options.message : `The number should have ${value} decimal places`;
544
- this.__decimalPlaces = {
545
- value,
546
- message
547
- };
548
- return this;
549
- }
550
- /**
551
- * This method will validate the number to have at most the number of digits specified. If used in conjunction with
552
- * {@link decimalPlaces}, this number should be bigger than the value of the decimal places.
553
- *
554
- * Think about that
555
- *
556
- * - If you have a number with 2 decimal places, the number 10.00 has 4 digits and 2 decimal places.
557
- * - The number 10.000 has 5 digits and 3 decimal places.
558
- *
559
- * @example
560
- * ```
561
- * const schema = number().maxDigits(4);
562
- *
563
- * schema.parse(10); // { errors: [], parsed: 10}
564
- * schema.parse(100); // { errors: [], parsed: 100}
565
- * schema.parse(1000); // { errors: [], parsed: 1000}
566
- * ```
567
- *
568
- * @param value - The maximum number of digits, counting the digits before and after the decimal point.
569
- * @param options - Custom options for the validation.
570
- * @param options.message - The message to show if the validation fails.
571
- *
572
- * @returns - The schema so you can chain other methods.
573
- */ maxDigits(value, options) {
574
- const message = typeof options?.message === 'string' ? options.message : `The number should have at most ${value} digits`;
575
- this.__maxDigits = {
576
- value,
577
- message
578
- };
579
- return this;
580
- }
581
- /**
582
- * With this method we will validate if the number is an integer. If it's not, we will return an error.
583
- *
584
- * @example
585
- * ```typescript
586
- * import * as p from '@palmares/schema';
587
- *
588
- * const schema = p.number().integer();
589
- *
590
- * schema.parse(10); // { errors: [], parsed: 10 }
591
- * schema.parse(10.1); // { errors: [{ code: 'integer', message: 'The number should be an integer' }], parsed: 10.1 }
592
- * ```
593
- *
594
- * @param options - The options to be passed to the validation
595
- * @param options.message - The message to be returned if the validation fails
596
- *
597
- * @returns - The schema instance
598
- */ integer(options) {
599
- const message = typeof options?.message === 'string' ? options.message : DEFAULT_NUMBER_INTEGER_EXCEPTION();
600
- this.__integer = {
601
- message
602
- };
603
- return this;
604
- }
605
- static new() {
606
- const returnValue = new NumberSchema();
607
- return returnValue;
608
- }
609
- }
610
- export const number = ()=>NumberSchema.new();