iom-sdk 0.1.18 → 0.2.3

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.18",
2
+ "version": "0.2.3",
3
3
  "name": "iom-sdk",
4
4
  "author": "MaEconomy Org",
5
5
  "description": "TypeScript SDK for Internet of Materials (IoM) - A client library for interacting with UUProtocol-based building/material management systems",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "license": "MIT",
26
26
  "type": "module",
27
- "packageManager": "pnpm@10.18.0",
27
+ "packageManager": "pnpm@10.33.2",
28
28
  "main": "dist/index.js",
29
29
  "module": "dist/index.esm.js",
30
30
  "types": "dist/index.d.ts",
@@ -50,7 +50,8 @@
50
50
  "release:major": "npm version major"
51
51
  },
52
52
  "dependencies": {
53
- "axios": "^1.6.0",
53
+ "axios": "^1.15.2",
54
+ "hash-wasm": "^4.12.0",
54
55
  "zod": "^3.24.2"
55
56
  },
56
57
  "devDependencies": {
@@ -69,13 +70,13 @@
69
70
  "eslint-plugin-prettier": "^5.2.6",
70
71
  "jest": "^29.7.0",
71
72
  "prettier": "^3.5.3",
72
- "rollup": "^4.1.4",
73
+ "rollup": "^4.60.2",
73
74
  "rollup-plugin-peer-deps-external": "^2.2.4",
74
75
  "ts-jest": "^29.1.1",
75
76
  "tslib": "^2.6.2",
76
77
  "typescript": "^5.2.2"
77
78
  },
78
79
  "peerDependencies": {
79
- "axios": "^1.6.0"
80
+ "axios": "^1.15.2"
80
81
  }
81
82
  }
@@ -1,5 +0,0 @@
1
- /**
2
- * Encode a File or Blob as a base64 string (no data-URL prefix).
3
- * Works in browsers (FileReader) and in Node (Buffer).
4
- */
5
- export declare function blobToBase64(file: File | Blob): Promise<string>;