├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── linter.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── LICENSE.md ├── README.md ├── cspell.json ├── docker-compose.yml ├── dockerfile ├── nest-cli.json ├── package.json ├── src ├── app │ ├── app.module.ts │ ├── constants │ │ ├── app.constant.ts │ │ └── app.enum.constant.ts │ ├── controllers │ │ └── app.controller.ts │ ├── docs │ │ └── app.doc.ts │ └── serializations │ │ └── app.hello.serialization.ts ├── cli.ts ├── common │ ├── api-key │ │ ├── api-key.module.ts │ │ ├── constants │ │ │ ├── api-key.constant.ts │ │ │ ├── api-key.doc.ts │ │ │ ├── api-key.list.constant.ts │ │ │ └── api-key.status-code.constant.ts │ │ ├── controllers │ │ │ ├── api-key.admin.controller.ts │ │ │ └── api-key.user.controller.ts │ │ ├── decorators │ │ │ ├── api-key.admin.decorator.ts │ │ │ ├── api-key.decorator.ts │ │ │ └── api-key.user.decorator.ts │ │ ├── docs │ │ │ └── api-key.admin.doc.ts │ │ ├── dtos │ │ │ ├── api-key.active.dto.ts │ │ │ ├── api-key.create.dto.ts │ │ │ ├── api-key.request.dto.ts │ │ │ ├── api-key.update-date.dto.ts │ │ │ └── api-key.update.dto.ts │ │ ├── guards │ │ │ ├── api-key.active.guard.ts │ │ │ ├── api-key.expired.guard.ts │ │ │ ├── api-key.not-found.guard.ts │ │ │ ├── api-key.put-to-request.guard.ts │ │ │ ├── payload │ │ │ │ └── api-key.put-to-request.guard.ts │ │ │ └── x-api-key │ │ │ │ ├── api-key.x-api-key.guard.ts │ │ │ │ └── api-key.x-api-key.strategy.ts │ │ ├── interfaces │ │ │ ├── api-key.interface.ts │ │ │ └── api-key.service.interface.ts │ │ ├── repository │ │ │ ├── api-key.repository.module.ts │ │ │ ├── entities │ │ │ │ └── api-key.entity.ts │ │ │ └── repositories │ │ │ │ └── api-key.repository.ts │ │ ├── serializations │ │ │ ├── api-key.create.serialization.ts │ │ │ ├── api-key.get.serialization.ts │ │ │ ├── api-key.list.serialization.ts │ │ │ └── api-key.reset.serialization.ts │ │ ├── services │ │ │ └── api-key.service.ts │ │ └── tasks │ │ │ └── api-key.inactive.task.ts │ ├── auth │ │ ├── auth.module.ts │ │ ├── constants │ │ │ └── auth.status-code.constant.ts │ │ ├── decorators │ │ │ └── auth.jwt.decorator.ts │ │ ├── guards │ │ │ ├── jwt-access │ │ │ │ ├── auth.jwt-access.guard.ts │ │ │ │ └── auth.jwt-access.strategy.ts │ │ │ └── jwt-refresh │ │ │ │ ├── auth.jwt-refresh.guard.ts │ │ │ │ └── auth.jwt-refresh.strategy.ts │ │ ├── interfaces │ │ │ ├── auth.interface.ts │ │ │ └── auth.service.interface.ts │ │ └── services │ │ │ └── auth.service.ts │ ├── aws │ │ ├── aws.module.ts │ │ ├── constants │ │ │ └── aws.s3.constant.ts │ │ ├── interfaces │ │ │ ├── aws.interface.ts │ │ │ └── aws.s3-service.interface.ts │ │ ├── serializations │ │ │ ├── aws.s3-multipart.serialization.ts │ │ │ └── aws.s3.serialization.ts │ │ └── services │ │ │ └── aws.s3.service.ts │ ├── common.module.ts │ ├── dashboard │ │ ├── constants │ │ │ └── dashboard.doc.constant.ts │ │ ├── dashboard.module.ts │ │ ├── dtos │ │ │ └── dashboard.ts │ │ ├── interfaces │ │ │ ├── dashboard.interface.ts │ │ │ └── dashboard.service.interface.ts │ │ ├── serializations │ │ │ ├── dashboard.month-and-year.serialization.ts │ │ │ └── dashboard.serialization.ts │ │ └── services │ │ │ └── dashboard.service.ts │ ├── database │ │ ├── abstracts │ │ │ ├── database.base-entity.abstract.ts │ │ │ ├── database.base-repository.abstract.ts │ │ │ └── mongo │ │ │ │ ├── entities │ │ │ │ ├── database.mongo.object-id.entity.abstract.ts │ │ │ │ └── database.mongo.uuid.entity.abstract.ts │ │ │ │ └── repositories │ │ │ │ ├── database.mongo.object-id.repository.abstract.ts │ │ │ │ └── database.mongo.uuid.repository.abstract.ts │ │ ├── constants │ │ │ ├── database.constant.ts │ │ │ └── database.function.constant.ts │ │ ├── database.options.module.ts │ │ ├── decorators │ │ │ └── database.decorator.ts │ │ ├── interfaces │ │ │ ├── database.interface.ts │ │ │ └── database.options-service.interface.ts │ │ └── services │ │ │ └── database.options.service.ts │ ├── debugger │ │ ├── constants │ │ │ └── debugger.constant.ts │ │ ├── debugger.module.ts │ │ ├── debugger.options.module.ts │ │ ├── interfaces │ │ │ ├── debugger.interface.ts │ │ │ ├── debugger.options-service.interface.ts │ │ │ └── debugger.service.interface.ts │ │ ├── middleware │ │ │ ├── debugger.middleware.module.ts │ │ │ └── http │ │ │ │ └── debugger.http.middleware.ts │ │ └── services │ │ │ ├── debugger.options.service.ts │ │ │ └── debugger.service.ts │ ├── doc │ │ ├── constants │ │ │ └── doc.enum.constant.ts │ │ ├── decorators │ │ │ └── doc.decorator.ts │ │ └── interfaces │ │ │ └── doc.interface.ts │ ├── error │ │ ├── constants │ │ │ ├── error.constant.ts │ │ │ ├── error.enum.constant.ts │ │ │ └── error.status-code.constant.ts │ │ ├── decorators │ │ │ └── error.decorator.ts │ │ ├── error.module.ts │ │ ├── filters │ │ │ └── error.http.filter.ts │ │ ├── guards │ │ │ └── error.meta.guard.ts │ │ ├── interfaces │ │ │ └── error.interface.ts │ │ └── serializations │ │ │ └── error.serialization.ts │ ├── file │ │ ├── constants │ │ │ ├── file.constant.ts │ │ │ ├── file.enum.constant.ts │ │ │ └── file.status-code.constant.ts │ │ ├── decorators │ │ │ └── file.decorator.ts │ │ ├── dtos │ │ │ ├── file.multiple.dto.ts │ │ │ └── file.single.dto.ts │ │ ├── interceptors │ │ │ ├── file.custom-max-files.interceptor.ts │ │ │ └── file.custom-max-size.interceptor.ts │ │ ├── interfaces │ │ │ └── file.interface.ts │ │ └── pipes │ │ │ ├── file.extract.pipe.ts │ │ │ ├── file.max-files.pipe.ts │ │ │ ├── file.required.pipe.ts │ │ │ ├── file.size.pipe.ts │ │ │ ├── file.type.pipe.ts │ │ │ └── file.validation.pipe.ts │ ├── helper │ │ ├── constants │ │ │ ├── helper.enum.constant.ts │ │ │ └── helper.function.constant.ts │ │ ├── helper.module.ts │ │ ├── interfaces │ │ │ ├── helper.array-service.interface.ts │ │ │ ├── helper.date-service.interface.ts │ │ │ ├── helper.encryption-service.interface.ts │ │ │ ├── helper.file-service.interface.ts │ │ │ ├── helper.hash-service.interface.ts │ │ │ ├── helper.interface.ts │ │ │ ├── helper.number-service.interface.ts │ │ │ └── helper.string-service.interface.ts │ │ └── services │ │ │ ├── helper.array.service.ts │ │ │ ├── helper.date.service.ts │ │ │ ├── helper.encryption.service.ts │ │ │ ├── helper.file.service.ts │ │ │ ├── helper.hash.service.ts │ │ │ ├── helper.number.service.ts │ │ │ └── helper.string.service.ts │ ├── logger │ │ ├── constants │ │ │ ├── logger.constant.ts │ │ │ └── logger.enum.constant.ts │ │ ├── decorators │ │ │ └── logger.decorator.ts │ │ ├── dtos │ │ │ └── logger.create.dto.ts │ │ ├── interceptors │ │ │ └── logger.interceptor.ts │ │ ├── interfaces │ │ │ ├── logger.interface.ts │ │ │ └── logger.service.interface.ts │ │ ├── logger.module.ts │ │ ├── repository │ │ │ ├── entities │ │ │ │ └── logger.entity.ts │ │ │ ├── logger.repository.module.ts │ │ │ └── repositories │ │ │ │ └── logger.repository.ts │ │ └── services │ │ │ └── logger.service.ts │ ├── message │ │ ├── constants │ │ │ └── message.enum.constant.ts │ │ ├── controllers │ │ │ └── message.public.controller.ts │ │ ├── docs │ │ │ └── message.enum.doc.ts │ │ ├── interfaces │ │ │ ├── message.interface.ts │ │ │ └── message.service.interface.ts │ │ ├── message.module.ts │ │ ├── middleware │ │ │ ├── custom-language │ │ │ │ └── message.custom-language.middleware.ts │ │ │ └── message.middleware.module.ts │ │ ├── serializations │ │ │ └── message.language.serialization.ts │ │ └── services │ │ │ └── message.service.ts │ ├── pagination │ │ ├── constants │ │ │ ├── pagination.constant.ts │ │ │ └── pagination.enum.constant.ts │ │ ├── decorators │ │ │ └── pagination.decorator.ts │ │ ├── dtos │ │ │ └── pagination.list.dto.ts │ │ ├── interfaces │ │ │ ├── pagination.interface.ts │ │ │ └── pagination.service.interface.ts │ │ ├── pagination.module.ts │ │ ├── pipes │ │ │ ├── pagination.filter-contain.pipe.ts │ │ │ ├── pagination.filter-date.pipe.ts │ │ │ ├── pagination.filter-equal-object-id.pipe.ts │ │ │ ├── pagination.filter-equal.pipe.ts │ │ │ ├── pagination.filter-in-boolean.pipe.ts │ │ │ ├── pagination.filter-in-enum.pipe.ts │ │ │ ├── pagination.order.pipe.ts │ │ │ ├── pagination.paging.pipe.ts │ │ │ └── pagination.search.pipe.ts │ │ └── services │ │ │ └── pagination.service.ts │ ├── policy │ │ ├── constants │ │ │ ├── policy.constant.ts │ │ │ ├── policy.enum.constant.ts │ │ │ └── policy.status-code.constant.ts │ │ ├── decorators │ │ │ └── policy.decorator.ts │ │ ├── factories │ │ │ └── policy.ability.factory.ts │ │ ├── guards │ │ │ └── policy.ability.guard.ts │ │ ├── interfaces │ │ │ └── policy.interface.ts │ │ └── policy.module.ts │ ├── request │ │ ├── constants │ │ │ ├── request.constant.ts │ │ │ ├── request.enum.constant.ts │ │ │ └── request.status-code.constant.ts │ │ ├── decorators │ │ │ └── request.decorator.ts │ │ ├── guards │ │ │ └── request.param.guard.ts │ │ ├── interceptors │ │ │ ├── request.timeout.interceptor.ts │ │ │ ├── request.timestamp.interceptor.ts │ │ │ └── request.user-agent.interceptor.ts │ │ ├── interfaces │ │ │ └── request.interface.ts │ │ ├── middleware │ │ │ ├── body-parser │ │ │ │ └── request.body-parser.middleware.ts │ │ │ ├── cors │ │ │ │ └── request.cors.middleware.ts │ │ │ ├── helmet │ │ │ │ └── request.helmet.middleware.ts │ │ │ ├── id │ │ │ │ └── request.id.middleware.ts │ │ │ ├── request.middleware.module.ts │ │ │ ├── timestamp │ │ │ │ └── request.timestamp.middleware.ts │ │ │ ├── timezone │ │ │ │ └── request.timezone.middleware.ts │ │ │ ├── user-agent │ │ │ │ └── request.user-agent.middleware.ts │ │ │ └── version │ │ │ │ └── request.version.middleware.ts │ │ ├── request.module.ts │ │ ├── serializations │ │ │ └── request.pagination.serialization.ts │ │ └── validations │ │ │ ├── request.is-password-medium.validation.ts │ │ │ ├── request.is-password-strong.validation.ts │ │ │ ├── request.is-password-weak.validation.ts │ │ │ ├── request.is-start-with.validation.ts │ │ │ ├── request.max-binary-file.validation.ts │ │ │ ├── request.max-date-today.validation.ts │ │ │ ├── request.max-greater-than-equal.validation.ts │ │ │ ├── request.max-greater-than.validation.ts │ │ │ ├── request.min-date-today.validation.ts │ │ │ ├── request.min-greater-than-equal.validation.ts │ │ │ ├── request.min-greater-than.validation.ts │ │ │ ├── request.mobile-number-allowed.validation.ts │ │ │ ├── request.only-digits.validation.ts │ │ │ ├── request.safe-string.validation.ts │ │ │ └── request.skip.validation.ts │ ├── response │ │ ├── constants │ │ │ └── response.constant.ts │ │ ├── decorators │ │ │ └── response.decorator.ts │ │ ├── interceptors │ │ │ ├── response.custom-headers.interceptor.ts │ │ │ ├── response.default.interceptor.ts │ │ │ ├── response.excel.interceptor.ts │ │ │ └── response.paging.interceptor.ts │ │ ├── interfaces │ │ │ └── response.interface.ts │ │ ├── middleware │ │ │ ├── response.middleware.module.ts │ │ │ └── time │ │ │ │ └── response.time.middleware.ts │ │ ├── response.module.ts │ │ └── serializations │ │ │ ├── response.default.serialization.ts │ │ │ ├── response.id.serialization.ts │ │ │ └── response.paging.serialization.ts │ ├── role │ │ ├── constants │ │ │ ├── role.constant.ts │ │ │ ├── role.doc.constant.ts │ │ │ ├── role.enum.constant.ts │ │ │ ├── role.list.constant.ts │ │ │ └── role.status-code.constant.ts │ │ ├── controllers │ │ │ └── role.admin.controller.ts │ │ ├── decorators │ │ │ ├── role.admin.decorator.ts │ │ │ └── role.decorator.ts │ │ ├── docs │ │ │ └── role.admin.doc.ts │ │ ├── dtos │ │ │ ├── role.create.dto.ts │ │ │ ├── role.request.dto.ts │ │ │ ├── role.update-permission.dto.ts │ │ │ └── role.update.dto.ts │ │ ├── guards │ │ │ ├── payload │ │ │ │ └── role.payload.type.guard.ts │ │ │ ├── role.active.guard.ts │ │ │ ├── role.not-found.guard.ts │ │ │ └── role.put-to-request.guard.ts │ │ ├── interfaces │ │ │ └── role.service.interface.ts │ │ ├── repository │ │ │ ├── entities │ │ │ │ └── role.entity.ts │ │ │ ├── repositories │ │ │ │ └── role.repository.ts │ │ │ └── role.repository.module.ts │ │ ├── role.module.ts │ │ ├── serializations │ │ │ ├── role.get.serialization.ts │ │ │ └── role.list.serialization.ts │ │ └── services │ │ │ └── role.service.ts │ └── setting │ │ ├── constants │ │ ├── setting.doc.constant.ts │ │ ├── setting.enum.constant.ts │ │ ├── setting.list.constant.ts │ │ └── setting.status-code.constant.ts │ │ ├── controllers │ │ ├── setting.admin.controller.ts │ │ └── setting.public.controller.ts │ │ ├── decorators │ │ ├── setting.admin.decorator.ts │ │ ├── setting.decorator.ts │ │ └── setting.public.decorator.ts │ │ ├── docs │ │ ├── setting.admin.doc.ts │ │ └── setting.doc.ts │ │ ├── dtos │ │ ├── setting.create.dto.ts │ │ ├── setting.request.dto.ts │ │ └── setting.update-value.dto.ts │ │ ├── guards │ │ ├── setting.not-found.guard.ts │ │ └── setting.put-to-request.guard.ts │ │ ├── interfaces │ │ └── setting.service.interface.ts │ │ ├── middleware │ │ ├── maintenance │ │ │ └── setting.maintenance.middleware.ts │ │ └── setting.middleware.module.ts │ │ ├── repository │ │ ├── entities │ │ │ └── setting.entity.ts │ │ ├── repositories │ │ │ └── setting.repository.ts │ │ └── setting.repository.module.ts │ │ ├── serializations │ │ ├── setting.get.serialization.ts │ │ └── setting.list.serialization.ts │ │ ├── services │ │ └── setting.service.ts │ │ └── setting.module.ts ├── configs │ ├── app.config.ts │ ├── auth.config.ts │ ├── aws.config.ts │ ├── database.config.ts │ ├── debugger.config.ts │ ├── doc.config.ts │ ├── file.config.ts │ ├── helper.config.ts │ ├── index.ts │ ├── kafka.config.ts │ ├── message.config.ts │ ├── request.config.ts │ └── user.config.ts ├── health │ ├── controllers │ │ └── health.public.controller.ts │ ├── docs │ │ └── health.doc.ts │ ├── health.module.ts │ ├── indicators │ │ └── health.aws-s3.indicator.ts │ └── serializations │ │ └── health.serialization.ts ├── jobs │ ├── jobs.module.ts │ └── router │ │ └── jobs.router.module.ts ├── kafka.ts ├── kafka │ ├── constants │ │ ├── kafka.constant.ts │ │ ├── kafka.enum.constant.ts │ │ └── kafka.topic.constant.ts │ ├── controllers │ │ ├── kafka.controller.ts │ │ └── kafka.test.controller.ts │ ├── decorators │ │ └── kafka.decorator.ts │ ├── dtos │ │ └── kafka.dto.ts │ ├── error │ │ ├── exceptions │ │ │ └── kafka.http-exception.ts │ │ └── filters │ │ │ └── kafka.error.filter.ts │ ├── interceptors │ │ ├── kafka.commit-offset-first.interceptor.ts │ │ ├── kafka.response.interceptor.ts │ │ └── kafka.response.timeout.interceptor.ts │ ├── interfaces │ │ ├── kafka.admin-service.interface.ts │ │ ├── kafka.interface.ts │ │ └── kafka.service.interface.ts │ ├── kafka.admin.module.ts │ ├── kafka.common.module.ts │ ├── kafka.module.ts │ ├── pipes │ │ └── kafka.validation.pipe.ts │ ├── router │ │ └── kafka.router.module.ts │ └── services │ │ ├── kafka.admin.service.ts │ │ └── kafka.service.ts ├── languages │ ├── en │ │ ├── apiKey.json │ │ ├── app.json │ │ ├── auth.json │ │ ├── file.json │ │ ├── health.json │ │ ├── http.json │ │ ├── message.json │ │ ├── middleware.json │ │ ├── request.json │ │ ├── role.json │ │ └── setting.json │ └── id │ │ ├── app.json │ │ └── request.json ├── main.ts ├── migration │ ├── migration.module.ts │ └── seeds │ │ ├── migration.kafka-topics.seed.ts │ │ ├── migration.role.seed.ts │ │ └── migration.setting.seed.ts ├── modules │ ├── .gitignore │ └── user │ │ ├── dtos │ │ └── user.request.dto.ts │ │ └── serializations │ │ └── user.payload.serialization.ts ├── router │ ├── router.module.ts │ └── routes │ │ ├── routes.admin.module.ts │ │ ├── routes.auth.module.ts │ │ ├── routes.public.module.ts │ │ └── routes.user.module.ts └── swagger.ts ├── test ├── api-key │ └── api-key.service.spec.ts ├── auth │ └── auth.service.spec.ts ├── aws │ └── aws.service.spec.ts ├── coverage │ ├── clover.xml │ ├── coverage-final.json │ ├── lcov-report │ │ ├── base.css │ │ ├── block-navigation.js │ │ ├── favicon.png │ │ ├── index.html │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── sort-arrow-sprite.png │ │ └── sorter.js │ └── lcov.info ├── dashboard │ └── dashboard.service.spec.ts ├── database │ └── database.options.service.spec.ts ├── debugger │ ├── debugger.options.service.spec.ts │ └── debugger.service.spec.ts ├── e2e │ ├── jest.json │ └── user │ │ └── user.constant.ts ├── helper │ ├── helper.array.service.spec.ts │ ├── helper.date.service.spec.ts │ ├── helper.encryption.service.spec.ts │ ├── helper.file.service.spec.ts │ ├── helper.hash.service.spec.ts │ ├── helper.number.service.spec.ts │ └── helper.string.service.spec.ts ├── integration │ └── kafka │ │ ├── kafka.constant.ts │ │ └── kafka.integration.spec.ts ├── jest.json ├── logger │ └── logger.service.spec.ts ├── message │ └── message.service.spec.ts ├── pagination │ └── pagination.service.spec.ts ├── role │ └── role.service.spec.ts └── setting │ └── setting.service.spec.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/README.md -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/cspell.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/dockerfile -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/constants/app.constant.ts: -------------------------------------------------------------------------------- 1 | export const APP_LANGUAGE = 'en'; 2 | -------------------------------------------------------------------------------- /src/app/constants/app.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/app/constants/app.enum.constant.ts -------------------------------------------------------------------------------- /src/app/controllers/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/app/controllers/app.controller.ts -------------------------------------------------------------------------------- /src/app/docs/app.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/app/docs/app.doc.ts -------------------------------------------------------------------------------- /src/app/serializations/app.hello.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/app/serializations/app.hello.serialization.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/common/api-key/api-key.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/api-key.module.ts -------------------------------------------------------------------------------- /src/common/api-key/constants/api-key.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/constants/api-key.constant.ts -------------------------------------------------------------------------------- /src/common/api-key/constants/api-key.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/constants/api-key.doc.ts -------------------------------------------------------------------------------- /src/common/api-key/constants/api-key.list.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/constants/api-key.list.constant.ts -------------------------------------------------------------------------------- /src/common/api-key/constants/api-key.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/constants/api-key.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/api-key/controllers/api-key.admin.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/controllers/api-key.admin.controller.ts -------------------------------------------------------------------------------- /src/common/api-key/controllers/api-key.user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/controllers/api-key.user.controller.ts -------------------------------------------------------------------------------- /src/common/api-key/decorators/api-key.admin.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/decorators/api-key.admin.decorator.ts -------------------------------------------------------------------------------- /src/common/api-key/decorators/api-key.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/decorators/api-key.decorator.ts -------------------------------------------------------------------------------- /src/common/api-key/decorators/api-key.user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/decorators/api-key.user.decorator.ts -------------------------------------------------------------------------------- /src/common/api-key/docs/api-key.admin.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/docs/api-key.admin.doc.ts -------------------------------------------------------------------------------- /src/common/api-key/dtos/api-key.active.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/dtos/api-key.active.dto.ts -------------------------------------------------------------------------------- /src/common/api-key/dtos/api-key.create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/dtos/api-key.create.dto.ts -------------------------------------------------------------------------------- /src/common/api-key/dtos/api-key.request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/dtos/api-key.request.dto.ts -------------------------------------------------------------------------------- /src/common/api-key/dtos/api-key.update-date.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/dtos/api-key.update-date.dto.ts -------------------------------------------------------------------------------- /src/common/api-key/dtos/api-key.update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/dtos/api-key.update.dto.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/api-key.active.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/api-key.active.guard.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/api-key.expired.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/api-key.expired.guard.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/api-key.not-found.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/api-key.not-found.guard.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/api-key.put-to-request.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/api-key.put-to-request.guard.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/payload/api-key.put-to-request.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/payload/api-key.put-to-request.guard.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/x-api-key/api-key.x-api-key.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/x-api-key/api-key.x-api-key.guard.ts -------------------------------------------------------------------------------- /src/common/api-key/guards/x-api-key/api-key.x-api-key.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/guards/x-api-key/api-key.x-api-key.strategy.ts -------------------------------------------------------------------------------- /src/common/api-key/interfaces/api-key.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/interfaces/api-key.interface.ts -------------------------------------------------------------------------------- /src/common/api-key/interfaces/api-key.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/interfaces/api-key.service.interface.ts -------------------------------------------------------------------------------- /src/common/api-key/repository/api-key.repository.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/repository/api-key.repository.module.ts -------------------------------------------------------------------------------- /src/common/api-key/repository/entities/api-key.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/repository/entities/api-key.entity.ts -------------------------------------------------------------------------------- /src/common/api-key/repository/repositories/api-key.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/repository/repositories/api-key.repository.ts -------------------------------------------------------------------------------- /src/common/api-key/serializations/api-key.create.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/serializations/api-key.create.serialization.ts -------------------------------------------------------------------------------- /src/common/api-key/serializations/api-key.get.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/serializations/api-key.get.serialization.ts -------------------------------------------------------------------------------- /src/common/api-key/serializations/api-key.list.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/serializations/api-key.list.serialization.ts -------------------------------------------------------------------------------- /src/common/api-key/serializations/api-key.reset.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/serializations/api-key.reset.serialization.ts -------------------------------------------------------------------------------- /src/common/api-key/services/api-key.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/services/api-key.service.ts -------------------------------------------------------------------------------- /src/common/api-key/tasks/api-key.inactive.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/api-key/tasks/api-key.inactive.task.ts -------------------------------------------------------------------------------- /src/common/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/auth.module.ts -------------------------------------------------------------------------------- /src/common/auth/constants/auth.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/constants/auth.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/auth/decorators/auth.jwt.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/decorators/auth.jwt.decorator.ts -------------------------------------------------------------------------------- /src/common/auth/guards/jwt-access/auth.jwt-access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/guards/jwt-access/auth.jwt-access.guard.ts -------------------------------------------------------------------------------- /src/common/auth/guards/jwt-access/auth.jwt-access.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/guards/jwt-access/auth.jwt-access.strategy.ts -------------------------------------------------------------------------------- /src/common/auth/guards/jwt-refresh/auth.jwt-refresh.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/guards/jwt-refresh/auth.jwt-refresh.guard.ts -------------------------------------------------------------------------------- /src/common/auth/guards/jwt-refresh/auth.jwt-refresh.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/guards/jwt-refresh/auth.jwt-refresh.strategy.ts -------------------------------------------------------------------------------- /src/common/auth/interfaces/auth.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/interfaces/auth.interface.ts -------------------------------------------------------------------------------- /src/common/auth/interfaces/auth.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/interfaces/auth.service.interface.ts -------------------------------------------------------------------------------- /src/common/auth/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/auth/services/auth.service.ts -------------------------------------------------------------------------------- /src/common/aws/aws.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/aws/aws.module.ts -------------------------------------------------------------------------------- /src/common/aws/constants/aws.s3.constant.ts: -------------------------------------------------------------------------------- 1 | export const AwsS3MaxPartNumber = 10000; 2 | -------------------------------------------------------------------------------- /src/common/aws/interfaces/aws.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/aws/interfaces/aws.interface.ts -------------------------------------------------------------------------------- /src/common/aws/interfaces/aws.s3-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/aws/interfaces/aws.s3-service.interface.ts -------------------------------------------------------------------------------- /src/common/aws/serializations/aws.s3-multipart.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/aws/serializations/aws.s3-multipart.serialization.ts -------------------------------------------------------------------------------- /src/common/aws/serializations/aws.s3.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/aws/serializations/aws.s3.serialization.ts -------------------------------------------------------------------------------- /src/common/aws/services/aws.s3.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/aws/services/aws.s3.service.ts -------------------------------------------------------------------------------- /src/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/common.module.ts -------------------------------------------------------------------------------- /src/common/dashboard/constants/dashboard.doc.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/constants/dashboard.doc.constant.ts -------------------------------------------------------------------------------- /src/common/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /src/common/dashboard/dtos/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/dtos/dashboard.ts -------------------------------------------------------------------------------- /src/common/dashboard/interfaces/dashboard.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/interfaces/dashboard.interface.ts -------------------------------------------------------------------------------- /src/common/dashboard/interfaces/dashboard.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/interfaces/dashboard.service.interface.ts -------------------------------------------------------------------------------- /src/common/dashboard/serializations/dashboard.month-and-year.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/serializations/dashboard.month-and-year.serialization.ts -------------------------------------------------------------------------------- /src/common/dashboard/serializations/dashboard.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/serializations/dashboard.serialization.ts -------------------------------------------------------------------------------- /src/common/dashboard/services/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/dashboard/services/dashboard.service.ts -------------------------------------------------------------------------------- /src/common/database/abstracts/database.base-entity.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/abstracts/database.base-entity.abstract.ts -------------------------------------------------------------------------------- /src/common/database/abstracts/database.base-repository.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/abstracts/database.base-repository.abstract.ts -------------------------------------------------------------------------------- /src/common/database/abstracts/mongo/entities/database.mongo.object-id.entity.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/abstracts/mongo/entities/database.mongo.object-id.entity.abstract.ts -------------------------------------------------------------------------------- /src/common/database/abstracts/mongo/entities/database.mongo.uuid.entity.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/abstracts/mongo/entities/database.mongo.uuid.entity.abstract.ts -------------------------------------------------------------------------------- /src/common/database/abstracts/mongo/repositories/database.mongo.object-id.repository.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/abstracts/mongo/repositories/database.mongo.object-id.repository.abstract.ts -------------------------------------------------------------------------------- /src/common/database/abstracts/mongo/repositories/database.mongo.uuid.repository.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/abstracts/mongo/repositories/database.mongo.uuid.repository.abstract.ts -------------------------------------------------------------------------------- /src/common/database/constants/database.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/constants/database.constant.ts -------------------------------------------------------------------------------- /src/common/database/constants/database.function.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/constants/database.function.constant.ts -------------------------------------------------------------------------------- /src/common/database/database.options.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/database.options.module.ts -------------------------------------------------------------------------------- /src/common/database/decorators/database.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/decorators/database.decorator.ts -------------------------------------------------------------------------------- /src/common/database/interfaces/database.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/interfaces/database.interface.ts -------------------------------------------------------------------------------- /src/common/database/interfaces/database.options-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/interfaces/database.options-service.interface.ts -------------------------------------------------------------------------------- /src/common/database/services/database.options.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/database/services/database.options.service.ts -------------------------------------------------------------------------------- /src/common/debugger/constants/debugger.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/constants/debugger.constant.ts -------------------------------------------------------------------------------- /src/common/debugger/debugger.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/debugger.module.ts -------------------------------------------------------------------------------- /src/common/debugger/debugger.options.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/debugger.options.module.ts -------------------------------------------------------------------------------- /src/common/debugger/interfaces/debugger.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/interfaces/debugger.interface.ts -------------------------------------------------------------------------------- /src/common/debugger/interfaces/debugger.options-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/interfaces/debugger.options-service.interface.ts -------------------------------------------------------------------------------- /src/common/debugger/interfaces/debugger.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/interfaces/debugger.service.interface.ts -------------------------------------------------------------------------------- /src/common/debugger/middleware/debugger.middleware.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/middleware/debugger.middleware.module.ts -------------------------------------------------------------------------------- /src/common/debugger/middleware/http/debugger.http.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/middleware/http/debugger.http.middleware.ts -------------------------------------------------------------------------------- /src/common/debugger/services/debugger.options.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/services/debugger.options.service.ts -------------------------------------------------------------------------------- /src/common/debugger/services/debugger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/debugger/services/debugger.service.ts -------------------------------------------------------------------------------- /src/common/doc/constants/doc.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/doc/constants/doc.enum.constant.ts -------------------------------------------------------------------------------- /src/common/doc/decorators/doc.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/doc/decorators/doc.decorator.ts -------------------------------------------------------------------------------- /src/common/doc/interfaces/doc.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/doc/interfaces/doc.interface.ts -------------------------------------------------------------------------------- /src/common/error/constants/error.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/constants/error.constant.ts -------------------------------------------------------------------------------- /src/common/error/constants/error.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/constants/error.enum.constant.ts -------------------------------------------------------------------------------- /src/common/error/constants/error.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/constants/error.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/error/decorators/error.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/decorators/error.decorator.ts -------------------------------------------------------------------------------- /src/common/error/error.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/error.module.ts -------------------------------------------------------------------------------- /src/common/error/filters/error.http.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/filters/error.http.filter.ts -------------------------------------------------------------------------------- /src/common/error/guards/error.meta.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/guards/error.meta.guard.ts -------------------------------------------------------------------------------- /src/common/error/interfaces/error.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/interfaces/error.interface.ts -------------------------------------------------------------------------------- /src/common/error/serializations/error.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/error/serializations/error.serialization.ts -------------------------------------------------------------------------------- /src/common/file/constants/file.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/constants/file.constant.ts -------------------------------------------------------------------------------- /src/common/file/constants/file.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/constants/file.enum.constant.ts -------------------------------------------------------------------------------- /src/common/file/constants/file.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/constants/file.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/file/decorators/file.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/decorators/file.decorator.ts -------------------------------------------------------------------------------- /src/common/file/dtos/file.multiple.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/dtos/file.multiple.dto.ts -------------------------------------------------------------------------------- /src/common/file/dtos/file.single.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/dtos/file.single.dto.ts -------------------------------------------------------------------------------- /src/common/file/interceptors/file.custom-max-files.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/interceptors/file.custom-max-files.interceptor.ts -------------------------------------------------------------------------------- /src/common/file/interceptors/file.custom-max-size.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/interceptors/file.custom-max-size.interceptor.ts -------------------------------------------------------------------------------- /src/common/file/interfaces/file.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/interfaces/file.interface.ts -------------------------------------------------------------------------------- /src/common/file/pipes/file.extract.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/pipes/file.extract.pipe.ts -------------------------------------------------------------------------------- /src/common/file/pipes/file.max-files.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/pipes/file.max-files.pipe.ts -------------------------------------------------------------------------------- /src/common/file/pipes/file.required.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/pipes/file.required.pipe.ts -------------------------------------------------------------------------------- /src/common/file/pipes/file.size.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/pipes/file.size.pipe.ts -------------------------------------------------------------------------------- /src/common/file/pipes/file.type.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/pipes/file.type.pipe.ts -------------------------------------------------------------------------------- /src/common/file/pipes/file.validation.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/file/pipes/file.validation.pipe.ts -------------------------------------------------------------------------------- /src/common/helper/constants/helper.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/constants/helper.enum.constant.ts -------------------------------------------------------------------------------- /src/common/helper/constants/helper.function.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/constants/helper.function.constant.ts -------------------------------------------------------------------------------- /src/common/helper/helper.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/helper.module.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.array-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.array-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.date-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.date-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.encryption-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.encryption-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.file-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.file-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.hash-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.hash-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.number-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.number-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/interfaces/helper.string-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/interfaces/helper.string-service.interface.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.array.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.array.service.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.date.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.date.service.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.encryption.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.encryption.service.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.file.service.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.hash.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.hash.service.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.number.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.number.service.ts -------------------------------------------------------------------------------- /src/common/helper/services/helper.string.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/helper/services/helper.string.service.ts -------------------------------------------------------------------------------- /src/common/logger/constants/logger.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/constants/logger.constant.ts -------------------------------------------------------------------------------- /src/common/logger/constants/logger.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/constants/logger.enum.constant.ts -------------------------------------------------------------------------------- /src/common/logger/decorators/logger.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/decorators/logger.decorator.ts -------------------------------------------------------------------------------- /src/common/logger/dtos/logger.create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/dtos/logger.create.dto.ts -------------------------------------------------------------------------------- /src/common/logger/interceptors/logger.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/interceptors/logger.interceptor.ts -------------------------------------------------------------------------------- /src/common/logger/interfaces/logger.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/interfaces/logger.interface.ts -------------------------------------------------------------------------------- /src/common/logger/interfaces/logger.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/interfaces/logger.service.interface.ts -------------------------------------------------------------------------------- /src/common/logger/logger.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/logger.module.ts -------------------------------------------------------------------------------- /src/common/logger/repository/entities/logger.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/repository/entities/logger.entity.ts -------------------------------------------------------------------------------- /src/common/logger/repository/logger.repository.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/repository/logger.repository.module.ts -------------------------------------------------------------------------------- /src/common/logger/repository/repositories/logger.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/repository/repositories/logger.repository.ts -------------------------------------------------------------------------------- /src/common/logger/services/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/logger/services/logger.service.ts -------------------------------------------------------------------------------- /src/common/message/constants/message.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/constants/message.enum.constant.ts -------------------------------------------------------------------------------- /src/common/message/controllers/message.public.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/controllers/message.public.controller.ts -------------------------------------------------------------------------------- /src/common/message/docs/message.enum.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/docs/message.enum.doc.ts -------------------------------------------------------------------------------- /src/common/message/interfaces/message.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/interfaces/message.interface.ts -------------------------------------------------------------------------------- /src/common/message/interfaces/message.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/interfaces/message.service.interface.ts -------------------------------------------------------------------------------- /src/common/message/message.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/message.module.ts -------------------------------------------------------------------------------- /src/common/message/middleware/custom-language/message.custom-language.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/middleware/custom-language/message.custom-language.middleware.ts -------------------------------------------------------------------------------- /src/common/message/middleware/message.middleware.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/middleware/message.middleware.module.ts -------------------------------------------------------------------------------- /src/common/message/serializations/message.language.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/serializations/message.language.serialization.ts -------------------------------------------------------------------------------- /src/common/message/services/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/message/services/message.service.ts -------------------------------------------------------------------------------- /src/common/pagination/constants/pagination.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/constants/pagination.constant.ts -------------------------------------------------------------------------------- /src/common/pagination/constants/pagination.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/constants/pagination.enum.constant.ts -------------------------------------------------------------------------------- /src/common/pagination/decorators/pagination.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/decorators/pagination.decorator.ts -------------------------------------------------------------------------------- /src/common/pagination/dtos/pagination.list.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/dtos/pagination.list.dto.ts -------------------------------------------------------------------------------- /src/common/pagination/interfaces/pagination.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/interfaces/pagination.interface.ts -------------------------------------------------------------------------------- /src/common/pagination/interfaces/pagination.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/interfaces/pagination.service.interface.ts -------------------------------------------------------------------------------- /src/common/pagination/pagination.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pagination.module.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.filter-contain.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.filter-contain.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.filter-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.filter-date.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.filter-equal-object-id.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.filter-equal-object-id.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.filter-equal.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.filter-equal.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.filter-in-boolean.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.filter-in-boolean.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.filter-in-enum.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.filter-in-enum.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.order.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.order.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.paging.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.paging.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/pipes/pagination.search.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/pipes/pagination.search.pipe.ts -------------------------------------------------------------------------------- /src/common/pagination/services/pagination.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/pagination/services/pagination.service.ts -------------------------------------------------------------------------------- /src/common/policy/constants/policy.constant.ts: -------------------------------------------------------------------------------- 1 | export const POLICY_RULE_META_KEY = 'PolicyRuleMetaKey'; 2 | -------------------------------------------------------------------------------- /src/common/policy/constants/policy.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/constants/policy.enum.constant.ts -------------------------------------------------------------------------------- /src/common/policy/constants/policy.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/constants/policy.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/policy/decorators/policy.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/decorators/policy.decorator.ts -------------------------------------------------------------------------------- /src/common/policy/factories/policy.ability.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/factories/policy.ability.factory.ts -------------------------------------------------------------------------------- /src/common/policy/guards/policy.ability.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/guards/policy.ability.guard.ts -------------------------------------------------------------------------------- /src/common/policy/interfaces/policy.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/interfaces/policy.interface.ts -------------------------------------------------------------------------------- /src/common/policy/policy.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/policy/policy.module.ts -------------------------------------------------------------------------------- /src/common/request/constants/request.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/constants/request.constant.ts -------------------------------------------------------------------------------- /src/common/request/constants/request.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/constants/request.enum.constant.ts -------------------------------------------------------------------------------- /src/common/request/constants/request.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/constants/request.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/request/decorators/request.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/decorators/request.decorator.ts -------------------------------------------------------------------------------- /src/common/request/guards/request.param.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/guards/request.param.guard.ts -------------------------------------------------------------------------------- /src/common/request/interceptors/request.timeout.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/interceptors/request.timeout.interceptor.ts -------------------------------------------------------------------------------- /src/common/request/interceptors/request.timestamp.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/interceptors/request.timestamp.interceptor.ts -------------------------------------------------------------------------------- /src/common/request/interceptors/request.user-agent.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/interceptors/request.user-agent.interceptor.ts -------------------------------------------------------------------------------- /src/common/request/interfaces/request.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/interfaces/request.interface.ts -------------------------------------------------------------------------------- /src/common/request/middleware/body-parser/request.body-parser.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/body-parser/request.body-parser.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/cors/request.cors.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/cors/request.cors.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/helmet/request.helmet.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/helmet/request.helmet.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/id/request.id.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/id/request.id.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/request.middleware.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/request.middleware.module.ts -------------------------------------------------------------------------------- /src/common/request/middleware/timestamp/request.timestamp.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/timestamp/request.timestamp.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/timezone/request.timezone.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/timezone/request.timezone.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/user-agent/request.user-agent.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/user-agent/request.user-agent.middleware.ts -------------------------------------------------------------------------------- /src/common/request/middleware/version/request.version.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/middleware/version/request.version.middleware.ts -------------------------------------------------------------------------------- /src/common/request/request.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/request.module.ts -------------------------------------------------------------------------------- /src/common/request/serializations/request.pagination.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/serializations/request.pagination.serialization.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.is-password-medium.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.is-password-medium.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.is-password-strong.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.is-password-strong.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.is-password-weak.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.is-password-weak.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.is-start-with.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.is-start-with.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.max-binary-file.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.max-binary-file.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.max-date-today.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.max-date-today.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.max-greater-than-equal.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.max-greater-than-equal.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.max-greater-than.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.max-greater-than.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.min-date-today.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.min-date-today.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.min-greater-than-equal.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.min-greater-than-equal.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.min-greater-than.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.min-greater-than.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.mobile-number-allowed.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.mobile-number-allowed.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.only-digits.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.only-digits.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.safe-string.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.safe-string.validation.ts -------------------------------------------------------------------------------- /src/common/request/validations/request.skip.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/request/validations/request.skip.validation.ts -------------------------------------------------------------------------------- /src/common/response/constants/response.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/constants/response.constant.ts -------------------------------------------------------------------------------- /src/common/response/decorators/response.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/decorators/response.decorator.ts -------------------------------------------------------------------------------- /src/common/response/interceptors/response.custom-headers.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/interceptors/response.custom-headers.interceptor.ts -------------------------------------------------------------------------------- /src/common/response/interceptors/response.default.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/interceptors/response.default.interceptor.ts -------------------------------------------------------------------------------- /src/common/response/interceptors/response.excel.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/interceptors/response.excel.interceptor.ts -------------------------------------------------------------------------------- /src/common/response/interceptors/response.paging.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/interceptors/response.paging.interceptor.ts -------------------------------------------------------------------------------- /src/common/response/interfaces/response.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/interfaces/response.interface.ts -------------------------------------------------------------------------------- /src/common/response/middleware/response.middleware.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/middleware/response.middleware.module.ts -------------------------------------------------------------------------------- /src/common/response/middleware/time/response.time.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/middleware/time/response.time.middleware.ts -------------------------------------------------------------------------------- /src/common/response/response.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/response.module.ts -------------------------------------------------------------------------------- /src/common/response/serializations/response.default.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/serializations/response.default.serialization.ts -------------------------------------------------------------------------------- /src/common/response/serializations/response.id.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/serializations/response.id.serialization.ts -------------------------------------------------------------------------------- /src/common/response/serializations/response.paging.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/response/serializations/response.paging.serialization.ts -------------------------------------------------------------------------------- /src/common/role/constants/role.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/constants/role.constant.ts -------------------------------------------------------------------------------- /src/common/role/constants/role.doc.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/constants/role.doc.constant.ts -------------------------------------------------------------------------------- /src/common/role/constants/role.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/constants/role.enum.constant.ts -------------------------------------------------------------------------------- /src/common/role/constants/role.list.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/constants/role.list.constant.ts -------------------------------------------------------------------------------- /src/common/role/constants/role.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/constants/role.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/role/controllers/role.admin.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/controllers/role.admin.controller.ts -------------------------------------------------------------------------------- /src/common/role/decorators/role.admin.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/decorators/role.admin.decorator.ts -------------------------------------------------------------------------------- /src/common/role/decorators/role.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/decorators/role.decorator.ts -------------------------------------------------------------------------------- /src/common/role/docs/role.admin.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/docs/role.admin.doc.ts -------------------------------------------------------------------------------- /src/common/role/dtos/role.create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/dtos/role.create.dto.ts -------------------------------------------------------------------------------- /src/common/role/dtos/role.request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/dtos/role.request.dto.ts -------------------------------------------------------------------------------- /src/common/role/dtos/role.update-permission.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/dtos/role.update-permission.dto.ts -------------------------------------------------------------------------------- /src/common/role/dtos/role.update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/dtos/role.update.dto.ts -------------------------------------------------------------------------------- /src/common/role/guards/payload/role.payload.type.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/guards/payload/role.payload.type.guard.ts -------------------------------------------------------------------------------- /src/common/role/guards/role.active.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/guards/role.active.guard.ts -------------------------------------------------------------------------------- /src/common/role/guards/role.not-found.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/guards/role.not-found.guard.ts -------------------------------------------------------------------------------- /src/common/role/guards/role.put-to-request.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/guards/role.put-to-request.guard.ts -------------------------------------------------------------------------------- /src/common/role/interfaces/role.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/interfaces/role.service.interface.ts -------------------------------------------------------------------------------- /src/common/role/repository/entities/role.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/repository/entities/role.entity.ts -------------------------------------------------------------------------------- /src/common/role/repository/repositories/role.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/repository/repositories/role.repository.ts -------------------------------------------------------------------------------- /src/common/role/repository/role.repository.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/repository/role.repository.module.ts -------------------------------------------------------------------------------- /src/common/role/role.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/role.module.ts -------------------------------------------------------------------------------- /src/common/role/serializations/role.get.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/serializations/role.get.serialization.ts -------------------------------------------------------------------------------- /src/common/role/serializations/role.list.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/serializations/role.list.serialization.ts -------------------------------------------------------------------------------- /src/common/role/services/role.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/role/services/role.service.ts -------------------------------------------------------------------------------- /src/common/setting/constants/setting.doc.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/constants/setting.doc.constant.ts -------------------------------------------------------------------------------- /src/common/setting/constants/setting.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/constants/setting.enum.constant.ts -------------------------------------------------------------------------------- /src/common/setting/constants/setting.list.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/constants/setting.list.constant.ts -------------------------------------------------------------------------------- /src/common/setting/constants/setting.status-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/constants/setting.status-code.constant.ts -------------------------------------------------------------------------------- /src/common/setting/controllers/setting.admin.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/controllers/setting.admin.controller.ts -------------------------------------------------------------------------------- /src/common/setting/controllers/setting.public.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/controllers/setting.public.controller.ts -------------------------------------------------------------------------------- /src/common/setting/decorators/setting.admin.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/decorators/setting.admin.decorator.ts -------------------------------------------------------------------------------- /src/common/setting/decorators/setting.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/decorators/setting.decorator.ts -------------------------------------------------------------------------------- /src/common/setting/decorators/setting.public.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/decorators/setting.public.decorator.ts -------------------------------------------------------------------------------- /src/common/setting/docs/setting.admin.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/docs/setting.admin.doc.ts -------------------------------------------------------------------------------- /src/common/setting/docs/setting.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/docs/setting.doc.ts -------------------------------------------------------------------------------- /src/common/setting/dtos/setting.create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/dtos/setting.create.dto.ts -------------------------------------------------------------------------------- /src/common/setting/dtos/setting.request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/dtos/setting.request.dto.ts -------------------------------------------------------------------------------- /src/common/setting/dtos/setting.update-value.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/dtos/setting.update-value.dto.ts -------------------------------------------------------------------------------- /src/common/setting/guards/setting.not-found.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/guards/setting.not-found.guard.ts -------------------------------------------------------------------------------- /src/common/setting/guards/setting.put-to-request.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/guards/setting.put-to-request.guard.ts -------------------------------------------------------------------------------- /src/common/setting/interfaces/setting.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/interfaces/setting.service.interface.ts -------------------------------------------------------------------------------- /src/common/setting/middleware/maintenance/setting.maintenance.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/middleware/maintenance/setting.maintenance.middleware.ts -------------------------------------------------------------------------------- /src/common/setting/middleware/setting.middleware.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/middleware/setting.middleware.module.ts -------------------------------------------------------------------------------- /src/common/setting/repository/entities/setting.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/repository/entities/setting.entity.ts -------------------------------------------------------------------------------- /src/common/setting/repository/repositories/setting.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/repository/repositories/setting.repository.ts -------------------------------------------------------------------------------- /src/common/setting/repository/setting.repository.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/repository/setting.repository.module.ts -------------------------------------------------------------------------------- /src/common/setting/serializations/setting.get.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/serializations/setting.get.serialization.ts -------------------------------------------------------------------------------- /src/common/setting/serializations/setting.list.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/serializations/setting.list.serialization.ts -------------------------------------------------------------------------------- /src/common/setting/services/setting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/services/setting.service.ts -------------------------------------------------------------------------------- /src/common/setting/setting.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/common/setting/setting.module.ts -------------------------------------------------------------------------------- /src/configs/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/app.config.ts -------------------------------------------------------------------------------- /src/configs/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/auth.config.ts -------------------------------------------------------------------------------- /src/configs/aws.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/aws.config.ts -------------------------------------------------------------------------------- /src/configs/database.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/database.config.ts -------------------------------------------------------------------------------- /src/configs/debugger.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/debugger.config.ts -------------------------------------------------------------------------------- /src/configs/doc.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/doc.config.ts -------------------------------------------------------------------------------- /src/configs/file.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/file.config.ts -------------------------------------------------------------------------------- /src/configs/helper.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/helper.config.ts -------------------------------------------------------------------------------- /src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/index.ts -------------------------------------------------------------------------------- /src/configs/kafka.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/kafka.config.ts -------------------------------------------------------------------------------- /src/configs/message.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/message.config.ts -------------------------------------------------------------------------------- /src/configs/request.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/request.config.ts -------------------------------------------------------------------------------- /src/configs/user.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/configs/user.config.ts -------------------------------------------------------------------------------- /src/health/controllers/health.public.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/health/controllers/health.public.controller.ts -------------------------------------------------------------------------------- /src/health/docs/health.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/health/docs/health.doc.ts -------------------------------------------------------------------------------- /src/health/health.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/health/health.module.ts -------------------------------------------------------------------------------- /src/health/indicators/health.aws-s3.indicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/health/indicators/health.aws-s3.indicator.ts -------------------------------------------------------------------------------- /src/health/serializations/health.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/health/serializations/health.serialization.ts -------------------------------------------------------------------------------- /src/jobs/jobs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/jobs/jobs.module.ts -------------------------------------------------------------------------------- /src/jobs/router/jobs.router.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/jobs/router/jobs.router.module.ts -------------------------------------------------------------------------------- /src/kafka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka.ts -------------------------------------------------------------------------------- /src/kafka/constants/kafka.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/constants/kafka.constant.ts -------------------------------------------------------------------------------- /src/kafka/constants/kafka.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/constants/kafka.enum.constant.ts -------------------------------------------------------------------------------- /src/kafka/constants/kafka.topic.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/constants/kafka.topic.constant.ts -------------------------------------------------------------------------------- /src/kafka/controllers/kafka.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/controllers/kafka.controller.ts -------------------------------------------------------------------------------- /src/kafka/controllers/kafka.test.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/controllers/kafka.test.controller.ts -------------------------------------------------------------------------------- /src/kafka/decorators/kafka.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/decorators/kafka.decorator.ts -------------------------------------------------------------------------------- /src/kafka/dtos/kafka.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/dtos/kafka.dto.ts -------------------------------------------------------------------------------- /src/kafka/error/exceptions/kafka.http-exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/error/exceptions/kafka.http-exception.ts -------------------------------------------------------------------------------- /src/kafka/error/filters/kafka.error.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/error/filters/kafka.error.filter.ts -------------------------------------------------------------------------------- /src/kafka/interceptors/kafka.commit-offset-first.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/interceptors/kafka.commit-offset-first.interceptor.ts -------------------------------------------------------------------------------- /src/kafka/interceptors/kafka.response.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/interceptors/kafka.response.interceptor.ts -------------------------------------------------------------------------------- /src/kafka/interceptors/kafka.response.timeout.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/interceptors/kafka.response.timeout.interceptor.ts -------------------------------------------------------------------------------- /src/kafka/interfaces/kafka.admin-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/interfaces/kafka.admin-service.interface.ts -------------------------------------------------------------------------------- /src/kafka/interfaces/kafka.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/interfaces/kafka.interface.ts -------------------------------------------------------------------------------- /src/kafka/interfaces/kafka.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/interfaces/kafka.service.interface.ts -------------------------------------------------------------------------------- /src/kafka/kafka.admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/kafka.admin.module.ts -------------------------------------------------------------------------------- /src/kafka/kafka.common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/kafka.common.module.ts -------------------------------------------------------------------------------- /src/kafka/kafka.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/kafka.module.ts -------------------------------------------------------------------------------- /src/kafka/pipes/kafka.validation.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/pipes/kafka.validation.pipe.ts -------------------------------------------------------------------------------- /src/kafka/router/kafka.router.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/router/kafka.router.module.ts -------------------------------------------------------------------------------- /src/kafka/services/kafka.admin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/services/kafka.admin.service.ts -------------------------------------------------------------------------------- /src/kafka/services/kafka.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/kafka/services/kafka.service.ts -------------------------------------------------------------------------------- /src/languages/en/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/apiKey.json -------------------------------------------------------------------------------- /src/languages/en/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/app.json -------------------------------------------------------------------------------- /src/languages/en/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/auth.json -------------------------------------------------------------------------------- /src/languages/en/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/file.json -------------------------------------------------------------------------------- /src/languages/en/health.json: -------------------------------------------------------------------------------- 1 | { 2 | "check": "Healthy succeed" 3 | } -------------------------------------------------------------------------------- /src/languages/en/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/http.json -------------------------------------------------------------------------------- /src/languages/en/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/message.json -------------------------------------------------------------------------------- /src/languages/en/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/middleware.json -------------------------------------------------------------------------------- /src/languages/en/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/request.json -------------------------------------------------------------------------------- /src/languages/en/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/role.json -------------------------------------------------------------------------------- /src/languages/en/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/en/setting.json -------------------------------------------------------------------------------- /src/languages/id/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/id/app.json -------------------------------------------------------------------------------- /src/languages/id/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/languages/id/request.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/migration/migration.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/migration/migration.module.ts -------------------------------------------------------------------------------- /src/migration/seeds/migration.kafka-topics.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/migration/seeds/migration.kafka-topics.seed.ts -------------------------------------------------------------------------------- /src/migration/seeds/migration.role.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/migration/seeds/migration.role.seed.ts -------------------------------------------------------------------------------- /src/migration/seeds/migration.setting.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/migration/seeds/migration.setting.seed.ts -------------------------------------------------------------------------------- /src/modules/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/user/dtos/user.request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/modules/user/dtos/user.request.dto.ts -------------------------------------------------------------------------------- /src/modules/user/serializations/user.payload.serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/modules/user/serializations/user.payload.serialization.ts -------------------------------------------------------------------------------- /src/router/router.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/router/router.module.ts -------------------------------------------------------------------------------- /src/router/routes/routes.admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/router/routes/routes.admin.module.ts -------------------------------------------------------------------------------- /src/router/routes/routes.auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/router/routes/routes.auth.module.ts -------------------------------------------------------------------------------- /src/router/routes/routes.public.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/router/routes/routes.public.module.ts -------------------------------------------------------------------------------- /src/router/routes/routes.user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/router/routes/routes.user.module.ts -------------------------------------------------------------------------------- /src/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/src/swagger.ts -------------------------------------------------------------------------------- /test/api-key/api-key.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/api-key/api-key.service.spec.ts -------------------------------------------------------------------------------- /test/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /test/aws/aws.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/aws/aws.service.spec.ts -------------------------------------------------------------------------------- /test/coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/clover.xml -------------------------------------------------------------------------------- /test/coverage/coverage-final.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /test/coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /test/coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /test/coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /test/coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /test/coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /test/coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /test/coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /test/coverage/lcov.info: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dashboard/dashboard.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/dashboard/dashboard.service.spec.ts -------------------------------------------------------------------------------- /test/database/database.options.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/database/database.options.service.spec.ts -------------------------------------------------------------------------------- /test/debugger/debugger.options.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/debugger/debugger.options.service.spec.ts -------------------------------------------------------------------------------- /test/debugger/debugger.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/debugger/debugger.service.spec.ts -------------------------------------------------------------------------------- /test/e2e/jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/e2e/jest.json -------------------------------------------------------------------------------- /test/e2e/user/user.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/e2e/user/user.constant.ts -------------------------------------------------------------------------------- /test/helper/helper.array.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.array.service.spec.ts -------------------------------------------------------------------------------- /test/helper/helper.date.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.date.service.spec.ts -------------------------------------------------------------------------------- /test/helper/helper.encryption.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.encryption.service.spec.ts -------------------------------------------------------------------------------- /test/helper/helper.file.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.file.service.spec.ts -------------------------------------------------------------------------------- /test/helper/helper.hash.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.hash.service.spec.ts -------------------------------------------------------------------------------- /test/helper/helper.number.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.number.service.spec.ts -------------------------------------------------------------------------------- /test/helper/helper.string.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/helper/helper.string.service.spec.ts -------------------------------------------------------------------------------- /test/integration/kafka/kafka.constant.ts: -------------------------------------------------------------------------------- 1 | export const INTEGRATION_KAFKA_URL = '/health/kafka'; 2 | -------------------------------------------------------------------------------- /test/integration/kafka/kafka.integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/integration/kafka/kafka.integration.spec.ts -------------------------------------------------------------------------------- /test/jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/jest.json -------------------------------------------------------------------------------- /test/logger/logger.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/logger/logger.service.spec.ts -------------------------------------------------------------------------------- /test/message/message.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/message/message.service.spec.ts -------------------------------------------------------------------------------- /test/pagination/pagination.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/pagination/pagination.service.spec.ts -------------------------------------------------------------------------------- /test/role/role.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/role/role.service.spec.ts -------------------------------------------------------------------------------- /test/setting/setting.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/test/setting/setting.service.spec.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrechristikan/ack-nestjs-boilerplate-kafka/HEAD/yarn.lock --------------------------------------------------------------------------------