@settlemint/sdk-ipfs 2.6.1 → 2.6.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -46,7 +46,7 @@ The SettleMint IPFS SDK provides a simple way to interact with IPFS (InterPlanet
46
46
 
47
47
  > **createIpfsClient**(`options`): `object`
48
48
 
49
- Defined in: [sdk/ipfs/src/ipfs.ts:31](https://github.com/settlemint/sdk/blob/v2.6.1/sdk/ipfs/src/ipfs.ts#L31)
49
+ Defined in: [sdk/ipfs/src/ipfs.ts:31](https://github.com/settlemint/sdk/blob/v2.6.2/sdk/ipfs/src/ipfs.ts#L31)
50
50
 
51
51
  Creates an IPFS client for client-side use
52
52
 
@@ -65,7 +65,7 @@ An object containing the configured IPFS client instance
65
65
 
66
66
  | Name | Type | Defined in |
67
67
  | ------ | ------ | ------ |
68
- | `client` | `KuboRPCClient` | [sdk/ipfs/src/ipfs.ts:31](https://github.com/settlemint/sdk/blob/v2.6.1/sdk/ipfs/src/ipfs.ts#L31) |
68
+ | `client` | `KuboRPCClient` | [sdk/ipfs/src/ipfs.ts:31](https://github.com/settlemint/sdk/blob/v2.6.2/sdk/ipfs/src/ipfs.ts#L31) |
69
69
 
70
70
  ##### Throws
71
71
 
@@ -92,7 +92,7 @@ console.log(result.cid.toString());
92
92
 
93
93
  > **createServerIpfsClient**(`options`): `object`
94
94
 
95
- Defined in: [sdk/ipfs/src/ipfs.ts:60](https://github.com/settlemint/sdk/blob/v2.6.1/sdk/ipfs/src/ipfs.ts#L60)
95
+ Defined in: [sdk/ipfs/src/ipfs.ts:60](https://github.com/settlemint/sdk/blob/v2.6.2/sdk/ipfs/src/ipfs.ts#L60)
96
96
 
97
97
  Creates an IPFS client for server-side use with authentication
98
98
 
@@ -112,7 +112,7 @@ An object containing the authenticated IPFS client instance
112
112
 
113
113
  | Name | Type | Defined in |
114
114
  | ------ | ------ | ------ |
115
- | `client` | `KuboRPCClient` | [sdk/ipfs/src/ipfs.ts:60](https://github.com/settlemint/sdk/blob/v2.6.1/sdk/ipfs/src/ipfs.ts#L60) |
115
+ | `client` | `KuboRPCClient` | [sdk/ipfs/src/ipfs.ts:60](https://github.com/settlemint/sdk/blob/v2.6.2/sdk/ipfs/src/ipfs.ts#L60) |
116
116
 
117
117
  ##### Throws
118
118
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@settlemint/sdk-ipfs",
3
3
  "description": "IPFS integration module for SettleMint SDK, enabling decentralized storage and content addressing",
4
- "version": "2.6.1",
4
+ "version": "2.6.2",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "license": "FSL-1.1-MIT",
@@ -53,7 +53,7 @@
53
53
  },
54
54
  "devDependencies": {},
55
55
  "dependencies": {
56
- "@settlemint/sdk-utils": "2.6.1",
56
+ "@settlemint/sdk-utils": "2.6.2",
57
57
  "kubo-rpc-client": "^5",
58
58
  "zod": "^4"
59
59
  },