node-consul-service 1.0.62 → 1.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.
- package/dist/index.cjs.js +2 -0
- package/dist/index.esm.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -19100,6 +19100,7 @@ function applyResolvedValues(item, field, cacheMap) {
|
|
|
19100
19100
|
}
|
|
19101
19101
|
else {
|
|
19102
19102
|
const id = normalizeId(value);
|
|
19103
|
+
console.log("🚀 ~ applyResolvedValues ~ id:", id);
|
|
19103
19104
|
if (cacheMap.has(id))
|
|
19104
19105
|
setValueByPath(item, field, cacheMap.get(id));
|
|
19105
19106
|
}
|
|
@@ -19107,6 +19108,7 @@ function applyResolvedValues(item, field, cacheMap) {
|
|
|
19107
19108
|
else if (Array.isArray(value)) {
|
|
19108
19109
|
setValueByPath(item, field, value.map((id) => {
|
|
19109
19110
|
var _a;
|
|
19111
|
+
console.log("🚀 ~ applyResolvedValues ~ id:", id);
|
|
19110
19112
|
const key = normalizeId(id);
|
|
19111
19113
|
return (_a = cacheMap.get(key)) !== null && _a !== void 0 ? _a : id;
|
|
19112
19114
|
}));
|
package/dist/index.esm.js
CHANGED
|
@@ -19098,6 +19098,7 @@ function applyResolvedValues(item, field, cacheMap) {
|
|
|
19098
19098
|
}
|
|
19099
19099
|
else {
|
|
19100
19100
|
const id = normalizeId(value);
|
|
19101
|
+
console.log("🚀 ~ applyResolvedValues ~ id:", id);
|
|
19101
19102
|
if (cacheMap.has(id))
|
|
19102
19103
|
setValueByPath(item, field, cacheMap.get(id));
|
|
19103
19104
|
}
|
|
@@ -19105,6 +19106,7 @@ function applyResolvedValues(item, field, cacheMap) {
|
|
|
19105
19106
|
else if (Array.isArray(value)) {
|
|
19106
19107
|
setValueByPath(item, field, value.map((id) => {
|
|
19107
19108
|
var _a;
|
|
19109
|
+
console.log("🚀 ~ applyResolvedValues ~ id:", id);
|
|
19108
19110
|
const key = normalizeId(id);
|
|
19109
19111
|
return (_a = cacheMap.get(key)) !== null && _a !== void 0 ? _a : id;
|
|
19110
19112
|
}));
|