@ubercode/dcmtk 0.6.3 → 0.6.4

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/servers.js CHANGED
@@ -2307,7 +2307,7 @@ async function dcm2json(inputPath, options) {
2307
2307
  }
2308
2308
  return tryDirectPath(inputPath, timeoutMs, signal, verbosity);
2309
2309
  }
2310
- var TAG_OR_PATH_PATTERN = /^\([0-9A-Fa-f]{4},[0-9A-Fa-f]{4}\)(\[\d+\](\.\([0-9A-Fa-f]{4},[0-9A-Fa-f]{4}\)(\[\d+\])?)*)?$/;
2310
+ var TAG_OR_PATH_PATTERN = /^\([0-9A-Fa-f]{4},[0-9A-Fa-f]{4}\)(\[\d+\])?(\.\([0-9A-Fa-f]{4},[0-9A-Fa-f]{4}\)(\[\d+\])?)*$/;
2311
2311
  var TagModificationSchema = z.object({
2312
2312
  tag: z.string().regex(TAG_OR_PATH_PATTERN),
2313
2313
  value: z.string()