@7365admin1/core 2.74.0 → 2.75.0
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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -14472,7 +14472,8 @@ var schemaPlate = Joi36.object({
|
|
|
14472
14472
|
});
|
|
14473
14473
|
var schemaFiles = Joi36.object({
|
|
14474
14474
|
id: Joi36.string().hex().required(),
|
|
14475
|
-
name: Joi36.string().optional().allow(null, "")
|
|
14475
|
+
name: Joi36.string().optional().allow(null, ""),
|
|
14476
|
+
mimeType: Joi36.string().optional().allow(null, "")
|
|
14476
14477
|
});
|
|
14477
14478
|
var schemaApprover = Joi36.object({
|
|
14478
14479
|
id: Joi36.string().hex().required(),
|
|
@@ -14521,6 +14522,9 @@ var schemaUpdatePerson = Joi36.object({
|
|
|
14521
14522
|
email: Joi36.string().email().optional().allow(null, ""),
|
|
14522
14523
|
nric: Joi36.string().optional().allow(null, ""),
|
|
14523
14524
|
remarks: Joi36.string().optional().allow(null, ""),
|
|
14525
|
+
type: Joi36.string().valid(...PERSON_TYPES).optional().allow(null, ""),
|
|
14526
|
+
org: Joi36.string().hex().optional().allow(null, ""),
|
|
14527
|
+
site: Joi36.string().hex().optional().allow(null, ""),
|
|
14524
14528
|
companyName: Joi36.array().items(Joi36.string()).optional().allow(null, ""),
|
|
14525
14529
|
plates: Joi36.array().items(schemaFiles).optional().allow(null, ""),
|
|
14526
14530
|
isOwner: Joi36.boolean().optional().allow(null, ""),
|