@searchspring/snapi-oas 0.1.24 → 0.1.25
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/README.md +1 -1
- package/package.json +1 -1
- package/spec/v1/snapi.oas.v1.json +6 -1
- package/spec/v1/snapi.oas.v1.yaml +10 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
},
|
|
7
7
|
"description" : "Searchspring Snap Search API",
|
|
8
8
|
"title" : "snAPI",
|
|
9
|
-
"version" : "0.1.
|
|
9
|
+
"version" : "0.1.25",
|
|
10
10
|
"x-logo" : {
|
|
11
11
|
"url" : "./images/searchspring_logo.svg",
|
|
12
12
|
"altText" : "Searchspring Snap"
|
|
@@ -3812,6 +3812,11 @@
|
|
|
3812
3812
|
"originalQuery" : {
|
|
3813
3813
|
"description" : "Original query if spell correction occured.",
|
|
3814
3814
|
"type" : "string"
|
|
3815
|
+
},
|
|
3816
|
+
"matchType" : {
|
|
3817
|
+
"description" : "Indicates the type of search matching that was required for this search. Will return \"expanded\" when an Expanded Search is applied after finding zero results for the initial strict search.",
|
|
3818
|
+
"enum" : [ "expanded" ],
|
|
3819
|
+
"type" : "string"
|
|
3815
3820
|
}
|
|
3816
3821
|
},
|
|
3817
3822
|
"type" : "object"
|
|
@@ -4,7 +4,7 @@ info:
|
|
|
4
4
|
name: Searchspring
|
|
5
5
|
description: Searchspring Snap Search API
|
|
6
6
|
title: snAPI
|
|
7
|
-
version: 0.1.
|
|
7
|
+
version: 0.1.25
|
|
8
8
|
x-logo:
|
|
9
9
|
url: ./images/searchspring_logo.svg
|
|
10
10
|
altText: Searchspring Snap
|
|
@@ -2836,6 +2836,7 @@ components:
|
|
|
2836
2836
|
example:
|
|
2837
2837
|
search:
|
|
2838
2838
|
didYouMean: didYouMean
|
|
2839
|
+
matchType: expanded
|
|
2839
2840
|
query: query
|
|
2840
2841
|
originalQuery: originalQuery
|
|
2841
2842
|
pagination:
|
|
@@ -3485,6 +3486,7 @@ components:
|
|
|
3485
3486
|
SearchResponseModel_search:
|
|
3486
3487
|
example:
|
|
3487
3488
|
didYouMean: didYouMean
|
|
3489
|
+
matchType: expanded
|
|
3488
3490
|
query: query
|
|
3489
3491
|
originalQuery: originalQuery
|
|
3490
3492
|
properties:
|
|
@@ -3496,6 +3498,13 @@ components:
|
|
|
3496
3498
|
originalQuery:
|
|
3497
3499
|
description: Original query if spell correction occured.
|
|
3498
3500
|
type: string
|
|
3501
|
+
matchType:
|
|
3502
|
+
description: Indicates the type of search matching that was required for
|
|
3503
|
+
this search. Will return "expanded" when an Expanded Search is applied
|
|
3504
|
+
after finding zero results for the initial strict search.
|
|
3505
|
+
enum:
|
|
3506
|
+
- expanded
|
|
3507
|
+
type: string
|
|
3499
3508
|
type: object
|
|
3500
3509
|
SearchResponseModel_pagination:
|
|
3501
3510
|
example:
|