@opencrvs/toolkit 1.8.1-rc.be16155 → 1.8.1-rc.facd84c
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/dist/events/index.js +2 -2
- package/package.json +1 -1
package/dist/events/index.js
CHANGED
@@ -606,8 +606,8 @@ var UrbanAddressUpdateValue = AdminStructure.extend({
|
|
606
606
|
zipCode: import_zod5.z.string().nullish()
|
607
607
|
});
|
608
608
|
var NameFieldValue = import_zod5.z.object({
|
609
|
-
firstname: import_zod5.z.string(),
|
610
|
-
surname: import_zod5.z.string(),
|
609
|
+
firstname: import_zod5.z.string().min(1),
|
610
|
+
surname: import_zod5.z.string().min(1),
|
611
611
|
middlename: import_zod5.z.string().optional()
|
612
612
|
});
|
613
613
|
var NameFieldUpdateValue = import_zod5.z.object({
|