Skip to content

Commit 9c4867e

Browse files
feat(javascript): prepare composition for stable release (generated)
algolia/api-clients-automation#4782 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 954e26b commit 9c4867e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

packages/client-composition/README.md

+4-4
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]-alpha.21
44+
yarn add @algolia/[email protected]
4545
# or
46-
npm install @algolia/[email protected]-alpha.21
46+
npm install @algolia/[email protected]
4747
# or
48-
pnpm add @algolia/[email protected]-alpha.21
48+
pnpm add @algolia/[email protected]
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]-alpha.21/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected]/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-composition/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.1-alpha.21",
2+
"version": "0.0.1",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"

packages/client-composition/src/compositionFullClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import type {
4141
WaitForCompositionTaskOptions,
4242
} from '../model/clientMethodProps';
4343

44-
export const apiClientVersion = '0.0.1-alpha.21';
44+
export const apiClientVersion = '0.0.1';
4545

4646
function getDefaultHosts(appId: string): Host[] {
4747
return (

packages/composition/README.md

+4-4
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]-beta.13
44+
yarn add @algolia/[email protected]
4545
# or
46-
npm install @algolia/[email protected]-beta.13
46+
npm install @algolia/[email protected]
4747
# or
48-
pnpm add @algolia/[email protected]-beta.13
48+
pnpm add @algolia/[email protected]
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]-beta.13/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected]/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/composition/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.1-beta.13",
2+
"version": "0.0.1",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"

packages/composition/src/compositionClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type { SearchResponse } from '../model/searchResponse';
1515

1616
import type { SearchForFacetValuesProps, SearchProps } from '../model/clientMethodProps';
1717

18-
export const apiClientVersion = '0.0.1-beta.13';
18+
export const apiClientVersion = '0.0.1';
1919

2020
function getDefaultHosts(appId: string): Host[] {
2121
return (

0 commit comments

Comments
 (0)