@twin.org/blob-storage-connector-memory 0.0.1-next.10 → 0.0.1-next.12

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.
@@ -39,5 +39,5 @@ export declare class MemoryBlobStorageConnector implements IBlobStorageConnector
39
39
  */
40
40
  getStore(): {
41
41
  [id: string]: Uint8Array;
42
- } | undefined;
42
+ };
43
43
  }
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/blob-storage-connector-memory - Changelog
2
2
 
3
- ## v0.0.1-next.10
3
+ ## v0.0.1-next.12
4
4
 
5
5
  - Initial Release
@@ -114,12 +114,12 @@ True if the blob was found.
114
114
 
115
115
  ### getStore()
116
116
 
117
- > **getStore**(): `undefined` \| `object`
117
+ > **getStore**(): `object`
118
118
 
119
119
  Get the memory store.
120
120
 
121
121
  #### Returns
122
122
 
123
- `undefined` \| `object`
123
+ `object`
124
124
 
125
125
  The store.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/blob-storage-connector-memory",
3
- "version": "0.0.1-next.10",
3
+ "version": "0.0.1-next.12",
4
4
  "description": "Blob Storage connector implementation using in-memory 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.10",
17
+ "@twin.org/blob-storage-models": "0.0.1-next.12",
18
18
  "@twin.org/core": "next",
19
19
  "@twin.org/crypto": "next",
20
20
  "@twin.org/nameof": "next"