@openvoy/openvoy-typescriptmodels 0.0.5711 → 0.0.5721
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 +8 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -622,6 +622,14 @@ export interface LatLong {
|
|
|
622
622
|
longitude?: number;
|
|
623
623
|
}
|
|
624
624
|
|
|
625
|
+
export interface MissingProviderLink {
|
|
626
|
+
missingProviderLinkId?: string;
|
|
627
|
+
name?: string;
|
|
628
|
+
tourProvider?: TourProvider;
|
|
629
|
+
type?: CategoryType;
|
|
630
|
+
value?: any;
|
|
631
|
+
}
|
|
632
|
+
|
|
625
633
|
export interface NumberSortableFilter extends SortableFilter<number> {
|
|
626
634
|
maxExclusive?: number;
|
|
627
635
|
min?: number;
|
package/package.json
CHANGED