@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 +1 -0
- package/enums.js +1 -1
- package/package.json +1 -1
- package/types.d.ts +1 -0
package/api.d.ts
CHANGED
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 = "
|
|
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