Skip to content

Commit 2338f20

Browse files
feat(javascript): prepare composition for stable release (#4782) (generated) [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent b61b6fe commit 2338f20

File tree

40 files changed

+114
-114
lines changed

40 files changed

+114
-114
lines changed

clients/algoliasearch-client-javascript/packages/client-composition/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]-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

clients/algoliasearch-client-javascript/packages/client-composition/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
"dependencies": {
5252
"@algolia/client-common": "5.23.4",
5353
"@algolia/requester-browser-xhr": "5.23.4",
54-
"@algolia/requester-node-http": "5.23.4",
55-
"@algolia/requester-fetch": "5.23.4"
54+
"@algolia/requester-fetch": "5.23.4",
55+
"@algolia/requester-node-http": "5.23.4"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.4",

clients/algoliasearch-client-javascript/packages/client-composition/src/compositionFullClient.ts

Lines changed: 1 addition & 1 deletion
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 (

clients/algoliasearch-client-javascript/packages/composition/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]-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

clients/algoliasearch-client-javascript/packages/composition/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
"dependencies": {
5252
"@algolia/client-common": "5.23.4",
5353
"@algolia/requester-browser-xhr": "5.23.4",
54-
"@algolia/requester-node-http": "5.23.4",
55-
"@algolia/requester-fetch": "5.23.4"
54+
"@algolia/requester-fetch": "5.23.4",
55+
"@algolia/requester-node-http": "5.23.4"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.4",

clients/algoliasearch-client-javascript/packages/composition/src/compositionClient.ts

Lines changed: 1 addition & 1 deletion
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 (

docs/bundled/insights-snippets.json

Lines changed: 11 additions & 11 deletions
Large diffs are not rendered by default.

docs/snippets/csharp/src/Insights.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ public async Task SnippetForInsightsClientPushEvents1()
509509
Index = "products",
510510
UserToken = "user-123456",
511511
AuthenticatedUserToken = "user-123456",
512-
Timestamp = 1745193600000L,
512+
Timestamp = 1745452800000L,
513513
ObjectIDs = new List<string> { "9780545139700", "9780439784542" },
514514
QueryID = "43b15df305339e827f0ac0bdc5ebcaa7",
515515
}
@@ -522,7 +522,7 @@ public async Task SnippetForInsightsClientPushEvents1()
522522
Index = "products",
523523
UserToken = "user-123456",
524524
AuthenticatedUserToken = "user-123456",
525-
Timestamp = 1745193600000L,
525+
Timestamp = 1745452800000L,
526526
ObjectIDs = new List<string> { "9780545139700", "9780439784542" },
527527
}
528528
),

docs/snippets/dart/lib/insights.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ void snippetForpushEvents1() async {
566566
index: "products",
567567
userToken: "user-123456",
568568
authenticatedUserToken: "user-123456",
569-
timestamp: 1745193600000,
569+
timestamp: 1745452800000,
570570
objectIDs: [
571571
"9780545139700",
572572
"9780439784542",
@@ -579,7 +579,7 @@ void snippetForpushEvents1() async {
579579
index: "products",
580580
userToken: "user-123456",
581581
authenticatedUserToken: "user-123456",
582-
timestamp: 1745193600000,
582+
timestamp: 1745452800000,
583583
objectIDs: [
584584
"9780545139700",
585585
"9780439784542",

docs/snippets/go/src/insights.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)