feeef 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,6 +12,8 @@ export interface CityEntity {
|
|
|
12
12
|
name: string;
|
|
13
13
|
/** Additional metadata as key-value pairs */
|
|
14
14
|
metadata: Record<string, any>;
|
|
15
|
+
/** Localized names by language code (e.g., { en: "New York", ar: "نيويورك" }) */
|
|
16
|
+
locales?: Record<string, string>;
|
|
15
17
|
/** Creation timestamp */
|
|
16
18
|
createdAt: any;
|
|
17
19
|
}
|
|
@@ -12,6 +12,8 @@ export interface CountryEntity {
|
|
|
12
12
|
phone: string;
|
|
13
13
|
/** Additional metadata as key-value pairs */
|
|
14
14
|
metadata: Record<string, any>;
|
|
15
|
+
/** Localized names by language code (e.g., { en: "United States", ar: "الولايات المتحدة" }) */
|
|
16
|
+
locales?: Record<string, string>;
|
|
15
17
|
/** Creation timestamp */
|
|
16
18
|
createdAt: any;
|
|
17
19
|
}
|
|
@@ -12,6 +12,8 @@ export interface StateEntity {
|
|
|
12
12
|
name: string;
|
|
13
13
|
/** Additional metadata as key-value pairs */
|
|
14
14
|
metadata: Record<string, any>;
|
|
15
|
+
/** Localized names by language code (e.g., { en: "California", ar: "كاليفورنيا" }) */
|
|
16
|
+
locales?: Record<string, string>;
|
|
15
17
|
/** Creation timestamp */
|
|
16
18
|
createdAt: any;
|
|
17
19
|
}
|