@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.d.cts CHANGED
@@ -1467,8 +1467,6 @@ interface StorescuOptions extends ToolBaseOptions {
1467
1467
  readonly dimseTimeout?: number | undefined;
1468
1468
  /** Disable hostname lookup for incoming associations. Maps to `-nh`. */
1469
1469
  readonly noHostnameLookup?: boolean | undefined;
1470
- /** Disable UID validity checking. Maps to `--no-uid-checks`. */
1471
- readonly noUidChecks?: boolean | undefined;
1472
1470
  }
1473
1471
  /** Result of a successful C-STORE send. */
1474
1472
  interface StorescuResult {
package/dist/tools.d.ts CHANGED
@@ -1467,8 +1467,6 @@ interface StorescuOptions extends ToolBaseOptions {
1467
1467
  readonly dimseTimeout?: number | undefined;
1468
1468
  /** Disable hostname lookup for incoming associations. Maps to `-nh`. */
1469
1469
  readonly noHostnameLookup?: boolean | undefined;
1470
- /** Disable UID validity checking. Maps to `--no-uid-checks`. */
1471
- readonly noUidChecks?: boolean | undefined;
1472
1470
  }
1473
1471
  /** Result of a successful C-STORE send. */
1474
1472
  interface StorescuResult {
package/dist/tools.js CHANGED
@@ -2324,7 +2324,6 @@ var StorescuOptionsSchema = z.object({
2324
2324
  acseTimeout: z.number().int().positive().optional(),
2325
2325
  dimseTimeout: z.number().int().positive().optional(),
2326
2326
  noHostnameLookup: z.boolean().optional(),
2327
- noUidChecks: z.boolean().optional(),
2328
2327
  proposedTransferSyntax: z.enum([
2329
2328
  "uncompressed",
2330
2329
  "littleEndian",
@@ -2366,9 +2365,6 @@ function pushNetworkArgs3(args, options) {
2366
2365
  function buildArgs34(options) {
2367
2366
  const args = [];
2368
2367
  pushNetworkArgs3(args, options);
2369
- if (options.noUidChecks === true) {
2370
- args.push("--no-uid-checks");
2371
- }
2372
2368
  if (options.callingAETitle !== void 0) {
2373
2369
  args.push("-aet", options.callingAETitle);
2374
2370
  }