diff --git a/README.md b/README.md index 48f1c50..c00c531 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ from waylay.services.queries.models.query_input import QueryInput from waylay.services.queries.models.query_result import QueryResult try: # Execute Query - # calls `POST /queries/v1/queries/v1/data` + # calls `POST /queries/v1/data` api_response = await waylay_client.queries.execute.execute( # query parameters: query = { @@ -72,14 +72,14 @@ All URIs are relative to *https://api.waylay.io* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- -*ExecuteApi* | [**execute_by_name**](docs/ExecuteApi.md#execute_by_name) | **GET** /queries/v1/queries/v1/data/{query_name} | Execute Named Query -*ExecuteApi* | [**execute**](docs/ExecuteApi.md#execute) | **POST** /queries/v1/queries/v1/data | Execute Query -*ManageApi* | [**create**](docs/ManageApi.md#create) | **POST** /queries/v1/queries/v1/query | Post Query -*ManageApi* | [**get**](docs/ManageApi.md#get) | **GET** /queries/v1/queries/v1/query/{query_name} | Get Query -*ManageApi* | [**list**](docs/ManageApi.md#list) | **GET** /queries/v1/queries/v1/query | List Queries -*ManageApi* | [**remove**](docs/ManageApi.md#remove) | **DELETE** /queries/v1/queries/v1/query/{query_name} | Remove Query -*ManageApi* | [**update**](docs/ManageApi.md#update) | **PUT** /queries/v1/queries/v1/query/{query_name} | Update Query -*StatusApi* | [**get**](docs/StatusApi.md#get) | **GET** /queries/v1/queries/v1 | Get Version And Health +*ExecuteApi* | [**execute_by_name**](docs/ExecuteApi.md#execute_by_name) | **GET** /queries/v1/data/{query_name} | Execute Named Query +*ExecuteApi* | [**execute**](docs/ExecuteApi.md#execute) | **POST** /queries/v1/data | Execute Query +*ManageApi* | [**create**](docs/ManageApi.md#create) | **POST** /queries/v1/query | Post Query +*ManageApi* | [**get**](docs/ManageApi.md#get) | **GET** /queries/v1/query/{query_name} | Get Query +*ManageApi* | [**list**](docs/ManageApi.md#list) | **GET** /queries/v1/query | List Queries +*ManageApi* | [**remove**](docs/ManageApi.md#remove) | **DELETE** /queries/v1/query/{query_name} | Remove Query +*ManageApi* | [**update**](docs/ManageApi.md#update) | **PUT** /queries/v1/query/{query_name} | Update Query +*StatusApi* | [**get**](docs/StatusApi.md#get) | **GET** /queries/v1 | Get Version And Health ## Documentation For Models diff --git a/docs/ExecuteApi.md b/docs/ExecuteApi.md index fd8b576..b488869 100644 --- a/docs/ExecuteApi.md +++ b/docs/ExecuteApi.md @@ -4,8 +4,8 @@ All URIs are relative to *https://api.waylay.io* Method | HTTP request | Description ------------- | ------------- | ------------- -[**execute_by_name**](ExecuteApi.md#execute_by_name) | **GET** /queries/v1/queries/v1/data/{query_name} | Execute Named Query -[**execute**](ExecuteApi.md#execute) | **POST** /queries/v1/queries/v1/data | Execute Query +[**execute_by_name**](ExecuteApi.md#execute_by_name) | **GET** /queries/v1/data/{query_name} | Execute Named Query +[**execute**](ExecuteApi.md#execute) | **POST** /queries/v1/data | Execute Query # **execute_by_name** > execute_by_name( @@ -34,7 +34,7 @@ waylay_client = WaylayClient.from_profile() from waylay.services.queries.models.query_result import QueryResult try: # Execute Named Query - # calls `GET /queries/v1/queries/v1/data/{query_name}` + # calls `GET /queries/v1/data/{query_name}` api_response = await waylay_client.queries.execute.execute_by_name( 'query_name_example', # query_name | path param "query_name" # query parameters: @@ -54,7 +54,7 @@ except ApiError as e: ### Endpoint ``` -GET /queries/v1/queries/v1/data/{query_name} +GET /queries/v1/data/{query_name} ``` ### Parameters @@ -124,7 +124,7 @@ from waylay.services.queries.models.query_input import QueryInput from waylay.services.queries.models.query_result import QueryResult try: # Execute Query - # calls `POST /queries/v1/queries/v1/data` + # calls `POST /queries/v1/data` api_response = await waylay_client.queries.execute.execute( # query parameters: query = { @@ -145,7 +145,7 @@ except ApiError as e: ### Endpoint ``` -POST /queries/v1/queries/v1/data +POST /queries/v1/data ``` ### Parameters diff --git a/docs/ManageApi.md b/docs/ManageApi.md index e008943..ed1812b 100644 --- a/docs/ManageApi.md +++ b/docs/ManageApi.md @@ -4,11 +4,11 @@ All URIs are relative to *https://api.waylay.io* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create**](ManageApi.md#create) | **POST** /queries/v1/queries/v1/query | Post Query -[**get**](ManageApi.md#get) | **GET** /queries/v1/queries/v1/query/{query_name} | Get Query -[**list**](ManageApi.md#list) | **GET** /queries/v1/queries/v1/query | List Queries -[**remove**](ManageApi.md#remove) | **DELETE** /queries/v1/queries/v1/query/{query_name} | Remove Query -[**update**](ManageApi.md#update) | **PUT** /queries/v1/queries/v1/query/{query_name} | Update Query +[**create**](ManageApi.md#create) | **POST** /queries/v1/query | Post Query +[**get**](ManageApi.md#get) | **GET** /queries/v1/query/{query_name} | Get Query +[**list**](ManageApi.md#list) | **GET** /queries/v1/query | List Queries +[**remove**](ManageApi.md#remove) | **DELETE** /queries/v1/query/{query_name} | Remove Query +[**update**](ManageApi.md#update) | **PUT** /queries/v1/query/{query_name} | Update Query # **create** > create( @@ -36,7 +36,7 @@ from waylay.services.queries.models.query_entity_input import QueryEntityInput from waylay.services.queries.models.query_response import QueryResponse try: # Post Query - # calls `POST /queries/v1/queries/v1/query` + # calls `POST /queries/v1/query` api_response = await waylay_client.queries.manage.create( # json data: use a generated model or a json-serializable python data structure (dict, list) json = waylay.services.queries.QueryEntityInput() # QueryEntityInput | @@ -49,7 +49,7 @@ except ApiError as e: ### Endpoint ``` -POST /queries/v1/queries/v1/query +POST /queries/v1/query ``` ### Parameters @@ -106,7 +106,7 @@ waylay_client = WaylayClient.from_profile() from waylay.services.queries.models.query_response import QueryResponse try: # Get Query - # calls `GET /queries/v1/queries/v1/query/{query_name}` + # calls `GET /queries/v1/query/{query_name}` api_response = await waylay_client.queries.manage.get( 'query_name_example', # query_name | path param "query_name" ) @@ -118,7 +118,7 @@ except ApiError as e: ### Endpoint ``` -GET /queries/v1/queries/v1/query/{query_name} +GET /queries/v1/query/{query_name} ``` ### Parameters @@ -175,7 +175,7 @@ waylay_client = WaylayClient.from_profile() from waylay.services.queries.models.queries_list_response import QueriesListResponse try: # List Queries - # calls `GET /queries/v1/queries/v1/query` + # calls `GET /queries/v1/query` api_response = await waylay_client.queries.manage.list( # query parameters: query = { @@ -192,7 +192,7 @@ except ApiError as e: ### Endpoint ``` -GET /queries/v1/queries/v1/query +GET /queries/v1/query ``` ### Parameters @@ -252,7 +252,7 @@ waylay_client = WaylayClient.from_profile() from waylay.services.queries.models.delete_response import DeleteResponse try: # Remove Query - # calls `DELETE /queries/v1/queries/v1/query/{query_name}` + # calls `DELETE /queries/v1/query/{query_name}` api_response = await waylay_client.queries.manage.remove( 'query_name_example', # query_name | path param "query_name" ) @@ -264,7 +264,7 @@ except ApiError as e: ### Endpoint ``` -DELETE /queries/v1/queries/v1/query/{query_name} +DELETE /queries/v1/query/{query_name} ``` ### Parameters @@ -322,7 +322,7 @@ from waylay.services.queries.models.query_definition import QueryDefinition from waylay.services.queries.models.query_response import QueryResponse try: # Update Query - # calls `PUT /queries/v1/queries/v1/query/{query_name}` + # calls `PUT /queries/v1/query/{query_name}` api_response = await waylay_client.queries.manage.update( 'query_name_example', # query_name | path param "query_name" # json data: use a generated model or a json-serializable python data structure (dict, list) @@ -336,7 +336,7 @@ except ApiError as e: ### Endpoint ``` -PUT /queries/v1/queries/v1/query/{query_name} +PUT /queries/v1/query/{query_name} ``` ### Parameters diff --git a/docs/StatusApi.md b/docs/StatusApi.md index 9c03208..c21dfae 100644 --- a/docs/StatusApi.md +++ b/docs/StatusApi.md @@ -4,7 +4,7 @@ All URIs are relative to *https://api.waylay.io* Method | HTTP request | Description ------------- | ------------- | ------------- -[**get**](StatusApi.md#get) | **GET** /queries/v1/queries/v1 | Get Version And Health +[**get**](StatusApi.md#get) | **GET** /queries/v1 | Get Version And Health # **get** > get( @@ -30,7 +30,7 @@ waylay_client = WaylayClient.from_profile() # Note that the typed model classes for responses/parameters/... are only available when `waylay-sdk-queries-types` is installed try: # Get Version And Health - # calls `GET /queries/v1/queries/v1` + # calls `GET /queries/v1` api_response = await waylay_client.queries.status.get( ) print("The response of queries.status.get:\n") @@ -41,7 +41,7 @@ except ApiError as e: ### Endpoint ``` -GET /queries/v1/queries/v1 +GET /queries/v1 ``` ### Parameters diff --git a/openapi/queries.openapi.yaml b/openapi/queries.openapi.yaml index de5d5c1..7e6d4c9 100644 --- a/openapi/queries.openapi.yaml +++ b/openapi/queries.openapi.yaml @@ -9,7 +9,7 @@ info: Protocol version: v1.' version: 0.5.0 paths: - /queries/v1/queries/v1: + /queries/v1: get: tags: - Status @@ -28,7 +28,7 @@ paths: title: Response Get Version And Health Queries V1 Get security: &id001 - waylayApiKeySecret: [] - /queries/v1/queries/v1/data: + /queries/v1/data: post: tags: - Execute @@ -1674,7 +1674,7 @@ paths: schema: $ref: '#/components/schemas/HTTPValidationError' security: *id001 - /queries/v1/queries/v1/data/{query_name}: + /queries/v1/data/{query_name}: get: tags: - Execute @@ -3320,7 +3320,7 @@ paths: schema: $ref: '#/components/schemas/HTTPValidationError' security: *id001 - /queries/v1/queries/v1/query: + /queries/v1/query: get: tags: - Manage @@ -3429,7 +3429,7 @@ paths: schema: $ref: '#/components/schemas/HTTPValidationError' security: *id001 - /queries/v1/queries/v1/query/{query_name}: + /queries/v1/query/{query_name}: get: tags: - Manage diff --git a/openapi/queries.transformed.openapi.yaml b/openapi/queries.transformed.openapi.yaml index 4b979df..ca10c91 100644 --- a/openapi/queries.transformed.openapi.yaml +++ b/openapi/queries.transformed.openapi.yaml @@ -8,7 +8,7 @@ info: Protocol version: v1. version: 0.5.0 paths: - /queries/v1/queries/v1: + /queries/v1: get: tags: - Status @@ -32,7 +32,7 @@ paths: x-consumes-urlencoded: false x-consumes-json: false x-consumes-other: false - /queries/v1/queries/v1/data: + /queries/v1/data: post: tags: - Execute @@ -1740,7 +1740,7 @@ paths: x-consumes-urlencoded: false x-consumes-json: true x-consumes-other: false - /queries/v1/queries/v1/data/{query_name}: + /queries/v1/data/{query_name}: get: tags: - Execute @@ -3449,7 +3449,7 @@ paths: x-consumes-urlencoded: false x-consumes-json: false x-consumes-other: false - /queries/v1/queries/v1/query: + /queries/v1/query: get: tags: - Manage @@ -3577,7 +3577,7 @@ paths: x-consumes-urlencoded: false x-consumes-json: true x-consumes-other: false - /queries/v1/queries/v1/query/{query_name}: + /queries/v1/query/{query_name}: get: tags: - Manage diff --git a/test/api/__pycache__/__init__.cpython-311.pyc b/test/api/__pycache__/__init__.cpython-311.pyc index 697ad5b..cbba788 100644 Binary files a/test/api/__pycache__/__init__.cpython-311.pyc and b/test/api/__pycache__/__init__.cpython-311.pyc differ diff --git a/test/api/__pycache__/execute_api_test.cpython-311-pytest-8.3.2.pyc b/test/api/__pycache__/execute_api_test.cpython-311-pytest-8.3.2.pyc index af9ecc8..acefea1 100644 Binary files a/test/api/__pycache__/execute_api_test.cpython-311-pytest-8.3.2.pyc and b/test/api/__pycache__/execute_api_test.cpython-311-pytest-8.3.2.pyc differ diff --git a/test/api/__pycache__/manage_api_test.cpython-311-pytest-8.3.2.pyc b/test/api/__pycache__/manage_api_test.cpython-311-pytest-8.3.2.pyc index f4e2f4c..be36b98 100644 Binary files a/test/api/__pycache__/manage_api_test.cpython-311-pytest-8.3.2.pyc and b/test/api/__pycache__/manage_api_test.cpython-311-pytest-8.3.2.pyc differ diff --git a/test/api/__pycache__/status_api_test.cpython-311-pytest-8.3.2.pyc b/test/api/__pycache__/status_api_test.cpython-311-pytest-8.3.2.pyc index 9fb9f67..ba4bf7a 100644 Binary files a/test/api/__pycache__/status_api_test.cpython-311-pytest-8.3.2.pyc and b/test/api/__pycache__/status_api_test.cpython-311-pytest-8.3.2.pyc differ diff --git a/test/api/execute_api_test.py b/test/api/execute_api_test.py index f203eee..d2d5d35 100644 --- a/test/api/execute_api_test.py +++ b/test/api/execute_api_test.py @@ -63,9 +63,7 @@ def _execute_by_name_set_mock_response( mock_response = QueryResultStub.create_json() httpx_mock_kwargs = { "method": "GET", - "url": re.compile( - f"^{gateway_url}/queries/v1/queries/v1/data/{query_name}(\\?.*)?" - ), + "url": re.compile(f"^{gateway_url}/queries/v1/data/{query_name}(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } @@ -137,7 +135,7 @@ def _execute_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): mock_response = QueryResultStub.create_json() httpx_mock_kwargs = { "method": "POST", - "url": re.compile(f"^{gateway_url}/queries/v1/queries/v1/data(\\?.*)?"), + "url": re.compile(f"^{gateway_url}/queries/v1/data(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } diff --git a/test/api/manage_api_test.py b/test/api/manage_api_test.py index fea61ed..55d5015 100644 --- a/test/api/manage_api_test.py +++ b/test/api/manage_api_test.py @@ -59,7 +59,7 @@ def _create_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): mock_response = QueryResponseStub.create_json() httpx_mock_kwargs = { "method": "POST", - "url": re.compile(f"^{gateway_url}/queries/v1/queries/v1/query(\\?.*)?"), + "url": re.compile(f"^{gateway_url}/queries/v1/query(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } @@ -102,9 +102,7 @@ def _get_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str, query_name: mock_response = QueryResponseStub.create_json() httpx_mock_kwargs = { "method": "GET", - "url": re.compile( - f"^{gateway_url}/queries/v1/queries/v1/query/{query_name}(\\?.*)?" - ), + "url": re.compile(f"^{gateway_url}/queries/v1/query/{query_name}(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } @@ -147,7 +145,7 @@ def _list_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): mock_response = QueriesListResponseStub.create_json() httpx_mock_kwargs = { "method": "GET", - "url": re.compile(f"^{gateway_url}/queries/v1/queries/v1/query(\\?.*)?"), + "url": re.compile(f"^{gateway_url}/queries/v1/query(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } @@ -199,9 +197,7 @@ def _remove_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str, query_nam mock_response = DeleteResponseStub.create_json() httpx_mock_kwargs = { "method": "DELETE", - "url": re.compile( - f"^{gateway_url}/queries/v1/queries/v1/query/{query_name}(\\?.*)?" - ), + "url": re.compile(f"^{gateway_url}/queries/v1/query/{query_name}(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } @@ -244,9 +240,7 @@ def _update_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str, query_nam mock_response = QueryResponseStub.create_json() httpx_mock_kwargs = { "method": "PUT", - "url": re.compile( - f"^{gateway_url}/queries/v1/queries/v1/query/{query_name}(\\?.*)?" - ), + "url": re.compile(f"^{gateway_url}/queries/v1/query/{query_name}(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } diff --git a/test/api/status_api_test.py b/test/api/status_api_test.py index e6835da..2ed1eb3 100644 --- a/test/api/status_api_test.py +++ b/test/api/status_api_test.py @@ -47,7 +47,7 @@ def _get_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): mock_response = {"key": ""} httpx_mock_kwargs = { "method": "GET", - "url": re.compile(f"^{gateway_url}/queries/v1/queries/v1(\\?.*)?"), + "url": re.compile(f"^{gateway_url}/queries/v1(\\?.*)?"), "content": json.dumps(mock_response, default=str), "status_code": 200, } diff --git a/test/types/__pycache__/__init__.cpython-311.pyc b/test/types/__pycache__/__init__.cpython-311.pyc index a05ed69..488821f 100644 Binary files a/test/types/__pycache__/__init__.cpython-311.pyc and b/test/types/__pycache__/__init__.cpython-311.pyc differ diff --git a/test/types/__pycache__/aggregation_method_stub.cpython-311.pyc b/test/types/__pycache__/aggregation_method_stub.cpython-311.pyc index 5178bbc..73e7113 100644 Binary files a/test/types/__pycache__/aggregation_method_stub.cpython-311.pyc and b/test/types/__pycache__/aggregation_method_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/delete_response_stub.cpython-311.pyc b/test/types/__pycache__/delete_response_stub.cpython-311.pyc index 0ae2bc6..67e84ce 100644 Binary files a/test/types/__pycache__/delete_response_stub.cpython-311.pyc and b/test/types/__pycache__/delete_response_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/from_override_stub.cpython-311.pyc b/test/types/__pycache__/from_override_stub.cpython-311.pyc index 23c48d9..80c7584 100644 Binary files a/test/types/__pycache__/from_override_stub.cpython-311.pyc and b/test/types/__pycache__/from_override_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/grouping_interval_override_stub.cpython-311.pyc b/test/types/__pycache__/grouping_interval_override_stub.cpython-311.pyc index 182ceff..e609b50 100644 Binary files a/test/types/__pycache__/grouping_interval_override_stub.cpython-311.pyc and b/test/types/__pycache__/grouping_interval_override_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/interpolation_stub.cpython-311.pyc b/test/types/__pycache__/interpolation_stub.cpython-311.pyc index e1cf8e4..c6e7180 100644 Binary files a/test/types/__pycache__/interpolation_stub.cpython-311.pyc and b/test/types/__pycache__/interpolation_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/queries_list_response_stub.cpython-311.pyc b/test/types/__pycache__/queries_list_response_stub.cpython-311.pyc index 975eef8..a3649fe 100644 Binary files a/test/types/__pycache__/queries_list_response_stub.cpython-311.pyc and b/test/types/__pycache__/queries_list_response_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/query_definition_stub.cpython-311.pyc b/test/types/__pycache__/query_definition_stub.cpython-311.pyc index 8f5314f..92ce25c 100644 Binary files a/test/types/__pycache__/query_definition_stub.cpython-311.pyc and b/test/types/__pycache__/query_definition_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/query_entity_input_stub.cpython-311.pyc b/test/types/__pycache__/query_entity_input_stub.cpython-311.pyc index e6b1a2c..2c75ab9 100644 Binary files a/test/types/__pycache__/query_entity_input_stub.cpython-311.pyc and b/test/types/__pycache__/query_entity_input_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/query_input_stub.cpython-311.pyc b/test/types/__pycache__/query_input_stub.cpython-311.pyc index d9478c2..10d968c 100644 Binary files a/test/types/__pycache__/query_input_stub.cpython-311.pyc and b/test/types/__pycache__/query_input_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/query_response_stub.cpython-311.pyc b/test/types/__pycache__/query_response_stub.cpython-311.pyc index ae0f381..f7ab72b 100644 Binary files a/test/types/__pycache__/query_response_stub.cpython-311.pyc and b/test/types/__pycache__/query_response_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/query_result_stub.cpython-311.pyc b/test/types/__pycache__/query_result_stub.cpython-311.pyc index 7296450..8c9d5d7 100644 Binary files a/test/types/__pycache__/query_result_stub.cpython-311.pyc and b/test/types/__pycache__/query_result_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/render1_stub.cpython-311.pyc b/test/types/__pycache__/render1_stub.cpython-311.pyc index 1976d1b..b49bd21 100644 Binary files a/test/types/__pycache__/render1_stub.cpython-311.pyc and b/test/types/__pycache__/render1_stub.cpython-311.pyc differ diff --git a/test/types/__pycache__/window_override_stub.cpython-311.pyc b/test/types/__pycache__/window_override_stub.cpython-311.pyc index 48cb0cc..b278f4b 100644 Binary files a/test/types/__pycache__/window_override_stub.cpython-311.pyc and b/test/types/__pycache__/window_override_stub.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/README.md b/waylay-sdk-queries-types/README.md index a7b6f6d..e71d713 100644 --- a/waylay-sdk-queries-types/README.md +++ b/waylay-sdk-queries-types/README.md @@ -42,7 +42,7 @@ from waylay.services.queries.models.query_input import QueryInput from waylay.services.queries.models.query_result import QueryResult try: # Execute Query - # calls `POST /queries/v1/queries/v1/data` + # calls `POST /queries/v1/data` api_response = await waylay_client.queries.execute.execute( # query parameters: query = { diff --git a/waylay-sdk-queries-types/pyproject.toml b/waylay-sdk-queries-types/pyproject.toml index 9c18c9d..94dd00e 100644 --- a/waylay-sdk-queries-types/pyproject.toml +++ b/waylay-sdk-queries-types/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "waylay-sdk-queries-types" -version = "0.5.0.20240802" +version = "0.5.0.20240809" description = "Waylay Query: timeseries queries (v1 protocol) Types " authors = [ { name = "Waylay", email = "info@waylay.io"} @@ -13,7 +13,7 @@ keywords = ["Waylay Query: timeseries queries (v1 protocol)" , "Types"] requires-python = ">= 3.9" dependencies = [ "waylay-sdk-core ~= 0.2.3", - "waylay-sdk-queries == 0.5.0.20240802", + "waylay-sdk-queries == 0.5.0.20240809", "pydantic ~= 2.6", "typing-extensions ~= 4.10", "eval-type-backport ~= 0.1.3; python_version < '3.10'", diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__init__.py b/waylay-sdk-queries-types/src/waylay/services/queries/models/__init__.py index 73e2608..6cdd648 100644 --- a/waylay-sdk-queries-types/src/waylay/services/queries/models/__init__.py +++ b/waylay-sdk-queries-types/src/waylay/services/queries/models/__init__.py @@ -12,7 +12,7 @@ Do not edit the class manually. """ -__version__ = "0.5.0.20240802" +__version__ = "0.5.0.20240809" # import models into model package from .aggregation_by_resource_and_metric import AggregationByResourceAndMetric diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/__init__.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/__init__.cpython-311.pyc index 3e0039c..9b9670f 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/__init__.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/__init__.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_and_metric.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_and_metric.cpython-311.pyc index 1ed0172..19c9c47 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_and_metric.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_and_metric.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_or_metric.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_or_metric.cpython-311.pyc index 66fcd1a..d98cc89 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_or_metric.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_by_resource_or_metric.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method.cpython-311.pyc index 6070321..ae5a369 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of.cpython-311.pyc index 1ea8073..58708fb 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of1.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of1.cpython-311.pyc index 441250a..d84604a 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of1.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of1.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of2.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of2.cpython-311.pyc index bb2306c..7360ee5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of2.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of2.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of3.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of3.cpython-311.pyc index c433ff2..cebd8e5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of3.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of3.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of4.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of4.cpython-311.pyc index 59e3e30..f14d660 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of4.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of4.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of5.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of5.cpython-311.pyc index 00aa56d..6dfe125 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of5.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of5.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of6.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of6.cpython-311.pyc index 4736aaf..0693b00 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of6.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of6.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of7.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of7.cpython-311.pyc index 25586ae..ac39cb0 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of7.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of7.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of8.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of8.cpython-311.pyc index b837462..9d45590 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of8.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregation_method_one_of8.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregations_inner.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregations_inner.cpython-311.pyc index b595458..b325cf3 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregations_inner.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/aggregations_inner.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_at.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_at.cpython-311.pyc index 2c1013e..3dfd35b 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_at.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_at.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_shift.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_shift.cpython-311.pyc index 3e7e2b5..7c9017e 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_shift.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/align_shift.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment.cpython-311.pyc index 0876a18..8505382 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_grid_interval.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_grid_interval.cpython-311.pyc index dbfe5f4..2eb5b1d 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_grid_interval.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_grid_interval.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_timezone.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_timezone.cpython-311.pyc index 20de493..e9d738e 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_timezone.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/alignment_timezone.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/cause_exception.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/cause_exception.cpython-311.pyc index c38f9fc..fad28d2 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/cause_exception.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/cause_exception.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set.cpython-311.pyc index c3e2356..136c5c6 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set_data_axis.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set_data_axis.cpython-311.pyc index 19837ae..724ffe1 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set_data_axis.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_data_set_data_axis.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_header.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_header.cpython-311.pyc index e9556fd..1ad4b2c 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_header.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_header.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_headers_inner.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_headers_inner.cpython-311.pyc index 9e8a47d..f039a01 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_headers_inner.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/column_headers_inner.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_axis_option.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_axis_option.cpython-311.pyc index 653eaa3..f3ebbe3 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_axis_option.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_axis_option.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_attributes.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_attributes.cpython-311.pyc index 39ac627..318e890 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_attributes.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_attributes.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_window.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_window.cpython-311.pyc index 6dc64dd..7b51c76 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_window.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/data_set_window.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/datum.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/datum.cpython-311.pyc index 6aa6e3c..304b114 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/datum.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/datum.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_aggregation.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_aggregation.cpython-311.pyc index 65160d4..ca89261 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_aggregation.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_aggregation.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_interpolation.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_interpolation.cpython-311.pyc index a29e5b9..cbfc74a 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_interpolation.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/default_interpolation.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/delete_response.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/delete_response.cpython-311.pyc index 0b50137..ebf7136 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/delete_response.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/delete_response.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/embeddings.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/embeddings.cpython-311.pyc index 34209f1..5975e84 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/embeddings.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/embeddings.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/from_override.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/from_override.cpython-311.pyc index 1ef22f1..6224fe3 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/from_override.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/from_override.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval.cpython-311.pyc index 743fffe..96949c9 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override.cpython-311.pyc index 5ffc839..796ce33 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override_one_of.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override_one_of.cpython-311.pyc index 8ffa160..3202df7 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override_one_of.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/grouping_interval_override_one_of.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link.cpython-311.pyc index bfc669a..0890075 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_method.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_method.cpython-311.pyc index 743b2dc..ba7a1af 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_method.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_method.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_role.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_role.cpython-311.pyc index 39826f3..5d37347 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_role.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hal_link_role.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/header_array_option.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/header_array_option.cpython-311.pyc index 70623b0..1d2883a 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/header_array_option.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/header_array_option.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hierarchical.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hierarchical.cpython-311.pyc index f396d59..c7a84fb 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hierarchical.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/hierarchical.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/http_validation_error.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/http_validation_error.cpython-311.pyc index 61b348c..a7c37e8 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/http_validation_error.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/http_validation_error.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation.cpython-311.pyc index adeff9e..090b077 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method.cpython-311.pyc index ded3935..0cbe788 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of.cpython-311.pyc index 1ece0c6..918a84f 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of1.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of1.cpython-311.pyc index fac5e88..b5920fe 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of1.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of1.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of10.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of10.cpython-311.pyc index edec2ca..9787727 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of10.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of10.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of11.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of11.cpython-311.pyc index 06e7b95..2947d0d 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of11.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of11.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of12.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of12.cpython-311.pyc index ddf3c5c..48351b5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of12.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of12.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of13.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of13.cpython-311.pyc index f5cae8f..7528d01 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of13.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of13.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of2.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of2.cpython-311.pyc index e649939..de27a08 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of2.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of2.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of3.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of3.cpython-311.pyc index f9a1c1b..d884722 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of3.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of3.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of4.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of4.cpython-311.pyc index 3d280f9..bff251b 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of4.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of4.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of5.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of5.cpython-311.pyc index 01a7c63..f48b0c5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of5.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of5.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of6.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of6.cpython-311.pyc index ad7c1e8..81cbb0d 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of6.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of6.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of7.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of7.cpython-311.pyc index c310434..d2f9adc 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of7.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of7.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of8.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of8.cpython-311.pyc index f9f25c3..6e5ddc5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of8.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of8.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of9.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of9.cpython-311.pyc index 249df59..98581b5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of9.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_method_one_of9.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_spec.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_spec.cpython-311.pyc index 6366850..cc62e06 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_spec.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/interpolation_spec.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/links.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/links.cpython-311.pyc index f88720b..4aad14f 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/links.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/links.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/location_inner.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/location_inner.cpython-311.pyc index 3b5ea0b..6e69c31 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/location_inner.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/location_inner.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message.cpython-311.pyc index e00cc24..2f0bae8 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_arguments.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_arguments.cpython-311.pyc index 40dd11c..8e1650d 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_arguments.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_arguments.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_level.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_level.cpython-311.pyc index 06bfa47..a249b12 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_level.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_level.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_properties.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_properties.cpython-311.pyc index 3c298d7..7b76c59 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_properties.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/message_properties.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data.cpython-311.pyc index 6f554b3..c31b3a8 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_set.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_set.cpython-311.pyc index 2951264..6683205 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_set.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_set.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_value.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_value.cpython-311.pyc index e4890ff..73ba691 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_value.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/object_data_value.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/queries_list_response.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/queries_list_response.cpython-311.pyc index 3dacfc8..390524c 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/queries_list_response.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/queries_list_response.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_definition.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_definition.cpython-311.pyc index cd4cf21..86eb485 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_definition.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_definition.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_entity_input.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_entity_input.cpython-311.pyc index cbd58d0..fd4dd10 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_entity_input.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_entity_input.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message.cpython-311.pyc index ce6139b..8004cd3 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message_level.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message_level.cpython-311.pyc index 3559890..4c4728e 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message_level.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_execution_message_level.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_hal_links.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_hal_links.cpython-311.pyc index 8bb7cb2..56dd52c 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_hal_links.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_hal_links.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_input.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_input.cpython-311.pyc index 2044848..17661fc 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_input.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_input.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_hal_links.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_hal_links.cpython-311.pyc index c064518..05c83ed 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_hal_links.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_hal_links.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_item.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_item.cpython-311.pyc index d911f7f..48b5dd2 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_item.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_list_item.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_output.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_output.cpython-311.pyc index 7e995ff..9a9c723 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_output.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_output.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_response.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_response.cpython-311.pyc index 2603335..0c93442 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_response.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_response.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_result.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_result.cpython-311.pyc index cf0d911..8ce4159 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_result.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_result.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_update_input.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_update_input.cpython-311.pyc index 94d29af..7211a46 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_update_input.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/query_update_input.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render.cpython-311.pyc index 08c764f..a575668 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render1.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render1.cpython-311.pyc index 17464aa..19612bd 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render1.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render1.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode.cpython-311.pyc index a4a7819..00aa1ca 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of.cpython-311.pyc index e114024..62e4845 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of1.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of1.cpython-311.pyc index abfcefd..4bbe23d 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of1.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of1.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of2.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of2.cpython-311.pyc index e34b022..2f7504c 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of2.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of2.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of3.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of3.cpython-311.pyc index 4dd706d..243744d 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of3.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of3.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of4.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of4.cpython-311.pyc index cf6067d..a479c8b 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of4.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of4.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of5.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of5.cpython-311.pyc index 510336e..5b95299 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of5.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of5.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of6.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of6.cpython-311.pyc index c020fd7..3ae8c5a 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of6.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of6.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of7.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of7.cpython-311.pyc index 0b9111e..a07319b 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of7.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of7.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of8.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of8.cpython-311.pyc index 88c3784..662bece 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of8.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of8.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of9.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of9.cpython-311.pyc index f2b0e54..dfdfb96 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of9.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/render_mode_one_of9.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/response_data_set.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/response_data_set.cpython-311.pyc index 9549395..1a472c0 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/response_data_set.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/response_data_set.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set.cpython-311.pyc index 7881152..a29d3b3 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set_data_axis.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set_data_axis.cpython-311.pyc index 9aff669..89c9286 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set_data_axis.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_data_set_data_axis.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_header.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_header.cpython-311.pyc index a7937a0..c23f171 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_header.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_header.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_headers_inner.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_headers_inner.cpython-311.pyc index 91e685a..af5dc52 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_headers_inner.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/row_headers_inner.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_data_set.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_data_set.cpython-311.pyc index 1b8b41b..e785785 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_data_set.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_data_set.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_spec.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_spec.cpython-311.pyc index fbc8467..1a2105b 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_spec.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/series_spec.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_from.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_from.cpython-311.pyc index 304277c..a5dec3a 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_from.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_from.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_until.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_until.cpython-311.pyc index af88beb..85b980c 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_until.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/time_window_until.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/validation_error.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/validation_error.cpython-311.pyc index b0a8e34..d80f1b1 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/validation_error.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/validation_error.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window.cpython-311.pyc index 6c4904d..1bb6de5 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window_override.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window_override.cpython-311.pyc index d09d41b..a9fa27f 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window_override.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/models/__pycache__/window_override.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/__init__.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/__init__.cpython-311.pyc index d71aeee..a8ba055 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/__init__.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/__init__.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/execute_api.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/execute_api.cpython-311.pyc index e5308f3..f404e83 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/execute_api.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/execute_api.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/manage_api.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/manage_api.cpython-311.pyc index 504db06..ac48a10 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/manage_api.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/manage_api.cpython-311.pyc differ diff --git a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/status_api.cpython-311.pyc b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/status_api.cpython-311.pyc index 3ecc275..d1bd02e 100644 Binary files a/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/status_api.cpython-311.pyc and b/waylay-sdk-queries-types/src/waylay/services/queries/queries/__pycache__/status_api.cpython-311.pyc differ diff --git a/waylay-sdk-queries/README.md b/waylay-sdk-queries/README.md index b1d3f06..cfbd1bc 100644 --- a/waylay-sdk-queries/README.md +++ b/waylay-sdk-queries/README.md @@ -43,7 +43,7 @@ from waylay.services.queries.models.query_input import QueryInput from waylay.services.queries.models.query_result import QueryResult try: # Execute Query - # calls `POST /queries/v1/queries/v1/data` + # calls `POST /queries/v1/data` api_response = await waylay_client.queries.execute.execute( # query parameters: query = { diff --git a/waylay-sdk-queries/pyproject.toml b/waylay-sdk-queries/pyproject.toml index c5cb80a..fe9f1cd 100644 --- a/waylay-sdk-queries/pyproject.toml +++ b/waylay-sdk-queries/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "waylay-sdk-queries" -version = "0.5.0.20240802" +version = "0.5.0.20240809" description = "Waylay Query: timeseries queries (v1 protocol)" authors = [ { name = "Waylay", email = "info@waylay.io"} diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/__init__.cpython-311.pyc b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/__init__.cpython-311.pyc index b49069d..af21269 100644 Binary files a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/__init__.cpython-311.pyc and b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/__init__.cpython-311.pyc differ diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/execute_api.cpython-311.pyc b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/execute_api.cpython-311.pyc index 0f6fd02..5294c5d 100644 Binary files a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/execute_api.cpython-311.pyc and b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/execute_api.cpython-311.pyc differ diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/manage_api.cpython-311.pyc b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/manage_api.cpython-311.pyc index b31d53e..1c35b7d 100644 Binary files a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/manage_api.cpython-311.pyc and b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/manage_api.cpython-311.pyc differ diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/status_api.cpython-311.pyc b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/status_api.cpython-311.pyc index 34ff651..92e2070 100644 Binary files a/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/status_api.cpython-311.pyc and b/waylay-sdk-queries/src/waylay/services/queries/api/__pycache__/status_api.cpython-311.pyc differ diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/execute_api.py b/waylay-sdk-queries/src/waylay/services/queries/api/execute_api.py index 11480bf..a862650 100644 --- a/waylay-sdk-queries/src/waylay/services/queries/api/execute_api.py +++ b/waylay-sdk-queries/src/waylay/services/queries/api/execute_api.py @@ -244,7 +244,7 @@ async def execute_by_name( ## peform request return await self.api_client.request( method="GET", - resource_path="/queries/v1/queries/v1/data/{query_name}", + resource_path="/queries/v1/data/{query_name}", path_params=path_params, params=query, **body_args, @@ -416,7 +416,7 @@ async def execute( ## peform request return await self.api_client.request( method="POST", - resource_path="/queries/v1/queries/v1/data", + resource_path="/queries/v1/data", path_params=path_params, params=query, **body_args, diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/manage_api.py b/waylay-sdk-queries/src/waylay/services/queries/api/manage_api.py index 150991e..2666618 100644 --- a/waylay-sdk-queries/src/waylay/services/queries/api/manage_api.py +++ b/waylay-sdk-queries/src/waylay/services/queries/api/manage_api.py @@ -259,7 +259,7 @@ async def create( ## peform request return await self.api_client.request( method="POST", - resource_path="/queries/v1/queries/v1/query", + resource_path="/queries/v1/query", path_params=path_params, params=query, **body_args, @@ -421,7 +421,7 @@ async def get( ## peform request return await self.api_client.request( method="GET", - resource_path="/queries/v1/queries/v1/query/{query_name}", + resource_path="/queries/v1/query/{query_name}", path_params=path_params, params=query, **body_args, @@ -567,7 +567,7 @@ async def list( ## peform request return await self.api_client.request( method="GET", - resource_path="/queries/v1/queries/v1/query", + resource_path="/queries/v1/query", path_params=path_params, params=query, **body_args, @@ -729,7 +729,7 @@ async def remove( ## peform request return await self.api_client.request( method="DELETE", - resource_path="/queries/v1/queries/v1/query/{query_name}", + resource_path="/queries/v1/query/{query_name}", path_params=path_params, params=query, **body_args, @@ -903,7 +903,7 @@ async def update( ## peform request return await self.api_client.request( method="PUT", - resource_path="/queries/v1/queries/v1/query/{query_name}", + resource_path="/queries/v1/query/{query_name}", path_params=path_params, params=query, **body_args, diff --git a/waylay-sdk-queries/src/waylay/services/queries/api/status_api.py b/waylay-sdk-queries/src/waylay/services/queries/api/status_api.py index 290cb07..021d71d 100644 --- a/waylay-sdk-queries/src/waylay/services/queries/api/status_api.py +++ b/waylay-sdk-queries/src/waylay/services/queries/api/status_api.py @@ -185,7 +185,7 @@ async def get( ## peform request return await self.api_client.request( method="GET", - resource_path="/queries/v1/queries/v1", + resource_path="/queries/v1", path_params=path_params, params=query, **body_args, diff --git a/waylay-sdk-queries/src/waylay/services/queries/service/__init__.py b/waylay-sdk-queries/src/waylay/services/queries/service/__init__.py index 54cbf3c..b4c3aa5 100644 --- a/waylay-sdk-queries/src/waylay/services/queries/service/__init__.py +++ b/waylay-sdk-queries/src/waylay/services/queries/service/__init__.py @@ -12,7 +12,7 @@ Do not edit the class manually. """ -__version__ = "0.5.0.20240802" +__version__ = "0.5.0.20240809" from .service import QueriesService diff --git a/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/__init__.cpython-311.pyc b/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/__init__.cpython-311.pyc index f36b985..33e3efa 100644 Binary files a/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/__init__.cpython-311.pyc and b/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/__init__.cpython-311.pyc differ diff --git a/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/service.cpython-311.pyc b/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/service.cpython-311.pyc index e28f60e..97bcc61 100644 Binary files a/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/service.cpython-311.pyc and b/waylay-sdk-queries/src/waylay/services/queries/service/__pycache__/service.cpython-311.pyc differ