@spinajs/http 2.0.448 → 2.0.450
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/lib/cjs/interfaces.d.ts
CHANGED
|
@@ -419,7 +419,7 @@ export interface IUploadOptions {
|
|
|
419
419
|
/**
|
|
420
420
|
* default false; include checksums calculated for incoming files, set this to some hash algorithm, see crypto.createHash for available algorithms
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
hashAlgorithm?: false | 'sha1' | 'md5' | 'sha256';
|
|
423
423
|
encoding?: string;
|
|
424
424
|
/**
|
|
425
425
|
* File provider name used to upload files
|
package/lib/mjs/interfaces.d.ts
CHANGED
|
@@ -419,7 +419,7 @@ export interface IUploadOptions {
|
|
|
419
419
|
/**
|
|
420
420
|
* default false; include checksums calculated for incoming files, set this to some hash algorithm, see crypto.createHash for available algorithms
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
hashAlgorithm?: false | 'sha1' | 'md5' | 'sha256';
|
|
423
423
|
encoding?: string;
|
|
424
424
|
/**
|
|
425
425
|
* File provider name used to upload files
|