Skip to content

Commit

Permalink
Release 1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Apr 30, 2024
1 parent da6284a commit a6940e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flagright"
version = "1.5.4"
version = "1.5.5"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/flagright/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "flagright",
"X-Fern-SDK-Version": "1.5.4",
"X-Fern-SDK-Version": "1.5.5",
}
headers["x-api-key"] = self.api_key
return headers
Expand Down
1 change: 1 addition & 0 deletions src/flagright/types/executed_rules_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class ExecutedRulesResult(pydantic.BaseModel):
rule_hit_meta: typing.Optional[RuleHitMeta] = pydantic.Field(alias="ruleHitMeta")
labels: typing.Optional[typing.List[RuleLabels]]
nature: typing.Optional[RuleNature]
is_shadow: typing.Optional[bool] = pydantic.Field(alias="isShadow")

def json(self, **kwargs: typing.Any) -> str:
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
Expand Down
1 change: 1 addition & 0 deletions src/flagright/types/hit_rules_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class HitRulesDetails(pydantic.BaseModel):
rule_hit_meta: typing.Optional[RuleHitMeta] = pydantic.Field(alias="ruleHitMeta")
labels: typing.Optional[typing.List[RuleLabels]]
nature: typing.Optional[RuleNature]
is_shadow: typing.Optional[bool] = pydantic.Field(alias="isShadow")

def json(self, **kwargs: typing.Any) -> str:
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
Expand Down

0 comments on commit a6940e4

Please sign in to comment.