@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 +1 -1
- package/package.json +5 -5
- package/src/config.ts +1 -1
- package/support/service.dynamodb.ts +3 -3
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
|
|
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.
|
|
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.
|
|
29
|
-
"@travetto/config": "^3.0.0-rc.
|
|
30
|
-
"@travetto/model": "^3.0.0-rc.
|
|
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.
|
|
33
|
+
"@travetto/command": "^3.0.0-rc.9"
|
|
34
34
|
},
|
|
35
35
|
"peerDependenciesMeta": {
|
|
36
36
|
"@travetto/command": {
|
package/src/config.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Env } from '@travetto/base';
|
|
2
|
-
import type {
|
|
2
|
+
import type { CommandService } from '@travetto/command';
|
|
3
3
|
|
|
4
|
-
const version = Env.get('DYNAMODB_VERSION', '1.
|
|
4
|
+
const version = Env.get('DYNAMODB_VERSION', '1.20.0');
|
|
5
5
|
|
|
6
|
-
export const service:
|
|
6
|
+
export const service: CommandService = {
|
|
7
7
|
name: 'dynamodb',
|
|
8
8
|
version,
|
|
9
9
|
port: 8000,
|