@travetto/model 5.0.0-rc.5 → 5.0.0-rc.7
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 -2
- package/package.json +7 -7
- package/src/provider/memory.ts +1 -0
- package/src/service/indexed.ts +1 -0
package/README.md
CHANGED
|
@@ -235,8 +235,7 @@ In addition to the provided contracts, the module also provides common utilities
|
|
|
235
235
|
```typescript
|
|
236
236
|
import { Readable } from 'node:stream';
|
|
237
237
|
import { buffer as toBuffer } from 'node:stream/consumers';
|
|
238
|
-
import { Class, TimeSpan } from '@travetto/runtime';
|
|
239
|
-
import { DeepPartial } from '@travetto/schema';
|
|
238
|
+
import { Class, TimeSpan, DeepPartial } from '@travetto/runtime';
|
|
240
239
|
import { Injectable } from '@travetto/di';
|
|
241
240
|
import { Config } from '@travetto/config';
|
|
242
241
|
import { ModelCrudSupport } from '../service/crud';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/model",
|
|
3
|
-
"version": "5.0.0-rc.
|
|
3
|
+
"version": "5.0.0-rc.7",
|
|
4
4
|
"description": "Datastore abstraction for core operations.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"datastore",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"directory": "module/model"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@travetto/config": "^5.0.0-rc.
|
|
30
|
-
"@travetto/di": "^5.0.0-rc.
|
|
31
|
-
"@travetto/registry": "^5.0.0-rc.
|
|
32
|
-
"@travetto/schema": "^5.0.0-rc.
|
|
29
|
+
"@travetto/config": "^5.0.0-rc.7",
|
|
30
|
+
"@travetto/di": "^5.0.0-rc.7",
|
|
31
|
+
"@travetto/registry": "^5.0.0-rc.7",
|
|
32
|
+
"@travetto/schema": "^5.0.0-rc.7"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@travetto/cli": "^5.0.0-rc.
|
|
36
|
-
"@travetto/test": "^5.0.0-rc.
|
|
35
|
+
"@travetto/cli": "^5.0.0-rc.7",
|
|
36
|
+
"@travetto/test": "^5.0.0-rc.7"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"@travetto/cli": {
|
package/src/provider/memory.ts
CHANGED
package/src/service/indexed.ts
CHANGED