├── .eslintrc.js ├── .gitignore ├── .gitmodules ├── .npmrc ├── .prettierrc ├── .run └── dev remote.run.xml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── config └── nginx.conf ├── docker-compose.yml ├── lerna.json ├── package.json ├── packages ├── common │ ├── index.ts │ ├── nest-cli.json │ ├── package.json │ ├── src │ │ ├── classes │ │ │ ├── index.ts │ │ │ ├── pagination-options.ts │ │ │ └── policy.ts │ │ ├── constants │ │ │ ├── index.ts │ │ │ └── metadata.constants.ts │ │ ├── decorator │ │ │ ├── decimal.decorator.ts │ │ │ ├── index.ts │ │ │ ├── jexl-expression.decorator.ts │ │ │ └── timestamp.decorator.ts │ │ ├── entity │ │ │ ├── common.entity.ts │ │ │ └── index.ts │ │ ├── enum │ │ │ ├── index.ts │ │ │ └── order-prefix.enum.ts │ │ ├── exception │ │ │ ├── common.exception.ts │ │ │ ├── index.ts │ │ │ └── validation.exception.ts │ │ ├── index.ts │ │ ├── scalars │ │ │ ├── date.scalar.ts │ │ │ ├── decimal.scalar.ts │ │ │ ├── index.ts │ │ │ └── jexl-expression.scalar.ts │ │ ├── transformer │ │ │ ├── decimal.transformer.ts │ │ │ ├── index.ts │ │ │ ├── jexl-expression.transformer.ts │ │ │ └── timestamp.transformer.ts │ │ └── utils │ │ │ ├── gen-sn.ts │ │ │ ├── index.ts │ │ │ ├── nanoid.ts │ │ │ └── paginate │ │ │ ├── decorator.ts │ │ │ ├── index.ts │ │ │ ├── paginate.spec.ts │ │ │ └── paginate.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── entity │ ├── nest-cli.json │ ├── package.json │ ├── src │ │ ├── address │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ ├── merchant-address.entity.ts │ │ │ │ ├── order-address.entity.ts │ │ │ │ └── user-address.entity.ts │ │ │ └── index.ts │ │ ├── amount │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ └── user-amount-log.entity.ts │ │ │ └── index.ts │ │ ├── article │ │ │ ├── entity │ │ │ │ ├── article-category.entity.ts │ │ │ │ ├── article.entity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── carrier │ │ │ ├── entity │ │ │ │ ├── carrier.entity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── cart │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ └── user-cart.entity.ts │ │ │ └── index.ts │ │ ├── coupon │ │ │ ├── entity │ │ │ │ ├── coupon.entity.ts │ │ │ │ ├── index.ts │ │ │ │ └── user-coupon.entity.ts │ │ │ └── index.ts │ │ ├── district │ │ │ ├── entity │ │ │ │ ├── district.entity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── feedback │ │ │ ├── entity │ │ │ │ ├── feedback.entity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── freight │ │ │ ├── entity │ │ │ │ ├── freight-template-district.entity.ts │ │ │ │ ├── freight-template.entity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── goods │ │ │ ├── entity │ │ │ │ ├── goods-attributes-template-attributes.entity.ts │ │ │ │ ├── goods-attributes-template.entity.ts │ │ │ │ ├── goods-attributes.entity.ts │ │ │ │ ├── goods-category.entity.ts │ │ │ │ ├── goods-comment.entity.ts │ │ │ │ ├── goods-sku.entity.ts │ │ │ │ ├── goods-spu.entity.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── merchant │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ ├── merchant-category.entity.ts │ │ │ │ ├── merchant-goods-category.entity.ts │ │ │ │ ├── merchant-request.entity.ts │ │ │ │ └── merchant.entity.ts │ │ │ └── index.ts │ │ ├── order │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ ├── order-change-log.entity.ts │ │ │ │ ├── order-delivery-info.entity.ts │ │ │ │ ├── order-goods-refund.entity.ts │ │ │ │ ├── order-goods-return.entity.ts │ │ │ │ ├── order-goods.entity.ts │ │ │ │ ├── order-group.entity.ts │ │ │ │ ├── order-invoice.entity.ts │ │ │ │ └── order.entity.ts │ │ │ └── index.ts │ │ ├── permission │ │ │ ├── index.ts │ │ │ └── permission.entity.ts │ │ ├── points │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ ├── system-points-log.entity.ts │ │ │ │ └── user-points-log.entity.ts │ │ │ └── index.ts │ │ ├── role │ │ │ ├── entity │ │ │ │ ├── index.ts │ │ │ │ └── role.entity.ts │ │ │ └── index.ts │ │ └── user │ │ │ ├── dto │ │ │ ├── index.ts │ │ │ ├── user-login-result.dto.ts │ │ │ ├── user-login.dto.ts │ │ │ └── user-register.dto.ts │ │ │ ├── entity │ │ │ ├── index.ts │ │ │ ├── user-device.entity.ts │ │ │ ├── user-email.entity.ts │ │ │ ├── user-invoice.entity.ts │ │ │ ├── user-permission.entity.ts │ │ │ ├── user-phone-number.entity.ts │ │ │ ├── user-role.entity.ts │ │ │ └── user.entity.ts │ │ │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json └── server │ ├── .gitignore │ ├── cert │ ├── localhost.crt │ ├── localhost.csr │ ├── localhost.ext │ ├── localhost.key │ ├── myCA.key │ ├── myCA.pem │ └── myCA.srl │ ├── ecosystem.config.js │ ├── i18n │ └── zh-CN │ │ ├── auth.json │ │ ├── common.json │ │ └── user.json │ ├── nest-cli.json │ ├── nest-shop.config.yaml │ ├── package.json │ ├── schema.graphql │ ├── src │ ├── app.config.ts │ ├── app.controller.ts │ ├── app.environment.ts │ ├── app.module.ts │ ├── auth │ │ ├── auth.module.ts │ │ ├── auth.resolver.ts │ │ ├── auth.utils.ts │ │ ├── controller │ │ │ ├── auth.controller.ts │ │ │ └── otp.controller.ts │ │ ├── dto │ │ │ ├── auth-login-result.dto.ts │ │ │ ├── auth-login.dto.ts │ │ │ ├── auth-permission.dto.ts │ │ │ ├── auth-refresh-result.dto.ts │ │ │ ├── auth-register.dto.ts │ │ │ ├── auth-role.dto.ts │ │ │ ├── auth-send-verify.dto.ts │ │ │ ├── index.ts │ │ │ └── otp │ │ │ │ ├── auth-enable-otp-step-1-result.dto.ts │ │ │ │ ├── auth-enable-otp-step-2-result.dto.ts │ │ │ │ └── auth-enable-otp-step-2.dto.ts │ │ ├── guard │ │ │ ├── auth.guard.ts │ │ │ └── permission.guard.ts │ │ ├── jwt.strategy.ts │ │ └── service │ │ │ ├── auth.service.ts │ │ │ └── otp.service.ts │ ├── common │ │ ├── decorator │ │ │ ├── message.decorator.ts │ │ │ └── span.decorator.ts │ │ ├── filters │ │ │ └── exception.filter.ts │ │ ├── interceptors │ │ │ ├── logging.interceptor.ts │ │ │ └── transform.interceptor.ts │ │ ├── interfaces │ │ │ └── query-config.interface.ts │ │ ├── logger │ │ │ ├── type-orm.logger.ts │ │ │ └── winston.logger.ts │ │ ├── middlewares │ │ │ ├── origin.middleware.ts │ │ │ └── security.middleware.ts │ │ ├── utils │ │ │ ├── create-device-hash.ts │ │ │ ├── create.util.ts │ │ │ ├── redis-proxy-handler.ts │ │ │ ├── schema-validator.ts │ │ │ ├── warp-paginated.ts │ │ │ ├── warp-response.ts │ │ │ └── watch-file-loader.ts │ │ └── vaildator │ │ │ └── IsStrongPassword.ts │ ├── district │ │ ├── district.controller.ts │ │ ├── district.module.ts │ │ ├── district.resolver.ts │ │ └── district.service.ts │ ├── main.ts │ ├── permission │ │ ├── dto │ │ │ └── permission-create.dto.ts │ │ ├── paginate-config.ts │ │ ├── permission.controller.ts │ │ ├── permission.module.ts │ │ └── permission.service.ts │ ├── redis-key.constants.ts │ ├── role │ │ ├── dto │ │ │ ├── role-create.dto.ts │ │ │ └── role-update.dto.ts │ │ ├── paginate-config.ts │ │ ├── role.controller.ts │ │ ├── role.module.ts │ │ └── role.service.ts │ ├── tracing.ts │ └── user │ │ ├── paginate-config.ts │ │ ├── user.controller.ts │ │ ├── user.module.ts │ │ ├── user.repository.ts │ │ ├── user.resolver.ts │ │ └── user.service.ts │ ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── ssl.sh ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.run/dev remote.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.run/dev remote.run.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/README.md -------------------------------------------------------------------------------- /config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/config/nginx.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/package.json -------------------------------------------------------------------------------- /packages/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/common/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/nest-cli.json -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/src/classes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/classes/index.ts -------------------------------------------------------------------------------- /packages/common/src/classes/pagination-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/classes/pagination-options.ts -------------------------------------------------------------------------------- /packages/common/src/classes/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/classes/policy.ts -------------------------------------------------------------------------------- /packages/common/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './metadata.constants'; 2 | -------------------------------------------------------------------------------- /packages/common/src/constants/metadata.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/constants/metadata.constants.ts -------------------------------------------------------------------------------- /packages/common/src/decorator/decimal.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/decorator/decimal.decorator.ts -------------------------------------------------------------------------------- /packages/common/src/decorator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/decorator/index.ts -------------------------------------------------------------------------------- /packages/common/src/decorator/jexl-expression.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/decorator/jexl-expression.decorator.ts -------------------------------------------------------------------------------- /packages/common/src/decorator/timestamp.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/decorator/timestamp.decorator.ts -------------------------------------------------------------------------------- /packages/common/src/entity/common.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/entity/common.entity.ts -------------------------------------------------------------------------------- /packages/common/src/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common.entity'; 2 | -------------------------------------------------------------------------------- /packages/common/src/enum/index.ts: -------------------------------------------------------------------------------- 1 | export * from './order-prefix.enum'; 2 | -------------------------------------------------------------------------------- /packages/common/src/enum/order-prefix.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/enum/order-prefix.enum.ts -------------------------------------------------------------------------------- /packages/common/src/exception/common.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/exception/common.exception.ts -------------------------------------------------------------------------------- /packages/common/src/exception/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/exception/index.ts -------------------------------------------------------------------------------- /packages/common/src/exception/validation.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/exception/validation.exception.ts -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/index.ts -------------------------------------------------------------------------------- /packages/common/src/scalars/date.scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/scalars/date.scalar.ts -------------------------------------------------------------------------------- /packages/common/src/scalars/decimal.scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/scalars/decimal.scalar.ts -------------------------------------------------------------------------------- /packages/common/src/scalars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/scalars/index.ts -------------------------------------------------------------------------------- /packages/common/src/scalars/jexl-expression.scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/scalars/jexl-expression.scalar.ts -------------------------------------------------------------------------------- /packages/common/src/transformer/decimal.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/transformer/decimal.transformer.ts -------------------------------------------------------------------------------- /packages/common/src/transformer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/transformer/index.ts -------------------------------------------------------------------------------- /packages/common/src/transformer/jexl-expression.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/transformer/jexl-expression.transformer.ts -------------------------------------------------------------------------------- /packages/common/src/transformer/timestamp.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/transformer/timestamp.transformer.ts -------------------------------------------------------------------------------- /packages/common/src/utils/gen-sn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/gen-sn.ts -------------------------------------------------------------------------------- /packages/common/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/index.ts -------------------------------------------------------------------------------- /packages/common/src/utils/nanoid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/nanoid.ts -------------------------------------------------------------------------------- /packages/common/src/utils/paginate/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/paginate/decorator.ts -------------------------------------------------------------------------------- /packages/common/src/utils/paginate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/paginate/index.ts -------------------------------------------------------------------------------- /packages/common/src/utils/paginate/paginate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/paginate/paginate.spec.ts -------------------------------------------------------------------------------- /packages/common/src/utils/paginate/paginate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/src/utils/paginate/paginate.ts -------------------------------------------------------------------------------- /packages/common/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/tsconfig.build.json -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/entity/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/nest-cli.json -------------------------------------------------------------------------------- /packages/entity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/package.json -------------------------------------------------------------------------------- /packages/entity/src/address/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/address/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/address/entity/merchant-address.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/address/entity/merchant-address.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/address/entity/order-address.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/address/entity/order-address.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/address/entity/user-address.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/address/entity/user-address.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/address/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/amount/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './user-amount-log.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/amount/entity/user-amount-log.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/amount/entity/user-amount-log.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/amount/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/article/entity/article-category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/article/entity/article-category.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/article/entity/article.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/article/entity/article.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/article/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/article/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/article/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/carrier/entity/carrier.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/carrier/entity/carrier.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/carrier/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './carrier.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/carrier/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/cart/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './user-cart.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/cart/entity/user-cart.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/cart/entity/user-cart.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/cart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/coupon/entity/coupon.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/coupon/entity/coupon.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/coupon/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './coupon.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/coupon/entity/user-coupon.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/coupon/entity/user-coupon.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/coupon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/district/entity/district.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/district/entity/district.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/district/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './district.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/district/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/feedback/entity/feedback.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/feedback/entity/feedback.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/feedback/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feedback.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/feedback/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/freight/entity/freight-template-district.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/freight/entity/freight-template-district.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/freight/entity/freight-template.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/freight/entity/freight-template.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/freight/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/freight/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/freight/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-attributes-template-attributes.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-attributes-template-attributes.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-attributes-template.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-attributes-template.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-attributes.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-attributes.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-category.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-comment.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-comment.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-sku.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-sku.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/goods-spu.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/goods-spu.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/goods/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/goods/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/index.ts -------------------------------------------------------------------------------- /packages/entity/src/merchant/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/merchant/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/merchant/entity/merchant-category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/merchant/entity/merchant-category.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/merchant/entity/merchant-goods-category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/merchant/entity/merchant-goods-category.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/merchant/entity/merchant-request.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/merchant/entity/merchant-request.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/merchant/entity/merchant.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/merchant/entity/merchant.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/merchant/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/order/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-change-log.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-change-log.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-delivery-info.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-delivery-info.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-goods-refund.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-goods-refund.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-goods-return.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-goods-return.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-goods.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-goods.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-group.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-group.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order-invoice.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order-invoice.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/entity/order.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/order/entity/order.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/order/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/permission/index.ts: -------------------------------------------------------------------------------- 1 | export * from './permission.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/permission/permission.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/permission/permission.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/points/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/points/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/points/entity/system-points-log.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/points/entity/system-points-log.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/points/entity/user-points-log.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/points/entity/user-points-log.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/points/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/role/entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './role.entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/role/entity/role.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/role/entity/role.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/role/index.ts: -------------------------------------------------------------------------------- 1 | export * from './entity'; 2 | -------------------------------------------------------------------------------- /packages/entity/src/user/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/dto/index.ts -------------------------------------------------------------------------------- /packages/entity/src/user/dto/user-login-result.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/dto/user-login-result.dto.ts -------------------------------------------------------------------------------- /packages/entity/src/user/dto/user-login.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/dto/user-login.dto.ts -------------------------------------------------------------------------------- /packages/entity/src/user/dto/user-register.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/dto/user-register.dto.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/index.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user-device.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user-device.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user-email.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user-email.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user-invoice.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user-invoice.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user-permission.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user-permission.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user-phone-number.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user-phone-number.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user-role.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user-role.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/entity/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/entity/user.entity.ts -------------------------------------------------------------------------------- /packages/entity/src/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/src/user/index.ts -------------------------------------------------------------------------------- /packages/entity/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/tsconfig.build.json -------------------------------------------------------------------------------- /packages/entity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/entity/tsconfig.json -------------------------------------------------------------------------------- /packages/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/.gitignore -------------------------------------------------------------------------------- /packages/server/cert/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/localhost.crt -------------------------------------------------------------------------------- /packages/server/cert/localhost.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/localhost.csr -------------------------------------------------------------------------------- /packages/server/cert/localhost.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/localhost.ext -------------------------------------------------------------------------------- /packages/server/cert/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/localhost.key -------------------------------------------------------------------------------- /packages/server/cert/myCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/myCA.key -------------------------------------------------------------------------------- /packages/server/cert/myCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/myCA.pem -------------------------------------------------------------------------------- /packages/server/cert/myCA.srl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/cert/myCA.srl -------------------------------------------------------------------------------- /packages/server/ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/ecosystem.config.js -------------------------------------------------------------------------------- /packages/server/i18n/zh-CN/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/i18n/zh-CN/auth.json -------------------------------------------------------------------------------- /packages/server/i18n/zh-CN/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/i18n/zh-CN/common.json -------------------------------------------------------------------------------- /packages/server/i18n/zh-CN/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/i18n/zh-CN/user.json -------------------------------------------------------------------------------- /packages/server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/nest-cli.json -------------------------------------------------------------------------------- /packages/server/nest-shop.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/nest-shop.config.yaml -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/package.json -------------------------------------------------------------------------------- /packages/server/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/schema.graphql -------------------------------------------------------------------------------- /packages/server/src/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/app.config.ts -------------------------------------------------------------------------------- /packages/server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/app.controller.ts -------------------------------------------------------------------------------- /packages/server/src/app.environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/app.environment.ts -------------------------------------------------------------------------------- /packages/server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/app.module.ts -------------------------------------------------------------------------------- /packages/server/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/auth.module.ts -------------------------------------------------------------------------------- /packages/server/src/auth/auth.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/auth.resolver.ts -------------------------------------------------------------------------------- /packages/server/src/auth/auth.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/auth.utils.ts -------------------------------------------------------------------------------- /packages/server/src/auth/controller/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/controller/auth.controller.ts -------------------------------------------------------------------------------- /packages/server/src/auth/controller/otp.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/controller/otp.controller.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-login-result.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-login-result.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-login.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-login.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-permission.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-permission.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-refresh-result.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-refresh-result.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-register.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-register.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-role.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-role.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/auth-send-verify.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/auth-send-verify.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/index.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/otp/auth-enable-otp-step-1-result.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/otp/auth-enable-otp-step-1-result.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/otp/auth-enable-otp-step-2-result.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/otp/auth-enable-otp-step-2-result.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/dto/otp/auth-enable-otp-step-2.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/dto/otp/auth-enable-otp-step-2.dto.ts -------------------------------------------------------------------------------- /packages/server/src/auth/guard/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/guard/auth.guard.ts -------------------------------------------------------------------------------- /packages/server/src/auth/guard/permission.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/guard/permission.guard.ts -------------------------------------------------------------------------------- /packages/server/src/auth/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/jwt.strategy.ts -------------------------------------------------------------------------------- /packages/server/src/auth/service/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/service/auth.service.ts -------------------------------------------------------------------------------- /packages/server/src/auth/service/otp.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/auth/service/otp.service.ts -------------------------------------------------------------------------------- /packages/server/src/common/decorator/message.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/decorator/message.decorator.ts -------------------------------------------------------------------------------- /packages/server/src/common/decorator/span.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/decorator/span.decorator.ts -------------------------------------------------------------------------------- /packages/server/src/common/filters/exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/filters/exception.filter.ts -------------------------------------------------------------------------------- /packages/server/src/common/interceptors/logging.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/interceptors/logging.interceptor.ts -------------------------------------------------------------------------------- /packages/server/src/common/interceptors/transform.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/interceptors/transform.interceptor.ts -------------------------------------------------------------------------------- /packages/server/src/common/interfaces/query-config.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/interfaces/query-config.interface.ts -------------------------------------------------------------------------------- /packages/server/src/common/logger/type-orm.logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/logger/type-orm.logger.ts -------------------------------------------------------------------------------- /packages/server/src/common/logger/winston.logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/logger/winston.logger.ts -------------------------------------------------------------------------------- /packages/server/src/common/middlewares/origin.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/middlewares/origin.middleware.ts -------------------------------------------------------------------------------- /packages/server/src/common/middlewares/security.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/middlewares/security.middleware.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/create-device-hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/create-device-hash.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/create.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/create.util.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/redis-proxy-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/redis-proxy-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/schema-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/schema-validator.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/warp-paginated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/warp-paginated.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/warp-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/warp-response.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/watch-file-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/utils/watch-file-loader.ts -------------------------------------------------------------------------------- /packages/server/src/common/vaildator/IsStrongPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/common/vaildator/IsStrongPassword.ts -------------------------------------------------------------------------------- /packages/server/src/district/district.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/district/district.controller.ts -------------------------------------------------------------------------------- /packages/server/src/district/district.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/district/district.module.ts -------------------------------------------------------------------------------- /packages/server/src/district/district.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/district/district.resolver.ts -------------------------------------------------------------------------------- /packages/server/src/district/district.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/district/district.service.ts -------------------------------------------------------------------------------- /packages/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/main.ts -------------------------------------------------------------------------------- /packages/server/src/permission/dto/permission-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/permission/dto/permission-create.dto.ts -------------------------------------------------------------------------------- /packages/server/src/permission/paginate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/permission/paginate-config.ts -------------------------------------------------------------------------------- /packages/server/src/permission/permission.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/permission/permission.controller.ts -------------------------------------------------------------------------------- /packages/server/src/permission/permission.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/permission/permission.module.ts -------------------------------------------------------------------------------- /packages/server/src/permission/permission.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/permission/permission.service.ts -------------------------------------------------------------------------------- /packages/server/src/redis-key.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/redis-key.constants.ts -------------------------------------------------------------------------------- /packages/server/src/role/dto/role-create.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/role/dto/role-create.dto.ts -------------------------------------------------------------------------------- /packages/server/src/role/dto/role-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/role/dto/role-update.dto.ts -------------------------------------------------------------------------------- /packages/server/src/role/paginate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/role/paginate-config.ts -------------------------------------------------------------------------------- /packages/server/src/role/role.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/role/role.controller.ts -------------------------------------------------------------------------------- /packages/server/src/role/role.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/role/role.module.ts -------------------------------------------------------------------------------- /packages/server/src/role/role.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/role/role.service.ts -------------------------------------------------------------------------------- /packages/server/src/tracing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/tracing.ts -------------------------------------------------------------------------------- /packages/server/src/user/paginate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/user/paginate-config.ts -------------------------------------------------------------------------------- /packages/server/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/user/user.controller.ts -------------------------------------------------------------------------------- /packages/server/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/user/user.module.ts -------------------------------------------------------------------------------- /packages/server/src/user/user.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/user/user.repository.ts -------------------------------------------------------------------------------- /packages/server/src/user/user.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/user/user.resolver.ts -------------------------------------------------------------------------------- /packages/server/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/src/user/user.service.ts -------------------------------------------------------------------------------- /packages/server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /packages/server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/test/jest-e2e.json -------------------------------------------------------------------------------- /packages/server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/tsconfig.build.json -------------------------------------------------------------------------------- /packages/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/packages/server/tsconfig.json -------------------------------------------------------------------------------- /ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/ssl.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuuki-Sakura/nest-shop/HEAD/yarn.lock --------------------------------------------------------------------------------