diff --git a/thousandeyes-sdk-administrative/pyproject.toml b/thousandeyes-sdk-administrative/pyproject.toml index 4e7fef3c..09ae7757 100644 --- a/thousandeyes-sdk-administrative/pyproject.toml +++ b/thousandeyes-sdk-administrative/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-agents/pyproject.toml b/thousandeyes-sdk-agents/pyproject.toml index c1e13969..c935a4a8 100644 --- a/thousandeyes-sdk-agents/pyproject.toml +++ b/thousandeyes-sdk-agents/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-alerts/pyproject.toml b/thousandeyes-sdk-alerts/pyproject.toml index 10a2fb3f..3cef2a1c 100644 --- a/thousandeyes-sdk-alerts/pyproject.toml +++ b/thousandeyes-sdk-alerts/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-bgp-monitors/pyproject.toml b/thousandeyes-sdk-bgp-monitors/pyproject.toml index df35aa9f..e31cc407 100644 --- a/thousandeyes-sdk-bgp-monitors/pyproject.toml +++ b/thousandeyes-sdk-bgp-monitors/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-client/pyproject.toml b/thousandeyes-sdk-core/pyproject.toml similarity index 96% rename from thousandeyes-sdk-client/pyproject.toml rename to thousandeyes-sdk-core/pyproject.toml index 53c1e41c..224897d4 100644 --- a/thousandeyes-sdk-client/pyproject.toml +++ b/thousandeyes-sdk-core/pyproject.toml @@ -1,10 +1,10 @@ [project] -name = "thousandeyes-sdk-client" +name = "thousandeyes-sdk-core" dynamic = ["version"] authors = [ { name = "ThousandEyes API Team", email = "api-team@thousandeyes.com" } ] -description = "ThousandEyes API Client" +description = "ThousandEyes SDK Core" license = { text = "../LICENSE" } dependencies = [ "urllib3 >= 1.25.3", diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/__init__.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/__init__.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/__init__.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/__init__.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/api_client.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/api_client.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/api_client.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/api_client.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/api_response.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/api_response.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/api_response.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/api_response.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/configuration.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/configuration.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/configuration.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/configuration.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/exceptions.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/exceptions.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/exceptions.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/exceptions.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/py.typed b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/py.typed similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/py.typed rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/py.typed diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/rest.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/rest.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/rest.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/rest.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/thousandeyes_retry.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/thousandeyes_retry.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/thousandeyes_retry.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/thousandeyes_retry.py diff --git a/thousandeyes-sdk-client/src/thousandeyes_sdk/client/version.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/client/version.py similarity index 100% rename from thousandeyes-sdk-client/src/thousandeyes_sdk/client/version.py rename to thousandeyes-sdk-core/src/thousandeyes_sdk/client/version.py diff --git a/thousandeyes-sdk-credentials/pyproject.toml b/thousandeyes-sdk-credentials/pyproject.toml index 25c9c326..339d3fa2 100644 --- a/thousandeyes-sdk-credentials/pyproject.toml +++ b/thousandeyes-sdk-credentials/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-dashboards/pyproject.toml b/thousandeyes-sdk-dashboards/pyproject.toml index ab49d635..01ad28fc 100644 --- a/thousandeyes-sdk-dashboards/pyproject.toml +++ b/thousandeyes-sdk-dashboards/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-endpoint-agents/pyproject.toml b/thousandeyes-sdk-endpoint-agents/pyproject.toml index 4a9cbd04..1ee31405 100644 --- a/thousandeyes-sdk-endpoint-agents/pyproject.toml +++ b/thousandeyes-sdk-endpoint-agents/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-endpoint-instant-tests/pyproject.toml b/thousandeyes-sdk-endpoint-instant-tests/pyproject.toml index b3469766..e74c9234 100644 --- a/thousandeyes-sdk-endpoint-instant-tests/pyproject.toml +++ b/thousandeyes-sdk-endpoint-instant-tests/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-endpoint-labels/pyproject.toml b/thousandeyes-sdk-endpoint-labels/pyproject.toml index bf2065cb..282c2b81 100644 --- a/thousandeyes-sdk-endpoint-labels/pyproject.toml +++ b/thousandeyes-sdk-endpoint-labels/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-endpoint-test-results/pyproject.toml b/thousandeyes-sdk-endpoint-test-results/pyproject.toml index 10374bbb..3f0fff0a 100644 --- a/thousandeyes-sdk-endpoint-test-results/pyproject.toml +++ b/thousandeyes-sdk-endpoint-test-results/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-endpoint-tests/pyproject.toml b/thousandeyes-sdk-endpoint-tests/pyproject.toml index e6bb29d4..337a62e9 100644 --- a/thousandeyes-sdk-endpoint-tests/pyproject.toml +++ b/thousandeyes-sdk-endpoint-tests/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-instant-tests/pyproject.toml b/thousandeyes-sdk-instant-tests/pyproject.toml index 55108aea..742bf96c 100644 --- a/thousandeyes-sdk-instant-tests/pyproject.toml +++ b/thousandeyes-sdk-instant-tests/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-internet-insights/pyproject.toml b/thousandeyes-sdk-internet-insights/pyproject.toml index c53272e2..cfef0333 100644 --- a/thousandeyes-sdk-internet-insights/pyproject.toml +++ b/thousandeyes-sdk-internet-insights/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-labels/pyproject.toml b/thousandeyes-sdk-labels/pyproject.toml index 4bcf6824..605e29af 100644 --- a/thousandeyes-sdk-labels/pyproject.toml +++ b/thousandeyes-sdk-labels/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-snapshots/pyproject.toml b/thousandeyes-sdk-snapshots/pyproject.toml index 9ed9ea4a..85947fb6 100644 --- a/thousandeyes-sdk-snapshots/pyproject.toml +++ b/thousandeyes-sdk-snapshots/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-streaming/pyproject.toml b/thousandeyes-sdk-streaming/pyproject.toml index 908a6b69..c0d376c5 100644 --- a/thousandeyes-sdk-streaming/pyproject.toml +++ b/thousandeyes-sdk-streaming/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-tags/pyproject.toml b/thousandeyes-sdk-tags/pyproject.toml index eda7c8c8..6d30a381 100644 --- a/thousandeyes-sdk-tags/pyproject.toml +++ b/thousandeyes-sdk-tags/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-test-results/pyproject.toml b/thousandeyes-sdk-test-results/pyproject.toml index e3b547b0..ffe32af4 100644 --- a/thousandeyes-sdk-test-results/pyproject.toml +++ b/thousandeyes-sdk-test-results/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-tests/pyproject.toml b/thousandeyes-sdk-tests/pyproject.toml index 135e4974..0aae2d78 100644 --- a/thousandeyes-sdk-tests/pyproject.toml +++ b/thousandeyes-sdk-tests/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies] diff --git a/thousandeyes-sdk-usage/pyproject.toml b/thousandeyes-sdk-usage/pyproject.toml index 7fd993d9..76f745a0 100644 --- a/thousandeyes-sdk-usage/pyproject.toml +++ b/thousandeyes-sdk-usage/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "python-dateutil >=2.8.2", "pydantic >=2", "typing-extensions >=4.7.1", - "thousandeyes-sdk-client==1.0.0", + "thousandeyes-sdk-core==1.0.0", ] [project.optional-dependencies]