Re-export Address type from customer domain in common index for easier imports, enhancing code clarity and maintainability.

This commit is contained in:
barsa 2025-10-08 18:56:14 +09:00
parent 0ddb7c521c
commit fd87a0220a

View File

@ -15,3 +15,7 @@ export * as CommonProviders from "./providers/index";
export type { WhmcsResponse, WhmcsErrorResponse } from "./providers/whmcs";
export type { SalesforceResponse } from "./providers/salesforce";
// Re-export Address from customer domain for convenience
// (Address is defined in customer domain, re-exported here for easier imports)
export type { Address } from "../customer/schema";