@travetto/model-dynamodb 3.0.0-rc.10 → 3.0.0-rc.12

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
@@ -39,7 +39,7 @@ export class Init {
39
39
 
40
40
  **Code: Structure of DynamoDBModelConfig**
41
41
  ```typescript
42
- import type * as dynamodb from '@aws-sdk/client-dynamodb';
42
+ import type dynamodb from '@aws-sdk/client-dynamodb';
43
43
 
44
44
  import { Config } from '@travetto/config';
45
45
  import { Field } from '@travetto/schema';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/model-dynamodb",
3
- "version": "3.0.0-rc.10",
3
+ "version": "3.0.0-rc.12",
4
4
  "description": "DynamoDB backing for the travetto model module.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -25,12 +25,12 @@
25
25
  "directory": "module/model-dynamodb"
26
26
  },
27
27
  "dependencies": {
28
- "@aws-sdk/client-dynamodb": "^3.245.0",
29
- "@travetto/config": "^3.0.0-rc.10",
30
- "@travetto/model": "^3.0.0-rc.10"
28
+ "@aws-sdk/client-dynamodb": "^3.262.0",
29
+ "@travetto/config": "^3.0.0-rc.12",
30
+ "@travetto/model": "^3.0.0-rc.12"
31
31
  },
32
32
  "peerDependencies": {
33
- "@travetto/command": "^3.0.0-rc.7"
33
+ "@travetto/command": "^3.0.0-rc.9"
34
34
  },
35
35
  "peerDependenciesMeta": {
36
36
  "@travetto/command": {
package/src/config.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type * as dynamodb from '@aws-sdk/client-dynamodb';
1
+ import type dynamodb from '@aws-sdk/client-dynamodb';
2
2
 
3
3
  import { Config } from '@travetto/config';
4
4
  import { Field } from '@travetto/schema';
@@ -1,9 +1,9 @@
1
1
  import { Env } from '@travetto/base';
2
- import type { Service } from '@travetto/command/support/bin/service';
2
+ import type { CommandService } from '@travetto/command';
3
3
 
4
- const version = Env.get('DYNAMODB_VERSION', '1.15.0');
4
+ const version = Env.get('DYNAMODB_VERSION', '1.20.0');
5
5
 
6
- export const service: Service = {
6
+ export const service: CommandService = {
7
7
  name: 'dynamodb',
8
8
  version,
9
9
  port: 8000,