feat: add consumer accounts and business activities management
- Implemented AccountsService for managing consumer accounts including create, update, delete, and find operations. - Created DTOs for account creation and updates. - Developed BusinessActivitiesController and BusinessActivitiesService for handling business activities related to consumers. - Added complexes management with ComplexesController and ComplexesService. - Introduced POS management with ComplexPosesController and ComplexPosesService. - Created necessary DTOs for business activities and POS. - Established Licenses management with LicensesController and LicensesService. - Integrated consumer management with PartnerConsumersController and PartnerConsumersService. - Added Prisma module imports and service connections across modules.
This commit is contained in:
@@ -95,15 +95,35 @@ export type Device = Prisma.DeviceModel
|
||||
*/
|
||||
export type License = Prisma.LicenseModel
|
||||
/**
|
||||
* Model ActivatedLicense
|
||||
* Model LicenseActivation
|
||||
*
|
||||
*/
|
||||
export type ActivatedLicense = Prisma.ActivatedLicenseModel
|
||||
export type LicenseActivation = Prisma.LicenseActivationModel
|
||||
/**
|
||||
* Model ChargedLicenseTransactions
|
||||
* Model LicenseChargeTransaction
|
||||
*
|
||||
*/
|
||||
export type ChargedLicenseTransactions = Prisma.ChargedLicenseTransactionsModel
|
||||
export type LicenseChargeTransaction = Prisma.LicenseChargeTransactionModel
|
||||
/**
|
||||
* Model LicenseRenew
|
||||
*
|
||||
*/
|
||||
export type LicenseRenew = Prisma.LicenseRenewModel
|
||||
/**
|
||||
* Model LicenseRenewChargeTransaction
|
||||
*
|
||||
*/
|
||||
export type LicenseRenewChargeTransaction = Prisma.LicenseRenewChargeTransactionModel
|
||||
/**
|
||||
* Model PartnerAccountQuotaChargeTransaction
|
||||
*
|
||||
*/
|
||||
export type PartnerAccountQuotaChargeTransaction = Prisma.PartnerAccountQuotaChargeTransactionModel
|
||||
/**
|
||||
* Model PartnerAccountQuotaAllocation
|
||||
*
|
||||
*/
|
||||
export type PartnerAccountQuotaAllocation = Prisma.PartnerAccountQuotaAllocationModel
|
||||
/**
|
||||
* Model PartnerAccount
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user