Merged
Conversation
This reverts commit d1a60be.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several new features and enhancements, including the addition of an
ActivePrinciplemodule, bulk operations for coupons and promos, and improvements to the branch module to support geospatial queries. It also includes general updates like versioning and configuration changes.New Features and Enhancements:
Active Principle Module:
ActivePrinciplemodule, including its controller, service, entity, DTO, and database migration to manage active principles. This includes support for pagination, search, and Swagger documentation. (src/active-principle/active-principle.controller.ts,src/active-principle/active-principle.module.ts,src/active-principle/active-principle.service.ts,src/active-principle/dto/active-principle.dto.ts,src/active-principle/entities/active-principle.entity.ts,src/active-principle/migrations/1747107651171-add-active-principle-migration.ts) [1] [2] [3] [4] [5] [6]Bulk Operations for Discounts:
src/discount/controllers/coupon.controller.ts,src/discount/controllers/promo.controller.ts) [1] [2]Branch Module Enhancements:
BranchServiceto find the nearest branch based on latitude and longitude using geospatial queries. (src/branch/branch.service.ts,src/database/migrations/1747014730112-enable-postgis-extension-migration.ts) [1] [2]General Updates:
Versioning and Configuration:
package.jsonto1.0.0and added a newADMIN_EMAILconfiguration in.env.example. (package.json,.env.example) [1] [2]Code Quality and Structure:
BranchModuleto useforwardReffor circular dependencies and exported theBranchService. (src/branch/branch.module.ts)