Skip to content

Commit 2a41a9a

Browse files
algolia-botshortcuts
andcommittedJul 19, 2024·
chore: release 5.0.0-beta.12
Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
1 parent 0966930 commit 2a41a9a

File tree

28 files changed

+123
-116
lines changed

28 files changed

+123
-116
lines changed
 

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [5.0.0-beta.12](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-beta.11...5.0.0-beta.12)
2+
3+
- [280037178](https://github.com/algolia/api-clients-automation/commit/280037178) fix(specs): update shopify feature flags ([#3380](https://github.com/algolia/api-clients-automation/pull/3380)) by [@millotp](https://github.com/millotp/)
4+
- [a68907d1c](https://github.com/algolia/api-clients-automation/commit/a68907d1c) feat(clients): add api key helper test ([#3338](https://github.com/algolia/api-clients-automation/pull/3338)) by [@Fluf22](https://github.com/Fluf22/)
5+
- [31ba7f6d0](https://github.com/algolia/api-clients-automation/commit/31ba7f6d0) fix(specs): recommend non required parameters ([#3355](https://github.com/algolia/api-clients-automation/pull/3355)) by [@shortcuts](https://github.com/shortcuts/)
6+
- [337eea93e](https://github.com/algolia/api-clients-automation/commit/337eea93e) fix(specs): results is required in GetRecommendationsResponse ([#3357](https://github.com/algolia/api-clients-automation/pull/3357)) by [@millotp](https://github.com/millotp/)
7+
18
## [5.0.0-beta.11](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-beta.10...5.0.0-beta.11)
29

310
- [a009967f6](https://github.com/algolia/api-clients-automation/commit/a009967f6) fix(specs): browse response required properties ([#3348](https://github.com/algolia/api-clients-automation/pull/3348)) by [@millotp](https://github.com/millotp/)

‎packages/algoliasearch/lite/src/liteClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type { GetRecommendationsResponse } from '../model/getRecommendationsResp
2525
import type { SearchMethodParams } from '../model/searchMethodParams';
2626
import type { SearchResponses } from '../model/searchResponses';
2727

28-
export const apiClientVersion = '5.0.0-beta.10';
28+
export const apiClientVersion = '5.0.0-beta.11';
2929

3030
function getDefaultHosts(appId: string): Host[] {
3131
return (

‎packages/algoliasearch/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algoliasearch",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "A fully-featured and blazing-fast JavaScript API client to interact with Algolia API.",
55
"repository": {
66
"type": "git",
@@ -63,14 +63,14 @@
6363
"test": "jest"
6464
},
6565
"dependencies": {
66-
"@algolia/client-abtesting": "5.0.0-beta.10",
67-
"@algolia/client-analytics": "5.0.0-beta.10",
68-
"@algolia/client-common": "5.0.0-beta.11",
69-
"@algolia/client-personalization": "5.0.0-beta.10",
70-
"@algolia/client-search": "5.0.0-beta.10",
71-
"@algolia/recommend": "5.0.0-beta.10",
72-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
73-
"@algolia/requester-node-http": "5.0.0-beta.11"
66+
"@algolia/client-abtesting": "5.0.0-beta.11",
67+
"@algolia/client-analytics": "5.0.0-beta.11",
68+
"@algolia/client-common": "5.0.0-beta.12",
69+
"@algolia/client-personalization": "5.0.0-beta.11",
70+
"@algolia/client-search": "5.0.0-beta.11",
71+
"@algolia/recommend": "5.0.0-beta.11",
72+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
73+
"@algolia/requester-node-http": "5.0.0-beta.12"
7474
},
7575
"devDependencies": {
7676
"@babel/preset-env": "7.24.8",

‎packages/client-abtesting/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-abtesting",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for client-abtesting",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/client-abtesting/src/abtestingClient.ts

+1-1
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-beta.10';
32+
export const apiClientVersion = '5.0.0-beta.11';
3333

3434
export const REGIONS = ['de', 'us'] as const;
3535
export type Region = (typeof REGIONS)[number];

‎packages/client-analytics/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-analytics",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for client-analytics",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/client-analytics/src/analyticsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
6161
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
6262
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';
6363

64-
export const apiClientVersion = '5.0.0-beta.10';
64+
export const apiClientVersion = '5.0.0-beta.11';
6565

6666
export const REGIONS = ['de', 'us'] as const;
6767
export type Region = (typeof REGIONS)[number];

‎packages/client-common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-common",
3-
"version": "5.0.0-beta.11",
3+
"version": "5.0.0-beta.12",
44
"description": "Common package for the Algolia JavaScript API client.",
55
"repository": {
66
"type": "git",

‎packages/client-insights/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-insights",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for client-insights",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/client-insights/src/insightsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type {
2424
import type { EventsResponse } from '../model/eventsResponse';
2525
import type { InsightsEvents } from '../model/insightsEvents';
2626

27-
export const apiClientVersion = '5.0.0-beta.10';
27+
export const apiClientVersion = '5.0.0-beta.11';
2828

2929
export const REGIONS = ['de', 'us'] as const;
3030
export type Region = (typeof REGIONS)[number];

‎packages/client-personalization/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-personalization",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for client-personalization",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/client-personalization/src/personalizationClient.ts

+1-1
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-beta.10';
30+
export const apiClientVersion = '5.0.0-beta.11';
3131

3232
export const REGIONS = ['eu', 'us'] as const;
3333
export type Region = (typeof REGIONS)[number];

‎packages/client-query-suggestions/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-query-suggestions",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for client-query-suggestions",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import type { ConfigurationWithIndex } from '../model/configurationWithIndex';
3131
import type { GetConfigStatus200Response } from '../model/getConfigStatus200Response';
3232
import type { GetLogFile200Response } from '../model/getLogFile200Response';
3333

34-
export const apiClientVersion = '5.0.0-beta.10';
34+
export const apiClientVersion = '5.0.0-beta.11';
3535

3636
export const REGIONS = ['eu', 'us'] as const;
3737
export type Region = (typeof REGIONS)[number];

‎packages/client-search/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-search",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for client-search",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/client-search/src/searchClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
128128
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
129129
import type { UserId } from '../model/userId';
130130

131-
export const apiClientVersion = '5.0.0-beta.10';
131+
export const apiClientVersion = '5.0.0-beta.11';
132132

133133
function getDefaultHosts(appId: string): Host[] {
134134
return (

‎packages/client-usage/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-usage",
3-
"version": "0.0.2-beta.10",
3+
"version": "0.0.2-beta.11",
44
"description": "JavaScript client for client-usage",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/client-usage/src/usageClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type {
2525
} from '../model/clientMethodProps';
2626
import type { GetUsage200Response } from '../model/getUsage200Response';
2727

28-
export const apiClientVersion = '0.0.2-beta.10';
28+
export const apiClientVersion = '0.0.2-beta.11';
2929

3030
function getDefaultHosts(appId: string): Host[] {
3131
return (

‎packages/ingestion/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/ingestion",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "JavaScript client for ingestion",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/ingestion/src/ingestionClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ import type { TransformationTryResponse } from '../model/transformationTryRespon
9494
import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse';
9595
import type { Trigger } from '../model/trigger';
9696

97-
export const apiClientVersion = '1.0.0-beta.10';
97+
export const apiClientVersion = '1.0.0-beta.11';
9898

9999
export const REGIONS = ['eu', 'us'] as const;
100100
export type Region = (typeof REGIONS)[number];

‎packages/monitoring/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/monitoring",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "JavaScript client for monitoring",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/monitoring/src/monitoringClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import type { InventoryResponse } from '../model/inventoryResponse';
3333
import type { LatencyResponse } from '../model/latencyResponse';
3434
import type { StatusResponse } from '../model/statusResponse';
3535

36-
export const apiClientVersion = '1.0.0-beta.10';
36+
export const apiClientVersion = '1.0.0-beta.11';
3737

3838
function getDefaultHosts(): Host[] {
3939
return [

‎packages/recommend/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/recommend",
3-
"version": "5.0.0-beta.10",
3+
"version": "5.0.0-beta.11",
44
"description": "JavaScript client for recommend",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.0-beta.11",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.11",
47-
"@algolia/requester-node-http": "5.0.0-beta.11"
45+
"@algolia/client-common": "5.0.0-beta.12",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.12",
47+
"@algolia/requester-node-http": "5.0.0-beta.12"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.10",

‎packages/recommend/src/recommendClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import type { GetRecommendationsResponse } from '../model/getRecommendationsResp
3333
import type { RecommendRule } from '../model/recommendRule';
3434
import type { SearchRecommendRulesResponse } from '../model/searchRecommendRulesResponse';
3535

36-
export const apiClientVersion = '5.0.0-beta.10';
36+
export const apiClientVersion = '5.0.0-beta.11';
3737

3838
function getDefaultHosts(appId: string): Host[] {
3939
return (

‎packages/requester-browser-xhr/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/requester-browser-xhr",
3-
"version": "5.0.0-beta.11",
3+
"version": "5.0.0-beta.12",
44
"description": "Promise-based request library for browser using xhr.",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"test": "jest"
2424
},
2525
"dependencies": {
26-
"@algolia/client-common": "5.0.0-beta.11"
26+
"@algolia/client-common": "5.0.0-beta.12"
2727
},
2828
"devDependencies": {
2929
"@babel/preset-env": "7.24.8",

‎packages/requester-fetch/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/requester-fetch",
3-
"version": "5.0.0-beta.11",
3+
"version": "5.0.0-beta.12",
44
"description": "Promise-based request library using Fetch.",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"test": "jest"
2424
},
2525
"dependencies": {
26-
"@algolia/client-common": "5.0.0-beta.11"
26+
"@algolia/client-common": "5.0.0-beta.12"
2727
},
2828
"devDependencies": {
2929
"@babel/preset-env": "7.24.8",

0 commit comments

Comments
 (0)
Please sign in to comment.