@travetto/model-elasticsearch 5.0.0-rc.0 → 5.0.0-rc.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 CHANGED
@@ -45,7 +45,7 @@ where the [ElasticsearchModelConfig](https://github.com/travetto/travetto/tree/m
45
45
 
46
46
  **Code: Structure of ElasticsearchModelConfig**
47
47
  ```typescript
48
- import { TimeSpan } from '@travetto/base';
48
+ import { TimeSpan } from '@travetto/runtime';
49
49
  import { Config } from '@travetto/config';
50
50
  import { Field } from '@travetto/schema';
51
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/model-elasticsearch",
3
- "version": "5.0.0-rc.0",
3
+ "version": "5.0.0-rc.2",
4
4
  "description": "Elasticsearch backing for the travetto model module, with real-time modeling support for Elasticsearch mappings.",
5
5
  "keywords": [
6
6
  "elasticsearch",
@@ -28,12 +28,12 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@elastic/elasticsearch": "^8.14.0",
31
- "@travetto/config": "^5.0.0-rc.0",
32
- "@travetto/model": "^5.0.0-rc.0",
33
- "@travetto/model-query": "^5.0.0-rc.0"
31
+ "@travetto/config": "^5.0.0-rc.2",
32
+ "@travetto/model": "^5.0.0-rc.2",
33
+ "@travetto/model-query": "^5.0.0-rc.2"
34
34
  },
35
35
  "peerDependencies": {
36
- "@travetto/command": "^5.0.0-rc.0"
36
+ "@travetto/command": "^5.0.0-rc.2"
37
37
  },
38
38
  "peerDependenciesMeta": {
39
39
  "@travetto/command": {
package/src/config.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { TimeSpan } from '@travetto/base';
1
+ import { TimeSpan } from '@travetto/runtime';
2
2
  import { Config } from '@travetto/config';
3
3
  import { Field } from '@travetto/schema';
4
4
 
@@ -1,7 +1,7 @@
1
1
  import { Client } from '@elastic/elasticsearch';
2
2
  import { ReindexRequest } from '@elastic/elasticsearch/lib/api/types';
3
3
 
4
- import { Class } from '@travetto/base';
4
+ import { Class } from '@travetto/runtime';
5
5
  import { ModelRegistry, ModelType } from '@travetto/model';
6
6
  import { ModelStorageSupport } from '@travetto/model/src/service/storage';
7
7
  import { SchemaChange } from '@travetto/schema';
@@ -1,6 +1,6 @@
1
1
  import { QueryDslQueryContainer, SearchRequest, SearchResponse, Sort, SortOptions } from '@elastic/elasticsearch/lib/api/types';
2
2
 
3
- import { Class } from '@travetto/base';
3
+ import { Class } from '@travetto/runtime';
4
4
  import { WhereClause, SelectClause, SortClause, Query } from '@travetto/model-query';
5
5
  import { QueryLanguageParser } from '@travetto/model-query/src/internal/query/parser';
6
6
  import { QueryVerifier } from '@travetto/model-query/src/internal/query/verifier';
@@ -1,6 +1,6 @@
1
1
  import { InlineScript, MappingProperty, MappingTypeMapping } from '@elastic/elasticsearch/lib/api/types';
2
2
 
3
- import { Class } from '@travetto/base';
3
+ import { Class } from '@travetto/runtime';
4
4
  import { ModelRegistry } from '@travetto/model';
5
5
  import { PointImpl } from '@travetto/model-query/src/internal/model/point';
6
6
  import { DataUtil, SchemaRegistry } from '@travetto/schema';
package/src/service.ts CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  ModelIndexedSupport, ModelType, ModelStorageSupport, NotFoundError, ModelRegistry,
9
9
  OptionalId
10
10
  } from '@travetto/model';
11
- import { ShutdownManager, type Class, AppError } from '@travetto/base';
11
+ import { ShutdownManager, type Class, AppError } from '@travetto/runtime';
12
12
  import { SchemaChange, DeepPartial, BindUtil } from '@travetto/schema';
13
13
  import { Injectable } from '@travetto/di';
14
14
  import {