@openvoy/openvoy-typescriptmodels 0.0.5411 → 0.0.5431

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.
Files changed (2) hide show
  1. package/core.d.ts +3 -7
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -83,7 +83,6 @@ export interface Category {
83
83
  name?: string;
84
84
  region?: string;
85
85
  subContinent?: string;
86
- timestampOfTourCount?: string;
87
86
  tourScore?: number;
88
87
  type?: CategoryType;
89
88
  }
@@ -92,6 +91,9 @@ export interface CategoryCode {
92
91
  type?: any;
93
92
  }
94
93
 
94
+ export interface CategoryUpdater {
95
+ }
96
+
95
97
  export interface City {
96
98
  alias?: string;
97
99
  attractions?: Attraction[];
@@ -435,7 +437,6 @@ export interface FindToursForDestination extends FacetedSearch<TourSummary> {
435
437
  }
436
438
 
437
439
  export interface FindToursWithDuration extends FacetedSearch<TourSummary>, SortableSearch {
438
- durationFilter?: NumberSortableFilter;
439
440
  term?: string;
440
441
  }
441
442
 
@@ -443,9 +444,6 @@ export interface FindToursWithTag extends FacetedSearch<TourSummary> {
443
444
  tagId?: string;
444
445
  }
445
446
 
446
- export interface Function<T, R> {
447
- }
448
-
449
447
  export interface GenerateApiKey {
450
448
  issuedAt?: string;
451
449
  keyId?: string;
@@ -699,9 +697,7 @@ export interface ReviewSummary {
699
697
 
700
698
  export interface SearchCategories {
701
699
  activeOnly?: boolean;
702
- converter?: Function<any, Category>;
703
700
  term?: string;
704
- terms?: string[];
705
701
  }
706
702
 
707
703
  export interface SearchUtils {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.5411",
3
+ "version": "0.0.5431",
4
4
  "types": "core.d.ts"
5
5
  }