@openvoy/openvoy-typescriptmodels 0.0.711 → 0.0.721
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/core.d.ts +6 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -304,6 +304,12 @@ export interface GetCountryForProvider {
|
|
|
304
304
|
providerId?: CountryProviderId;
|
|
305
305
|
}
|
|
306
306
|
|
|
307
|
+
export interface GetCountryOfCity {
|
|
308
|
+
countryCode?: string;
|
|
309
|
+
name?: string;
|
|
310
|
+
providerId?: CityProviderId;
|
|
311
|
+
}
|
|
312
|
+
|
|
307
313
|
export interface GetFacets extends FacetableRequest {
|
|
308
314
|
query?: FacetableRequest;
|
|
309
315
|
}
|
package/package.json
CHANGED