node-consul-service 1.0.59 → 1.0.60
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 +1 -0
- package/dist/index.esm.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -19166,6 +19166,7 @@ async function dataLink(data, schema) {
|
|
|
19166
19166
|
const value = getValueByPath(item, field);
|
|
19167
19167
|
if (!value)
|
|
19168
19168
|
continue;
|
|
19169
|
+
console.log("🚀 ~ dataLink ~ value:", value);
|
|
19169
19170
|
if (typeof value === "string") {
|
|
19170
19171
|
if (value.includes(",")) {
|
|
19171
19172
|
const ids = value.split(",").map((v) => normalizeId(v.trim()));
|
package/dist/index.esm.js
CHANGED
|
@@ -19164,6 +19164,7 @@ async function dataLink(data, schema) {
|
|
|
19164
19164
|
const value = getValueByPath(item, field);
|
|
19165
19165
|
if (!value)
|
|
19166
19166
|
continue;
|
|
19167
|
+
console.log("🚀 ~ dataLink ~ value:", value);
|
|
19167
19168
|
if (typeof value === "string") {
|
|
19168
19169
|
if (value.includes(",")) {
|
|
19169
19170
|
const ids = value.split(",").map((v) => normalizeId(v.trim()));
|