@twin.org/blob-storage-connector-file 0.0.1-next.29 → 0.0.1-next.30
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/docs/changelog.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @twin.org/blob-storage-connector-file - Changelog
|
2
2
|
|
3
|
+
## [0.0.1-next.30](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-file-v0.0.1-next.29...blob-storage-connector-file-v0.0.1-next.30) (2025-04-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* use shared store mechanism ([#12](https://github.com/twinfoundation/blob-storage/issues/12)) ([cae8110](https://github.com/twinfoundation/blob-storage/commit/cae8110681847a1ac4fcac968b8196694e49c320))
|
9
|
+
|
10
|
+
|
11
|
+
### Dependencies
|
12
|
+
|
13
|
+
* The following workspace dependencies were updated
|
14
|
+
* dependencies
|
15
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.29 to 0.0.1-next.30
|
16
|
+
|
3
17
|
## [0.0.1-next.29](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-file-v0.0.1-next.28...blob-storage-connector-file-v0.0.1-next.29) (2025-03-28)
|
4
18
|
|
5
19
|
|
@@ -8,9 +8,9 @@ Class for performing blob storage operations in file.
|
|
8
8
|
|
9
9
|
## Constructors
|
10
10
|
|
11
|
-
###
|
11
|
+
### Constructor
|
12
12
|
|
13
|
-
> **new FileBlobStorageConnector**(`options`):
|
13
|
+
> **new FileBlobStorageConnector**(`options`): `FileBlobStorageConnector`
|
14
14
|
|
15
15
|
Create a new instance of FileBlobStorageConnector.
|
16
16
|
|
@@ -24,7 +24,7 @@ The options for the connector.
|
|
24
24
|
|
25
25
|
#### Returns
|
26
26
|
|
27
|
-
|
27
|
+
`FileBlobStorageConnector`
|
28
28
|
|
29
29
|
## Properties
|
30
30
|
|
@@ -50,7 +50,7 @@ Runtime name for the class.
|
|
50
50
|
|
51
51
|
### bootstrap()
|
52
52
|
|
53
|
-
> **bootstrap**(`nodeLoggingConnectorType
|
53
|
+
> **bootstrap**(`nodeLoggingConnectorType?`): `Promise`\<`boolean`\>
|
54
54
|
|
55
55
|
Bootstrap the component by creating and initializing any resources it needs.
|
56
56
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@twin.org/blob-storage-connector-file",
|
3
|
-
"version": "0.0.1-next.
|
3
|
+
"version": "0.0.1-next.30",
|
4
4
|
"description": "Blob Storage connector implementation using file storage",
|
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.
|
17
|
+
"@twin.org/blob-storage-models": "0.0.1-next.30",
|
18
18
|
"@twin.org/core": "next",
|
19
19
|
"@twin.org/crypto": "next",
|
20
20
|
"@twin.org/logging-models": "next",
|