apexdevkit 1.9.2__tar.gz → 1.9.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/PKG-INFO +1 -1
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/http/httpx.py +2 -2
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/pyproject.toml +1 -1
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/LICENSE +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/README.md +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/__init__.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/annotation/__init__.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/annotation/deprecate.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/error.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/__init__.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/builder.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/dependable.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/docs.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/resource.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/response.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/router.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/schema.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/fastapi/service.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/formatter.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/http/__init__.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/http/fake.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/http/fluent.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/http/json.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/http/url.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/py.typed +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/__init__.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/base.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/connector.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/database.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/in_memory.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/interface.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/mongo.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/repository/sqlite.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/testing/__init__.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/testing/database.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/testing/fake.py +0 -0
- {apexdevkit-1.9.2 → apexdevkit-1.9.3}/apexdevkit/testing/rest.py +0 -0
|
@@ -65,7 +65,7 @@ class HttpxConfig(Mapping[str, Any]):
|
|
|
65
65
|
endpoint: str = ""
|
|
66
66
|
headers: JsonDict = field(default_factory=JsonDict)
|
|
67
67
|
params: JsonDict = field(default_factory=JsonDict)
|
|
68
|
-
json: JsonDict =
|
|
68
|
+
json: JsonDict | None = None
|
|
69
69
|
|
|
70
70
|
def with_endpoint(self, endpoint: str) -> HttpxConfig:
|
|
71
71
|
return HttpxConfig(
|
|
@@ -104,7 +104,7 @@ class HttpxConfig(Mapping[str, Any]):
|
|
|
104
104
|
"url": self.endpoint,
|
|
105
105
|
"headers": dict(self.headers),
|
|
106
106
|
"params": dict(self.params),
|
|
107
|
-
"json": dict(self.json),
|
|
107
|
+
"json": dict(self.json) if self.json is not None else None,
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
def __len__(self) -> int:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|