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