@esb-market-contracts/backend 1.0.25 → 1.0.26

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.
package/api.d.ts CHANGED
@@ -583,6 +583,7 @@ declare const exchangeRatesRouter: import("hono/hono-base").HonoBase<{
583
583
  id: number;
584
584
  code: string;
585
585
  name: string;
586
+ sortOrder: number;
586
587
  }[];
587
588
  }>;
588
589
  outputFormat: "json";
package/enums.js CHANGED
@@ -6,7 +6,7 @@ var locale = localesRecord;
6
6
 
7
7
  // src/internal/localization/localization.schemas.ts
8
8
  import { z } from "zod";
9
- var AT_LEAST_ONE_LOCALIZED_VALUE_ERROR = "At least one localized value is required";
9
+ var AT_LEAST_ONE_LOCALIZED_VALUE_ERROR = "\u10E8\u10D4\u10D0\u10D5\u10E1\u10D4\u10D7 \u10DB\u10DC\u10D8\u10E8\u10D5\u10DC\u10D4\u10DA\u10DD\u10D1\u10D0 \u10DB\u10D8\u10DC\u10D8\u10DB\u10E3\u10DB \u10D4\u10E0\u10D7 \u10D4\u10DC\u10D0\u10D6\u10D4.";
10
10
  var localizedStringSchema = z.partialRecord(z.enum(localesArray), z.string()).refine((value) => Object.values(value).some((localizedValue) => localizedValue.trim().length > 0), {
11
11
  message: AT_LEAST_ONE_LOCALIZED_VALUE_ERROR
12
12
  });
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.25",
4
+ "version": "1.0.26",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -429,6 +429,7 @@ declare const currencySchema: z.ZodObject<{
429
429
  id: z.ZodInt;
430
430
  code: z.ZodString;
431
431
  name: z.ZodString;
432
+ sortOrder: z.ZodInt;
432
433
  }, z.core.$strip>;
433
434
  type Currency = z.infer<typeof currencySchema>;
434
435
  //#endregion