refactor(person-address): change postal_code to camelCase postalCode

Update all references to postal_code field to use camelCase postalCode for consistency with codebase naming conventions. This includes changes to models, schemas, and components.
This commit is contained in:
Khafid Prayoga
2025-10-09 19:51:57 +07:00
parent 91da0a1af9
commit 33f17e54b1
6 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ export interface PersonAddress extends Base {
address: string
rt?: string
rw?: string
postal_code?: string
postalCode?: string
village_code: string
}