@openvoy/openvoy-typescriptmodels 0.0.3701 → 0.0.3721
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
|
@@ -359,6 +359,11 @@ export interface FindDestinations extends FacetedSearch<DestinationSummary> {
|
|
|
359
359
|
type?: DestinationType;
|
|
360
360
|
}
|
|
361
361
|
|
|
362
|
+
export interface FindRegion {
|
|
363
|
+
code?: string;
|
|
364
|
+
regionId?: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
362
367
|
export interface FindRegions extends FacetedSearch<Region> {
|
|
363
368
|
term?: string;
|
|
364
369
|
}
|
|
@@ -934,6 +939,7 @@ export interface UpsertPublicKey extends UserUpdate {
|
|
|
934
939
|
}
|
|
935
940
|
|
|
936
941
|
export interface UpsertRegion extends RegionUpdate {
|
|
942
|
+
contentDetails?: ContentDetails;
|
|
937
943
|
details?: RegionDetails;
|
|
938
944
|
providerDetails?: RegionProviderDetails;
|
|
939
945
|
}
|
package/package.json
CHANGED