expo-backend-types 0.13.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,5 +7,6 @@ export * from './event/exports';
7
7
  export * from './location/exports';
8
8
  export * from './message/exports';
9
9
  export * from './profile/exports';
10
+ export * from './shared/dto-modification/zod-without-dates';
10
11
  export * from './tag-group/exports';
11
12
  export * from './tag/exports';
@@ -23,6 +23,7 @@ __exportStar(require("./event/exports"), exports);
23
23
  __exportStar(require("./location/exports"), exports);
24
24
  __exportStar(require("./message/exports"), exports);
25
25
  __exportStar(require("./profile/exports"), exports);
26
+ __exportStar(require("./shared/dto-modification/zod-without-dates"), exports);
26
27
  __exportStar(require("./tag-group/exports"), exports);
27
28
  __exportStar(require("./tag/exports"), exports);
28
29
  //# sourceMappingURL=exports.js.map
@@ -1,4 +1,4 @@
1
- import { OpenApiZodAny } from '@anatine/zod-openapi';
1
+ import { type OpenApiZodAny } from '@anatine/zod-openapi';
2
2
  import { z, ZodArray, ZodDate, ZodIntersection, ZodNullable, ZodObject, ZodOptional, ZodTypeAny, ZodUnion } from 'zod';
3
3
  export type ReplaceDatesWithStrings<T extends ZodTypeAny> = T extends ZodDate ? ReturnType<typeof z.string> : T extends ZodObject<infer Shape> ? ZodObject<{
4
4
  [k in keyof Shape]: ReplaceDatesWithStrings<Shape[k]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,