@ubercode/dcmtk 0.6.5 → 0.7.0
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-D_ew9kha.d.cts → index-AYvUunlI.d.cts} +6 -0
- package/dist/{index-DHsEm87K.d.ts → index-C20fLU5U.d.ts} +6 -0
- package/dist/index.cjs +70 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +36 -2
- package/dist/index.d.ts +36 -2
- package/dist/index.js +70 -22
- package/dist/index.js.map +1 -1
- package/dist/servers.cjs +7 -1
- package/dist/servers.cjs.map +1 -1
- package/dist/servers.d.cts +1 -1
- package/dist/servers.d.ts +1 -1
- package/dist/servers.js +7 -1
- package/dist/servers.js.map +1 -1
- package/dist/tools.cjs +1 -1
- package/dist/tools.cjs.map +1 -1
- package/dist/tools.d.cts +2 -0
- package/dist/tools.d.ts +2 -0
- package/dist/tools.js +1 -1
- package/dist/tools.js.map +1 -1
- package/package.json +1 -1
package/dist/tools.d.cts
CHANGED
|
@@ -1474,6 +1474,8 @@ interface StorescuOptions extends ToolBaseOptions {
|
|
|
1474
1474
|
interface StorescuResult {
|
|
1475
1475
|
/** Whether the store completed successfully. */
|
|
1476
1476
|
readonly success: boolean;
|
|
1477
|
+
/** Raw stdout output for diagnostic info. */
|
|
1478
|
+
readonly stdout: string;
|
|
1477
1479
|
/** Raw stderr output for diagnostic info. */
|
|
1478
1480
|
readonly stderr: string;
|
|
1479
1481
|
}
|
package/dist/tools.d.ts
CHANGED
|
@@ -1474,6 +1474,8 @@ interface StorescuOptions extends ToolBaseOptions {
|
|
|
1474
1474
|
interface StorescuResult {
|
|
1475
1475
|
/** Whether the store completed successfully. */
|
|
1476
1476
|
readonly success: boolean;
|
|
1477
|
+
/** Raw stdout output for diagnostic info. */
|
|
1478
|
+
readonly stdout: string;
|
|
1477
1479
|
/** Raw stderr output for diagnostic info. */
|
|
1478
1480
|
readonly stderr: string;
|
|
1479
1481
|
}
|
package/dist/tools.js
CHANGED
|
@@ -2409,7 +2409,7 @@ async function storescu(options) {
|
|
|
2409
2409
|
if (result.value.exitCode !== 0) {
|
|
2410
2410
|
return err(createToolError("storescu", args, result.value.exitCode, result.value.stderr));
|
|
2411
2411
|
}
|
|
2412
|
-
return ok({ success: true, stderr: result.value.stderr });
|
|
2412
|
+
return ok({ success: true, stdout: result.value.stdout, stderr: result.value.stderr });
|
|
2413
2413
|
}
|
|
2414
2414
|
var QueryModel = {
|
|
2415
2415
|
WORKLIST: "worklist",
|