@izara_project/izara-core-library-service-schemas 1.0.105 → 1.0.106
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 +5 -5
- package/src/ValidatorSchema.js +1 -1
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.106",
|
|
4
4
|
"description": "Schemas for the service and objects it controls",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"@aws-sdk/client-apigatewayv2": "^3.943.0",
|
|
26
26
|
"@aws-sdk/client-lambda": "^3.943.0",
|
|
27
27
|
"@aws-sdk/crc64-nvme-crt": "^3.943.0",
|
|
28
|
-
"@izara_project/izara-core-library-core": "^1.0.
|
|
29
|
-
"@izara_project/izara-core-library-external-request": "^1.0.
|
|
28
|
+
"@izara_project/izara-core-library-core": "^1.0.31",
|
|
29
|
+
"@izara_project/izara-core-library-external-request": "^1.0.23",
|
|
30
30
|
"@izara_project/izara-core-library-lambda": "^1.0.6",
|
|
31
31
|
"@izara_project/izara-core-library-logger": "^1.0.8",
|
|
32
|
-
"@izara_project/izara-core-library-s3": "^1.0.
|
|
32
|
+
"@izara_project/izara-core-library-s3": "^1.0.5",
|
|
33
33
|
"@izara_project/izara-shared-core": "^1.0.8",
|
|
34
|
-
"@izara_project/izara-shared-service-schemas": "^1.0.
|
|
34
|
+
"@izara_project/izara-shared-service-schemas": "^1.0.35",
|
|
35
35
|
"glob": "^13.0.0",
|
|
36
36
|
"lodash": "^4.17.21",
|
|
37
37
|
"read-yaml-file": "^2.1.0"
|
package/src/ValidatorSchema.js
CHANGED
|
@@ -1259,7 +1259,7 @@ async function validateLocalSchema(_izContext, schemasPath, serviceConfigPath) {
|
|
|
1259
1259
|
validateStatus.validateErrors.push(errors);
|
|
1260
1260
|
}
|
|
1261
1261
|
|
|
1262
|
-
if (flowSchema.statusType !== none) {
|
|
1262
|
+
if (flowSchema.statusType !== "none") {
|
|
1263
1263
|
if (!flowSchema.hasOwnProperty("objType")) {
|
|
1264
1264
|
validateStatus.status = false;
|
|
1265
1265
|
validateStatus.validateErrors.push(`flowSchema ${flowSchema.flowTag} must have objType`)
|