Skip to content

Commit 02b67dd

Browse files
committed
Release python client 0.0.10
1 parent 3863a04 commit 02b67dd

File tree

3 files changed

+4
-421
lines changed

3 files changed

+4
-421
lines changed

src/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vectorize-client"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
description = "Python client for the Vectorize API"
55
authors = [ "Vectorize <contact@vectorize.io>" ]
66
license = "MIT"

src/python/vectorize_client/api/pipelines_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def _create_pipeline_serialize(
316316

317317
return self.api_client.param_serialize(
318318
method='POST',
319-
resource_path='/api/org/{organization}/pipelines',
319+
resource_path='/org/{organization}/pipelines',
320320
path_params=_path_params,
321321
query_params=_query_params,
322322
header_params=_header_params,
@@ -580,7 +580,7 @@ def _get_pipelines_serialize(
580580

581581
return self.api_client.param_serialize(
582582
method='GET',
583-
resource_path='/api/org/{organization}/pipelines',
583+
resource_path='/org/{organization}/pipelines',
584584
path_params=_path_params,
585585
query_params=_query_params,
586586
header_params=_header_params,

0 commit comments

Comments
 (0)