@esb-market-contracts/admin-backend 1.2.8 → 1.2.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 +3 -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.2.8",
4
+ "version": "1.2.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
 
5
6
  declare const AuthenticationLoginSchema: z.ZodObject<{
@@ -31,7 +32,8 @@ declare const AuthenticationSessionSchema: z.ZodObject<{
31
32
  export type AuthenticationSession = z.infer<typeof AuthenticationSessionSchema>;
32
33
  export type AuthenticationLoginRequest = AuthenticationLogin;
33
34
  export type AuthenticationSessionRequest = Record<string, never>;
34
- export type AuthenticationSessionResponse = AuthenticationSession;
35
+ export type AuthenticationSessionResponse = SerializeDates<AuthenticationSession>;
36
+ export type AuthenticationClientSession = AuthenticationSession;
35
37
  export type AuthenticationLogoutRequest = Record<string, never>;
36
38
  export type AuthenticationLogoutResponse = Record<string, never>;
37
39