@fgv/ts-http-storage 5.1.0-3 → 5.1.0-4

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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.57.6"
8
+ "packageVersion": "7.57.7"
9
9
  }
10
10
  ]
11
11
  }
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [FsStorageProvider](./FsStorageProvider.md) > deleteFile
2
+
3
+ ## FsStorageProvider.deleteFile() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ deleteFile(itemPath: string): Promise<Result<boolean>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>itemPath</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;boolean&gt;&gt;
@@ -104,6 +104,19 @@ Description
104
104
 
105
105
 
106
106
 
107
+ </td></tr>
108
+ <tr><td>
109
+
110
+ [deleteFile(itemPath)](./FsStorageProvider.deleteFile.md)
111
+
112
+ </td><td>
113
+
114
+
115
+
116
+ </td><td>
117
+
118
+
119
+
107
120
  </td></tr>
108
121
  <tr><td>
109
122
 
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [HttpStorageService](./HttpStorageService.md) > deleteFile
2
+
3
+ ## HttpStorageService.deleteFile() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ deleteFile(request: IStoragePathRequest): Promise<Result<boolean>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>request</td><td>IStoragePathRequest</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;boolean&gt;&gt;
@@ -102,6 +102,19 @@ Description
102
102
 
103
103
 
104
104
 
105
+ </td></tr>
106
+ <tr><td>
107
+
108
+ [deleteFile(request)](./HttpStorageService.deleteFile.md)
109
+
110
+ </td><td>
111
+
112
+
113
+
114
+ </td><td>
115
+
116
+
117
+
105
118
  </td></tr>
106
119
  <tr><td>
107
120
 
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > deleteFile
2
+
3
+ ## IHttpStorageProvider.deleteFile() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ deleteFile(path: string): Promise<Result<boolean>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>path</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;boolean&gt;&gt;
@@ -72,6 +72,19 @@ Description
72
72
 
73
73
 
74
74
 
75
+ </td></tr>
76
+ <tr><td>
77
+
78
+ [deleteFile(path)](./IHttpStorageProvider.deleteFile.md)
79
+
80
+ </td><td>
81
+
82
+
83
+
84
+ </td><td>
85
+
86
+
87
+
75
88
  </td></tr>
76
89
  <tr><td>
77
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-http-storage",
3
- "version": "5.1.0-3",
3
+ "version": "5.1.0-4",
4
4
  "description": "Reusable HTTP storage services for FileTree-style backends",
5
5
  "main": "lib/index.js",
6
6
  "types": "dist/ts-http-storage.d.ts",
@@ -26,13 +26,13 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "hono": "~4.7.11",
29
- "@fgv/ts-utils": "5.1.0-3"
29
+ "@fgv/ts-utils": "5.1.0-4"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@microsoft/api-documenter": "^7.28.2",
33
33
  "@microsoft/api-extractor": "^7.55.2",
34
- "@rushstack/heft": "1.2.6",
35
- "@rushstack/heft-node-rig": "2.11.26",
34
+ "@rushstack/heft": "1.2.7",
35
+ "@rushstack/heft-node-rig": "2.11.27",
36
36
  "@rushstack/eslint-config": "4.6.4",
37
37
  "@types/heft-jest": "1.0.6",
38
38
  "@types/jest": "^29.5.14",
@@ -47,9 +47,9 @@
47
47
  "typedoc": "~0.28.16",
48
48
  "typedoc-plugin-markdown": "~4.9.0",
49
49
  "@rushstack/heft-jest-plugin": "1.2.6",
50
- "@fgv/heft-dual-rig": "5.1.0-3",
51
- "@fgv/typedoc-compact-theme": "5.1.0-3",
52
- "@fgv/ts-utils-jest": "5.1.0-3"
50
+ "@fgv/ts-utils-jest": "5.1.0-4",
51
+ "@fgv/heft-dual-rig": "5.1.0-4",
52
+ "@fgv/typedoc-compact-theme": "5.1.0-4"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "heft build --clean",
@@ -1,3 +1,3 @@
1
1
  Caching build output folders: dist, lib, temp, .rush/temp/operation/build
2
2
  Successfully set cache entry.
3
- Cache key: 3209e86dbdb943e6bd0fca55aab664f7589a1203
3
+ Cache key: 6ab9195b15cc32c9f5e7e6f55bce0a88fab1fac6
@@ -2,8 +2,8 @@ Invoking: heft build --clean
2
2
  ---- build started ----
3
3
  [build:typescript] The TypeScript compiler version 5.9.3 is newer than the latest version that was tested with Heft (5.8); it may not work correctly.
4
4
  [build:typescript] Using TypeScript version 5.9.3
5
- [build:api-extractor] Using API Extractor version 7.57.6
5
+ [build:api-extractor] Using API Extractor version 7.57.7
6
6
  [build:api-extractor] Analysis will use the bundled TypeScript version 5.8.2
7
7
  [build:api-extractor] *** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
8
- ---- build finished (12.161s) ----
9
- -------------------- Finished (12.168s) --------------------
8
+ ---- build finished (11.405s) ----
9
+ -------------------- Finished (11.41s) --------------------
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "metadata": {
3
3
  "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.57.6",
4
+ "toolVersion": "7.57.7",
5
5
  "schemaVersion": 1011,
6
6
  "oldestForwardsCompatibleVersion": 1001,
7
7
  "tsdocConfig": {