@flystorage/file-storage 1.2.1 → 1.2.2

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.
@@ -1,5 +1,17 @@
1
1
  # `@flystorage/file-storage`
2
2
 
3
+ ## 1.2.2
4
+
5
+ ### Fixes
6
+
7
+ - Fixed typo in timeout options name
8
+
9
+ ## 1.2.1
10
+
11
+ ### Fixes
12
+
13
+ - Prevent unprefixed root paths to become '/' for directory listings.
14
+
3
15
  ## 1.2.0
4
16
 
5
17
  ### Added
@@ -57,7 +57,7 @@ export declare class DirectoryListing implements AsyncIterable<StatEntry> {
57
57
  }
58
58
  export type FileContents = Iterable<any> | AsyncIterable<any> | NodeJS.ReadableStream | Readable | string;
59
59
  export type TimeoutOptions = {
60
- timout?: number;
60
+ timeout?: number;
61
61
  };
62
62
  export type MiscellaneousOptions = TimeoutOptions & {
63
63
  [option: string]: any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flystorage/file-storage",
3
3
  "type": "module",
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "description": "File-storage abstraction: multiple filesystems, one API.",
6
6
  "main": "./dist/cjs/index.js",
7
7
  "types": "./dist/types/index.d.ts",