@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.cjs
CHANGED
|
@@ -33257,7 +33257,6 @@ var StorescuOptionsSchema = zod.z.object({
|
|
|
33257
33257
|
acseTimeout: zod.z.number().int().positive().optional(),
|
|
33258
33258
|
dimseTimeout: zod.z.number().int().positive().optional(),
|
|
33259
33259
|
noHostnameLookup: zod.z.boolean().optional(),
|
|
33260
|
-
noUidChecks: zod.z.boolean().optional(),
|
|
33261
33260
|
proposedTransferSyntax: zod.z.enum([
|
|
33262
33261
|
"uncompressed",
|
|
33263
33262
|
"littleEndian",
|
|
@@ -33299,9 +33298,6 @@ function pushNetworkArgs3(args, options) {
|
|
|
33299
33298
|
function buildArgs34(options) {
|
|
33300
33299
|
const args = [];
|
|
33301
33300
|
pushNetworkArgs3(args, options);
|
|
33302
|
-
if (options.noUidChecks === true) {
|
|
33303
|
-
args.push("--no-uid-checks");
|
|
33304
|
-
}
|
|
33305
33301
|
if (options.callingAETitle !== void 0) {
|
|
33306
33302
|
args.push("-aet", options.callingAETitle);
|
|
33307
33303
|
}
|
|
@@ -36892,7 +36888,6 @@ var DicomSenderOptionsSchema = zod.z.object({
|
|
|
36892
36888
|
acseTimeout: zod.z.number().int().positive().optional(),
|
|
36893
36889
|
dimseTimeout: zod.z.number().int().positive().optional(),
|
|
36894
36890
|
noHostnameLookup: zod.z.boolean().optional(),
|
|
36895
|
-
noUidChecks: zod.z.boolean().optional(),
|
|
36896
36891
|
verbosity: zod.z.enum(["verbose", "debug"]).optional(),
|
|
36897
36892
|
signal: zod.z.instanceof(AbortSignal).optional()
|
|
36898
36893
|
}).strict();
|
|
@@ -37272,7 +37267,6 @@ var DicomSender = class _DicomSender extends events.EventEmitter {
|
|
|
37272
37267
|
acseTimeout: this.options.acseTimeout,
|
|
37273
37268
|
dimseTimeout: this.options.dimseTimeout,
|
|
37274
37269
|
noHostnameLookup: this.options.noHostnameLookup,
|
|
37275
|
-
noUidChecks: this.options.noUidChecks,
|
|
37276
37270
|
verbosity: this.options.verbosity,
|
|
37277
37271
|
timeoutMs: entry.timeoutMs,
|
|
37278
37272
|
signal: this.options.signal
|