@twin.org/blob-storage-connector-gcp 0.0.1-next.28 → 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,33 @@
|
|
|
1
1
|
# @twin.org/blob-storage-connector-gcp - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.30](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-gcp-v0.0.1-next.29...blob-storage-connector-gcp-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
|
+
|
|
17
|
+
## [0.0.1-next.29](https://github.com/twinfoundation/blob-storage/compare/blob-storage-connector-gcp-v0.0.1-next.28...blob-storage-connector-gcp-v0.0.1-next.29) (2025-03-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* Add GCP blob storage connector ([#8](https://github.com/twinfoundation/blob-storage/issues/8)) ([4f6d579](https://github.com/twinfoundation/blob-storage/commit/4f6d579c01b3ae13ebcd9029b279da62e4fde859))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.28 to 0.0.1-next.29
|
|
30
|
+
|
|
3
31
|
## v0.0.1-next.28
|
|
4
32
|
|
|
5
33
|
- Initial Release
|
|
@@ -9,9 +9,9 @@ See https://cloud.google.com/storage/docs/reference/libraries for more informati
|
|
|
9
9
|
|
|
10
10
|
## Constructors
|
|
11
11
|
|
|
12
|
-
###
|
|
12
|
+
### Constructor
|
|
13
13
|
|
|
14
|
-
> **new GcpBlobStorageConnector**(`options`):
|
|
14
|
+
> **new GcpBlobStorageConnector**(`options`): `GcpBlobStorageConnector`
|
|
15
15
|
|
|
16
16
|
Create a new instance of GcpBlobStorageConnector.
|
|
17
17
|
|
|
@@ -25,7 +25,7 @@ The options for the connector.
|
|
|
25
25
|
|
|
26
26
|
#### Returns
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
`GcpBlobStorageConnector`
|
|
29
29
|
|
|
30
30
|
## Properties
|
|
31
31
|
|
|
@@ -51,7 +51,7 @@ Runtime name for the class.
|
|
|
51
51
|
|
|
52
52
|
### bootstrap()
|
|
53
53
|
|
|
54
|
-
> **bootstrap**(`nodeLoggingConnectorType
|
|
54
|
+
> **bootstrap**(`nodeLoggingConnectorType?`): `Promise`\<`boolean`\>
|
|
55
55
|
|
|
56
56
|
Bootstrap the component by creating and initializing any resources it needs.
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/blob-storage-connector-gcp",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.30",
|
|
4
4
|
"description": "Blob Storage connector implementation using Google Cloud Storage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@google-cloud/storage": "^7.
|
|
18
|
-
"@twin.org/blob-storage-models": "0.0.1-next.
|
|
17
|
+
"@google-cloud/storage": "^7.16.0",
|
|
18
|
+
"@twin.org/blob-storage-models": "0.0.1-next.30",
|
|
19
19
|
"@twin.org/core": "next",
|
|
20
20
|
"@twin.org/crypto": "next",
|
|
21
21
|
"@twin.org/logging-models": "next",
|