Browse Source

fix(elasticsearch-plugin): Make option optional

Michael Bromley 6 years ago
parent
commit
da8b2f246d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/elasticsearch-plugin/src/options.ts

+ 1 - 1
packages/elasticsearch-plugin/src/options.ts

@@ -111,7 +111,7 @@ export interface SearchConfig {
      * }
      * }
      * ```
      * ```
      */
      */
-    priceRangeBucketInterval: number;
+    priceRangeBucketInterval?: number;
 }
 }
 
 
 /**
 /**