@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.cjs CHANGED
@@ -2333,7 +2333,7 @@ async function dcm2json(inputPath, options) {
2333
2333
  }
2334
2334
  return tryDirectPath(inputPath, timeoutMs, signal, verbosity);
2335
2335
  }
2336
- 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+\])?)*)?$/;
2336
+ 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+\])?)*$/;
2337
2337
  var TagModificationSchema = zod.z.object({
2338
2338
  tag: zod.z.string().regex(TAG_OR_PATH_PATTERN),
2339
2339
  value: zod.z.string()