@izara_project/izara-core-library-service-schemas 1.0.94 → 1.0.96
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/package.json +2 -2
- package/src/Consts.js +2 -1
- package/src/ValidatorSchema.js +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@izara_project/izara-core-library-service-schemas",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.96",
|
|
4
4
|
"description": "Schemas for the service and objects it controls",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@izara_project/izara-core-library-lambda": "^1.0.5",
|
|
31
31
|
"@izara_project/izara-core-library-logger": "^1.0.7",
|
|
32
32
|
"@izara_project/izara-shared-core": "^1.0.2",
|
|
33
|
-
"@izara_project/izara-shared-service-schemas": "^1.0.
|
|
33
|
+
"@izara_project/izara-shared-service-schemas": "^1.0.32",
|
|
34
34
|
"glob": "^11.0.3",
|
|
35
35
|
"lodash": "^4.17.21",
|
|
36
36
|
"object-hash": "^3.0.0",
|
package/src/Consts.js
CHANGED
package/src/ValidatorSchema.js
CHANGED
|
@@ -660,13 +660,13 @@ async function generateValidatorSchemaForUpdate(_izContext, objType, settings =
|
|
|
660
660
|
|
|
661
661
|
// console.debug("versionedDataReturnInFieldsObjInstanceFull::::", versionedDataReturnInFieldsObjInstanceFull);
|
|
662
662
|
// console.debug("initialValidatorSchemaForUpdate:::::", initialValidatorSchemaForUpdate);
|
|
663
|
-
Object.assign(
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
);
|
|
663
|
+
// Object.assign(
|
|
664
|
+
// initialValidatorSchemaForUpdate.properties.objInstanceFull.properties.fields.properties,
|
|
665
|
+
// {
|
|
666
|
+
// ...versionedDataReturnInFieldsObjInstanceFull,
|
|
667
|
+
// ...canUpdateProperties
|
|
668
|
+
// }
|
|
669
|
+
// );
|
|
670
670
|
|
|
671
671
|
// _izContext.logger.debug("validatorSchema-update::", initialValidatorSchemaForUpdate);
|
|
672
672
|
return initialValidatorSchemaForUpdate;
|