add endpoint configuration for city, currency, language, and timezone

This commit is contained in:
Gagan7900
2026-07-15 20:19:46 +05:30
parent 095aed204c
commit be86ab3564
72 changed files with 7874 additions and 471 deletions
+22 -2
View File
@@ -5,7 +5,27 @@ export interface CountryDto {
name: string;
phoneCode: string | null;
defaultCurrencyId: string | null;
isActive?: boolean;
isActive: boolean;
createdOn?: string;
modifiedOn?: string | null;
}
export type CountryModalMode = 'create' | 'edit';
export interface CountryLookupDto {
id: string;
iso2: string;
name: string;
}
export interface CreateCountryRequest {
iso2: string;
iso3: string;
name: string;
phoneCode: string | null;
defaultCurrencyId: string | null;
}
export interface UpdateCountryRequest extends CreateCountryRequest {
isActive: boolean;
}
export type CountryModalMode = 'create' | 'edit';