@storagehub-sdk/msp-client 0.3.3 → 0.3.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.
Files changed (2) hide show
  1. package/dist/types.d.ts +1 -1
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -104,7 +104,7 @@ export interface Bucket {
104
104
  valuePropId: string;
105
105
  fileCount: number;
106
106
  }
107
- export type FileStatus = "inProgress" | "ready" | "expired" | "deletionInProgress";
107
+ export type FileStatus = "inProgress" | "ready" | "expired" | "revoked" | "rejected" | "deletionInProgress";
108
108
  export type FileTree = {
109
109
  name: string;
110
110
  } & ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storagehub-sdk/msp-client",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "High-level TypeScript client for StorageHub MSP: simple file upload/download, SIWE-style auth, health checks, and bucket browsing built on top of @storagehub-sdk/core.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.node.js",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "devDependencies": {
30
30
  "viem": ">=2.38.3",
31
- "@storagehub-sdk/core": "0.3.3"
31
+ "@storagehub-sdk/core": "0.3.4"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=22"