Skip to content

Commit

Permalink
Update kiota version to 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Create or Update Pull Request Action authored and lampajr committed May 7, 2024
1 parent 6905cc0 commit 9f3e492
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ifneq ($(filter arm%,$(OS_ARCH)),)
endif

# env variables
KIOTA_VERSION ?= "v1.13.0"
KIOTA_VERSION ?= "v1.14.0"
HORREUM_BRANCH ?= "master"
HORREUM_OPENAPI_PATH ?= "https://raw.githubusercontent.com/Hyperfoil/Horreum/${HORREUM_BRANCH}/docs/site/content/en/openapi/openapi.yaml"
GENERATED_CLIENT_PATH = "${PROJECT_PATH}/src/horreum/raw_client"
Expand Down
4 changes: 2 additions & 2 deletions examples/basic_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async def create_schema_transformers(client: HorreumClient, schema_id: int, data

transformer_data.extractors = extractors_data

transformer_id = await client.raw_client.api.schema.by_id_id(schema_id).transformers.post(transformer_data)
transformer_id = await client.raw_client.api.schema.by_id(schema_id).transformers.post(transformer_data)
assert transformer_id > 0
return transformer_id

Expand Down Expand Up @@ -105,7 +105,7 @@ async def delete_all(client: HorreumClient):
print("cleaning up schemas")
get_schemas = await client.raw_client.api.schema.get()
for s in get_schemas.schemas:
await client.raw_client.api.schema.by_id_id(s.id).delete()
await client.raw_client.api.schema.by_id(s.id).delete()

get_schemas = await client.raw_client.api.schema.get()
assert get_schemas.count == 0
Expand Down

0 comments on commit 9f3e492

Please sign in to comment.