Skip to content

Commit

Permalink
SDK regeneration
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jun 10, 2024
1 parent 88209ad commit b54a98c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "schematichq"
version = "1.0.1"
version = "1.0.2"
description = ""
readme = "README.md"
authors = []
Expand Down
4 changes: 3 additions & 1 deletion src/schematic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
UpsertBillingProductResponse,
UpsertBillingSubscriptionResponse,
)
from .client import AsyncSchematic, LocalCache, Schematic
from .client import AsyncSchematic, AsyncSchematicConfig, LocalCache, Schematic, SchematicConfig
from .companies import (
CountCompaniesParams,
CountCompaniesResponse,
Expand Down Expand Up @@ -304,6 +304,7 @@
"ApiKeyRequestResponseData",
"ApiKeyResponseData",
"AsyncSchematic",
"AsyncSchematicConfig",
"AudienceRequestBody",
"BadRequestError",
"BillingProductResponseData",
Expand Down Expand Up @@ -540,6 +541,7 @@
"RuleResponseData",
"RulesDetailResponseData",
"Schematic",
"SchematicConfig",
"SchematicEnvironment",
"SegmentStatusResp",
"UnauthorizedError",
Expand Down
2 changes: 1 addition & 1 deletion src/schematic/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "schematichq",
"X-Fern-SDK-Version": "1.0.1",
"X-Fern-SDK-Version": "1.0.2",
}
headers["X-Schematic-Api-Key"] = self.api_key
return headers
Expand Down

0 comments on commit b54a98c

Please sign in to comment.