From cafea9c8f78d0af6b0479ced9e88cdfb5aba259f Mon Sep 17 00:00:00 2001 From: Pierre Brisorgueil Date: Thu, 19 Mar 2026 10:12:14 +0100 Subject: [PATCH] fix(billing): use default import for billingEvents in README example --- modules/billing/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/billing/README.md b/modules/billing/README.md index 08a709ef2..91350d6d7 100644 --- a/modules/billing/README.md +++ b/modules/billing/README.md @@ -53,7 +53,7 @@ await BillingUsageService.increment(organizationId, 'documents.create', 1); Listen for plan changes in downstream modules: ```js -import { billingEvents } from '../billing/lib/events.js'; +import billingEvents from '../billing/lib/events.js'; billingEvents.on('plan.changed', ({ organizationId, previousPlan, newPlan, isDowngrade }) => { if (isDowngrade) {