@travetto/model-postgres 5.0.12 → 5.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/model-postgres",
3
- "version": "5.0.12",
3
+ "version": "5.0.13",
4
4
  "description": "PostgreSQL backing for the travetto model module, with real-time modeling support for SQL schemas.",
5
5
  "keywords": [
6
6
  "sql",
@@ -27,22 +27,15 @@
27
27
  "directory": "module/model-postgres"
28
28
  },
29
29
  "dependencies": {
30
+ "@travetto/cli": "^5.0.12",
30
31
  "@travetto/config": "^5.0.11",
31
32
  "@travetto/context": "^5.0.11",
32
33
  "@travetto/model": "^5.0.12",
33
34
  "@travetto/model-query": "^5.0.12",
34
- "@travetto/model-sql": "^5.0.12",
35
+ "@travetto/model-sql": "^5.0.13",
35
36
  "@types/pg": "^8.11.10",
36
37
  "pg": "^8.13.0"
37
38
  },
38
- "peerDependencies": {
39
- "@travetto/command": "^5.0.11"
40
- },
41
- "peerDependenciesMeta": {
42
- "@travetto/command": {
43
- "optional": true
44
- }
45
- },
46
39
  "travetto": {
47
40
  "displayName": "PostgreSQL Model Service"
48
41
  },
@@ -1,8 +1,8 @@
1
- import type { CommandService } from '@travetto/command';
1
+ import type { ServiceDescriptor } from '@travetto/cli';
2
2
 
3
3
  const version = process.env.POSTGRESQL_VERSION || '15.4';
4
4
 
5
- export const service: CommandService = {
5
+ export const service: ServiceDescriptor = {
6
6
  name: 'postgresql',
7
7
  version,
8
8
  port: 5432,