Skip to content

Commit 5a59c8e

Browse files
authored
Merge branch 'main' into fix/specs-ingestion-custom-timeout-endpoint
2 parents 7f8cf82 + 2be65a3 commit 5a59c8e

File tree

388 files changed

+750
-11
lines changed

Some content is hidden

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

388 files changed

+750
-11
lines changed

clients/algoliasearch-client-csharp/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-dart/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-go/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-java/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-javascript/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-kotlin/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-php/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-python/.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Do not edit files in this repository
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types:
66
- opened
77
- synchronize

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,13 @@ class ABTest(BaseModel):
6969
configuration: Optional[ABTestConfiguration] = None
7070

7171
model_config = ConfigDict(
72+
strict=False,
7273
use_enum_values=True,
7374
populate_by_name=True,
7475
validate_assignment=True,
7576
protected_namespaces=(),
7677
alias_generator=_alias_generator,
78+
extra="allow",
7779
)
7880

7981
def to_json(self) -> str:

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_test_configuration.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@ class ABTestConfiguration(BaseModel):
4545
minimum_detectable_effect: Optional[MinimumDetectableEffect] = None
4646

4747
model_config = ConfigDict(
48+
strict=False,
4849
use_enum_values=True,
4950
populate_by_name=True,
5051
validate_assignment=True,
5152
protected_namespaces=(),
5253
alias_generator=_alias_generator,
54+
extra="allow",
5355
)
5456

5557
def to_json(self) -> str:

0 commit comments

Comments
 (0)