Skip to content

Commit f6341c8

Browse files
authored
Merge branch 'main' into feat/adv-perso/realtime-feature-pred-3615
2 parents 0c82511 + 00f36a6 commit f6341c8

File tree

68 files changed

+3096
-5216
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3096
-5216
lines changed

CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
specs/ @algolia/doc-approvers
55
website/ @algolia/doc-approvers
6-
* @algolia/api-clients-automation
7-
86
specs/advanced-personalization @algolia/predict-fe
7+
8+
* @algolia/api-clients-automation

clients/algoliasearch-client-csharp/algoliasearch/Models/Ingestion/WatchResponse.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ public WatchResponse() { }
2424
/// <summary>
2525
/// Initializes a new instance of the WatchResponse class.
2626
/// </summary>
27-
/// <param name="message">a message describing the outcome of a validate run. (required).</param>
28-
public WatchResponse(string message)
27+
/// <param name="runID">Universally unique identifier (UUID) of a task run. (required).</param>
28+
public WatchResponse(string runID)
2929
{
30-
Message = message ?? throw new ArgumentNullException(nameof(message));
30+
RunID = runID ?? throw new ArgumentNullException(nameof(runID));
3131
}
3232

3333
/// <summary>

clients/algoliasearch-client-go/algolia/ingestion/model_watch_response.go

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

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/model/ingestion/WatchResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public WatchResponse setRunID(String runID) {
3030
}
3131

3232
/** Universally unique identifier (UUID) of a task run. */
33-
@javax.annotation.Nullable
33+
@javax.annotation.Nonnull
3434
public String getRunID() {
3535
return runID;
3636
}
@@ -81,7 +81,7 @@ public WatchResponse setMessage(String message) {
8181
}
8282

8383
/** a message describing the outcome of a validate run. */
84-
@javax.annotation.Nonnull
84+
@javax.annotation.Nullable
8585
public String getMessage() {
8686
return message;
8787
}

clients/algoliasearch-client-javascript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"test:bundle": "lerna run test:bundle --verbose --include-dependencies"
1616
},
1717
"devDependencies": {
18-
"@types/node": "22.13.14",
18+
"@types/node": "22.14.0",
1919
"bundlewatch": "0.4.0",
2020
"execa": "9.5.2",
2121
"lerna": "8.2.1",
22-
"rollup": "4.36.0",
23-
"typescript": "5.8.2"
22+
"rollup": "4.39.0",
23+
"typescript": "5.8.3"
2424
},
2525
"bundlewatch": {
2626
"files": [

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,15 @@
9191
"devDependencies": {
9292
"@algolia/requester-testing": "5.23.2",
9393
"@arethetypeswrong/cli": "0.17.4",
94-
"@types/node": "22.13.14",
94+
"@cloudflare/vitest-pool-workers": "0.8.11",
95+
"@cloudflare/workers-types": "4.20250407.0",
96+
"@types/node": "22.14.0",
9597
"jsdom": "26.0.0",
96-
"publint": "0.3.9",
97-
"rollup": "4.36.0",
98+
"publint": "0.3.10",
99+
"rollup": "4.39.0",
98100
"tsup": "8.4.0",
99-
"typescript": "5.8.2",
100-
"vitest": "3.0.9",
101-
"vitest-environment-miniflare": "2.14.4"
101+
"typescript": "5.8.3",
102+
"vitest": "3.1.1"
102103
},
103104
"engines": {
104105
"node": ">= 14.0.0"

clients/algoliasearch-client-javascript/packages/algoliasearch/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"types": [
55
"node",
66
"@cloudflare/workers-types",
7-
"vitest-environment-miniflare/globals",
7+
"@cloudflare/vitest-pool-workers",
88
"vitest/globals"
99
],
1010
"outDir": "dist"

clients/algoliasearch-client-javascript/packages/algoliasearch/vitest.workspace.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { defineWorkspace } from 'vitest/config';
1+
import { defineWorkersConfig } from '@cloudflare/vitest-pool-workers/config';
22

3-
export default defineWorkspace([
3+
export default defineWorkersConfig([
44
{
55
resolve: {
66
alias: {
@@ -34,7 +34,9 @@ export default defineWorkspace([
3434
test: {
3535
include: ['__tests__/algoliasearch.fetch.test.ts'],
3636
name: 'miniflare fetch',
37-
environment: 'miniflare',
37+
poolOptions: {
38+
workers: {},
39+
},
3840
},
3941
},
4042
{
@@ -46,7 +48,9 @@ export default defineWorkspace([
4648
test: {
4749
include: ['__tests__/algoliasearch.worker.test.ts'],
4850
name: 'miniflare worker',
49-
environment: 'miniflare',
51+
poolOptions: {
52+
workers: {},
53+
},
5054
},
5155
},
5256
]);

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.4",
59-
"@types/node": "22.13.14",
60-
"publint": "0.3.9",
61-
"rollup": "4.36.0",
59+
"@types/node": "22.14.0",
60+
"publint": "0.3.10",
61+
"rollup": "4.39.0",
6262
"tsup": "8.4.0",
63-
"typescript": "5.8.2"
63+
"typescript": "5.8.3"
6464
},
6565
"engines": {
6666
"node": ">= 14.0.0"

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.4",
59-
"@types/node": "22.13.14",
60-
"publint": "0.3.9",
61-
"rollup": "4.36.0",
59+
"@types/node": "22.14.0",
60+
"publint": "0.3.10",
61+
"rollup": "4.39.0",
6262
"tsup": "8.4.0",
63-
"typescript": "5.8.2"
63+
"typescript": "5.8.3"
6464
},
6565
"engines": {
6666
"node": ">= 14.0.0"

0 commit comments

Comments
 (0)