Skip to content

Commit

Permalink
Merge 9b01770 into 56e1a2f
Browse files Browse the repository at this point in the history
  • Loading branch information
oshi97 committed Aug 16, 2022
2 parents 56e1a2f + 9b01770 commit 846077c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions THIRD-PARTY-NOTICES
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ SOFTWARE.

The following NPM package may be included in this product:

- @yext/search-core@1.9.0
- @yext/search-core@2.0.0-alpha.204

This package contains the following license and notice below:

Expand Down Expand Up @@ -106,7 +106,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The following NPM package may be included in this product:

- @yext/search-headless@1.4.0
- @yext/search-headless@2.0.0-alpha.130

This package contains the following license and notice below:

Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yext/search-headless-react",
"version": "1.4.0",
"version": "2.0.0-alpha.151",
"description": "The official React UI Bindings layer for Search Headless",
"main": "./lib/esm/src/index.js",
"license": "BSD-3-Clause",
Expand Down Expand Up @@ -32,7 +32,7 @@
"generate-notices": "generate-license-file --input package.json --output THIRD-PARTY-NOTICES --overwrite"
},
"dependencies": {
"@yext/search-headless": "^1.4.0",
"@yext/search-headless": "^2.0.0-alpha.130",
"use-sync-external-store": "^1.1.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions tests/setup/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { universalQueryResponse, universalQueryResponseWithFilters } from './res

// Any unhandled requests are dropped and logged as warnings
const handlers = [
rest.get(/answers\/vertical\/query/, (req, res, ctx) => {
rest.get(/search\/vertical\/query/, (req, res, ctx) => {
const input = req.url.searchParams.get('input');
switch (input) {
case 'resultsWithNlpFilter':
Expand All @@ -18,7 +18,7 @@ const handlers = [
);
}
}),
rest.get(/answers\/query/, (req, res, ctx) => {
rest.get(/search\/query/, (req, res, ctx) => {
const input = req.url.searchParams.get('input');
switch (input) {
case 'resultsWithFilter':
Expand Down

0 comments on commit 846077c

Please sign in to comment.