pg-mvc-service 2.0.64 → 2.0.65
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.
|
@@ -283,9 +283,7 @@ class RequestType extends ReqResType_1.default {
|
|
|
283
283
|
case 'map':
|
|
284
284
|
case 'map?':
|
|
285
285
|
const mapData = {};
|
|
286
|
-
|
|
287
|
-
console.log('value', key);
|
|
288
|
-
for (const [mapKey, mapValue] of value[key]) {
|
|
286
|
+
for (const [mapKey, mapValue] of value) {
|
|
289
287
|
switch (this.properties[key].mapType) {
|
|
290
288
|
case 'number':
|
|
291
289
|
case 'number?':
|
package/package.json
CHANGED
|
@@ -292,9 +292,7 @@ export class RequestType extends ReqResType {
|
|
|
292
292
|
case 'map':
|
|
293
293
|
case 'map?':
|
|
294
294
|
const mapData: {[key: string]: string | number} = {};
|
|
295
|
-
|
|
296
|
-
console.log('value', key);
|
|
297
|
-
for (const [mapKey, mapValue] of value[key]) {
|
|
295
|
+
for (const [mapKey, mapValue] of value) {
|
|
298
296
|
switch (this.properties[key].mapType) {
|
|
299
297
|
case 'number':
|
|
300
298
|
case 'number?':
|