tickera-angular-components 0.0.1-dev.146 → 0.0.1-dev.147
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.
package/index.d.ts
CHANGED
|
@@ -370,7 +370,7 @@ interface FetchCountriesParams extends CommonFetchAllParams {
|
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
interface FetchStatesParams extends CommonFetchAllParams {
|
|
373
|
-
|
|
373
|
+
country_id?: number;
|
|
374
374
|
sort_by?: 'state.id' | 'state.name' | 'state.country_id' | 'state.search_text' | 'state.created_at' | 'state.updated_at';
|
|
375
375
|
}
|
|
376
376
|
|
|
@@ -405,7 +405,7 @@ interface CityResponse {
|
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
interface FetchCitiesParams extends CommonFetchAllParams {
|
|
408
|
-
|
|
408
|
+
state_id?: number;
|
|
409
409
|
sort_by?: 'city.id' | 'city.name' | 'city.state_id' | 'city.search_text' | 'city.created_at' | 'city.updated_at';
|
|
410
410
|
}
|
|
411
411
|
|