- 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.
24 lines
482 B
TypeScript
24 lines
482 B
TypeScript
/**
|
|
* Japan Post Provider - Public API
|
|
*/
|
|
|
|
export {
|
|
transformJapanPostAddress,
|
|
transformJapanPostSearchResponse,
|
|
parseJapanPostSearchResponse,
|
|
} from "./mapper.js";
|
|
|
|
export type {
|
|
JapanPostTokenResponse,
|
|
JapanPostAddressRecord,
|
|
JapanPostSearchResponse,
|
|
JapanPostErrorResponse,
|
|
} from "./raw.types.js";
|
|
|
|
export {
|
|
japanPostTokenResponseSchema,
|
|
japanPostAddressRecordSchema,
|
|
japanPostSearchResponseSchema,
|
|
japanPostErrorResponseSchema,
|
|
} from "./raw.types.js";
|