diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index e6d1ed0d..a8c36692 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -3,6 +3,7 @@ LICENSE.txt Makefile README.md +docs/AboutApi.md docs/ActiveEventData.md docs/ActiveEventSSE.md docs/ActiveEventSSEEvent.md @@ -50,7 +51,6 @@ docs/CreateFunctionQueryV2.md docs/CreateKFServingAsyncResponse.md docs/CreatePlugAsyncResponse.md docs/CreateWebscriptAsyncResponse.md -docs/DefaultApi.md docs/DelayedEventData.md docs/DelayedEventSSE.md docs/DelayedEventSSEEvent.md @@ -405,7 +405,7 @@ pyproject.toml requirements.txt test/__init__.py test/api/__init__.py -test/api/default_api_test.py +test/api/about_api_test.py test/api/jobs_api_test.py test/api/model_functions_api_test.py test/api/plug_functions_api_test.py diff --git a/README.md b/README.md index 47e20af4..8bbed2d5 100644 --- a/README.md +++ b/README.md @@ -34,22 +34,16 @@ from waylay.sdk.api.api_exceptions import ApiError waylay_client = WaylayClient.from_profile() # Note that the typed model classes for responses/parameters/... are only available when `waylay-sdk-registry-types` is installed -from waylay.services.registry.models.function_type import FunctionType -from waylay.services.registry.models.job_state_result import JobStateResult -from waylay.services.registry.models.job_type_schema import JobTypeSchema -from waylay.services.registry.models.jobs_response import JobsResponse +from waylay.services.registry.models.root_page_response import RootPageResponse try: - # List Jobs - # calls `GET /registry/v2/jobs/` - api_response = await waylay_client.registry.jobs.list( - # query parameters: - query = { - }, + # Get Service Status + # calls `GET /registry/v2/` + api_response = await waylay_client.registry.about.get( ) - print("The response of registry.jobs.list:\n") + print("The response of registry.about.get:\n") pprint(api_response) except ApiError as e: - print("Exception when calling registry.jobs.list: %s\n" % e) + print("Exception when calling registry.about.get: %s\n" % e) ``` @@ -61,6 +55,7 @@ All URIs are relative to *https://api.waylay.io* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- +*AboutApi* | [**get**](docs/AboutApi.md#get) | **GET** /registry/v2/ | Get Service Status *JobsApi* | [**events**](docs/JobsApi.md#events) | **GET** /registry/v2/jobs/events | Stream Events *JobsApi* | [**get**](docs/JobsApi.md#get) | **GET** /registry/v2/jobs/{type}/{id} | Get Job *JobsApi* | [**list**](docs/JobsApi.md#list) | **GET** /registry/v2/jobs/ | List Jobs @@ -124,7 +119,6 @@ Class | Method | HTTP request | Description *WebscriptFunctionsApi* | [**update_asset**](docs/WebscriptFunctionsApi.md#update_asset) | **PUT** /registry/v2/webscripts/{name}/versions/{version}/content/{wildcard} | Update Webscript Asset *WebscriptFunctionsApi* | [**update_assets**](docs/WebscriptFunctionsApi.md#update_assets) | **PUT** /registry/v2/webscripts/{name}/versions/{version}/content | Update Webscript Assets *WebscriptFunctionsApi* | [**verify**](docs/WebscriptFunctionsApi.md#verify) | **POST** /registry/v2/webscripts/{name}/versions/{version}/verify | Verify Health Of Webscript -*DefaultApi* | [**get**](docs/DefaultApi.md#get) | **GET** /registry/v2/ | Version ## Documentation For Models diff --git a/docs/DefaultApi.md b/docs/AboutApi.md similarity index 83% rename from docs/DefaultApi.md rename to docs/AboutApi.md index 5f6028ce..82e14a1f 100644 --- a/docs/DefaultApi.md +++ b/docs/AboutApi.md @@ -1,19 +1,19 @@ -# waylay.services.registry.DefaultApi +# waylay.services.registry.AboutApi All URIs are relative to *https://api.waylay.io* Method | HTTP request | Description ------------- | ------------- | ------------- -[**get**](DefaultApi.md#get) | **GET** /registry/v2/ | Version +[**get**](AboutApi.md#get) | **GET** /registry/v2/ | Get Service Status # **get** > get( > headers > ) -> RootPageResponse -Version +Get Service Status -Get the version of this function registry deployment. +Get the status and version of the function registry service. ### Example @@ -30,14 +30,14 @@ waylay_client = WaylayClient.from_profile() # Note that the typed model classes for responses/parameters/... are only available when `waylay-sdk-registry-types` is installed from waylay.services.registry.models.root_page_response import RootPageResponse try: - # Version + # Get Service Status # calls `GET /registry/v2/` - api_response = await waylay_client.registry.default.get( + api_response = await waylay_client.registry.about.get( ) - print("The response of registry.default.get:\n") + print("The response of registry.about.get:\n") pprint(api_response) except ApiError as e: - print("Exception when calling registry.default.get: %s\n" % e) + print("Exception when calling registry.about.get: %s\n" % e) ``` ### Endpoint diff --git a/docs/JobsApi.md b/docs/JobsApi.md index 64511d2d..405467ea 100644 --- a/docs/JobsApi.md +++ b/docs/JobsApi.md @@ -12,7 +12,7 @@ Method | HTTP request | Description > events( > query: EventsQuery, > headers -> ) -> EventWithCloseSSE +> ) -> AsyncIterator[EventWithCloseSSE] Stream Events @@ -67,7 +67,7 @@ Name | Type | API binding | Description | Notes Selected path param | Raw response param | Return Type | Description | Links ------------------- | ------------------ | ------------ | ----------- | ----- -Literal[""] _(default)_ | False _(default)_ | **`EventWithCloseSSE`** | | [EventWithCloseSSE](EventWithCloseSSE.md) +Literal[""] _(default)_ | False _(default)_ | **`AsyncIterator[EventWithCloseSSE]`** | | [EventWithCloseSSE](EventWithCloseSSE.md) str | False _(default)_ | **`Any`** | If any other string value for the selected path is provided, the exact type of the response will only be known at runtime. | / | True | `Response` | The raw http response object. diff --git a/openapi/registry.openapi.yaml b/openapi/registry.openapi.yaml index 41e4693d..0988df6b 100644 --- a/openapi/registry.openapi.yaml +++ b/openapi/registry.openapi.yaml @@ -8476,8 +8476,11 @@ components: paths: /registry/v2/: get: - summary: Version - description: Get the version of this function registry deployment. + operationId: get_about + summary: Get Service Status + tags: + - About + description: Get the status and version of the function registry service. x-version: v2 responses: default: @@ -8486,7 +8489,6 @@ paths: application/json: schema: $ref: '#/components/schemas/IRootPageResponse' - operationId: get_registry_v2 security: &id001 - waylayApiKeySecret: [] /registry/v2/jobs/: diff --git a/openapi/registry.transformed.openapi.yaml b/openapi/registry.transformed.openapi.yaml index c1e5ee81..71bba365 100644 --- a/openapi/registry.transformed.openapi.yaml +++ b/openapi/registry.transformed.openapi.yaml @@ -8856,8 +8856,11 @@ components: paths: /registry/v2/: get: - summary: Version - description: Get the version of this function registry deployment. + operationId: get_about + summary: Get Service Status + tags: + - About + description: Get the status and version of the function registry service. x-version: v2 responses: default: @@ -8866,7 +8869,6 @@ paths: application/json: schema: $ref: '#/components/schemas/RootPageResponse' - operationId: get_registry_v2 security: - waylayApiKeySecret: [] x-py-method: get @@ -9030,6 +9032,7 @@ paths: text/eventstream: schema: $ref: '#/components/schemas/EventWithCloseSSE' + x-is-event-stream: true security: - waylayApiKeySecret: [] x-py-method: events @@ -9037,6 +9040,7 @@ paths: x-consumes-urlencoded: false x-consumes-json: false x-consumes-other: false + x-produces-event-stream: true /registry/v2/runtimes/: get: operationId: list_runtimes diff --git a/requirements.txt b/requirements.txt index af406196..252e690a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pydantic ~= 2.6 typing-extensions ~= 4.9 -waylay-sdk-core ~= 0.1.0 +waylay-sdk-core@git+https://github.com/waylayio/waylay-sdk-py@cc464ef9ee120bc54ff6381add0c92a2d06e2944 diff --git a/test/api/default_api_test.py b/test/api/about_api_test.py similarity index 83% rename from test/api/default_api_test.py rename to test/api/about_api_test.py index a95b1fbc..14b34f11 100644 --- a/test/api/default_api_test.py +++ b/test/api/about_api_test.py @@ -18,7 +18,7 @@ from typeguard import check_type from waylay.sdk import ApiClient, WaylayClient from waylay.sdk.api._models import Model -from waylay.services.registry.api import DefaultApi +from waylay.services.registry.api import AboutApi from waylay.services.registry.service import RegistryService from ..types.root_page_response_stub import RootPageResponseStub @@ -36,13 +36,13 @@ @pytest.fixture -def default_api(waylay_api_client: ApiClient) -> DefaultApi: - return DefaultApi(waylay_api_client) +def about_api(waylay_api_client: ApiClient) -> AboutApi: + return AboutApi(waylay_api_client) def test_registered(waylay_client: WaylayClient): - """Test that DefaultApi api is registered in the sdk client.""" - assert isinstance(waylay_client.registry.default, DefaultApi) + """Test that AboutApi api is registered in the sdk client.""" + assert isinstance(waylay_client.registry.about, AboutApi) def _get_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): @@ -60,12 +60,12 @@ def _get_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): @pytest.mark.skipif(not MODELS_AVAILABLE, reason="Types not installed.") async def test_get(service: RegistryService, gateway_url: str, httpx_mock: HTTPXMock): """Test case for get - Version + Get Service Status """ # set path params kwargs = {} _get_set_mock_response(httpx_mock, gateway_url) - resp = await service.default.get(**kwargs) + resp = await service.about.get(**kwargs) check_type(resp, Union[RootPageResponse,]) @@ -75,10 +75,10 @@ async def test_get_without_types( service: RegistryService, gateway_url: str, httpx_mock: HTTPXMock ): """Test case for get with models not installed - Version + Get Service Status """ # set path params kwargs = {} _get_set_mock_response(httpx_mock, gateway_url) - resp = await service.default.get(**kwargs) + resp = await service.about.get(**kwargs) check_type(resp, Model) diff --git a/test/api/jobs_api_test.py b/test/api/jobs_api_test.py index c842f7e6..250040e2 100644 --- a/test/api/jobs_api_test.py +++ b/test/api/jobs_api_test.py @@ -11,7 +11,7 @@ import json import re from importlib.util import find_spec -from typing import Union +from typing import AsyncIterator, Union, get_args from urllib.parse import quote import pytest @@ -59,8 +59,9 @@ def _events_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str): httpx_mock_kwargs = { "method": "GET", "url": re.compile(f"^{gateway_url}/registry/v2/jobs/events(\\?.*)?"), - "content": json.dumps(mock_response, default=str), + "content": json.dumps(mock_response, default=str) + "\n", "status_code": 200, + "headers": {"content-type": "application/x-ndjson"}, } httpx_mock.add_response(**httpx_mock_kwargs) @@ -84,7 +85,10 @@ async def test_events( } _events_set_mock_response(httpx_mock, gateway_url) resp = await service.jobs.events(**kwargs) - check_type(resp, Union[EventWithCloseSSE,]) + check_type(resp, Union[AsyncIterator[EventWithCloseSSE],]) + async for item in resp: + check_type(item, get_args(Union[AsyncIterator[EventWithCloseSSE],])[0]) + break # Test only the first value @pytest.mark.asyncio @@ -106,6 +110,9 @@ async def test_events_without_types( _events_set_mock_response(httpx_mock, gateway_url) resp = await service.jobs.events(**kwargs) check_type(resp, Model) + async for item in resp: + check_type(item, Model) + break # Test only the first value def _get_set_mock_response(httpx_mock: HTTPXMock, gateway_url: str, type: str, id: str): diff --git a/waylay-sdk-registry-types/.openapi-generator/FILES b/waylay-sdk-registry-types/.openapi-generator/FILES index 106337ab..e80b7b6c 100644 --- a/waylay-sdk-registry-types/.openapi-generator/FILES +++ b/waylay-sdk-registry-types/.openapi-generator/FILES @@ -394,7 +394,7 @@ src/waylay/services/registry/models/with_entity_attributes.py src/waylay/services/registry/models/with_limit.py src/waylay/services/registry/models/with_paging.py src/waylay/services/registry/queries/__init__.py -src/waylay/services/registry/queries/default_api.py +src/waylay/services/registry/queries/about_api.py src/waylay/services/registry/queries/jobs_api.py src/waylay/services/registry/queries/model_functions_api.py src/waylay/services/registry/queries/plug_functions_api.py diff --git a/waylay-sdk-registry-types/README.md b/waylay-sdk-registry-types/README.md index 64dfcdf9..05b236c2 100644 --- a/waylay-sdk-registry-types/README.md +++ b/waylay-sdk-registry-types/README.md @@ -32,22 +32,16 @@ from waylay.sdk.api.api_exceptions import ApiError waylay_client = WaylayClient.from_profile() # Note that the typed model classes for responses/parameters/... are only available when `waylay-sdk-registry-types` is installed -from waylay.services.registry.models.function_type import FunctionType -from waylay.services.registry.models.job_state_result import JobStateResult -from waylay.services.registry.models.job_type_schema import JobTypeSchema -from waylay.services.registry.models.jobs_response import JobsResponse +from waylay.services.registry.models.root_page_response import RootPageResponse try: - # List Jobs - # calls `GET /registry/v2/jobs/` - api_response = await waylay_client.registry.jobs.list( - # query parameters: - query = { - }, + # Get Service Status + # calls `GET /registry/v2/` + api_response = await waylay_client.registry.about.get( ) - print("The response of registry.jobs.list:\n") + print("The response of registry.about.get:\n") pprint(api_response) except ApiError as e: - print("Exception when calling registry.jobs.list: %s\n" % e) + print("Exception when calling registry.about.get: %s\n" % e) ``` diff --git a/waylay-sdk-registry-types/pyproject.toml b/waylay-sdk-registry-types/pyproject.toml index 5d17a750..2223dfdc 100644 --- a/waylay-sdk-registry-types/pyproject.toml +++ b/waylay-sdk-registry-types/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "waylay-sdk-registry-types" -version = "2.12.4b20240410" +version = "2.12.4" description = "Waylay Function Registry Types " authors = [ { name = "Waylay", email = "info@waylay.io"} @@ -12,8 +12,8 @@ authors = [ keywords = ["Waylay Function Registry" , "Types"] requires-python = ">= 3.9" dependencies = [ - "waylay-sdk-core ~= 0.1.0", - "waylay-sdk-registry == 2.12.4b20240410", + "waylay-sdk-core ~= 0.2.0", + "waylay-sdk-registry == 2.12.4", "pydantic ~= 2.6", "typing-extensions ~= 4.10", "eval-type-backport ~= 0.1.3; python_version < '3.10'", diff --git a/waylay-sdk-registry-types/src/waylay/services/registry/models/__init__.py b/waylay-sdk-registry-types/src/waylay/services/registry/models/__init__.py index 174df54c..cd65f668 100644 --- a/waylay-sdk-registry-types/src/waylay/services/registry/models/__init__.py +++ b/waylay-sdk-registry-types/src/waylay/services/registry/models/__init__.py @@ -12,7 +12,7 @@ Do not edit the class manually. """ -__version__ = "2.12.4b20240410" +__version__ = "2.12.4" # import models into model package from .active_event_data import ActiveEventData diff --git a/waylay-sdk-registry-types/src/waylay/services/registry/queries/default_api.py b/waylay-sdk-registry-types/src/waylay/services/registry/queries/about_api.py similarity index 100% rename from waylay-sdk-registry-types/src/waylay/services/registry/queries/default_api.py rename to waylay-sdk-registry-types/src/waylay/services/registry/queries/about_api.py diff --git a/waylay-sdk-registry/.openapi-generator/FILES b/waylay-sdk-registry/.openapi-generator/FILES index c7daa7dc..3cbe7582 100644 --- a/waylay-sdk-registry/.openapi-generator/FILES +++ b/waylay-sdk-registry/.openapi-generator/FILES @@ -1,7 +1,7 @@ LICENSE.txt pyproject.toml src/waylay/services/registry/api/__init__.py -src/waylay/services/registry/api/default_api.py +src/waylay/services/registry/api/about_api.py src/waylay/services/registry/api/jobs_api.py src/waylay/services/registry/api/model_functions_api.py src/waylay/services/registry/api/plug_functions_api.py diff --git a/waylay-sdk-registry/README.md b/waylay-sdk-registry/README.md index ff8db33d..340cc3c9 100644 --- a/waylay-sdk-registry/README.md +++ b/waylay-sdk-registry/README.md @@ -33,22 +33,16 @@ from waylay.sdk.api.api_exceptions import ApiError waylay_client = WaylayClient.from_profile() # Note that the typed model classes for responses/parameters/... are only available when `waylay-sdk-registry-types` is installed -from waylay.services.registry.models.function_type import FunctionType -from waylay.services.registry.models.job_state_result import JobStateResult -from waylay.services.registry.models.job_type_schema import JobTypeSchema -from waylay.services.registry.models.jobs_response import JobsResponse +from waylay.services.registry.models.root_page_response import RootPageResponse try: - # List Jobs - # calls `GET /registry/v2/jobs/` - api_response = await waylay_client.registry.jobs.list( - # query parameters: - query = { - }, + # Get Service Status + # calls `GET /registry/v2/` + api_response = await waylay_client.registry.about.get( ) - print("The response of registry.jobs.list:\n") + print("The response of registry.about.get:\n") pprint(api_response) except ApiError as e: - print("Exception when calling registry.jobs.list: %s\n" % e) + print("Exception when calling registry.about.get: %s\n" % e) ``` diff --git a/waylay-sdk-registry/pyproject.toml b/waylay-sdk-registry/pyproject.toml index c19e0271..d8f4075d 100644 --- a/waylay-sdk-registry/pyproject.toml +++ b/waylay-sdk-registry/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "waylay-sdk-registry" -version = "2.12.4b20240410" +version = "2.12.4" description = "Waylay Function Registry" authors = [ { name = "Waylay", email = "info@waylay.io"} @@ -12,7 +12,7 @@ authors = [ keywords = ["Waylay Function Registry"] requires-python = ">= 3.9" dependencies = [ - "waylay-sdk-core ~= 0.1.0", + "waylay-sdk-core ~= 0.2.0", "pydantic ~= 2.6", "typing-extensions ~= 4.10", "eval-type-backport ~= 0.1.3; python_version < '3.10'", diff --git a/waylay-sdk-registry/src/waylay/services/registry/api/__init__.py b/waylay-sdk-registry/src/waylay/services/registry/api/__init__.py index 833c8ca0..b6c2ce1e 100644 --- a/waylay-sdk-registry/src/waylay/services/registry/api/__init__.py +++ b/waylay-sdk-registry/src/waylay/services/registry/api/__init__.py @@ -1,7 +1,7 @@ """Waylay Function Registry: apis.""" # import apis into api package -from .default_api import DefaultApi +from .about_api import AboutApi from .jobs_api import JobsApi from .model_functions_api import ModelFunctionsApi from .plug_functions_api import PlugFunctionsApi @@ -10,11 +10,11 @@ from .webscript_functions_api import WebscriptFunctionsApi __all__ = [ + "AboutApi", "JobsApi", "ModelFunctionsApi", "PlugFunctionsApi", "RuntimesApi", "SchemasApi", "WebscriptFunctionsApi", - "DefaultApi", ] diff --git a/waylay-sdk-registry/src/waylay/services/registry/api/default_api.py b/waylay-sdk-registry/src/waylay/services/registry/api/about_api.py similarity index 94% rename from waylay-sdk-registry/src/waylay/services/registry/api/default_api.py rename to waylay-sdk-registry/src/waylay/services/registry/api/about_api.py index bc90feb0..1acb0ed1 100644 --- a/waylay-sdk-registry/src/waylay/services/registry/api/default_api.py +++ b/waylay-sdk-registry/src/waylay/services/registry/api/about_api.py @@ -33,12 +33,12 @@ if TYPE_CHECKING: from waylay.services.registry.models import RootPageResponse - from waylay.services.registry.queries.default_api import GetQuery + from waylay.services.registry.queries.about_api import GetQuery try: from waylay.services.registry.models import RootPageResponse - from waylay.services.registry.queries.default_api import GetQuery + from waylay.services.registry.queries.about_api import GetQuery MODELS_AVAILABLE = True except ImportError: @@ -52,8 +52,8 @@ T = TypeVar("T") -class DefaultApi(WithApiClient): - """DefaultApi service methods. +class AboutApi(WithApiClient): + """AboutApi service methods. NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech @@ -131,9 +131,9 @@ async def get( headers: HeaderTypes | None = None, **kwargs, ) -> RootPageResponse | T | Response | Model: - """Version. + """Get Service Status. - Get the version of this function registry deployment. + Get the status and version of the function registry service. :param query: URL Query parameters. :type query: GetQuery | QueryParamTypes, optional :param raw_response: If true, return the http Response object instead of returning an api model object, or throwing an ApiError. diff --git a/waylay-sdk-registry/src/waylay/services/registry/api/jobs_api.py b/waylay-sdk-registry/src/waylay/services/registry/api/jobs_api.py index 8d66609b..6fe9157d 100644 --- a/waylay-sdk-registry/src/waylay/services/registry/api/jobs_api.py +++ b/waylay-sdk-registry/src/waylay/services/registry/api/jobs_api.py @@ -13,6 +13,7 @@ from typing import ( TYPE_CHECKING, Any, + AsyncIterator, Dict, Literal, TypeVar, @@ -30,6 +31,7 @@ Response, ) from waylay.sdk.api._models import Model +from waylay.sdk.api.constants import STREAM_TIMEOUTS from waylay.sdk.plugin import WithApiClient if TYPE_CHECKING: @@ -96,8 +98,10 @@ async def events( select_path: Literal[""] = "", response_type: Literal[None] = None, headers: HeaderTypes | None = None, + stream: bool = True, + timeout=STREAM_TIMEOUTS, **kwargs, - ) -> EventWithCloseSSE: ... + ) -> AsyncIterator[EventWithCloseSSE]: ... @overload async def events( @@ -108,8 +112,10 @@ async def events( select_path: Literal[""] = "", response_type: T, headers: HeaderTypes | None = None, + stream: bool = True, + timeout=STREAM_TIMEOUTS, **kwargs, - ) -> T: ... + ) -> AsyncIterator[T]: ... @overload async def events( @@ -120,6 +126,8 @@ async def events( select_path: Literal["_not_used_"] = "_not_used_", response_type: Literal[None] = None, # not used headers: HeaderTypes | None = None, + stream: bool = True, + timeout=STREAM_TIMEOUTS, **kwargs, ) -> Response: ... @@ -132,8 +140,10 @@ async def events( select_path: str, response_type: Literal[None] = None, headers: HeaderTypes | None = None, + stream: bool = True, + timeout=STREAM_TIMEOUTS, **kwargs, - ) -> Model: ... + ) -> AsyncIterator[Model]: ... @overload async def events( @@ -144,8 +154,10 @@ async def events( select_path: str, response_type: T, headers: HeaderTypes | None = None, + stream: bool = True, + timeout=STREAM_TIMEOUTS, **kwargs, - ) -> T: ... + ) -> AsyncIterator[T]: ... async def events( self, @@ -155,8 +167,15 @@ async def events( select_path: str = "", response_type: T | None = None, headers: HeaderTypes | None = None, + stream: bool = True, + timeout=STREAM_TIMEOUTS, **kwargs, - ) -> EventWithCloseSSE | T | Response | Model: + ) -> ( + AsyncIterator[EventWithCloseSSE] + | AsyncIterator[T] + | Response + | AsyncIterator[Model] + ): """Stream Events. Get an SSE stream of all job events for the users tenant. The stream can be filtered on job type or on a specific job id. When filtering on job id, the server will send a close event upon completion of the job. The client should handle this event by closing the stream. @@ -222,6 +241,8 @@ async def events( params=query, **body_args, headers=headers, + stream=stream, + timeout=timeout, **kwargs, response_type=response_types_map, select_path=select_path, diff --git a/waylay-sdk-registry/src/waylay/services/registry/service/__init__.py b/waylay-sdk-registry/src/waylay/services/registry/service/__init__.py index edb4f701..a0aadd9d 100644 --- a/waylay-sdk-registry/src/waylay/services/registry/service/__init__.py +++ b/waylay-sdk-registry/src/waylay/services/registry/service/__init__.py @@ -12,7 +12,7 @@ Do not edit the class manually. """ -__version__ = "2.12.4b20240410" +__version__ = "2.12.4" from .service import RegistryService diff --git a/waylay-sdk-registry/src/waylay/services/registry/service/service.py b/waylay-sdk-registry/src/waylay/services/registry/service/service.py index 635bcd5d..7956a90c 100644 --- a/waylay-sdk-registry/src/waylay/services/registry/service/service.py +++ b/waylay-sdk-registry/src/waylay/services/registry/service/service.py @@ -2,7 +2,7 @@ from waylay.sdk import ApiClient, WaylayService -from ..api.default_api import DefaultApi +from ..api.about_api import AboutApi from ..api.jobs_api import JobsApi from ..api.model_functions_api import ModelFunctionsApi from ..api.plug_functions_api import PlugFunctionsApi @@ -17,22 +17,22 @@ class RegistryService(WaylayService): name = "registry" title = "Registry Service" + about: AboutApi jobs: JobsApi model_functions: ModelFunctionsApi plug_functions: PlugFunctionsApi runtimes: RuntimesApi schemas: SchemasApi webscript_functions: WebscriptFunctionsApi - default: DefaultApi def __init__(self, api_client: ApiClient): """Create the registry service.""" super().__init__(api_client) + self.about = AboutApi(api_client) self.jobs = JobsApi(api_client) self.model_functions = ModelFunctionsApi(api_client) self.plug_functions = PlugFunctionsApi(api_client) self.runtimes = RuntimesApi(api_client) self.schemas = SchemasApi(api_client) self.webscript_functions = WebscriptFunctionsApi(api_client) - self.default = DefaultApi(api_client) diff --git a/waylay_registry_api/.openapi-generator/FILES b/waylay_registry_api/.openapi-generator/FILES deleted file mode 100644 index b2fbe7d0..00000000 --- a/waylay_registry_api/.openapi-generator/FILES +++ /dev/null @@ -1,13 +0,0 @@ -pyproject.toml -src/waylay/services/registry/api/__init__.py -src/waylay/services/registry/api/default_api.py -src/waylay/services/registry/api/jobs_api.py -src/waylay/services/registry/api/model_functions_api.py -src/waylay/services/registry/api/plug_functions_api.py -src/waylay/services/registry/api/py.typed -src/waylay/services/registry/api/runtimes_api.py -src/waylay/services/registry/api/schemas_api.py -src/waylay/services/registry/api/webscript_functions_api.py -src/waylay/services/registry/service/__init__.py -src/waylay/services/registry/service/py.typed -src/waylay/services/registry/service/service.py diff --git a/waylay_registry_api/.openapi-generator/VERSION b/waylay_registry_api/.openapi-generator/VERSION deleted file mode 100644 index 4b49d9bb..00000000 --- a/waylay_registry_api/.openapi-generator/VERSION +++ /dev/null @@ -1 +0,0 @@ -7.2.0 \ No newline at end of file diff --git a/waylay_registry_types/.openapi-generator/FILES b/waylay_registry_types/.openapi-generator/FILES deleted file mode 100644 index 0c7c7d29..00000000 --- a/waylay_registry_types/.openapi-generator/FILES +++ /dev/null @@ -1,768 +0,0 @@ -pyproject.toml -src/waylay/services/registry/models/__init__.py -src/waylay/services/registry/models/active_event_data.py -src/waylay/services/registry/models/active_event_dataobject.py -src/waylay/services/registry/models/active_event_sse.py -src/waylay/services/registry/models/active_event_sseobject.py -src/waylay/services/registry/models/alt_version_hal_link.py -src/waylay/services/registry/models/alt_version_hal_linkobject.py -src/waylay/services/registry/models/any_function_response.py -src/waylay/services/registry/models/any_function_responseobject.py -src/waylay/services/registry/models/any_job_for_function.py -src/waylay/services/registry/models/any_job_for_functionobject.py -src/waylay/services/registry/models/any_job_result.py -src/waylay/services/registry/models/any_job_resultobject.py -src/waylay/services/registry/models/any_job_status.py -src/waylay/services/registry/models/any_job_status_summary.py -src/waylay/services/registry/models/any_job_status_summaryobject.py -src/waylay/services/registry/models/any_job_statusobject.py -src/waylay/services/registry/models/archive_format.py -src/waylay/services/registry/models/archive_formatobject.py -src/waylay/services/registry/models/asset_condition.py -src/waylay/services/registry/models/asset_condition_content_type.py -src/waylay/services/registry/models/asset_condition_content_typeobject.py -src/waylay/services/registry/models/asset_condition_pattern.py -src/waylay/services/registry/models/asset_condition_patternobject.py -src/waylay/services/registry/models/asset_conditionobject.py -src/waylay/services/registry/models/asset_path_params_v2.py -src/waylay/services/registry/models/asset_path_params_v2object.py -src/waylay/services/registry/models/asset_role.py -src/waylay/services/registry/models/asset_roleobject.py -src/waylay/services/registry/models/asset_summary.py -src/waylay/services/registry/models/asset_summary_with_hal_link.py -src/waylay/services/registry/models/asset_summary_with_hal_link_links.py -src/waylay/services/registry/models/asset_summary_with_hal_link_linksobject.py -src/waylay/services/registry/models/asset_summary_with_hal_linkobject.py -src/waylay/services/registry/models/asset_summaryobject.py -src/waylay/services/registry/models/assets_conditions.py -src/waylay/services/registry/models/assets_conditionsobject.py -src/waylay/services/registry/models/async_deploy_query.py -src/waylay/services/registry/models/async_deploy_query_v1.py -src/waylay/services/registry/models/async_deploy_query_v1object.py -src/waylay/services/registry/models/async_deploy_queryobject.py -src/waylay/services/registry/models/async_query_default_false.py -src/waylay/services/registry/models/async_query_default_falseobject.py -src/waylay/services/registry/models/async_query_default_true.py -src/waylay/services/registry/models/async_query_default_trueobject.py -src/waylay/services/registry/models/async_verify_query.py -src/waylay/services/registry/models/async_verify_queryobject.py -src/waylay/services/registry/models/batch.py -src/waylay/services/registry/models/batch_args.py -src/waylay/services/registry/models/batch_argsobject.py -src/waylay/services/registry/models/batch_job_status.py -src/waylay/services/registry/models/batch_job_statusobject.py -src/waylay/services/registry/models/batch_result.py -src/waylay/services/registry/models/batch_resultobject.py -src/waylay/services/registry/models/batchobject.py -src/waylay/services/registry/models/build.py -src/waylay/services/registry/models/build1.py -src/waylay/services/registry/models/build1object.py -src/waylay/services/registry/models/build_args.py -src/waylay/services/registry/models/build_argsobject.py -src/waylay/services/registry/models/build_job_status.py -src/waylay/services/registry/models/build_job_statusobject.py -src/waylay/services/registry/models/build_result.py -src/waylay/services/registry/models/build_resultobject.py -src/waylay/services/registry/models/build_spec.py -src/waylay/services/registry/models/build_specobject.py -src/waylay/services/registry/models/buildobject.py -src/waylay/services/registry/models/cleanup_result.py -src/waylay/services/registry/models/cleanup_resultobject.py -src/waylay/services/registry/models/compiled_runtime_version.py -src/waylay/services/registry/models/compiled_runtime_versionobject.py -src/waylay/services/registry/models/completed_event_data.py -src/waylay/services/registry/models/completed_event_dataobject.py -src/waylay/services/registry/models/completed_event_sse.py -src/waylay/services/registry/models/completed_event_sseobject.py -src/waylay/services/registry/models/content_query_v2.py -src/waylay/services/registry/models/content_query_v2object.py -src/waylay/services/registry/models/content_validation_listing.py -src/waylay/services/registry/models/content_validation_listingobject.py -src/waylay/services/registry/models/create_function_query_v2.py -src/waylay/services/registry/models/create_function_query_v2object.py -src/waylay/services/registry/models/create_kf_serving_async_response.py -src/waylay/services/registry/models/create_kf_serving_async_responseobject.py -src/waylay/services/registry/models/create_plug_async_response.py -src/waylay/services/registry/models/create_plug_async_responseobject.py -src/waylay/services/registry/models/create_webscript_async_response.py -src/waylay/services/registry/models/create_webscript_async_responseobject.py -src/waylay/services/registry/models/delayed_event_data.py -src/waylay/services/registry/models/delayed_event_dataobject.py -src/waylay/services/registry/models/delayed_event_sse.py -src/waylay/services/registry/models/delayed_event_sseobject.py -src/waylay/services/registry/models/deploy.py -src/waylay/services/registry/models/deploy1.py -src/waylay/services/registry/models/deploy1object.py -src/waylay/services/registry/models/deploy_args.py -src/waylay/services/registry/models/deploy_args_deploy_spec_overrides.py -src/waylay/services/registry/models/deploy_args_deploy_spec_overridesobject.py -src/waylay/services/registry/models/deploy_argsobject.py -src/waylay/services/registry/models/deploy_attributes_filter.py -src/waylay/services/registry/models/deploy_attributes_filterobject.py -src/waylay/services/registry/models/deploy_job_status.py -src/waylay/services/registry/models/deploy_job_statusobject.py -src/waylay/services/registry/models/deploy_result.py -src/waylay/services/registry/models/deploy_resultobject.py -src/waylay/services/registry/models/deploy_spec.py -src/waylay/services/registry/models/deploy_spec_openfaas_spec.py -src/waylay/services/registry/models/deploy_spec_openfaas_specobject.py -src/waylay/services/registry/models/deploy_specobject.py -src/waylay/services/registry/models/deployobject.py -src/waylay/services/registry/models/deprecate_previous_policy.py -src/waylay/services/registry/models/deprecate_previous_policyobject.py -src/waylay/services/registry/models/deprecate_previous_query.py -src/waylay/services/registry/models/deprecate_previous_queryobject.py -src/waylay/services/registry/models/deprecated_draft_filter.py -src/waylay/services/registry/models/deprecated_draft_filterobject.py -src/waylay/services/registry/models/documentation.py -src/waylay/services/registry/models/documentation_property.py -src/waylay/services/registry/models/documentation_propertyobject.py -src/waylay/services/registry/models/documentationobject.py -src/waylay/services/registry/models/dry_run_query.py -src/waylay/services/registry/models/dry_run_queryobject.py -src/waylay/services/registry/models/entity_response.py -src/waylay/services/registry/models/entity_responseobject.py -src/waylay/services/registry/models/error_and_status_response.py -src/waylay/services/registry/models/error_and_status_responseobject.py -src/waylay/services/registry/models/error_response.py -src/waylay/services/registry/models/error_responseobject.py -src/waylay/services/registry/models/event_ack.py -src/waylay/services/registry/models/event_ackobject.py -src/waylay/services/registry/models/event_close.py -src/waylay/services/registry/models/event_closeobject.py -src/waylay/services/registry/models/event_keep_alive.py -src/waylay/services/registry/models/event_keep_aliveobject.py -src/waylay/services/registry/models/event_sse.py -src/waylay/services/registry/models/event_sseobject.py -src/waylay/services/registry/models/event_type_sse.py -src/waylay/services/registry/models/event_type_sseobject.py -src/waylay/services/registry/models/event_with_close_sse.py -src/waylay/services/registry/models/event_with_close_sseobject.py -src/waylay/services/registry/models/exposed_openfaas_deploy_spec.py -src/waylay/services/registry/models/exposed_openfaas_deploy_specobject.py -src/waylay/services/registry/models/failed_event_data.py -src/waylay/services/registry/models/failed_event_dataobject.py -src/waylay/services/registry/models/failed_event_sse.py -src/waylay/services/registry/models/failed_event_sseobject.py -src/waylay/services/registry/models/failure_reason.py -src/waylay/services/registry/models/failure_reasonobject.py -src/waylay/services/registry/models/file_upload.py -src/waylay/services/registry/models/file_uploadobject.py -src/waylay/services/registry/models/force_delete_query_v1.py -src/waylay/services/registry/models/force_delete_query_v1object.py -src/waylay/services/registry/models/function_delete_query.py -src/waylay/services/registry/models/function_delete_queryobject.py -src/waylay/services/registry/models/function_deploy_overrides.py -src/waylay/services/registry/models/function_deploy_overrides_type.py -src/waylay/services/registry/models/function_deploy_overrides_typeobject.py -src/waylay/services/registry/models/function_deploy_overridesobject.py -src/waylay/services/registry/models/function_entity_query.py -src/waylay/services/registry/models/function_entity_queryobject.py -src/waylay/services/registry/models/function_job_args.py -src/waylay/services/registry/models/function_job_argsobject.py -src/waylay/services/registry/models/function_manifest.py -src/waylay/services/registry/models/function_manifestobject.py -src/waylay/services/registry/models/function_meta.py -src/waylay/services/registry/models/function_metaobject.py -src/waylay/services/registry/models/function_name_version.py -src/waylay/services/registry/models/function_name_versionobject.py -src/waylay/services/registry/models/function_ref.py -src/waylay/services/registry/models/function_refobject.py -src/waylay/services/registry/models/function_spec.py -src/waylay/services/registry/models/function_specobject.py -src/waylay/services/registry/models/function_type.py -src/waylay/services/registry/models/function_typeobject.py -src/waylay/services/registry/models/function_version_query.py -src/waylay/services/registry/models/function_version_queryobject.py -src/waylay/services/registry/models/get_content_params_v2.py -src/waylay/services/registry/models/get_content_params_v2object.py -src/waylay/services/registry/models/get_invokable_webscript_query.py -src/waylay/services/registry/models/get_invokable_webscript_queryobject.py -src/waylay/services/registry/models/get_model_response_v2.py -src/waylay/services/registry/models/get_model_response_v2object.py -src/waylay/services/registry/models/get_plug_response_v2.py -src/waylay/services/registry/models/get_plug_response_v2_links.py -src/waylay/services/registry/models/get_plug_response_v2_links_draft.py -src/waylay/services/registry/models/get_plug_response_v2_links_draftobject.py -src/waylay/services/registry/models/get_plug_response_v2_links_published.py -src/waylay/services/registry/models/get_plug_response_v2_links_publishedobject.py -src/waylay/services/registry/models/get_plug_response_v2_linksobject.py -src/waylay/services/registry/models/get_plug_response_v2object.py -src/waylay/services/registry/models/get_runtime_by_name_and_version_query.py -src/waylay/services/registry/models/get_runtime_by_name_and_version_queryobject.py -src/waylay/services/registry/models/get_runtime_by_name_query.py -src/waylay/services/registry/models/get_runtime_by_name_queryobject.py -src/waylay/services/registry/models/get_runtime_example_query.py -src/waylay/services/registry/models/get_runtime_example_queryobject.py -src/waylay/services/registry/models/get_runtime_versions_query.py -src/waylay/services/registry/models/get_runtime_versions_queryobject.py -src/waylay/services/registry/models/get_webscript_response_v2.py -src/waylay/services/registry/models/get_webscript_response_v2_links.py -src/waylay/services/registry/models/get_webscript_response_v2_linksobject.py -src/waylay/services/registry/models/get_webscript_response_v2object.py -src/waylay/services/registry/models/hal_link.py -src/waylay/services/registry/models/hal_linkobject.py -src/waylay/services/registry/models/invokable_webscript_response.py -src/waylay/services/registry/models/invokable_webscript_response_entity.py -src/waylay/services/registry/models/invokable_webscript_response_entity_webscript.py -src/waylay/services/registry/models/invokable_webscript_response_entity_webscriptobject.py -src/waylay/services/registry/models/invokable_webscript_response_entityobject.py -src/waylay/services/registry/models/invokable_webscript_responseobject.py -src/waylay/services/registry/models/invoke_hal_link.py -src/waylay/services/registry/models/invoke_hal_linkobject.py -src/waylay/services/registry/models/invoke_internal_hal_link.py -src/waylay/services/registry/models/invoke_internal_hal_linkobject.py -src/waylay/services/registry/models/job_and_function_hal_link.py -src/waylay/services/registry/models/job_and_function_hal_linkobject.py -src/waylay/services/registry/models/job_cause.py -src/waylay/services/registry/models/job_causeobject.py -src/waylay/services/registry/models/job_causes.py -src/waylay/services/registry/models/job_causesobject.py -src/waylay/services/registry/models/job_event_payload_active_event_data.py -src/waylay/services/registry/models/job_event_payload_active_event_dataobject.py -src/waylay/services/registry/models/job_event_payload_completed_event_data.py -src/waylay/services/registry/models/job_event_payload_completed_event_dataobject.py -src/waylay/services/registry/models/job_event_payload_delayed_event_data.py -src/waylay/services/registry/models/job_event_payload_delayed_event_dataobject.py -src/waylay/services/registry/models/job_event_payload_failed_event_data.py -src/waylay/services/registry/models/job_event_payload_failed_event_dataobject.py -src/waylay/services/registry/models/job_event_payload_waiting_children_event_data.py -src/waylay/services/registry/models/job_event_payload_waiting_children_event_dataobject.py -src/waylay/services/registry/models/job_event_payload_waiting_event_data.py -src/waylay/services/registry/models/job_event_payload_waiting_event_dataobject.py -src/waylay/services/registry/models/job_event_response_active_event_data.py -src/waylay/services/registry/models/job_event_response_active_event_dataobject.py -src/waylay/services/registry/models/job_event_response_completed_event_data.py -src/waylay/services/registry/models/job_event_response_completed_event_dataobject.py -src/waylay/services/registry/models/job_event_response_delayed_event_data.py -src/waylay/services/registry/models/job_event_response_delayed_event_dataobject.py -src/waylay/services/registry/models/job_event_response_failed_event_data.py -src/waylay/services/registry/models/job_event_response_failed_event_dataobject.py -src/waylay/services/registry/models/job_event_response_waiting_children_event_data.py -src/waylay/services/registry/models/job_event_response_waiting_children_event_dataobject.py -src/waylay/services/registry/models/job_event_response_waiting_event_data.py -src/waylay/services/registry/models/job_event_response_waiting_event_dataobject.py -src/waylay/services/registry/models/job_event_sse.py -src/waylay/services/registry/models/job_event_sseobject.py -src/waylay/services/registry/models/job_events_and_function_hal_link.py -src/waylay/services/registry/models/job_events_and_function_hal_linkobject.py -src/waylay/services/registry/models/job_events_filter_query.py -src/waylay/services/registry/models/job_events_filter_queryobject.py -src/waylay/services/registry/models/job_events_hal_link.py -src/waylay/services/registry/models/job_events_hal_linkobject.py -src/waylay/services/registry/models/job_hal_links.py -src/waylay/services/registry/models/job_hal_linksobject.py -src/waylay/services/registry/models/job_query.py -src/waylay/services/registry/models/job_queryobject.py -src/waylay/services/registry/models/job_reference.py -src/waylay/services/registry/models/job_reference_params.py -src/waylay/services/registry/models/job_reference_paramsobject.py -src/waylay/services/registry/models/job_referenceobject.py -src/waylay/services/registry/models/job_response.py -src/waylay/services/registry/models/job_responseobject.py -src/waylay/services/registry/models/job_state.py -src/waylay/services/registry/models/job_state_active.py -src/waylay/services/registry/models/job_state_activeobject.py -src/waylay/services/registry/models/job_state_completed.py -src/waylay/services/registry/models/job_state_completedobject.py -src/waylay/services/registry/models/job_state_delayed.py -src/waylay/services/registry/models/job_state_delayedobject.py -src/waylay/services/registry/models/job_state_failed.py -src/waylay/services/registry/models/job_state_failedobject.py -src/waylay/services/registry/models/job_state_finished.py -src/waylay/services/registry/models/job_state_finishedobject.py -src/waylay/services/registry/models/job_state_result.py -src/waylay/services/registry/models/job_state_resultobject.py -src/waylay/services/registry/models/job_state_unknown.py -src/waylay/services/registry/models/job_state_unknownobject.py -src/waylay/services/registry/models/job_state_waiting.py -src/waylay/services/registry/models/job_state_waiting_children.py -src/waylay/services/registry/models/job_state_waiting_childrenobject.py -src/waylay/services/registry/models/job_state_waitingobject.py -src/waylay/services/registry/models/job_stateobject.py -src/waylay/services/registry/models/job_status.py -src/waylay/services/registry/models/job_status_and_entity_hal_links.py -src/waylay/services/registry/models/job_status_and_entity_hal_linksobject.py -src/waylay/services/registry/models/job_status_hal_link.py -src/waylay/services/registry/models/job_status_hal_linkobject.py -src/waylay/services/registry/models/job_status_progress.py -src/waylay/services/registry/models/job_status_progressobject.py -src/waylay/services/registry/models/job_statusobject.py -src/waylay/services/registry/models/job_submitted_response.py -src/waylay/services/registry/models/job_submitted_responseobject.py -src/waylay/services/registry/models/job_type.py -src/waylay/services/registry/models/job_type_batch.py -src/waylay/services/registry/models/job_type_batchobject.py -src/waylay/services/registry/models/job_type_build.py -src/waylay/services/registry/models/job_type_buildobject.py -src/waylay/services/registry/models/job_type_deploy.py -src/waylay/services/registry/models/job_type_deployobject.py -src/waylay/services/registry/models/job_type_scale.py -src/waylay/services/registry/models/job_type_scaleobject.py -src/waylay/services/registry/models/job_type_schema.py -src/waylay/services/registry/models/job_type_schemaobject.py -src/waylay/services/registry/models/job_type_undeploy.py -src/waylay/services/registry/models/job_type_undeployobject.py -src/waylay/services/registry/models/job_type_verify.py -src/waylay/services/registry/models/job_type_verifyobject.py -src/waylay/services/registry/models/job_typeobject.py -src/waylay/services/registry/models/jobs_for_model_response_v2.py -src/waylay/services/registry/models/jobs_for_model_response_v2_links.py -src/waylay/services/registry/models/jobs_for_model_response_v2_linksobject.py -src/waylay/services/registry/models/jobs_for_model_response_v2object.py -src/waylay/services/registry/models/jobs_for_plug_response_v2.py -src/waylay/services/registry/models/jobs_for_plug_response_v2_links.py -src/waylay/services/registry/models/jobs_for_plug_response_v2_linksobject.py -src/waylay/services/registry/models/jobs_for_plug_response_v2object.py -src/waylay/services/registry/models/jobs_for_webscript_response_v2.py -src/waylay/services/registry/models/jobs_for_webscript_response_v2_links.py -src/waylay/services/registry/models/jobs_for_webscript_response_v2_linksobject.py -src/waylay/services/registry/models/jobs_for_webscript_response_v2object.py -src/waylay/services/registry/models/jobs_hal_link.py -src/waylay/services/registry/models/jobs_hal_linkobject.py -src/waylay/services/registry/models/jobs_response.py -src/waylay/services/registry/models/jobs_responseobject.py -src/waylay/services/registry/models/keep_alive_event_sse.py -src/waylay/services/registry/models/keep_alive_event_sseobject.py -src/waylay/services/registry/models/kf_serving_delete_multiple_response.py -src/waylay/services/registry/models/kf_serving_delete_multiple_responseobject.py -src/waylay/services/registry/models/kf_serving_delete_multiple_with_job_response.py -src/waylay/services/registry/models/kf_serving_delete_multiple_with_job_responseobject.py -src/waylay/services/registry/models/kf_serving_delete_query_v1.py -src/waylay/services/registry/models/kf_serving_delete_query_v1object.py -src/waylay/services/registry/models/kf_serving_delete_query_v2.py -src/waylay/services/registry/models/kf_serving_delete_query_v2object.py -src/waylay/services/registry/models/kf_serving_delete_response.py -src/waylay/services/registry/models/kf_serving_delete_responseobject.py -src/waylay/services/registry/models/kf_serving_delete_with_job_response.py -src/waylay/services/registry/models/kf_serving_delete_with_job_responseobject.py -src/waylay/services/registry/models/kf_serving_latest_version_query_v2.py -src/waylay/services/registry/models/kf_serving_latest_version_query_v2object.py -src/waylay/services/registry/models/kf_serving_latest_versions_query_v1.py -src/waylay/services/registry/models/kf_serving_latest_versions_query_v1object.py -src/waylay/services/registry/models/kf_serving_latest_versions_query_v2.py -src/waylay/services/registry/models/kf_serving_latest_versions_query_v2object.py -src/waylay/services/registry/models/kf_serving_manifest.py -src/waylay/services/registry/models/kf_serving_manifestobject.py -src/waylay/services/registry/models/kf_serving_models_response.py -src/waylay/services/registry/models/kf_serving_models_responseobject.py -src/waylay/services/registry/models/kf_serving_response.py -src/waylay/services/registry/models/kf_serving_responseobject.py -src/waylay/services/registry/models/kf_serving_versions_query_v1.py -src/waylay/services/registry/models/kf_serving_versions_query_v1object.py -src/waylay/services/registry/models/kfserving_response_v2.py -src/waylay/services/registry/models/kfserving_response_v2object.py -src/waylay/services/registry/models/language_release.py -src/waylay/services/registry/models/language_releaseobject.py -src/waylay/services/registry/models/latest_function_versions_query.py -src/waylay/services/registry/models/latest_function_versions_queryobject.py -src/waylay/services/registry/models/latest_functions_query.py -src/waylay/services/registry/models/latest_functions_queryobject.py -src/waylay/services/registry/models/latest_models_response_v2.py -src/waylay/services/registry/models/latest_models_response_v2_entities_inner.py -src/waylay/services/registry/models/latest_models_response_v2_entities_innerobject.py -src/waylay/services/registry/models/latest_models_response_v2object.py -src/waylay/services/registry/models/latest_plug_query.py -src/waylay/services/registry/models/latest_plug_queryobject.py -src/waylay/services/registry/models/latest_plug_version_query_v2.py -src/waylay/services/registry/models/latest_plug_version_query_v2object.py -src/waylay/services/registry/models/latest_plug_versions_query.py -src/waylay/services/registry/models/latest_plug_versions_query_v2.py -src/waylay/services/registry/models/latest_plug_versions_query_v2object.py -src/waylay/services/registry/models/latest_plug_versions_queryobject.py -src/waylay/services/registry/models/latest_plugs_query.py -src/waylay/services/registry/models/latest_plugs_queryobject.py -src/waylay/services/registry/models/latest_plugs_response_v2.py -src/waylay/services/registry/models/latest_plugs_response_v2_entities_inner.py -src/waylay/services/registry/models/latest_plugs_response_v2_entities_innerobject.py -src/waylay/services/registry/models/latest_plugs_response_v2object.py -src/waylay/services/registry/models/latest_version_level.py -src/waylay/services/registry/models/latest_version_levelobject.py -src/waylay/services/registry/models/latest_webscripts_response_v2.py -src/waylay/services/registry/models/latest_webscripts_response_v2_entities_inner.py -src/waylay/services/registry/models/latest_webscripts_response_v2_entities_innerobject.py -src/waylay/services/registry/models/latest_webscripts_response_v2object.py -src/waylay/services/registry/models/legacy_configuration_object.py -src/waylay/services/registry/models/legacy_configuration_object_format.py -src/waylay/services/registry/models/legacy_configuration_object_formatobject.py -src/waylay/services/registry/models/legacy_configuration_objectobject.py -src/waylay/services/registry/models/legacy_configuration_response_object.py -src/waylay/services/registry/models/legacy_configuration_response_objectobject.py -src/waylay/services/registry/models/legacy_create_debug_response.py -src/waylay/services/registry/models/legacy_create_debug_responseobject.py -src/waylay/services/registry/models/legacy_debug_plug_manifest.py -src/waylay/services/registry/models/legacy_debug_plug_manifestobject.py -src/waylay/services/registry/models/legacy_debug_plug_request.py -src/waylay/services/registry/models/legacy_debug_plug_requestobject.py -src/waylay/services/registry/models/legacy_documentation.py -src/waylay/services/registry/models/legacy_documentation_request.py -src/waylay/services/registry/models/legacy_documentation_requestobject.py -src/waylay/services/registry/models/legacy_documentationobject.py -src/waylay/services/registry/models/legacy_function_meta.py -src/waylay/services/registry/models/legacy_function_metaobject.py -src/waylay/services/registry/models/legacy_plug_create_query.py -src/waylay/services/registry/models/legacy_plug_create_queryobject.py -src/waylay/services/registry/models/legacy_plug_create_request.py -src/waylay/services/registry/models/legacy_plug_create_requestobject.py -src/waylay/services/registry/models/legacy_plug_create_response.py -src/waylay/services/registry/models/legacy_plug_create_responseobject.py -src/waylay/services/registry/models/legacy_plug_meta_request.py -src/waylay/services/registry/models/legacy_plug_meta_requestobject.py -src/waylay/services/registry/models/legacy_plug_query.py -src/waylay/services/registry/models/legacy_plug_queryobject.py -src/waylay/services/registry/models/legacy_plug_request.py -src/waylay/services/registry/models/legacy_plug_request_metadata.py -src/waylay/services/registry/models/legacy_plug_request_metadata_documentation.py -src/waylay/services/registry/models/legacy_plug_request_metadata_documentation_any_of.py -src/waylay/services/registry/models/legacy_plug_request_metadata_documentation_any_ofobject.py -src/waylay/services/registry/models/legacy_plug_request_metadata_documentationobject.py -src/waylay/services/registry/models/legacy_plug_request_metadata_raw_data_inner.py -src/waylay/services/registry/models/legacy_plug_request_metadata_raw_data_innerobject.py -src/waylay/services/registry/models/legacy_plug_request_metadataobject.py -src/waylay/services/registry/models/legacy_plug_requestobject.py -src/waylay/services/registry/models/legacy_plug_response.py -src/waylay/services/registry/models/legacy_plug_response_metadata.py -src/waylay/services/registry/models/legacy_plug_response_metadataobject.py -src/waylay/services/registry/models/legacy_plug_responseobject.py -src/waylay/services/registry/models/legacy_plug_script_meta.py -src/waylay/services/registry/models/legacy_plug_script_meta_raw_data_inner.py -src/waylay/services/registry/models/legacy_plug_script_meta_raw_data_innerobject.py -src/waylay/services/registry/models/legacy_plug_script_metaobject.py -src/waylay/services/registry/models/legacy_plug_script_response.py -src/waylay/services/registry/models/legacy_plug_script_responseobject.py -src/waylay/services/registry/models/legacy_required_properties_inner.py -src/waylay/services/registry/models/legacy_required_properties_innerobject.py -src/waylay/services/registry/models/legacy_required_property_object.py -src/waylay/services/registry/models/legacy_required_property_objectobject.py -src/waylay/services/registry/models/limit_query.py -src/waylay/services/registry/models/limit_queryobject.py -src/waylay/services/registry/models/media_type.py -src/waylay/services/registry/models/media_typeobject.py -src/waylay/services/registry/models/message_and_status_response.py -src/waylay/services/registry/models/message_and_status_responseobject.py -src/waylay/services/registry/models/message_response.py -src/waylay/services/registry/models/message_responseobject.py -src/waylay/services/registry/models/model.py -src/waylay/services/registry/models/model1.py -src/waylay/services/registry/models/model1object.py -src/waylay/services/registry/models/model2.py -src/waylay/services/registry/models/model2object.py -src/waylay/services/registry/models/model_versions_response_v2.py -src/waylay/services/registry/models/model_versions_response_v2object.py -src/waylay/services/registry/models/modelobject.py -src/waylay/services/registry/models/multipart_file_upload.py -src/waylay/services/registry/models/multipart_file_uploadobject.py -src/waylay/services/registry/models/name.py -src/waylay/services/registry/models/name_and_version.py -src/waylay/services/registry/models/name_and_versionobject.py -src/waylay/services/registry/models/named_function_versions_query.py -src/waylay/services/registry/models/named_function_versions_queryobject.py -src/waylay/services/registry/models/named_kf_serving_versions_query_v2.py -src/waylay/services/registry/models/named_kf_serving_versions_query_v2object.py -src/waylay/services/registry/models/named_parameters_typeof_as_job_reference.py -src/waylay/services/registry/models/named_parameters_typeof_as_job_reference_job_status.py -src/waylay/services/registry/models/named_parameters_typeof_as_job_reference_job_statusobject.py -src/waylay/services/registry/models/named_parameters_typeof_as_job_referenceobject.py -src/waylay/services/registry/models/named_parameters_typeof_from_legacy.py -src/waylay/services/registry/models/named_parameters_typeof_from_legacy_documentation.py -src/waylay/services/registry/models/named_parameters_typeof_from_legacy_documentationobject.py -src/waylay/services/registry/models/named_parameters_typeof_from_legacyobject.py -src/waylay/services/registry/models/named_parameters_typeof_is_not_legacy.py -src/waylay/services/registry/models/named_parameters_typeof_is_not_legacyobject.py -src/waylay/services/registry/models/named_plug_versions_query_v2.py -src/waylay/services/registry/models/named_plug_versions_query_v2object.py -src/waylay/services/registry/models/named_versions_filter.py -src/waylay/services/registry/models/named_versions_filterobject.py -src/waylay/services/registry/models/named_webscript_versions_query_v2.py -src/waylay/services/registry/models/named_webscript_versions_query_v2object.py -src/waylay/services/registry/models/nameobject.py -src/waylay/services/registry/models/openfaas_deploy_args.py -src/waylay/services/registry/models/openfaas_deploy_argsobject.py -src/waylay/services/registry/models/openfaas_function_ref.py -src/waylay/services/registry/models/openfaas_function_refobject.py -src/waylay/services/registry/models/operation.py -src/waylay/services/registry/models/operation_status.py -src/waylay/services/registry/models/operation_status_error.py -src/waylay/services/registry/models/operation_status_errorobject.py -src/waylay/services/registry/models/operation_statusobject.py -src/waylay/services/registry/models/operationobject.py -src/waylay/services/registry/models/paging_query.py -src/waylay/services/registry/models/paging_queryobject.py -src/waylay/services/registry/models/paging_response.py -src/waylay/services/registry/models/paging_responseobject.py -src/waylay/services/registry/models/parent_keys.py -src/waylay/services/registry/models/parent_keysobject.py -src/waylay/services/registry/models/patch_interface_query.py -src/waylay/services/registry/models/patch_interface_queryobject.py -src/waylay/services/registry/models/patch_metadata_query.py -src/waylay/services/registry/models/patch_metadata_queryobject.py -src/waylay/services/registry/models/patch_plug_request_v1.py -src/waylay/services/registry/models/patch_plug_request_v1object.py -src/waylay/services/registry/models/plug.py -src/waylay/services/registry/models/plug1.py -src/waylay/services/registry/models/plug1object.py -src/waylay/services/registry/models/plug2.py -src/waylay/services/registry/models/plug2object.py -src/waylay/services/registry/models/plug_delete_force_query.py -src/waylay/services/registry/models/plug_delete_force_queryobject.py -src/waylay/services/registry/models/plug_delete_query.py -src/waylay/services/registry/models/plug_delete_queryobject.py -src/waylay/services/registry/models/plug_interface.py -src/waylay/services/registry/models/plug_interfaceobject.py -src/waylay/services/registry/models/plug_listing_and_query_response.py -src/waylay/services/registry/models/plug_listing_and_query_responseobject.py -src/waylay/services/registry/models/plug_listing_response.py -src/waylay/services/registry/models/plug_listing_responseobject.py -src/waylay/services/registry/models/plug_manifest.py -src/waylay/services/registry/models/plug_manifestobject.py -src/waylay/services/registry/models/plug_meta.py -src/waylay/services/registry/models/plug_metaobject.py -src/waylay/services/registry/models/plug_property.py -src/waylay/services/registry/models/plug_property_data_type.py -src/waylay/services/registry/models/plug_property_data_typeobject.py -src/waylay/services/registry/models/plug_property_format.py -src/waylay/services/registry/models/plug_property_format_type.py -src/waylay/services/registry/models/plug_property_format_typeobject.py -src/waylay/services/registry/models/plug_property_formatobject.py -src/waylay/services/registry/models/plug_propertyobject.py -src/waylay/services/registry/models/plug_response.py -src/waylay/services/registry/models/plug_response_v2.py -src/waylay/services/registry/models/plug_response_v2object.py -src/waylay/services/registry/models/plug_responseobject.py -src/waylay/services/registry/models/plug_type.py -src/waylay/services/registry/models/plug_type_query.py -src/waylay/services/registry/models/plug_type_queryobject.py -src/waylay/services/registry/models/plug_typeobject.py -src/waylay/services/registry/models/plug_versions_response_v2.py -src/waylay/services/registry/models/plug_versions_response_v2object.py -src/waylay/services/registry/models/plugobject.py -src/waylay/services/registry/models/post_model_job_async_response_v2.py -src/waylay/services/registry/models/post_model_job_async_response_v2object.py -src/waylay/services/registry/models/post_model_job_sync_response_v2.py -src/waylay/services/registry/models/post_model_job_sync_response_v2object.py -src/waylay/services/registry/models/post_plug_job_async_response_v2.py -src/waylay/services/registry/models/post_plug_job_async_response_v2object.py -src/waylay/services/registry/models/post_plug_job_sync_response_v2.py -src/waylay/services/registry/models/post_plug_job_sync_response_v2object.py -src/waylay/services/registry/models/post_webscript_job_async_response_v2.py -src/waylay/services/registry/models/post_webscript_job_async_response_v2object.py -src/waylay/services/registry/models/post_webscript_job_sync_response_v2.py -src/waylay/services/registry/models/post_webscript_job_sync_response_v2object.py -src/waylay/services/registry/models/provided_dependency.py -src/waylay/services/registry/models/provided_dependencyobject.py -src/waylay/services/registry/models/publish_function_query.py -src/waylay/services/registry/models/publish_function_queryobject.py -src/waylay/services/registry/models/py.typed -src/waylay/services/registry/models/queue_events.py -src/waylay/services/registry/models/queue_eventsobject.py -src/waylay/services/registry/models/rebuild_computed_response.py -src/waylay/services/registry/models/rebuild_computed_responseobject.py -src/waylay/services/registry/models/rebuild_model_async_response_v2.py -src/waylay/services/registry/models/rebuild_model_async_response_v2object.py -src/waylay/services/registry/models/rebuild_model_sync_response_v2.py -src/waylay/services/registry/models/rebuild_model_sync_response_v2object.py -src/waylay/services/registry/models/rebuild_plug_async_response_v2.py -src/waylay/services/registry/models/rebuild_plug_async_response_v2object.py -src/waylay/services/registry/models/rebuild_plug_sync_response_v2.py -src/waylay/services/registry/models/rebuild_plug_sync_response_v2object.py -src/waylay/services/registry/models/rebuild_policy.py -src/waylay/services/registry/models/rebuild_policyobject.py -src/waylay/services/registry/models/rebuild_query_params.py -src/waylay/services/registry/models/rebuild_query_paramsobject.py -src/waylay/services/registry/models/rebuild_query_v2.py -src/waylay/services/registry/models/rebuild_query_v2object.py -src/waylay/services/registry/models/rebuild_submitted_response.py -src/waylay/services/registry/models/rebuild_submitted_responseobject.py -src/waylay/services/registry/models/rebuild_webscript_async_response_v2.py -src/waylay/services/registry/models/rebuild_webscript_async_response_v2object.py -src/waylay/services/registry/models/rebuild_webscript_sync_response_v2.py -src/waylay/services/registry/models/rebuild_webscript_sync_response_v2object.py -src/waylay/services/registry/models/remove_function_query_v2.py -src/waylay/services/registry/models/remove_function_query_v2object.py -src/waylay/services/registry/models/remove_plug_query_v2.py -src/waylay/services/registry/models/remove_plug_query_v2object.py -src/waylay/services/registry/models/request_operation.py -src/waylay/services/registry/models/request_operationobject.py -src/waylay/services/registry/models/resource_limits.py -src/waylay/services/registry/models/resource_limitsobject.py -src/waylay/services/registry/models/root_page_response.py -src/waylay/services/registry/models/root_page_responseobject.py -src/waylay/services/registry/models/runtime_attributes.py -src/waylay/services/registry/models/runtime_attributesobject.py -src/waylay/services/registry/models/runtime_info.py -src/waylay/services/registry/models/runtime_infoobject.py -src/waylay/services/registry/models/runtime_name_query.py -src/waylay/services/registry/models/runtime_name_queryobject.py -src/waylay/services/registry/models/runtime_params.py -src/waylay/services/registry/models/runtime_paramsobject.py -src/waylay/services/registry/models/runtime_query.py -src/waylay/services/registry/models/runtime_queryobject.py -src/waylay/services/registry/models/runtime_reference.py -src/waylay/services/registry/models/runtime_referenceobject.py -src/waylay/services/registry/models/runtime_specification.py -src/waylay/services/registry/models/runtime_specificationobject.py -src/waylay/services/registry/models/runtime_summary.py -src/waylay/services/registry/models/runtime_summary_attrs.py -src/waylay/services/registry/models/runtime_summary_attrsobject.py -src/waylay/services/registry/models/runtime_summary_response.py -src/waylay/services/registry/models/runtime_summary_responseobject.py -src/waylay/services/registry/models/runtime_summaryobject.py -src/waylay/services/registry/models/runtime_version_and_path_params.py -src/waylay/services/registry/models/runtime_version_and_path_paramsobject.py -src/waylay/services/registry/models/runtime_version_info.py -src/waylay/services/registry/models/runtime_version_infoobject.py -src/waylay/services/registry/models/runtime_version_params.py -src/waylay/services/registry/models/runtime_version_paramsobject.py -src/waylay/services/registry/models/runtime_version_query.py -src/waylay/services/registry/models/runtime_version_queryobject.py -src/waylay/services/registry/models/runtime_version_response.py -src/waylay/services/registry/models/runtime_version_responseobject.py -src/waylay/services/registry/models/runtime_version_specification.py -src/waylay/services/registry/models/runtime_version_specificationobject.py -src/waylay/services/registry/models/runtime_version_status.py -src/waylay/services/registry/models/runtime_version_statusobject.py -src/waylay/services/registry/models/runtime_version_summary.py -src/waylay/services/registry/models/runtime_version_summaryobject.py -src/waylay/services/registry/models/scale.py -src/waylay/services/registry/models/scale1.py -src/waylay/services/registry/models/scale1object.py -src/waylay/services/registry/models/scale_args.py -src/waylay/services/registry/models/scale_argsobject.py -src/waylay/services/registry/models/scale_job_status.py -src/waylay/services/registry/models/scale_job_statusobject.py -src/waylay/services/registry/models/scaleobject.py -src/waylay/services/registry/models/schema_by_id_params.py -src/waylay/services/registry/models/schema_by_id_paramsobject.py -src/waylay/services/registry/models/schema_params.py -src/waylay/services/registry/models/schema_paramsobject.py -src/waylay/services/registry/models/semantic_version_range.py -src/waylay/services/registry/models/semantic_version_rangeobject.py -src/waylay/services/registry/models/status.py -src/waylay/services/registry/models/status_any.py -src/waylay/services/registry/models/status_anyobject.py -src/waylay/services/registry/models/status_filter.py -src/waylay/services/registry/models/status_filterobject.py -src/waylay/services/registry/models/status_include.py -src/waylay/services/registry/models/status_includeobject.py -src/waylay/services/registry/models/status_response.py -src/waylay/services/registry/models/status_responseobject.py -src/waylay/services/registry/models/statusobject.py -src/waylay/services/registry/models/stream_closing.py -src/waylay/services/registry/models/stream_closingobject.py -src/waylay/services/registry/models/stream_ready.py -src/waylay/services/registry/models/stream_readyobject.py -src/waylay/services/registry/models/supported_events.py -src/waylay/services/registry/models/supported_eventsobject.py -src/waylay/services/registry/models/tag.py -src/waylay/services/registry/models/tag_query.py -src/waylay/services/registry/models/tag_queryobject.py -src/waylay/services/registry/models/tagobject.py -src/waylay/services/registry/models/tags_filter.py -src/waylay/services/registry/models/tags_filterobject.py -src/waylay/services/registry/models/tags_query.py -src/waylay/services/registry/models/tags_queryobject.py -src/waylay/services/registry/models/timestamp_absolute.py -src/waylay/services/registry/models/timestamp_absoluteobject.py -src/waylay/services/registry/models/timestamp_age.py -src/waylay/services/registry/models/timestamp_ageobject.py -src/waylay/services/registry/models/timestamp_spec.py -src/waylay/services/registry/models/timestamp_specobject.py -src/waylay/services/registry/models/undeploy.py -src/waylay/services/registry/models/undeploy1.py -src/waylay/services/registry/models/undeploy1object.py -src/waylay/services/registry/models/undeploy_args.py -src/waylay/services/registry/models/undeploy_argsobject.py -src/waylay/services/registry/models/undeploy_job_status.py -src/waylay/services/registry/models/undeploy_job_statusobject.py -src/waylay/services/registry/models/undeploy_result.py -src/waylay/services/registry/models/undeploy_resultobject.py -src/waylay/services/registry/models/undeploy_submitted_response_v2.py -src/waylay/services/registry/models/undeploy_submitted_response_v2object.py -src/waylay/services/registry/models/undeployed_response_v2.py -src/waylay/services/registry/models/undeployed_response_v2object.py -src/waylay/services/registry/models/undeployobject.py -src/waylay/services/registry/models/unhealthy_invokable_webscript_error.py -src/waylay/services/registry/models/unhealthy_invokable_webscript_errorobject.py -src/waylay/services/registry/models/update_comment.py -src/waylay/services/registry/models/update_commentobject.py -src/waylay/services/registry/models/update_draft_query.py -src/waylay/services/registry/models/update_draft_queryobject.py -src/waylay/services/registry/models/update_metadata_request_v1.py -src/waylay/services/registry/models/update_metadata_request_v1object.py -src/waylay/services/registry/models/update_metadata_request_v2.py -src/waylay/services/registry/models/update_metadata_request_v2object.py -src/waylay/services/registry/models/update_record.py -src/waylay/services/registry/models/update_recordobject.py -src/waylay/services/registry/models/user_plug_meta.py -src/waylay/services/registry/models/user_plug_metaobject.py -src/waylay/services/registry/models/verify.py -src/waylay/services/registry/models/verify1.py -src/waylay/services/registry/models/verify1object.py -src/waylay/services/registry/models/verify_args.py -src/waylay/services/registry/models/verify_argsobject.py -src/waylay/services/registry/models/verify_job_status.py -src/waylay/services/registry/models/verify_job_statusobject.py -src/waylay/services/registry/models/verify_model_sync_response_v2.py -src/waylay/services/registry/models/verify_model_sync_response_v2object.py -src/waylay/services/registry/models/verify_plug_sync_response_v2.py -src/waylay/services/registry/models/verify_plug_sync_response_v2object.py -src/waylay/services/registry/models/verify_query_v1.py -src/waylay/services/registry/models/verify_query_v1object.py -src/waylay/services/registry/models/verify_result.py -src/waylay/services/registry/models/verify_resultobject.py -src/waylay/services/registry/models/verify_webscript_sync_response_v2.py -src/waylay/services/registry/models/verify_webscript_sync_response_v2object.py -src/waylay/services/registry/models/verifyobject.py -src/waylay/services/registry/models/version_includes.py -src/waylay/services/registry/models/version_includesobject.py -src/waylay/services/registry/models/versions_query.py -src/waylay/services/registry/models/versions_query_v2.py -src/waylay/services/registry/models/versions_query_v2object.py -src/waylay/services/registry/models/versions_queryobject.py -src/waylay/services/registry/models/versions_response_v2.py -src/waylay/services/registry/models/versions_response_v2object.py -src/waylay/services/registry/models/waiting_children_event_sse.py -src/waylay/services/registry/models/waiting_children_event_sseobject.py -src/waylay/services/registry/models/waiting_event_data.py -src/waylay/services/registry/models/waiting_event_dataobject.py -src/waylay/services/registry/models/waiting_event_sse.py -src/waylay/services/registry/models/waiting_event_sseobject.py -src/waylay/services/registry/models/webscript.py -src/waylay/services/registry/models/webscript1.py -src/waylay/services/registry/models/webscript1object.py -src/waylay/services/registry/models/webscript2.py -src/waylay/services/registry/models/webscript2object.py -src/waylay/services/registry/models/webscript_latest_version_query_v2.py -src/waylay/services/registry/models/webscript_latest_version_query_v2object.py -src/waylay/services/registry/models/webscript_latest_versions_query_v1.py -src/waylay/services/registry/models/webscript_latest_versions_query_v1object.py -src/waylay/services/registry/models/webscript_latest_versions_query_v2.py -src/waylay/services/registry/models/webscript_latest_versions_query_v2object.py -src/waylay/services/registry/models/webscript_manifest.py -src/waylay/services/registry/models/webscript_manifestobject.py -src/waylay/services/registry/models/webscript_response.py -src/waylay/services/registry/models/webscript_response_v2.py -src/waylay/services/registry/models/webscript_response_v2object.py -src/waylay/services/registry/models/webscript_response_with_invoke_link_v2.py -src/waylay/services/registry/models/webscript_response_with_invoke_link_v2object.py -src/waylay/services/registry/models/webscript_responseobject.py -src/waylay/services/registry/models/webscript_versions_response_v2.py -src/waylay/services/registry/models/webscript_versions_response_v2object.py -src/waylay/services/registry/models/webscriptobject.py -src/waylay/services/registry/models/with_asset_hal_link.py -src/waylay/services/registry/models/with_asset_hal_linkobject.py -src/waylay/services/registry/models/with_entity_attributes.py -src/waylay/services/registry/models/with_entity_attributesobject.py -src/waylay/services/registry/models/with_limit.py -src/waylay/services/registry/models/with_limitobject.py -src/waylay/services/registry/models/with_paging.py -src/waylay/services/registry/models/with_pagingobject.py -src/waylay/services/registry/queries/__init__.py -src/waylay/services/registry/queries/default_api.py -src/waylay/services/registry/queries/jobs_api.py -src/waylay/services/registry/queries/model_functions_api.py -src/waylay/services/registry/queries/plug_functions_api.py -src/waylay/services/registry/queries/py.typed -src/waylay/services/registry/queries/runtimes_api.py -src/waylay/services/registry/queries/schemas_api.py -src/waylay/services/registry/queries/webscript_functions_api.py diff --git a/waylay_registry_types/.openapi-generator/VERSION b/waylay_registry_types/.openapi-generator/VERSION deleted file mode 100644 index 4b49d9bb..00000000 --- a/waylay_registry_types/.openapi-generator/VERSION +++ /dev/null @@ -1 +0,0 @@ -7.2.0 \ No newline at end of file