venue-js 1.4.0-next.15 → 1.4.0-next.16

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.
@@ -840,6 +840,7 @@ interface VenueDataClient {
840
840
  destroyObservers: () => void;
841
841
  createFilterByTypeQueryOptions: <T extends FeatureType = FeatureType>(featureType: T, params: FilterParams, options: FeatureQueryOptions) => EnsureQueryDataOptions<FeatureResponseMap[T][] | FeaturePopulatedResponseMap[T][]>;
842
842
  createFindByIdQueryOptions: <T extends FeatureType = FeatureType>(featureType: T, id: string, params: FindParams, options: FeatureQueryOptions) => EnsureQueryDataOptions<FeatureResponseMap[T] | FeaturePopulatedResponseMap[T]>;
843
+ _internalFindById: InternalFindById;
843
844
  filterByType: <T extends FeatureType>(featureType: T, params?: FilterParams) => Promise<FeatureResponseMap[T][] | FeaturePopulatedResponseMap[T][]>;
844
845
  findById: <T extends FeatureType>(featureType: T, id: string, params?: FindParams) => Promise<FeatureResponseMap[T] | FeaturePopulatedResponseMap[T]>;
845
846
  search: (txt: string) => Promise<FuseResult<ImdfFeature>[]>;
@@ -840,6 +840,7 @@ interface VenueDataClient {
840
840
  destroyObservers: () => void;
841
841
  createFilterByTypeQueryOptions: <T extends FeatureType = FeatureType>(featureType: T, params: FilterParams, options: FeatureQueryOptions) => EnsureQueryDataOptions<FeatureResponseMap[T][] | FeaturePopulatedResponseMap[T][]>;
842
842
  createFindByIdQueryOptions: <T extends FeatureType = FeatureType>(featureType: T, id: string, params: FindParams, options: FeatureQueryOptions) => EnsureQueryDataOptions<FeatureResponseMap[T] | FeaturePopulatedResponseMap[T]>;
843
+ _internalFindById: InternalFindById;
843
844
  filterByType: <T extends FeatureType>(featureType: T, params?: FilterParams) => Promise<FeatureResponseMap[T][] | FeaturePopulatedResponseMap[T][]>;
844
845
  findById: <T extends FeatureType>(featureType: T, id: string, params?: FindParams) => Promise<FeatureResponseMap[T] | FeaturePopulatedResponseMap[T]>;
845
846
  search: (txt: string) => Promise<FuseResult<ImdfFeature>[]>;
@@ -2122,6 +2122,7 @@ var getDataClient = (options) => {
2122
2122
  destroyObservers,
2123
2123
  createFilterByTypeQueryOptions,
2124
2124
  createFindByIdQueryOptions,
2125
+ _internalFindById: internalFindById,
2125
2126
  filterByType,
2126
2127
  findById,
2127
2128
  search: searchFn