@ubercode/dcmtk 0.7.0 → 0.7.1

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/tools.cjs CHANGED
@@ -2330,7 +2330,6 @@ var StorescuOptionsSchema = zod.z.object({
2330
2330
  acseTimeout: zod.z.number().int().positive().optional(),
2331
2331
  dimseTimeout: zod.z.number().int().positive().optional(),
2332
2332
  noHostnameLookup: zod.z.boolean().optional(),
2333
- noUidChecks: zod.z.boolean().optional(),
2334
2333
  proposedTransferSyntax: zod.z.enum([
2335
2334
  "uncompressed",
2336
2335
  "littleEndian",
@@ -2372,9 +2371,6 @@ function pushNetworkArgs3(args, options) {
2372
2371
  function buildArgs34(options) {
2373
2372
  const args = [];
2374
2373
  pushNetworkArgs3(args, options);
2375
- if (options.noUidChecks === true) {
2376
- args.push("--no-uid-checks");
2377
- }
2378
2374
  if (options.callingAETitle !== void 0) {
2379
2375
  args.push("-aet", options.callingAETitle);
2380
2376
  }