@esb-market-contracts/admin-backend 1.5.8 → 1.5.9

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/package.json +1 -1
  2. package/types.d.ts +2 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/admin-backend",
3
3
  "description": "Shared TypeScript contract definitions for admin-backend.",
4
- "version": "1.5.8",
4
+ "version": "1.5.9",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  // Generated by dts-bundle-generator v9.5.1
2
2
 
3
+ import { SerializeDates } from '@kalutskii/foundation';
3
4
  import z from 'zod';
4
5
  import { z } from 'zod';
5
6
 
@@ -57,7 +58,7 @@ declare const createEmployeeRequestSchema: z.ZodObject<{
57
58
  }>>;
58
59
  }, z.core.$strip>;
59
60
  export type GetEmployeeRequest = z.infer<typeof getEmployeeRequestSchema>;
60
- export type SafeEmployeeResponse = z.infer<typeof safeEmployeeResponseSchema>;
61
+ export type SafeEmployeeResponse = SerializeDates<z.infer<typeof safeEmployeeResponseSchema>>;
61
62
  export type CreateEmployeeRequest = z.infer<typeof createEmployeeRequestSchema>;
62
63
 
63
64
  export {};