@acodeninja/persist 3.0.0-next.17 → 3.0.0-next.18
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 +1 -0
- package/docs/storage-engines.md +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -9,6 +9,7 @@ A JSON based data modelling and persistence library with alternate storage mecha
|
|
9
9
|
|
10
10
|
[](https://app.deepsource.com/gh/acodeninja/persist/)
|
11
11
|
[](https://app.deepsource.com/gh/acodeninja/persist/)
|
12
|
+

|
12
13
|
|
13
14
|
## Features
|
14
15
|
|
package/docs/storage-engines.md
CHANGED
@@ -8,6 +8,7 @@ To store models using an S3 Bucket, use the `S3` storage engine. To use the `S3`
|
|
8
8
|
|
9
9
|
```javascript
|
10
10
|
import Persist from "@acodeninja/persist";
|
11
|
+
import {S3Client} from "@aws-sdk/client-s3";
|
11
12
|
import S3StorageEngine from "@acodeninja/persist/storage/s3";
|
12
13
|
|
13
14
|
const connection = Persist.registerConnection('remote', new S3StorageEngine({
|