@osaas/client-db 0.1.1 → 0.1.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 +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ npm install --save @osaas/client-db
|
|
|
15
15
|
Example code creating a Valkey database and use a Redis client to connect with it
|
|
16
16
|
|
|
17
17
|
```javascript
|
|
18
|
-
import {
|
|
18
|
+
import { Context, Log } from '@osaas/client-core';
|
|
19
19
|
import { ValkeyDb } from '@osaas/client-db';
|
|
20
20
|
import Redis from 'ioredis';
|
|
21
21
|
|
|
@@ -33,4 +33,4 @@ async function main() {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
main();
|
|
36
|
-
```
|
|
36
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osaas/client-db",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Open Source Cloud Client SDK database library",
|
|
5
5
|
"author": "Eyevinn Technology <work@eyevinn.se>",
|
|
6
6
|
"homepage": "https://www.osaas.io",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "566fb72bae92453c7062fe63900afb368070c139"
|
|
35
35
|
}
|