From 44fd16e89fff9303846d4ea23e9ce75d0f1d4bf2 Mon Sep 17 00:00:00 2001 From: barsa Date: Tue, 18 Nov 2025 15:56:15 +0900 Subject: [PATCH] Add Salesforce integration to SIM management module - Included SalesforceModule in the imports of sim-management.module.ts to enhance integration capabilities with Salesforce services. - This addition supports improved data handling and service interactions within the SIM management context. --- .../subscriptions/sim-management/sim-management.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/bff/src/modules/subscriptions/sim-management/sim-management.module.ts b/apps/bff/src/modules/subscriptions/sim-management/sim-management.module.ts index e44cdd20..b082e815 100644 --- a/apps/bff/src/modules/subscriptions/sim-management/sim-management.module.ts +++ b/apps/bff/src/modules/subscriptions/sim-management/sim-management.module.ts @@ -1,6 +1,7 @@ import { Module } from "@nestjs/common"; import { FreebitModule } from "@bff/integrations/freebit/freebit.module"; import { WhmcsModule } from "@bff/integrations/whmcs/whmcs.module"; +import { SalesforceModule } from "@bff/integrations/salesforce/salesforce.module"; import { MappingsModule } from "@bff/modules/id-mappings/mappings.module"; import { EmailModule } from "@bff/infra/email/email.module"; import { SimUsageStoreService } from "../sim-usage-store.service"; @@ -24,7 +25,7 @@ import { SimManagementQueueService } from "./queue/sim-management.queue"; import { SimManagementProcessor } from "./queue/sim-management.processor"; @Module({ - imports: [FreebitModule, WhmcsModule, MappingsModule, EmailModule], + imports: [FreebitModule, WhmcsModule, SalesforceModule, MappingsModule, EmailModule], providers: [ // Core services that the SIM services depend on SimUsageStoreService,