Skip to content

Commit ac43379

Browse files
authored
Merge branch 'main' into main
2 parents d06f8c8 + 881efa6 commit ac43379

File tree

88 files changed

+2373
-2147
lines changed

Some content is hidden

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

88 files changed

+2373
-2147
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
# Java for code generation
2020
- name: Install Java
2121
if: inputs.type != 'minimal'
22-
uses: actions/[email protected].0
22+
uses: actions/[email protected].1
2323
with:
2424
distribution: zulu
2525
java-version-file: config/.java-version

.yarn/releases/yarn-4.8.1.cjs

Lines changed: 0 additions & 935 deletions
This file was deleted.

.yarn/releases/yarn-4.9.0.cjs

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

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enableGlobalCache: false
44

55
nodeLinker: node-modules
66

7-
yarnPath: .yarn/releases/yarn-4.8.1.cjs
7+
yarnPath: .yarn/releases/yarn-4.9.0.cjs
88

99
# esbuild use native binaries, we need both to work locally and on the CI.
1010
supportedArchitectures:

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ public enum RecordType
2828
/// Enum Variant for value: variant
2929
/// </summary>
3030
[JsonPropertyName("variant")]
31-
Variant = 2
31+
Variant = 2,
32+
33+
/// <summary>
34+
/// Enum Collection for value: collection
35+
/// </summary>
36+
[JsonPropertyName("collection")]
37+
Collection = 3
3238
}
3339

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.202",
3+
"version": "9.0.203",
44
"rollForward": "latestMinor"
55
}
66
}

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

Lines changed: 4 additions & 2 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/RecordType.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
public enum RecordType {
1111
PRODUCT("product"),
1212

13-
VARIANT("variant");
13+
VARIANT("variant"),
14+
15+
COLLECTION("collection");
1416

1517
private final String value;
1618

clients/algoliasearch-client-javascript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"test:bundle": "lerna run test:bundle --verbose --include-dependencies"
1616
},
1717
"devDependencies": {
18-
"@types/node": "22.14.0",
19-
"bundlewatch": "0.4.0",
18+
"@types/node": "22.14.1",
19+
"bundlewatch": "0.4.1",
2020
"execa": "9.5.2",
21-
"lerna": "8.2.1",
21+
"lerna": "8.2.2",
2222
"rollup": "4.39.0",
2323
"typescript": "5.8.3"
2424
},

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
},
3737
"devDependencies": {
3838
"@arethetypeswrong/cli": "0.17.4",
39-
"@types/node": "22.14.0",
40-
"jsdom": "26.0.0",
41-
"publint": "0.3.10",
39+
"@types/node": "22.14.1",
40+
"jsdom": "26.1.0",
41+
"publint": "0.3.11",
4242
"ts-node": "10.9.2",
4343
"tsup": "8.4.0",
4444
"typescript": "5.8.3",

0 commit comments

Comments
 (0)