dicom-curate 0.39.1 → 0.40.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/esm/index.js
CHANGED
|
@@ -95226,6 +95226,7 @@ export {
|
|
|
95226
95226
|
curateOne,
|
|
95227
95227
|
extractColumnMappings,
|
|
95228
95228
|
hash,
|
|
95229
|
+
hashStream,
|
|
95229
95230
|
specVersion
|
|
95230
95231
|
};
|
|
95231
95232
|
/*! Bundled license information:
|
package/dist/types/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { specVersion } from './config/specVersion';
|
|
|
8
8
|
export type { Row } from './csvMapping';
|
|
9
9
|
export { csvTextToRows } from './csvMapping';
|
|
10
10
|
export { TCurateOneArgs } from './curateOne';
|
|
11
|
-
export { hash } from './hash';
|
|
11
|
+
export { hash, hashStream } from './hash';
|
|
12
12
|
export type { ProgressCallback } from './mappingWorkerPool';
|
|
13
13
|
export type { OrganizeOptions, TCurationSpecification, TCustomUploader, TMapResults, TProgressMessage, TPs315Options, } from './types';
|
|
14
14
|
declare function curateMany(organizeOptions: OrganizeOptions, onProgress?: ProgressCallback): Promise<TProgressMessageDone>;
|
|
@@ -141416,6 +141416,7 @@
|
|
|
141416
141416
|
exports.curateOne = curateOne;
|
|
141417
141417
|
exports.extractColumnMappings = extractColumnMappings;
|
|
141418
141418
|
exports.hash = hash;
|
|
141419
|
+
exports.hashStream = hashStream;
|
|
141419
141420
|
exports.specVersion = specVersion;
|
|
141420
141421
|
|
|
141421
141422
|
}));
|