node-consul-service 1.0.58 → 1.0.59

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 CHANGED
@@ -19164,7 +19164,8 @@ async function dataLink(data, schema) {
19164
19164
  }
19165
19165
  for (const item of result) {
19166
19166
  const value = getValueByPath(item, field);
19167
- console.log("🚀 ~ dataLink ~ value:", value);
19167
+ if (!value)
19168
+ continue;
19168
19169
  if (typeof value === "string") {
19169
19170
  if (value.includes(",")) {
19170
19171
  const ids = value.split(",").map((v) => normalizeId(v.trim()));
package/dist/index.esm.js CHANGED
@@ -19162,7 +19162,8 @@ async function dataLink(data, schema) {
19162
19162
  }
19163
19163
  for (const item of result) {
19164
19164
  const value = getValueByPath(item, field);
19165
- console.log("🚀 ~ dataLink ~ value:", value);
19165
+ if (!value)
19166
+ continue;
19166
19167
  if (typeof value === "string") {
19167
19168
  if (value.includes(",")) {
19168
19169
  const ids = value.split(",").map((v) => normalizeId(v.trim()));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-consul-service",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",