Skip to content

Commit

Permalink
chore(deps): upgrade dependencies
Browse files Browse the repository at this point in the history
Upgrades project dependencies. See details in [workflow run].

[Workflow Run]: https://github.com/taimos/cdk-serverless-v2-demo/actions/runs/4238043859

------

*Automatically created by projen via the "upgrade" workflow*

Signed-off-by: github-actions <[email protected]>
  • Loading branch information
github-actions committed Feb 22, 2023
1 parent ad325d7 commit bf82ba9
Show file tree
Hide file tree
Showing 7 changed files with 1,455 additions and 1,624 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/upgrade.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions src/generated/datastore.mymodel-model.generated.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { dynamodb } from '@taimos/lambda-toolbox';
import { Model, Table, Entity } from 'dynamodb-onetable';
import { env } from 'process';
import { Dynamo } from 'dynamodb-onetable/Dynamo';
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';

export const dynamoClient = new Dynamo({ client: new DynamoDBClient({}) })
export const TABLE_NAME: string = env.TABLE!;

export const Index_primary_Name = 'primary';
export const Index_primary_HashKey = 'PK';
Expand Down Expand Up @@ -87,8 +92,8 @@ export const Schema = {
};

export const table = new Table({
client: dynamodb.dynamoClient,
name: dynamodb.TABLE_NAME,
client: dynamoClient,
name: TABLE_NAME,
schema: Schema,
isoDates: true,
// logger: true,
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.dev.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tsconfig.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bf82ba9

Please sign in to comment.