@twin.org/entity-storage-connector-gcp-firestore 0.0.1 → 0.0.2-next.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.
package/README.md CHANGED
@@ -13,7 +13,7 @@ npm install @twin.org/entity-storage-connector-gcp-firestore
13
13
  The tests developed are functional tests and need an instance of Firestore up and running. To run Firestore locally:
14
14
 
15
15
  ```sh
16
- docker run -d --name twin-entity-storage-firestore -p 8080:8080 gcr.io/google.com/cloudsdktool/cloud-sdk:emulators gcloud beta emulators firestore start --host-port=0.0.0.0:8080
16
+ docker run -d --name twin-entity-storage-firestore -p 8580:8080 gcr.io/google.com/cloudsdktool/cloud-sdk:emulators gcloud beta emulators firestore start --host-port=0.0.0.0:8080
17
17
  ```
18
18
 
19
19
  Afterwards you can run the tests as follows:
@@ -19,7 +19,7 @@ export interface IFirestoreEntityStorageConnectorConfig {
19
19
  */
20
20
  credentials?: string;
21
21
  /**
22
- * It's usually only used with an emulator (e.g., "localhost:8080").
22
+ * It's usually only used with an emulator (e.g., "localhost:8580").
23
23
  */
24
24
  endpoint?: string;
25
25
  /**
package/docs/changelog.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @twin.org/entity-storage-connector-gcp-firestore - Changelog
2
2
 
3
+ ## [0.0.2-next.2](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-gcp-firestore-v0.0.2-next.1...entity-storage-connector-gcp-firestore-v0.0.2-next.2) (2025-07-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * synchronised storage ([#44](https://github.com/twinfoundation/entity-storage/issues/44)) ([94e10e2](https://github.com/twinfoundation/entity-storage/commit/94e10e26d1feec801449dc04af7a9757ac7495ff))
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.1 to 0.0.2-next.2
16
+ * devDependencies
17
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.1 to 0.0.2-next.2
18
+
19
+ ## [0.0.2-next.1](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-gcp-firestore-v0.0.2-next.0...entity-storage-connector-gcp-firestore-v0.0.2-next.1) (2025-07-17)
20
+
21
+
22
+ ### Features
23
+
24
+ * Add entity storage connector for GCP Firestore ([#21](https://github.com/twinfoundation/entity-storage/issues/21)) ([10bfbf0](https://github.com/twinfoundation/entity-storage/commit/10bfbf0ba7dfe1e9de14d8059426c370476749d4))
25
+ * add production release automation ([1eb4c8e](https://github.com/twinfoundation/entity-storage/commit/1eb4c8ee3eb099defdfc2d063ae44935276dcae8))
26
+ * CosmosDB Entity Storage Connector ([#20](https://github.com/twinfoundation/entity-storage/issues/20)) ([0ae8371](https://github.com/twinfoundation/entity-storage/commit/0ae8371d81ce7e20c0b0397144499dc3e17ffa0a))
27
+ * update dependencies ([7ccc0c4](https://github.com/twinfoundation/entity-storage/commit/7ccc0c429125d073dc60b3de6cf101abc8cc6cba))
28
+ * use shared store mechanism ([#34](https://github.com/twinfoundation/entity-storage/issues/34)) ([68b6b71](https://github.com/twinfoundation/entity-storage/commit/68b6b71e7a96d7d016cd57bfff36775b56bf3f93))
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * query params force coercion ([dd6aa87](https://github.com/twinfoundation/entity-storage/commit/dd6aa87efdfb60bab7d6756a86888863c45c51a7))
34
+
35
+
36
+ ### Dependencies
37
+
38
+ * The following workspace dependencies were updated
39
+ * dependencies
40
+ * @twin.org/entity-storage-models bumped from 0.0.2-next.0 to 0.0.2-next.1
41
+ * devDependencies
42
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.2-next.0 to 0.0.2-next.1
43
+
3
44
  ## 0.0.1 (2025-07-04)
4
45
 
5
46
 
@@ -40,7 +40,7 @@ The GCP credentials, a base64 encoded version of the JWTInput data type.
40
40
 
41
41
  > `optional` **endpoint**: `string`
42
42
 
43
- It's usually only used with an emulator (e.g., "localhost:8080").
43
+ It's usually only used with an emulator (e.g., "localhost:8580").
44
44
 
45
45
  ***
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/entity-storage-connector-gcp-firestore",
3
- "version": "0.0.1",
3
+ "version": "0.0.2-next.2",
4
4
  "description": "Entity Storage connector implementation using GCP Firestore storage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,12 +14,12 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@google-cloud/firestore": "7.11.1",
18
- "@twin.org/core": "^0.0.1",
19
- "@twin.org/entity": "^0.0.1",
20
- "@twin.org/entity-storage-models": "^0.0.1",
21
- "@twin.org/logging-models": "^0.0.1",
22
- "@twin.org/nameof": "^0.0.1"
17
+ "@google-cloud/firestore": "7.11.2",
18
+ "@twin.org/core": "next",
19
+ "@twin.org/entity": "next",
20
+ "@twin.org/entity-storage-models": "0.0.2-next.2",
21
+ "@twin.org/logging-models": "next",
22
+ "@twin.org/nameof": "next"
23
23
  },
24
24
  "main": "./dist/cjs/index.cjs",
25
25
  "module": "./dist/esm/index.mjs",