├── .dockerignore ├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── codecov.yml ├── docker-compose-dev.yml ├── docker-compose-prod.yml ├── docker-compose-test.yml ├── nest-cli.json ├── package.json ├── src ├── app.module.ts ├── auth │ ├── auth.controller.spec.ts │ ├── auth.controller.ts │ ├── auth.module.ts │ ├── auth.service.spec.ts │ ├── auth.service.ts │ ├── decorators │ │ ├── roles.decorator.ts │ │ └── user.decorator.ts │ ├── dto │ │ ├── login.dto.ts │ │ └── register.dto.ts │ ├── guards │ │ ├── local-auth.guard.ts │ │ ├── roles.guard.ts │ │ └── session-auth.guard.ts │ ├── local.serializer.ts │ └── local.strategy.ts ├── carts │ ├── carts.controller.spec.ts │ ├── carts.controller.ts │ ├── carts.module.ts │ ├── carts.service.spec.ts │ ├── carts.service.ts │ ├── dto │ │ ├── cart-item.dto.ts │ │ └── cart.dto.ts │ └── models │ │ ├── cart-item.entity.ts │ │ └── cart.entity.ts ├── catalog │ ├── attribute-types │ │ ├── attribute-types.controller.spec.ts │ │ ├── attribute-types.controller.ts │ │ ├── attribute-types.exporter.ts │ │ ├── attribute-types.importer.ts │ │ ├── attribute-types.module.ts │ │ ├── attribute-types.service.spec.ts │ │ ├── attribute-types.service.ts │ │ ├── dto │ │ │ └── attribute-type.dto.ts │ │ └── models │ │ │ ├── attribute-type.entity.ts │ │ │ └── attribute-value-type.enum.ts │ ├── catalog.module.ts │ ├── categories │ │ ├── categories.controller.spec.ts │ │ ├── categories.controller.ts │ │ ├── categories.exporter.ts │ │ ├── categories.importer.ts │ │ ├── categories.module.ts │ │ ├── categories.service.spec.ts │ │ ├── categories.service.ts │ │ ├── dto │ │ │ ├── category-create.dto.ts │ │ │ ├── category-group.dto.ts │ │ │ └── category-update.dto.ts │ │ └── models │ │ │ ├── category-group.entity.ts │ │ │ └── category.entity.ts │ ├── product-ratings │ │ ├── dto │ │ │ └── product-rating.dto.ts │ │ ├── models │ │ │ └── product-rating.entity.ts │ │ ├── product-rating-photos │ │ │ ├── models │ │ │ │ └── product-rating-photo.entity.ts │ │ │ ├── product-rating-photos.controller.spec.ts │ │ │ ├── product-rating-photos.controller.ts │ │ │ ├── product-rating-photos.module.ts │ │ │ ├── product-rating-photos.service.spec.ts │ │ │ └── product-rating-photos.service.ts │ │ ├── product-ratings.controller.spec.ts │ │ ├── product-ratings.controller.ts │ │ ├── product-ratings.module.ts │ │ ├── product-ratings.service.spec.ts │ │ └── product-ratings.service.ts │ └── products │ │ ├── dto │ │ ├── attribute.dto.ts │ │ ├── product-create.dto.ts │ │ └── product-update.dto.ts │ │ ├── models │ │ ├── attribute.entity.ts │ │ └── product.entity.ts │ │ ├── product-photos │ │ ├── models │ │ │ └── product-photo.entity.ts │ │ ├── product-photos.controller.spec.ts │ │ ├── product-photos.controller.ts │ │ ├── product-photos.exporter.ts │ │ ├── product-photos.importer.ts │ │ ├── product-photos.module.ts │ │ ├── product-photos.service.spec.ts │ │ └── product-photos.service.ts │ │ ├── products.controller.spec.ts │ │ ├── products.controller.ts │ │ ├── products.exporter.ts │ │ ├── products.importer.ts │ │ ├── products.module.ts │ │ ├── products.service.spec.ts │ │ └── products.service.ts ├── config │ ├── configuration.schema.ts │ └── configuration.ts ├── errors │ ├── conflict.error.ts │ ├── generic.error.ts │ ├── not-found.error.ts │ ├── not-related.error.ts │ ├── parse.error.ts │ ├── service-error.interceptor.ts │ ├── service-error.ts │ └── type-check.error.ts ├── import-export │ ├── data-type.utils.ts │ ├── dto │ │ ├── export.dto.ts │ │ └── import.dto.ts │ ├── export.controller.spec.ts │ ├── export.controller.ts │ ├── export.service.spec.ts │ ├── export.service.ts │ ├── import-export.module.ts │ ├── import.controller.spec.ts │ ├── import.controller.ts │ ├── import.service.spec.ts │ ├── import.service.ts │ ├── json-serializer.service.ts │ ├── models │ │ ├── collection.type.ts │ │ ├── data-type-dependencies.data.ts │ │ ├── data-type.enum.ts │ │ ├── exporter.interface.ts │ │ ├── file-serializer.interface.ts │ │ ├── id-map.type.ts │ │ ├── import-status.interface.ts │ │ └── importer.interface.ts │ └── zip-serializer.service.ts ├── local-files │ ├── local-files.module.ts │ ├── local-files.service.ts │ └── models │ │ ├── file-body.schema.ts │ │ ├── file-response.schema.ts │ │ └── photo.entity.ts ├── main.ts ├── pages │ ├── dto │ │ ├── page-create.dto.ts │ │ ├── page-group.dto.ts │ │ └── page-update.dto.ts │ ├── models │ │ ├── page-group.entity.ts │ │ └── page.entity.ts │ ├── pages.controller.spec.ts │ ├── pages.controller.ts │ ├── pages.exporter.ts │ ├── pages.importer.ts │ ├── pages.module.ts │ ├── pages.service.spec.ts │ └── pages.service.ts ├── redis │ ├── index.ts │ ├── redis.constants.ts │ └── redis.module.ts ├── sales │ ├── delivery-methods │ │ ├── delivery-methods.controller.spec.ts │ │ ├── delivery-methods.controller.ts │ │ ├── delivery-methods.exporter.ts │ │ ├── delivery-methods.importer.ts │ │ ├── delivery-methods.module.ts │ │ ├── delivery-methods.service.spec.ts │ │ ├── delivery-methods.service.ts │ │ ├── dto │ │ │ └── delivery-method.dto.ts │ │ └── models │ │ │ └── delivery-method.entity.ts │ ├── orders │ │ ├── dto │ │ │ ├── order-create.dto.ts │ │ │ ├── order-delivery.dto.ts │ │ │ ├── order-item.dto.ts │ │ │ ├── order-payment.dto.ts │ │ │ └── order-update.dto.ts │ │ ├── models │ │ │ ├── order-delivery.entity.ts │ │ │ ├── order-item.entity.ts │ │ │ ├── order-payment.entity.ts │ │ │ ├── order-status.enum.ts │ │ │ └── order.entity.ts │ │ ├── orders.controller.spec.ts │ │ ├── orders.controller.ts │ │ ├── orders.exporter.ts │ │ ├── orders.importer.ts │ │ ├── orders.module.ts │ │ ├── orders.service.spec.ts │ │ ├── orders.service.ts │ │ └── orders.subscriber.ts │ ├── payment-methods │ │ ├── dto │ │ │ └── payment-method.dto.ts │ │ ├── models │ │ │ └── payment-method.entity.ts │ │ ├── payment-methods.controller.spec.ts │ │ ├── payment-methods.controller.ts │ │ ├── payment-methods.exporter.ts │ │ ├── payment-methods.importer.ts │ │ ├── payment-methods.module.ts │ │ ├── payment-methods.service.spec.ts │ │ └── payment-methods.service.ts │ ├── returns │ │ ├── dto │ │ │ ├── return-create.dto.ts │ │ │ └── return-update.dto.ts │ │ ├── models │ │ │ ├── return-status.enum.ts │ │ │ └── return.entity.ts │ │ ├── returns.controller.spec.ts │ │ ├── returns.controller.ts │ │ ├── returns.exporter.ts │ │ ├── returns.importer.ts │ │ ├── returns.module.ts │ │ ├── returns.service.spec.ts │ │ ├── returns.service.ts │ │ └── returns.subscriber.ts │ └── sales.module.ts ├── settings │ ├── builtin-settings.data.ts │ ├── dto │ │ ├── setting-create.dto.ts │ │ └── setting-update.dto.ts │ ├── guards │ │ ├── features-enabled.guard.ts │ │ └── features.decorator.ts │ ├── models │ │ ├── setting-type.enum.ts │ │ └── setting.entity.ts │ ├── settings.controller.spec.ts │ ├── settings.controller.ts │ ├── settings.exporter.ts │ ├── settings.importer.ts │ ├── settings.module.ts │ ├── settings.service.spec.ts │ └── settings.service.ts ├── users │ ├── dto │ │ └── user-update.dto.ts │ ├── models │ │ ├── role.enum.ts │ │ └── user.entity.ts │ ├── users.controller.spec.ts │ ├── users.controller.ts │ ├── users.exporter.ts │ ├── users.importer.ts │ ├── users.module.ts │ ├── users.service.spec.ts │ └── users.service.ts └── wishlists │ ├── dto │ ├── wishlist-create.dto.ts │ └── wishlist-update.dto.ts │ ├── models │ └── wishlist.entity.ts │ ├── wishlists.controller.spec.ts │ ├── wishlists.controller.ts │ ├── wishlists.exporter.ts │ ├── wishlists.importer.ts │ ├── wishlists.module.ts │ ├── wishlists.service.spec.ts │ └── wishlists.service.ts ├── test ├── assets │ ├── export-bad.json │ ├── export.json │ ├── export.tar.gz │ ├── test.jpg │ ├── test.png │ └── test.txt ├── auth.e2e-spec.ts ├── carts.e2e-spec.ts ├── catalog │ ├── attribute-types.e2e-spec.ts │ ├── categories.e2e-spec.ts │ ├── product-photos.e2e-spec.ts │ ├── product-rating-photos.e2e-spec.ts │ ├── product-ratings.e2e-spec.ts │ └── products.e2e-spec.ts ├── import-export-rbac.e2e-spec.ts ├── import-export.e2e-spec.ts ├── jest-e2e.json ├── pages.e2e-spec.ts ├── sales │ ├── delivery-methods.e2e-spec.ts │ ├── orders.e2e-spec.ts │ ├── payment-methods.e2e-spec.ts │ └── returns.e2e-spec.ts ├── settings.e2e-spec.ts ├── users.e2e-spec.ts ├── utils │ ├── dto-generator │ │ ├── dto-generator.module.ts │ │ └── dto-generator.service.ts │ ├── generate-file-metadata.ts │ ├── parse-endpoint.ts │ ├── repository-mock │ │ ├── repository-mock.module.ts │ │ └── repository-mock.service.ts │ ├── setup-rbac-tests.ts │ ├── setup.ts │ └── test-users │ │ ├── test-users.module.ts │ │ └── test-users.service.ts └── wishlists.e2e-spec.ts ├── tsconfig.build.json └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message="Upgrade to %s" 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/docker-compose-prod.yml -------------------------------------------------------------------------------- /docker-compose-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/docker-compose-test.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/package.json -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/auth.module.ts -------------------------------------------------------------------------------- /src/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/auth.service.ts -------------------------------------------------------------------------------- /src/auth/decorators/roles.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/decorators/roles.decorator.ts -------------------------------------------------------------------------------- /src/auth/decorators/user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/decorators/user.decorator.ts -------------------------------------------------------------------------------- /src/auth/dto/login.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/dto/login.dto.ts -------------------------------------------------------------------------------- /src/auth/dto/register.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/dto/register.dto.ts -------------------------------------------------------------------------------- /src/auth/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/roles.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/guards/roles.guard.ts -------------------------------------------------------------------------------- /src/auth/guards/session-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/guards/session-auth.guard.ts -------------------------------------------------------------------------------- /src/auth/local.serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/local.serializer.ts -------------------------------------------------------------------------------- /src/auth/local.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/auth/local.strategy.ts -------------------------------------------------------------------------------- /src/carts/carts.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/carts.controller.spec.ts -------------------------------------------------------------------------------- /src/carts/carts.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/carts.controller.ts -------------------------------------------------------------------------------- /src/carts/carts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/carts.module.ts -------------------------------------------------------------------------------- /src/carts/carts.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/carts.service.spec.ts -------------------------------------------------------------------------------- /src/carts/carts.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/carts.service.ts -------------------------------------------------------------------------------- /src/carts/dto/cart-item.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/dto/cart-item.dto.ts -------------------------------------------------------------------------------- /src/carts/dto/cart.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/dto/cart.dto.ts -------------------------------------------------------------------------------- /src/carts/models/cart-item.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/models/cart-item.entity.ts -------------------------------------------------------------------------------- /src/carts/models/cart.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/carts/models/cart.entity.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.controller.spec.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.controller.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.exporter.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.importer.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.module.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.service.spec.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/attribute-types.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/attribute-types.service.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/dto/attribute-type.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/dto/attribute-type.dto.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/models/attribute-type.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/models/attribute-type.entity.ts -------------------------------------------------------------------------------- /src/catalog/attribute-types/models/attribute-value-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/attribute-types/models/attribute-value-type.enum.ts -------------------------------------------------------------------------------- /src/catalog/catalog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/catalog.module.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.controller.spec.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.controller.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.exporter.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.importer.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.module.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.service.spec.ts -------------------------------------------------------------------------------- /src/catalog/categories/categories.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/categories.service.ts -------------------------------------------------------------------------------- /src/catalog/categories/dto/category-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/dto/category-create.dto.ts -------------------------------------------------------------------------------- /src/catalog/categories/dto/category-group.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/dto/category-group.dto.ts -------------------------------------------------------------------------------- /src/catalog/categories/dto/category-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/dto/category-update.dto.ts -------------------------------------------------------------------------------- /src/catalog/categories/models/category-group.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/models/category-group.entity.ts -------------------------------------------------------------------------------- /src/catalog/categories/models/category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/categories/models/category.entity.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/dto/product-rating.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/dto/product-rating.dto.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/models/product-rating.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/models/product-rating.entity.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-rating-photos/models/product-rating-photo.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-rating-photos/models/product-rating-photo.entity.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-rating-photos/product-rating-photos.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-rating-photos/product-rating-photos.controller.spec.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-rating-photos/product-rating-photos.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-rating-photos/product-rating-photos.controller.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-rating-photos/product-rating-photos.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-rating-photos/product-rating-photos.module.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-rating-photos/product-rating-photos.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-rating-photos/product-rating-photos.service.spec.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-rating-photos/product-rating-photos.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-rating-photos/product-rating-photos.service.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-ratings.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-ratings.controller.spec.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-ratings.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-ratings.controller.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-ratings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-ratings.module.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-ratings.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-ratings.service.spec.ts -------------------------------------------------------------------------------- /src/catalog/product-ratings/product-ratings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/product-ratings/product-ratings.service.ts -------------------------------------------------------------------------------- /src/catalog/products/dto/attribute.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/dto/attribute.dto.ts -------------------------------------------------------------------------------- /src/catalog/products/dto/product-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/dto/product-create.dto.ts -------------------------------------------------------------------------------- /src/catalog/products/dto/product-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/dto/product-update.dto.ts -------------------------------------------------------------------------------- /src/catalog/products/models/attribute.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/models/attribute.entity.ts -------------------------------------------------------------------------------- /src/catalog/products/models/product.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/models/product.entity.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/models/product-photo.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/models/product-photo.entity.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.controller.spec.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.controller.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.exporter.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.importer.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.module.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.service.spec.ts -------------------------------------------------------------------------------- /src/catalog/products/product-photos/product-photos.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/product-photos/product-photos.service.ts -------------------------------------------------------------------------------- /src/catalog/products/products.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.controller.spec.ts -------------------------------------------------------------------------------- /src/catalog/products/products.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.controller.ts -------------------------------------------------------------------------------- /src/catalog/products/products.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.exporter.ts -------------------------------------------------------------------------------- /src/catalog/products/products.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.importer.ts -------------------------------------------------------------------------------- /src/catalog/products/products.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.module.ts -------------------------------------------------------------------------------- /src/catalog/products/products.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.service.spec.ts -------------------------------------------------------------------------------- /src/catalog/products/products.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/catalog/products/products.service.ts -------------------------------------------------------------------------------- /src/config/configuration.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/config/configuration.schema.ts -------------------------------------------------------------------------------- /src/config/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/config/configuration.ts -------------------------------------------------------------------------------- /src/errors/conflict.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/conflict.error.ts -------------------------------------------------------------------------------- /src/errors/generic.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/generic.error.ts -------------------------------------------------------------------------------- /src/errors/not-found.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/not-found.error.ts -------------------------------------------------------------------------------- /src/errors/not-related.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/not-related.error.ts -------------------------------------------------------------------------------- /src/errors/parse.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/parse.error.ts -------------------------------------------------------------------------------- /src/errors/service-error.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/service-error.interceptor.ts -------------------------------------------------------------------------------- /src/errors/service-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/service-error.ts -------------------------------------------------------------------------------- /src/errors/type-check.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/errors/type-check.error.ts -------------------------------------------------------------------------------- /src/import-export/data-type.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/data-type.utils.ts -------------------------------------------------------------------------------- /src/import-export/dto/export.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/dto/export.dto.ts -------------------------------------------------------------------------------- /src/import-export/dto/import.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/dto/import.dto.ts -------------------------------------------------------------------------------- /src/import-export/export.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/export.controller.spec.ts -------------------------------------------------------------------------------- /src/import-export/export.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/export.controller.ts -------------------------------------------------------------------------------- /src/import-export/export.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/export.service.spec.ts -------------------------------------------------------------------------------- /src/import-export/export.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/export.service.ts -------------------------------------------------------------------------------- /src/import-export/import-export.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/import-export.module.ts -------------------------------------------------------------------------------- /src/import-export/import.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/import.controller.spec.ts -------------------------------------------------------------------------------- /src/import-export/import.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/import.controller.ts -------------------------------------------------------------------------------- /src/import-export/import.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/import.service.spec.ts -------------------------------------------------------------------------------- /src/import-export/import.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/import.service.ts -------------------------------------------------------------------------------- /src/import-export/json-serializer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/json-serializer.service.ts -------------------------------------------------------------------------------- /src/import-export/models/collection.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/collection.type.ts -------------------------------------------------------------------------------- /src/import-export/models/data-type-dependencies.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/data-type-dependencies.data.ts -------------------------------------------------------------------------------- /src/import-export/models/data-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/data-type.enum.ts -------------------------------------------------------------------------------- /src/import-export/models/exporter.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/exporter.interface.ts -------------------------------------------------------------------------------- /src/import-export/models/file-serializer.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/file-serializer.interface.ts -------------------------------------------------------------------------------- /src/import-export/models/id-map.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/id-map.type.ts -------------------------------------------------------------------------------- /src/import-export/models/import-status.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/import-status.interface.ts -------------------------------------------------------------------------------- /src/import-export/models/importer.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/models/importer.interface.ts -------------------------------------------------------------------------------- /src/import-export/zip-serializer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/import-export/zip-serializer.service.ts -------------------------------------------------------------------------------- /src/local-files/local-files.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/local-files/local-files.module.ts -------------------------------------------------------------------------------- /src/local-files/local-files.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/local-files/local-files.service.ts -------------------------------------------------------------------------------- /src/local-files/models/file-body.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/local-files/models/file-body.schema.ts -------------------------------------------------------------------------------- /src/local-files/models/file-response.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/local-files/models/file-response.schema.ts -------------------------------------------------------------------------------- /src/local-files/models/photo.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/local-files/models/photo.entity.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pages/dto/page-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/dto/page-create.dto.ts -------------------------------------------------------------------------------- /src/pages/dto/page-group.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/dto/page-group.dto.ts -------------------------------------------------------------------------------- /src/pages/dto/page-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/dto/page-update.dto.ts -------------------------------------------------------------------------------- /src/pages/models/page-group.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/models/page-group.entity.ts -------------------------------------------------------------------------------- /src/pages/models/page.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/models/page.entity.ts -------------------------------------------------------------------------------- /src/pages/pages.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.controller.spec.ts -------------------------------------------------------------------------------- /src/pages/pages.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.controller.ts -------------------------------------------------------------------------------- /src/pages/pages.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.exporter.ts -------------------------------------------------------------------------------- /src/pages/pages.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.importer.ts -------------------------------------------------------------------------------- /src/pages/pages.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.module.ts -------------------------------------------------------------------------------- /src/pages/pages.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.service.spec.ts -------------------------------------------------------------------------------- /src/pages/pages.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/pages/pages.service.ts -------------------------------------------------------------------------------- /src/redis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/redis/index.ts -------------------------------------------------------------------------------- /src/redis/redis.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/redis/redis.constants.ts -------------------------------------------------------------------------------- /src/redis/redis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/redis/redis.module.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.controller.spec.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.controller.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.exporter.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.importer.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.module.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.service.spec.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/delivery-methods.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/delivery-methods.service.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/dto/delivery-method.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/dto/delivery-method.dto.ts -------------------------------------------------------------------------------- /src/sales/delivery-methods/models/delivery-method.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/delivery-methods/models/delivery-method.entity.ts -------------------------------------------------------------------------------- /src/sales/orders/dto/order-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/dto/order-create.dto.ts -------------------------------------------------------------------------------- /src/sales/orders/dto/order-delivery.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/dto/order-delivery.dto.ts -------------------------------------------------------------------------------- /src/sales/orders/dto/order-item.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/dto/order-item.dto.ts -------------------------------------------------------------------------------- /src/sales/orders/dto/order-payment.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/dto/order-payment.dto.ts -------------------------------------------------------------------------------- /src/sales/orders/dto/order-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/dto/order-update.dto.ts -------------------------------------------------------------------------------- /src/sales/orders/models/order-delivery.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/models/order-delivery.entity.ts -------------------------------------------------------------------------------- /src/sales/orders/models/order-item.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/models/order-item.entity.ts -------------------------------------------------------------------------------- /src/sales/orders/models/order-payment.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/models/order-payment.entity.ts -------------------------------------------------------------------------------- /src/sales/orders/models/order-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/models/order-status.enum.ts -------------------------------------------------------------------------------- /src/sales/orders/models/order.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/models/order.entity.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.controller.spec.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.controller.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.exporter.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.importer.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.module.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.service.spec.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.service.ts -------------------------------------------------------------------------------- /src/sales/orders/orders.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/orders/orders.subscriber.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/dto/payment-method.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/dto/payment-method.dto.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/models/payment-method.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/models/payment-method.entity.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.controller.spec.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.controller.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.exporter.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.importer.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.module.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.service.spec.ts -------------------------------------------------------------------------------- /src/sales/payment-methods/payment-methods.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/payment-methods/payment-methods.service.ts -------------------------------------------------------------------------------- /src/sales/returns/dto/return-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/dto/return-create.dto.ts -------------------------------------------------------------------------------- /src/sales/returns/dto/return-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/dto/return-update.dto.ts -------------------------------------------------------------------------------- /src/sales/returns/models/return-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/models/return-status.enum.ts -------------------------------------------------------------------------------- /src/sales/returns/models/return.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/models/return.entity.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.controller.spec.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.controller.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.exporter.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.importer.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.module.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.service.spec.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.service.ts -------------------------------------------------------------------------------- /src/sales/returns/returns.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/returns/returns.subscriber.ts -------------------------------------------------------------------------------- /src/sales/sales.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/sales/sales.module.ts -------------------------------------------------------------------------------- /src/settings/builtin-settings.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/builtin-settings.data.ts -------------------------------------------------------------------------------- /src/settings/dto/setting-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/dto/setting-create.dto.ts -------------------------------------------------------------------------------- /src/settings/dto/setting-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/dto/setting-update.dto.ts -------------------------------------------------------------------------------- /src/settings/guards/features-enabled.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/guards/features-enabled.guard.ts -------------------------------------------------------------------------------- /src/settings/guards/features.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/guards/features.decorator.ts -------------------------------------------------------------------------------- /src/settings/models/setting-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/models/setting-type.enum.ts -------------------------------------------------------------------------------- /src/settings/models/setting.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/models/setting.entity.ts -------------------------------------------------------------------------------- /src/settings/settings.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.controller.spec.ts -------------------------------------------------------------------------------- /src/settings/settings.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.controller.ts -------------------------------------------------------------------------------- /src/settings/settings.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.exporter.ts -------------------------------------------------------------------------------- /src/settings/settings.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.importer.ts -------------------------------------------------------------------------------- /src/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.module.ts -------------------------------------------------------------------------------- /src/settings/settings.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.service.spec.ts -------------------------------------------------------------------------------- /src/settings/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/settings/settings.service.ts -------------------------------------------------------------------------------- /src/users/dto/user-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/dto/user-update.dto.ts -------------------------------------------------------------------------------- /src/users/models/role.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/models/role.enum.ts -------------------------------------------------------------------------------- /src/users/models/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/models/user.entity.ts -------------------------------------------------------------------------------- /src/users/users.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.controller.spec.ts -------------------------------------------------------------------------------- /src/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.controller.ts -------------------------------------------------------------------------------- /src/users/users.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.exporter.ts -------------------------------------------------------------------------------- /src/users/users.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.importer.ts -------------------------------------------------------------------------------- /src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.module.ts -------------------------------------------------------------------------------- /src/users/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.service.spec.ts -------------------------------------------------------------------------------- /src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/users/users.service.ts -------------------------------------------------------------------------------- /src/wishlists/dto/wishlist-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/dto/wishlist-create.dto.ts -------------------------------------------------------------------------------- /src/wishlists/dto/wishlist-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/dto/wishlist-update.dto.ts -------------------------------------------------------------------------------- /src/wishlists/models/wishlist.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/models/wishlist.entity.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.controller.spec.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.controller.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.exporter.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.importer.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.module.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.service.spec.ts -------------------------------------------------------------------------------- /src/wishlists/wishlists.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/src/wishlists/wishlists.service.ts -------------------------------------------------------------------------------- /test/assets/export-bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/assets/export-bad.json -------------------------------------------------------------------------------- /test/assets/export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/assets/export.json -------------------------------------------------------------------------------- /test/assets/export.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/assets/export.tar.gz -------------------------------------------------------------------------------- /test/assets/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/assets/test.jpg -------------------------------------------------------------------------------- /test/assets/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/assets/test.png -------------------------------------------------------------------------------- /test/assets/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/auth.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/auth.e2e-spec.ts -------------------------------------------------------------------------------- /test/carts.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/carts.e2e-spec.ts -------------------------------------------------------------------------------- /test/catalog/attribute-types.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/catalog/attribute-types.e2e-spec.ts -------------------------------------------------------------------------------- /test/catalog/categories.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/catalog/categories.e2e-spec.ts -------------------------------------------------------------------------------- /test/catalog/product-photos.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/catalog/product-photos.e2e-spec.ts -------------------------------------------------------------------------------- /test/catalog/product-rating-photos.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/catalog/product-rating-photos.e2e-spec.ts -------------------------------------------------------------------------------- /test/catalog/product-ratings.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/catalog/product-ratings.e2e-spec.ts -------------------------------------------------------------------------------- /test/catalog/products.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/catalog/products.e2e-spec.ts -------------------------------------------------------------------------------- /test/import-export-rbac.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/import-export-rbac.e2e-spec.ts -------------------------------------------------------------------------------- /test/import-export.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/import-export.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /test/pages.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/pages.e2e-spec.ts -------------------------------------------------------------------------------- /test/sales/delivery-methods.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/sales/delivery-methods.e2e-spec.ts -------------------------------------------------------------------------------- /test/sales/orders.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/sales/orders.e2e-spec.ts -------------------------------------------------------------------------------- /test/sales/payment-methods.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/sales/payment-methods.e2e-spec.ts -------------------------------------------------------------------------------- /test/sales/returns.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/sales/returns.e2e-spec.ts -------------------------------------------------------------------------------- /test/settings.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/settings.e2e-spec.ts -------------------------------------------------------------------------------- /test/users.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/users.e2e-spec.ts -------------------------------------------------------------------------------- /test/utils/dto-generator/dto-generator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/dto-generator/dto-generator.module.ts -------------------------------------------------------------------------------- /test/utils/dto-generator/dto-generator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/dto-generator/dto-generator.service.ts -------------------------------------------------------------------------------- /test/utils/generate-file-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/generate-file-metadata.ts -------------------------------------------------------------------------------- /test/utils/parse-endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/parse-endpoint.ts -------------------------------------------------------------------------------- /test/utils/repository-mock/repository-mock.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/repository-mock/repository-mock.module.ts -------------------------------------------------------------------------------- /test/utils/repository-mock/repository-mock.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/repository-mock/repository-mock.service.ts -------------------------------------------------------------------------------- /test/utils/setup-rbac-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/setup-rbac-tests.ts -------------------------------------------------------------------------------- /test/utils/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/setup.ts -------------------------------------------------------------------------------- /test/utils/test-users/test-users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/test-users/test-users.module.ts -------------------------------------------------------------------------------- /test/utils/test-users/test-users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/utils/test-users/test-users.service.ts -------------------------------------------------------------------------------- /test/wishlists.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/test/wishlists.e2e-spec.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalmarchewczyk/ecommerce-platform-nestjs-api/HEAD/tsconfig.json --------------------------------------------------------------------------------