@travetto/model 5.0.0-rc.6 → 5.0.0-rc.8

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 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.6",
3
+ "version": "5.0.0-rc.8",
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.6",
30
- "@travetto/di": "^5.0.0-rc.6",
31
- "@travetto/registry": "^5.0.0-rc.6",
32
- "@travetto/schema": "^5.0.0-rc.6"
29
+ "@travetto/config": "^5.0.0-rc.8",
30
+ "@travetto/di": "^5.0.0-rc.8",
31
+ "@travetto/registry": "^5.0.0-rc.8",
32
+ "@travetto/schema": "^5.0.0-rc.8"
33
33
  },
34
34
  "peerDependencies": {
35
- "@travetto/cli": "^5.0.0-rc.6",
36
- "@travetto/test": "^5.0.0-rc.6"
35
+ "@travetto/cli": "^5.0.0-rc.8",
36
+ "@travetto/test": "^5.0.0-rc.8"
37
37
  },
38
38
  "peerDependenciesMeta": {
39
39
  "@travetto/cli": {
@@ -25,6 +25,7 @@ const STREAM_META = `${STREAMS}_meta`;
25
25
 
26
26
  type StoreType = Map<string, Buffer>;
27
27
 
28
+
28
29
  @Config('model.memory')
29
30
  export class MemoryModelConfig {
30
31
  autoCreate?: boolean = true;
@@ -6,6 +6,7 @@ import { ModelBasicSupport } from './basic';
6
6
  /**
7
7
  * Support for simple indexed activity
8
8
  *
9
+ *
9
10
  * @concrete ../internal/service/common#ModelIndexedSupportTarget
10
11
  */
11
12
  export interface ModelIndexedSupport extends ModelBasicSupport {