snap-on-openapi 1.0.23 → 1.0.25

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.
@@ -7,7 +7,6 @@ export const stringDateTimeTransformer = z.union([
7
7
  const output = new Date(Date.parse(input));
8
8
  const outputStr = output.toISOString().replace('T', ' ');
9
9
  const inputStr = input.replace('T', ' ');
10
- console.log(inputStr, outputStr);
11
10
  return inputStr === outputStr;
12
11
  }
13
12
  catch (e) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "snap-on-openapi",
3
3
  "author": "Alex Sarychev",
4
- "version": "1.0.23",
4
+ "version": "1.0.25",
5
5
  "description": "Swiftly build type-checked OpenAPI applications with Zod and TypeScript",
6
6
  "type": "module",
7
7
  "license": "ISC",