@esb-market-contracts/backend 1.0.7 → 1.0.8

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 +4 -4
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.7",
4
+ "version": "1.0.8",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -122,20 +122,20 @@ declare const countrySelectOneQuerySchema: z.ZodObject<{
122
122
  }, z.core.$strict>;
123
123
  declare const countryCreatePayloadSchema: z.ZodObject<{
124
124
  code: z.ZodString;
125
- name: z.ZodRecord<z.ZodEnum<{
125
+ name: z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
126
126
  ka: "ka";
127
127
  en: "en";
128
128
  ru: "ru";
129
- }> & z.core.$partial, z.ZodString>;
129
+ }> & z.core.$partial, z.ZodString>>;
130
130
  flagImage: z.ZodFile;
131
131
  }, z.core.$strict>;
132
132
  declare const countryUpdatePayloadSchema: z.ZodObject<{
133
133
  code: z.ZodString;
134
- name: z.ZodRecord<z.ZodEnum<{
134
+ name: z.ZodPreprocess<z.ZodRecord<z.ZodEnum<{
135
135
  ka: "ka";
136
136
  en: "en";
137
137
  ru: "ru";
138
- }> & z.core.$partial, z.ZodString>;
138
+ }> & z.core.$partial, z.ZodString>>;
139
139
  flagImage: z.ZodOptional<z.ZodFile>;
140
140
  countryId: z.ZodPipe<z.ZodCoercedNumber<unknown>, z.ZodInt>;
141
141
  }, z.core.$strict>;