pg-mvc-service 2.0.79 → 2.0.80
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.
|
@@ -481,6 +481,7 @@ class RequestType extends ReqResType_1.default {
|
|
|
481
481
|
if (Object.keys(property.item.enums).includes(value.toString()) === false) {
|
|
482
482
|
this.throwInputError("ENUM_32", keys, value);
|
|
483
483
|
}
|
|
484
|
+
console.log(toEnumValue);
|
|
484
485
|
this.setEnum([...keys, i], toEnumValue);
|
|
485
486
|
}
|
|
486
487
|
break;
|
package/package.json
CHANGED
|
@@ -502,6 +502,7 @@ export class RequestType extends ReqResType {
|
|
|
502
502
|
if (Object.keys(property.item.enums).includes(value.toString()) === false) {
|
|
503
503
|
this.throwInputError("ENUM_32", keys, value);
|
|
504
504
|
}
|
|
505
|
+
console.log(toEnumValue);
|
|
505
506
|
this.setEnum([...keys, i], toEnumValue);
|
|
506
507
|
}
|
|
507
508
|
break;
|