@twin.org/blob-storage-connector-ipfs 0.0.1-next.9 → 0.0.2-next.1

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.
@@ -24,7 +24,6 @@ class IpfsBlobStorageConnector {
24
24
  /**
25
25
  * Create a new instance of IpfsBlobStorageConnector.
26
26
  * @param options The options for the connector.
27
- * @param options.config The configuration for the connector.
28
27
  */
29
28
  constructor(options) {
30
29
  core.Guards.object(this.CLASS_NAME, "options", options);
@@ -22,7 +22,6 @@ class IpfsBlobStorageConnector {
22
22
  /**
23
23
  * Create a new instance of IpfsBlobStorageConnector.
24
24
  * @param options The options for the connector.
25
- * @param options.config The configuration for the connector.
26
25
  */
27
26
  constructor(options) {
28
27
  Guards.object(this.CLASS_NAME, "options", options);
@@ -1,2 +1,3 @@
1
1
  export * from "./ipfsBlobStorageConnector";
2
2
  export * from "./models/IIpfsBlobStorageConnectorConfig";
3
+ export * from "./models/IIpfsBlobStorageConnectorConstructorOptions";
@@ -1,5 +1,5 @@
1
1
  import type { IBlobStorageConnector } from "@twin.org/blob-storage-models";
2
- import type { IIpfsBlobStorageConnectorConfig } from "./models/IIpfsBlobStorageConnectorConfig";
2
+ import type { IIpfsBlobStorageConnectorConstructorOptions } from "./models/IIpfsBlobStorageConnectorConstructorOptions";
3
3
  /**
4
4
  * Class for performing blob storage operations on IPFS.
5
5
  * See https://docs.ipfs.tech/reference/kubo/rpc/ for more information.
@@ -16,11 +16,8 @@ export declare class IpfsBlobStorageConnector implements IBlobStorageConnector {
16
16
  /**
17
17
  * Create a new instance of IpfsBlobStorageConnector.
18
18
  * @param options The options for the connector.
19
- * @param options.config The configuration for the connector.
20
19
  */
21
- constructor(options: {
22
- config: IIpfsBlobStorageConnectorConfig;
23
- });
20
+ constructor(options: IIpfsBlobStorageConnectorConstructorOptions);
24
21
  /**
25
22
  * Set the blob.
26
23
  * @param blob The data for the blob.
@@ -0,0 +1,10 @@
1
+ import type { IIpfsBlobStorageConnectorConfig } from "./IIpfsBlobStorageConnectorConfig";
2
+ /**
3
+ * Options for the IPFS Blob Storage Connector constructor.
4
+ */
5
+ export interface IIpfsBlobStorageConnectorConstructorOptions {
6
+ /**
7
+ * The configuration for the connector.
8
+ */
9
+ config: IIpfsBlobStorageConnectorConfig;
10
+ }
package/docs/changelog.md CHANGED
@@ -1,5 +1,160 @@
1
1
  # @twin.org/blob-storage-connector-ipfs - Changelog
2
2
 
3
- ## v0.0.1-next.9
3
+ ## [0.0.2-next.1](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.2-next.0...blob-storage-connector-ipfs-v0.0.2-next.1) (2025-07-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * update dependencies ([56f0094](https://github.com/twinfoundation/blob-storage/commit/56f0094b68d8bd22864cd899ac1b61d95540f719))
9
+ * use shared store mechanism ([#12](https://github.com/twinfoundation/blob-storage/issues/12)) ([cae8110](https://github.com/twinfoundation/blob-storage/commit/cae8110681847a1ac4fcac968b8196694e49c320))
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * The following workspace dependencies were updated
15
+ * dependencies
16
+ * @twin.org/blob-storage-models bumped from 0.0.2-next.0 to 0.0.2-next.1
17
+
18
+ ## 0.0.1 (2025-07-04)
19
+
20
+
21
+ ### Features
22
+
23
+ * release to production ([eacfe75](https://github.com/twinfoundation/blob-storage/commit/eacfe754a0dcd9243d9e13d86422327d0a605164))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @twin.org/blob-storage-models bumped from ^0.0.0 to ^0.0.1
31
+
32
+ ## [0.0.1-next.37](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.36...blob-storage-connector-ipfs-v0.0.1-next.37) (2025-06-20)
33
+
34
+
35
+ ### Miscellaneous Chores
36
+
37
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
38
+
39
+
40
+ ### Dependencies
41
+
42
+ * The following workspace dependencies were updated
43
+ * dependencies
44
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.36 to 0.0.1-next.37
45
+
46
+ ## [0.0.1-next.36](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.35...blob-storage-connector-ipfs-v0.0.1-next.36) (2025-06-19)
47
+
48
+
49
+ ### Miscellaneous Chores
50
+
51
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
52
+
53
+
54
+ ### Dependencies
55
+
56
+ * The following workspace dependencies were updated
57
+ * dependencies
58
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.35 to 0.0.1-next.36
59
+
60
+ ## [0.0.1-next.35](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.34...blob-storage-connector-ipfs-v0.0.1-next.35) (2025-06-17)
61
+
62
+
63
+ ### Miscellaneous Chores
64
+
65
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
66
+
67
+
68
+ ### Dependencies
69
+
70
+ * The following workspace dependencies were updated
71
+ * dependencies
72
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.34 to 0.0.1-next.35
73
+
74
+ ## [0.0.1-next.34](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.33...blob-storage-connector-ipfs-v0.0.1-next.34) (2025-06-12)
75
+
76
+
77
+ ### Features
78
+
79
+ * update dependencies ([56f0094](https://github.com/twinfoundation/blob-storage/commit/56f0094b68d8bd22864cd899ac1b61d95540f719))
80
+
81
+
82
+ ### Dependencies
83
+
84
+ * The following workspace dependencies were updated
85
+ * dependencies
86
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.33 to 0.0.1-next.34
87
+
88
+ ## [0.0.1-next.33](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.32...blob-storage-connector-ipfs-v0.0.1-next.33) (2025-06-03)
89
+
90
+
91
+ ### Miscellaneous Chores
92
+
93
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
94
+
95
+
96
+ ### Dependencies
97
+
98
+ * The following workspace dependencies were updated
99
+ * dependencies
100
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.32 to 0.0.1-next.33
101
+
102
+ ## [0.0.1-next.32](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.31...blob-storage-connector-ipfs-v0.0.1-next.32) (2025-05-28)
103
+
104
+
105
+ ### Miscellaneous Chores
106
+
107
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
108
+
109
+
110
+ ### Dependencies
111
+
112
+ * The following workspace dependencies were updated
113
+ * dependencies
114
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.31 to 0.0.1-next.32
115
+
116
+ ## [0.0.1-next.31](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.30...blob-storage-connector-ipfs-v0.0.1-next.31) (2025-05-08)
117
+
118
+
119
+ ### Miscellaneous Chores
120
+
121
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
122
+
123
+
124
+ ### Dependencies
125
+
126
+ * The following workspace dependencies were updated
127
+ * dependencies
128
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.30 to 0.0.1-next.31
129
+
130
+ ## [0.0.1-next.30](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.29...blob-storage-connector-ipfs-v0.0.1-next.30) (2025-04-17)
131
+
132
+
133
+ ### Features
134
+
135
+ * use shared store mechanism ([#12](https://github.com/twinfoundation/blob-storage/issues/12)) ([cae8110](https://github.com/twinfoundation/blob-storage/commit/cae8110681847a1ac4fcac968b8196694e49c320))
136
+
137
+
138
+ ### Dependencies
139
+
140
+ * The following workspace dependencies were updated
141
+ * dependencies
142
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.29 to 0.0.1-next.30
143
+
144
+ ## [0.0.1-next.29](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-ipfs-v0.0.1-next.28...blob-storage-connector-ipfs-v0.0.1-next.29) (2025-03-28)
145
+
146
+
147
+ ### Miscellaneous Chores
148
+
149
+ * **blob-storage-connector-ipfs:** Synchronize repo versions
150
+
151
+
152
+ ### Dependencies
153
+
154
+ * The following workspace dependencies were updated
155
+ * dependencies
156
+ * @twin.org/blob-storage-models bumped from 0.0.1-next.28 to 0.0.1-next.29
157
+
158
+ ## v0.0.1-next.28
4
159
 
5
160
  - Initial Release
@@ -9,25 +9,23 @@ See https://docs.ipfs.tech/reference/kubo/rpc/ for more information.
9
9
 
10
10
  ## Constructors
11
11
 
12
- ### new IpfsBlobStorageConnector()
12
+ ### Constructor
13
13
 
14
- > **new IpfsBlobStorageConnector**(`options`): [`IpfsBlobStorageConnector`](IpfsBlobStorageConnector.md)
14
+ > **new IpfsBlobStorageConnector**(`options`): `IpfsBlobStorageConnector`
15
15
 
16
16
  Create a new instance of IpfsBlobStorageConnector.
17
17
 
18
18
  #### Parameters
19
19
 
20
- **options**
20
+ ##### options
21
21
 
22
- The options for the connector.
23
-
24
- • **options.config**: [`IIpfsBlobStorageConnectorConfig`](../interfaces/IIpfsBlobStorageConnectorConfig.md)
22
+ [`IIpfsBlobStorageConnectorConstructorOptions`](../interfaces/IIpfsBlobStorageConnectorConstructorOptions.md)
25
23
 
26
- The configuration for the connector.
24
+ The options for the connector.
27
25
 
28
26
  #### Returns
29
27
 
30
- [`IpfsBlobStorageConnector`](IpfsBlobStorageConnector.md)
28
+ `IpfsBlobStorageConnector`
31
29
 
32
30
  ## Properties
33
31
 
@@ -59,7 +57,9 @@ Set the blob.
59
57
 
60
58
  #### Parameters
61
59
 
62
- **blob**: `Uint8Array`
60
+ ##### blob
61
+
62
+ `Uint8Array`
63
63
 
64
64
  The data for the blob.
65
65
 
@@ -77,19 +77,21 @@ The id of the stored blob in urn format.
77
77
 
78
78
  ### get()
79
79
 
80
- > **get**(`id`): `Promise`\<`undefined` \| `Uint8Array`\>
80
+ > **get**(`id`): `Promise`\<`undefined` \| `Uint8Array`\<`ArrayBufferLike`\>\>
81
81
 
82
82
  Get the blob.
83
83
 
84
84
  #### Parameters
85
85
 
86
- **id**: `string`
86
+ ##### id
87
+
88
+ `string`
87
89
 
88
90
  The id of the blob to get in urn format.
89
91
 
90
92
  #### Returns
91
93
 
92
- `Promise`\<`undefined` \| `Uint8Array`\>
94
+ `Promise`\<`undefined` \| `Uint8Array`\<`ArrayBufferLike`\>\>
93
95
 
94
96
  The data for the blob if it can be found or undefined.
95
97
 
@@ -107,7 +109,9 @@ Remove the blob.
107
109
 
108
110
  #### Parameters
109
111
 
110
- **id**: `string`
112
+ ##### id
113
+
114
+ `string`
111
115
 
112
116
  The id of the blob to remove in urn format.
113
117
 
@@ -7,3 +7,4 @@
7
7
  ## Interfaces
8
8
 
9
9
  - [IIpfsBlobStorageConnectorConfig](interfaces/IIpfsBlobStorageConnectorConfig.md)
10
+ - [IIpfsBlobStorageConnectorConstructorOptions](interfaces/IIpfsBlobStorageConnectorConstructorOptions.md)
@@ -0,0 +1,11 @@
1
+ # Interface: IIpfsBlobStorageConnectorConstructorOptions
2
+
3
+ Options for the IPFS Blob Storage Connector constructor.
4
+
5
+ ## Properties
6
+
7
+ ### config
8
+
9
+ > **config**: [`IIpfsBlobStorageConnectorConfig`](IIpfsBlobStorageConnectorConfig.md)
10
+
11
+ The configuration for the connector.
package/locales/en.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "error": {
3
3
  "ipfsBlobStorageConnector": {
4
4
  "namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\"",
5
- "fetchFail": "Failure during IPFS fetch \"{message}\"",
5
+ "fetchFail": "Failure during IPFS request",
6
6
  "setBlobFailed": "Failed to store blob in IPFS",
7
7
  "getBlobFailed": "Failed to get blob from IPFS",
8
8
  "removeBlobFailed": "Failed to remove blob from IPFS"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/blob-storage-connector-ipfs",
3
- "version": "0.0.1-next.9",
3
+ "version": "0.0.2-next.1",
4
4
  "description": "Blob Storage connector implementation using IPFS",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/blob-storage-models": "0.0.1-next.9",
17
+ "@twin.org/blob-storage-models": "0.0.2-next.1",
18
18
  "@twin.org/core": "next",
19
19
  "@twin.org/crypto": "next",
20
20
  "@twin.org/nameof": "next",
@@ -25,11 +25,11 @@
25
25
  "types": "./dist/types/index.d.ts",
26
26
  "exports": {
27
27
  ".": {
28
+ "types": "./dist/types/index.d.ts",
28
29
  "require": "./dist/cjs/index.cjs",
29
- "import": "./dist/esm/index.mjs",
30
- "types": "./dist/types/index.d.ts"
30
+ "import": "./dist/esm/index.mjs"
31
31
  },
32
- "./locales": "./locales"
32
+ "./locales/*.json": "./locales/*.json"
33
33
  },
34
34
  "files": [
35
35
  "dist/cjs",