@twin.org/blob-storage-connector-memory 0.0.1-next.17 → 0.0.1-next.19
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
|
@@ -48,7 +48,9 @@ Set the blob.
|
|
|
48
48
|
|
|
49
49
|
#### Parameters
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
##### blob
|
|
52
|
+
|
|
53
|
+
`Uint8Array`
|
|
52
54
|
|
|
53
55
|
The data for the blob.
|
|
54
56
|
|
|
@@ -72,7 +74,9 @@ Get the blob.
|
|
|
72
74
|
|
|
73
75
|
#### Parameters
|
|
74
76
|
|
|
75
|
-
|
|
77
|
+
##### id
|
|
78
|
+
|
|
79
|
+
`string`
|
|
76
80
|
|
|
77
81
|
The id of the blob to get in urn format.
|
|
78
82
|
|
|
@@ -96,7 +100,9 @@ Remove the blob.
|
|
|
96
100
|
|
|
97
101
|
#### Parameters
|
|
98
102
|
|
|
99
|
-
|
|
103
|
+
##### id
|
|
104
|
+
|
|
105
|
+
`string`
|
|
100
106
|
|
|
101
107
|
The id of the blob to remove in urn format.
|
|
102
108
|
|
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.
|
|
3
|
+
"version": "0.0.1-next.19",
|
|
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.
|
|
17
|
+
"@twin.org/blob-storage-models": "0.0.1-next.19",
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
19
|
"@twin.org/crypto": "next",
|
|
20
20
|
"@twin.org/nameof": "next"
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"types": "./dist/types/index.d.ts",
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
+
"types": "./dist/types/index.d.ts",
|
|
27
28
|
"require": "./dist/cjs/index.cjs",
|
|
28
|
-
"import": "./dist/esm/index.mjs"
|
|
29
|
-
"types": "./dist/types/index.d.ts"
|
|
29
|
+
"import": "./dist/esm/index.mjs"
|
|
30
30
|
},
|
|
31
31
|
"./locales/*.json": "./locales/*.json"
|
|
32
32
|
},
|