Skip to content

Commit b18651b

Browse files
chore: release 2024-10-23 [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent f13d948 commit b18651b

File tree

31 files changed

+137
-137
lines changed

31 files changed

+137
-137
lines changed

clients/algoliasearch-client-javascript/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ All of our clients comes with type definition, and are available for both browse
3838
### With a package manager
3939

4040
```bash
41-
41+
4242
# or
43-
npm install [email protected].1
43+
npm install [email protected].2
4444
# or
45-
45+
4646
```
4747

4848
### Without a package manager
@@ -51,10 +51,10 @@ Add the following JavaScript snippet to the <head> of your website:
5151

5252
```html
5353
// for the full client
54-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/lite/builds/browser.umd.js"></script>
5858
```
5959

6060
### Usage

clients/algoliasearch-client-javascript/packages/algoliasearch/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ All of our clients comes with type definition, and are available for both browse
3838
### With a package manager
3939

4040
```bash
41-
41+
4242
# or
43-
npm install [email protected].1
43+
npm install [email protected].2
4444
# or
45-
45+
4646
```
4747

4848
### Without a package manager
@@ -51,10 +51,10 @@ Add the following JavaScript snippet to the <head> of your website:
5151

5252
```html
5353
// for the full client
54-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/lite/builds/browser.umd.js"></script>
5858
```
5959

6060
### Usage

clients/algoliasearch-client-javascript/packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type {
2424
import type { SearchForFacetValuesResponse } from '../model/searchForFacetValuesResponse';
2525
import type { SearchResponse } from '../model/searchResponse';
2626

27-
export const apiClientVersion = '5.10.1';
27+
export const apiClientVersion = '5.10.2';
2828

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

clients/algoliasearch-client-javascript/packages/client-abtesting/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/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
StopABTestProps,
3030
} from '../model/clientMethodProps';
3131

32-
export const apiClientVersion = '5.10.1';
32+
export const apiClientVersion = '5.10.2';
3333

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

clients/algoliasearch-client-javascript/packages/client-analytics/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/client-analytics/src/analyticsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import type {
5858
GetUsersCountProps,
5959
} from '../model/clientMethodProps';
6060

61-
export const apiClientVersion = '5.10.1';
61+
export const apiClientVersion = '5.10.2';
6262

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

clients/algoliasearch-client-javascript/packages/client-insights/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/client-insights/src/insightsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import type {
2121
DeleteUserTokenProps,
2222
} from '../model/clientMethodProps';
2323

24-
export const apiClientVersion = '5.10.1';
24+
export const apiClientVersion = '5.10.2';
2525

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

clients/algoliasearch-client-javascript/packages/client-personalization/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/client-personalization/src/personalizationClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type {
2525
GetUserTokenProfileProps,
2626
} from '../model/clientMethodProps';
2727

28-
export const apiClientVersion = '5.10.1';
28+
export const apiClientVersion = '5.10.2';
2929

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

clients/algoliasearch-client-javascript/packages/client-query-suggestions/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/client-query-suggestions/src/querySuggestionsClient.ts

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

33-
export const apiClientVersion = '5.10.1';
33+
export const apiClientVersion = '5.10.2';
3434

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

clients/algoliasearch-client-javascript/packages/client-search/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ import type {
143143

144144
import type { BatchRequest } from '../model/batchRequest';
145145

146-
export const apiClientVersion = '5.10.1';
146+
export const apiClientVersion = '5.10.2';
147147

148148
function getDefaultHosts(appId: string): Host[] {
149149
return (

clients/algoliasearch-client-javascript/packages/ingestion/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/ingestion/src/ingestionClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ import type { SubscriptionTrigger } from '../model/subscriptionTrigger';
117117
import type { TaskCreateTrigger } from '../model/taskCreateTrigger';
118118
import type { Trigger } from '../model/trigger';
119119

120-
export const apiClientVersion = '1.10.1';
120+
export const apiClientVersion = '1.10.2';
121121

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

clients/algoliasearch-client-javascript/packages/monitoring/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/monitoring/src/monitoringClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import type {
3131
GetReachabilityProps,
3232
} from '../model/clientMethodProps';
3333

34-
export const apiClientVersion = '1.10.1';
34+
export const apiClientVersion = '1.10.2';
3535

3636
function getDefaultHosts(): Host[] {
3737
return [{ url: 'status.algolia.com', accept: 'readWrite', protocol: 'https' }];

clients/algoliasearch-client-javascript/packages/recommend/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/[email protected].1
44+
yarn add @algolia/[email protected].2
4545
# or
46-
npm install @algolia/[email protected].1
46+
npm install @algolia/[email protected].2
4747
# or
48-
pnpm add @algolia/[email protected].1
48+
pnpm add @algolia/[email protected].2
4949
```
5050

5151
### Without a package manager
5252

5353
Add the following JavaScript snippet to the <head> of your website:
5454

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].2/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

clients/algoliasearch-client-javascript/packages/recommend/src/recommendClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import type {
3434
SearchRecommendRulesProps,
3535
} from '../model/clientMethodProps';
3636

37-
export const apiClientVersion = '5.10.1';
37+
export const apiClientVersion = '5.10.2';
3838

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

0 commit comments

Comments
 (0)