Skip to content

Commit 2e24535

Browse files
algolia-botwriteens
andcommitted
chore: release 5.0.0-alpha.26
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Adewusi Victor <[email protected]>
1 parent d873631 commit 2e24535

35 files changed

+316
-105
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [5.0.0-alpha.26](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-alpha.25...5.0.0-alpha.26)
2+
3+
- [e84584dd](https://github.com/algolia/api-clients-automation/commit/e84584dd) feat(specs): add modelID as part of getModelMetrics response ([#1075](https://github.com/algolia/api-clients-automation/pull/1075)) by [@writeens](https://github.com/writeens/)
4+
15
## [5.0.0-alpha.25](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-alpha.24...5.0.0-alpha.25)
26

37
- [8151e945](https://github.com/algolia/api-clients-automation/commit/8151e945) feat(specs): attributes no longer required in model instance response ([#1065](https://github.com/algolia/api-clients-automation/pull/1065)) by [@writeens](https://github.com/writeens/)
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import type {
2222
import type { SearchMethodParams } from '../model/searchMethodParams';
2323
import type { SearchResponses } from '../model/searchResponses';
2424

25-
export const apiClientVersion = '5.0.0-alpha.25';
25+
export const apiClientVersion = '5.0.0-alpha.26';
2626

2727
function getDefaultHosts(appId: string): Host[] {
2828
return (

packages/algoliasearch/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algoliasearch",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "A fully-featured and blazing-fast JavaScript API client to interact with Algolia API.",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -59,13 +59,13 @@
5959
"test": "jest"
6060
},
6161
"dependencies": {
62-
"@algolia/client-abtesting": "5.0.0-alpha.25",
63-
"@algolia/client-analytics": "5.0.0-alpha.25",
64-
"@algolia/client-common": "5.0.0-alpha.25",
65-
"@algolia/client-personalization": "5.0.0-alpha.25",
66-
"@algolia/client-search": "5.0.0-alpha.25",
67-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
68-
"@algolia/requester-node-http": "5.0.0-alpha.25"
62+
"@algolia/client-abtesting": "5.0.0-alpha.26",
63+
"@algolia/client-analytics": "5.0.0-alpha.26",
64+
"@algolia/client-common": "5.0.0-alpha.26",
65+
"@algolia/client-personalization": "5.0.0-alpha.26",
66+
"@algolia/client-search": "5.0.0-alpha.26",
67+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
68+
"@algolia/requester-node-http": "5.0.0-alpha.26"
6969
},
7070
"devDependencies": {
7171
"@types/jest": "28.1.8",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/client-abtesting/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-abtesting",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "JavaScript client for client-abtesting",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -38,9 +38,9 @@
3838
"clean": "rm -rf ./dist || true"
3939
},
4040
"dependencies": {
41-
"@algolia/client-common": "5.0.0-alpha.25",
42-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
43-
"@algolia/requester-node-http": "5.0.0-alpha.25"
41+
"@algolia/client-common": "5.0.0-alpha.26",
42+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
43+
"@algolia/requester-node-http": "5.0.0-alpha.26"
4444
},
4545
"devDependencies": {
4646
"@types/node": "16.11.59",

packages/client-abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type {
2929
} from '../model/clientMethodProps';
3030
import type { ListABTestsResponse } from '../model/listABTestsResponse';
3131

32-
export const apiClientVersion = '5.0.0-alpha.25';
32+
export const apiClientVersion = '5.0.0-alpha.26';
3333

3434
export const REGIONS = ['de', 'us'] as const;
3535
export type Region = typeof REGIONS[number];
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/client-analytics/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-analytics",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "JavaScript client for client-analytics",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -38,9 +38,9 @@
3838
"clean": "rm -rf ./dist || true"
3939
},
4040
"dependencies": {
41-
"@algolia/client-common": "5.0.0-alpha.25",
42-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
43-
"@algolia/requester-node-http": "5.0.0-alpha.25"
41+
"@algolia/client-common": "5.0.0-alpha.26",
42+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
43+
"@algolia/requester-node-http": "5.0.0-alpha.26"
4444
},
4545
"devDependencies": {
4646
"@types/node": "16.11.59",

packages/client-analytics/src/analyticsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
5555
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
5656
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';
5757

58-
export const apiClientVersion = '5.0.0-alpha.25';
58+
export const apiClientVersion = '5.0.0-alpha.26';
5959

6060
export const REGIONS = ['de', 'us'] as const;
6161
export type Region = typeof REGIONS[number];

packages/client-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-common",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "Common package for the Algolia JavaScript API client.",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/client-insights/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-insights",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "JavaScript client for client-insights",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -38,9 +38,9 @@
3838
"clean": "rm -rf ./dist || true"
3939
},
4040
"dependencies": {
41-
"@algolia/client-common": "5.0.0-alpha.25",
42-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
43-
"@algolia/requester-node-http": "5.0.0-alpha.25"
41+
"@algolia/client-common": "5.0.0-alpha.26",
42+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
43+
"@algolia/requester-node-http": "5.0.0-alpha.26"
4444
},
4545
"devDependencies": {
4646
"@types/node": "16.11.59",

packages/client-insights/src/insightsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import type {
2323
import type { InsightEvents } from '../model/insightEvents';
2424
import type { PushEventsResponse } from '../model/pushEventsResponse';
2525

26-
export const apiClientVersion = '5.0.0-alpha.25';
26+
export const apiClientVersion = '5.0.0-alpha.26';
2727

2828
export const REGIONS = ['de', 'us'] as const;
2929
export type Region = typeof REGIONS[number];
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/client-personalization/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-personalization",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "JavaScript client for client-personalization",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -38,9 +38,9 @@
3838
"clean": "rm -rf ./dist || true"
3939
},
4040
"dependencies": {
41-
"@algolia/client-common": "5.0.0-alpha.25",
42-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
43-
"@algolia/requester-node-http": "5.0.0-alpha.25"
41+
"@algolia/client-common": "5.0.0-alpha.26",
42+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
43+
"@algolia/requester-node-http": "5.0.0-alpha.26"
4444
},
4545
"devDependencies": {
4646
"@types/node": "16.11.59",

packages/client-personalization/src/personalizationClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
2727
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
2828
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';
2929

30-
export const apiClientVersion = '5.0.0-alpha.25';
30+
export const apiClientVersion = '5.0.0-alpha.26';
3131

3232
export const REGIONS = ['eu', 'us'] as const;
3333
export type Region = typeof REGIONS[number];
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/client-query-suggestions/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-query-suggestions",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "JavaScript client for client-query-suggestions",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -38,9 +38,9 @@
3838
"clean": "rm -rf ./dist || true"
3939
},
4040
"dependencies": {
41-
"@algolia/client-common": "5.0.0-alpha.25",
42-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
43-
"@algolia/requester-node-http": "5.0.0-alpha.25"
41+
"@algolia/client-common": "5.0.0-alpha.26",
42+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
43+
"@algolia/requester-node-http": "5.0.0-alpha.26"
4444
},
4545
"devDependencies": {
4646
"@types/node": "16.11.59",

packages/client-query-suggestions/src/querySuggestionsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import type { QuerySuggestionsIndexWithIndexParam } from '../model/querySuggesti
3131
import type { Status } from '../model/status';
3232
import type { SuccessResponse } from '../model/successResponse';
3333

34-
export const apiClientVersion = '5.0.0-alpha.25';
34+
export const apiClientVersion = '5.0.0-alpha.26';
3535

3636
export const REGIONS = ['eu', 'us'] as const;
3737
export type Region = typeof REGIONS[number];
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

packages/client-search/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-search",
3-
"version": "5.0.0-alpha.25",
3+
"version": "5.0.0-alpha.26",
44
"description": "JavaScript client for client-search",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -38,9 +38,9 @@
3838
"clean": "rm -rf ./dist || true"
3939
},
4040
"dependencies": {
41-
"@algolia/client-common": "5.0.0-alpha.25",
42-
"@algolia/requester-browser-xhr": "5.0.0-alpha.25",
43-
"@algolia/requester-node-http": "5.0.0-alpha.25"
41+
"@algolia/client-common": "5.0.0-alpha.26",
42+
"@algolia/requester-browser-xhr": "5.0.0-alpha.26",
43+
"@algolia/requester-node-http": "5.0.0-alpha.26"
4444
},
4545
"devDependencies": {
4646
"@types/node": "16.11.59",

0 commit comments

Comments
 (0)