@twin.org/entity-storage-connector-gcp-firestore 0.0.2-next.6 → 0.0.2-next.7
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/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +16 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -83,7 +83,7 @@ class FirestoreEntityStorageConnector {
|
|
|
83
83
|
* @returns True if the bootstrapping process was successful.
|
|
84
84
|
*/
|
|
85
85
|
async bootstrap(nodeLoggingComponentType) {
|
|
86
|
-
const nodeLogging = core.ComponentFactory.getIfExists(nodeLoggingComponentType
|
|
86
|
+
const nodeLogging = core.ComponentFactory.getIfExists(nodeLoggingComponentType);
|
|
87
87
|
try {
|
|
88
88
|
await nodeLogging?.log({
|
|
89
89
|
level: "info",
|
package/dist/esm/index.mjs
CHANGED
|
@@ -81,7 +81,7 @@ class FirestoreEntityStorageConnector {
|
|
|
81
81
|
* @returns True if the bootstrapping process was successful.
|
|
82
82
|
*/
|
|
83
83
|
async bootstrap(nodeLoggingComponentType) {
|
|
84
|
-
const nodeLogging = ComponentFactory.getIfExists(nodeLoggingComponentType
|
|
84
|
+
const nodeLogging = ComponentFactory.getIfExists(nodeLoggingComponentType);
|
|
85
85
|
try {
|
|
86
86
|
await nodeLogging?.log({
|
|
87
87
|
level: "info",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @twin.org/entity-storage-connector-gcp-firestore - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.7](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-gcp-firestore-v0.0.2-next.6...entity-storage-connector-gcp-firestore-v0.0.2-next.7) (2025-08-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* logging naming consistency ([f99d12d](https://github.com/twinfoundation/entity-storage/commit/f99d12dea04b6d4f2b5632ff5473e9ec7d5f9055))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/entity-storage-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
18
|
+
|
|
3
19
|
## [0.0.2-next.6](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-gcp-firestore-v0.0.2-next.5...entity-storage-connector-gcp-firestore-v0.0.2-next.6) (2025-08-19)
|
|
4
20
|
|
|
5
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/entity-storage-connector-gcp-firestore",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.7",
|
|
4
4
|
"description": "Entity Storage connector implementation using GCP Firestore storage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@google-cloud/firestore": "7.11.3",
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
19
|
"@twin.org/entity": "next",
|
|
20
|
-
"@twin.org/entity-storage-models": "0.0.2-next.
|
|
20
|
+
"@twin.org/entity-storage-models": "0.0.2-next.7",
|
|
21
21
|
"@twin.org/logging-models": "next",
|
|
22
22
|
"@twin.org/nameof": "next"
|
|
23
23
|
},
|