├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── prettier.config.js ├── src ├── index.ts ├── module │ ├── dynamodb.config.ts │ ├── dynamodb.constants.ts │ ├── dynamodb.coremodule.ts │ ├── dynamodb.decorators.ts │ ├── dynamodb.interfaces.ts │ ├── dynamodb.module.ts │ └── dynamodb.providers.ts └── util │ ├── convertToClassWithOptions.ts │ ├── getKeys.ts │ ├── getModelForClass.ts │ ├── getSchema.ts │ ├── getTable.ts │ ├── getTokens.ts │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('eslint-config-rokket-labs/prettier') 2 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/module/dynamodb.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.config.ts -------------------------------------------------------------------------------- /src/module/dynamodb.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.constants.ts -------------------------------------------------------------------------------- /src/module/dynamodb.coremodule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.coremodule.ts -------------------------------------------------------------------------------- /src/module/dynamodb.decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.decorators.ts -------------------------------------------------------------------------------- /src/module/dynamodb.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.interfaces.ts -------------------------------------------------------------------------------- /src/module/dynamodb.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.module.ts -------------------------------------------------------------------------------- /src/module/dynamodb.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/module/dynamodb.providers.ts -------------------------------------------------------------------------------- /src/util/convertToClassWithOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/convertToClassWithOptions.ts -------------------------------------------------------------------------------- /src/util/getKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/getKeys.ts -------------------------------------------------------------------------------- /src/util/getModelForClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/getModelForClass.ts -------------------------------------------------------------------------------- /src/util/getSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/getSchema.ts -------------------------------------------------------------------------------- /src/util/getTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/getTable.ts -------------------------------------------------------------------------------- /src/util/getTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/getTokens.ts -------------------------------------------------------------------------------- /src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/src/util/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyPressATX/nestjs-dynamodb/HEAD/tsconfig.json --------------------------------------------------------------------------------