diff --git a/.apigentools-info b/.apigentools-info index 6b88a255..4c45899d 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -3,8 +3,8 @@ "info_version": "2", "spec_versions": { "v1": { - "apigentools_version": "1.6.5", - "regenerated": "2023-09-05 20:33:50.273864", + "apigentools_version": "1.6.6", + "regenerated": "2023-12-30 12:32:29.313885", "spec_repo_commit": null } } diff --git a/README.md b/README.md index 9aaaed1e..a3d39ead 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Pollination Server OpenAPI Definition This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.43.0 +- API version: 0.47.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://pollination.cloud](https://pollination.cloud) diff --git a/docs/APITokensApi.md b/docs/APITokensApi.md index 5ebac6ee..0ffa2e6e 100644 --- a/docs/APITokensApi.md +++ b/docs/APITokensApi.md @@ -19,53 +19,6 @@ Create a new API token ### Example -* Api Key Authentication (APIKeyAuth): -```python -from __future__ import print_function -import time -import pollination_sdk -from pollination_sdk.rest import ApiException -from pprint import pprint - -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - -# Retrieve a temporary Acces Token (JWT) using your API token -API_TOKEN = 'some-token-string' - -auth = pollination_sdk.UserApi() -api_token = pollination_sdk.LoginDto( - api_token=API_TOKEN -) - -auth_response = auth.login(api_token) - -# Configure Bearer authorization (JWT): JWTAuth -configuration = pollination_sdk.Configuration( - access_token=auth_response.access_token -) - -# Enter a context with an instance of the API client -with pollination_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = pollination_sdk.APITokensApi(api_client) - api_token_create = pollination_sdk.APITokenCreate() # APITokenCreate | - - try: - # Create a new API token - api_response = api_instance.create_token(api_token_create) - pprint(api_response) - except ApiException as e: - print("Exception when calling APITokensApi->create_token: %s\n" % e) -``` - * Bearer (JWT) Authentication (JWTAuth): ```python from __future__ import print_function @@ -74,16 +27,6 @@ import pollination_sdk from pollination_sdk.rest import ApiException from pprint import pprint -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - # Retrieve a temporary Acces Token (JWT) using your API token API_TOKEN = 'some-token-string' @@ -125,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[APIKeyAuth](../README.md#APIKeyAuth), [JWTAuth](../README.md#JWTAuth) +[JWTAuth](../README.md#JWTAuth) ### HTTP request headers @@ -149,53 +92,6 @@ Delete a token ### Example -* Api Key Authentication (APIKeyAuth): -```python -from __future__ import print_function -import time -import pollination_sdk -from pollination_sdk.rest import ApiException -from pprint import pprint - -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - -# Retrieve a temporary Acces Token (JWT) using your API token -API_TOKEN = 'some-token-string' - -auth = pollination_sdk.UserApi() -api_token = pollination_sdk.LoginDto( - api_token=API_TOKEN -) - -auth_response = auth.login(api_token) - -# Configure Bearer authorization (JWT): JWTAuth -configuration = pollination_sdk.Configuration( - access_token=auth_response.access_token -) - -# Enter a context with an instance of the API client -with pollination_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = pollination_sdk.APITokensApi(api_client) - token_id = 'token_id_example' # str | - - try: - # Delete an API Token - api_response = api_instance.delete_token(token_id) - pprint(api_response) - except ApiException as e: - print("Exception when calling APITokensApi->delete_token: %s\n" % e) -``` - * Bearer (JWT) Authentication (JWTAuth): ```python from __future__ import print_function @@ -204,16 +100,6 @@ import pollination_sdk from pollination_sdk.rest import ApiException from pprint import pprint -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - # Retrieve a temporary Acces Token (JWT) using your API token API_TOKEN = 'some-token-string' @@ -255,7 +141,7 @@ Name | Type | Description | Notes ### Authorization -[APIKeyAuth](../README.md#APIKeyAuth), [JWTAuth](../README.md#JWTAuth) +[JWTAuth](../README.md#JWTAuth) ### HTTP request headers @@ -279,54 +165,6 @@ List API tokens for the authenticated user ### Example -* Api Key Authentication (APIKeyAuth): -```python -from __future__ import print_function -import time -import pollination_sdk -from pollination_sdk.rest import ApiException -from pprint import pprint - -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - -# Retrieve a temporary Acces Token (JWT) using your API token -API_TOKEN = 'some-token-string' - -auth = pollination_sdk.UserApi() -api_token = pollination_sdk.LoginDto( - api_token=API_TOKEN -) - -auth_response = auth.login(api_token) - -# Configure Bearer authorization (JWT): JWTAuth -configuration = pollination_sdk.Configuration( - access_token=auth_response.access_token -) - -# Enter a context with an instance of the API client -with pollination_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = pollination_sdk.APITokensApi(api_client) - page = 1 # int | Page number starting from 1 (optional) (default to 1) -per_page = 25 # int | Number of items per page (optional) (default to 25) - - try: - # List user API tokens - api_response = api_instance.list_tokens(page=page, per_page=per_page) - pprint(api_response) - except ApiException as e: - print("Exception when calling APITokensApi->list_tokens: %s\n" % e) -``` - * Bearer (JWT) Authentication (JWTAuth): ```python from __future__ import print_function @@ -335,16 +173,6 @@ import pollination_sdk from pollination_sdk.rest import ApiException from pprint import pprint -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - # Retrieve a temporary Acces Token (JWT) using your API token API_TOKEN = 'some-token-string' @@ -388,7 +216,7 @@ Name | Type | Description | Notes ### Authorization -[APIKeyAuth](../README.md#APIKeyAuth), [JWTAuth](../README.md#JWTAuth) +[JWTAuth](../README.md#JWTAuth) ### HTTP request headers @@ -412,53 +240,6 @@ Regenerate a token ### Example -* Api Key Authentication (APIKeyAuth): -```python -from __future__ import print_function -import time -import pollination_sdk -from pollination_sdk.rest import ApiException -from pprint import pprint - -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - -# Retrieve a temporary Acces Token (JWT) using your API token -API_TOKEN = 'some-token-string' - -auth = pollination_sdk.UserApi() -api_token = pollination_sdk.LoginDto( - api_token=API_TOKEN -) - -auth_response = auth.login(api_token) - -# Configure Bearer authorization (JWT): JWTAuth -configuration = pollination_sdk.Configuration( - access_token=auth_response.access_token -) - -# Enter a context with an instance of the API client -with pollination_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = pollination_sdk.APITokensApi(api_client) - token_id = 'token_id_example' # str | - - try: - # Regenerate an API token - api_response = api_instance.regenerate_token(token_id) - pprint(api_response) - except ApiException as e: - print("Exception when calling APITokensApi->regenerate_token: %s\n" % e) -``` - * Bearer (JWT) Authentication (JWTAuth): ```python from __future__ import print_function @@ -467,16 +248,6 @@ import pollination_sdk from pollination_sdk.rest import ApiException from pprint import pprint -# Configure API key authorization: APIKeyAuth -configuration = pollination_sdk.Configuration( - host = "http://localhost", - api_key = { - 'APIKeyAuth': 'YOUR_API_KEY' - } -) -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' - # Retrieve a temporary Acces Token (JWT) using your API token API_TOKEN = 'some-token-string' @@ -518,7 +289,7 @@ Name | Type | Description | Notes ### Authorization -[APIKeyAuth](../README.md#APIKeyAuth), [JWTAuth](../README.md#JWTAuth) +[JWTAuth](../README.md#JWTAuth) ### HTTP request headers diff --git a/docs/Application.md b/docs/Application.md index 04e6d8a4..5ebf3016 100644 --- a/docs/Application.md +++ b/docs/Application.md @@ -5,6 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **deployment_config** | [**DeploymentConfig**](DeploymentConfig.md) | The deployment configuration for the application | [optional] **description** | **str** | A description of the application | [optional] [default to ''] +**has_been_deployed** | **bool** | Whether or not the application has been deployed | **id** | **str** | The application ID | **image** | **str** | An image associated with the application | [optional] [default to 'https://picsum.photos/400'] **is_paid** | **bool** | Whether or not the application is paid | [optional] [default to False] @@ -17,6 +18,7 @@ Name | Type | Description | Notes **sdk** | [**SDKEnum**](SDKEnum.md) | The SDK used to build the application | [optional] **slug** | **str** | The application name in slug format | **source** | **str** | A link to the source code of the application | [optional] +**url** | **str** | The URL of the application deployment | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/ApplicationsApi.md b/docs/ApplicationsApi.md index 981d3fe4..4863f8ea 100644 --- a/docs/ApplicationsApi.md +++ b/docs/ApplicationsApi.md @@ -1108,7 +1108,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_applications** -> ApplicationList list_applications(search=search, ids=ids, names=names, owner=owner, public=public, permissions=permissions, keywords=keywords, sort_by=sort_by, sort_order=sort_order, page=page, per_page=per_page) +> ApplicationList list_applications(search=search, ids=ids, names=names, owner=owner, public=public, deployed=deployed, permissions=permissions, keywords=keywords, sort_by=sort_by, sort_order=sort_order, page=page, per_page=per_page) List Applications @@ -1156,6 +1156,7 @@ ids = [] # list[str] | The ID of a application to search for (optional) (default names = [] # list[str] | The name of the application (optional) (default to []) owner = [] # list[str] | Owner of the application (optional) (default to []) public = True # bool | Boolean check for public/private applications (optional) +deployed = True # bool | Filter by deployed applications (optional) permissions = [] # list[str] | Filter by permission on given resource (optional) (default to []) keywords = [] # list[str] | Filter by keywords on given resource (optional) (default to []) sort_by = pollination_sdk.ApplicationSortKey() # ApplicationSortKey | Key to sort the list by (optional) @@ -1165,7 +1166,7 @@ per_page = 25 # int | Number of items per page (optional) (default to 25) try: # List Applications - api_response = api_instance.list_applications(search=search, ids=ids, names=names, owner=owner, public=public, permissions=permissions, keywords=keywords, sort_by=sort_by, sort_order=sort_order, page=page, per_page=per_page) + api_response = api_instance.list_applications(search=search, ids=ids, names=names, owner=owner, public=public, deployed=deployed, permissions=permissions, keywords=keywords, sort_by=sort_by, sort_order=sort_order, page=page, per_page=per_page) pprint(api_response) except ApiException as e: print("Exception when calling ApplicationsApi->list_applications: %s\n" % e) @@ -1213,6 +1214,7 @@ ids = [] # list[str] | The ID of a application to search for (optional) (default names = [] # list[str] | The name of the application (optional) (default to []) owner = [] # list[str] | Owner of the application (optional) (default to []) public = True # bool | Boolean check for public/private applications (optional) +deployed = True # bool | Filter by deployed applications (optional) permissions = [] # list[str] | Filter by permission on given resource (optional) (default to []) keywords = [] # list[str] | Filter by keywords on given resource (optional) (default to []) sort_by = pollination_sdk.ApplicationSortKey() # ApplicationSortKey | Key to sort the list by (optional) @@ -1222,7 +1224,7 @@ per_page = 25 # int | Number of items per page (optional) (default to 25) try: # List Applications - api_response = api_instance.list_applications(search=search, ids=ids, names=names, owner=owner, public=public, permissions=permissions, keywords=keywords, sort_by=sort_by, sort_order=sort_order, page=page, per_page=per_page) + api_response = api_instance.list_applications(search=search, ids=ids, names=names, owner=owner, public=public, deployed=deployed, permissions=permissions, keywords=keywords, sort_by=sort_by, sort_order=sort_order, page=page, per_page=per_page) pprint(api_response) except ApiException as e: print("Exception when calling ApplicationsApi->list_applications: %s\n" % e) @@ -1237,6 +1239,7 @@ Name | Type | Description | Notes **names** | [**list[str]**](str.md)| The name of the application | [optional] [default to []] **owner** | [**list[str]**](str.md)| Owner of the application | [optional] [default to []] **public** | **bool**| Boolean check for public/private applications | [optional] + **deployed** | **bool**| Filter by deployed applications | [optional] **permissions** | [**list[str]**](str.md)| Filter by permission on given resource | [optional] [default to []] **keywords** | [**list[str]**](str.md)| Filter by keywords on given resource | [optional] [default to []] **sort_by** | [**ApplicationSortKey**](.md)| Key to sort the list by | [optional] diff --git a/docs/JobsApi.md b/docs/JobsApi.md index 86293b88..fa29cbbb 100644 --- a/docs/JobsApi.md +++ b/docs/JobsApi.md @@ -708,7 +708,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_jobs** -> CloudJobList list_jobs(owner, name, ids=ids, status=status, page=page, per_page=per_page) +> CloudJobList list_jobs(owner, name, ids=ids, status=status, created_after=created_after, created_before=created_before, page=page, per_page=per_page) List Jobs @@ -757,12 +757,14 @@ with pollination_sdk.ApiClient(configuration) as api_client: name = 'name_example' # str | ids = ['ids_example'] # list[str] | (optional) status = pollination_sdk.JobStatusEnum() # JobStatusEnum | (optional) +created_after = '2013-10-20T19:20:30+01:00' # datetime | (optional) +created_before = '2013-10-20T19:20:30+01:00' # datetime | (optional) page = 1 # int | Page number starting from 1 (optional) (default to 1) per_page = 25 # int | Number of items per page (optional) (default to 25) try: # List Jobs - api_response = api_instance.list_jobs(owner, name, ids=ids, status=status, page=page, per_page=per_page) + api_response = api_instance.list_jobs(owner, name, ids=ids, status=status, created_after=created_after, created_before=created_before, page=page, per_page=per_page) pprint(api_response) except ApiException as e: print("Exception when calling JobsApi->list_jobs: %s\n" % e) @@ -809,12 +811,14 @@ with pollination_sdk.ApiClient(configuration) as api_client: name = 'name_example' # str | ids = ['ids_example'] # list[str] | (optional) status = pollination_sdk.JobStatusEnum() # JobStatusEnum | (optional) +created_after = '2013-10-20T19:20:30+01:00' # datetime | (optional) +created_before = '2013-10-20T19:20:30+01:00' # datetime | (optional) page = 1 # int | Page number starting from 1 (optional) (default to 1) per_page = 25 # int | Number of items per page (optional) (default to 25) try: # List Jobs - api_response = api_instance.list_jobs(owner, name, ids=ids, status=status, page=page, per_page=per_page) + api_response = api_instance.list_jobs(owner, name, ids=ids, status=status, created_after=created_after, created_before=created_before, page=page, per_page=per_page) pprint(api_response) except ApiException as e: print("Exception when calling JobsApi->list_jobs: %s\n" % e) @@ -828,6 +832,8 @@ Name | Type | Description | Notes **name** | **str**| | **ids** | [**list[str]**](str.md)| | [optional] **status** | [**JobStatusEnum**](.md)| | [optional] + **created_after** | **datetime**| | [optional] + **created_before** | **datetime**| | [optional] **page** | **int**| Page number starting from 1 | [optional] [default to 1] **per_page** | **int**| Number of items per page | [optional] [default to 25] diff --git a/docs/OrgsApi.md b/docs/OrgsApi.md index e189bebd..e378b888 100644 --- a/docs/OrgsApi.md +++ b/docs/OrgsApi.md @@ -556,6 +556,7 @@ Retrieve a org's members ### Example +* Api Key Authentication (APIKeyAuth): ```python from __future__ import print_function import time @@ -563,8 +564,80 @@ import pollination_sdk from pollination_sdk.rest import ApiException from pprint import pprint +# Configure API key authorization: APIKeyAuth +configuration = pollination_sdk.Configuration( + host = "http://localhost", + api_key = { + 'APIKeyAuth': 'YOUR_API_KEY' + } +) +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' + +# Retrieve a temporary Acces Token (JWT) using your API token +API_TOKEN = 'some-token-string' + +auth = pollination_sdk.UserApi() +api_token = pollination_sdk.LoginDto( + api_token=API_TOKEN +) + +auth_response = auth.login(api_token) + +# Configure Bearer authorization (JWT): JWTAuth +configuration = pollination_sdk.Configuration( + access_token=auth_response.access_token +) + # Enter a context with an instance of the API client -with pollination_sdk.ApiClient() as api_client: +with pollination_sdk.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = pollination_sdk.OrgsApi(api_client) + name = 'name_example' # str | + + try: + # List organization members + api_response = api_instance.get_org_members(name) + pprint(api_response) + except ApiException as e: + print("Exception when calling OrgsApi->get_org_members: %s\n" % e) +``` + +* Bearer (JWT) Authentication (JWTAuth): +```python +from __future__ import print_function +import time +import pollination_sdk +from pollination_sdk.rest import ApiException +from pprint import pprint + +# Configure API key authorization: APIKeyAuth +configuration = pollination_sdk.Configuration( + host = "http://localhost", + api_key = { + 'APIKeyAuth': 'YOUR_API_KEY' + } +) +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' + +# Retrieve a temporary Acces Token (JWT) using your API token +API_TOKEN = 'some-token-string' + +auth = pollination_sdk.UserApi() +api_token = pollination_sdk.LoginDto( + api_token=API_TOKEN +) + +auth_response = auth.login(api_token) + +# Configure Bearer authorization (JWT): JWTAuth +configuration = pollination_sdk.Configuration( + access_token=auth_response.access_token +) + +# Enter a context with an instance of the API client +with pollination_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = pollination_sdk.OrgsApi(api_client) name = 'name_example' # str | @@ -589,7 +662,7 @@ Name | Type | Description | Notes ### Authorization -No authorization required +[APIKeyAuth](../README.md#APIKeyAuth), [JWTAuth](../README.md#JWTAuth) ### HTTP request headers diff --git a/docs/TeamsApi.md b/docs/TeamsApi.md index ea20b7bc..2c94e085 100644 --- a/docs/TeamsApi.md +++ b/docs/TeamsApi.md @@ -431,6 +431,7 @@ Retrieve a tean's members ### Example +* Api Key Authentication (APIKeyAuth): ```python from __future__ import print_function import time @@ -438,8 +439,81 @@ import pollination_sdk from pollination_sdk.rest import ApiException from pprint import pprint +# Configure API key authorization: APIKeyAuth +configuration = pollination_sdk.Configuration( + host = "http://localhost", + api_key = { + 'APIKeyAuth': 'YOUR_API_KEY' + } +) +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' + +# Retrieve a temporary Acces Token (JWT) using your API token +API_TOKEN = 'some-token-string' + +auth = pollination_sdk.UserApi() +api_token = pollination_sdk.LoginDto( + api_token=API_TOKEN +) + +auth_response = auth.login(api_token) + +# Configure Bearer authorization (JWT): JWTAuth +configuration = pollination_sdk.Configuration( + access_token=auth_response.access_token +) + # Enter a context with an instance of the API client -with pollination_sdk.ApiClient() as api_client: +with pollination_sdk.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = pollination_sdk.TeamsApi(api_client) + org_name = 'org_name_example' # str | +team_slug = 'team_slug_example' # str | + + try: + # List team members + api_response = api_instance.get_org_team_members(org_name, team_slug) + pprint(api_response) + except ApiException as e: + print("Exception when calling TeamsApi->get_org_team_members: %s\n" % e) +``` + +* Bearer (JWT) Authentication (JWTAuth): +```python +from __future__ import print_function +import time +import pollination_sdk +from pollination_sdk.rest import ApiException +from pprint import pprint + +# Configure API key authorization: APIKeyAuth +configuration = pollination_sdk.Configuration( + host = "http://localhost", + api_key = { + 'APIKeyAuth': 'YOUR_API_KEY' + } +) +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['APIKeyAuth'] = 'Bearer' + +# Retrieve a temporary Acces Token (JWT) using your API token +API_TOKEN = 'some-token-string' + +auth = pollination_sdk.UserApi() +api_token = pollination_sdk.LoginDto( + api_token=API_TOKEN +) + +auth_response = auth.login(api_token) + +# Configure Bearer authorization (JWT): JWTAuth +configuration = pollination_sdk.Configuration( + access_token=auth_response.access_token +) + +# Enter a context with an instance of the API client +with pollination_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = pollination_sdk.TeamsApi(api_client) org_name = 'org_name_example' # str | @@ -466,7 +540,7 @@ Name | Type | Description | Notes ### Authorization -No authorization required +[APIKeyAuth](../README.md#APIKeyAuth), [JWTAuth](../README.md#JWTAuth) ### HTTP request headers diff --git a/pollination_sdk/__init__.py b/pollination_sdk/__init__.py index 02e3559d..93539226 100644 --- a/pollination_sdk/__init__.py +++ b/pollination_sdk/__init__.py @@ -7,7 +7,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "0.43.0" +__version__ = "0.47.0" # import apis into sdk package from pollination_sdk.api.api_tokens_api import APITokensApi diff --git a/pollination_sdk/api/accounts_api.py b/pollination_sdk/api/accounts_api.py index cffdea28..a310a9a7 100644 --- a/pollination_sdk/api/accounts_api.py +++ b/pollination_sdk/api/accounts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/api_tokens_api.py b/pollination_sdk/api/api_tokens_api.py index afd2adcd..546b3574 100644 --- a/pollination_sdk/api/api_tokens_api.py +++ b/pollination_sdk/api/api_tokens_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -153,7 +153,7 @@ def create_token_with_http_info(self, api_token_create, **kwargs): # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting - auth_settings = ['APIKeyAuth', 'JWTAuth'] # noqa: E501 + auth_settings = ['JWTAuth'] # noqa: E501 return self.api_client.call_api( '/tokens', 'POST', @@ -284,7 +284,7 @@ def delete_token_with_http_info(self, token_id, **kwargs): # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting - auth_settings = ['APIKeyAuth', 'JWTAuth'] # noqa: E501 + auth_settings = ['JWTAuth'] # noqa: E501 return self.api_client.call_api( '/tokens/{token_id}', 'DELETE', @@ -422,7 +422,7 @@ def list_tokens_with_http_info(self, **kwargs): # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting - auth_settings = ['APIKeyAuth', 'JWTAuth'] # noqa: E501 + auth_settings = ['JWTAuth'] # noqa: E501 return self.api_client.call_api( '/tokens', 'GET', @@ -553,7 +553,7 @@ def regenerate_token_with_http_info(self, token_id, **kwargs): # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting - auth_settings = ['APIKeyAuth', 'JWTAuth'] # noqa: E501 + auth_settings = ['JWTAuth'] # noqa: E501 return self.api_client.call_api( '/tokens/{token_id}', 'PUT', diff --git a/pollination_sdk/api/applications_api.py b/pollination_sdk/api/applications_api.py index 1449f7f8..a12b0755 100644 --- a/pollination_sdk/api/applications_api.py +++ b/pollination_sdk/api/applications_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -1258,6 +1258,8 @@ def list_applications(self, **kwargs): # noqa: E501 :type owner: list[str] :param public: Boolean check for public/private applications :type public: bool + :param deployed: Filter by deployed applications + :type deployed: bool :param permissions: Filter by permission on given resource :type permissions: list[str] :param keywords: Filter by keywords on given resource @@ -1307,6 +1309,8 @@ def list_applications_with_http_info(self, **kwargs): # noqa: E501 :type owner: list[str] :param public: Boolean check for public/private applications :type public: bool + :param deployed: Filter by deployed applications + :type deployed: bool :param permissions: Filter by permission on given resource :type permissions: list[str] :param keywords: Filter by keywords on given resource @@ -1350,6 +1354,7 @@ def list_applications_with_http_info(self, **kwargs): # noqa: E501 'names', 'owner', 'public', + 'deployed', 'permissions', 'keywords', 'sort_by', @@ -1398,6 +1403,8 @@ def list_applications_with_http_info(self, **kwargs): # noqa: E501 collection_formats['owner'] = 'multi' # noqa: E501 if 'public' in local_var_params and local_var_params['public'] is not None: # noqa: E501 query_params.append(('public', local_var_params['public'])) # noqa: E501 + if 'deployed' in local_var_params and local_var_params['deployed'] is not None: # noqa: E501 + query_params.append(('deployed', local_var_params['deployed'])) # noqa: E501 if 'permissions' in local_var_params and local_var_params['permissions'] is not None: # noqa: E501 query_params.append(('permissions', local_var_params['permissions'])) # noqa: E501 collection_formats['permissions'] = 'multi' # noqa: E501 diff --git a/pollination_sdk/api/artifacts_api.py b/pollination_sdk/api/artifacts_api.py index c4742fd7..0868c544 100644 --- a/pollination_sdk/api/artifacts_api.py +++ b/pollination_sdk/api/artifacts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/jobs_api.py b/pollination_sdk/api/jobs_api.py index 48a2eb47..145c192c 100644 --- a/pollination_sdk/api/jobs_api.py +++ b/pollination_sdk/api/jobs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -845,6 +845,10 @@ def list_jobs(self, owner, name, **kwargs): # noqa: E501 :type ids: list[str] :param status: :type status: JobStatusEnum + :param created_after: + :type created_after: datetime + :param created_before: + :type created_before: datetime :param page: Page number starting from 1 :type page: int :param per_page: Number of items per page @@ -885,6 +889,10 @@ def list_jobs_with_http_info(self, owner, name, **kwargs): # noqa: E501 :type ids: list[str] :param status: :type status: JobStatusEnum + :param created_after: + :type created_after: datetime + :param created_before: + :type created_before: datetime :param page: Page number starting from 1 :type page: int :param per_page: Number of items per page @@ -919,6 +927,8 @@ def list_jobs_with_http_info(self, owner, name, **kwargs): # noqa: E501 'name', 'ids', 'status', + 'created_after', + 'created_before', 'page', 'per_page' ] @@ -967,6 +977,10 @@ def list_jobs_with_http_info(self, owner, name, **kwargs): # noqa: E501 collection_formats['ids'] = 'multi' # noqa: E501 if 'status' in local_var_params and local_var_params['status'] is not None: # noqa: E501 query_params.append(('status', local_var_params['status'])) # noqa: E501 + if 'created_after' in local_var_params and local_var_params['created_after'] is not None: # noqa: E501 + query_params.append(('created_after', local_var_params['created_after'])) # noqa: E501 + if 'created_before' in local_var_params and local_var_params['created_before'] is not None: # noqa: E501 + query_params.append(('created_before', local_var_params['created_before'])) # noqa: E501 if 'page' in local_var_params and local_var_params['page'] is not None: # noqa: E501 query_params.append(('page', local_var_params['page'])) # noqa: E501 if 'per_page' in local_var_params and local_var_params['per_page'] is not None: # noqa: E501 diff --git a/pollination_sdk/api/licenses_api.py b/pollination_sdk/api/licenses_api.py index 77e444ef..7d0d1091 100644 --- a/pollination_sdk/api/licenses_api.py +++ b/pollination_sdk/api/licenses_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/orgs_api.py b/pollination_sdk/api/orgs_api.py index 2532245d..df534ca2 100644 --- a/pollination_sdk/api/orgs_api.py +++ b/pollination_sdk/api/orgs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -688,7 +688,7 @@ def get_org_members_with_http_info(self, name, **kwargs): # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting - auth_settings = [] # noqa: E501 + auth_settings = ['APIKeyAuth', 'JWTAuth'] # noqa: E501 return self.api_client.call_api( '/orgs/{name}/members', 'GET', diff --git a/pollination_sdk/api/plugins_api.py b/pollination_sdk/api/plugins_api.py index 217ef139..a8ab04b1 100644 --- a/pollination_sdk/api/plugins_api.py +++ b/pollination_sdk/api/plugins_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/projects_api.py b/pollination_sdk/api/projects_api.py index f4e12de2..4525067f 100644 --- a/pollination_sdk/api/projects_api.py +++ b/pollination_sdk/api/projects_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/recipes_api.py b/pollination_sdk/api/recipes_api.py index 6a67bba9..2e854096 100644 --- a/pollination_sdk/api/recipes_api.py +++ b/pollination_sdk/api/recipes_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/registries_api.py b/pollination_sdk/api/registries_api.py index 3ef9e77f..19bab512 100644 --- a/pollination_sdk/api/registries_api.py +++ b/pollination_sdk/api/registries_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/runs_api.py b/pollination_sdk/api/runs_api.py index 68eee700..42409d3a 100644 --- a/pollination_sdk/api/runs_api.py +++ b/pollination_sdk/api/runs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/subscription_plans_api.py b/pollination_sdk/api/subscription_plans_api.py index 8a4df753..fc1dc4f9 100644 --- a/pollination_sdk/api/subscription_plans_api.py +++ b/pollination_sdk/api/subscription_plans_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/subscriptions_api.py b/pollination_sdk/api/subscriptions_api.py index 783e0aa4..f410048a 100644 --- a/pollination_sdk/api/subscriptions_api.py +++ b/pollination_sdk/api/subscriptions_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/teams_api.py b/pollination_sdk/api/teams_api.py index 3684a622..2a699197 100644 --- a/pollination_sdk/api/teams_api.py +++ b/pollination_sdk/api/teams_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -601,7 +601,7 @@ def get_org_team_members_with_http_info(self, org_name, team_slug, **kwargs): # ['application/json']) # noqa: E501 # Authentication setting - auth_settings = [] # noqa: E501 + auth_settings = ['APIKeyAuth', 'JWTAuth'] # noqa: E501 return self.api_client.call_api( '/orgs/{org_name}/teams/{team_slug}/members', 'GET', diff --git a/pollination_sdk/api/user_api.py b/pollination_sdk/api/user_api.py index a099aa70..3292bc03 100644 --- a/pollination_sdk/api/user_api.py +++ b/pollination_sdk/api/user_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/users_api.py b/pollination_sdk/api/users_api.py index e75774db..85257cbb 100644 --- a/pollination_sdk/api/users_api.py +++ b/pollination_sdk/api/users_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api_client.py b/pollination_sdk/api_client.py index 70cad58a..d6112054 100644 --- a/pollination_sdk/api_client.py +++ b/pollination_sdk/api_client.py @@ -4,7 +4,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'pollination/0.43.0/python' + self.user_agent = 'pollination/0.47.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/pollination_sdk/configuration.py b/pollination_sdk/configuration.py index 9b8f12fb..a00c9a77 100644 --- a/pollination_sdk/configuration.py +++ b/pollination_sdk/configuration.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -411,7 +411,7 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.43.0\n"\ + "Version of the API: 0.47.0\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/pollination_sdk/exceptions.py b/pollination_sdk/exceptions.py index 0c1b1eec..7e9fd5e3 100644 --- a/pollination_sdk/exceptions.py +++ b/pollination_sdk/exceptions.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/__init__.py b/pollination_sdk/models/__init__.py index 5c82e7fb..873ee8ff 100644 --- a/pollination_sdk/models/__init__.py +++ b/pollination_sdk/models/__init__.py @@ -6,7 +6,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/accessor.py b/pollination_sdk/models/accessor.py index ae9f391b..81b6233e 100644 --- a/pollination_sdk/models/accessor.py +++ b/pollination_sdk/models/accessor.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/account_public.py b/pollination_sdk/models/account_public.py index 32519427..6d6f1b14 100644 --- a/pollination_sdk/models/account_public.py +++ b/pollination_sdk/models/account_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/account_type.py b/pollination_sdk/models/account_type.py index c522bed7..441f06de 100644 --- a/pollination_sdk/models/account_type.py +++ b/pollination_sdk/models/account_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/activation.py b/pollination_sdk/models/activation.py index 2db31490..97ad7541 100644 --- a/pollination_sdk/models/activation.py +++ b/pollination_sdk/models/activation.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/activation_list.py b/pollination_sdk/models/activation_list.py index 950f56fe..0b46dd51 100644 --- a/pollination_sdk/models/activation_list.py +++ b/pollination_sdk/models/activation_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token.py b/pollination_sdk/models/api_token.py index d87db713..6233ff40 100644 --- a/pollination_sdk/models/api_token.py +++ b/pollination_sdk/models/api_token.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token_create.py b/pollination_sdk/models/api_token_create.py index 54f9a942..c4fa562a 100644 --- a/pollination_sdk/models/api_token_create.py +++ b/pollination_sdk/models/api_token_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token_list.py b/pollination_sdk/models/api_token_list.py index 5cde9561..06e4e58b 100644 --- a/pollination_sdk/models/api_token_list.py +++ b/pollination_sdk/models/api_token_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token_private.py b/pollination_sdk/models/api_token_private.py index ade138cf..c8c3390b 100644 --- a/pollination_sdk/models/api_token_private.py +++ b/pollination_sdk/models/api_token_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application.py b/pollination_sdk/models/application.py index c6ef2f1b..7ddb5ea9 100644 --- a/pollination_sdk/models/application.py +++ b/pollination_sdk/models/application.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -36,6 +36,7 @@ class Application(object): openapi_types = { 'deployment_config': 'DeploymentConfig', 'description': 'str', + 'has_been_deployed': 'bool', 'id': 'str', 'image': 'str', 'is_paid': 'bool', @@ -47,12 +48,14 @@ class Application(object): 'public': 'bool', 'sdk': 'SDKEnum', 'slug': 'str', - 'source': 'str' + 'source': 'str', + 'url': 'str' } attribute_map = { 'deployment_config': 'deployment_config', 'description': 'description', + 'has_been_deployed': 'has_been_deployed', 'id': 'id', 'image': 'image', 'is_paid': 'is_paid', @@ -64,10 +67,11 @@ class Application(object): 'public': 'public', 'sdk': 'sdk', 'slug': 'slug', - 'source': 'source' + 'source': 'source', + 'url': 'url' } - def __init__(self, deployment_config=None, description='', id=None, image='https://picsum.photos/400', is_paid=False, keywords=[], license=None, name=None, owner=None, permissions=None, public=True, sdk=None, slug=None, source=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, deployment_config=None, description='', has_been_deployed=None, id=None, image='https://picsum.photos/400', is_paid=False, keywords=[], license=None, name=None, owner=None, permissions=None, public=True, sdk=None, slug=None, source=None, url=None, local_vars_configuration=None): # noqa: E501 """Application - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() @@ -75,6 +79,7 @@ def __init__(self, deployment_config=None, description='', id=None, image='https self._deployment_config = None self._description = None + self._has_been_deployed = None self._id = None self._image = None self._is_paid = None @@ -87,12 +92,14 @@ def __init__(self, deployment_config=None, description='', id=None, image='https self._sdk = None self._slug = None self._source = None + self._url = None self.discriminator = None if deployment_config is not None: self.deployment_config = deployment_config if description is not None: self.description = description + self.has_been_deployed = has_been_deployed self.id = id if image is not None: self.image = image @@ -112,6 +119,8 @@ def __init__(self, deployment_config=None, description='', id=None, image='https self.slug = slug if source is not None: self.source = source + if url is not None: + self.url = url @property def deployment_config(self): @@ -159,6 +168,31 @@ def description(self, description): self._description = description + @property + def has_been_deployed(self): + """Gets the has_been_deployed of this Application. # noqa: E501 + + Whether or not the application has been deployed # noqa: E501 + + :return: The has_been_deployed of this Application. # noqa: E501 + :rtype: bool + """ + return self._has_been_deployed + + @has_been_deployed.setter + def has_been_deployed(self, has_been_deployed): + """Sets the has_been_deployed of this Application. + + Whether or not the application has been deployed # noqa: E501 + + :param has_been_deployed: The has_been_deployed of this Application. # noqa: E501 + :type has_been_deployed: bool + """ + if self.local_vars_configuration.client_side_validation and has_been_deployed is None: # noqa: E501 + raise ValueError("Invalid value for `has_been_deployed`, must not be `None`") # noqa: E501 + + self._has_been_deployed = has_been_deployed + @property def id(self): """Gets the id of this Application. # noqa: E501 @@ -443,6 +477,29 @@ def source(self, source): self._source = source + @property + def url(self): + """Gets the url of this Application. # noqa: E501 + + The URL of the application deployment # noqa: E501 + + :return: The url of this Application. # noqa: E501 + :rtype: str + """ + return self._url + + @url.setter + def url(self, url): + """Sets the url of this Application. + + The URL of the application deployment # noqa: E501 + + :param url: The url of this Application. # noqa: E501 + :type url: str + """ + + self._url = url + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/pollination_sdk/models/application_access_policy.py b/pollination_sdk/models/application_access_policy.py index 4d58114e..9ca43a9a 100644 --- a/pollination_sdk/models/application_access_policy.py +++ b/pollination_sdk/models/application_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_access_policy_list.py b/pollination_sdk/models/application_access_policy_list.py index 88943eba..f27b8fea 100644 --- a/pollination_sdk/models/application_access_policy_list.py +++ b/pollination_sdk/models/application_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_create.py b/pollination_sdk/models/application_create.py index 7802574d..00dd3b4a 100644 --- a/pollination_sdk/models/application_create.py +++ b/pollination_sdk/models/application_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_deployment.py b/pollination_sdk/models/application_deployment.py index ca6c47d9..7f1486dd 100644 --- a/pollination_sdk/models/application_deployment.py +++ b/pollination_sdk/models/application_deployment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_list.py b/pollination_sdk/models/application_list.py index bad08ac7..a0776df9 100644 --- a/pollination_sdk/models/application_list.py +++ b/pollination_sdk/models/application_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_policy_subject.py b/pollination_sdk/models/application_policy_subject.py index f7f172bd..a2b205f6 100644 --- a/pollination_sdk/models/application_policy_subject.py +++ b/pollination_sdk/models/application_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_sort_key.py b/pollination_sdk/models/application_sort_key.py index d68326a1..c9661e2b 100644 --- a/pollination_sdk/models/application_sort_key.py +++ b/pollination_sdk/models/application_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_update.py b/pollination_sdk/models/application_update.py index 7720fea2..d4b84f82 100644 --- a/pollination_sdk/models/application_update.py +++ b/pollination_sdk/models/application_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_version.py b/pollination_sdk/models/application_version.py index f458ca5b..19eccae3 100644 --- a/pollination_sdk/models/application_version.py +++ b/pollination_sdk/models/application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_version_list.py b/pollination_sdk/models/application_version_list.py index 0a1628f8..74147d05 100644 --- a/pollination_sdk/models/application_version_list.py +++ b/pollination_sdk/models/application_version_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/baked_recipe.py b/pollination_sdk/models/baked_recipe.py index 560e21bc..efeb0dbc 100644 --- a/pollination_sdk/models/baked_recipe.py +++ b/pollination_sdk/models/baked_recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/billing_info.py b/pollination_sdk/models/billing_info.py index 62dda55b..ddf19e98 100644 --- a/pollination_sdk/models/billing_info.py +++ b/pollination_sdk/models/billing_info.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/billing_option.py b/pollination_sdk/models/billing_option.py index d8b257d6..e582ff4b 100644 --- a/pollination_sdk/models/billing_option.py +++ b/pollination_sdk/models/billing_option.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py b/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py index ce8bd5af..a5435d10 100644 --- a/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py +++ b/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/body_post_recipe_owner_recipes_post.py b/pollination_sdk/models/body_post_recipe_owner_recipes_post.py index d9f7b7d7..d63f8dc4 100644 --- a/pollination_sdk/models/body_post_recipe_owner_recipes_post.py +++ b/pollination_sdk/models/body_post_recipe_owner_recipes_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/build_status.py b/pollination_sdk/models/build_status.py index 7941ed19..9d6706ee 100644 --- a/pollination_sdk/models/build_status.py +++ b/pollination_sdk/models/build_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/build_status_enum.py b/pollination_sdk/models/build_status_enum.py index 3cb4a285..fdcd341a 100644 --- a/pollination_sdk/models/build_status_enum.py +++ b/pollination_sdk/models/build_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/card_type.py b/pollination_sdk/models/card_type.py index e28de761..3228f9ac 100644 --- a/pollination_sdk/models/card_type.py +++ b/pollination_sdk/models/card_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/cloud_job.py b/pollination_sdk/models/cloud_job.py index 27314d3b..4fb28ff8 100644 --- a/pollination_sdk/models/cloud_job.py +++ b/pollination_sdk/models/cloud_job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/cloud_job_list.py b/pollination_sdk/models/cloud_job_list.py index 48fccc48..2798db2b 100644 --- a/pollination_sdk/models/cloud_job_list.py +++ b/pollination_sdk/models/cloud_job_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/created_content.py b/pollination_sdk/models/created_content.py index db867697..1816529d 100644 --- a/pollination_sdk/models/created_content.py +++ b/pollination_sdk/models/created_content.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag.py b/pollination_sdk/models/dag.py index 0b4713e4..cfa41c21 100644 --- a/pollination_sdk/models/dag.py +++ b/pollination_sdk/models/dag.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_input.py b/pollination_sdk/models/dag_array_input.py index 0c0427a1..d922e854 100644 --- a/pollination_sdk/models/dag_array_input.py +++ b/pollination_sdk/models/dag_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_input_alias.py b/pollination_sdk/models/dag_array_input_alias.py index 9e485329..b1e84cf7 100644 --- a/pollination_sdk/models/dag_array_input_alias.py +++ b/pollination_sdk/models/dag_array_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_output.py b/pollination_sdk/models/dag_array_output.py index debe8b65..a678682f 100644 --- a/pollination_sdk/models/dag_array_output.py +++ b/pollination_sdk/models/dag_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_output_alias.py b/pollination_sdk/models/dag_array_output_alias.py index 1d63bf70..d996bc85 100644 --- a/pollination_sdk/models/dag_array_output_alias.py +++ b/pollination_sdk/models/dag_array_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_input.py b/pollination_sdk/models/dag_boolean_input.py index 4b0bb7a7..d1e4b092 100644 --- a/pollination_sdk/models/dag_boolean_input.py +++ b/pollination_sdk/models/dag_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_input_alias.py b/pollination_sdk/models/dag_boolean_input_alias.py index 3213bb03..e14986fb 100644 --- a/pollination_sdk/models/dag_boolean_input_alias.py +++ b/pollination_sdk/models/dag_boolean_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_output.py b/pollination_sdk/models/dag_boolean_output.py index c67c02c0..ca309a02 100644 --- a/pollination_sdk/models/dag_boolean_output.py +++ b/pollination_sdk/models/dag_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_output_alias.py b/pollination_sdk/models/dag_boolean_output_alias.py index 232879f7..79f9e1f2 100644 --- a/pollination_sdk/models/dag_boolean_output_alias.py +++ b/pollination_sdk/models/dag_boolean_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_input.py b/pollination_sdk/models/dag_file_input.py index b7db32d6..632f4569 100644 --- a/pollination_sdk/models/dag_file_input.py +++ b/pollination_sdk/models/dag_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_input_alias.py b/pollination_sdk/models/dag_file_input_alias.py index 6801c4b5..3870b932 100644 --- a/pollination_sdk/models/dag_file_input_alias.py +++ b/pollination_sdk/models/dag_file_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_output.py b/pollination_sdk/models/dag_file_output.py index fb7d94da..18085b68 100644 --- a/pollination_sdk/models/dag_file_output.py +++ b/pollination_sdk/models/dag_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_output_alias.py b/pollination_sdk/models/dag_file_output_alias.py index 5735f1f4..7d010d45 100644 --- a/pollination_sdk/models/dag_file_output_alias.py +++ b/pollination_sdk/models/dag_file_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_input.py b/pollination_sdk/models/dag_folder_input.py index cf55fb70..f4cc7880 100644 --- a/pollination_sdk/models/dag_folder_input.py +++ b/pollination_sdk/models/dag_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_input_alias.py b/pollination_sdk/models/dag_folder_input_alias.py index 5f592e3b..340f3bf6 100644 --- a/pollination_sdk/models/dag_folder_input_alias.py +++ b/pollination_sdk/models/dag_folder_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_output.py b/pollination_sdk/models/dag_folder_output.py index 89df9b9c..bd8ea311 100644 --- a/pollination_sdk/models/dag_folder_output.py +++ b/pollination_sdk/models/dag_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_output_alias.py b/pollination_sdk/models/dag_folder_output_alias.py index 5af8f914..74f80d82 100644 --- a/pollination_sdk/models/dag_folder_output_alias.py +++ b/pollination_sdk/models/dag_folder_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_input.py b/pollination_sdk/models/dag_generic_input.py index 1b8b99f9..5b842ef1 100644 --- a/pollination_sdk/models/dag_generic_input.py +++ b/pollination_sdk/models/dag_generic_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_input_alias.py b/pollination_sdk/models/dag_generic_input_alias.py index 7429595a..92d71d1c 100644 --- a/pollination_sdk/models/dag_generic_input_alias.py +++ b/pollination_sdk/models/dag_generic_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_output.py b/pollination_sdk/models/dag_generic_output.py index dd7dc647..3d7c7cd0 100644 --- a/pollination_sdk/models/dag_generic_output.py +++ b/pollination_sdk/models/dag_generic_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_output_alias.py b/pollination_sdk/models/dag_generic_output_alias.py index 2d6cb3ab..9b718966 100644 --- a/pollination_sdk/models/dag_generic_output_alias.py +++ b/pollination_sdk/models/dag_generic_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_input.py b/pollination_sdk/models/dag_integer_input.py index 4ef389c1..7712bce0 100644 --- a/pollination_sdk/models/dag_integer_input.py +++ b/pollination_sdk/models/dag_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_input_alias.py b/pollination_sdk/models/dag_integer_input_alias.py index e92c09b5..08d69382 100644 --- a/pollination_sdk/models/dag_integer_input_alias.py +++ b/pollination_sdk/models/dag_integer_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_output.py b/pollination_sdk/models/dag_integer_output.py index b4cdf768..a71e5232 100644 --- a/pollination_sdk/models/dag_integer_output.py +++ b/pollination_sdk/models/dag_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_output_alias.py b/pollination_sdk/models/dag_integer_output_alias.py index d0cd77c5..99a146fd 100644 --- a/pollination_sdk/models/dag_integer_output_alias.py +++ b/pollination_sdk/models/dag_integer_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_linked_input_alias.py b/pollination_sdk/models/dag_linked_input_alias.py index 8a3b04b5..22304986 100644 --- a/pollination_sdk/models/dag_linked_input_alias.py +++ b/pollination_sdk/models/dag_linked_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_linked_output_alias.py b/pollination_sdk/models/dag_linked_output_alias.py index 8b35dd19..bbfde3e3 100644 --- a/pollination_sdk/models/dag_linked_output_alias.py +++ b/pollination_sdk/models/dag_linked_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_input.py b/pollination_sdk/models/dag_number_input.py index 3ccbba82..4e469d99 100644 --- a/pollination_sdk/models/dag_number_input.py +++ b/pollination_sdk/models/dag_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_input_alias.py b/pollination_sdk/models/dag_number_input_alias.py index 825c5923..6e909017 100644 --- a/pollination_sdk/models/dag_number_input_alias.py +++ b/pollination_sdk/models/dag_number_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_output.py b/pollination_sdk/models/dag_number_output.py index db450cc4..c83c652d 100644 --- a/pollination_sdk/models/dag_number_output.py +++ b/pollination_sdk/models/dag_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_output_alias.py b/pollination_sdk/models/dag_number_output_alias.py index 5a73db7f..de3d91c7 100644 --- a/pollination_sdk/models/dag_number_output_alias.py +++ b/pollination_sdk/models/dag_number_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_input.py b/pollination_sdk/models/dag_path_input.py index e0f8a798..843151b6 100644 --- a/pollination_sdk/models/dag_path_input.py +++ b/pollination_sdk/models/dag_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_input_alias.py b/pollination_sdk/models/dag_path_input_alias.py index f167c4f2..c27027ee 100644 --- a/pollination_sdk/models/dag_path_input_alias.py +++ b/pollination_sdk/models/dag_path_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_output.py b/pollination_sdk/models/dag_path_output.py index 1f32bcd6..82b9112a 100644 --- a/pollination_sdk/models/dag_path_output.py +++ b/pollination_sdk/models/dag_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_output_alias.py b/pollination_sdk/models/dag_path_output_alias.py index 0e712d6a..67be6c37 100644 --- a/pollination_sdk/models/dag_path_output_alias.py +++ b/pollination_sdk/models/dag_path_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_input.py b/pollination_sdk/models/dag_string_input.py index 13c183f4..37b4ce74 100644 --- a/pollination_sdk/models/dag_string_input.py +++ b/pollination_sdk/models/dag_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_input_alias.py b/pollination_sdk/models/dag_string_input_alias.py index b8b87a1c..5fa6e925 100644 --- a/pollination_sdk/models/dag_string_input_alias.py +++ b/pollination_sdk/models/dag_string_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_output.py b/pollination_sdk/models/dag_string_output.py index c6c31ffb..aa14e5d1 100644 --- a/pollination_sdk/models/dag_string_output.py +++ b/pollination_sdk/models/dag_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_output_alias.py b/pollination_sdk/models/dag_string_output_alias.py index e272c412..0fd08421 100644 --- a/pollination_sdk/models/dag_string_output_alias.py +++ b/pollination_sdk/models/dag_string_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_task.py b/pollination_sdk/models/dag_task.py index e0d8f063..a56d4067 100644 --- a/pollination_sdk/models/dag_task.py +++ b/pollination_sdk/models/dag_task.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_task_loop.py b/pollination_sdk/models/dag_task_loop.py index 52315c82..1ca13750 100644 --- a/pollination_sdk/models/dag_task_loop.py +++ b/pollination_sdk/models/dag_task_loop.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_input.py b/pollination_sdk/models/dagjson_object_input.py index 72f69983..083e36f5 100644 --- a/pollination_sdk/models/dagjson_object_input.py +++ b/pollination_sdk/models/dagjson_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_input_alias.py b/pollination_sdk/models/dagjson_object_input_alias.py index 547448ad..3e6c0665 100644 --- a/pollination_sdk/models/dagjson_object_input_alias.py +++ b/pollination_sdk/models/dagjson_object_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_output.py b/pollination_sdk/models/dagjson_object_output.py index 5ff23519..8957ecf2 100644 --- a/pollination_sdk/models/dagjson_object_output.py +++ b/pollination_sdk/models/dagjson_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_output_alias.py b/pollination_sdk/models/dagjson_object_output_alias.py index f7f6449c..e8bbf607 100644 --- a/pollination_sdk/models/dagjson_object_output_alias.py +++ b/pollination_sdk/models/dagjson_object_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/daily_usage.py b/pollination_sdk/models/daily_usage.py index b5bb27ff..088996fc 100644 --- a/pollination_sdk/models/daily_usage.py +++ b/pollination_sdk/models/daily_usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dependency.py b/pollination_sdk/models/dependency.py index 7e112140..e050796d 100644 --- a/pollination_sdk/models/dependency.py +++ b/pollination_sdk/models/dependency.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dependency_kind.py b/pollination_sdk/models/dependency_kind.py index ba6f1516..ded2f007 100644 --- a/pollination_sdk/models/dependency_kind.py +++ b/pollination_sdk/models/dependency_kind.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/deployment_config.py b/pollination_sdk/models/deployment_config.py index f78e3256..15410635 100644 --- a/pollination_sdk/models/deployment_config.py +++ b/pollination_sdk/models/deployment_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/docker_config.py b/pollination_sdk/models/docker_config.py index 5c35c264..d0b6a084 100644 --- a/pollination_sdk/models/docker_config.py +++ b/pollination_sdk/models/docker_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/file_meta.py b/pollination_sdk/models/file_meta.py index 526f66d0..172d26b7 100644 --- a/pollination_sdk/models/file_meta.py +++ b/pollination_sdk/models/file_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/file_reference.py b/pollination_sdk/models/file_reference.py index 16bd2660..1e6741e7 100644 --- a/pollination_sdk/models/file_reference.py +++ b/pollination_sdk/models/file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/folder_reference.py b/pollination_sdk/models/folder_reference.py index 0b4b3982..558cf58c 100644 --- a/pollination_sdk/models/folder_reference.py +++ b/pollination_sdk/models/folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function.py b/pollination_sdk/models/function.py index e4055afb..51de9caf 100644 --- a/pollination_sdk/models/function.py +++ b/pollination_sdk/models/function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_array_input.py b/pollination_sdk/models/function_array_input.py index 448731f2..80293c14 100644 --- a/pollination_sdk/models/function_array_input.py +++ b/pollination_sdk/models/function_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_array_output.py b/pollination_sdk/models/function_array_output.py index c9120d8e..3902b7ce 100644 --- a/pollination_sdk/models/function_array_output.py +++ b/pollination_sdk/models/function_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_boolean_input.py b/pollination_sdk/models/function_boolean_input.py index b9930fb1..d9b6e3cb 100644 --- a/pollination_sdk/models/function_boolean_input.py +++ b/pollination_sdk/models/function_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_boolean_output.py b/pollination_sdk/models/function_boolean_output.py index 80bf97b9..40f1e6ad 100644 --- a/pollination_sdk/models/function_boolean_output.py +++ b/pollination_sdk/models/function_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_file_input.py b/pollination_sdk/models/function_file_input.py index 4664bb0c..9a584875 100644 --- a/pollination_sdk/models/function_file_input.py +++ b/pollination_sdk/models/function_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_file_output.py b/pollination_sdk/models/function_file_output.py index 740b5e17..2440dea9 100644 --- a/pollination_sdk/models/function_file_output.py +++ b/pollination_sdk/models/function_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_folder_input.py b/pollination_sdk/models/function_folder_input.py index 47e061f3..297043ac 100644 --- a/pollination_sdk/models/function_folder_input.py +++ b/pollination_sdk/models/function_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_folder_output.py b/pollination_sdk/models/function_folder_output.py index 2b9c66a7..99c409c2 100644 --- a/pollination_sdk/models/function_folder_output.py +++ b/pollination_sdk/models/function_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_integer_input.py b/pollination_sdk/models/function_integer_input.py index 511c8454..c1748d2d 100644 --- a/pollination_sdk/models/function_integer_input.py +++ b/pollination_sdk/models/function_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_integer_output.py b/pollination_sdk/models/function_integer_output.py index 974d762b..78d3a0f8 100644 --- a/pollination_sdk/models/function_integer_output.py +++ b/pollination_sdk/models/function_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_json_object_input.py b/pollination_sdk/models/function_json_object_input.py index 15485bbf..5dcb3d2b 100644 --- a/pollination_sdk/models/function_json_object_input.py +++ b/pollination_sdk/models/function_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_json_object_output.py b/pollination_sdk/models/function_json_object_output.py index b4719330..92e40539 100644 --- a/pollination_sdk/models/function_json_object_output.py +++ b/pollination_sdk/models/function_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_number_input.py b/pollination_sdk/models/function_number_input.py index acacb900..b1f53685 100644 --- a/pollination_sdk/models/function_number_input.py +++ b/pollination_sdk/models/function_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_number_output.py b/pollination_sdk/models/function_number_output.py index ccb9ff56..444b6ea2 100644 --- a/pollination_sdk/models/function_number_output.py +++ b/pollination_sdk/models/function_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_path_input.py b/pollination_sdk/models/function_path_input.py index d506d2dc..83d2812a 100644 --- a/pollination_sdk/models/function_path_input.py +++ b/pollination_sdk/models/function_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_path_output.py b/pollination_sdk/models/function_path_output.py index d0a4a216..c52602e2 100644 --- a/pollination_sdk/models/function_path_output.py +++ b/pollination_sdk/models/function_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_string_input.py b/pollination_sdk/models/function_string_input.py index 2801db7b..bf7072b7 100644 --- a/pollination_sdk/models/function_string_input.py +++ b/pollination_sdk/models/function_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_string_output.py b/pollination_sdk/models/function_string_output.py index d56dc7e8..8f3bae04 100644 --- a/pollination_sdk/models/function_string_output.py +++ b/pollination_sdk/models/function_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/http.py b/pollination_sdk/models/http.py index 367da3ac..a1f74201 100644 --- a/pollination_sdk/models/http.py +++ b/pollination_sdk/models/http.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/http_validation_error.py b/pollination_sdk/models/http_validation_error.py index 33eaf5ae..44a516fa 100644 --- a/pollination_sdk/models/http_validation_error.py +++ b/pollination_sdk/models/http_validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_file_reference.py b/pollination_sdk/models/input_file_reference.py index f75f0212..c82fb612 100644 --- a/pollination_sdk/models/input_file_reference.py +++ b/pollination_sdk/models/input_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_folder_reference.py b/pollination_sdk/models/input_folder_reference.py index 37b4d65e..b00eb175 100644 --- a/pollination_sdk/models/input_folder_reference.py +++ b/pollination_sdk/models/input_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_path_reference.py b/pollination_sdk/models/input_path_reference.py index d1567a8a..21f9dc1a 100644 --- a/pollination_sdk/models/input_path_reference.py +++ b/pollination_sdk/models/input_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_reference.py b/pollination_sdk/models/input_reference.py index 849e452a..52f6b769 100644 --- a/pollination_sdk/models/input_reference.py +++ b/pollination_sdk/models/input_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/io_alias_handler.py b/pollination_sdk/models/io_alias_handler.py index 97183f74..34c45d7b 100644 --- a/pollination_sdk/models/io_alias_handler.py +++ b/pollination_sdk/models/io_alias_handler.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/item_reference.py b/pollination_sdk/models/item_reference.py index e7a21dcc..1485cb20 100644 --- a/pollination_sdk/models/item_reference.py +++ b/pollination_sdk/models/item_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/item_type.py b/pollination_sdk/models/item_type.py index 07108426..abbca297 100644 --- a/pollination_sdk/models/item_type.py +++ b/pollination_sdk/models/item_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job.py b/pollination_sdk/models/job.py index 161820f5..74a34641 100644 --- a/pollination_sdk/models/job.py +++ b/pollination_sdk/models/job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_argument.py b/pollination_sdk/models/job_argument.py index 8a492def..bc23a380 100644 --- a/pollination_sdk/models/job_argument.py +++ b/pollination_sdk/models/job_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_path_argument.py b/pollination_sdk/models/job_path_argument.py index d17f042e..ae0c2e1e 100644 --- a/pollination_sdk/models/job_path_argument.py +++ b/pollination_sdk/models/job_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_status.py b/pollination_sdk/models/job_status.py index f888c1b4..46a97388 100644 --- a/pollination_sdk/models/job_status.py +++ b/pollination_sdk/models/job_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_status_enum.py b/pollination_sdk/models/job_status_enum.py index e40831d7..96026a2e 100644 --- a/pollination_sdk/models/job_status_enum.py +++ b/pollination_sdk/models/job_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/key_request.py b/pollination_sdk/models/key_request.py index dc788ad9..7560dd3c 100644 --- a/pollination_sdk/models/key_request.py +++ b/pollination_sdk/models/key_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license.py b/pollination_sdk/models/license.py index a40dcbb1..b255ba7d 100644 --- a/pollination_sdk/models/license.py +++ b/pollination_sdk/models/license.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_access_policy.py b/pollination_sdk/models/license_pool_access_policy.py index 29860cfb..a6684faf 100644 --- a/pollination_sdk/models/license_pool_access_policy.py +++ b/pollination_sdk/models/license_pool_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_access_policy_list.py b/pollination_sdk/models/license_pool_access_policy_list.py index c4f171cd..722cfc2f 100644 --- a/pollination_sdk/models/license_pool_access_policy_list.py +++ b/pollination_sdk/models/license_pool_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_list.py b/pollination_sdk/models/license_pool_list.py index 24d4290e..eab0ebe3 100644 --- a/pollination_sdk/models/license_pool_list.py +++ b/pollination_sdk/models/license_pool_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_policy_subject.py b/pollination_sdk/models/license_pool_policy_subject.py index 4f2f4f86..93ab590f 100644 --- a/pollination_sdk/models/license_pool_policy_subject.py +++ b/pollination_sdk/models/license_pool_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_policy_subject_list.py b/pollination_sdk/models/license_pool_policy_subject_list.py index 843edc44..220ff872 100644 --- a/pollination_sdk/models/license_pool_policy_subject_list.py +++ b/pollination_sdk/models/license_pool_policy_subject_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_public.py b/pollination_sdk/models/license_pool_public.py index 62dc840f..b7914326 100644 --- a/pollination_sdk/models/license_pool_public.py +++ b/pollination_sdk/models/license_pool_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_update.py b/pollination_sdk/models/license_pool_update.py index c385f9a4..1efed200 100644 --- a/pollination_sdk/models/license_pool_update.py +++ b/pollination_sdk/models/license_pool_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_public.py b/pollination_sdk/models/license_public.py index 5714ec2d..58fd68e7 100644 --- a/pollination_sdk/models/license_public.py +++ b/pollination_sdk/models/license_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_type.py b/pollination_sdk/models/license_type.py index a624a17c..8e7f4ffb 100644 --- a/pollination_sdk/models/license_type.py +++ b/pollination_sdk/models/license_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/local_config.py b/pollination_sdk/models/local_config.py index d6b00fa9..71f91a27 100644 --- a/pollination_sdk/models/local_config.py +++ b/pollination_sdk/models/local_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/location.py b/pollination_sdk/models/location.py index eefd1e4f..a22b547f 100644 --- a/pollination_sdk/models/location.py +++ b/pollination_sdk/models/location.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/maintainer.py b/pollination_sdk/models/maintainer.py index c768f8ec..efeaabe5 100644 --- a/pollination_sdk/models/maintainer.py +++ b/pollination_sdk/models/maintainer.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/meta_data.py b/pollination_sdk/models/meta_data.py index 004c06a9..16fbfae0 100644 --- a/pollination_sdk/models/meta_data.py +++ b/pollination_sdk/models/meta_data.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/metadata.py b/pollination_sdk/models/metadata.py index b47c9781..efff21e7 100644 --- a/pollination_sdk/models/metadata.py +++ b/pollination_sdk/models/metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/new_application_version.py b/pollination_sdk/models/new_application_version.py index 2e19b514..870de4d7 100644 --- a/pollination_sdk/models/new_application_version.py +++ b/pollination_sdk/models/new_application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/new_plugin_package.py b/pollination_sdk/models/new_plugin_package.py index a0bafa6d..d2412286 100644 --- a/pollination_sdk/models/new_plugin_package.py +++ b/pollination_sdk/models/new_plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/new_recipe_package.py b/pollination_sdk/models/new_recipe_package.py index c8b99ce0..54aed53f 100644 --- a/pollination_sdk/models/new_recipe_package.py +++ b/pollination_sdk/models/new_recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization.py b/pollination_sdk/models/organization.py index 54e01966..91f95eae 100644 --- a/pollination_sdk/models/organization.py +++ b/pollination_sdk/models/organization.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_create.py b/pollination_sdk/models/organization_create.py index d71627ba..740a77c1 100644 --- a/pollination_sdk/models/organization_create.py +++ b/pollination_sdk/models/organization_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_list.py b/pollination_sdk/models/organization_list.py index eeef6e08..3a41908b 100644 --- a/pollination_sdk/models/organization_list.py +++ b/pollination_sdk/models/organization_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_member.py b/pollination_sdk/models/organization_member.py index 45e89456..c4682534 100644 --- a/pollination_sdk/models/organization_member.py +++ b/pollination_sdk/models/organization_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_member_list.py b/pollination_sdk/models/organization_member_list.py index baf86c19..f0d3f8e8 100644 --- a/pollination_sdk/models/organization_member_list.py +++ b/pollination_sdk/models/organization_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_role_enum.py b/pollination_sdk/models/organization_role_enum.py index 1f043224..4f24e50a 100644 --- a/pollination_sdk/models/organization_role_enum.py +++ b/pollination_sdk/models/organization_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_update.py b/pollination_sdk/models/organization_update.py index 9ebf9729..b30c1eef 100644 --- a/pollination_sdk/models/organization_update.py +++ b/pollination_sdk/models/organization_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/package_sort_key.py b/pollination_sdk/models/package_sort_key.py index a3affe21..d55fd581 100644 --- a/pollination_sdk/models/package_sort_key.py +++ b/pollination_sdk/models/package_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/package_version.py b/pollination_sdk/models/package_version.py index 2f2abc48..7749d956 100644 --- a/pollination_sdk/models/package_version.py +++ b/pollination_sdk/models/package_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/paused_reason.py b/pollination_sdk/models/paused_reason.py index 13626b29..f5f1b41e 100644 --- a/pollination_sdk/models/paused_reason.py +++ b/pollination_sdk/models/paused_reason.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/pay_link.py b/pollination_sdk/models/pay_link.py index 6b4ffade..2db28204 100644 --- a/pollination_sdk/models/pay_link.py +++ b/pollination_sdk/models/pay_link.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/payment.py b/pollination_sdk/models/payment.py index a78024ad..cdcf3fad 100644 --- a/pollination_sdk/models/payment.py +++ b/pollination_sdk/models/payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/payment_method.py b/pollination_sdk/models/payment_method.py index c2e154a1..a7290b68 100644 --- a/pollination_sdk/models/payment_method.py +++ b/pollination_sdk/models/payment_method.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/payment_method_enum.py b/pollination_sdk/models/payment_method_enum.py index 2061cdb2..5933ebbc 100644 --- a/pollination_sdk/models/payment_method_enum.py +++ b/pollination_sdk/models/payment_method_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/permission.py b/pollination_sdk/models/permission.py index c082aed3..386112e2 100644 --- a/pollination_sdk/models/permission.py +++ b/pollination_sdk/models/permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plan_type.py b/pollination_sdk/models/plan_type.py index 6fca149f..df4b0530 100644 --- a/pollination_sdk/models/plan_type.py +++ b/pollination_sdk/models/plan_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin.py b/pollination_sdk/models/plugin.py index 28d46dce..59fbd39e 100644 --- a/pollination_sdk/models/plugin.py +++ b/pollination_sdk/models/plugin.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin_config.py b/pollination_sdk/models/plugin_config.py index a88cbfd3..3cf346d4 100644 --- a/pollination_sdk/models/plugin_config.py +++ b/pollination_sdk/models/plugin_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin_package.py b/pollination_sdk/models/plugin_package.py index 726a5fa3..6c405780 100644 --- a/pollination_sdk/models/plugin_package.py +++ b/pollination_sdk/models/plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin_package_list.py b/pollination_sdk/models/plugin_package_list.py index 6d717189..cc770c40 100644 --- a/pollination_sdk/models/plugin_package_list.py +++ b/pollination_sdk/models/plugin_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/policy_subject.py b/pollination_sdk/models/policy_subject.py index ba9b2df4..2468a8b7 100644 --- a/pollination_sdk/models/policy_subject.py +++ b/pollination_sdk/models/policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project.py b/pollination_sdk/models/project.py index 226eab1e..8982ce43 100644 --- a/pollination_sdk/models/project.py +++ b/pollination_sdk/models/project.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_access_policy.py b/pollination_sdk/models/project_access_policy.py index 9428d17c..d86889f1 100644 --- a/pollination_sdk/models/project_access_policy.py +++ b/pollination_sdk/models/project_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_access_policy_list.py b/pollination_sdk/models/project_access_policy_list.py index 96ccf443..b4b7f1f2 100644 --- a/pollination_sdk/models/project_access_policy_list.py +++ b/pollination_sdk/models/project_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_create.py b/pollination_sdk/models/project_create.py index 7c57ca9c..49485cea 100644 --- a/pollination_sdk/models/project_create.py +++ b/pollination_sdk/models/project_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_folder.py b/pollination_sdk/models/project_folder.py index 890c6359..8a586d9b 100644 --- a/pollination_sdk/models/project_folder.py +++ b/pollination_sdk/models/project_folder.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_list.py b/pollination_sdk/models/project_list.py index 14d85cd2..10fb3b3a 100644 --- a/pollination_sdk/models/project_list.py +++ b/pollination_sdk/models/project_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_policy_subject.py b/pollination_sdk/models/project_policy_subject.py index 498e752b..132ea53c 100644 --- a/pollination_sdk/models/project_policy_subject.py +++ b/pollination_sdk/models/project_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_recipe_filter.py b/pollination_sdk/models/project_recipe_filter.py index 43402f11..cd59d126 100644 --- a/pollination_sdk/models/project_recipe_filter.py +++ b/pollination_sdk/models/project_recipe_filter.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_recipe_filter_list.py b/pollination_sdk/models/project_recipe_filter_list.py index 34c209dc..25857d03 100644 --- a/pollination_sdk/models/project_recipe_filter_list.py +++ b/pollination_sdk/models/project_recipe_filter_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_sort_key.py b/pollination_sdk/models/project_sort_key.py index 8da5ee8f..c352a9b1 100644 --- a/pollination_sdk/models/project_sort_key.py +++ b/pollination_sdk/models/project_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_update.py b/pollination_sdk/models/project_update.py index b19679d4..a3d0d450 100644 --- a/pollination_sdk/models/project_update.py +++ b/pollination_sdk/models/project_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/public_account_list.py b/pollination_sdk/models/public_account_list.py index 98fde3b0..5ccb5028 100644 --- a/pollination_sdk/models/public_account_list.py +++ b/pollination_sdk/models/public_account_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota.py b/pollination_sdk/models/quota.py index 3344de49..0b74e03a 100644 --- a/pollination_sdk/models/quota.py +++ b/pollination_sdk/models/quota.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota_list.py b/pollination_sdk/models/quota_list.py index 73b5bdaf..b9af807b 100644 --- a/pollination_sdk/models/quota_list.py +++ b/pollination_sdk/models/quota_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota_plan.py b/pollination_sdk/models/quota_plan.py index 073a83d9..1b66eec3 100644 --- a/pollination_sdk/models/quota_plan.py +++ b/pollination_sdk/models/quota_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota_type.py b/pollination_sdk/models/quota_type.py index 7e667615..da4b3883 100644 --- a/pollination_sdk/models/quota_type.py +++ b/pollination_sdk/models/quota_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe.py b/pollination_sdk/models/recipe.py index e4339e69..79a488e4 100644 --- a/pollination_sdk/models/recipe.py +++ b/pollination_sdk/models/recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_interface.py b/pollination_sdk/models/recipe_interface.py index d47944f4..003294de 100644 --- a/pollination_sdk/models/recipe_interface.py +++ b/pollination_sdk/models/recipe_interface.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_interface_list.py b/pollination_sdk/models/recipe_interface_list.py index db737efb..7abacdf0 100644 --- a/pollination_sdk/models/recipe_interface_list.py +++ b/pollination_sdk/models/recipe_interface_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_package.py b/pollination_sdk/models/recipe_package.py index 41b43c10..498b67d3 100644 --- a/pollination_sdk/models/recipe_package.py +++ b/pollination_sdk/models/recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_package_list.py b/pollination_sdk/models/recipe_package_list.py index 4cf6e283..e60a4e7f 100644 --- a/pollination_sdk/models/recipe_package_list.py +++ b/pollination_sdk/models/recipe_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository.py b/pollination_sdk/models/repository.py index 7080d40c..01b3bb0b 100644 --- a/pollination_sdk/models/repository.py +++ b/pollination_sdk/models/repository.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_access_policy.py b/pollination_sdk/models/repository_access_policy.py index 73fe2055..87cec998 100644 --- a/pollination_sdk/models/repository_access_policy.py +++ b/pollination_sdk/models/repository_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_access_policy_list.py b/pollination_sdk/models/repository_access_policy_list.py index 2b9e8be9..1c270344 100644 --- a/pollination_sdk/models/repository_access_policy_list.py +++ b/pollination_sdk/models/repository_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_create.py b/pollination_sdk/models/repository_create.py index 97153e50..4ac28937 100644 --- a/pollination_sdk/models/repository_create.py +++ b/pollination_sdk/models/repository_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_index.py b/pollination_sdk/models/repository_index.py index a8b7468c..4555feca 100644 --- a/pollination_sdk/models/repository_index.py +++ b/pollination_sdk/models/repository_index.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_list.py b/pollination_sdk/models/repository_list.py index 141eaa7b..f7ac30cc 100644 --- a/pollination_sdk/models/repository_list.py +++ b/pollination_sdk/models/repository_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_metadata.py b/pollination_sdk/models/repository_metadata.py index 26de24ee..7b9ea262 100644 --- a/pollination_sdk/models/repository_metadata.py +++ b/pollination_sdk/models/repository_metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_policy_subject.py b/pollination_sdk/models/repository_policy_subject.py index 85e2496c..555605af 100644 --- a/pollination_sdk/models/repository_policy_subject.py +++ b/pollination_sdk/models/repository_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_sort_key.py b/pollination_sdk/models/repository_sort_key.py index 34901581..fecef7c4 100644 --- a/pollination_sdk/models/repository_sort_key.py +++ b/pollination_sdk/models/repository_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_update.py b/pollination_sdk/models/repository_update.py index fde82062..87de4229 100644 --- a/pollination_sdk/models/repository_update.py +++ b/pollination_sdk/models/repository_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_user_permissions.py b/pollination_sdk/models/repository_user_permissions.py index 68bc9d5a..42f9eeba 100644 --- a/pollination_sdk/models/repository_user_permissions.py +++ b/pollination_sdk/models/repository_user_permissions.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/resources_duration.py b/pollination_sdk/models/resources_duration.py index 8d4cee38..a680e400 100644 --- a/pollination_sdk/models/resources_duration.py +++ b/pollination_sdk/models/resources_duration.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/retry_config.py b/pollination_sdk/models/retry_config.py index bf179654..402ce238 100644 --- a/pollination_sdk/models/retry_config.py +++ b/pollination_sdk/models/retry_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/role_enum.py b/pollination_sdk/models/role_enum.py index 352122a5..50b95cfc 100644 --- a/pollination_sdk/models/role_enum.py +++ b/pollination_sdk/models/role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run.py b/pollination_sdk/models/run.py index 815dda1b..4c318826 100644 --- a/pollination_sdk/models/run.py +++ b/pollination_sdk/models/run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_list.py b/pollination_sdk/models/run_list.py index 9015c118..f97c30a1 100644 --- a/pollination_sdk/models/run_list.py +++ b/pollination_sdk/models/run_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_meta.py b/pollination_sdk/models/run_meta.py index 27238e7b..568a4132 100644 --- a/pollination_sdk/models/run_meta.py +++ b/pollination_sdk/models/run_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_progress.py b/pollination_sdk/models/run_progress.py index 70a3b1c6..fbaca96b 100644 --- a/pollination_sdk/models/run_progress.py +++ b/pollination_sdk/models/run_progress.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_result_list.py b/pollination_sdk/models/run_result_list.py index d7128827..582ddc63 100644 --- a/pollination_sdk/models/run_result_list.py +++ b/pollination_sdk/models/run_result_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_status.py b/pollination_sdk/models/run_status.py index 13785692..f6f2a513 100644 --- a/pollination_sdk/models/run_status.py +++ b/pollination_sdk/models/run_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_status_enum.py b/pollination_sdk/models/run_status_enum.py index bd72e966..2712ab2e 100644 --- a/pollination_sdk/models/run_status_enum.py +++ b/pollination_sdk/models/run_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/s3.py b/pollination_sdk/models/s3.py index e5e70c20..a75eae58 100644 --- a/pollination_sdk/models/s3.py +++ b/pollination_sdk/models/s3.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/s3_upload_request.py b/pollination_sdk/models/s3_upload_request.py index 4af7c8c8..4ca47235 100644 --- a/pollination_sdk/models/s3_upload_request.py +++ b/pollination_sdk/models/s3_upload_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/scripting_languages.py b/pollination_sdk/models/scripting_languages.py index 5eaa16f2..cca19adb 100644 --- a/pollination_sdk/models/scripting_languages.py +++ b/pollination_sdk/models/scripting_languages.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/sdk_enum.py b/pollination_sdk/models/sdk_enum.py index 1de15cf3..3f4a531c 100644 --- a/pollination_sdk/models/sdk_enum.py +++ b/pollination_sdk/models/sdk_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -31,8 +31,9 @@ class SDKEnum(object): """ STREAMLIT = "streamlit" DASH = "dash" + REACT = "react" - allowable_values = [STREAMLIT, DASH] # noqa: E501 + allowable_values = [STREAMLIT, DASH, REACT] # noqa: E501 """ Attributes: diff --git a/pollination_sdk/models/sort_enum.py b/pollination_sdk/models/sort_enum.py index b7be7b78..ab09fec9 100644 --- a/pollination_sdk/models/sort_enum.py +++ b/pollination_sdk/models/sort_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/status_type.py b/pollination_sdk/models/status_type.py index d984cc1d..348a5bb9 100644 --- a/pollination_sdk/models/status_type.py +++ b/pollination_sdk/models/status_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_array_input.py b/pollination_sdk/models/step_array_input.py index fbf52fd2..4ca20361 100644 --- a/pollination_sdk/models/step_array_input.py +++ b/pollination_sdk/models/step_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_array_output.py b/pollination_sdk/models/step_array_output.py index 011629d1..2419a7d7 100644 --- a/pollination_sdk/models/step_array_output.py +++ b/pollination_sdk/models/step_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_boolean_input.py b/pollination_sdk/models/step_boolean_input.py index 720839e7..4db7c5ef 100644 --- a/pollination_sdk/models/step_boolean_input.py +++ b/pollination_sdk/models/step_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_boolean_output.py b/pollination_sdk/models/step_boolean_output.py index d3278240..def4e715 100644 --- a/pollination_sdk/models/step_boolean_output.py +++ b/pollination_sdk/models/step_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_file_input.py b/pollination_sdk/models/step_file_input.py index 5ff8a4b9..47e26982 100644 --- a/pollination_sdk/models/step_file_input.py +++ b/pollination_sdk/models/step_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_file_output.py b/pollination_sdk/models/step_file_output.py index 49ba4f06..dfbe3214 100644 --- a/pollination_sdk/models/step_file_output.py +++ b/pollination_sdk/models/step_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_folder_input.py b/pollination_sdk/models/step_folder_input.py index d95d3d41..22c41f32 100644 --- a/pollination_sdk/models/step_folder_input.py +++ b/pollination_sdk/models/step_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_folder_output.py b/pollination_sdk/models/step_folder_output.py index 81d04e7a..e1d00df3 100644 --- a/pollination_sdk/models/step_folder_output.py +++ b/pollination_sdk/models/step_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_integer_input.py b/pollination_sdk/models/step_integer_input.py index e4eed7a5..929c2b44 100644 --- a/pollination_sdk/models/step_integer_input.py +++ b/pollination_sdk/models/step_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_integer_output.py b/pollination_sdk/models/step_integer_output.py index cf65630e..9b02ff2e 100644 --- a/pollination_sdk/models/step_integer_output.py +++ b/pollination_sdk/models/step_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_json_object_input.py b/pollination_sdk/models/step_json_object_input.py index a2a8cdb5..737836f6 100644 --- a/pollination_sdk/models/step_json_object_input.py +++ b/pollination_sdk/models/step_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_json_object_output.py b/pollination_sdk/models/step_json_object_output.py index c6240e11..da434406 100644 --- a/pollination_sdk/models/step_json_object_output.py +++ b/pollination_sdk/models/step_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_list.py b/pollination_sdk/models/step_list.py index 75bd45f8..9bcc14f9 100644 --- a/pollination_sdk/models/step_list.py +++ b/pollination_sdk/models/step_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_number_input.py b/pollination_sdk/models/step_number_input.py index 89ae4a39..db7cf747 100644 --- a/pollination_sdk/models/step_number_input.py +++ b/pollination_sdk/models/step_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_number_output.py b/pollination_sdk/models/step_number_output.py index 081e2731..2e1fc9aa 100644 --- a/pollination_sdk/models/step_number_output.py +++ b/pollination_sdk/models/step_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_path_input.py b/pollination_sdk/models/step_path_input.py index 3adbe35b..3df532bf 100644 --- a/pollination_sdk/models/step_path_input.py +++ b/pollination_sdk/models/step_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_path_output.py b/pollination_sdk/models/step_path_output.py index 8a65cb6e..ae6b5f7f 100644 --- a/pollination_sdk/models/step_path_output.py +++ b/pollination_sdk/models/step_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_status.py b/pollination_sdk/models/step_status.py index b22ff0be..2bba7a28 100644 --- a/pollination_sdk/models/step_status.py +++ b/pollination_sdk/models/step_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_status_enum.py b/pollination_sdk/models/step_status_enum.py index f17d4991..b145b03e 100644 --- a/pollination_sdk/models/step_status_enum.py +++ b/pollination_sdk/models/step_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_string_input.py b/pollination_sdk/models/step_string_input.py index dd7b103b..c499fed2 100644 --- a/pollination_sdk/models/step_string_input.py +++ b/pollination_sdk/models/step_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_string_output.py b/pollination_sdk/models/step_string_output.py index c3d51ed9..06a477b2 100644 --- a/pollination_sdk/models/step_string_output.py +++ b/pollination_sdk/models/step_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subject_type.py b/pollination_sdk/models/subject_type.py index c2e190be..12901b16 100644 --- a/pollination_sdk/models/subject_type.py +++ b/pollination_sdk/models/subject_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription.py b/pollination_sdk/models/subscription.py index 21456aa4..567f9640 100644 --- a/pollination_sdk/models/subscription.py +++ b/pollination_sdk/models/subscription.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_create.py b/pollination_sdk/models/subscription_create.py index df073fd2..e5caea10 100644 --- a/pollination_sdk/models/subscription_create.py +++ b/pollination_sdk/models/subscription_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_payment.py b/pollination_sdk/models/subscription_payment.py index aefcb9f1..6b29ad67 100644 --- a/pollination_sdk/models/subscription_payment.py +++ b/pollination_sdk/models/subscription_payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_plan.py b/pollination_sdk/models/subscription_plan.py index 6a2b15c6..51221002 100644 --- a/pollination_sdk/models/subscription_plan.py +++ b/pollination_sdk/models/subscription_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_update.py b/pollination_sdk/models/subscription_update.py index e5a77bbb..12d0af5f 100644 --- a/pollination_sdk/models/subscription_update.py +++ b/pollination_sdk/models/subscription_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_update_dry_run.py b/pollination_sdk/models/subscription_update_dry_run.py index 3f9336ae..b50b08a2 100644 --- a/pollination_sdk/models/subscription_update_dry_run.py +++ b/pollination_sdk/models/subscription_update_dry_run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_argument.py b/pollination_sdk/models/task_argument.py index 9d6f884a..92f9cdbf 100644 --- a/pollination_sdk/models/task_argument.py +++ b/pollination_sdk/models/task_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_file_reference.py b/pollination_sdk/models/task_file_reference.py index 59c05ade..2e5886d7 100644 --- a/pollination_sdk/models/task_file_reference.py +++ b/pollination_sdk/models/task_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_folder_reference.py b/pollination_sdk/models/task_folder_reference.py index 76eb01f4..412ad467 100644 --- a/pollination_sdk/models/task_folder_reference.py +++ b/pollination_sdk/models/task_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_path_argument.py b/pollination_sdk/models/task_path_argument.py index 23ad95b8..73a408b5 100644 --- a/pollination_sdk/models/task_path_argument.py +++ b/pollination_sdk/models/task_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_path_reference.py b/pollination_sdk/models/task_path_reference.py index 9f1b86fe..ff07e3e8 100644 --- a/pollination_sdk/models/task_path_reference.py +++ b/pollination_sdk/models/task_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_path_return.py b/pollination_sdk/models/task_path_return.py index 22d55bd0..4f1facb6 100644 --- a/pollination_sdk/models/task_path_return.py +++ b/pollination_sdk/models/task_path_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_reference.py b/pollination_sdk/models/task_reference.py index af2fb11b..6755b07a 100644 --- a/pollination_sdk/models/task_reference.py +++ b/pollination_sdk/models/task_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_return.py b/pollination_sdk/models/task_return.py index d5eb4b5e..5b661829 100644 --- a/pollination_sdk/models/task_return.py +++ b/pollination_sdk/models/task_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team.py b/pollination_sdk/models/team.py index 0fd3fb1f..874a4522 100644 --- a/pollination_sdk/models/team.py +++ b/pollination_sdk/models/team.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_create.py b/pollination_sdk/models/team_create.py index ba83a899..0b5d41c1 100644 --- a/pollination_sdk/models/team_create.py +++ b/pollination_sdk/models/team_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_list.py b/pollination_sdk/models/team_list.py index d624fb3e..e3db1c5a 100644 --- a/pollination_sdk/models/team_list.py +++ b/pollination_sdk/models/team_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_member.py b/pollination_sdk/models/team_member.py index ca09976e..39ae1fa5 100644 --- a/pollination_sdk/models/team_member.py +++ b/pollination_sdk/models/team_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_member_list.py b/pollination_sdk/models/team_member_list.py index e7ed8078..185d8f7c 100644 --- a/pollination_sdk/models/team_member_list.py +++ b/pollination_sdk/models/team_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_role_enum.py b/pollination_sdk/models/team_role_enum.py index 16489a92..9582811b 100644 --- a/pollination_sdk/models/team_role_enum.py +++ b/pollination_sdk/models/team_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_update.py b/pollination_sdk/models/team_update.py index 2f3cee45..5db2c772 100644 --- a/pollination_sdk/models/team_update.py +++ b/pollination_sdk/models/team_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/template_function.py b/pollination_sdk/models/template_function.py index eff68645..b4f85ac9 100644 --- a/pollination_sdk/models/template_function.py +++ b/pollination_sdk/models/template_function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/update_accepted.py b/pollination_sdk/models/update_accepted.py index 8506e228..b43c6beb 100644 --- a/pollination_sdk/models/update_accepted.py +++ b/pollination_sdk/models/update_accepted.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/usage.py b/pollination_sdk/models/usage.py index 19131cb1..bb72a534 100644 --- a/pollination_sdk/models/usage.py +++ b/pollination_sdk/models/usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_create.py b/pollination_sdk/models/user_create.py index 176599e3..6a6faa8a 100644 --- a/pollination_sdk/models/user_create.py +++ b/pollination_sdk/models/user_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_permission.py b/pollination_sdk/models/user_permission.py index 108dbf55..72487089 100644 --- a/pollination_sdk/models/user_permission.py +++ b/pollination_sdk/models/user_permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_private.py b/pollination_sdk/models/user_private.py index 51054740..1afe8814 100644 --- a/pollination_sdk/models/user_private.py +++ b/pollination_sdk/models/user_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_public.py b/pollination_sdk/models/user_public.py index 4be7f993..7e55430b 100644 --- a/pollination_sdk/models/user_public.py +++ b/pollination_sdk/models/user_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_public_list.py b/pollination_sdk/models/user_public_list.py index a589531b..3f00e7a8 100644 --- a/pollination_sdk/models/user_public_list.py +++ b/pollination_sdk/models/user_public_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_update.py b/pollination_sdk/models/user_update.py index f6e82602..1d08e435 100644 --- a/pollination_sdk/models/user_update.py +++ b/pollination_sdk/models/user_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/validation_error.py b/pollination_sdk/models/validation_error.py index 8a4c57bd..9a5ad5f1 100644 --- a/pollination_sdk/models/validation_error.py +++ b/pollination_sdk/models/validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_file_reference.py b/pollination_sdk/models/value_file_reference.py index 4e73ab2f..217e857d 100644 --- a/pollination_sdk/models/value_file_reference.py +++ b/pollination_sdk/models/value_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_folder_reference.py b/pollination_sdk/models/value_folder_reference.py index aaf06272..885788a3 100644 --- a/pollination_sdk/models/value_folder_reference.py +++ b/pollination_sdk/models/value_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_list_reference.py b/pollination_sdk/models/value_list_reference.py index ba58dda9..74713df5 100644 --- a/pollination_sdk/models/value_list_reference.py +++ b/pollination_sdk/models/value_list_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_reference.py b/pollination_sdk/models/value_reference.py index 041cac02..e1cfa626 100644 --- a/pollination_sdk/models/value_reference.py +++ b/pollination_sdk/models/value_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/rest.py b/pollination_sdk/rest.py index ab5b16da..3c22f84c 100644 --- a/pollination_sdk/rest.py +++ b/pollination_sdk/rest.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index e9870ed9..3e0ddc84 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "pollination-sdk" -VERSION = "0.43.0" +VERSION = "0.47.0" # To install the library, run the following # # python setup.py install diff --git a/test-requirements.txt b/test-requirements.txt index d655da23..7e0a9822 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -3,5 +3,5 @@ nose>=1.3.7 pluggy>=0.3.1 py>=1.4.31 randomize>=0.13 -wheel==0.33.6 -twine>=4.0.2 +twine==1.13.0 +wheel==0.33.6 \ No newline at end of file diff --git a/test/test_accessor.py b/test/test_accessor.py index 7d57bb9f..9b27ada3 100644 --- a/test/test_accessor.py +++ b/test/test_accessor.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_account_public.py b/test/test_account_public.py index 1ca60f70..4af81617 100644 --- a/test/test_account_public.py +++ b/test/test_account_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_account_type.py b/test/test_account_type.py index ad344894..b0a6416d 100644 --- a/test/test_account_type.py +++ b/test/test_account_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_accounts_api.py b/test/test_accounts_api.py index 5e0f5dec..32c4df93 100644 --- a/test/test_accounts_api.py +++ b/test/test_accounts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_activation.py b/test/test_activation.py index 63e3761e..26e8620e 100644 --- a/test/test_activation.py +++ b/test/test_activation.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_activation_list.py b/test/test_activation_list.py index 0560e34f..2a22f50b 100644 --- a/test/test_activation_list.py +++ b/test/test_activation_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token.py b/test/test_api_token.py index d3fed381..a317dbce 100644 --- a/test/test_api_token.py +++ b/test/test_api_token.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token_create.py b/test/test_api_token_create.py index 979d1224..58e31f23 100644 --- a/test/test_api_token_create.py +++ b/test/test_api_token_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token_list.py b/test/test_api_token_list.py index 3b232d6a..94dccc39 100644 --- a/test/test_api_token_list.py +++ b/test/test_api_token_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token_private.py b/test/test_api_token_private.py index 7e14259a..7eea5a1c 100644 --- a/test/test_api_token_private.py +++ b/test/test_api_token_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_tokens_api.py b/test/test_api_tokens_api.py index 473fff35..27262561 100644 --- a/test/test_api_tokens_api.py +++ b/test/test_api_tokens_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application.py b/test/test_application.py index 836e310e..768972a1 100644 --- a/test/test_application.py +++ b/test/test_application.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -39,6 +39,7 @@ def make_instance(self, include_optional): return Application( deployment_config = null, description = '0', + has_been_deployed = True, id = '50bb7fe0-8f19-499e-972e-1ebec8af2c71', image = 'https://picsum.photos/400', is_paid = True, @@ -53,10 +54,12 @@ def make_instance(self, include_optional): public = True, sdk = null, slug = 'application-falcon', - source = '0' + source = '0', + url = '0' ) else : return Application( + has_been_deployed = True, id = '50bb7fe0-8f19-499e-972e-1ebec8af2c71', name = 'Application Falcon', owner = null, diff --git a/test/test_application_access_policy.py b/test/test_application_access_policy.py index b6d4c4cc..22fbc5e8 100644 --- a/test/test_application_access_policy.py +++ b/test/test_application_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_access_policy_list.py b/test/test_application_access_policy_list.py index 23952d60..77a6e776 100644 --- a/test/test_application_access_policy_list.py +++ b/test/test_application_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_create.py b/test/test_application_create.py index 7e0e1485..e79777e2 100644 --- a/test/test_application_create.py +++ b/test/test_application_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_deployment.py b/test/test_application_deployment.py index 1bc6be84..9e332c7f 100644 --- a/test/test_application_deployment.py +++ b/test/test_application_deployment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_list.py b/test/test_application_list.py index 68acf0dc..6c9d6e15 100644 --- a/test/test_application_list.py +++ b/test/test_application_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -45,6 +45,7 @@ def make_instance(self, include_optional): pollination_sdk.models.application.Application( deployment_config = null, description = '0', + has_been_deployed = True, id = '50bb7fe0-8f19-499e-972e-1ebec8af2c71', image = 'https://picsum.photos/400', is_paid = True, @@ -59,7 +60,8 @@ def make_instance(self, include_optional): public = True, sdk = null, slug = 'application-falcon', - source = '0', ) + source = '0', + url = '0', ) ], total_count = 56 ) @@ -72,6 +74,7 @@ def make_instance(self, include_optional): pollination_sdk.models.application.Application( deployment_config = null, description = '0', + has_been_deployed = True, id = '50bb7fe0-8f19-499e-972e-1ebec8af2c71', image = 'https://picsum.photos/400', is_paid = True, @@ -86,7 +89,8 @@ def make_instance(self, include_optional): public = True, sdk = null, slug = 'application-falcon', - source = '0', ) + source = '0', + url = '0', ) ], total_count = 56, ) diff --git a/test/test_application_policy_subject.py b/test/test_application_policy_subject.py index 84373b6d..4493cf2b 100644 --- a/test/test_application_policy_subject.py +++ b/test/test_application_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_sort_key.py b/test/test_application_sort_key.py index 9d729f16..987c29a7 100644 --- a/test/test_application_sort_key.py +++ b/test/test_application_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_update.py b/test/test_application_update.py index 565b7d1c..46e5b5a7 100644 --- a/test/test_application_update.py +++ b/test/test_application_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_version.py b/test/test_application_version.py index cbec988d..59d0ec78 100644 --- a/test/test_application_version.py +++ b/test/test_application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_version_list.py b/test/test_application_version_list.py index de0a3657..06ed1ea0 100644 --- a/test/test_application_version_list.py +++ b/test/test_application_version_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_applications_api.py b/test/test_applications_api.py index 349ec2ca..a3b77f46 100644 --- a/test/test_applications_api.py +++ b/test/test_applications_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_artifacts_api.py b/test/test_artifacts_api.py index a2d9b6a6..56296cab 100644 --- a/test/test_artifacts_api.py +++ b/test/test_artifacts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_baked_recipe.py b/test/test_baked_recipe.py index 07457e40..c934d44c 100644 --- a/test/test_baked_recipe.py +++ b/test/test_baked_recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_billing_info.py b/test/test_billing_info.py index a048104d..92521987 100644 --- a/test/test_billing_info.py +++ b/test/test_billing_info.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_billing_option.py b/test/test_billing_option.py index 97c08254..9c05922c 100644 --- a/test/test_billing_option.py +++ b/test/test_billing_option.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_body_cython_function_or_method_owner_plugins_post.py b/test/test_body_cython_function_or_method_owner_plugins_post.py index 4175be3f..3821ff5c 100644 --- a/test/test_body_cython_function_or_method_owner_plugins_post.py +++ b/test/test_body_cython_function_or_method_owner_plugins_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_body_post_recipe_owner_recipes_post.py b/test/test_body_post_recipe_owner_recipes_post.py index c2fb2c43..1269c4b3 100644 --- a/test/test_body_post_recipe_owner_recipes_post.py +++ b/test/test_body_post_recipe_owner_recipes_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_build_status.py b/test/test_build_status.py index daec10d2..2ac35fe4 100644 --- a/test/test_build_status.py +++ b/test/test_build_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_build_status_enum.py b/test/test_build_status_enum.py index cbd4bf83..a9d265ae 100644 --- a/test/test_build_status_enum.py +++ b/test/test_build_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_card_type.py b/test/test_card_type.py index 19b27852..516d4d86 100644 --- a/test/test_card_type.py +++ b/test/test_card_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_cloud_job.py b/test/test_cloud_job.py index 3c0de3a3..17094d69 100644 --- a/test/test_cloud_job.py +++ b/test/test_cloud_job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_cloud_job_list.py b/test/test_cloud_job_list.py index c8d7b92f..82bbec34 100644 --- a/test/test_cloud_job_list.py +++ b/test/test_cloud_job_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_created_content.py b/test/test_created_content.py index 924811e3..26bddec8 100644 --- a/test/test_created_content.py +++ b/test/test_created_content.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag.py b/test/test_dag.py index 242e01c4..94ffa5d7 100644 --- a/test/test_dag.py +++ b/test/test_dag.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_input.py b/test/test_dag_array_input.py index 7f1b4686..6f18d53f 100644 --- a/test/test_dag_array_input.py +++ b/test/test_dag_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_input_alias.py b/test/test_dag_array_input_alias.py index 6f69694e..42eb55ed 100644 --- a/test/test_dag_array_input_alias.py +++ b/test/test_dag_array_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_output.py b/test/test_dag_array_output.py index 9b5c1f2c..ee0b73cf 100644 --- a/test/test_dag_array_output.py +++ b/test/test_dag_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_output_alias.py b/test/test_dag_array_output_alias.py index ae2a00df..ba948fd0 100644 --- a/test/test_dag_array_output_alias.py +++ b/test/test_dag_array_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_input.py b/test/test_dag_boolean_input.py index 6e30fdc1..a48ceca9 100644 --- a/test/test_dag_boolean_input.py +++ b/test/test_dag_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_input_alias.py b/test/test_dag_boolean_input_alias.py index 03ccebe6..25cdef26 100644 --- a/test/test_dag_boolean_input_alias.py +++ b/test/test_dag_boolean_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_output.py b/test/test_dag_boolean_output.py index 02cbe529..a4e34a63 100644 --- a/test/test_dag_boolean_output.py +++ b/test/test_dag_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_output_alias.py b/test/test_dag_boolean_output_alias.py index 1f4f9abd..45c22e6d 100644 --- a/test/test_dag_boolean_output_alias.py +++ b/test/test_dag_boolean_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_input.py b/test/test_dag_file_input.py index e7c6f531..26e99328 100644 --- a/test/test_dag_file_input.py +++ b/test/test_dag_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_input_alias.py b/test/test_dag_file_input_alias.py index 13c5b3c2..b62ae940 100644 --- a/test/test_dag_file_input_alias.py +++ b/test/test_dag_file_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_output.py b/test/test_dag_file_output.py index ca87f87b..81942ca2 100644 --- a/test/test_dag_file_output.py +++ b/test/test_dag_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_output_alias.py b/test/test_dag_file_output_alias.py index 8e32067a..891fb916 100644 --- a/test/test_dag_file_output_alias.py +++ b/test/test_dag_file_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_input.py b/test/test_dag_folder_input.py index 6d2a612d..fa4b6b8c 100644 --- a/test/test_dag_folder_input.py +++ b/test/test_dag_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_input_alias.py b/test/test_dag_folder_input_alias.py index 84a5f742..f465d505 100644 --- a/test/test_dag_folder_input_alias.py +++ b/test/test_dag_folder_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_output.py b/test/test_dag_folder_output.py index 99499b88..e353056c 100644 --- a/test/test_dag_folder_output.py +++ b/test/test_dag_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_output_alias.py b/test/test_dag_folder_output_alias.py index b89f895c..6b25a86a 100644 --- a/test/test_dag_folder_output_alias.py +++ b/test/test_dag_folder_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_input.py b/test/test_dag_generic_input.py index ba8e21ae..0356be8d 100644 --- a/test/test_dag_generic_input.py +++ b/test/test_dag_generic_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_input_alias.py b/test/test_dag_generic_input_alias.py index a47f9e97..4d8b22b9 100644 --- a/test/test_dag_generic_input_alias.py +++ b/test/test_dag_generic_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_output.py b/test/test_dag_generic_output.py index bfe7a659..f4d24430 100644 --- a/test/test_dag_generic_output.py +++ b/test/test_dag_generic_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_output_alias.py b/test/test_dag_generic_output_alias.py index f25ac764..e3e919d3 100644 --- a/test/test_dag_generic_output_alias.py +++ b/test/test_dag_generic_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_input.py b/test/test_dag_integer_input.py index ebe24baa..8db6842f 100644 --- a/test/test_dag_integer_input.py +++ b/test/test_dag_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_input_alias.py b/test/test_dag_integer_input_alias.py index 09844704..4ac03f3f 100644 --- a/test/test_dag_integer_input_alias.py +++ b/test/test_dag_integer_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_output.py b/test/test_dag_integer_output.py index 2a088a66..0aafc20d 100644 --- a/test/test_dag_integer_output.py +++ b/test/test_dag_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_output_alias.py b/test/test_dag_integer_output_alias.py index 0dbdd4fd..5a30c5e8 100644 --- a/test/test_dag_integer_output_alias.py +++ b/test/test_dag_integer_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_linked_input_alias.py b/test/test_dag_linked_input_alias.py index ffddeae9..482c61d1 100644 --- a/test/test_dag_linked_input_alias.py +++ b/test/test_dag_linked_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_linked_output_alias.py b/test/test_dag_linked_output_alias.py index 52f69f72..d34e2bc4 100644 --- a/test/test_dag_linked_output_alias.py +++ b/test/test_dag_linked_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_input.py b/test/test_dag_number_input.py index 1b1414d1..efe59d0e 100644 --- a/test/test_dag_number_input.py +++ b/test/test_dag_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_input_alias.py b/test/test_dag_number_input_alias.py index 1def4b1e..bffc2fe5 100644 --- a/test/test_dag_number_input_alias.py +++ b/test/test_dag_number_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_output.py b/test/test_dag_number_output.py index 6fbc294b..be6ee8b8 100644 --- a/test/test_dag_number_output.py +++ b/test/test_dag_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_output_alias.py b/test/test_dag_number_output_alias.py index 1cb7765f..94863f67 100644 --- a/test/test_dag_number_output_alias.py +++ b/test/test_dag_number_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_input.py b/test/test_dag_path_input.py index 1d7ff42f..646f6e91 100644 --- a/test/test_dag_path_input.py +++ b/test/test_dag_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_input_alias.py b/test/test_dag_path_input_alias.py index fc0decfe..3fdd022f 100644 --- a/test/test_dag_path_input_alias.py +++ b/test/test_dag_path_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_output.py b/test/test_dag_path_output.py index e46c4448..0effccb5 100644 --- a/test/test_dag_path_output.py +++ b/test/test_dag_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_output_alias.py b/test/test_dag_path_output_alias.py index 621b7167..57c5adf4 100644 --- a/test/test_dag_path_output_alias.py +++ b/test/test_dag_path_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_input.py b/test/test_dag_string_input.py index 10cdf00c..222fe20d 100644 --- a/test/test_dag_string_input.py +++ b/test/test_dag_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_input_alias.py b/test/test_dag_string_input_alias.py index ce84b34e..3173b59e 100644 --- a/test/test_dag_string_input_alias.py +++ b/test/test_dag_string_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_output.py b/test/test_dag_string_output.py index 04d77f5d..8c364ce8 100644 --- a/test/test_dag_string_output.py +++ b/test/test_dag_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_output_alias.py b/test/test_dag_string_output_alias.py index 8cbb0f72..271f5d42 100644 --- a/test/test_dag_string_output_alias.py +++ b/test/test_dag_string_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_task.py b/test/test_dag_task.py index 1a61d8d6..2eb08c35 100644 --- a/test/test_dag_task.py +++ b/test/test_dag_task.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_task_loop.py b/test/test_dag_task_loop.py index 7b3b3c79..66a7fc02 100644 --- a/test/test_dag_task_loop.py +++ b/test/test_dag_task_loop.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_input.py b/test/test_dagjson_object_input.py index 47497e99..867219c8 100644 --- a/test/test_dagjson_object_input.py +++ b/test/test_dagjson_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_input_alias.py b/test/test_dagjson_object_input_alias.py index b0679c74..003908a9 100644 --- a/test/test_dagjson_object_input_alias.py +++ b/test/test_dagjson_object_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_output.py b/test/test_dagjson_object_output.py index 51fc171f..ebe5eb1d 100644 --- a/test/test_dagjson_object_output.py +++ b/test/test_dagjson_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_output_alias.py b/test/test_dagjson_object_output_alias.py index 309421de..6d85b3dc 100644 --- a/test/test_dagjson_object_output_alias.py +++ b/test/test_dagjson_object_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_daily_usage.py b/test/test_daily_usage.py index 4b632898..9cd0c10f 100644 --- a/test/test_daily_usage.py +++ b/test/test_daily_usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dependency.py b/test/test_dependency.py index ae8ca494..315a34f1 100644 --- a/test/test_dependency.py +++ b/test/test_dependency.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dependency_kind.py b/test/test_dependency_kind.py index c693b722..a2d843ff 100644 --- a/test/test_dependency_kind.py +++ b/test/test_dependency_kind.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_deployment_config.py b/test/test_deployment_config.py index 720bd584..89c40910 100644 --- a/test/test_deployment_config.py +++ b/test/test_deployment_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_docker_config.py b/test/test_docker_config.py index e008f554..03c3b629 100644 --- a/test/test_docker_config.py +++ b/test/test_docker_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_file_meta.py b/test/test_file_meta.py index fada6ea8..855480a5 100644 --- a/test/test_file_meta.py +++ b/test/test_file_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_file_reference.py b/test/test_file_reference.py index d2175895..be77f1b3 100644 --- a/test/test_file_reference.py +++ b/test/test_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_folder_reference.py b/test/test_folder_reference.py index 7205f466..c59735be 100644 --- a/test/test_folder_reference.py +++ b/test/test_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function.py b/test/test_function.py index 3cbb1344..86e04dde 100644 --- a/test/test_function.py +++ b/test/test_function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_array_input.py b/test/test_function_array_input.py index b4005b12..28b60dbe 100644 --- a/test/test_function_array_input.py +++ b/test/test_function_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_array_output.py b/test/test_function_array_output.py index 85f83de8..24b87a74 100644 --- a/test/test_function_array_output.py +++ b/test/test_function_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_boolean_input.py b/test/test_function_boolean_input.py index 02a29b16..42d6b3c3 100644 --- a/test/test_function_boolean_input.py +++ b/test/test_function_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_boolean_output.py b/test/test_function_boolean_output.py index 628ef1bf..b4424678 100644 --- a/test/test_function_boolean_output.py +++ b/test/test_function_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_file_input.py b/test/test_function_file_input.py index 44bee2f4..02894b2e 100644 --- a/test/test_function_file_input.py +++ b/test/test_function_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_file_output.py b/test/test_function_file_output.py index 4257bab8..d27226e2 100644 --- a/test/test_function_file_output.py +++ b/test/test_function_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_folder_input.py b/test/test_function_folder_input.py index 90b0a3de..e2cec4c9 100644 --- a/test/test_function_folder_input.py +++ b/test/test_function_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_folder_output.py b/test/test_function_folder_output.py index f1fd16b6..670c602f 100644 --- a/test/test_function_folder_output.py +++ b/test/test_function_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_integer_input.py b/test/test_function_integer_input.py index 4527ac87..13e61977 100644 --- a/test/test_function_integer_input.py +++ b/test/test_function_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_integer_output.py b/test/test_function_integer_output.py index 4707a037..593a5fbf 100644 --- a/test/test_function_integer_output.py +++ b/test/test_function_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_json_object_input.py b/test/test_function_json_object_input.py index c9556700..d2a02e5a 100644 --- a/test/test_function_json_object_input.py +++ b/test/test_function_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_json_object_output.py b/test/test_function_json_object_output.py index 6fcf8f80..976f17a2 100644 --- a/test/test_function_json_object_output.py +++ b/test/test_function_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_number_input.py b/test/test_function_number_input.py index 587b5caf..7ec4e111 100644 --- a/test/test_function_number_input.py +++ b/test/test_function_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_number_output.py b/test/test_function_number_output.py index 30b2b21f..4437a5b7 100644 --- a/test/test_function_number_output.py +++ b/test/test_function_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_path_input.py b/test/test_function_path_input.py index e168ea53..7a79c979 100644 --- a/test/test_function_path_input.py +++ b/test/test_function_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_path_output.py b/test/test_function_path_output.py index d4b6d9c7..289c0f1a 100644 --- a/test/test_function_path_output.py +++ b/test/test_function_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_string_input.py b/test/test_function_string_input.py index c77c6aa7..fde1e6bb 100644 --- a/test/test_function_string_input.py +++ b/test/test_function_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_string_output.py b/test/test_function_string_output.py index d09b6d75..6ebbbd9a 100644 --- a/test/test_function_string_output.py +++ b/test/test_function_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_http.py b/test/test_http.py index f358be29..99184e64 100644 --- a/test/test_http.py +++ b/test/test_http.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_http_validation_error.py b/test/test_http_validation_error.py index d6510cc4..334ec8cc 100644 --- a/test/test_http_validation_error.py +++ b/test/test_http_validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_file_reference.py b/test/test_input_file_reference.py index b6c86374..c2b7b85c 100644 --- a/test/test_input_file_reference.py +++ b/test/test_input_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_folder_reference.py b/test/test_input_folder_reference.py index 444481d2..0dd4f48e 100644 --- a/test/test_input_folder_reference.py +++ b/test/test_input_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_path_reference.py b/test/test_input_path_reference.py index 92e4a554..48065329 100644 --- a/test/test_input_path_reference.py +++ b/test/test_input_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_reference.py b/test/test_input_reference.py index e1a4c03d..2141225c 100644 --- a/test/test_input_reference.py +++ b/test/test_input_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_io_alias_handler.py b/test/test_io_alias_handler.py index 30fd5979..0010ddab 100644 --- a/test/test_io_alias_handler.py +++ b/test/test_io_alias_handler.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_item_reference.py b/test/test_item_reference.py index 4e9d2641..07eeff95 100644 --- a/test/test_item_reference.py +++ b/test/test_item_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_item_type.py b/test/test_item_type.py index d07c8ed9..39467e9b 100644 --- a/test/test_item_type.py +++ b/test/test_item_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job.py b/test/test_job.py index 38b4acbf..aecbc662 100644 --- a/test/test_job.py +++ b/test/test_job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_argument.py b/test/test_job_argument.py index a5129beb..b4d7b972 100644 --- a/test/test_job_argument.py +++ b/test/test_job_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_path_argument.py b/test/test_job_path_argument.py index d080b61d..e03c12dc 100644 --- a/test/test_job_path_argument.py +++ b/test/test_job_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_status.py b/test/test_job_status.py index 8536bbe2..340718dc 100644 --- a/test/test_job_status.py +++ b/test/test_job_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_status_enum.py b/test/test_job_status_enum.py index 5018e2a6..26886c71 100644 --- a/test/test_job_status_enum.py +++ b/test/test_job_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_jobs_api.py b/test/test_jobs_api.py index a90d51ae..614981bb 100644 --- a/test/test_jobs_api.py +++ b/test/test_jobs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_key_request.py b/test/test_key_request.py index 8c167e61..db810c14 100644 --- a/test/test_key_request.py +++ b/test/test_key_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license.py b/test/test_license.py index c3041a89..b04760cf 100644 --- a/test/test_license.py +++ b/test/test_license.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_access_policy.py b/test/test_license_pool_access_policy.py index b2a494b8..7a723200 100644 --- a/test/test_license_pool_access_policy.py +++ b/test/test_license_pool_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_access_policy_list.py b/test/test_license_pool_access_policy_list.py index 2cf08dfd..8ee22e7d 100644 --- a/test/test_license_pool_access_policy_list.py +++ b/test/test_license_pool_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_list.py b/test/test_license_pool_list.py index 9e89e9db..681e229c 100644 --- a/test/test_license_pool_list.py +++ b/test/test_license_pool_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_policy_subject.py b/test/test_license_pool_policy_subject.py index 61c7307b..570674cb 100644 --- a/test/test_license_pool_policy_subject.py +++ b/test/test_license_pool_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_policy_subject_list.py b/test/test_license_pool_policy_subject_list.py index 13a664e2..c1fea4d8 100644 --- a/test/test_license_pool_policy_subject_list.py +++ b/test/test_license_pool_policy_subject_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_public.py b/test/test_license_pool_public.py index dcb37349..ff371c52 100644 --- a/test/test_license_pool_public.py +++ b/test/test_license_pool_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_update.py b/test/test_license_pool_update.py index 98530ca9..b0b95eba 100644 --- a/test/test_license_pool_update.py +++ b/test/test_license_pool_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_public.py b/test/test_license_public.py index b8969a90..fbd08b76 100644 --- a/test/test_license_public.py +++ b/test/test_license_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_type.py b/test/test_license_type.py index 8a22cd94..a456d088 100644 --- a/test/test_license_type.py +++ b/test/test_license_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_licenses_api.py b/test/test_licenses_api.py index 65cad026..b1d8d10e 100644 --- a/test/test_licenses_api.py +++ b/test/test_licenses_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_local_config.py b/test/test_local_config.py index a11f0646..15d91286 100644 --- a/test/test_local_config.py +++ b/test/test_local_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_location.py b/test/test_location.py index 716900bd..4fd00a0d 100644 --- a/test/test_location.py +++ b/test/test_location.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_maintainer.py b/test/test_maintainer.py index c31f4e9e..e118cc15 100644 --- a/test/test_maintainer.py +++ b/test/test_maintainer.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_meta_data.py b/test/test_meta_data.py index fce116dc..677937d2 100644 --- a/test/test_meta_data.py +++ b/test/test_meta_data.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_metadata.py b/test/test_metadata.py index df182506..7249d081 100644 --- a/test/test_metadata.py +++ b/test/test_metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_new_application_version.py b/test/test_new_application_version.py index 66b4e2b3..a49a4686 100644 --- a/test/test_new_application_version.py +++ b/test/test_new_application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_new_plugin_package.py b/test/test_new_plugin_package.py index 3db78233..43037dab 100644 --- a/test/test_new_plugin_package.py +++ b/test/test_new_plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_new_recipe_package.py b/test/test_new_recipe_package.py index 52751e20..54e74c10 100644 --- a/test/test_new_recipe_package.py +++ b/test/test_new_recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization.py b/test/test_organization.py index 6d0d99a5..cda82011 100644 --- a/test/test_organization.py +++ b/test/test_organization.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_create.py b/test/test_organization_create.py index abfa22d6..87f30a13 100644 --- a/test/test_organization_create.py +++ b/test/test_organization_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_list.py b/test/test_organization_list.py index 7fd2b694..dd58b108 100644 --- a/test/test_organization_list.py +++ b/test/test_organization_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_member.py b/test/test_organization_member.py index 4a2a8f5b..c678505f 100644 --- a/test/test_organization_member.py +++ b/test/test_organization_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_member_list.py b/test/test_organization_member_list.py index 247c310d..97dd5ff6 100644 --- a/test/test_organization_member_list.py +++ b/test/test_organization_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_role_enum.py b/test/test_organization_role_enum.py index cbb8de67..2ab73f91 100644 --- a/test/test_organization_role_enum.py +++ b/test/test_organization_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_update.py b/test/test_organization_update.py index 6b3dc3dd..059e1567 100644 --- a/test/test_organization_update.py +++ b/test/test_organization_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_orgs_api.py b/test/test_orgs_api.py index de3d1268..925c23a1 100644 --- a/test/test_orgs_api.py +++ b/test/test_orgs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_package_sort_key.py b/test/test_package_sort_key.py index 63352e85..393fdb09 100644 --- a/test/test_package_sort_key.py +++ b/test/test_package_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_package_version.py b/test/test_package_version.py index 70dbddf0..a49cd650 100644 --- a/test/test_package_version.py +++ b/test/test_package_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_paused_reason.py b/test/test_paused_reason.py index 421f98f1..7b40d414 100644 --- a/test/test_paused_reason.py +++ b/test/test_paused_reason.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_pay_link.py b/test/test_pay_link.py index 38f57afc..25e67d1e 100644 --- a/test/test_pay_link.py +++ b/test/test_pay_link.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_payment.py b/test/test_payment.py index cf96c03d..a7d836fb 100644 --- a/test/test_payment.py +++ b/test/test_payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_payment_method.py b/test/test_payment_method.py index 621a6986..4b782b4b 100644 --- a/test/test_payment_method.py +++ b/test/test_payment_method.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_payment_method_enum.py b/test/test_payment_method_enum.py index 91d9c123..33244822 100644 --- a/test/test_payment_method_enum.py +++ b/test/test_payment_method_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_permission.py b/test/test_permission.py index 1beab8e1..aed1e258 100644 --- a/test/test_permission.py +++ b/test/test_permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plan_type.py b/test/test_plan_type.py index f3bb9881..954ad016 100644 --- a/test/test_plan_type.py +++ b/test/test_plan_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin.py b/test/test_plugin.py index a9d93a56..3e5bb62b 100644 --- a/test/test_plugin.py +++ b/test/test_plugin.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin_config.py b/test/test_plugin_config.py index 79f13ac7..b074f724 100644 --- a/test/test_plugin_config.py +++ b/test/test_plugin_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin_package.py b/test/test_plugin_package.py index eef27ddf..fb892118 100644 --- a/test/test_plugin_package.py +++ b/test/test_plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin_package_list.py b/test/test_plugin_package_list.py index 8b11f9fa..42d5e271 100644 --- a/test/test_plugin_package_list.py +++ b/test/test_plugin_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugins_api.py b/test/test_plugins_api.py index eed72113..6023345c 100644 --- a/test/test_plugins_api.py +++ b/test/test_plugins_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_policy_subject.py b/test/test_policy_subject.py index bea93ed7..6b00b424 100644 --- a/test/test_policy_subject.py +++ b/test/test_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project.py b/test/test_project.py index 44eede90..69b37f7b 100644 --- a/test/test_project.py +++ b/test/test_project.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_access_policy.py b/test/test_project_access_policy.py index 8ef43426..6724ee3a 100644 --- a/test/test_project_access_policy.py +++ b/test/test_project_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_access_policy_list.py b/test/test_project_access_policy_list.py index 2f0a295a..b70d6ad0 100644 --- a/test/test_project_access_policy_list.py +++ b/test/test_project_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_create.py b/test/test_project_create.py index 2ea44274..d41ef3e4 100644 --- a/test/test_project_create.py +++ b/test/test_project_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_folder.py b/test/test_project_folder.py index 6c697da0..a1f15148 100644 --- a/test/test_project_folder.py +++ b/test/test_project_folder.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_list.py b/test/test_project_list.py index a6abba4a..a56cdab6 100644 --- a/test/test_project_list.py +++ b/test/test_project_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_policy_subject.py b/test/test_project_policy_subject.py index 7b81aa93..0d523d4e 100644 --- a/test/test_project_policy_subject.py +++ b/test/test_project_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_recipe_filter.py b/test/test_project_recipe_filter.py index 4505e09b..8a69a0d1 100644 --- a/test/test_project_recipe_filter.py +++ b/test/test_project_recipe_filter.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_recipe_filter_list.py b/test/test_project_recipe_filter_list.py index 2a654a3b..b43a5224 100644 --- a/test/test_project_recipe_filter_list.py +++ b/test/test_project_recipe_filter_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_sort_key.py b/test/test_project_sort_key.py index 94f75eba..e6e94bf8 100644 --- a/test/test_project_sort_key.py +++ b/test/test_project_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_update.py b/test/test_project_update.py index e213b127..5b65cff4 100644 --- a/test/test_project_update.py +++ b/test/test_project_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_projects_api.py b/test/test_projects_api.py index 2220f352..e5f1b0a3 100644 --- a/test/test_projects_api.py +++ b/test/test_projects_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_public_account_list.py b/test/test_public_account_list.py index 15380e5a..17ca9101 100644 --- a/test/test_public_account_list.py +++ b/test/test_public_account_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota.py b/test/test_quota.py index c8750f1e..78d145bb 100644 --- a/test/test_quota.py +++ b/test/test_quota.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota_list.py b/test/test_quota_list.py index 217d405c..5deb0fc9 100644 --- a/test/test_quota_list.py +++ b/test/test_quota_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota_plan.py b/test/test_quota_plan.py index 347bf399..f5c7ac8f 100644 --- a/test/test_quota_plan.py +++ b/test/test_quota_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota_type.py b/test/test_quota_type.py index 2f63d63e..85431c33 100644 --- a/test/test_quota_type.py +++ b/test/test_quota_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe.py b/test/test_recipe.py index d3069716..8d9ec1b2 100644 --- a/test/test_recipe.py +++ b/test/test_recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_interface.py b/test/test_recipe_interface.py index 2add6b3e..775e56ad 100644 --- a/test/test_recipe_interface.py +++ b/test/test_recipe_interface.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_interface_list.py b/test/test_recipe_interface_list.py index d40b5c45..baef4cea 100644 --- a/test/test_recipe_interface_list.py +++ b/test/test_recipe_interface_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_package.py b/test/test_recipe_package.py index 0b1a30b8..610809b0 100644 --- a/test/test_recipe_package.py +++ b/test/test_recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_package_list.py b/test/test_recipe_package_list.py index 7a537789..99594fc7 100644 --- a/test/test_recipe_package_list.py +++ b/test/test_recipe_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipes_api.py b/test/test_recipes_api.py index a1ebc6fd..7d11d8d4 100644 --- a/test/test_recipes_api.py +++ b/test/test_recipes_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_registries_api.py b/test/test_registries_api.py index 6582098f..587eda79 100644 --- a/test/test_registries_api.py +++ b/test/test_registries_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository.py b/test/test_repository.py index e742d8e2..a20c9bc8 100644 --- a/test/test_repository.py +++ b/test/test_repository.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_access_policy.py b/test/test_repository_access_policy.py index 0a4894ca..d6edb432 100644 --- a/test/test_repository_access_policy.py +++ b/test/test_repository_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_access_policy_list.py b/test/test_repository_access_policy_list.py index 49c09eac..5ec957bf 100644 --- a/test/test_repository_access_policy_list.py +++ b/test/test_repository_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_create.py b/test/test_repository_create.py index 92249130..4bb89d1d 100644 --- a/test/test_repository_create.py +++ b/test/test_repository_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_index.py b/test/test_repository_index.py index b57177b6..24b0cacd 100644 --- a/test/test_repository_index.py +++ b/test/test_repository_index.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_list.py b/test/test_repository_list.py index 7a95e1e8..83b936a5 100644 --- a/test/test_repository_list.py +++ b/test/test_repository_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_metadata.py b/test/test_repository_metadata.py index 74a40f51..d5dc66f8 100644 --- a/test/test_repository_metadata.py +++ b/test/test_repository_metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_policy_subject.py b/test/test_repository_policy_subject.py index 3fc5bc0f..cf0bfdb7 100644 --- a/test/test_repository_policy_subject.py +++ b/test/test_repository_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_sort_key.py b/test/test_repository_sort_key.py index 7d246e3a..382f258a 100644 --- a/test/test_repository_sort_key.py +++ b/test/test_repository_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_update.py b/test/test_repository_update.py index d1e7ce23..2ed336d6 100644 --- a/test/test_repository_update.py +++ b/test/test_repository_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_user_permissions.py b/test/test_repository_user_permissions.py index 1b0db7e8..2ee29cfb 100644 --- a/test/test_repository_user_permissions.py +++ b/test/test_repository_user_permissions.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_resources_duration.py b/test/test_resources_duration.py index b88e6aa4..3547910d 100644 --- a/test/test_resources_duration.py +++ b/test/test_resources_duration.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_retry_config.py b/test/test_retry_config.py index ff602d44..075b63d7 100644 --- a/test/test_retry_config.py +++ b/test/test_retry_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_role_enum.py b/test/test_role_enum.py index ce0931a2..1f1424b4 100644 --- a/test/test_role_enum.py +++ b/test/test_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run.py b/test/test_run.py index 20726bad..55f77b6f 100644 --- a/test/test_run.py +++ b/test/test_run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_list.py b/test/test_run_list.py index 68f395ab..74466611 100644 --- a/test/test_run_list.py +++ b/test/test_run_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_meta.py b/test/test_run_meta.py index d745633c..3ece1385 100644 --- a/test/test_run_meta.py +++ b/test/test_run_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_progress.py b/test/test_run_progress.py index b004d755..0e079549 100644 --- a/test/test_run_progress.py +++ b/test/test_run_progress.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_result_list.py b/test/test_run_result_list.py index 807fc011..94bd6cef 100644 --- a/test/test_run_result_list.py +++ b/test/test_run_result_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_status.py b/test/test_run_status.py index db199651..68fb93ff 100644 --- a/test/test_run_status.py +++ b/test/test_run_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_status_enum.py b/test/test_run_status_enum.py index 872dc742..b6e40376 100644 --- a/test/test_run_status_enum.py +++ b/test/test_run_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_runs_api.py b/test/test_runs_api.py index c06fb6b4..dc23be0f 100644 --- a/test/test_runs_api.py +++ b/test/test_runs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_s3.py b/test/test_s3.py index f0483f1f..2f3b2883 100644 --- a/test/test_s3.py +++ b/test/test_s3.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_s3_upload_request.py b/test/test_s3_upload_request.py index 9687d209..1f2d1035 100644 --- a/test/test_s3_upload_request.py +++ b/test/test_s3_upload_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_scripting_languages.py b/test/test_scripting_languages.py index d14d33bd..a23d63b4 100644 --- a/test/test_scripting_languages.py +++ b/test/test_scripting_languages.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_sdk_enum.py b/test/test_sdk_enum.py index cd11bdee..31149019 100644 --- a/test/test_sdk_enum.py +++ b/test/test_sdk_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_sort_enum.py b/test/test_sort_enum.py index 87605a30..e61947a6 100644 --- a/test/test_sort_enum.py +++ b/test/test_sort_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_status_type.py b/test/test_status_type.py index f9c31410..4a75fbcd 100644 --- a/test/test_status_type.py +++ b/test/test_status_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_array_input.py b/test/test_step_array_input.py index 92ff88f5..ce943c2b 100644 --- a/test/test_step_array_input.py +++ b/test/test_step_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_array_output.py b/test/test_step_array_output.py index 6ba78187..1bd62f17 100644 --- a/test/test_step_array_output.py +++ b/test/test_step_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_boolean_input.py b/test/test_step_boolean_input.py index 8a503520..b53dab31 100644 --- a/test/test_step_boolean_input.py +++ b/test/test_step_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_boolean_output.py b/test/test_step_boolean_output.py index 9b7832a8..ec536a4c 100644 --- a/test/test_step_boolean_output.py +++ b/test/test_step_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_file_input.py b/test/test_step_file_input.py index 776259b0..4349bbc0 100644 --- a/test/test_step_file_input.py +++ b/test/test_step_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_file_output.py b/test/test_step_file_output.py index c8ed8d6a..695d2962 100644 --- a/test/test_step_file_output.py +++ b/test/test_step_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_folder_input.py b/test/test_step_folder_input.py index 2ff22a2b..21f6959e 100644 --- a/test/test_step_folder_input.py +++ b/test/test_step_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_folder_output.py b/test/test_step_folder_output.py index e7b522b3..172fc503 100644 --- a/test/test_step_folder_output.py +++ b/test/test_step_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_integer_input.py b/test/test_step_integer_input.py index de9ab1af..fdee8084 100644 --- a/test/test_step_integer_input.py +++ b/test/test_step_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_integer_output.py b/test/test_step_integer_output.py index b7670214..7728efd5 100644 --- a/test/test_step_integer_output.py +++ b/test/test_step_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_json_object_input.py b/test/test_step_json_object_input.py index 70320548..6bbcf4e3 100644 --- a/test/test_step_json_object_input.py +++ b/test/test_step_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_json_object_output.py b/test/test_step_json_object_output.py index 284c4bcd..00924425 100644 --- a/test/test_step_json_object_output.py +++ b/test/test_step_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_list.py b/test/test_step_list.py index ffcf6852..c5751598 100644 --- a/test/test_step_list.py +++ b/test/test_step_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_number_input.py b/test/test_step_number_input.py index fad0e2ac..b1ca7417 100644 --- a/test/test_step_number_input.py +++ b/test/test_step_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_number_output.py b/test/test_step_number_output.py index 0f36c99b..b10ec403 100644 --- a/test/test_step_number_output.py +++ b/test/test_step_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_path_input.py b/test/test_step_path_input.py index 535daeff..b77b0c44 100644 --- a/test/test_step_path_input.py +++ b/test/test_step_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_path_output.py b/test/test_step_path_output.py index 861fa8ec..eaa270d1 100644 --- a/test/test_step_path_output.py +++ b/test/test_step_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_status.py b/test/test_step_status.py index 4a990c77..ebf1b481 100644 --- a/test/test_step_status.py +++ b/test/test_step_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_status_enum.py b/test/test_step_status_enum.py index de1e7ac3..5cf3a40a 100644 --- a/test/test_step_status_enum.py +++ b/test/test_step_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_string_input.py b/test/test_step_string_input.py index aa6b7465..dc8ad25f 100644 --- a/test/test_step_string_input.py +++ b/test/test_step_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_string_output.py b/test/test_step_string_output.py index 46d77f51..93748247 100644 --- a/test/test_step_string_output.py +++ b/test/test_step_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subject_type.py b/test/test_subject_type.py index b1ae1ec1..7a3224da 100644 --- a/test/test_subject_type.py +++ b/test/test_subject_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription.py b/test/test_subscription.py index e94e62dc..37fa0737 100644 --- a/test/test_subscription.py +++ b/test/test_subscription.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_create.py b/test/test_subscription_create.py index e7f60a22..1936c019 100644 --- a/test/test_subscription_create.py +++ b/test/test_subscription_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_payment.py b/test/test_subscription_payment.py index c57cdb8a..5fa72bdb 100644 --- a/test/test_subscription_payment.py +++ b/test/test_subscription_payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_plan.py b/test/test_subscription_plan.py index a8c46d98..9dcf2f98 100644 --- a/test/test_subscription_plan.py +++ b/test/test_subscription_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_plans_api.py b/test/test_subscription_plans_api.py index 527760f8..dfd7bbe8 100644 --- a/test/test_subscription_plans_api.py +++ b/test/test_subscription_plans_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_update.py b/test/test_subscription_update.py index 6511e89e..345f05e7 100644 --- a/test/test_subscription_update.py +++ b/test/test_subscription_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_update_dry_run.py b/test/test_subscription_update_dry_run.py index d6f2b35e..75c50d70 100644 --- a/test/test_subscription_update_dry_run.py +++ b/test/test_subscription_update_dry_run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscriptions_api.py b/test/test_subscriptions_api.py index 5912cace..9aa4f4b4 100644 --- a/test/test_subscriptions_api.py +++ b/test/test_subscriptions_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_argument.py b/test/test_task_argument.py index 4f3edf6f..9e08fe0c 100644 --- a/test/test_task_argument.py +++ b/test/test_task_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_file_reference.py b/test/test_task_file_reference.py index ade50c3a..9a9cdac1 100644 --- a/test/test_task_file_reference.py +++ b/test/test_task_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_folder_reference.py b/test/test_task_folder_reference.py index 9d0952ff..8e51050d 100644 --- a/test/test_task_folder_reference.py +++ b/test/test_task_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_path_argument.py b/test/test_task_path_argument.py index 178eabc0..8a612b7a 100644 --- a/test/test_task_path_argument.py +++ b/test/test_task_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_path_reference.py b/test/test_task_path_reference.py index 5920de93..bf0dd257 100644 --- a/test/test_task_path_reference.py +++ b/test/test_task_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_path_return.py b/test/test_task_path_return.py index 69712935..5d135ca4 100644 --- a/test/test_task_path_return.py +++ b/test/test_task_path_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_reference.py b/test/test_task_reference.py index 097a3b7f..06dd9f9b 100644 --- a/test/test_task_reference.py +++ b/test/test_task_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_return.py b/test/test_task_return.py index e970e044..c356ddd1 100644 --- a/test/test_task_return.py +++ b/test/test_task_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team.py b/test/test_team.py index 2a3c9aff..e11e232f 100644 --- a/test/test_team.py +++ b/test/test_team.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_create.py b/test/test_team_create.py index 9d47d673..632ade80 100644 --- a/test/test_team_create.py +++ b/test/test_team_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_list.py b/test/test_team_list.py index cc3f821b..b1ed4163 100644 --- a/test/test_team_list.py +++ b/test/test_team_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_member.py b/test/test_team_member.py index ec364c86..71212b96 100644 --- a/test/test_team_member.py +++ b/test/test_team_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_member_list.py b/test/test_team_member_list.py index 18344bfa..8edb499a 100644 --- a/test/test_team_member_list.py +++ b/test/test_team_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_role_enum.py b/test/test_team_role_enum.py index aef62c47..6a5fb6fb 100644 --- a/test/test_team_role_enum.py +++ b/test/test_team_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_update.py b/test/test_team_update.py index 220e14ff..72b571ce 100644 --- a/test/test_team_update.py +++ b/test/test_team_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_teams_api.py b/test/test_teams_api.py index 1be22987..4709e61c 100644 --- a/test/test_teams_api.py +++ b/test/test_teams_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_template_function.py b/test/test_template_function.py index 468788ac..87db0e8f 100644 --- a/test/test_template_function.py +++ b/test/test_template_function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_accepted.py b/test/test_update_accepted.py index 577ffe4b..52f26946 100644 --- a/test/test_update_accepted.py +++ b/test/test_update_accepted.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_usage.py b/test/test_usage.py index 5cd8d1e8..d2cfb5ac 100644 --- a/test/test_usage.py +++ b/test/test_usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_api.py b/test/test_user_api.py index d88c4d8a..e9e0b30d 100644 --- a/test/test_user_api.py +++ b/test/test_user_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_create.py b/test/test_user_create.py index 0ac08109..e37e1033 100644 --- a/test/test_user_create.py +++ b/test/test_user_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_permission.py b/test/test_user_permission.py index 05d054dd..73cba376 100644 --- a/test/test_user_permission.py +++ b/test/test_user_permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_private.py b/test/test_user_private.py index 24f192bd..282912cf 100644 --- a/test/test_user_private.py +++ b/test/test_user_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_public.py b/test/test_user_public.py index a66aa409..fdc329c0 100644 --- a/test/test_user_public.py +++ b/test/test_user_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_public_list.py b/test/test_user_public_list.py index 236af929..33254476 100644 --- a/test/test_user_public_list.py +++ b/test/test_user_public_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_update.py b/test/test_user_update.py index 1bf82031..01513104 100644 --- a/test/test_user_update.py +++ b/test/test_user_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_users_api.py b/test/test_users_api.py index 8573504c..720d768e 100644 --- a/test/test_users_api.py +++ b/test/test_users_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_validation_error.py b/test/test_validation_error.py index 8c638351..bb6001eb 100644 --- a/test/test_validation_error.py +++ b/test/test_validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_file_reference.py b/test/test_value_file_reference.py index a6c1f792..56102ec9 100644 --- a/test/test_value_file_reference.py +++ b/test/test_value_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_folder_reference.py b/test/test_value_folder_reference.py index f41b690f..47ab11d8 100644 --- a/test/test_value_folder_reference.py +++ b/test/test_value_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_list_reference.py b/test/test_value_list_reference.py index 43165a8b..29e6cf81 100644 --- a/test/test_value_list_reference.py +++ b/test/test_value_list_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_reference.py b/test/test_value_reference.py index a1787e8a..cd78d9a2 100644 --- a/test/test_value_reference.py +++ b/test/test_value_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.43.0 + The version of the OpenAPI document: 0.47.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """