@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/index.cjs +0 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -2
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -6
- package/dist/index.js.map +1 -1
- package/dist/tools.cjs +0 -4
- package/dist/tools.cjs.map +1 -1
- package/dist/tools.d.cts +0 -2
- package/dist/tools.d.ts +0 -2
- package/dist/tools.js +0 -4
- package/dist/tools.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -289,8 +289,6 @@ interface DicomSenderOptions {
|
|
|
289
289
|
readonly dimseTimeout?: number | undefined;
|
|
290
290
|
/** Disable DNS hostname lookup (passed through to storescu `-nh`). Useful in containerized environments. */
|
|
291
291
|
readonly noHostnameLookup?: boolean | undefined;
|
|
292
|
-
/** Disable UID validity checking (passed through to storescu `--no-uid-checks`). */
|
|
293
|
-
readonly noUidChecks?: boolean | undefined;
|
|
294
292
|
/** Verbosity level for diagnostic output. `'verbose'` maps to `-v`, `'debug'` maps to `-d`. */
|
|
295
293
|
readonly verbosity?: 'verbose' | 'debug' | undefined;
|
|
296
294
|
/** AbortSignal for external cancellation. */
|
package/dist/index.d.ts
CHANGED
|
@@ -289,8 +289,6 @@ interface DicomSenderOptions {
|
|
|
289
289
|
readonly dimseTimeout?: number | undefined;
|
|
290
290
|
/** Disable DNS hostname lookup (passed through to storescu `-nh`). Useful in containerized environments. */
|
|
291
291
|
readonly noHostnameLookup?: boolean | undefined;
|
|
292
|
-
/** Disable UID validity checking (passed through to storescu `--no-uid-checks`). */
|
|
293
|
-
readonly noUidChecks?: boolean | undefined;
|
|
294
292
|
/** Verbosity level for diagnostic output. `'verbose'` maps to `-v`, `'debug'` maps to `-d`. */
|
|
295
293
|
readonly verbosity?: 'verbose' | 'debug' | undefined;
|
|
296
294
|
/** AbortSignal for external cancellation. */
|
package/dist/index.js
CHANGED
|
@@ -33232,7 +33232,6 @@ var StorescuOptionsSchema = z.object({
|
|
|
33232
33232
|
acseTimeout: z.number().int().positive().optional(),
|
|
33233
33233
|
dimseTimeout: z.number().int().positive().optional(),
|
|
33234
33234
|
noHostnameLookup: z.boolean().optional(),
|
|
33235
|
-
noUidChecks: z.boolean().optional(),
|
|
33236
33235
|
proposedTransferSyntax: z.enum([
|
|
33237
33236
|
"uncompressed",
|
|
33238
33237
|
"littleEndian",
|
|
@@ -33274,9 +33273,6 @@ function pushNetworkArgs3(args, options) {
|
|
|
33274
33273
|
function buildArgs34(options) {
|
|
33275
33274
|
const args = [];
|
|
33276
33275
|
pushNetworkArgs3(args, options);
|
|
33277
|
-
if (options.noUidChecks === true) {
|
|
33278
|
-
args.push("--no-uid-checks");
|
|
33279
|
-
}
|
|
33280
33276
|
if (options.callingAETitle !== void 0) {
|
|
33281
33277
|
args.push("-aet", options.callingAETitle);
|
|
33282
33278
|
}
|
|
@@ -36867,7 +36863,6 @@ var DicomSenderOptionsSchema = z.object({
|
|
|
36867
36863
|
acseTimeout: z.number().int().positive().optional(),
|
|
36868
36864
|
dimseTimeout: z.number().int().positive().optional(),
|
|
36869
36865
|
noHostnameLookup: z.boolean().optional(),
|
|
36870
|
-
noUidChecks: z.boolean().optional(),
|
|
36871
36866
|
verbosity: z.enum(["verbose", "debug"]).optional(),
|
|
36872
36867
|
signal: z.instanceof(AbortSignal).optional()
|
|
36873
36868
|
}).strict();
|
|
@@ -37247,7 +37242,6 @@ var DicomSender = class _DicomSender extends EventEmitter {
|
|
|
37247
37242
|
acseTimeout: this.options.acseTimeout,
|
|
37248
37243
|
dimseTimeout: this.options.dimseTimeout,
|
|
37249
37244
|
noHostnameLookup: this.options.noHostnameLookup,
|
|
37250
|
-
noUidChecks: this.options.noUidChecks,
|
|
37251
37245
|
verbosity: this.options.verbosity,
|
|
37252
37246
|
timeoutMs: entry.timeoutMs,
|
|
37253
37247
|
signal: this.options.signal
|