@ubercode/dcmtk 0.6.5 → 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
  }
@@ -2415,7 +2411,7 @@ async function storescu(options) {
2415
2411
  if (result.value.exitCode !== 0) {
2416
2412
  return err(createToolError("storescu", args, result.value.exitCode, result.value.stderr));
2417
2413
  }
2418
- return ok({ success: true, stderr: result.value.stderr });
2414
+ return ok({ success: true, stdout: result.value.stdout, stderr: result.value.stderr });
2419
2415
  }
2420
2416
  var QueryModel = {
2421
2417
  WORKLIST: "worklist",