@esb-market-contracts/backend 1.0.5 → 1.0.6

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 (3) hide show
  1. package/api.d.ts +4 -0
  2. package/package.json +1 -1
  3. package/types.d.ts +2 -0
package/api.d.ts CHANGED
@@ -129,6 +129,8 @@ declare const countriesRouter: import("hono/hono-base").HonoBase<{
129
129
  code: string;
130
130
  name: Partial<Record<"ka" | "en" | "ru", string>>;
131
131
  flagImageUrl: string;
132
+ updatedAt: Date | null;
133
+ createdAt: Date;
132
134
  };
133
135
  }>;
134
136
  outputFormat: "json";
@@ -171,6 +173,8 @@ declare const countriesRouter: import("hono/hono-base").HonoBase<{
171
173
  code: string;
172
174
  name: Partial<Record<"ka" | "en" | "ru", string>>;
173
175
  flagImageUrl: string;
176
+ updatedAt: Date | null;
177
+ createdAt: Date;
174
178
  }[];
175
179
  total: number;
176
180
  }>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/backend",
3
3
  "description": "Shared TypeScript contract definitions for backend.",
4
- "version": "1.0.5",
4
+ "version": "1.0.6",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -99,6 +99,8 @@ declare const countrySchema: z.ZodObject<{
99
99
  ru: "ru";
100
100
  }> & z.core.$partial, z.ZodString>;
101
101
  flagImageUrl: z.ZodString;
102
+ updatedAt: z.ZodNullable<z.ZodDate>;
103
+ createdAt: z.ZodDate;
102
104
  }, z.core.$strip>;
103
105
  export type Country = z.infer<typeof countrySchema>;
104
106
  declare const countrySearchOptionsSchema: z.ZodObject<{