pg-mvc-service 2.0.76 → 2.0.77

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.
@@ -323,6 +323,7 @@ class RequestType extends ReqResType_1.default {
323
323
  switch (typeof mapValue) {
324
324
  case 'boolean':
325
325
  mapData[mapKey] = mapValue;
326
+ break;
326
327
  case 'number':
327
328
  if (mapValue !== 0 && mapValue !== 1) {
328
329
  this.throwInputError("MAP_03", [key], mapValue);
@@ -481,6 +482,7 @@ class RequestType extends ReqResType_1.default {
481
482
  switch (typeof mapValue) {
482
483
  case 'boolean':
483
484
  mapData[mapKey] = mapValue;
485
+ break;
484
486
  case 'number':
485
487
  if (mapValue !== 0 && mapValue !== 1) {
486
488
  this.throwInputError("MAP_33", keys, mapValue);
@@ -611,6 +613,7 @@ class RequestType extends ReqResType_1.default {
611
613
  switch (typeof mapValue) {
612
614
  case 'boolean':
613
615
  mapData[mapKey] = mapValue;
616
+ break;
614
617
  case 'number':
615
618
  if (mapValue !== 0 && mapValue !== 1) {
616
619
  this.throwInputError("MAP_13", keys, mapValue);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-mvc-service",
3
- "version": "2.0.76",
3
+ "version": "2.0.77",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/n-daira/npm-pack_mvc-service#readme",
6
6
  "bugs": {
@@ -334,6 +334,7 @@ export class RequestType extends ReqResType {
334
334
  switch (typeof mapValue) {
335
335
  case 'boolean':
336
336
  mapData[mapKey] = mapValue;
337
+ break;
337
338
  case 'number':
338
339
  if (mapValue !== 0 && mapValue !== 1) {
339
340
  this.throwInputError("MAP_03", [key], mapValue);
@@ -501,6 +502,7 @@ export class RequestType extends ReqResType {
501
502
  switch (typeof mapValue) {
502
503
  case 'boolean':
503
504
  mapData[mapKey] = mapValue;
505
+ break;
504
506
  case 'number':
505
507
  if (mapValue !== 0 && mapValue !== 1) {
506
508
  this.throwInputError("MAP_33", keys, mapValue);
@@ -635,6 +637,7 @@ export class RequestType extends ReqResType {
635
637
  switch (typeof mapValue) {
636
638
  case 'boolean':
637
639
  mapData[mapKey] = mapValue;
640
+ break;
638
641
  case 'number':
639
642
  if (mapValue !== 0 && mapValue !== 1) {
640
643
  this.throwInputError("MAP_13", keys, mapValue);