@maestro-js/iso-zod 1.0.0-alpha.23 → 1.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -8
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -15,14 +15,14 @@ declare const isoZ: {
15
15
  }, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
16
16
  };
17
17
  declare namespace isoZ {
18
- type instant = ReturnType<typeof isoZ.instant>;
19
- type dateTime = ReturnType<typeof isoZ.dateTime>;
20
- type zonedDateTime = ReturnType<typeof isoZ.zonedDateTime>;
21
- type date = ReturnType<typeof isoZ.date>;
22
- type time = ReturnType<typeof isoZ.time>;
23
- type yearMonth = ReturnType<typeof isoZ.yearMonth>;
24
- type monthDay = ReturnType<typeof isoZ.monthDay>;
25
- type duration = ReturnType<typeof isoZ.duration>;
18
+ type instant = ReturnType<typeof instant>;
19
+ type dateTime = ReturnType<typeof dateTime>;
20
+ type zonedDateTime = ReturnType<typeof zonedDateTime>;
21
+ type date = ReturnType<typeof date>;
22
+ type time = ReturnType<typeof time>;
23
+ type yearMonth = ReturnType<typeof yearMonth>;
24
+ type monthDay = ReturnType<typeof monthDay>;
25
+ type duration = ReturnType<typeof duration>;
26
26
  }
27
27
 
28
28
  export { isoZ };
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "iso-fns": "^2.0.0-alpha.26",
18
18
  "zod": "^4.0.0"
19
19
  },
20
- "version": "1.0.0-alpha.23",
20
+ "version": "1.0.0-alpha.3",
21
21
  "publishConfig": {
22
22
  "access": "restricted"
23
23
  },