@palmares/schemas 0.0.1 → 0.1.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 (174) hide show
  1. package/.turbo/turbo-build$colon$watch.log +12 -410
  2. package/CHANGELOG.md +17 -0
  3. package/__tests__/.drizzle/migrations/0000_skinny_harrier.sql +22 -0
  4. package/__tests__/.drizzle/migrations/meta/0000_snapshot.json +156 -0
  5. package/__tests__/.drizzle/migrations/meta/_journal.json +13 -0
  6. package/__tests__/.drizzle/schema.ts +35 -0
  7. package/__tests__/drizzle.config.ts +11 -0
  8. package/__tests__/eslint.config.js +10 -0
  9. package/__tests__/manage.ts +5 -0
  10. package/__tests__/node_modules/.bin/drizzle-kit +17 -0
  11. package/__tests__/node_modules/.bin/esbuild +14 -0
  12. package/__tests__/node_modules/.bin/tsc +17 -0
  13. package/__tests__/node_modules/.bin/tsserver +17 -0
  14. package/__tests__/node_modules/.bin/tsx +17 -0
  15. package/__tests__/package.json +36 -0
  16. package/__tests__/sqlite.db +0 -0
  17. package/__tests__/src/core/array.test.ts +130 -0
  18. package/__tests__/src/core/boolean.test.ts +66 -0
  19. package/__tests__/src/core/datetime.test.ts +102 -0
  20. package/__tests__/src/core/index.ts +35 -0
  21. package/__tests__/src/core/model.test.ts +260 -0
  22. package/__tests__/src/core/models.ts +50 -0
  23. package/__tests__/src/core/numbers.test.ts +177 -0
  24. package/__tests__/src/core/object.test.ts +198 -0
  25. package/__tests__/src/core/string.test.ts +222 -0
  26. package/__tests__/src/core/test.test.ts +59 -0
  27. package/__tests__/src/core/types.test.ts +97 -0
  28. package/__tests__/src/core/union.test.ts +99 -0
  29. package/__tests__/src/settings.ts +71 -0
  30. package/__tests__/tsconfig.json +11 -0
  31. package/dist/cjs/src/adapter/fields/index.js +2 -2
  32. package/dist/cjs/src/adapter/fields/object.js +9 -0
  33. package/dist/cjs/src/adapter/index.js +1 -0
  34. package/dist/cjs/src/constants.js +1 -7
  35. package/dist/cjs/src/domain.js +146 -1
  36. package/dist/cjs/src/index.js +69 -74
  37. package/dist/cjs/src/model.js +206 -206
  38. package/dist/cjs/src/schema/array.js +185 -58
  39. package/dist/cjs/src/schema/boolean.js +105 -44
  40. package/dist/cjs/src/schema/datetime.js +104 -38
  41. package/dist/cjs/src/schema/number.js +134 -114
  42. package/dist/cjs/src/schema/object.js +106 -43
  43. package/dist/cjs/src/schema/schema.js +123 -75
  44. package/dist/cjs/src/schema/string.js +152 -58
  45. package/dist/cjs/src/schema/union.js +412 -290
  46. package/dist/cjs/src/utils.js +42 -15
  47. package/dist/cjs/src/validators/array.js +6 -1
  48. package/dist/cjs/src/validators/boolean.js +2 -0
  49. package/dist/cjs/src/validators/datetime.js +4 -0
  50. package/dist/cjs/src/validators/number.js +12 -40
  51. package/dist/cjs/src/validators/object.js +1 -0
  52. package/dist/cjs/src/validators/schema.js +5 -1
  53. package/dist/cjs/src/validators/string.js +30 -2
  54. package/dist/cjs/src/validators/union.js +5 -4
  55. package/dist/cjs/src/validators/utils.js +99 -27
  56. package/dist/cjs/tsconfig.types.tsbuildinfo +1 -1
  57. package/dist/cjs/types/adapter/fields/array.d.ts +2 -2
  58. package/dist/cjs/types/adapter/fields/array.d.ts.map +1 -1
  59. package/dist/cjs/types/adapter/fields/boolean.d.ts.map +1 -1
  60. package/dist/cjs/types/adapter/fields/datetime.d.ts.map +1 -1
  61. package/dist/cjs/types/adapter/fields/index.d.ts +2 -2
  62. package/dist/cjs/types/adapter/fields/index.d.ts.map +1 -1
  63. package/dist/cjs/types/adapter/fields/number.d.ts.map +1 -1
  64. package/dist/cjs/types/adapter/fields/object.d.ts +2 -1
  65. package/dist/cjs/types/adapter/fields/object.d.ts.map +1 -1
  66. package/dist/cjs/types/adapter/fields/string.d.ts.map +1 -1
  67. package/dist/cjs/types/adapter/fields/union.d.ts.map +1 -1
  68. package/dist/cjs/types/adapter/index.d.ts +1 -0
  69. package/dist/cjs/types/adapter/index.d.ts.map +1 -1
  70. package/dist/cjs/types/adapter/types.d.ts +28 -18
  71. package/dist/cjs/types/adapter/types.d.ts.map +1 -1
  72. package/dist/cjs/types/constants.d.ts +0 -1
  73. package/dist/cjs/types/constants.d.ts.map +1 -1
  74. package/dist/cjs/types/domain.d.ts +5 -4
  75. package/dist/cjs/types/domain.d.ts.map +1 -1
  76. package/dist/cjs/types/index.d.ts +78 -55
  77. package/dist/cjs/types/index.d.ts.map +1 -1
  78. package/dist/cjs/types/model.d.ts +17 -17
  79. package/dist/cjs/types/model.d.ts.map +1 -1
  80. package/dist/cjs/types/schema/array.d.ts +168 -47
  81. package/dist/cjs/types/schema/array.d.ts.map +1 -1
  82. package/dist/cjs/types/schema/boolean.d.ts +103 -44
  83. package/dist/cjs/types/schema/boolean.d.ts.map +1 -1
  84. package/dist/cjs/types/schema/datetime.d.ts +90 -30
  85. package/dist/cjs/types/schema/datetime.d.ts.map +1 -1
  86. package/dist/cjs/types/schema/number.d.ts +133 -125
  87. package/dist/cjs/types/schema/number.d.ts.map +1 -1
  88. package/dist/cjs/types/schema/object.d.ts +104 -35
  89. package/dist/cjs/types/schema/object.d.ts.map +1 -1
  90. package/dist/cjs/types/schema/schema.d.ts +62 -44
  91. package/dist/cjs/types/schema/schema.d.ts.map +1 -1
  92. package/dist/cjs/types/schema/string.d.ts +152 -65
  93. package/dist/cjs/types/schema/string.d.ts.map +1 -1
  94. package/dist/cjs/types/schema/types.d.ts +11 -2
  95. package/dist/cjs/types/schema/types.d.ts.map +1 -1
  96. package/dist/cjs/types/schema/union.d.ts +133 -40
  97. package/dist/cjs/types/schema/union.d.ts.map +1 -1
  98. package/dist/cjs/types/types.d.ts +35 -0
  99. package/dist/cjs/types/types.d.ts.map +1 -1
  100. package/dist/cjs/types/utils.d.ts +41 -27
  101. package/dist/cjs/types/utils.d.ts.map +1 -1
  102. package/dist/cjs/types/validators/array.d.ts.map +1 -1
  103. package/dist/cjs/types/validators/boolean.d.ts.map +1 -1
  104. package/dist/cjs/types/validators/datetime.d.ts.map +1 -1
  105. package/dist/cjs/types/validators/number.d.ts +5 -6
  106. package/dist/cjs/types/validators/number.d.ts.map +1 -1
  107. package/dist/cjs/types/validators/object.d.ts.map +1 -1
  108. package/dist/cjs/types/validators/schema.d.ts +2 -2
  109. package/dist/cjs/types/validators/schema.d.ts.map +1 -1
  110. package/dist/cjs/types/validators/string.d.ts +9 -9
  111. package/dist/cjs/types/validators/string.d.ts.map +1 -1
  112. package/dist/cjs/types/validators/utils.d.ts +44 -27
  113. package/dist/cjs/types/validators/utils.d.ts.map +1 -1
  114. package/dist/esm/src/adapter/fields/index.js +2 -2
  115. package/dist/esm/src/adapter/fields/object.js +6 -0
  116. package/dist/esm/src/adapter/index.js +1 -0
  117. package/dist/esm/src/constants.js +1 -2
  118. package/dist/esm/src/domain.js +11 -1
  119. package/dist/esm/src/index.js +38 -73
  120. package/dist/esm/src/model.js +83 -78
  121. package/dist/esm/src/schema/array.js +136 -54
  122. package/dist/esm/src/schema/boolean.js +98 -44
  123. package/dist/esm/src/schema/datetime.js +91 -38
  124. package/dist/esm/src/schema/number.js +127 -110
  125. package/dist/esm/src/schema/object.js +98 -43
  126. package/dist/esm/src/schema/schema.js +102 -67
  127. package/dist/esm/src/schema/string.js +147 -59
  128. package/dist/esm/src/schema/union.js +119 -40
  129. package/dist/esm/src/types.js +14 -1
  130. package/dist/esm/src/utils.js +56 -27
  131. package/dist/esm/src/validators/array.js +6 -1
  132. package/dist/esm/src/validators/boolean.js +2 -0
  133. package/dist/esm/src/validators/datetime.js +4 -0
  134. package/dist/esm/src/validators/number.js +9 -23
  135. package/dist/esm/src/validators/object.js +1 -0
  136. package/dist/esm/src/validators/schema.js +5 -1
  137. package/dist/esm/src/validators/string.js +30 -2
  138. package/dist/esm/src/validators/union.js +5 -4
  139. package/dist/esm/src/validators/utils.js +62 -36
  140. package/package.json +3 -3
  141. package/src/adapter/fields/array.ts +2 -2
  142. package/src/adapter/fields/boolean.ts +3 -8
  143. package/src/adapter/fields/datetime.ts +3 -9
  144. package/src/adapter/fields/index.ts +11 -11
  145. package/src/adapter/fields/number.ts +3 -9
  146. package/src/adapter/fields/object.ts +13 -10
  147. package/src/adapter/fields/string.ts +3 -9
  148. package/src/adapter/fields/union.ts +3 -9
  149. package/src/adapter/index.ts +1 -0
  150. package/src/adapter/types.ts +60 -45
  151. package/src/constants.ts +1 -3
  152. package/src/domain.ts +15 -1
  153. package/src/index.ts +189 -211
  154. package/src/model.ts +119 -115
  155. package/src/schema/array.ts +274 -90
  156. package/src/schema/boolean.ts +145 -60
  157. package/src/schema/datetime.ts +133 -49
  158. package/src/schema/number.ts +210 -173
  159. package/src/schema/object.ts +167 -74
  160. package/src/schema/schema.ts +205 -126
  161. package/src/schema/string.ts +221 -94
  162. package/src/schema/types.ts +44 -16
  163. package/src/schema/union.ts +193 -68
  164. package/src/types.ts +53 -0
  165. package/src/utils.ts +115 -57
  166. package/src/validators/array.ts +46 -27
  167. package/src/validators/boolean.ts +13 -7
  168. package/src/validators/datetime.ts +24 -16
  169. package/src/validators/number.ts +53 -63
  170. package/src/validators/object.ts +6 -5
  171. package/src/validators/schema.ts +33 -25
  172. package/src/validators/string.ts +122 -59
  173. package/src/validators/union.ts +8 -8
  174. package/src/validators/utils.ts +67 -42
@@ -1,5 +1,4 @@
1
1
  import Schema from './schema';
2
- import { getDefaultAdapter } from '../conf';
3
2
  import { defaultTransform, defaultTransformToAdapter } from '../utils';
4
3
  import { above, allowStringParser, below, datetimeValidation } from '../validators/datetime';
5
4
  import { nullable, optional } from '../validators/schema';
@@ -20,7 +19,7 @@ export default class DatetimeSchema<
20
19
  representation: string;
21
20
  validate: Date;
22
21
  },
23
- TDefinitions extends DefinitionsOfSchemaType = DefinitionsOfSchemaType,
22
+ TDefinitions extends DefinitionsOfSchemaType = DefinitionsOfSchemaType
24
23
  > extends Schema<TType, TDefinitions> {
25
24
  protected __allowString!: boolean;
26
25
 
@@ -35,6 +34,21 @@ export default class DatetimeSchema<
35
34
  message: string;
36
35
  };
37
36
 
37
+ protected __type: {
38
+ message: string;
39
+ check: (value: TType['input']) => boolean;
40
+ } = {
41
+ message: 'Invalid type',
42
+ check: (value: any) => {
43
+ if (typeof value === 'string') {
44
+ const valueAsDate = new Date(value);
45
+ if (isNaN(valueAsDate.getTime())) return false;
46
+ return true;
47
+ }
48
+ return value instanceof Date;
49
+ }
50
+ };
51
+
38
52
  protected async __transformToAdapter(options: Parameters<Schema['__transformToAdapter']>[0]): Promise<any> {
39
53
  return defaultTransformToAdapter(
40
54
  async (adapter) => {
@@ -49,9 +63,10 @@ export default class DatetimeSchema<
49
63
  above: this.__above,
50
64
  nullable: this.__nullable,
51
65
  optional: this.__optional,
66
+ type: this.__type,
52
67
  parsers: {
53
68
  nullable: this.__nullable.allow,
54
- optional: this.__optional.allow,
69
+ optional: this.__optional.allow
55
70
  }
56
71
  }),
57
72
  {
@@ -59,16 +74,17 @@ export default class DatetimeSchema<
59
74
  nullable,
60
75
  allowString: allowStringParser,
61
76
  above,
62
- below,
77
+ below
63
78
  },
64
79
  {
65
80
  validatorsIfFallbackOrNotSupported: datetimeValidation(),
66
81
  shouldAddStringVersion: options.shouldAddStringVersion,
67
82
  // eslint-disable-next-line ts/require-await
68
- fallbackIfNotSupported: async () => [],
83
+ fallbackIfNotSupported: async () => []
69
84
  }
70
85
  );
71
86
  },
87
+ this,
72
88
  this.__transformedSchemas,
73
89
  options,
74
90
  'datetime'
@@ -76,7 +92,8 @@ export default class DatetimeSchema<
76
92
  }
77
93
 
78
94
  /**
79
- * This let's you refine the schema with custom validations. This is useful when you want to validate something that is not supported by default by the schema adapter.
95
+ * This let's you refine the schema with custom validations. This is useful when you want to validate something
96
+ * that is not supported by default by the schema adapter.
80
97
  *
81
98
  * @example
82
99
  * ```typescript
@@ -88,7 +105,8 @@ export default class DatetimeSchema<
88
105
  *
89
106
  * const { errors, parsed } = await numberSchema.parse(-1);
90
107
  *
91
- * console.log(errors); // [{ isValid: false, code: 'invalid_number', message: 'The number should be greater than 0', path: [] }]
108
+ * // [{ isValid: false, code: 'invalid_number', message: 'The number should be greater than 0', path: [] }]
109
+ * console.log(errors);
92
110
  * ```
93
111
  *
94
112
  * @param refinementCallback - The callback that will be called to validate the value.
@@ -98,7 +116,13 @@ export default class DatetimeSchema<
98
116
  * @returns The schema.
99
117
  */
100
118
  refine(
101
- refinementCallback: (value: TType['input']) => Promise<void | undefined | { code: string; message: string }> | void | undefined | { code: string; message: string }
119
+ refinementCallback: (
120
+ value: TType['input']
121
+ ) =>
122
+ | Promise<void | undefined | { code: string; message: string }>
123
+ | void
124
+ | undefined
125
+ | { code: string; message: string }
102
126
  ) {
103
127
  return super.refine(refinementCallback) as unknown as DatetimeSchema<
104
128
  {
@@ -107,7 +131,8 @@ export default class DatetimeSchema<
107
131
  internal: TType['internal'];
108
132
  output: TType['output'];
109
133
  representation: TType['representation'];
110
- }, TDefinitions
134
+ },
135
+ TDefinitions
111
136
  >;
112
137
  }
113
138
 
@@ -149,8 +174,36 @@ export default class DatetimeSchema<
149
174
  }
150
175
 
151
176
  /**
152
- * Allows the value to be null and ONLY null. You can also use this function to set a custom message when the value is NULL by setting
153
- * the { message: 'Your custom message', allow: false } on the options.
177
+ * Just adds a message when the value is undefined. It's just a syntax sugar for
178
+ *
179
+ * ```typescript
180
+ * p.datetime().optional({ message: 'This value should be defined', allow: false })
181
+ * ```
182
+ *
183
+ * @param options - The options of nonOptional function
184
+ * @param options.message - A custom message if the value is undefined.
185
+ *
186
+ * @returns - The schema.
187
+ */
188
+ nonOptional(options?: { message: string }) {
189
+ return super.optional({
190
+ message: options?.message,
191
+ allow: false
192
+ }) as unknown as DatetimeSchema<
193
+ {
194
+ input: TType['input'];
195
+ validate: TType['validate'];
196
+ internal: TType['internal'];
197
+ output: TType['output'];
198
+ representation: TType['representation'];
199
+ },
200
+ TDefinitions
201
+ >;
202
+ }
203
+
204
+ /**
205
+ * Allows the value to be null and ONLY null. You can also use this function to set a custom message when the value
206
+ * is NULL by setting the { message: 'Your custom message', allow: false } on the options.
154
207
  *
155
208
  * @example
156
209
  * ```typescript
@@ -187,14 +240,43 @@ export default class DatetimeSchema<
187
240
  }
188
241
 
189
242
  /**
190
- * This method will remove the value from the representation of the schema. If the value is undefined it will keep that way
191
- * otherwise it will set the value to undefined after it's validated.
243
+ * Just adds a message when the value is null. It's just a syntax sugar for
244
+ *
245
+ * ```typescript
246
+ * p.datetime().nullable({ message: 'This value cannot be null', allow: false })
247
+ * ```
248
+ *
249
+ * @param options - The options of nonNullable function
250
+ * @param options.message - A custom message if the value is null.
251
+ *
252
+ * @returns - The schema.
253
+ */
254
+ nonNullable(options?: { message: string }) {
255
+ return super.nullable({
256
+ message: options?.message || '',
257
+ allow: false
258
+ }) as unknown as DatetimeSchema<
259
+ {
260
+ input: TType['input'];
261
+ validate: TType['validate'];
262
+ internal: TType['internal'];
263
+ output: TType['output'];
264
+ representation: TType['representation'];
265
+ },
266
+ TDefinitions
267
+ >;
268
+ }
269
+
270
+ /**
271
+ * This method will remove the value from the representation of the schema. If the value is undefined it will keep
272
+ * that way otherwise it will set the value to undefined after it's validated.
192
273
  * This is used in conjunction with the {@link data} function, the {@link parse} function or {@link validate}
193
274
  * function. This will remove the value from the representation of the schema.
194
275
  *
195
- * By default, the value will be removed just from the representation, in other words, when you call the {@link data} function.
196
- * But if you want to remove the value from the internal representation, you can pass the argument `toInternal` as true.
197
- * Then if you still want to remove the value from the representation, you will need to pass the argument `toRepresentation` as true as well.
276
+ * By default, the value will be removed just from the representation, in other words, when you call the {@link data}
277
+ * function.But if you want to remove the value from the internal representation, you can pass the argument
278
+ * `toInternal` as true. Then if you still want to remove the value from the representation, you will need to pass
279
+ * the argument `toRepresentation` as true as well.
198
280
  *
199
281
  * @example
200
282
  * ```typescript
@@ -216,16 +298,18 @@ export default class DatetimeSchema<
216
298
  * ```
217
299
  *
218
300
  *
219
- * @param args - By default, the value will be removed just from the representation, in other words, when you call the {@link data} function.
220
- * But if you want to remove the value from the internal representation, you can pass the argument `toInternal` as true.
221
- * Then if you still want to remove the value from the representation, you will need to pass the argument `toRepresentation` as true as well.
301
+ * @param args - By default, the value will be removed just from the representation, in other words, when you call
302
+ * the {@link data} function.
303
+ * But if you want to remove the value from the internal representation, you can pass the argument `toInternal` as
304
+ * true. Then if you still want to remove the value from the representation, you will need to pass the argument
305
+ * `toRepresentation` as true as well.
222
306
  *
223
307
  * @returns The schema.
224
308
  */
225
309
  omit<
226
310
  TToInternal extends boolean,
227
311
  TToRepresentation extends boolean = boolean extends TToInternal ? true : false
228
- >(args?: { toInternal?: TToInternal, toRepresentation?: TToRepresentation }) {
312
+ >(args?: { toInternal?: TToInternal; toRepresentation?: TToRepresentation }) {
229
313
  return super.omit(args) as unknown as DatetimeSchema<
230
314
  {
231
315
  input: TToInternal extends true ? TType['input'] | undefined : TType['input'];
@@ -239,9 +323,9 @@ export default class DatetimeSchema<
239
323
  }
240
324
 
241
325
  /**
242
- * This function is used in conjunction with the {@link validate} function. It's used to save a value to an external source
243
- * like a database. You should always return the schema after you save the value, that way we will always have the correct type
244
- * of the schema after the save operation.
326
+ * This function is used in conjunction with the {@link validate} function. It's used to save a value to an external
327
+ * source like a database. You should always return the schema after you save the value, that way we will always have
328
+ * the correct type of the schema after the save operation.
245
329
  *
246
330
  * You can use the {@link toRepresentation} function to transform and clean the value it returns after the save.
247
331
  *
@@ -295,9 +379,9 @@ export default class DatetimeSchema<
295
379
  >;
296
380
  }
297
381
 
298
-
299
382
  /**
300
- * This function is used to add a default value to the schema. If the value is either undefined or null, the default value will be used.
383
+ * This function is used to add a default value to the schema. If the value is either undefined or null, the default
384
+ * value will be used.
301
385
  *
302
386
  * @example
303
387
  * ```typescript
@@ -326,8 +410,9 @@ export default class DatetimeSchema<
326
410
  }
327
411
 
328
412
  /**
329
- * This function let's you customize the schema your own way. After we translate the schema on the adapter we call this function to let you customize
330
- * the custom schema your own way. Our API does not support passthrough? No problem, you can use this function to customize the zod schema.
413
+ * This function let's you customize the schema your own way. After we translate the schema on the adapter we call
414
+ * this function to let you customize the custom schema your own way. Our API does not support passthrough?
415
+ * No problem, you can use this function to customize the zod schema.
331
416
  *
332
417
  * @example
333
418
  * ```typescript
@@ -339,12 +424,13 @@ export default class DatetimeSchema<
339
424
  *
340
425
  * const { errors, parsed } = await numberSchema.parse(-1);
341
426
  *
342
- * console.log(errors); // [{ isValid: false, code: 'nonnegative', message: 'The number should be nonnegative', path: [] }]
427
+ * // [{ isValid: false, code: 'nonnegative', message: 'The number should be nonnegative', path: [] }]
428
+ * console.log(errors);
343
429
  * ```
344
430
  *
345
431
  * @param callback - The callback that will be called to customize the schema.
346
- * @param toStringCallback - The callback that will be called to transform the schema to a string when you want to compile the underlying schema
347
- * to a string so you can save it for future runs.
432
+ * @param toStringCallback - The callback that will be called to transform the schema to a string when you want to
433
+ * compile the underlying schema to a string so you can save it for future runs.
348
434
  *
349
435
  * @returns The schema.
350
436
  */
@@ -358,8 +444,9 @@ export default class DatetimeSchema<
358
444
  }
359
445
 
360
446
  /**
361
- * This function is used to transform the value to the representation of the schema. When using the {@link data} function. With this function you have full
362
- * control to add data cleaning for example, transforming the data and whatever. Another use case is when you want to return deeply nested recursive data.
447
+ * This function is used to transform the value to the representation of the schema. When using the {@link data}
448
+ * function. With this function you have full control to add data cleaning for example, transforming the data and
449
+ * whatever. Another use case is when you want to return deeply nested recursive data.
363
450
  * The schema maps to itself.
364
451
  *
365
452
  * @example
@@ -416,8 +503,9 @@ export default class DatetimeSchema<
416
503
  }
417
504
 
418
505
  /**
419
- * This function is used to transform the value to the internal representation of the schema. This is useful when you want to transform the value
420
- * to a type that the schema adapter can understand. For example, you might want to transform a string to a date. This is the function you use.
506
+ * This function is used to transform the value to the internal representation of the schema. This is useful when you
507
+ * want to transform the value to a type that the schema adapter can understand. For example, you might want to
508
+ * transform a string to a date. This is the function you use.
421
509
  *
422
510
  * @example
423
511
  * ```typescript
@@ -461,8 +549,9 @@ export default class DatetimeSchema<
461
549
  }
462
550
 
463
551
  /**
464
- * Called before the validation of the schema. Let's say that you want to validate a date that might receive a string, you can convert that string to a date
465
- * here BEFORE the validation. This pretty much transforms the value to a type that the schema adapter can understand.
552
+ * Called before the validation of the schema. Let's say that you want to validate a date that might receive a string,
553
+ * you can convert that string to a date here BEFORE the validation. This pretty much transforms the value to a type
554
+ * that the schema adapter can understand.
466
555
  *
467
556
  * @example
468
557
  * ```
@@ -494,7 +583,8 @@ export default class DatetimeSchema<
494
583
  }
495
584
 
496
585
  /**
497
- * This will allow the value to be a string, it does not validate, it just parses inputs as strings and allows the result to be a string as well.
586
+ * This will allow the value to be a string, it does not validate, it just parses inputs as strings and allows the
587
+ * result to be a string as well.
498
588
  *
499
589
  * @example
500
590
  * ```typescript
@@ -536,7 +626,8 @@ export default class DatetimeSchema<
536
626
  *
537
627
  * @param value - The value that we are comparing against.
538
628
  * @param options - The options that we are passing to the validator.
539
- * @param options.inclusive - If the value is inclusive or not. In other words, if the value can be equal to the specified date.
629
+ * @param options.inclusive - If the value is inclusive or not. In other words, if the value can be equal to
630
+ * the specified date.
540
631
  * @param options.message - The message that we are returning if the value is not above the specified date.
541
632
  *
542
633
  * @returns - The schema instance
@@ -548,7 +639,7 @@ export default class DatetimeSchema<
548
639
  this.__above = {
549
640
  value,
550
641
  inclusive,
551
- message,
642
+ message
552
643
  };
553
644
  return this;
554
645
  }
@@ -569,7 +660,8 @@ export default class DatetimeSchema<
569
660
  *
570
661
  * @param value - The value that we are comparing against.
571
662
  * @param options - The options that we are passing to the validator.
572
- * @param options.inclusive - If the value is inclusive or not. In other words, if the value can be equal to the specified date.
663
+ * @param options.inclusive - If the value is inclusive or not. In other words, if the value can be equal to the
664
+ * specified date.
573
665
  * @param options.message - The message that we are returning if the value is not above the specified date.
574
666
  *
575
667
  * @returns - The schema instance
@@ -581,7 +673,7 @@ export default class DatetimeSchema<
581
673
  this.__below = {
582
674
  value,
583
675
  inclusive,
584
- message,
676
+ message
585
677
  };
586
678
  return this;
587
679
  }
@@ -598,14 +690,6 @@ export default class DatetimeSchema<
598
690
  TDefinitions
599
691
  >();
600
692
 
601
- const adapterInstance = getDefaultAdapter();
602
-
603
- returnValue.__transformedSchemas[adapterInstance.constructor.name] = {
604
- transformed: false,
605
- adapter: adapterInstance,
606
- schemas: [],
607
- };
608
-
609
693
  return returnValue;
610
694
  }
611
695
  }