Skip to content

Commit

Permalink
Prepare v2.5.0 (#161)
Browse files Browse the repository at this point in the history
Bump package.json to v2.5.0 and search-core to v2.5.0.

J=none
TEST=auto
  • Loading branch information
nmanu1 committed Dec 8, 2023
1 parent 0e4ccbb commit 0dc7816
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion 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@2.5.0-beta.2
- @yext/search-core@2.5.0

This package contains the following license and notice below:

Expand Down
2 changes: 1 addition & 1 deletion docs/search-headless.result.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export declare interface Result<T = Record<string, unknown>>
| [index?](./search-headless.result.index.md) | number | <i>(Optional)</i> The index of the result among the other results in the search. |
| [link?](./search-headless.result.link.md) | string | <i>(Optional)</i> A hyperlink associated with the result. |
| [name?](./search-headless.result.name.md) | string | <i>(Optional)</i> The name of the result. |
| [rawData](./search-headless.result.rawdata.md) | T \| T\[\] | Raw entity profile data in the shape of key-value pairs, or as an array of key-value pairs. |
| [rawData](./search-headless.result.rawdata.md) | T | Raw entity profile data in the shape of key-value pairs, or as an array of key-value pairs. |
| [segment?](./search-headless.result.segment.md) | [Segment](./search-headless.segment.md) | <i>(Optional)</i> A relevant segment associated with the result. Present for document verticals grouped by Segment. |
| [source](./search-headless.result.source.md) | [Source](./search-headless.source.md) | Represents the source of a [Result](./search-headless.result.md)<!-- -->. |

2 changes: 1 addition & 1 deletion docs/search-headless.result.rawdata.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Raw entity profile data in the shape of key-value pairs, or as an array of key-v
<b>Signature:</b>

```typescript
rawData: T | T[];
rawData: T;
```
2 changes: 1 addition & 1 deletion etc/search-headless.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ export interface Result<T = Record<string, unknown>> {
index?: number;
link?: string;
name?: string;
rawData: T | T[];
rawData: T;
segment?: Segment;
source: Source;
}
Expand Down
18 changes: 9 additions & 9 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",
"version": "2.5.0-beta.2",
"version": "2.5.0",
"description": "A library for powering UI components for Yext Search integrations",
"author": "slapshot@yext.com",
"license": "BSD-3-Clause",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@yext/search-core": "^2.5.0-beta.2",
"@yext/search-core": "^2.5.0",
"js-levenshtein": "^1.1.6",
"lodash": "^4.17.21"
},
Expand Down

0 comments on commit 0dc7816

Please sign in to comment.