- Add JapanAddressForm component for complete Japanese address input. - Integrate ZipCodeInput for automatic address population via Japan Post API. - Create hooks for ZIP code lookup and address service status. - Define address-related types and constants in the domain package. - Document the feature, including environment variables and API endpoints. - Implement mapping functions for WHMCS and Salesforce address formats.
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
/**
|
|
* Address Domain - Providers
|
|
*
|
|
* Provider-specific adapters for BFF only.
|
|
* Portal should never import from this path.
|
|
*/
|
|
|
|
// Re-export everything from Japan Post provider
|
|
export * from "./japanpost/index.js";
|
|
|
|
// Also export as namespace for convenience
|
|
export * as JapanPost from "./japanpost/index.js";
|