From c9979334e41183c076295d2a04b201754dd2ab1c Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Wed, 20 Nov 2024 16:14:34 +0100 Subject: [PATCH 1/8] update openapi-client --- .generation/input/openapi.json | 96 ++++++++++- python/.openapi-generator/FILES | 6 + python/README.md | 9 +- python/geoengine_openapi_client/__init__.py | 2 + .../geoengine_openapi_client/api/user_api.py | 149 +++++++++++++++++- .../geoengine_openapi_client/configuration.py | 4 +- .../models/__init__.py | 2 + .../models/computation_quota.py | 86 ++++++++++ .../models/operator_quota.py | 74 +++++++++ python/test/test_computation_quota.py | 68 ++++++++ python/test/test_operator_quota.py | 56 +++++++ python/test/test_user_api.py | 7 + typescript/dist/apis/UserApi.d.ts | 14 +- typescript/dist/apis/UserApi.js | 44 ++++++ typescript/dist/esm/apis/UserApi.d.ts | 14 +- typescript/dist/esm/apis/UserApi.js | 46 +++++- .../dist/esm/models/ComputationQuota.d.ts | 50 ++++++ .../dist/esm/models/ComputationQuota.js | 53 +++++++ typescript/dist/esm/models/OperatorQuota.d.ts | 37 +++++ typescript/dist/esm/models/OperatorQuota.js | 46 ++++++ typescript/dist/esm/models/index.d.ts | 2 + typescript/dist/esm/models/index.js | 2 + typescript/dist/esm/runtime.js | 2 +- typescript/dist/models/ComputationQuota.d.ts | 50 ++++++ typescript/dist/models/ComputationQuota.js | 60 +++++++ typescript/dist/models/OperatorQuota.d.ts | 37 +++++ typescript/dist/models/OperatorQuota.js | 53 +++++++ typescript/dist/models/index.d.ts | 2 + typescript/dist/models/index.js | 2 + typescript/dist/runtime.js | 2 +- typescript/src/apis/UserApi.ts | 58 +++++++ typescript/src/models/ComputationQuota.ts | 100 ++++++++++++ typescript/src/models/OperatorQuota.ts | 75 +++++++++ typescript/src/models/index.ts | 2 + typescript/src/runtime.ts | 2 +- 35 files changed, 1299 insertions(+), 13 deletions(-) create mode 100644 python/geoengine_openapi_client/models/computation_quota.py create mode 100644 python/geoengine_openapi_client/models/operator_quota.py create mode 100644 python/test/test_computation_quota.py create mode 100644 python/test/test_operator_quota.py create mode 100644 typescript/dist/esm/models/ComputationQuota.d.ts create mode 100644 typescript/dist/esm/models/ComputationQuota.js create mode 100644 typescript/dist/esm/models/OperatorQuota.d.ts create mode 100644 typescript/dist/esm/models/OperatorQuota.js create mode 100644 typescript/dist/models/ComputationQuota.d.ts create mode 100644 typescript/dist/models/ComputationQuota.js create mode 100644 typescript/dist/models/OperatorQuota.d.ts create mode 100644 typescript/dist/models/OperatorQuota.js create mode 100644 typescript/src/models/ComputationQuota.ts create mode 100644 typescript/src/models/OperatorQuota.ts diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 1e26644b..b913d0de 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -15,7 +15,7 @@ }, "servers": [ { - "url": "http://localhost:3030/api" + "url": "http://127.0.0.1:3030/api" } ], "paths": { @@ -3106,6 +3106,54 @@ ] } }, + "/quota/computations": { + "get": { + "tags": [ + "User" + ], + "summary": "Retrieves the quota used by computations", + "operationId": "computations_quota_handler", + "parameters": [ + { + "name": "workflow", + "in": "query", + "required": true, + "schema": { + "$ref": "#/components/schemas/WorkflowId" + } + }, + { + "name": "limit", + "in": "query", + "required": true, + "schema": { + "type": "integer", + "minimum": 0 + } + } + ], + "responses": { + "200": { + "description": "The quota used by computations", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ComputationQuota" + } + } + } + } + } + }, + "security": [ + { + "session_token": [] + } + ] + } + }, "/quotas/{user}": { "get": { "tags": [ @@ -5477,6 +5525,35 @@ } } }, + "ComputationQuota": { + "type": "object", + "required": [ + "timestamp", + "computationId", + "workflowId", + "operators" + ], + "properties": { + "computationId": { + "type": "string", + "format": "uuid" + }, + "operators": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OperatorQuota" + } + }, + "timestamp": { + "type": "string", + "format": "date-time" + }, + "workflowId": { + "type": "string", + "format": "uuid" + } + } + }, "ContinuousMeasurement": { "type": "object", "required": [ @@ -7378,6 +7455,23 @@ } } }, + "OperatorQuota": { + "type": "object", + "required": [ + "operatorPath", + "count" + ], + "properties": { + "count": { + "type": "integer", + "format": "int64", + "minimum": 0 + }, + "operatorPath": { + "type": "string" + } + } + }, "OrderBy": { "type": "string", "enum": [ diff --git a/python/.openapi-generator/FILES b/python/.openapi-generator/FILES index e4e2e0cc..60a50664 100644 --- a/python/.openapi-generator/FILES +++ b/python/.openapi-generator/FILES @@ -20,6 +20,7 @@ docs/CollectionType.md docs/ColorParam.md docs/ColorParamStatic.md docs/Colorizer.md +docs/ComputationQuota.md docs/ContinuousMeasurement.md docs/Coordinate2D.md docs/CreateDataset.md @@ -112,6 +113,7 @@ docs/OgrSourceTimeFormat.md docs/OgrSourceTimeFormatAuto.md docs/OgrSourceTimeFormatCustom.md docs/OgrSourceTimeFormatUnixTimeStamp.md +docs/OperatorQuota.md docs/OrderBy.md docs/PaletteColorizer.md docs/Permission.md @@ -276,6 +278,7 @@ geoengine_openapi_client/models/collection_type.py geoengine_openapi_client/models/color_param.py geoengine_openapi_client/models/color_param_static.py geoengine_openapi_client/models/colorizer.py +geoengine_openapi_client/models/computation_quota.py geoengine_openapi_client/models/continuous_measurement.py geoengine_openapi_client/models/coordinate2_d.py geoengine_openapi_client/models/create_dataset.py @@ -361,6 +364,7 @@ geoengine_openapi_client/models/ogr_source_time_format.py geoengine_openapi_client/models/ogr_source_time_format_auto.py geoengine_openapi_client/models/ogr_source_time_format_custom.py geoengine_openapi_client/models/ogr_source_time_format_unix_time_stamp.py +geoengine_openapi_client/models/operator_quota.py geoengine_openapi_client/models/order_by.py geoengine_openapi_client/models/palette_colorizer.py geoengine_openapi_client/models/permission.py @@ -502,6 +506,7 @@ test/test_collection_type.py test/test_color_param.py test/test_color_param_static.py test/test_colorizer.py +test/test_computation_quota.py test/test_continuous_measurement.py test/test_coordinate2_d.py test/test_create_dataset.py @@ -594,6 +599,7 @@ test/test_ogr_source_time_format.py test/test_ogr_source_time_format_auto.py test/test_ogr_source_time_format_custom.py test/test_ogr_source_time_format_unix_time_stamp.py +test/test_operator_quota.py test/test_order_by.py test/test_palette_colorizer.py test/test_permission.py diff --git a/python/README.md b/python/README.md index 330eba85..8520041b 100644 --- a/python/README.md +++ b/python/README.md @@ -55,10 +55,10 @@ import geoengine_openapi_client from geoengine_openapi_client.rest import ApiException from pprint import pprint -# Defining the host is optional and defaults to http://localhost:3030/api +# Defining the host is optional and defaults to http://127.0.0.1:3030/api # See configuration.py for a list of all supported configuration parameters. configuration = geoengine_openapi_client.Configuration( - host = "http://localhost:3030/api" + host = "http://127.0.0.1:3030/api" ) # The client must configure the authentication and authorization parameters @@ -90,7 +90,7 @@ with geoengine_openapi_client.ApiClient(configuration) as api_client: ## Documentation for API Endpoints -All URIs are relative to *http://localhost:3030/api* +All URIs are relative to *http://127.0.0.1:3030/api* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- @@ -165,6 +165,7 @@ Class | Method | HTTP request | Description *UploadsApi* | [**upload_handler**](docs/UploadsApi.md#upload_handler) | **POST** /upload | Uploads files. *UserApi* | [**add_role_handler**](docs/UserApi.md#add_role_handler) | **PUT** /roles | Add a new role. Requires admin privilige. *UserApi* | [**assign_role_handler**](docs/UserApi.md#assign_role_handler) | **POST** /users/{user}/roles/{role} | Assign a role to a user. Requires admin privilige. +*UserApi* | [**computations_quota_handler**](docs/UserApi.md#computations_quota_handler) | **GET** /quota/computations | Retrieves the quota used by computations *UserApi* | [**get_role_by_name_handler**](docs/UserApi.md#get_role_by_name_handler) | **GET** /roles/byName/{name} | Get role by name *UserApi* | [**get_role_descriptions**](docs/UserApi.md#get_role_descriptions) | **GET** /user/roles/descriptions | Query roles for the current user. *UserApi* | [**get_user_quota_handler**](docs/UserApi.md#get_user_quota_handler) | **GET** /quotas/{user} | Retrieves the available and used quota of a specific user. @@ -200,6 +201,7 @@ Class | Method | HTTP request | Description - [ColorParam](docs/ColorParam.md) - [ColorParamStatic](docs/ColorParamStatic.md) - [Colorizer](docs/Colorizer.md) + - [ComputationQuota](docs/ComputationQuota.md) - [ContinuousMeasurement](docs/ContinuousMeasurement.md) - [Coordinate2D](docs/Coordinate2D.md) - [CreateDataset](docs/CreateDataset.md) @@ -285,6 +287,7 @@ Class | Method | HTTP request | Description - [OgrSourceTimeFormatAuto](docs/OgrSourceTimeFormatAuto.md) - [OgrSourceTimeFormatCustom](docs/OgrSourceTimeFormatCustom.md) - [OgrSourceTimeFormatUnixTimeStamp](docs/OgrSourceTimeFormatUnixTimeStamp.md) + - [OperatorQuota](docs/OperatorQuota.md) - [OrderBy](docs/OrderBy.md) - [PaletteColorizer](docs/PaletteColorizer.md) - [Permission](docs/Permission.md) diff --git a/python/geoengine_openapi_client/__init__.py b/python/geoengine_openapi_client/__init__.py index d815c259..f3b22b41 100644 --- a/python/geoengine_openapi_client/__init__.py +++ b/python/geoengine_openapi_client/__init__.py @@ -64,6 +64,7 @@ from geoengine_openapi_client.models.color_param import ColorParam from geoengine_openapi_client.models.color_param_static import ColorParamStatic from geoengine_openapi_client.models.colorizer import Colorizer +from geoengine_openapi_client.models.computation_quota import ComputationQuota from geoengine_openapi_client.models.continuous_measurement import ContinuousMeasurement from geoengine_openapi_client.models.coordinate2_d import Coordinate2D from geoengine_openapi_client.models.create_dataset import CreateDataset @@ -149,6 +150,7 @@ from geoengine_openapi_client.models.ogr_source_time_format_auto import OgrSourceTimeFormatAuto from geoengine_openapi_client.models.ogr_source_time_format_custom import OgrSourceTimeFormatCustom from geoengine_openapi_client.models.ogr_source_time_format_unix_time_stamp import OgrSourceTimeFormatUnixTimeStamp +from geoengine_openapi_client.models.operator_quota import OperatorQuota from geoengine_openapi_client.models.order_by import OrderBy from geoengine_openapi_client.models.palette_colorizer import PaletteColorizer from geoengine_openapi_client.models.permission import Permission diff --git a/python/geoengine_openapi_client/api/user_api.py b/python/geoengine_openapi_client/api/user_api.py index 8700ccd7..1dd1f2a6 100644 --- a/python/geoengine_openapi_client/api/user_api.py +++ b/python/geoengine_openapi_client/api/user_api.py @@ -20,12 +20,13 @@ from pydantic import validate_arguments, ValidationError from typing_extensions import Annotated -from pydantic import Field, StrictStr +from pydantic import Field, StrictStr, conint from typing import List from geoengine_openapi_client.models.add_collection200_response import AddCollection200Response from geoengine_openapi_client.models.add_role import AddRole +from geoengine_openapi_client.models.computation_quota import ComputationQuota from geoengine_openapi_client.models.quota import Quota from geoengine_openapi_client.models.role_description import RoleDescription from geoengine_openapi_client.models.update_quota import UpdateQuota @@ -335,6 +336,152 @@ def assign_role_handler_with_http_info(self, user : Annotated[StrictStr, Field(. collection_formats=_collection_formats, _request_auth=_params.get('_request_auth')) + @validate_arguments + def computations_quota_handler(self, workflow : StrictStr, limit : conint(strict=True, ge=0), **kwargs) -> List[ComputationQuota]: # noqa: E501 + """Retrieves the quota used by computations # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.computations_quota_handler(workflow, limit, async_req=True) + >>> result = thread.get() + + :param workflow: (required) + :type workflow: str + :param limit: (required) + :type limit: int + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _request_timeout: timeout setting for this request. + If one number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: List[ComputationQuota] + """ + kwargs['_return_http_data_only'] = True + if '_preload_content' in kwargs: + message = "Error! Please call the computations_quota_handler_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501 + raise ValueError(message) + return self.computations_quota_handler_with_http_info(workflow, limit, **kwargs) # noqa: E501 + + @validate_arguments + def computations_quota_handler_with_http_info(self, workflow : StrictStr, limit : conint(strict=True, ge=0), **kwargs) -> ApiResponse: # noqa: E501 + """Retrieves the quota used by computations # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.computations_quota_handler_with_http_info(workflow, limit, async_req=True) + >>> result = thread.get() + + :param workflow: (required) + :type workflow: str + :param limit: (required) + :type limit: int + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _preload_content: if False, the ApiResponse.data will + be set to none and raw_data will store the + HTTP response body without reading/decoding. + Default is True. + :type _preload_content: bool, optional + :param _return_http_data_only: response data instead of ApiResponse + object with status code, headers, etc + :type _return_http_data_only: bool, optional + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the authentication + in the spec for a single request. + :type _request_auth: dict, optional + :type _content_type: string, optional: force content-type for the request + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: tuple(List[ComputationQuota], status_code(int), headers(HTTPHeaderDict)) + """ + + _params = locals() + + _all_params = [ + 'workflow', + 'limit' + ] + _all_params.extend( + [ + 'async_req', + '_return_http_data_only', + '_preload_content', + '_request_timeout', + '_request_auth', + '_content_type', + '_headers' + ] + ) + + # validate the arguments + for _key, _val in _params['kwargs'].items(): + if _key not in _all_params: + raise ApiTypeError( + "Got an unexpected keyword argument '%s'" + " to method computations_quota_handler" % _key + ) + _params[_key] = _val + del _params['kwargs'] + + _collection_formats = {} + + # process the path parameters + _path_params = {} + + # process the query parameters + _query_params = [] + if _params.get('workflow') is not None: # noqa: E501 + _query_params.append(('workflow', _params['workflow'])) + + if _params.get('limit') is not None: # noqa: E501 + _query_params.append(('limit', _params['limit'])) + + # process the header parameters + _header_params = dict(_params.get('_headers', {})) + # process the form parameters + _form_params = [] + _files = {} + # process the body parameter + _body_params = None + # set the HTTP header `Accept` + _header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # authentication setting + _auth_settings = ['session_token'] # noqa: E501 + + _response_types_map = { + '200': "List[ComputationQuota]", + } + + return self.api_client.call_api( + '/quota/computations', 'GET', + _path_params, + _query_params, + _header_params, + body=_body_params, + post_params=_form_params, + files=_files, + response_types_map=_response_types_map, + auth_settings=_auth_settings, + async_req=_params.get('async_req'), + _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501 + _preload_content=_params.get('_preload_content', True), + _request_timeout=_params.get('_request_timeout'), + collection_formats=_collection_formats, + _request_auth=_params.get('_request_auth')) + @validate_arguments def get_role_by_name_handler(self, name : Annotated[StrictStr, Field(..., description="Role Name")], **kwargs) -> AddCollection200Response: # noqa: E501 """Get role by name # noqa: E501 diff --git a/python/geoengine_openapi_client/configuration.py b/python/geoengine_openapi_client/configuration.py index a16193e4..34d6a6dc 100644 --- a/python/geoengine_openapi_client/configuration.py +++ b/python/geoengine_openapi_client/configuration.py @@ -69,7 +69,7 @@ def __init__(self, host=None, ) -> None: """Constructor """ - self._base_path = "http://localhost:3030/api" if host is None else host + self._base_path = "http://127.0.0.1:3030/api" if host is None else host """Default Base url """ self.server_index = 0 if server_index is None and host is None else server_index @@ -388,7 +388,7 @@ def get_host_settings(self): """ return [ { - 'url': "http://localhost:3030/api", + 'url': "http://127.0.0.1:3030/api", 'description': "No description provided", } ] diff --git a/python/geoengine_openapi_client/models/__init__.py b/python/geoengine_openapi_client/models/__init__.py index f591aeb1..44f1af14 100644 --- a/python/geoengine_openapi_client/models/__init__.py +++ b/python/geoengine_openapi_client/models/__init__.py @@ -32,6 +32,7 @@ from geoengine_openapi_client.models.color_param import ColorParam from geoengine_openapi_client.models.color_param_static import ColorParamStatic from geoengine_openapi_client.models.colorizer import Colorizer +from geoengine_openapi_client.models.computation_quota import ComputationQuota from geoengine_openapi_client.models.continuous_measurement import ContinuousMeasurement from geoengine_openapi_client.models.coordinate2_d import Coordinate2D from geoengine_openapi_client.models.create_dataset import CreateDataset @@ -117,6 +118,7 @@ from geoengine_openapi_client.models.ogr_source_time_format_auto import OgrSourceTimeFormatAuto from geoengine_openapi_client.models.ogr_source_time_format_custom import OgrSourceTimeFormatCustom from geoengine_openapi_client.models.ogr_source_time_format_unix_time_stamp import OgrSourceTimeFormatUnixTimeStamp +from geoengine_openapi_client.models.operator_quota import OperatorQuota from geoengine_openapi_client.models.order_by import OrderBy from geoengine_openapi_client.models.palette_colorizer import PaletteColorizer from geoengine_openapi_client.models.permission import Permission diff --git a/python/geoengine_openapi_client/models/computation_quota.py b/python/geoengine_openapi_client/models/computation_quota.py new file mode 100644 index 00000000..25657f02 --- /dev/null +++ b/python/geoengine_openapi_client/models/computation_quota.py @@ -0,0 +1,86 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from datetime import datetime +from typing import List +from pydantic import BaseModel, Field, StrictStr, conlist +from geoengine_openapi_client.models.operator_quota import OperatorQuota + +class ComputationQuota(BaseModel): + """ + ComputationQuota + """ + computation_id: StrictStr = Field(..., alias="computationId") + operators: conlist(OperatorQuota) = Field(...) + timestamp: datetime = Field(...) + workflow_id: StrictStr = Field(..., alias="workflowId") + __properties = ["computationId", "operators", "timestamp", "workflowId"] + + class Config: + """Pydantic configuration""" + allow_population_by_field_name = True + validate_assignment = True + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.dict(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> ComputationQuota: + """Create an instance of ComputationQuota from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self): + """Returns the dictionary representation of the model using alias""" + _dict = self.dict(by_alias=True, + exclude={ + }, + exclude_none=True) + # override the default output from pydantic by calling `to_dict()` of each item in operators (list) + _items = [] + if self.operators: + for _item in self.operators: + if _item: + _items.append(_item.to_dict()) + _dict['operators'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: dict) -> ComputationQuota: + """Create an instance of ComputationQuota from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return ComputationQuota.parse_obj(obj) + + _obj = ComputationQuota.parse_obj({ + "computation_id": obj.get("computationId"), + "operators": [OperatorQuota.from_dict(_item) for _item in obj.get("operators")] if obj.get("operators") is not None else None, + "timestamp": obj.get("timestamp"), + "workflow_id": obj.get("workflowId") + }) + return _obj + + diff --git a/python/geoengine_openapi_client/models/operator_quota.py b/python/geoengine_openapi_client/models/operator_quota.py new file mode 100644 index 00000000..341a64d8 --- /dev/null +++ b/python/geoengine_openapi_client/models/operator_quota.py @@ -0,0 +1,74 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + + + +from pydantic import BaseModel, Field, StrictStr, conint + +class OperatorQuota(BaseModel): + """ + OperatorQuota + """ + count: conint(strict=True, ge=0) = Field(...) + operator_path: StrictStr = Field(..., alias="operatorPath") + __properties = ["count", "operatorPath"] + + class Config: + """Pydantic configuration""" + allow_population_by_field_name = True + validate_assignment = True + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.dict(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> OperatorQuota: + """Create an instance of OperatorQuota from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self): + """Returns the dictionary representation of the model using alias""" + _dict = self.dict(by_alias=True, + exclude={ + }, + exclude_none=True) + return _dict + + @classmethod + def from_dict(cls, obj: dict) -> OperatorQuota: + """Create an instance of OperatorQuota from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return OperatorQuota.parse_obj(obj) + + _obj = OperatorQuota.parse_obj({ + "count": obj.get("count"), + "operator_path": obj.get("operatorPath") + }) + return _obj + + diff --git a/python/test/test_computation_quota.py b/python/test/test_computation_quota.py new file mode 100644 index 00000000..1d751572 --- /dev/null +++ b/python/test/test_computation_quota.py @@ -0,0 +1,68 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest +import datetime + +from geoengine_openapi_client.models.computation_quota import ComputationQuota # noqa: E501 + +class TestComputationQuota(unittest.TestCase): + """ComputationQuota unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ComputationQuota: + """Test ComputationQuota + include_option is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ComputationQuota` + """ + model = ComputationQuota() # noqa: E501 + if include_optional: + return ComputationQuota( + computation_id = '', + operators = [ + geoengine_openapi_client.models.operator_quota.OperatorQuota( + count = 0, + operator_path = '', ) + ], + timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), + workflow_id = '' + ) + else: + return ComputationQuota( + computation_id = '', + operators = [ + geoengine_openapi_client.models.operator_quota.OperatorQuota( + count = 0, + operator_path = '', ) + ], + timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), + workflow_id = '', + ) + """ + + def testComputationQuota(self): + """Test ComputationQuota""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/python/test/test_operator_quota.py b/python/test/test_operator_quota.py new file mode 100644 index 00000000..4625710a --- /dev/null +++ b/python/test/test_operator_quota.py @@ -0,0 +1,56 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest +import datetime + +from geoengine_openapi_client.models.operator_quota import OperatorQuota # noqa: E501 + +class TestOperatorQuota(unittest.TestCase): + """OperatorQuota unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> OperatorQuota: + """Test OperatorQuota + include_option is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `OperatorQuota` + """ + model = OperatorQuota() # noqa: E501 + if include_optional: + return OperatorQuota( + count = 0, + operator_path = '' + ) + else: + return OperatorQuota( + count = 0, + operator_path = '', + ) + """ + + def testOperatorQuota(self): + """Test OperatorQuota""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/python/test/test_user_api.py b/python/test/test_user_api.py index 4a263815..01035b72 100644 --- a/python/test/test_user_api.py +++ b/python/test/test_user_api.py @@ -41,6 +41,13 @@ def test_assign_role_handler(self) -> None: """ pass + def test_computations_quota_handler(self) -> None: + """Test case for computations_quota_handler + + Retrieves the quota used by computations # noqa: E501 + """ + pass + def test_get_role_by_name_handler(self) -> None: """Test case for get_role_by_name_handler diff --git a/typescript/dist/apis/UserApi.d.ts b/typescript/dist/apis/UserApi.d.ts index 851eae02..303da6fe 100644 --- a/typescript/dist/apis/UserApi.d.ts +++ b/typescript/dist/apis/UserApi.d.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ import * as runtime from '../runtime'; -import type { AddCollection200Response, AddRole, Quota, RoleDescription, UpdateQuota } from '../models/index'; +import type { AddCollection200Response, AddRole, ComputationQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; export interface AddRoleHandlerRequest { addRole: AddRole; } @@ -18,6 +18,10 @@ export interface AssignRoleHandlerRequest { user: string; role: string; } +export interface ComputationsQuotaHandlerRequest { + workflow: string; + limit: number; +} export interface GetRoleByNameHandlerRequest { name: string; } @@ -55,6 +59,14 @@ export declare class UserApi extends runtime.BaseAPI { * Assign a role to a user. Requires admin privilige. */ assignRoleHandler(requestParameters: AssignRoleHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandlerRaw(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get role by name */ diff --git a/typescript/dist/apis/UserApi.js b/typescript/dist/apis/UserApi.js index 47b12b23..ede1c0f3 100644 --- a/typescript/dist/apis/UserApi.js +++ b/typescript/dist/apis/UserApi.js @@ -108,6 +108,50 @@ class UserApi extends runtime.BaseAPI { yield this.assignRoleHandlerRaw(requestParameters, initOverrides); }); } + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.workflow === null || requestParameters.workflow === undefined) { + throw new runtime.RequiredError('workflow', 'Required parameter requestParameters.workflow was null or undefined when calling computationsQuotaHandler.'); + } + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling computationsQuotaHandler.'); + } + const queryParameters = {}; + if (requestParameters.workflow !== undefined) { + queryParameters['workflow'] = requestParameters.workflow; + } + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/computations`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.ComputationQuotaFromJSON)); + }); + } + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.computationsQuotaHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } /** * Get role by name */ diff --git a/typescript/dist/esm/apis/UserApi.d.ts b/typescript/dist/esm/apis/UserApi.d.ts index 851eae02..303da6fe 100644 --- a/typescript/dist/esm/apis/UserApi.d.ts +++ b/typescript/dist/esm/apis/UserApi.d.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ import * as runtime from '../runtime'; -import type { AddCollection200Response, AddRole, Quota, RoleDescription, UpdateQuota } from '../models/index'; +import type { AddCollection200Response, AddRole, ComputationQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; export interface AddRoleHandlerRequest { addRole: AddRole; } @@ -18,6 +18,10 @@ export interface AssignRoleHandlerRequest { user: string; role: string; } +export interface ComputationsQuotaHandlerRequest { + workflow: string; + limit: number; +} export interface GetRoleByNameHandlerRequest { name: string; } @@ -55,6 +59,14 @@ export declare class UserApi extends runtime.BaseAPI { * Assign a role to a user. Requires admin privilige. */ assignRoleHandler(requestParameters: AssignRoleHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandlerRaw(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get role by name */ diff --git a/typescript/dist/esm/apis/UserApi.js b/typescript/dist/esm/apis/UserApi.js index a7d86613..f3a3b770 100644 --- a/typescript/dist/esm/apis/UserApi.js +++ b/typescript/dist/esm/apis/UserApi.js @@ -21,7 +21,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }); }; import * as runtime from '../runtime'; -import { AddCollection200ResponseFromJSON, AddRoleToJSON, QuotaFromJSON, RoleDescriptionFromJSON, UpdateQuotaToJSON, } from '../models/index'; +import { AddCollection200ResponseFromJSON, AddRoleToJSON, ComputationQuotaFromJSON, QuotaFromJSON, RoleDescriptionFromJSON, UpdateQuotaToJSON, } from '../models/index'; /** * */ @@ -105,6 +105,50 @@ export class UserApi extends runtime.BaseAPI { yield this.assignRoleHandlerRaw(requestParameters, initOverrides); }); } + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.workflow === null || requestParameters.workflow === undefined) { + throw new runtime.RequiredError('workflow', 'Required parameter requestParameters.workflow was null or undefined when calling computationsQuotaHandler.'); + } + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling computationsQuotaHandler.'); + } + const queryParameters = {}; + if (requestParameters.workflow !== undefined) { + queryParameters['workflow'] = requestParameters.workflow; + } + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/computations`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(ComputationQuotaFromJSON)); + }); + } + /** + * Retrieves the quota used by computations + */ + computationsQuotaHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.computationsQuotaHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } /** * Get role by name */ diff --git a/typescript/dist/esm/models/ComputationQuota.d.ts b/typescript/dist/esm/models/ComputationQuota.d.ts new file mode 100644 index 00000000..3db93f21 --- /dev/null +++ b/typescript/dist/esm/models/ComputationQuota.d.ts @@ -0,0 +1,50 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +import type { OperatorQuota } from './OperatorQuota'; +/** + * + * @export + * @interface ComputationQuota + */ +export interface ComputationQuota { + /** + * + * @type {string} + * @memberof ComputationQuota + */ + computationId: string; + /** + * + * @type {Array} + * @memberof ComputationQuota + */ + operators: Array; + /** + * + * @type {Date} + * @memberof ComputationQuota + */ + timestamp: Date; + /** + * + * @type {string} + * @memberof ComputationQuota + */ + workflowId: string; +} +/** + * Check if a given object implements the ComputationQuota interface. + */ +export declare function instanceOfComputationQuota(value: object): boolean; +export declare function ComputationQuotaFromJSON(json: any): ComputationQuota; +export declare function ComputationQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComputationQuota; +export declare function ComputationQuotaToJSON(value?: ComputationQuota | null): any; diff --git a/typescript/dist/esm/models/ComputationQuota.js b/typescript/dist/esm/models/ComputationQuota.js new file mode 100644 index 00000000..44f9fc68 --- /dev/null +++ b/typescript/dist/esm/models/ComputationQuota.js @@ -0,0 +1,53 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +import { OperatorQuotaFromJSON, OperatorQuotaToJSON, } from './OperatorQuota'; +/** + * Check if a given object implements the ComputationQuota interface. + */ +export function instanceOfComputationQuota(value) { + let isInstance = true; + isInstance = isInstance && "computationId" in value; + isInstance = isInstance && "operators" in value; + isInstance = isInstance && "timestamp" in value; + isInstance = isInstance && "workflowId" in value; + return isInstance; +} +export function ComputationQuotaFromJSON(json) { + return ComputationQuotaFromJSONTyped(json, false); +} +export function ComputationQuotaFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'computationId': json['computationId'], + 'operators': (json['operators'].map(OperatorQuotaFromJSON)), + 'timestamp': (new Date(json['timestamp'])), + 'workflowId': json['workflowId'], + }; +} +export function ComputationQuotaToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'computationId': value.computationId, + 'operators': (value.operators.map(OperatorQuotaToJSON)), + 'timestamp': (value.timestamp.toISOString()), + 'workflowId': value.workflowId, + }; +} diff --git a/typescript/dist/esm/models/OperatorQuota.d.ts b/typescript/dist/esm/models/OperatorQuota.d.ts new file mode 100644 index 00000000..6709b10e --- /dev/null +++ b/typescript/dist/esm/models/OperatorQuota.d.ts @@ -0,0 +1,37 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + * @interface OperatorQuota + */ +export interface OperatorQuota { + /** + * + * @type {number} + * @memberof OperatorQuota + */ + count: number; + /** + * + * @type {string} + * @memberof OperatorQuota + */ + operatorPath: string; +} +/** + * Check if a given object implements the OperatorQuota interface. + */ +export declare function instanceOfOperatorQuota(value: object): boolean; +export declare function OperatorQuotaFromJSON(json: any): OperatorQuota; +export declare function OperatorQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperatorQuota; +export declare function OperatorQuotaToJSON(value?: OperatorQuota | null): any; diff --git a/typescript/dist/esm/models/OperatorQuota.js b/typescript/dist/esm/models/OperatorQuota.js new file mode 100644 index 00000000..50aa22d7 --- /dev/null +++ b/typescript/dist/esm/models/OperatorQuota.js @@ -0,0 +1,46 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * Check if a given object implements the OperatorQuota interface. + */ +export function instanceOfOperatorQuota(value) { + let isInstance = true; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "operatorPath" in value; + return isInstance; +} +export function OperatorQuotaFromJSON(json) { + return OperatorQuotaFromJSONTyped(json, false); +} +export function OperatorQuotaFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'count': json['count'], + 'operatorPath': json['operatorPath'], + }; +} +export function OperatorQuotaToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'count': value.count, + 'operatorPath': value.operatorPath, + }; +} diff --git a/typescript/dist/esm/models/index.d.ts b/typescript/dist/esm/models/index.d.ts index 947d1bb6..22d6449f 100644 --- a/typescript/dist/esm/models/index.d.ts +++ b/typescript/dist/esm/models/index.d.ts @@ -15,6 +15,7 @@ export * from './CollectionType'; export * from './ColorParam'; export * from './ColorParamStatic'; export * from './Colorizer'; +export * from './ComputationQuota'; export * from './ContinuousMeasurement'; export * from './Coordinate2D'; export * from './CreateDataset'; @@ -100,6 +101,7 @@ export * from './OgrSourceTimeFormat'; export * from './OgrSourceTimeFormatAuto'; export * from './OgrSourceTimeFormatCustom'; export * from './OgrSourceTimeFormatUnixTimeStamp'; +export * from './OperatorQuota'; export * from './OrderBy'; export * from './PaletteColorizer'; export * from './Permission'; diff --git a/typescript/dist/esm/models/index.js b/typescript/dist/esm/models/index.js index 17e41c39..40cd565a 100644 --- a/typescript/dist/esm/models/index.js +++ b/typescript/dist/esm/models/index.js @@ -17,6 +17,7 @@ export * from './CollectionType'; export * from './ColorParam'; export * from './ColorParamStatic'; export * from './Colorizer'; +export * from './ComputationQuota'; export * from './ContinuousMeasurement'; export * from './Coordinate2D'; export * from './CreateDataset'; @@ -102,6 +103,7 @@ export * from './OgrSourceTimeFormat'; export * from './OgrSourceTimeFormatAuto'; export * from './OgrSourceTimeFormatCustom'; export * from './OgrSourceTimeFormatUnixTimeStamp'; +export * from './OperatorQuota'; export * from './OrderBy'; export * from './PaletteColorizer'; export * from './Permission'; diff --git a/typescript/dist/esm/runtime.js b/typescript/dist/esm/runtime.js index 306920e3..fa80bad1 100644 --- a/typescript/dist/esm/runtime.js +++ b/typescript/dist/esm/runtime.js @@ -20,7 +20,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -export const BASE_PATH = "http://localhost:3030/api".replace(/\/+$/, ""); +export const BASE_PATH = "http://127.0.0.1:3030/api".replace(/\/+$/, ""); export class Configuration { constructor(configuration = {}) { this.configuration = configuration; diff --git a/typescript/dist/models/ComputationQuota.d.ts b/typescript/dist/models/ComputationQuota.d.ts new file mode 100644 index 00000000..3db93f21 --- /dev/null +++ b/typescript/dist/models/ComputationQuota.d.ts @@ -0,0 +1,50 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +import type { OperatorQuota } from './OperatorQuota'; +/** + * + * @export + * @interface ComputationQuota + */ +export interface ComputationQuota { + /** + * + * @type {string} + * @memberof ComputationQuota + */ + computationId: string; + /** + * + * @type {Array} + * @memberof ComputationQuota + */ + operators: Array; + /** + * + * @type {Date} + * @memberof ComputationQuota + */ + timestamp: Date; + /** + * + * @type {string} + * @memberof ComputationQuota + */ + workflowId: string; +} +/** + * Check if a given object implements the ComputationQuota interface. + */ +export declare function instanceOfComputationQuota(value: object): boolean; +export declare function ComputationQuotaFromJSON(json: any): ComputationQuota; +export declare function ComputationQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComputationQuota; +export declare function ComputationQuotaToJSON(value?: ComputationQuota | null): any; diff --git a/typescript/dist/models/ComputationQuota.js b/typescript/dist/models/ComputationQuota.js new file mode 100644 index 00000000..e4457f25 --- /dev/null +++ b/typescript/dist/models/ComputationQuota.js @@ -0,0 +1,60 @@ +"use strict"; +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ComputationQuotaToJSON = exports.ComputationQuotaFromJSONTyped = exports.ComputationQuotaFromJSON = exports.instanceOfComputationQuota = void 0; +const OperatorQuota_1 = require("./OperatorQuota"); +/** + * Check if a given object implements the ComputationQuota interface. + */ +function instanceOfComputationQuota(value) { + let isInstance = true; + isInstance = isInstance && "computationId" in value; + isInstance = isInstance && "operators" in value; + isInstance = isInstance && "timestamp" in value; + isInstance = isInstance && "workflowId" in value; + return isInstance; +} +exports.instanceOfComputationQuota = instanceOfComputationQuota; +function ComputationQuotaFromJSON(json) { + return ComputationQuotaFromJSONTyped(json, false); +} +exports.ComputationQuotaFromJSON = ComputationQuotaFromJSON; +function ComputationQuotaFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'computationId': json['computationId'], + 'operators': (json['operators'].map(OperatorQuota_1.OperatorQuotaFromJSON)), + 'timestamp': (new Date(json['timestamp'])), + 'workflowId': json['workflowId'], + }; +} +exports.ComputationQuotaFromJSONTyped = ComputationQuotaFromJSONTyped; +function ComputationQuotaToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'computationId': value.computationId, + 'operators': (value.operators.map(OperatorQuota_1.OperatorQuotaToJSON)), + 'timestamp': (value.timestamp.toISOString()), + 'workflowId': value.workflowId, + }; +} +exports.ComputationQuotaToJSON = ComputationQuotaToJSON; diff --git a/typescript/dist/models/OperatorQuota.d.ts b/typescript/dist/models/OperatorQuota.d.ts new file mode 100644 index 00000000..6709b10e --- /dev/null +++ b/typescript/dist/models/OperatorQuota.d.ts @@ -0,0 +1,37 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + * @interface OperatorQuota + */ +export interface OperatorQuota { + /** + * + * @type {number} + * @memberof OperatorQuota + */ + count: number; + /** + * + * @type {string} + * @memberof OperatorQuota + */ + operatorPath: string; +} +/** + * Check if a given object implements the OperatorQuota interface. + */ +export declare function instanceOfOperatorQuota(value: object): boolean; +export declare function OperatorQuotaFromJSON(json: any): OperatorQuota; +export declare function OperatorQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperatorQuota; +export declare function OperatorQuotaToJSON(value?: OperatorQuota | null): any; diff --git a/typescript/dist/models/OperatorQuota.js b/typescript/dist/models/OperatorQuota.js new file mode 100644 index 00000000..80e26bcd --- /dev/null +++ b/typescript/dist/models/OperatorQuota.js @@ -0,0 +1,53 @@ +"use strict"; +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.OperatorQuotaToJSON = exports.OperatorQuotaFromJSONTyped = exports.OperatorQuotaFromJSON = exports.instanceOfOperatorQuota = void 0; +/** + * Check if a given object implements the OperatorQuota interface. + */ +function instanceOfOperatorQuota(value) { + let isInstance = true; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "operatorPath" in value; + return isInstance; +} +exports.instanceOfOperatorQuota = instanceOfOperatorQuota; +function OperatorQuotaFromJSON(json) { + return OperatorQuotaFromJSONTyped(json, false); +} +exports.OperatorQuotaFromJSON = OperatorQuotaFromJSON; +function OperatorQuotaFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'count': json['count'], + 'operatorPath': json['operatorPath'], + }; +} +exports.OperatorQuotaFromJSONTyped = OperatorQuotaFromJSONTyped; +function OperatorQuotaToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'count': value.count, + 'operatorPath': value.operatorPath, + }; +} +exports.OperatorQuotaToJSON = OperatorQuotaToJSON; diff --git a/typescript/dist/models/index.d.ts b/typescript/dist/models/index.d.ts index 947d1bb6..22d6449f 100644 --- a/typescript/dist/models/index.d.ts +++ b/typescript/dist/models/index.d.ts @@ -15,6 +15,7 @@ export * from './CollectionType'; export * from './ColorParam'; export * from './ColorParamStatic'; export * from './Colorizer'; +export * from './ComputationQuota'; export * from './ContinuousMeasurement'; export * from './Coordinate2D'; export * from './CreateDataset'; @@ -100,6 +101,7 @@ export * from './OgrSourceTimeFormat'; export * from './OgrSourceTimeFormatAuto'; export * from './OgrSourceTimeFormatCustom'; export * from './OgrSourceTimeFormatUnixTimeStamp'; +export * from './OperatorQuota'; export * from './OrderBy'; export * from './PaletteColorizer'; export * from './Permission'; diff --git a/typescript/dist/models/index.js b/typescript/dist/models/index.js index 89c525af..2ec797a3 100644 --- a/typescript/dist/models/index.js +++ b/typescript/dist/models/index.js @@ -33,6 +33,7 @@ __exportStar(require("./CollectionType"), exports); __exportStar(require("./ColorParam"), exports); __exportStar(require("./ColorParamStatic"), exports); __exportStar(require("./Colorizer"), exports); +__exportStar(require("./ComputationQuota"), exports); __exportStar(require("./ContinuousMeasurement"), exports); __exportStar(require("./Coordinate2D"), exports); __exportStar(require("./CreateDataset"), exports); @@ -118,6 +119,7 @@ __exportStar(require("./OgrSourceTimeFormat"), exports); __exportStar(require("./OgrSourceTimeFormatAuto"), exports); __exportStar(require("./OgrSourceTimeFormatCustom"), exports); __exportStar(require("./OgrSourceTimeFormatUnixTimeStamp"), exports); +__exportStar(require("./OperatorQuota"), exports); __exportStar(require("./OrderBy"), exports); __exportStar(require("./PaletteColorizer"), exports); __exportStar(require("./Permission"), exports); diff --git a/typescript/dist/runtime.js b/typescript/dist/runtime.js index db6ec937..66c92ae9 100644 --- a/typescript/dist/runtime.js +++ b/typescript/dist/runtime.js @@ -23,7 +23,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", { value: true }); exports.TextApiResponse = exports.BlobApiResponse = exports.VoidApiResponse = exports.JSONApiResponse = exports.canConsumeForm = exports.mapValues = exports.querystring = exports.exists = exports.COLLECTION_FORMATS = exports.RequiredError = exports.FetchError = exports.ResponseError = exports.BaseAPI = exports.DefaultConfig = exports.Configuration = exports.BASE_PATH = void 0; -exports.BASE_PATH = "http://localhost:3030/api".replace(/\/+$/, ""); +exports.BASE_PATH = "http://127.0.0.1:3030/api".replace(/\/+$/, ""); class Configuration { constructor(configuration = {}) { this.configuration = configuration; diff --git a/typescript/src/apis/UserApi.ts b/typescript/src/apis/UserApi.ts index 55504587..0a5d2468 100644 --- a/typescript/src/apis/UserApi.ts +++ b/typescript/src/apis/UserApi.ts @@ -17,6 +17,7 @@ import * as runtime from '../runtime'; import type { AddCollection200Response, AddRole, + ComputationQuota, Quota, RoleDescription, UpdateQuota, @@ -26,6 +27,8 @@ import { AddCollection200ResponseToJSON, AddRoleFromJSON, AddRoleToJSON, + ComputationQuotaFromJSON, + ComputationQuotaToJSON, QuotaFromJSON, QuotaToJSON, RoleDescriptionFromJSON, @@ -43,6 +46,11 @@ export interface AssignRoleHandlerRequest { role: string; } +export interface ComputationsQuotaHandlerRequest { + workflow: string; + limit: number; +} + export interface GetRoleByNameHandlerRequest { name: string; } @@ -156,6 +164,56 @@ export class UserApi extends runtime.BaseAPI { await this.assignRoleHandlerRaw(requestParameters, initOverrides); } + /** + * Retrieves the quota used by computations + */ + async computationsQuotaHandlerRaw(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>> { + if (requestParameters.workflow === null || requestParameters.workflow === undefined) { + throw new runtime.RequiredError('workflow','Required parameter requestParameters.workflow was null or undefined when calling computationsQuotaHandler.'); + } + + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit','Required parameter requestParameters.limit was null or undefined when calling computationsQuotaHandler.'); + } + + const queryParameters: any = {}; + + if (requestParameters.workflow !== undefined) { + queryParameters['workflow'] = requestParameters.workflow; + } + + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + + const headerParameters: runtime.HTTPHeaders = {}; + + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = await token("session_token", []); + + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = await this.request({ + path: `/quota/computations`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(ComputationQuotaFromJSON)); + } + + /** + * Retrieves the quota used by computations + */ + async computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> { + const response = await this.computationsQuotaHandlerRaw(requestParameters, initOverrides); + return await response.value(); + } + /** * Get role by name */ diff --git a/typescript/src/models/ComputationQuota.ts b/typescript/src/models/ComputationQuota.ts new file mode 100644 index 00000000..ab9eb5e3 --- /dev/null +++ b/typescript/src/models/ComputationQuota.ts @@ -0,0 +1,100 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists, mapValues } from '../runtime'; +import type { OperatorQuota } from './OperatorQuota'; +import { + OperatorQuotaFromJSON, + OperatorQuotaFromJSONTyped, + OperatorQuotaToJSON, +} from './OperatorQuota'; + +/** + * + * @export + * @interface ComputationQuota + */ +export interface ComputationQuota { + /** + * + * @type {string} + * @memberof ComputationQuota + */ + computationId: string; + /** + * + * @type {Array} + * @memberof ComputationQuota + */ + operators: Array; + /** + * + * @type {Date} + * @memberof ComputationQuota + */ + timestamp: Date; + /** + * + * @type {string} + * @memberof ComputationQuota + */ + workflowId: string; +} + +/** + * Check if a given object implements the ComputationQuota interface. + */ +export function instanceOfComputationQuota(value: object): boolean { + let isInstance = true; + isInstance = isInstance && "computationId" in value; + isInstance = isInstance && "operators" in value; + isInstance = isInstance && "timestamp" in value; + isInstance = isInstance && "workflowId" in value; + + return isInstance; +} + +export function ComputationQuotaFromJSON(json: any): ComputationQuota { + return ComputationQuotaFromJSONTyped(json, false); +} + +export function ComputationQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComputationQuota { + if ((json === undefined) || (json === null)) { + return json; + } + return { + + 'computationId': json['computationId'], + 'operators': ((json['operators'] as Array).map(OperatorQuotaFromJSON)), + 'timestamp': (new Date(json['timestamp'])), + 'workflowId': json['workflowId'], + }; +} + +export function ComputationQuotaToJSON(value?: ComputationQuota | null): any { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + + 'computationId': value.computationId, + 'operators': ((value.operators as Array).map(OperatorQuotaToJSON)), + 'timestamp': (value.timestamp.toISOString()), + 'workflowId': value.workflowId, + }; +} + diff --git a/typescript/src/models/OperatorQuota.ts b/typescript/src/models/OperatorQuota.ts new file mode 100644 index 00000000..322b2430 --- /dev/null +++ b/typescript/src/models/OperatorQuota.ts @@ -0,0 +1,75 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists, mapValues } from '../runtime'; +/** + * + * @export + * @interface OperatorQuota + */ +export interface OperatorQuota { + /** + * + * @type {number} + * @memberof OperatorQuota + */ + count: number; + /** + * + * @type {string} + * @memberof OperatorQuota + */ + operatorPath: string; +} + +/** + * Check if a given object implements the OperatorQuota interface. + */ +export function instanceOfOperatorQuota(value: object): boolean { + let isInstance = true; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "operatorPath" in value; + + return isInstance; +} + +export function OperatorQuotaFromJSON(json: any): OperatorQuota { + return OperatorQuotaFromJSONTyped(json, false); +} + +export function OperatorQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperatorQuota { + if ((json === undefined) || (json === null)) { + return json; + } + return { + + 'count': json['count'], + 'operatorPath': json['operatorPath'], + }; +} + +export function OperatorQuotaToJSON(value?: OperatorQuota | null): any { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + + 'count': value.count, + 'operatorPath': value.operatorPath, + }; +} + diff --git a/typescript/src/models/index.ts b/typescript/src/models/index.ts index 17e41c39..40cd565a 100644 --- a/typescript/src/models/index.ts +++ b/typescript/src/models/index.ts @@ -17,6 +17,7 @@ export * from './CollectionType'; export * from './ColorParam'; export * from './ColorParamStatic'; export * from './Colorizer'; +export * from './ComputationQuota'; export * from './ContinuousMeasurement'; export * from './Coordinate2D'; export * from './CreateDataset'; @@ -102,6 +103,7 @@ export * from './OgrSourceTimeFormat'; export * from './OgrSourceTimeFormatAuto'; export * from './OgrSourceTimeFormatCustom'; export * from './OgrSourceTimeFormatUnixTimeStamp'; +export * from './OperatorQuota'; export * from './OrderBy'; export * from './PaletteColorizer'; export * from './Permission'; diff --git a/typescript/src/runtime.ts b/typescript/src/runtime.ts index 0e2362ad..d3e4da16 100644 --- a/typescript/src/runtime.ts +++ b/typescript/src/runtime.ts @@ -13,7 +13,7 @@ */ -export const BASE_PATH = "http://localhost:3030/api".replace(/\/+$/, ""); +export const BASE_PATH = "http://127.0.0.1:3030/api".replace(/\/+$/, ""); export interface ConfigurationParameters { basePath?: string; // override base path From 09dcfc8c2ce2b8d0518467fa1e441a241922abe9 Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Thu, 21 Nov 2024 11:03:09 +0100 Subject: [PATCH 2/8] update openapi-client --- .generation/input/openapi.json | 12 +++++++---- .../models/operator_quota.py | 10 +++++---- python/test/test_computation_quota.py | 10 +++++---- python/test/test_operator_quota.py | 8 ++++--- typescript/dist/esm/models/OperatorQuota.d.ts | 12 ++++++++--- typescript/dist/esm/models/OperatorQuota.js | 9 +++++--- typescript/dist/models/OperatorQuota.d.ts | 12 ++++++++--- typescript/dist/models/OperatorQuota.js | 9 +++++--- typescript/src/models/OperatorQuota.ts | 21 +++++++++++++------ 9 files changed, 70 insertions(+), 33 deletions(-) diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index b913d0de..78959be2 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -7458,17 +7458,21 @@ "OperatorQuota": { "type": "object", "required": [ - "operatorPath", + "bla", + "blub", "count" ], "properties": { + "bla": { + "type": "string" + }, + "blub": { + "type": "string" + }, "count": { "type": "integer", "format": "int64", "minimum": 0 - }, - "operatorPath": { - "type": "string" } } }, diff --git a/python/geoengine_openapi_client/models/operator_quota.py b/python/geoengine_openapi_client/models/operator_quota.py index 341a64d8..0645985b 100644 --- a/python/geoengine_openapi_client/models/operator_quota.py +++ b/python/geoengine_openapi_client/models/operator_quota.py @@ -26,9 +26,10 @@ class OperatorQuota(BaseModel): """ OperatorQuota """ + bla: StrictStr = Field(...) + blub: StrictStr = Field(...) count: conint(strict=True, ge=0) = Field(...) - operator_path: StrictStr = Field(..., alias="operatorPath") - __properties = ["count", "operatorPath"] + __properties = ["bla", "blub", "count"] class Config: """Pydantic configuration""" @@ -66,8 +67,9 @@ def from_dict(cls, obj: dict) -> OperatorQuota: return OperatorQuota.parse_obj(obj) _obj = OperatorQuota.parse_obj({ - "count": obj.get("count"), - "operator_path": obj.get("operatorPath") + "bla": obj.get("bla"), + "blub": obj.get("blub"), + "count": obj.get("count") }) return _obj diff --git a/python/test/test_computation_quota.py b/python/test/test_computation_quota.py index 1d751572..4d835baf 100644 --- a/python/test/test_computation_quota.py +++ b/python/test/test_computation_quota.py @@ -40,8 +40,9 @@ def make_instance(self, include_optional) -> ComputationQuota: computation_id = '', operators = [ geoengine_openapi_client.models.operator_quota.OperatorQuota( - count = 0, - operator_path = '', ) + bla = '', + blub = '', + count = 0, ) ], timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), workflow_id = '' @@ -51,8 +52,9 @@ def make_instance(self, include_optional) -> ComputationQuota: computation_id = '', operators = [ geoengine_openapi_client.models.operator_quota.OperatorQuota( - count = 0, - operator_path = '', ) + bla = '', + blub = '', + count = 0, ) ], timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), workflow_id = '', diff --git a/python/test/test_operator_quota.py b/python/test/test_operator_quota.py index 4625710a..eadd2744 100644 --- a/python/test/test_operator_quota.py +++ b/python/test/test_operator_quota.py @@ -37,13 +37,15 @@ def make_instance(self, include_optional) -> OperatorQuota: model = OperatorQuota() # noqa: E501 if include_optional: return OperatorQuota( - count = 0, - operator_path = '' + bla = '', + blub = '', + count = 0 ) else: return OperatorQuota( + bla = '', + blub = '', count = 0, - operator_path = '', ) """ diff --git a/typescript/dist/esm/models/OperatorQuota.d.ts b/typescript/dist/esm/models/OperatorQuota.d.ts index 6709b10e..d5919874 100644 --- a/typescript/dist/esm/models/OperatorQuota.d.ts +++ b/typescript/dist/esm/models/OperatorQuota.d.ts @@ -17,16 +17,22 @@ export interface OperatorQuota { /** * - * @type {number} + * @type {string} * @memberof OperatorQuota */ - count: number; + bla: string; /** * * @type {string} * @memberof OperatorQuota */ - operatorPath: string; + blub: string; + /** + * + * @type {number} + * @memberof OperatorQuota + */ + count: number; } /** * Check if a given object implements the OperatorQuota interface. diff --git a/typescript/dist/esm/models/OperatorQuota.js b/typescript/dist/esm/models/OperatorQuota.js index 50aa22d7..aacea748 100644 --- a/typescript/dist/esm/models/OperatorQuota.js +++ b/typescript/dist/esm/models/OperatorQuota.js @@ -16,8 +16,9 @@ */ export function instanceOfOperatorQuota(value) { let isInstance = true; + isInstance = isInstance && "bla" in value; + isInstance = isInstance && "blub" in value; isInstance = isInstance && "count" in value; - isInstance = isInstance && "operatorPath" in value; return isInstance; } export function OperatorQuotaFromJSON(json) { @@ -28,8 +29,9 @@ export function OperatorQuotaFromJSONTyped(json, ignoreDiscriminator) { return json; } return { + 'bla': json['bla'], + 'blub': json['blub'], 'count': json['count'], - 'operatorPath': json['operatorPath'], }; } export function OperatorQuotaToJSON(value) { @@ -40,7 +42,8 @@ export function OperatorQuotaToJSON(value) { return null; } return { + 'bla': value.bla, + 'blub': value.blub, 'count': value.count, - 'operatorPath': value.operatorPath, }; } diff --git a/typescript/dist/models/OperatorQuota.d.ts b/typescript/dist/models/OperatorQuota.d.ts index 6709b10e..d5919874 100644 --- a/typescript/dist/models/OperatorQuota.d.ts +++ b/typescript/dist/models/OperatorQuota.d.ts @@ -17,16 +17,22 @@ export interface OperatorQuota { /** * - * @type {number} + * @type {string} * @memberof OperatorQuota */ - count: number; + bla: string; /** * * @type {string} * @memberof OperatorQuota */ - operatorPath: string; + blub: string; + /** + * + * @type {number} + * @memberof OperatorQuota + */ + count: number; } /** * Check if a given object implements the OperatorQuota interface. diff --git a/typescript/dist/models/OperatorQuota.js b/typescript/dist/models/OperatorQuota.js index 80e26bcd..cf277a0d 100644 --- a/typescript/dist/models/OperatorQuota.js +++ b/typescript/dist/models/OperatorQuota.js @@ -19,8 +19,9 @@ exports.OperatorQuotaToJSON = exports.OperatorQuotaFromJSONTyped = exports.Opera */ function instanceOfOperatorQuota(value) { let isInstance = true; + isInstance = isInstance && "bla" in value; + isInstance = isInstance && "blub" in value; isInstance = isInstance && "count" in value; - isInstance = isInstance && "operatorPath" in value; return isInstance; } exports.instanceOfOperatorQuota = instanceOfOperatorQuota; @@ -33,8 +34,9 @@ function OperatorQuotaFromJSONTyped(json, ignoreDiscriminator) { return json; } return { + 'bla': json['bla'], + 'blub': json['blub'], 'count': json['count'], - 'operatorPath': json['operatorPath'], }; } exports.OperatorQuotaFromJSONTyped = OperatorQuotaFromJSONTyped; @@ -46,8 +48,9 @@ function OperatorQuotaToJSON(value) { return null; } return { + 'bla': value.bla, + 'blub': value.blub, 'count': value.count, - 'operatorPath': value.operatorPath, }; } exports.OperatorQuotaToJSON = OperatorQuotaToJSON; diff --git a/typescript/src/models/OperatorQuota.ts b/typescript/src/models/OperatorQuota.ts index 322b2430..a8217bc7 100644 --- a/typescript/src/models/OperatorQuota.ts +++ b/typescript/src/models/OperatorQuota.ts @@ -21,16 +21,22 @@ import { exists, mapValues } from '../runtime'; export interface OperatorQuota { /** * - * @type {number} + * @type {string} * @memberof OperatorQuota */ - count: number; + bla: string; /** * * @type {string} * @memberof OperatorQuota */ - operatorPath: string; + blub: string; + /** + * + * @type {number} + * @memberof OperatorQuota + */ + count: number; } /** @@ -38,8 +44,9 @@ export interface OperatorQuota { */ export function instanceOfOperatorQuota(value: object): boolean { let isInstance = true; + isInstance = isInstance && "bla" in value; + isInstance = isInstance && "blub" in value; isInstance = isInstance && "count" in value; - isInstance = isInstance && "operatorPath" in value; return isInstance; } @@ -54,8 +61,9 @@ export function OperatorQuotaFromJSONTyped(json: any, ignoreDiscriminator: boole } return { + 'bla': json['bla'], + 'blub': json['blub'], 'count': json['count'], - 'operatorPath': json['operatorPath'], }; } @@ -68,8 +76,9 @@ export function OperatorQuotaToJSON(value?: OperatorQuota | null): any { } return { + 'bla': value.bla, + 'blub': value.blub, 'count': value.count, - 'operatorPath': value.operatorPath, }; } From 3d860870a2b325bc897877dc944c1ce9a778550c Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Thu, 21 Nov 2024 12:00:05 +0100 Subject: [PATCH 3/8] update openapi-client --- .generation/input/openapi.json | 16 +++++++------- .../models/operator_quota.py | 12 +++++----- python/test/test_computation_quota.py | 12 +++++----- python/test/test_operator_quota.py | 10 ++++----- typescript/dist/esm/models/OperatorQuota.d.ts | 10 ++++----- typescript/dist/esm/models/OperatorQuota.js | 12 +++++----- typescript/dist/models/OperatorQuota.d.ts | 10 ++++----- typescript/dist/models/OperatorQuota.js | 12 +++++----- typescript/src/models/OperatorQuota.ts | 22 +++++++++---------- 9 files changed, 58 insertions(+), 58 deletions(-) diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 78959be2..76b9b7e8 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -7458,21 +7458,21 @@ "OperatorQuota": { "type": "object", "required": [ - "bla", - "blub", + "operatorName", + "operatorPath", "count" ], "properties": { - "bla": { - "type": "string" - }, - "blub": { - "type": "string" - }, "count": { "type": "integer", "format": "int64", "minimum": 0 + }, + "operatorName": { + "type": "string" + }, + "operatorPath": { + "type": "string" } } }, diff --git a/python/geoengine_openapi_client/models/operator_quota.py b/python/geoengine_openapi_client/models/operator_quota.py index 0645985b..89f16161 100644 --- a/python/geoengine_openapi_client/models/operator_quota.py +++ b/python/geoengine_openapi_client/models/operator_quota.py @@ -26,10 +26,10 @@ class OperatorQuota(BaseModel): """ OperatorQuota """ - bla: StrictStr = Field(...) - blub: StrictStr = Field(...) count: conint(strict=True, ge=0) = Field(...) - __properties = ["bla", "blub", "count"] + operator_name: StrictStr = Field(..., alias="operatorName") + operator_path: StrictStr = Field(..., alias="operatorPath") + __properties = ["count", "operatorName", "operatorPath"] class Config: """Pydantic configuration""" @@ -67,9 +67,9 @@ def from_dict(cls, obj: dict) -> OperatorQuota: return OperatorQuota.parse_obj(obj) _obj = OperatorQuota.parse_obj({ - "bla": obj.get("bla"), - "blub": obj.get("blub"), - "count": obj.get("count") + "count": obj.get("count"), + "operator_name": obj.get("operatorName"), + "operator_path": obj.get("operatorPath") }) return _obj diff --git a/python/test/test_computation_quota.py b/python/test/test_computation_quota.py index 4d835baf..aacda22b 100644 --- a/python/test/test_computation_quota.py +++ b/python/test/test_computation_quota.py @@ -40,9 +40,9 @@ def make_instance(self, include_optional) -> ComputationQuota: computation_id = '', operators = [ geoengine_openapi_client.models.operator_quota.OperatorQuota( - bla = '', - blub = '', - count = 0, ) + count = 0, + operator_name = '', + operator_path = '', ) ], timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), workflow_id = '' @@ -52,9 +52,9 @@ def make_instance(self, include_optional) -> ComputationQuota: computation_id = '', operators = [ geoengine_openapi_client.models.operator_quota.OperatorQuota( - bla = '', - blub = '', - count = 0, ) + count = 0, + operator_name = '', + operator_path = '', ) ], timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), workflow_id = '', diff --git a/python/test/test_operator_quota.py b/python/test/test_operator_quota.py index eadd2744..3f102843 100644 --- a/python/test/test_operator_quota.py +++ b/python/test/test_operator_quota.py @@ -37,15 +37,15 @@ def make_instance(self, include_optional) -> OperatorQuota: model = OperatorQuota() # noqa: E501 if include_optional: return OperatorQuota( - bla = '', - blub = '', - count = 0 + count = 0, + operator_name = '', + operator_path = '' ) else: return OperatorQuota( - bla = '', - blub = '', count = 0, + operator_name = '', + operator_path = '', ) """ diff --git a/typescript/dist/esm/models/OperatorQuota.d.ts b/typescript/dist/esm/models/OperatorQuota.d.ts index d5919874..e167005d 100644 --- a/typescript/dist/esm/models/OperatorQuota.d.ts +++ b/typescript/dist/esm/models/OperatorQuota.d.ts @@ -17,22 +17,22 @@ export interface OperatorQuota { /** * - * @type {string} + * @type {number} * @memberof OperatorQuota */ - bla: string; + count: number; /** * * @type {string} * @memberof OperatorQuota */ - blub: string; + operatorName: string; /** * - * @type {number} + * @type {string} * @memberof OperatorQuota */ - count: number; + operatorPath: string; } /** * Check if a given object implements the OperatorQuota interface. diff --git a/typescript/dist/esm/models/OperatorQuota.js b/typescript/dist/esm/models/OperatorQuota.js index aacea748..8028eac5 100644 --- a/typescript/dist/esm/models/OperatorQuota.js +++ b/typescript/dist/esm/models/OperatorQuota.js @@ -16,9 +16,9 @@ */ export function instanceOfOperatorQuota(value) { let isInstance = true; - isInstance = isInstance && "bla" in value; - isInstance = isInstance && "blub" in value; isInstance = isInstance && "count" in value; + isInstance = isInstance && "operatorName" in value; + isInstance = isInstance && "operatorPath" in value; return isInstance; } export function OperatorQuotaFromJSON(json) { @@ -29,9 +29,9 @@ export function OperatorQuotaFromJSONTyped(json, ignoreDiscriminator) { return json; } return { - 'bla': json['bla'], - 'blub': json['blub'], 'count': json['count'], + 'operatorName': json['operatorName'], + 'operatorPath': json['operatorPath'], }; } export function OperatorQuotaToJSON(value) { @@ -42,8 +42,8 @@ export function OperatorQuotaToJSON(value) { return null; } return { - 'bla': value.bla, - 'blub': value.blub, 'count': value.count, + 'operatorName': value.operatorName, + 'operatorPath': value.operatorPath, }; } diff --git a/typescript/dist/models/OperatorQuota.d.ts b/typescript/dist/models/OperatorQuota.d.ts index d5919874..e167005d 100644 --- a/typescript/dist/models/OperatorQuota.d.ts +++ b/typescript/dist/models/OperatorQuota.d.ts @@ -17,22 +17,22 @@ export interface OperatorQuota { /** * - * @type {string} + * @type {number} * @memberof OperatorQuota */ - bla: string; + count: number; /** * * @type {string} * @memberof OperatorQuota */ - blub: string; + operatorName: string; /** * - * @type {number} + * @type {string} * @memberof OperatorQuota */ - count: number; + operatorPath: string; } /** * Check if a given object implements the OperatorQuota interface. diff --git a/typescript/dist/models/OperatorQuota.js b/typescript/dist/models/OperatorQuota.js index cf277a0d..b212818e 100644 --- a/typescript/dist/models/OperatorQuota.js +++ b/typescript/dist/models/OperatorQuota.js @@ -19,9 +19,9 @@ exports.OperatorQuotaToJSON = exports.OperatorQuotaFromJSONTyped = exports.Opera */ function instanceOfOperatorQuota(value) { let isInstance = true; - isInstance = isInstance && "bla" in value; - isInstance = isInstance && "blub" in value; isInstance = isInstance && "count" in value; + isInstance = isInstance && "operatorName" in value; + isInstance = isInstance && "operatorPath" in value; return isInstance; } exports.instanceOfOperatorQuota = instanceOfOperatorQuota; @@ -34,9 +34,9 @@ function OperatorQuotaFromJSONTyped(json, ignoreDiscriminator) { return json; } return { - 'bla': json['bla'], - 'blub': json['blub'], 'count': json['count'], + 'operatorName': json['operatorName'], + 'operatorPath': json['operatorPath'], }; } exports.OperatorQuotaFromJSONTyped = OperatorQuotaFromJSONTyped; @@ -48,9 +48,9 @@ function OperatorQuotaToJSON(value) { return null; } return { - 'bla': value.bla, - 'blub': value.blub, 'count': value.count, + 'operatorName': value.operatorName, + 'operatorPath': value.operatorPath, }; } exports.OperatorQuotaToJSON = OperatorQuotaToJSON; diff --git a/typescript/src/models/OperatorQuota.ts b/typescript/src/models/OperatorQuota.ts index a8217bc7..dc920d6b 100644 --- a/typescript/src/models/OperatorQuota.ts +++ b/typescript/src/models/OperatorQuota.ts @@ -21,22 +21,22 @@ import { exists, mapValues } from '../runtime'; export interface OperatorQuota { /** * - * @type {string} + * @type {number} * @memberof OperatorQuota */ - bla: string; + count: number; /** * * @type {string} * @memberof OperatorQuota */ - blub: string; + operatorName: string; /** * - * @type {number} + * @type {string} * @memberof OperatorQuota */ - count: number; + operatorPath: string; } /** @@ -44,9 +44,9 @@ export interface OperatorQuota { */ export function instanceOfOperatorQuota(value: object): boolean { let isInstance = true; - isInstance = isInstance && "bla" in value; - isInstance = isInstance && "blub" in value; isInstance = isInstance && "count" in value; + isInstance = isInstance && "operatorName" in value; + isInstance = isInstance && "operatorPath" in value; return isInstance; } @@ -61,9 +61,9 @@ export function OperatorQuotaFromJSONTyped(json: any, ignoreDiscriminator: boole } return { - 'bla': json['bla'], - 'blub': json['blub'], 'count': json['count'], + 'operatorName': json['operatorName'], + 'operatorPath': json['operatorPath'], }; } @@ -76,9 +76,9 @@ export function OperatorQuotaToJSON(value?: OperatorQuota | null): any { } return { - 'bla': value.bla, - 'blub': value.blub, 'count': value.count, + 'operatorName': value.operatorName, + 'operatorPath': value.operatorPath, }; } From 8ed1c5a03ec652957b14328f588f9ffef26a626b Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Thu, 21 Nov 2024 14:33:47 +0100 Subject: [PATCH 4/8] update openapi-client --- .generation/input/openapi.json | 66 +++++++++++ python/.openapi-generator/FILES | 6 + python/README.md | 2 + python/geoengine_openapi_client/__init__.py | 2 + .../models/__init__.py | 2 + .../models/data_usage.py | 82 +++++++++++++ .../models/data_usage_summary.py | 78 ++++++++++++ python/test/test_data_usage.py | 64 ++++++++++ python/test/test_data_usage_summary.py | 60 ++++++++++ typescript/dist/esm/models/DataUsage.d.ts | 61 ++++++++++ typescript/dist/esm/models/DataUsage.js | 58 +++++++++ .../dist/esm/models/DataUsageSummary.d.ts | 49 ++++++++ .../dist/esm/models/DataUsageSummary.js | 52 ++++++++ typescript/dist/esm/models/index.d.ts | 2 + typescript/dist/esm/models/index.js | 2 + typescript/dist/models/DataUsage.d.ts | 61 ++++++++++ typescript/dist/models/DataUsage.js | 65 ++++++++++ typescript/dist/models/DataUsageSummary.d.ts | 49 ++++++++ typescript/dist/models/DataUsageSummary.js | 59 ++++++++++ typescript/dist/models/index.d.ts | 2 + typescript/dist/models/index.js | 2 + typescript/src/models/DataUsage.ts | 111 ++++++++++++++++++ typescript/src/models/DataUsageSummary.ts | 93 +++++++++++++++ typescript/src/models/index.ts | 2 + 24 files changed, 1030 insertions(+) create mode 100644 python/geoengine_openapi_client/models/data_usage.py create mode 100644 python/geoengine_openapi_client/models/data_usage_summary.py create mode 100644 python/test/test_data_usage.py create mode 100644 python/test/test_data_usage_summary.py create mode 100644 typescript/dist/esm/models/DataUsage.d.ts create mode 100644 typescript/dist/esm/models/DataUsage.js create mode 100644 typescript/dist/esm/models/DataUsageSummary.d.ts create mode 100644 typescript/dist/esm/models/DataUsageSummary.js create mode 100644 typescript/dist/models/DataUsage.d.ts create mode 100644 typescript/dist/models/DataUsage.js create mode 100644 typescript/dist/models/DataUsageSummary.d.ts create mode 100644 typescript/dist/models/DataUsageSummary.js create mode 100644 typescript/src/models/DataUsage.ts create mode 100644 typescript/src/models/DataUsageSummary.ts diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 76b9b7e8..124b5e13 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -5715,6 +5715,72 @@ "type": "string", "format": "uuid" }, + "DataUsage": { + "type": "object", + "required": [ + "timestamp", + "userId", + "workflowId", + "computationId", + "data", + "count" + ], + "properties": { + "computationId": { + "type": "string", + "format": "uuid" + }, + "count": { + "type": "integer", + "format": "int64", + "minimum": 0 + }, + "data": { + "type": "string" + }, + "timestamp": { + "type": "string", + "format": "date-time" + }, + "userId": { + "type": "string", + "format": "uuid" + }, + "workflowId": { + "type": "string", + "format": "uuid" + } + } + }, + "DataUsageSummary": { + "type": "object", + "required": [ + "year", + "month", + "data", + "count" + ], + "properties": { + "count": { + "type": "integer", + "format": "int64", + "minimum": 0 + }, + "data": { + "type": "string" + }, + "month": { + "type": "integer", + "format": "int32", + "minimum": 0 + }, + "year": { + "type": "integer", + "format": "int32", + "minimum": 0 + } + } + }, "Dataset": { "type": "object", "required": [ diff --git a/python/.openapi-generator/FILES b/python/.openapi-generator/FILES index 60a50664..fc023a05 100644 --- a/python/.openapi-generator/FILES +++ b/python/.openapi-generator/FILES @@ -31,6 +31,8 @@ docs/DataId.md docs/DataPath.md docs/DataPathOneOf.md docs/DataPathOneOf1.md +docs/DataUsage.md +docs/DataUsageSummary.md docs/Dataset.md docs/DatasetDefinition.md docs/DatasetListing.md @@ -289,6 +291,8 @@ geoengine_openapi_client/models/data_id.py geoengine_openapi_client/models/data_path.py geoengine_openapi_client/models/data_path_one_of.py geoengine_openapi_client/models/data_path_one_of1.py +geoengine_openapi_client/models/data_usage.py +geoengine_openapi_client/models/data_usage_summary.py geoengine_openapi_client/models/dataset.py geoengine_openapi_client/models/dataset_definition.py geoengine_openapi_client/models/dataset_listing.py @@ -517,6 +521,8 @@ test/test_data_id.py test/test_data_path.py test/test_data_path_one_of.py test/test_data_path_one_of1.py +test/test_data_usage.py +test/test_data_usage_summary.py test/test_dataset.py test/test_dataset_definition.py test/test_dataset_listing.py diff --git a/python/README.md b/python/README.md index 8520041b..13355e52 100644 --- a/python/README.md +++ b/python/README.md @@ -212,6 +212,8 @@ Class | Method | HTTP request | Description - [DataPath](docs/DataPath.md) - [DataPathOneOf](docs/DataPathOneOf.md) - [DataPathOneOf1](docs/DataPathOneOf1.md) + - [DataUsage](docs/DataUsage.md) + - [DataUsageSummary](docs/DataUsageSummary.md) - [Dataset](docs/Dataset.md) - [DatasetDefinition](docs/DatasetDefinition.md) - [DatasetListing](docs/DatasetListing.md) diff --git a/python/geoengine_openapi_client/__init__.py b/python/geoengine_openapi_client/__init__.py index f3b22b41..41469c28 100644 --- a/python/geoengine_openapi_client/__init__.py +++ b/python/geoengine_openapi_client/__init__.py @@ -75,6 +75,8 @@ from geoengine_openapi_client.models.data_path import DataPath from geoengine_openapi_client.models.data_path_one_of import DataPathOneOf from geoengine_openapi_client.models.data_path_one_of1 import DataPathOneOf1 +from geoengine_openapi_client.models.data_usage import DataUsage +from geoengine_openapi_client.models.data_usage_summary import DataUsageSummary from geoengine_openapi_client.models.dataset import Dataset from geoengine_openapi_client.models.dataset_definition import DatasetDefinition from geoengine_openapi_client.models.dataset_listing import DatasetListing diff --git a/python/geoengine_openapi_client/models/__init__.py b/python/geoengine_openapi_client/models/__init__.py index 44f1af14..8e52c96e 100644 --- a/python/geoengine_openapi_client/models/__init__.py +++ b/python/geoengine_openapi_client/models/__init__.py @@ -43,6 +43,8 @@ from geoengine_openapi_client.models.data_path import DataPath from geoengine_openapi_client.models.data_path_one_of import DataPathOneOf from geoengine_openapi_client.models.data_path_one_of1 import DataPathOneOf1 +from geoengine_openapi_client.models.data_usage import DataUsage +from geoengine_openapi_client.models.data_usage_summary import DataUsageSummary from geoengine_openapi_client.models.dataset import Dataset from geoengine_openapi_client.models.dataset_definition import DatasetDefinition from geoengine_openapi_client.models.dataset_listing import DatasetListing diff --git a/python/geoengine_openapi_client/models/data_usage.py b/python/geoengine_openapi_client/models/data_usage.py new file mode 100644 index 00000000..1d48219f --- /dev/null +++ b/python/geoengine_openapi_client/models/data_usage.py @@ -0,0 +1,82 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from datetime import datetime + +from pydantic import BaseModel, Field, StrictStr, conint + +class DataUsage(BaseModel): + """ + DataUsage + """ + computation_id: StrictStr = Field(..., alias="computationId") + count: conint(strict=True, ge=0) = Field(...) + data: StrictStr = Field(...) + timestamp: datetime = Field(...) + user_id: StrictStr = Field(..., alias="userId") + workflow_id: StrictStr = Field(..., alias="workflowId") + __properties = ["computationId", "count", "data", "timestamp", "userId", "workflowId"] + + class Config: + """Pydantic configuration""" + allow_population_by_field_name = True + validate_assignment = True + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.dict(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> DataUsage: + """Create an instance of DataUsage from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self): + """Returns the dictionary representation of the model using alias""" + _dict = self.dict(by_alias=True, + exclude={ + }, + exclude_none=True) + return _dict + + @classmethod + def from_dict(cls, obj: dict) -> DataUsage: + """Create an instance of DataUsage from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return DataUsage.parse_obj(obj) + + _obj = DataUsage.parse_obj({ + "computation_id": obj.get("computationId"), + "count": obj.get("count"), + "data": obj.get("data"), + "timestamp": obj.get("timestamp"), + "user_id": obj.get("userId"), + "workflow_id": obj.get("workflowId") + }) + return _obj + + diff --git a/python/geoengine_openapi_client/models/data_usage_summary.py b/python/geoengine_openapi_client/models/data_usage_summary.py new file mode 100644 index 00000000..59a6b2a2 --- /dev/null +++ b/python/geoengine_openapi_client/models/data_usage_summary.py @@ -0,0 +1,78 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + + + +from pydantic import BaseModel, Field, StrictStr, conint + +class DataUsageSummary(BaseModel): + """ + DataUsageSummary + """ + count: conint(strict=True, ge=0) = Field(...) + data: StrictStr = Field(...) + month: conint(strict=True, ge=0) = Field(...) + year: conint(strict=True, ge=0) = Field(...) + __properties = ["count", "data", "month", "year"] + + class Config: + """Pydantic configuration""" + allow_population_by_field_name = True + validate_assignment = True + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.dict(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> DataUsageSummary: + """Create an instance of DataUsageSummary from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self): + """Returns the dictionary representation of the model using alias""" + _dict = self.dict(by_alias=True, + exclude={ + }, + exclude_none=True) + return _dict + + @classmethod + def from_dict(cls, obj: dict) -> DataUsageSummary: + """Create an instance of DataUsageSummary from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return DataUsageSummary.parse_obj(obj) + + _obj = DataUsageSummary.parse_obj({ + "count": obj.get("count"), + "data": obj.get("data"), + "month": obj.get("month"), + "year": obj.get("year") + }) + return _obj + + diff --git a/python/test/test_data_usage.py b/python/test/test_data_usage.py new file mode 100644 index 00000000..498310ee --- /dev/null +++ b/python/test/test_data_usage.py @@ -0,0 +1,64 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest +import datetime + +from geoengine_openapi_client.models.data_usage import DataUsage # noqa: E501 + +class TestDataUsage(unittest.TestCase): + """DataUsage unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> DataUsage: + """Test DataUsage + include_option is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `DataUsage` + """ + model = DataUsage() # noqa: E501 + if include_optional: + return DataUsage( + computation_id = '', + count = 0, + data = '', + timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), + user_id = '', + workflow_id = '' + ) + else: + return DataUsage( + computation_id = '', + count = 0, + data = '', + timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), + user_id = '', + workflow_id = '', + ) + """ + + def testDataUsage(self): + """Test DataUsage""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/python/test/test_data_usage_summary.py b/python/test/test_data_usage_summary.py new file mode 100644 index 00000000..dc1934c1 --- /dev/null +++ b/python/test/test_data_usage_summary.py @@ -0,0 +1,60 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest +import datetime + +from geoengine_openapi_client.models.data_usage_summary import DataUsageSummary # noqa: E501 + +class TestDataUsageSummary(unittest.TestCase): + """DataUsageSummary unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> DataUsageSummary: + """Test DataUsageSummary + include_option is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `DataUsageSummary` + """ + model = DataUsageSummary() # noqa: E501 + if include_optional: + return DataUsageSummary( + count = 0, + data = '', + month = 0, + year = 0 + ) + else: + return DataUsageSummary( + count = 0, + data = '', + month = 0, + year = 0, + ) + """ + + def testDataUsageSummary(self): + """Test DataUsageSummary""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/typescript/dist/esm/models/DataUsage.d.ts b/typescript/dist/esm/models/DataUsage.d.ts new file mode 100644 index 00000000..4243007c --- /dev/null +++ b/typescript/dist/esm/models/DataUsage.d.ts @@ -0,0 +1,61 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + * @interface DataUsage + */ +export interface DataUsage { + /** + * + * @type {string} + * @memberof DataUsage + */ + computationId: string; + /** + * + * @type {number} + * @memberof DataUsage + */ + count: number; + /** + * + * @type {string} + * @memberof DataUsage + */ + data: string; + /** + * + * @type {Date} + * @memberof DataUsage + */ + timestamp: Date; + /** + * + * @type {string} + * @memberof DataUsage + */ + userId: string; + /** + * + * @type {string} + * @memberof DataUsage + */ + workflowId: string; +} +/** + * Check if a given object implements the DataUsage interface. + */ +export declare function instanceOfDataUsage(value: object): boolean; +export declare function DataUsageFromJSON(json: any): DataUsage; +export declare function DataUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataUsage; +export declare function DataUsageToJSON(value?: DataUsage | null): any; diff --git a/typescript/dist/esm/models/DataUsage.js b/typescript/dist/esm/models/DataUsage.js new file mode 100644 index 00000000..b8789738 --- /dev/null +++ b/typescript/dist/esm/models/DataUsage.js @@ -0,0 +1,58 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * Check if a given object implements the DataUsage interface. + */ +export function instanceOfDataUsage(value) { + let isInstance = true; + isInstance = isInstance && "computationId" in value; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "data" in value; + isInstance = isInstance && "timestamp" in value; + isInstance = isInstance && "userId" in value; + isInstance = isInstance && "workflowId" in value; + return isInstance; +} +export function DataUsageFromJSON(json) { + return DataUsageFromJSONTyped(json, false); +} +export function DataUsageFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'computationId': json['computationId'], + 'count': json['count'], + 'data': json['data'], + 'timestamp': (new Date(json['timestamp'])), + 'userId': json['userId'], + 'workflowId': json['workflowId'], + }; +} +export function DataUsageToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'computationId': value.computationId, + 'count': value.count, + 'data': value.data, + 'timestamp': (value.timestamp.toISOString()), + 'userId': value.userId, + 'workflowId': value.workflowId, + }; +} diff --git a/typescript/dist/esm/models/DataUsageSummary.d.ts b/typescript/dist/esm/models/DataUsageSummary.d.ts new file mode 100644 index 00000000..eb2c113d --- /dev/null +++ b/typescript/dist/esm/models/DataUsageSummary.d.ts @@ -0,0 +1,49 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + * @interface DataUsageSummary + */ +export interface DataUsageSummary { + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + count: number; + /** + * + * @type {string} + * @memberof DataUsageSummary + */ + data: string; + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + month: number; + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + year: number; +} +/** + * Check if a given object implements the DataUsageSummary interface. + */ +export declare function instanceOfDataUsageSummary(value: object): boolean; +export declare function DataUsageSummaryFromJSON(json: any): DataUsageSummary; +export declare function DataUsageSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataUsageSummary; +export declare function DataUsageSummaryToJSON(value?: DataUsageSummary | null): any; diff --git a/typescript/dist/esm/models/DataUsageSummary.js b/typescript/dist/esm/models/DataUsageSummary.js new file mode 100644 index 00000000..4870b785 --- /dev/null +++ b/typescript/dist/esm/models/DataUsageSummary.js @@ -0,0 +1,52 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * Check if a given object implements the DataUsageSummary interface. + */ +export function instanceOfDataUsageSummary(value) { + let isInstance = true; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "data" in value; + isInstance = isInstance && "month" in value; + isInstance = isInstance && "year" in value; + return isInstance; +} +export function DataUsageSummaryFromJSON(json) { + return DataUsageSummaryFromJSONTyped(json, false); +} +export function DataUsageSummaryFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'count': json['count'], + 'data': json['data'], + 'month': json['month'], + 'year': json['year'], + }; +} +export function DataUsageSummaryToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'count': value.count, + 'data': value.data, + 'month': value.month, + 'year': value.year, + }; +} diff --git a/typescript/dist/esm/models/index.d.ts b/typescript/dist/esm/models/index.d.ts index 22d6449f..636e41fe 100644 --- a/typescript/dist/esm/models/index.d.ts +++ b/typescript/dist/esm/models/index.d.ts @@ -26,6 +26,8 @@ export * from './DataId'; export * from './DataPath'; export * from './DataPathOneOf'; export * from './DataPathOneOf1'; +export * from './DataUsage'; +export * from './DataUsageSummary'; export * from './Dataset'; export * from './DatasetDefinition'; export * from './DatasetListing'; diff --git a/typescript/dist/esm/models/index.js b/typescript/dist/esm/models/index.js index 40cd565a..aae64509 100644 --- a/typescript/dist/esm/models/index.js +++ b/typescript/dist/esm/models/index.js @@ -28,6 +28,8 @@ export * from './DataId'; export * from './DataPath'; export * from './DataPathOneOf'; export * from './DataPathOneOf1'; +export * from './DataUsage'; +export * from './DataUsageSummary'; export * from './Dataset'; export * from './DatasetDefinition'; export * from './DatasetListing'; diff --git a/typescript/dist/models/DataUsage.d.ts b/typescript/dist/models/DataUsage.d.ts new file mode 100644 index 00000000..4243007c --- /dev/null +++ b/typescript/dist/models/DataUsage.d.ts @@ -0,0 +1,61 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + * @interface DataUsage + */ +export interface DataUsage { + /** + * + * @type {string} + * @memberof DataUsage + */ + computationId: string; + /** + * + * @type {number} + * @memberof DataUsage + */ + count: number; + /** + * + * @type {string} + * @memberof DataUsage + */ + data: string; + /** + * + * @type {Date} + * @memberof DataUsage + */ + timestamp: Date; + /** + * + * @type {string} + * @memberof DataUsage + */ + userId: string; + /** + * + * @type {string} + * @memberof DataUsage + */ + workflowId: string; +} +/** + * Check if a given object implements the DataUsage interface. + */ +export declare function instanceOfDataUsage(value: object): boolean; +export declare function DataUsageFromJSON(json: any): DataUsage; +export declare function DataUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataUsage; +export declare function DataUsageToJSON(value?: DataUsage | null): any; diff --git a/typescript/dist/models/DataUsage.js b/typescript/dist/models/DataUsage.js new file mode 100644 index 00000000..8153fce1 --- /dev/null +++ b/typescript/dist/models/DataUsage.js @@ -0,0 +1,65 @@ +"use strict"; +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DataUsageToJSON = exports.DataUsageFromJSONTyped = exports.DataUsageFromJSON = exports.instanceOfDataUsage = void 0; +/** + * Check if a given object implements the DataUsage interface. + */ +function instanceOfDataUsage(value) { + let isInstance = true; + isInstance = isInstance && "computationId" in value; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "data" in value; + isInstance = isInstance && "timestamp" in value; + isInstance = isInstance && "userId" in value; + isInstance = isInstance && "workflowId" in value; + return isInstance; +} +exports.instanceOfDataUsage = instanceOfDataUsage; +function DataUsageFromJSON(json) { + return DataUsageFromJSONTyped(json, false); +} +exports.DataUsageFromJSON = DataUsageFromJSON; +function DataUsageFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'computationId': json['computationId'], + 'count': json['count'], + 'data': json['data'], + 'timestamp': (new Date(json['timestamp'])), + 'userId': json['userId'], + 'workflowId': json['workflowId'], + }; +} +exports.DataUsageFromJSONTyped = DataUsageFromJSONTyped; +function DataUsageToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'computationId': value.computationId, + 'count': value.count, + 'data': value.data, + 'timestamp': (value.timestamp.toISOString()), + 'userId': value.userId, + 'workflowId': value.workflowId, + }; +} +exports.DataUsageToJSON = DataUsageToJSON; diff --git a/typescript/dist/models/DataUsageSummary.d.ts b/typescript/dist/models/DataUsageSummary.d.ts new file mode 100644 index 00000000..eb2c113d --- /dev/null +++ b/typescript/dist/models/DataUsageSummary.d.ts @@ -0,0 +1,49 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + * @interface DataUsageSummary + */ +export interface DataUsageSummary { + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + count: number; + /** + * + * @type {string} + * @memberof DataUsageSummary + */ + data: string; + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + month: number; + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + year: number; +} +/** + * Check if a given object implements the DataUsageSummary interface. + */ +export declare function instanceOfDataUsageSummary(value: object): boolean; +export declare function DataUsageSummaryFromJSON(json: any): DataUsageSummary; +export declare function DataUsageSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataUsageSummary; +export declare function DataUsageSummaryToJSON(value?: DataUsageSummary | null): any; diff --git a/typescript/dist/models/DataUsageSummary.js b/typescript/dist/models/DataUsageSummary.js new file mode 100644 index 00000000..06cb71d8 --- /dev/null +++ b/typescript/dist/models/DataUsageSummary.js @@ -0,0 +1,59 @@ +"use strict"; +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DataUsageSummaryToJSON = exports.DataUsageSummaryFromJSONTyped = exports.DataUsageSummaryFromJSON = exports.instanceOfDataUsageSummary = void 0; +/** + * Check if a given object implements the DataUsageSummary interface. + */ +function instanceOfDataUsageSummary(value) { + let isInstance = true; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "data" in value; + isInstance = isInstance && "month" in value; + isInstance = isInstance && "year" in value; + return isInstance; +} +exports.instanceOfDataUsageSummary = instanceOfDataUsageSummary; +function DataUsageSummaryFromJSON(json) { + return DataUsageSummaryFromJSONTyped(json, false); +} +exports.DataUsageSummaryFromJSON = DataUsageSummaryFromJSON; +function DataUsageSummaryFromJSONTyped(json, ignoreDiscriminator) { + if ((json === undefined) || (json === null)) { + return json; + } + return { + 'count': json['count'], + 'data': json['data'], + 'month': json['month'], + 'year': json['year'], + }; +} +exports.DataUsageSummaryFromJSONTyped = DataUsageSummaryFromJSONTyped; +function DataUsageSummaryToJSON(value) { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + 'count': value.count, + 'data': value.data, + 'month': value.month, + 'year': value.year, + }; +} +exports.DataUsageSummaryToJSON = DataUsageSummaryToJSON; diff --git a/typescript/dist/models/index.d.ts b/typescript/dist/models/index.d.ts index 22d6449f..636e41fe 100644 --- a/typescript/dist/models/index.d.ts +++ b/typescript/dist/models/index.d.ts @@ -26,6 +26,8 @@ export * from './DataId'; export * from './DataPath'; export * from './DataPathOneOf'; export * from './DataPathOneOf1'; +export * from './DataUsage'; +export * from './DataUsageSummary'; export * from './Dataset'; export * from './DatasetDefinition'; export * from './DatasetListing'; diff --git a/typescript/dist/models/index.js b/typescript/dist/models/index.js index 2ec797a3..41c58967 100644 --- a/typescript/dist/models/index.js +++ b/typescript/dist/models/index.js @@ -44,6 +44,8 @@ __exportStar(require("./DataId"), exports); __exportStar(require("./DataPath"), exports); __exportStar(require("./DataPathOneOf"), exports); __exportStar(require("./DataPathOneOf1"), exports); +__exportStar(require("./DataUsage"), exports); +__exportStar(require("./DataUsageSummary"), exports); __exportStar(require("./Dataset"), exports); __exportStar(require("./DatasetDefinition"), exports); __exportStar(require("./DatasetListing"), exports); diff --git a/typescript/src/models/DataUsage.ts b/typescript/src/models/DataUsage.ts new file mode 100644 index 00000000..4db93751 --- /dev/null +++ b/typescript/src/models/DataUsage.ts @@ -0,0 +1,111 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists, mapValues } from '../runtime'; +/** + * + * @export + * @interface DataUsage + */ +export interface DataUsage { + /** + * + * @type {string} + * @memberof DataUsage + */ + computationId: string; + /** + * + * @type {number} + * @memberof DataUsage + */ + count: number; + /** + * + * @type {string} + * @memberof DataUsage + */ + data: string; + /** + * + * @type {Date} + * @memberof DataUsage + */ + timestamp: Date; + /** + * + * @type {string} + * @memberof DataUsage + */ + userId: string; + /** + * + * @type {string} + * @memberof DataUsage + */ + workflowId: string; +} + +/** + * Check if a given object implements the DataUsage interface. + */ +export function instanceOfDataUsage(value: object): boolean { + let isInstance = true; + isInstance = isInstance && "computationId" in value; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "data" in value; + isInstance = isInstance && "timestamp" in value; + isInstance = isInstance && "userId" in value; + isInstance = isInstance && "workflowId" in value; + + return isInstance; +} + +export function DataUsageFromJSON(json: any): DataUsage { + return DataUsageFromJSONTyped(json, false); +} + +export function DataUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataUsage { + if ((json === undefined) || (json === null)) { + return json; + } + return { + + 'computationId': json['computationId'], + 'count': json['count'], + 'data': json['data'], + 'timestamp': (new Date(json['timestamp'])), + 'userId': json['userId'], + 'workflowId': json['workflowId'], + }; +} + +export function DataUsageToJSON(value?: DataUsage | null): any { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + + 'computationId': value.computationId, + 'count': value.count, + 'data': value.data, + 'timestamp': (value.timestamp.toISOString()), + 'userId': value.userId, + 'workflowId': value.workflowId, + }; +} + diff --git a/typescript/src/models/DataUsageSummary.ts b/typescript/src/models/DataUsageSummary.ts new file mode 100644 index 00000000..0ec10efe --- /dev/null +++ b/typescript/src/models/DataUsageSummary.ts @@ -0,0 +1,93 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { exists, mapValues } from '../runtime'; +/** + * + * @export + * @interface DataUsageSummary + */ +export interface DataUsageSummary { + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + count: number; + /** + * + * @type {string} + * @memberof DataUsageSummary + */ + data: string; + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + month: number; + /** + * + * @type {number} + * @memberof DataUsageSummary + */ + year: number; +} + +/** + * Check if a given object implements the DataUsageSummary interface. + */ +export function instanceOfDataUsageSummary(value: object): boolean { + let isInstance = true; + isInstance = isInstance && "count" in value; + isInstance = isInstance && "data" in value; + isInstance = isInstance && "month" in value; + isInstance = isInstance && "year" in value; + + return isInstance; +} + +export function DataUsageSummaryFromJSON(json: any): DataUsageSummary { + return DataUsageSummaryFromJSONTyped(json, false); +} + +export function DataUsageSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataUsageSummary { + if ((json === undefined) || (json === null)) { + return json; + } + return { + + 'count': json['count'], + 'data': json['data'], + 'month': json['month'], + 'year': json['year'], + }; +} + +export function DataUsageSummaryToJSON(value?: DataUsageSummary | null): any { + if (value === undefined) { + return undefined; + } + if (value === null) { + return null; + } + return { + + 'count': value.count, + 'data': value.data, + 'month': value.month, + 'year': value.year, + }; +} + diff --git a/typescript/src/models/index.ts b/typescript/src/models/index.ts index 40cd565a..aae64509 100644 --- a/typescript/src/models/index.ts +++ b/typescript/src/models/index.ts @@ -28,6 +28,8 @@ export * from './DataId'; export * from './DataPath'; export * from './DataPathOneOf'; export * from './DataPathOneOf1'; +export * from './DataUsage'; +export * from './DataUsageSummary'; export * from './Dataset'; export * from './DatasetDefinition'; export * from './DatasetListing'; From ee5575e3321a76750e0dfb40fe66f6d4433033b0 Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Tue, 26 Nov 2024 18:59:49 +0100 Subject: [PATCH 5/8] update openapi-client --- .generation/input/openapi.json | 5 ++-- .../geoengine_openapi_client/api/user_api.py | 24 +++++++++---------- typescript/dist/apis/UserApi.d.ts | 2 +- typescript/dist/apis/UserApi.js | 8 +++---- typescript/dist/esm/apis/UserApi.d.ts | 2 +- typescript/dist/esm/apis/UserApi.js | 8 +++---- typescript/src/apis/UserApi.ts | 10 ++++---- 7 files changed, 30 insertions(+), 29 deletions(-) diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 124b5e13..45243f48 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -3115,11 +3115,12 @@ "operationId": "computations_quota_handler", "parameters": [ { - "name": "workflow", + "name": "offset", "in": "query", "required": true, "schema": { - "$ref": "#/components/schemas/WorkflowId" + "type": "integer", + "minimum": 0 } }, { diff --git a/python/geoengine_openapi_client/api/user_api.py b/python/geoengine_openapi_client/api/user_api.py index 1dd1f2a6..3e77e777 100644 --- a/python/geoengine_openapi_client/api/user_api.py +++ b/python/geoengine_openapi_client/api/user_api.py @@ -337,17 +337,17 @@ def assign_role_handler_with_http_info(self, user : Annotated[StrictStr, Field(. _request_auth=_params.get('_request_auth')) @validate_arguments - def computations_quota_handler(self, workflow : StrictStr, limit : conint(strict=True, ge=0), **kwargs) -> List[ComputationQuota]: # noqa: E501 + def computations_quota_handler(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> List[ComputationQuota]: # noqa: E501 """Retrieves the quota used by computations # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.computations_quota_handler(workflow, limit, async_req=True) + >>> thread = api.computations_quota_handler(offset, limit, async_req=True) >>> result = thread.get() - :param workflow: (required) - :type workflow: str + :param offset: (required) + :type offset: int :param limit: (required) :type limit: int :param async_req: Whether to execute the request asynchronously. @@ -365,20 +365,20 @@ def computations_quota_handler(self, workflow : StrictStr, limit : conint(strict if '_preload_content' in kwargs: message = "Error! Please call the computations_quota_handler_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501 raise ValueError(message) - return self.computations_quota_handler_with_http_info(workflow, limit, **kwargs) # noqa: E501 + return self.computations_quota_handler_with_http_info(offset, limit, **kwargs) # noqa: E501 @validate_arguments - def computations_quota_handler_with_http_info(self, workflow : StrictStr, limit : conint(strict=True, ge=0), **kwargs) -> ApiResponse: # noqa: E501 + def computations_quota_handler_with_http_info(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> ApiResponse: # noqa: E501 """Retrieves the quota used by computations # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.computations_quota_handler_with_http_info(workflow, limit, async_req=True) + >>> thread = api.computations_quota_handler_with_http_info(offset, limit, async_req=True) >>> result = thread.get() - :param workflow: (required) - :type workflow: str + :param offset: (required) + :type offset: int :param limit: (required) :type limit: int :param async_req: Whether to execute the request asynchronously. @@ -409,7 +409,7 @@ def computations_quota_handler_with_http_info(self, workflow : StrictStr, limit _params = locals() _all_params = [ - 'workflow', + 'offset', 'limit' ] _all_params.extend( @@ -441,8 +441,8 @@ def computations_quota_handler_with_http_info(self, workflow : StrictStr, limit # process the query parameters _query_params = [] - if _params.get('workflow') is not None: # noqa: E501 - _query_params.append(('workflow', _params['workflow'])) + if _params.get('offset') is not None: # noqa: E501 + _query_params.append(('offset', _params['offset'])) if _params.get('limit') is not None: # noqa: E501 _query_params.append(('limit', _params['limit'])) diff --git a/typescript/dist/apis/UserApi.d.ts b/typescript/dist/apis/UserApi.d.ts index 303da6fe..2904fcb9 100644 --- a/typescript/dist/apis/UserApi.d.ts +++ b/typescript/dist/apis/UserApi.d.ts @@ -19,7 +19,7 @@ export interface AssignRoleHandlerRequest { role: string; } export interface ComputationsQuotaHandlerRequest { - workflow: string; + offset: number; limit: number; } export interface GetRoleByNameHandlerRequest { diff --git a/typescript/dist/apis/UserApi.js b/typescript/dist/apis/UserApi.js index ede1c0f3..376ec23d 100644 --- a/typescript/dist/apis/UserApi.js +++ b/typescript/dist/apis/UserApi.js @@ -113,15 +113,15 @@ class UserApi extends runtime.BaseAPI { */ computationsQuotaHandlerRaw(requestParameters, initOverrides) { return __awaiter(this, void 0, void 0, function* () { - if (requestParameters.workflow === null || requestParameters.workflow === undefined) { - throw new runtime.RequiredError('workflow', 'Required parameter requestParameters.workflow was null or undefined when calling computationsQuotaHandler.'); + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset', 'Required parameter requestParameters.offset was null or undefined when calling computationsQuotaHandler.'); } if (requestParameters.limit === null || requestParameters.limit === undefined) { throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling computationsQuotaHandler.'); } const queryParameters = {}; - if (requestParameters.workflow !== undefined) { - queryParameters['workflow'] = requestParameters.workflow; + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; } if (requestParameters.limit !== undefined) { queryParameters['limit'] = requestParameters.limit; diff --git a/typescript/dist/esm/apis/UserApi.d.ts b/typescript/dist/esm/apis/UserApi.d.ts index 303da6fe..2904fcb9 100644 --- a/typescript/dist/esm/apis/UserApi.d.ts +++ b/typescript/dist/esm/apis/UserApi.d.ts @@ -19,7 +19,7 @@ export interface AssignRoleHandlerRequest { role: string; } export interface ComputationsQuotaHandlerRequest { - workflow: string; + offset: number; limit: number; } export interface GetRoleByNameHandlerRequest { diff --git a/typescript/dist/esm/apis/UserApi.js b/typescript/dist/esm/apis/UserApi.js index f3a3b770..3cec977f 100644 --- a/typescript/dist/esm/apis/UserApi.js +++ b/typescript/dist/esm/apis/UserApi.js @@ -110,15 +110,15 @@ export class UserApi extends runtime.BaseAPI { */ computationsQuotaHandlerRaw(requestParameters, initOverrides) { return __awaiter(this, void 0, void 0, function* () { - if (requestParameters.workflow === null || requestParameters.workflow === undefined) { - throw new runtime.RequiredError('workflow', 'Required parameter requestParameters.workflow was null or undefined when calling computationsQuotaHandler.'); + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset', 'Required parameter requestParameters.offset was null or undefined when calling computationsQuotaHandler.'); } if (requestParameters.limit === null || requestParameters.limit === undefined) { throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling computationsQuotaHandler.'); } const queryParameters = {}; - if (requestParameters.workflow !== undefined) { - queryParameters['workflow'] = requestParameters.workflow; + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; } if (requestParameters.limit !== undefined) { queryParameters['limit'] = requestParameters.limit; diff --git a/typescript/src/apis/UserApi.ts b/typescript/src/apis/UserApi.ts index 0a5d2468..d1b01245 100644 --- a/typescript/src/apis/UserApi.ts +++ b/typescript/src/apis/UserApi.ts @@ -47,7 +47,7 @@ export interface AssignRoleHandlerRequest { } export interface ComputationsQuotaHandlerRequest { - workflow: string; + offset: number; limit: number; } @@ -168,8 +168,8 @@ export class UserApi extends runtime.BaseAPI { * Retrieves the quota used by computations */ async computationsQuotaHandlerRaw(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>> { - if (requestParameters.workflow === null || requestParameters.workflow === undefined) { - throw new runtime.RequiredError('workflow','Required parameter requestParameters.workflow was null or undefined when calling computationsQuotaHandler.'); + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset','Required parameter requestParameters.offset was null or undefined when calling computationsQuotaHandler.'); } if (requestParameters.limit === null || requestParameters.limit === undefined) { @@ -178,8 +178,8 @@ export class UserApi extends runtime.BaseAPI { const queryParameters: any = {}; - if (requestParameters.workflow !== undefined) { - queryParameters['workflow'] = requestParameters.workflow; + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; } if (requestParameters.limit !== undefined) { From 0c69a3a9af453e7a5a4ea7db417da66ea277ef48 Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Wed, 27 Nov 2024 12:12:57 +0100 Subject: [PATCH 6/8] update openapi-client --- .generation/input/openapi.json | 52 ++++++- python/README.md | 1 + .../geoengine_openapi_client/api/user_api.py | 139 ++++++++++++++++++ .../models/computation_quota.py | 18 +-- python/test/test_computation_quota.py | 14 +- python/test/test_user_api.py | 7 + typescript/dist/apis/UserApi.d.ts | 13 +- typescript/dist/apis/UserApi.js | 35 +++++ typescript/dist/esm/apis/UserApi.d.ts | 13 +- typescript/dist/esm/apis/UserApi.js | 37 ++++- .../dist/esm/models/ComputationQuota.d.ts | 5 +- .../dist/esm/models/ComputationQuota.js | 7 +- typescript/dist/models/ComputationQuota.d.ts | 5 +- typescript/dist/models/ComputationQuota.js | 7 +- typescript/src/apis/UserApi.ts | 45 ++++++ typescript/src/models/ComputationQuota.ts | 17 +-- 16 files changed, 355 insertions(+), 60 deletions(-) diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 45243f48..9269874f 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -3155,6 +3155,47 @@ ] } }, + "/quota/computations/{computation}": { + "get": { + "tags": [ + "User" + ], + "summary": "Retrieves the quota used by computations", + "operationId": "computation_quota_handler", + "parameters": [ + { + "name": "computation", + "in": "path", + "description": "Computation id", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "The quota used by computation", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OperatorQuota" + } + } + } + } + } + }, + "security": [ + { + "session_token": [] + } + ] + } + }, "/quotas/{user}": { "get": { "tags": [ @@ -5532,18 +5573,17 @@ "timestamp", "computationId", "workflowId", - "operators" + "count" ], "properties": { "computationId": { "type": "string", "format": "uuid" }, - "operators": { - "type": "array", - "items": { - "$ref": "#/components/schemas/OperatorQuota" - } + "count": { + "type": "integer", + "format": "int64", + "minimum": 0 }, "timestamp": { "type": "string", diff --git a/python/README.md b/python/README.md index 13355e52..9f6545a5 100644 --- a/python/README.md +++ b/python/README.md @@ -165,6 +165,7 @@ Class | Method | HTTP request | Description *UploadsApi* | [**upload_handler**](docs/UploadsApi.md#upload_handler) | **POST** /upload | Uploads files. *UserApi* | [**add_role_handler**](docs/UserApi.md#add_role_handler) | **PUT** /roles | Add a new role. Requires admin privilige. *UserApi* | [**assign_role_handler**](docs/UserApi.md#assign_role_handler) | **POST** /users/{user}/roles/{role} | Assign a role to a user. Requires admin privilige. +*UserApi* | [**computation_quota_handler**](docs/UserApi.md#computation_quota_handler) | **GET** /quota/computations/{computation} | Retrieves the quota used by computations *UserApi* | [**computations_quota_handler**](docs/UserApi.md#computations_quota_handler) | **GET** /quota/computations | Retrieves the quota used by computations *UserApi* | [**get_role_by_name_handler**](docs/UserApi.md#get_role_by_name_handler) | **GET** /roles/byName/{name} | Get role by name *UserApi* | [**get_role_descriptions**](docs/UserApi.md#get_role_descriptions) | **GET** /user/roles/descriptions | Query roles for the current user. diff --git a/python/geoengine_openapi_client/api/user_api.py b/python/geoengine_openapi_client/api/user_api.py index 3e77e777..349bcc75 100644 --- a/python/geoengine_openapi_client/api/user_api.py +++ b/python/geoengine_openapi_client/api/user_api.py @@ -27,6 +27,7 @@ from geoengine_openapi_client.models.add_collection200_response import AddCollection200Response from geoengine_openapi_client.models.add_role import AddRole from geoengine_openapi_client.models.computation_quota import ComputationQuota +from geoengine_openapi_client.models.operator_quota import OperatorQuota from geoengine_openapi_client.models.quota import Quota from geoengine_openapi_client.models.role_description import RoleDescription from geoengine_openapi_client.models.update_quota import UpdateQuota @@ -336,6 +337,144 @@ def assign_role_handler_with_http_info(self, user : Annotated[StrictStr, Field(. collection_formats=_collection_formats, _request_auth=_params.get('_request_auth')) + @validate_arguments + def computation_quota_handler(self, computation : Annotated[StrictStr, Field(..., description="Computation id")], **kwargs) -> List[OperatorQuota]: # noqa: E501 + """Retrieves the quota used by computations # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.computation_quota_handler(computation, async_req=True) + >>> result = thread.get() + + :param computation: Computation id (required) + :type computation: str + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _request_timeout: timeout setting for this request. + If one number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: List[OperatorQuota] + """ + kwargs['_return_http_data_only'] = True + if '_preload_content' in kwargs: + message = "Error! Please call the computation_quota_handler_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501 + raise ValueError(message) + return self.computation_quota_handler_with_http_info(computation, **kwargs) # noqa: E501 + + @validate_arguments + def computation_quota_handler_with_http_info(self, computation : Annotated[StrictStr, Field(..., description="Computation id")], **kwargs) -> ApiResponse: # noqa: E501 + """Retrieves the quota used by computations # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.computation_quota_handler_with_http_info(computation, async_req=True) + >>> result = thread.get() + + :param computation: Computation id (required) + :type computation: str + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _preload_content: if False, the ApiResponse.data will + be set to none and raw_data will store the + HTTP response body without reading/decoding. + Default is True. + :type _preload_content: bool, optional + :param _return_http_data_only: response data instead of ApiResponse + object with status code, headers, etc + :type _return_http_data_only: bool, optional + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the authentication + in the spec for a single request. + :type _request_auth: dict, optional + :type _content_type: string, optional: force content-type for the request + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: tuple(List[OperatorQuota], status_code(int), headers(HTTPHeaderDict)) + """ + + _params = locals() + + _all_params = [ + 'computation' + ] + _all_params.extend( + [ + 'async_req', + '_return_http_data_only', + '_preload_content', + '_request_timeout', + '_request_auth', + '_content_type', + '_headers' + ] + ) + + # validate the arguments + for _key, _val in _params['kwargs'].items(): + if _key not in _all_params: + raise ApiTypeError( + "Got an unexpected keyword argument '%s'" + " to method computation_quota_handler" % _key + ) + _params[_key] = _val + del _params['kwargs'] + + _collection_formats = {} + + # process the path parameters + _path_params = {} + if _params['computation']: + _path_params['computation'] = _params['computation'] + + + # process the query parameters + _query_params = [] + # process the header parameters + _header_params = dict(_params.get('_headers', {})) + # process the form parameters + _form_params = [] + _files = {} + # process the body parameter + _body_params = None + # set the HTTP header `Accept` + _header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # authentication setting + _auth_settings = ['session_token'] # noqa: E501 + + _response_types_map = { + '200': "List[OperatorQuota]", + } + + return self.api_client.call_api( + '/quota/computations/{computation}', 'GET', + _path_params, + _query_params, + _header_params, + body=_body_params, + post_params=_form_params, + files=_files, + response_types_map=_response_types_map, + auth_settings=_auth_settings, + async_req=_params.get('async_req'), + _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501 + _preload_content=_params.get('_preload_content', True), + _request_timeout=_params.get('_request_timeout'), + collection_formats=_collection_formats, + _request_auth=_params.get('_request_auth')) + @validate_arguments def computations_quota_handler(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> List[ComputationQuota]: # noqa: E501 """Retrieves the quota used by computations # noqa: E501 diff --git a/python/geoengine_openapi_client/models/computation_quota.py b/python/geoengine_openapi_client/models/computation_quota.py index 25657f02..501eb159 100644 --- a/python/geoengine_openapi_client/models/computation_quota.py +++ b/python/geoengine_openapi_client/models/computation_quota.py @@ -19,19 +19,18 @@ import json from datetime import datetime -from typing import List -from pydantic import BaseModel, Field, StrictStr, conlist -from geoengine_openapi_client.models.operator_quota import OperatorQuota + +from pydantic import BaseModel, Field, StrictStr, conint class ComputationQuota(BaseModel): """ ComputationQuota """ computation_id: StrictStr = Field(..., alias="computationId") - operators: conlist(OperatorQuota) = Field(...) + count: conint(strict=True, ge=0) = Field(...) timestamp: datetime = Field(...) workflow_id: StrictStr = Field(..., alias="workflowId") - __properties = ["computationId", "operators", "timestamp", "workflowId"] + __properties = ["computationId", "count", "timestamp", "workflowId"] class Config: """Pydantic configuration""" @@ -57,13 +56,6 @@ def to_dict(self): exclude={ }, exclude_none=True) - # override the default output from pydantic by calling `to_dict()` of each item in operators (list) - _items = [] - if self.operators: - for _item in self.operators: - if _item: - _items.append(_item.to_dict()) - _dict['operators'] = _items return _dict @classmethod @@ -77,7 +69,7 @@ def from_dict(cls, obj: dict) -> ComputationQuota: _obj = ComputationQuota.parse_obj({ "computation_id": obj.get("computationId"), - "operators": [OperatorQuota.from_dict(_item) for _item in obj.get("operators")] if obj.get("operators") is not None else None, + "count": obj.get("count"), "timestamp": obj.get("timestamp"), "workflow_id": obj.get("workflowId") }) diff --git a/python/test/test_computation_quota.py b/python/test/test_computation_quota.py index aacda22b..341c4cd2 100644 --- a/python/test/test_computation_quota.py +++ b/python/test/test_computation_quota.py @@ -38,24 +38,14 @@ def make_instance(self, include_optional) -> ComputationQuota: if include_optional: return ComputationQuota( computation_id = '', - operators = [ - geoengine_openapi_client.models.operator_quota.OperatorQuota( - count = 0, - operator_name = '', - operator_path = '', ) - ], + count = 0, timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), workflow_id = '' ) else: return ComputationQuota( computation_id = '', - operators = [ - geoengine_openapi_client.models.operator_quota.OperatorQuota( - count = 0, - operator_name = '', - operator_path = '', ) - ], + count = 0, timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), workflow_id = '', ) diff --git a/python/test/test_user_api.py b/python/test/test_user_api.py index 01035b72..e5c8c6fb 100644 --- a/python/test/test_user_api.py +++ b/python/test/test_user_api.py @@ -41,6 +41,13 @@ def test_assign_role_handler(self) -> None: """ pass + def test_computation_quota_handler(self) -> None: + """Test case for computation_quota_handler + + Retrieves the quota used by computations # noqa: E501 + """ + pass + def test_computations_quota_handler(self) -> None: """Test case for computations_quota_handler diff --git a/typescript/dist/apis/UserApi.d.ts b/typescript/dist/apis/UserApi.d.ts index 2904fcb9..6f7444ed 100644 --- a/typescript/dist/apis/UserApi.d.ts +++ b/typescript/dist/apis/UserApi.d.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ import * as runtime from '../runtime'; -import type { AddCollection200Response, AddRole, ComputationQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; +import type { AddCollection200Response, AddRole, ComputationQuota, OperatorQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; export interface AddRoleHandlerRequest { addRole: AddRole; } @@ -18,6 +18,9 @@ export interface AssignRoleHandlerRequest { user: string; role: string; } +export interface ComputationQuotaHandlerRequest { + computation: string; +} export interface ComputationsQuotaHandlerRequest { offset: number; limit: number; @@ -59,6 +62,14 @@ export declare class UserApi extends runtime.BaseAPI { * Assign a role to a user. Requires admin privilige. */ assignRoleHandler(requestParameters: AssignRoleHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; + /** + * Retrieves the quota used by computations + */ + computationQuotaHandlerRaw(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used by computations + */ + computationQuotaHandler(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Retrieves the quota used by computations */ diff --git a/typescript/dist/apis/UserApi.js b/typescript/dist/apis/UserApi.js index 376ec23d..930b5c79 100644 --- a/typescript/dist/apis/UserApi.js +++ b/typescript/dist/apis/UserApi.js @@ -108,6 +108,41 @@ class UserApi extends runtime.BaseAPI { yield this.assignRoleHandlerRaw(requestParameters, initOverrides); }); } + /** + * Retrieves the quota used by computations + */ + computationQuotaHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.computation === null || requestParameters.computation === undefined) { + throw new runtime.RequiredError('computation', 'Required parameter requestParameters.computation was null or undefined when calling computationQuotaHandler.'); + } + const queryParameters = {}; + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/computations/{computation}`.replace(`{${"computation"}}`, encodeURIComponent(String(requestParameters.computation))), + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.OperatorQuotaFromJSON)); + }); + } + /** + * Retrieves the quota used by computations + */ + computationQuotaHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.computationQuotaHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } /** * Retrieves the quota used by computations */ diff --git a/typescript/dist/esm/apis/UserApi.d.ts b/typescript/dist/esm/apis/UserApi.d.ts index 2904fcb9..6f7444ed 100644 --- a/typescript/dist/esm/apis/UserApi.d.ts +++ b/typescript/dist/esm/apis/UserApi.d.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ import * as runtime from '../runtime'; -import type { AddCollection200Response, AddRole, ComputationQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; +import type { AddCollection200Response, AddRole, ComputationQuota, OperatorQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; export interface AddRoleHandlerRequest { addRole: AddRole; } @@ -18,6 +18,9 @@ export interface AssignRoleHandlerRequest { user: string; role: string; } +export interface ComputationQuotaHandlerRequest { + computation: string; +} export interface ComputationsQuotaHandlerRequest { offset: number; limit: number; @@ -59,6 +62,14 @@ export declare class UserApi extends runtime.BaseAPI { * Assign a role to a user. Requires admin privilige. */ assignRoleHandler(requestParameters: AssignRoleHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; + /** + * Retrieves the quota used by computations + */ + computationQuotaHandlerRaw(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used by computations + */ + computationQuotaHandler(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Retrieves the quota used by computations */ diff --git a/typescript/dist/esm/apis/UserApi.js b/typescript/dist/esm/apis/UserApi.js index 3cec977f..bdd1b058 100644 --- a/typescript/dist/esm/apis/UserApi.js +++ b/typescript/dist/esm/apis/UserApi.js @@ -21,7 +21,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }); }; import * as runtime from '../runtime'; -import { AddCollection200ResponseFromJSON, AddRoleToJSON, ComputationQuotaFromJSON, QuotaFromJSON, RoleDescriptionFromJSON, UpdateQuotaToJSON, } from '../models/index'; +import { AddCollection200ResponseFromJSON, AddRoleToJSON, ComputationQuotaFromJSON, OperatorQuotaFromJSON, QuotaFromJSON, RoleDescriptionFromJSON, UpdateQuotaToJSON, } from '../models/index'; /** * */ @@ -105,6 +105,41 @@ export class UserApi extends runtime.BaseAPI { yield this.assignRoleHandlerRaw(requestParameters, initOverrides); }); } + /** + * Retrieves the quota used by computations + */ + computationQuotaHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.computation === null || requestParameters.computation === undefined) { + throw new runtime.RequiredError('computation', 'Required parameter requestParameters.computation was null or undefined when calling computationQuotaHandler.'); + } + const queryParameters = {}; + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/computations/{computation}`.replace(`{${"computation"}}`, encodeURIComponent(String(requestParameters.computation))), + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(OperatorQuotaFromJSON)); + }); + } + /** + * Retrieves the quota used by computations + */ + computationQuotaHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.computationQuotaHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } /** * Retrieves the quota used by computations */ diff --git a/typescript/dist/esm/models/ComputationQuota.d.ts b/typescript/dist/esm/models/ComputationQuota.d.ts index 3db93f21..9b653e9d 100644 --- a/typescript/dist/esm/models/ComputationQuota.d.ts +++ b/typescript/dist/esm/models/ComputationQuota.d.ts @@ -9,7 +9,6 @@ * https://openapi-generator.tech * Do not edit the class manually. */ -import type { OperatorQuota } from './OperatorQuota'; /** * * @export @@ -24,10 +23,10 @@ export interface ComputationQuota { computationId: string; /** * - * @type {Array} + * @type {number} * @memberof ComputationQuota */ - operators: Array; + count: number; /** * * @type {Date} diff --git a/typescript/dist/esm/models/ComputationQuota.js b/typescript/dist/esm/models/ComputationQuota.js index 44f9fc68..9c7c3750 100644 --- a/typescript/dist/esm/models/ComputationQuota.js +++ b/typescript/dist/esm/models/ComputationQuota.js @@ -11,14 +11,13 @@ * https://openapi-generator.tech * Do not edit the class manually. */ -import { OperatorQuotaFromJSON, OperatorQuotaToJSON, } from './OperatorQuota'; /** * Check if a given object implements the ComputationQuota interface. */ export function instanceOfComputationQuota(value) { let isInstance = true; isInstance = isInstance && "computationId" in value; - isInstance = isInstance && "operators" in value; + isInstance = isInstance && "count" in value; isInstance = isInstance && "timestamp" in value; isInstance = isInstance && "workflowId" in value; return isInstance; @@ -32,7 +31,7 @@ export function ComputationQuotaFromJSONTyped(json, ignoreDiscriminator) { } return { 'computationId': json['computationId'], - 'operators': (json['operators'].map(OperatorQuotaFromJSON)), + 'count': json['count'], 'timestamp': (new Date(json['timestamp'])), 'workflowId': json['workflowId'], }; @@ -46,7 +45,7 @@ export function ComputationQuotaToJSON(value) { } return { 'computationId': value.computationId, - 'operators': (value.operators.map(OperatorQuotaToJSON)), + 'count': value.count, 'timestamp': (value.timestamp.toISOString()), 'workflowId': value.workflowId, }; diff --git a/typescript/dist/models/ComputationQuota.d.ts b/typescript/dist/models/ComputationQuota.d.ts index 3db93f21..9b653e9d 100644 --- a/typescript/dist/models/ComputationQuota.d.ts +++ b/typescript/dist/models/ComputationQuota.d.ts @@ -9,7 +9,6 @@ * https://openapi-generator.tech * Do not edit the class manually. */ -import type { OperatorQuota } from './OperatorQuota'; /** * * @export @@ -24,10 +23,10 @@ export interface ComputationQuota { computationId: string; /** * - * @type {Array} + * @type {number} * @memberof ComputationQuota */ - operators: Array; + count: number; /** * * @type {Date} diff --git a/typescript/dist/models/ComputationQuota.js b/typescript/dist/models/ComputationQuota.js index e4457f25..3471a28b 100644 --- a/typescript/dist/models/ComputationQuota.js +++ b/typescript/dist/models/ComputationQuota.js @@ -14,14 +14,13 @@ */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ComputationQuotaToJSON = exports.ComputationQuotaFromJSONTyped = exports.ComputationQuotaFromJSON = exports.instanceOfComputationQuota = void 0; -const OperatorQuota_1 = require("./OperatorQuota"); /** * Check if a given object implements the ComputationQuota interface. */ function instanceOfComputationQuota(value) { let isInstance = true; isInstance = isInstance && "computationId" in value; - isInstance = isInstance && "operators" in value; + isInstance = isInstance && "count" in value; isInstance = isInstance && "timestamp" in value; isInstance = isInstance && "workflowId" in value; return isInstance; @@ -37,7 +36,7 @@ function ComputationQuotaFromJSONTyped(json, ignoreDiscriminator) { } return { 'computationId': json['computationId'], - 'operators': (json['operators'].map(OperatorQuota_1.OperatorQuotaFromJSON)), + 'count': json['count'], 'timestamp': (new Date(json['timestamp'])), 'workflowId': json['workflowId'], }; @@ -52,7 +51,7 @@ function ComputationQuotaToJSON(value) { } return { 'computationId': value.computationId, - 'operators': (value.operators.map(OperatorQuota_1.OperatorQuotaToJSON)), + 'count': value.count, 'timestamp': (value.timestamp.toISOString()), 'workflowId': value.workflowId, }; diff --git a/typescript/src/apis/UserApi.ts b/typescript/src/apis/UserApi.ts index d1b01245..46e59945 100644 --- a/typescript/src/apis/UserApi.ts +++ b/typescript/src/apis/UserApi.ts @@ -18,6 +18,7 @@ import type { AddCollection200Response, AddRole, ComputationQuota, + OperatorQuota, Quota, RoleDescription, UpdateQuota, @@ -29,6 +30,8 @@ import { AddRoleToJSON, ComputationQuotaFromJSON, ComputationQuotaToJSON, + OperatorQuotaFromJSON, + OperatorQuotaToJSON, QuotaFromJSON, QuotaToJSON, RoleDescriptionFromJSON, @@ -46,6 +49,10 @@ export interface AssignRoleHandlerRequest { role: string; } +export interface ComputationQuotaHandlerRequest { + computation: string; +} + export interface ComputationsQuotaHandlerRequest { offset: number; limit: number; @@ -164,6 +171,44 @@ export class UserApi extends runtime.BaseAPI { await this.assignRoleHandlerRaw(requestParameters, initOverrides); } + /** + * Retrieves the quota used by computations + */ + async computationQuotaHandlerRaw(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>> { + if (requestParameters.computation === null || requestParameters.computation === undefined) { + throw new runtime.RequiredError('computation','Required parameter requestParameters.computation was null or undefined when calling computationQuotaHandler.'); + } + + const queryParameters: any = {}; + + const headerParameters: runtime.HTTPHeaders = {}; + + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = await token("session_token", []); + + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = await this.request({ + path: `/quota/computations/{computation}`.replace(`{${"computation"}}`, encodeURIComponent(String(requestParameters.computation))), + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(OperatorQuotaFromJSON)); + } + + /** + * Retrieves the quota used by computations + */ + async computationQuotaHandler(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> { + const response = await this.computationQuotaHandlerRaw(requestParameters, initOverrides); + return await response.value(); + } + /** * Retrieves the quota used by computations */ diff --git a/typescript/src/models/ComputationQuota.ts b/typescript/src/models/ComputationQuota.ts index ab9eb5e3..ca35c804 100644 --- a/typescript/src/models/ComputationQuota.ts +++ b/typescript/src/models/ComputationQuota.ts @@ -13,13 +13,6 @@ */ import { exists, mapValues } from '../runtime'; -import type { OperatorQuota } from './OperatorQuota'; -import { - OperatorQuotaFromJSON, - OperatorQuotaFromJSONTyped, - OperatorQuotaToJSON, -} from './OperatorQuota'; - /** * * @export @@ -34,10 +27,10 @@ export interface ComputationQuota { computationId: string; /** * - * @type {Array} + * @type {number} * @memberof ComputationQuota */ - operators: Array; + count: number; /** * * @type {Date} @@ -58,7 +51,7 @@ export interface ComputationQuota { export function instanceOfComputationQuota(value: object): boolean { let isInstance = true; isInstance = isInstance && "computationId" in value; - isInstance = isInstance && "operators" in value; + isInstance = isInstance && "count" in value; isInstance = isInstance && "timestamp" in value; isInstance = isInstance && "workflowId" in value; @@ -76,7 +69,7 @@ export function ComputationQuotaFromJSONTyped(json: any, ignoreDiscriminator: bo return { 'computationId': json['computationId'], - 'operators': ((json['operators'] as Array).map(OperatorQuotaFromJSON)), + 'count': json['count'], 'timestamp': (new Date(json['timestamp'])), 'workflowId': json['workflowId'], }; @@ -92,7 +85,7 @@ export function ComputationQuotaToJSON(value?: ComputationQuota | null): any { return { 'computationId': value.computationId, - 'operators': ((value.operators as Array).map(OperatorQuotaToJSON)), + 'count': value.count, 'timestamp': (value.timestamp.toISOString()), 'workflowId': value.workflowId, }; From 7922574a805ba4db6b65b843763fd42aee6af686 Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Thu, 28 Nov 2024 14:47:12 +0100 Subject: [PATCH 7/8] update openapi-client --- .generation/input/openapi.json | 153 ++++++++- python/.openapi-generator/FILES | 3 + python/README.md | 3 + python/geoengine_openapi_client/__init__.py | 1 + .../geoengine_openapi_client/api/user_api.py | 313 +++++++++++++++++- .../models/__init__.py | 1 + .../models/data_usage.py | 6 +- .../models/data_usage_summary.py | 14 +- .../models/usage_summary_granularity.py | 44 +++ python/test/test_data_usage.py | 4 +- python/test/test_data_usage_summary.py | 10 +- python/test/test_usage_summary_granularity.py | 35 ++ python/test/test_user_api.py | 14 + typescript/dist/apis/UserApi.d.ts | 28 +- typescript/dist/apis/UserApi.js | 97 ++++++ typescript/dist/esm/apis/UserApi.d.ts | 28 +- typescript/dist/esm/apis/UserApi.js | 99 +++++- typescript/dist/esm/models/DataUsage.d.ts | 6 - typescript/dist/esm/models/DataUsage.js | 3 - .../dist/esm/models/DataUsageSummary.d.ts | 12 +- .../dist/esm/models/DataUsageSummary.js | 15 +- .../esm/models/UsageSummaryGranularity.d.ts | 26 ++ .../esm/models/UsageSummaryGranularity.js | 33 ++ typescript/dist/esm/models/index.d.ts | 1 + typescript/dist/esm/models/index.js | 1 + typescript/dist/models/DataUsage.d.ts | 6 - typescript/dist/models/DataUsage.js | 3 - typescript/dist/models/DataUsageSummary.d.ts | 12 +- typescript/dist/models/DataUsageSummary.js | 15 +- .../dist/models/UsageSummaryGranularity.d.ts | 26 ++ .../dist/models/UsageSummaryGranularity.js | 39 +++ typescript/dist/models/index.d.ts | 1 + typescript/dist/models/index.js | 1 + typescript/src/apis/UserApi.ts | 133 ++++++++ typescript/src/models/DataUsage.ts | 9 - typescript/src/models/DataUsageSummary.ts | 27 +- .../src/models/UsageSummaryGranularity.ts | 41 +++ typescript/src/models/index.ts | 1 + 38 files changed, 1140 insertions(+), 124 deletions(-) create mode 100644 python/geoengine_openapi_client/models/usage_summary_granularity.py create mode 100644 python/test/test_usage_summary_granularity.py create mode 100644 typescript/dist/esm/models/UsageSummaryGranularity.d.ts create mode 100644 typescript/dist/esm/models/UsageSummaryGranularity.js create mode 100644 typescript/dist/models/UsageSummaryGranularity.d.ts create mode 100644 typescript/dist/models/UsageSummaryGranularity.js create mode 100644 typescript/src/models/UsageSummaryGranularity.ts diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 9269874f..614071f9 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -3196,6 +3196,125 @@ ] } }, + "/quota/dataUsage": { + "get": { + "tags": [ + "User" + ], + "summary": "Retrieves the quota used on data", + "operationId": "data_usage_handler", + "parameters": [ + { + "name": "offset", + "in": "query", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 0 + } + }, + { + "name": "limit", + "in": "query", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 0 + } + } + ], + "responses": { + "200": { + "description": "The quota used on data", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DataUsage" + } + } + } + } + } + }, + "security": [ + { + "session_token": [] + } + ] + } + }, + "/quota/dataUsage/summary": { + "get": { + "tags": [ + "User" + ], + "summary": "Retrieves the quota used by computations", + "operationId": "data_usage_summary_handler", + "parameters": [ + { + "name": "granularity", + "in": "query", + "required": true, + "schema": { + "$ref": "#/components/schemas/UsageSummaryGranularity" + } + }, + { + "name": "offset", + "in": "query", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 0 + } + }, + { + "name": "limit", + "in": "query", + "required": true, + "schema": { + "type": "integer", + "format": "int64", + "minimum": 0 + } + }, + { + "name": "dataset", + "in": "query", + "required": false, + "schema": { + "type": "string", + "nullable": true + } + } + ], + "responses": { + "200": { + "description": "The quota used on data", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/DataUsageSummary" + } + } + } + } + } + }, + "security": [ + { + "session_token": [] + } + ] + } + }, "/quotas/{user}": { "get": { "tags": [ @@ -5761,7 +5880,6 @@ "required": [ "timestamp", "userId", - "workflowId", "computationId", "data", "count" @@ -5786,19 +5904,14 @@ "userId": { "type": "string", "format": "uuid" - }, - "workflowId": { - "type": "string", - "format": "uuid" } } }, "DataUsageSummary": { "type": "object", "required": [ - "year", - "month", - "data", + "timestamp", + "dataset", "count" ], "properties": { @@ -5807,18 +5920,12 @@ "format": "int64", "minimum": 0 }, - "data": { + "dataset": { "type": "string" }, - "month": { - "type": "integer", - "format": "int32", - "minimum": 0 - }, - "year": { - "type": "integer", - "format": "int32", - "minimum": 0 + "timestamp": { + "type": "string", + "format": "date-time" } } }, @@ -9632,6 +9739,16 @@ "type": "string", "format": "uuid" }, + "UsageSummaryGranularity": { + "type": "string", + "enum": [ + "minutes", + "hours", + "days", + "months", + "years" + ] + }, "UserCredentials": { "type": "object", "required": [ diff --git a/python/.openapi-generator/FILES b/python/.openapi-generator/FILES index fc023a05..977e676c 100644 --- a/python/.openapi-generator/FILES +++ b/python/.openapi-generator/FILES @@ -219,6 +219,7 @@ docs/UpdateQuota.md docs/UploadFileLayersResponse.md docs/UploadFilesResponse.md docs/UploadsApi.md +docs/UsageSummaryGranularity.md docs/UserApi.md docs/UserCredentials.md docs/UserInfo.md @@ -465,6 +466,7 @@ geoengine_openapi_client/models/update_project.py geoengine_openapi_client/models/update_quota.py geoengine_openapi_client/models/upload_file_layers_response.py geoengine_openapi_client/models/upload_files_response.py +geoengine_openapi_client/models/usage_summary_granularity.py geoengine_openapi_client/models/user_credentials.py geoengine_openapi_client/models/user_info.py geoengine_openapi_client/models/user_registration.py @@ -709,6 +711,7 @@ test/test_update_quota.py test/test_upload_file_layers_response.py test/test_upload_files_response.py test/test_uploads_api.py +test/test_usage_summary_granularity.py test/test_user_api.py test/test_user_credentials.py test/test_user_info.py diff --git a/python/README.md b/python/README.md index 9f6545a5..6fb57637 100644 --- a/python/README.md +++ b/python/README.md @@ -167,6 +167,8 @@ Class | Method | HTTP request | Description *UserApi* | [**assign_role_handler**](docs/UserApi.md#assign_role_handler) | **POST** /users/{user}/roles/{role} | Assign a role to a user. Requires admin privilige. *UserApi* | [**computation_quota_handler**](docs/UserApi.md#computation_quota_handler) | **GET** /quota/computations/{computation} | Retrieves the quota used by computations *UserApi* | [**computations_quota_handler**](docs/UserApi.md#computations_quota_handler) | **GET** /quota/computations | Retrieves the quota used by computations +*UserApi* | [**data_usage_handler**](docs/UserApi.md#data_usage_handler) | **GET** /quota/dataUsage | Retrieves the quota used on data +*UserApi* | [**data_usage_summary_handler**](docs/UserApi.md#data_usage_summary_handler) | **GET** /quota/dataUsage/summary | Retrieves the quota used by computations *UserApi* | [**get_role_by_name_handler**](docs/UserApi.md#get_role_by_name_handler) | **GET** /roles/byName/{name} | Get role by name *UserApi* | [**get_role_descriptions**](docs/UserApi.md#get_role_descriptions) | **GET** /user/roles/descriptions | Query roles for the current user. *UserApi* | [**get_user_quota_handler**](docs/UserApi.md#get_user_quota_handler) | **GET** /quotas/{user} | Retrieves the available and used quota of a specific user. @@ -387,6 +389,7 @@ Class | Method | HTTP request | Description - [UpdateQuota](docs/UpdateQuota.md) - [UploadFileLayersResponse](docs/UploadFileLayersResponse.md) - [UploadFilesResponse](docs/UploadFilesResponse.md) + - [UsageSummaryGranularity](docs/UsageSummaryGranularity.md) - [UserCredentials](docs/UserCredentials.md) - [UserInfo](docs/UserInfo.md) - [UserRegistration](docs/UserRegistration.md) diff --git a/python/geoengine_openapi_client/__init__.py b/python/geoengine_openapi_client/__init__.py index 41469c28..37665373 100644 --- a/python/geoengine_openapi_client/__init__.py +++ b/python/geoengine_openapi_client/__init__.py @@ -249,6 +249,7 @@ from geoengine_openapi_client.models.update_quota import UpdateQuota from geoengine_openapi_client.models.upload_file_layers_response import UploadFileLayersResponse from geoengine_openapi_client.models.upload_files_response import UploadFilesResponse +from geoengine_openapi_client.models.usage_summary_granularity import UsageSummaryGranularity from geoengine_openapi_client.models.user_credentials import UserCredentials from geoengine_openapi_client.models.user_info import UserInfo from geoengine_openapi_client.models.user_registration import UserRegistration diff --git a/python/geoengine_openapi_client/api/user_api.py b/python/geoengine_openapi_client/api/user_api.py index 349bcc75..e758847a 100644 --- a/python/geoengine_openapi_client/api/user_api.py +++ b/python/geoengine_openapi_client/api/user_api.py @@ -22,15 +22,18 @@ from typing_extensions import Annotated from pydantic import Field, StrictStr, conint -from typing import List +from typing import List, Optional from geoengine_openapi_client.models.add_collection200_response import AddCollection200Response from geoengine_openapi_client.models.add_role import AddRole from geoengine_openapi_client.models.computation_quota import ComputationQuota +from geoengine_openapi_client.models.data_usage import DataUsage +from geoengine_openapi_client.models.data_usage_summary import DataUsageSummary from geoengine_openapi_client.models.operator_quota import OperatorQuota from geoengine_openapi_client.models.quota import Quota from geoengine_openapi_client.models.role_description import RoleDescription from geoengine_openapi_client.models.update_quota import UpdateQuota +from geoengine_openapi_client.models.usage_summary_granularity import UsageSummaryGranularity from geoengine_openapi_client.api_client import ApiClient from geoengine_openapi_client.api_response import ApiResponse @@ -621,6 +624,314 @@ def computations_quota_handler_with_http_info(self, offset : conint(strict=True, collection_formats=_collection_formats, _request_auth=_params.get('_request_auth')) + @validate_arguments + def data_usage_handler(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> List[DataUsage]: # noqa: E501 + """Retrieves the quota used on data # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.data_usage_handler(offset, limit, async_req=True) + >>> result = thread.get() + + :param offset: (required) + :type offset: int + :param limit: (required) + :type limit: int + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _request_timeout: timeout setting for this request. + If one number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: List[DataUsage] + """ + kwargs['_return_http_data_only'] = True + if '_preload_content' in kwargs: + message = "Error! Please call the data_usage_handler_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501 + raise ValueError(message) + return self.data_usage_handler_with_http_info(offset, limit, **kwargs) # noqa: E501 + + @validate_arguments + def data_usage_handler_with_http_info(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> ApiResponse: # noqa: E501 + """Retrieves the quota used on data # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.data_usage_handler_with_http_info(offset, limit, async_req=True) + >>> result = thread.get() + + :param offset: (required) + :type offset: int + :param limit: (required) + :type limit: int + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _preload_content: if False, the ApiResponse.data will + be set to none and raw_data will store the + HTTP response body without reading/decoding. + Default is True. + :type _preload_content: bool, optional + :param _return_http_data_only: response data instead of ApiResponse + object with status code, headers, etc + :type _return_http_data_only: bool, optional + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the authentication + in the spec for a single request. + :type _request_auth: dict, optional + :type _content_type: string, optional: force content-type for the request + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: tuple(List[DataUsage], status_code(int), headers(HTTPHeaderDict)) + """ + + _params = locals() + + _all_params = [ + 'offset', + 'limit' + ] + _all_params.extend( + [ + 'async_req', + '_return_http_data_only', + '_preload_content', + '_request_timeout', + '_request_auth', + '_content_type', + '_headers' + ] + ) + + # validate the arguments + for _key, _val in _params['kwargs'].items(): + if _key not in _all_params: + raise ApiTypeError( + "Got an unexpected keyword argument '%s'" + " to method data_usage_handler" % _key + ) + _params[_key] = _val + del _params['kwargs'] + + _collection_formats = {} + + # process the path parameters + _path_params = {} + + # process the query parameters + _query_params = [] + if _params.get('offset') is not None: # noqa: E501 + _query_params.append(('offset', _params['offset'])) + + if _params.get('limit') is not None: # noqa: E501 + _query_params.append(('limit', _params['limit'])) + + # process the header parameters + _header_params = dict(_params.get('_headers', {})) + # process the form parameters + _form_params = [] + _files = {} + # process the body parameter + _body_params = None + # set the HTTP header `Accept` + _header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # authentication setting + _auth_settings = ['session_token'] # noqa: E501 + + _response_types_map = { + '200': "List[DataUsage]", + } + + return self.api_client.call_api( + '/quota/dataUsage', 'GET', + _path_params, + _query_params, + _header_params, + body=_body_params, + post_params=_form_params, + files=_files, + response_types_map=_response_types_map, + auth_settings=_auth_settings, + async_req=_params.get('async_req'), + _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501 + _preload_content=_params.get('_preload_content', True), + _request_timeout=_params.get('_request_timeout'), + collection_formats=_collection_formats, + _request_auth=_params.get('_request_auth')) + + @validate_arguments + def data_usage_summary_handler(self, granularity : UsageSummaryGranularity, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), dataset : Optional[StrictStr] = None, **kwargs) -> List[DataUsageSummary]: # noqa: E501 + """Retrieves the quota used by computations # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.data_usage_summary_handler(granularity, offset, limit, dataset, async_req=True) + >>> result = thread.get() + + :param granularity: (required) + :type granularity: UsageSummaryGranularity + :param offset: (required) + :type offset: int + :param limit: (required) + :type limit: int + :param dataset: + :type dataset: str + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _request_timeout: timeout setting for this request. + If one number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: List[DataUsageSummary] + """ + kwargs['_return_http_data_only'] = True + if '_preload_content' in kwargs: + message = "Error! Please call the data_usage_summary_handler_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501 + raise ValueError(message) + return self.data_usage_summary_handler_with_http_info(granularity, offset, limit, dataset, **kwargs) # noqa: E501 + + @validate_arguments + def data_usage_summary_handler_with_http_info(self, granularity : UsageSummaryGranularity, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), dataset : Optional[StrictStr] = None, **kwargs) -> ApiResponse: # noqa: E501 + """Retrieves the quota used by computations # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + + >>> thread = api.data_usage_summary_handler_with_http_info(granularity, offset, limit, dataset, async_req=True) + >>> result = thread.get() + + :param granularity: (required) + :type granularity: UsageSummaryGranularity + :param offset: (required) + :type offset: int + :param limit: (required) + :type limit: int + :param dataset: + :type dataset: str + :param async_req: Whether to execute the request asynchronously. + :type async_req: bool, optional + :param _preload_content: if False, the ApiResponse.data will + be set to none and raw_data will store the + HTTP response body without reading/decoding. + Default is True. + :type _preload_content: bool, optional + :param _return_http_data_only: response data instead of ApiResponse + object with status code, headers, etc + :type _return_http_data_only: bool, optional + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the authentication + in the spec for a single request. + :type _request_auth: dict, optional + :type _content_type: string, optional: force content-type for the request + :return: Returns the result object. + If the method is called asynchronously, + returns the request thread. + :rtype: tuple(List[DataUsageSummary], status_code(int), headers(HTTPHeaderDict)) + """ + + _params = locals() + + _all_params = [ + 'granularity', + 'offset', + 'limit', + 'dataset' + ] + _all_params.extend( + [ + 'async_req', + '_return_http_data_only', + '_preload_content', + '_request_timeout', + '_request_auth', + '_content_type', + '_headers' + ] + ) + + # validate the arguments + for _key, _val in _params['kwargs'].items(): + if _key not in _all_params: + raise ApiTypeError( + "Got an unexpected keyword argument '%s'" + " to method data_usage_summary_handler" % _key + ) + _params[_key] = _val + del _params['kwargs'] + + _collection_formats = {} + + # process the path parameters + _path_params = {} + + # process the query parameters + _query_params = [] + if _params.get('granularity') is not None: # noqa: E501 + _query_params.append(('granularity', _params['granularity'].value)) + + if _params.get('offset') is not None: # noqa: E501 + _query_params.append(('offset', _params['offset'])) + + if _params.get('limit') is not None: # noqa: E501 + _query_params.append(('limit', _params['limit'])) + + if _params.get('dataset') is not None: # noqa: E501 + _query_params.append(('dataset', _params['dataset'])) + + # process the header parameters + _header_params = dict(_params.get('_headers', {})) + # process the form parameters + _form_params = [] + _files = {} + # process the body parameter + _body_params = None + # set the HTTP header `Accept` + _header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # authentication setting + _auth_settings = ['session_token'] # noqa: E501 + + _response_types_map = { + '200': "List[DataUsageSummary]", + } + + return self.api_client.call_api( + '/quota/dataUsage/summary', 'GET', + _path_params, + _query_params, + _header_params, + body=_body_params, + post_params=_form_params, + files=_files, + response_types_map=_response_types_map, + auth_settings=_auth_settings, + async_req=_params.get('async_req'), + _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501 + _preload_content=_params.get('_preload_content', True), + _request_timeout=_params.get('_request_timeout'), + collection_formats=_collection_formats, + _request_auth=_params.get('_request_auth')) + @validate_arguments def get_role_by_name_handler(self, name : Annotated[StrictStr, Field(..., description="Role Name")], **kwargs) -> AddCollection200Response: # noqa: E501 """Get role by name # noqa: E501 diff --git a/python/geoengine_openapi_client/models/__init__.py b/python/geoengine_openapi_client/models/__init__.py index 8e52c96e..81d963c0 100644 --- a/python/geoengine_openapi_client/models/__init__.py +++ b/python/geoengine_openapi_client/models/__init__.py @@ -217,6 +217,7 @@ from geoengine_openapi_client.models.update_quota import UpdateQuota from geoengine_openapi_client.models.upload_file_layers_response import UploadFileLayersResponse from geoengine_openapi_client.models.upload_files_response import UploadFilesResponse +from geoengine_openapi_client.models.usage_summary_granularity import UsageSummaryGranularity from geoengine_openapi_client.models.user_credentials import UserCredentials from geoengine_openapi_client.models.user_info import UserInfo from geoengine_openapi_client.models.user_registration import UserRegistration diff --git a/python/geoengine_openapi_client/models/data_usage.py b/python/geoengine_openapi_client/models/data_usage.py index 1d48219f..80d23db0 100644 --- a/python/geoengine_openapi_client/models/data_usage.py +++ b/python/geoengine_openapi_client/models/data_usage.py @@ -31,8 +31,7 @@ class DataUsage(BaseModel): data: StrictStr = Field(...) timestamp: datetime = Field(...) user_id: StrictStr = Field(..., alias="userId") - workflow_id: StrictStr = Field(..., alias="workflowId") - __properties = ["computationId", "count", "data", "timestamp", "userId", "workflowId"] + __properties = ["computationId", "count", "data", "timestamp", "userId"] class Config: """Pydantic configuration""" @@ -74,8 +73,7 @@ def from_dict(cls, obj: dict) -> DataUsage: "count": obj.get("count"), "data": obj.get("data"), "timestamp": obj.get("timestamp"), - "user_id": obj.get("userId"), - "workflow_id": obj.get("workflowId") + "user_id": obj.get("userId") }) return _obj diff --git a/python/geoengine_openapi_client/models/data_usage_summary.py b/python/geoengine_openapi_client/models/data_usage_summary.py index 59a6b2a2..77eecb84 100644 --- a/python/geoengine_openapi_client/models/data_usage_summary.py +++ b/python/geoengine_openapi_client/models/data_usage_summary.py @@ -18,7 +18,7 @@ import re # noqa: F401 import json - +from datetime import datetime from pydantic import BaseModel, Field, StrictStr, conint @@ -27,10 +27,9 @@ class DataUsageSummary(BaseModel): DataUsageSummary """ count: conint(strict=True, ge=0) = Field(...) - data: StrictStr = Field(...) - month: conint(strict=True, ge=0) = Field(...) - year: conint(strict=True, ge=0) = Field(...) - __properties = ["count", "data", "month", "year"] + dataset: StrictStr = Field(...) + timestamp: datetime = Field(...) + __properties = ["count", "dataset", "timestamp"] class Config: """Pydantic configuration""" @@ -69,9 +68,8 @@ def from_dict(cls, obj: dict) -> DataUsageSummary: _obj = DataUsageSummary.parse_obj({ "count": obj.get("count"), - "data": obj.get("data"), - "month": obj.get("month"), - "year": obj.get("year") + "dataset": obj.get("dataset"), + "timestamp": obj.get("timestamp") }) return _obj diff --git a/python/geoengine_openapi_client/models/usage_summary_granularity.py b/python/geoengine_openapi_client/models/usage_summary_granularity.py new file mode 100644 index 00000000..921fd3ad --- /dev/null +++ b/python/geoengine_openapi_client/models/usage_summary_granularity.py @@ -0,0 +1,44 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import json +import pprint +import re # noqa: F401 +from aenum import Enum, no_arg + + + + + +class UsageSummaryGranularity(str, Enum): + """ + UsageSummaryGranularity + """ + + """ + allowed enum values + """ + MINUTES = 'minutes' + HOURS = 'hours' + DAYS = 'days' + MONTHS = 'months' + YEARS = 'years' + + @classmethod + def from_json(cls, json_str: str) -> UsageSummaryGranularity: + """Create an instance of UsageSummaryGranularity from a JSON string""" + return UsageSummaryGranularity(json.loads(json_str)) + + diff --git a/python/test/test_data_usage.py b/python/test/test_data_usage.py index 498310ee..2f75c910 100644 --- a/python/test/test_data_usage.py +++ b/python/test/test_data_usage.py @@ -41,8 +41,7 @@ def make_instance(self, include_optional) -> DataUsage: count = 0, data = '', timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), - user_id = '', - workflow_id = '' + user_id = '' ) else: return DataUsage( @@ -51,7 +50,6 @@ def make_instance(self, include_optional) -> DataUsage: data = '', timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), user_id = '', - workflow_id = '', ) """ diff --git a/python/test/test_data_usage_summary.py b/python/test/test_data_usage_summary.py index dc1934c1..aed7a639 100644 --- a/python/test/test_data_usage_summary.py +++ b/python/test/test_data_usage_summary.py @@ -38,16 +38,14 @@ def make_instance(self, include_optional) -> DataUsageSummary: if include_optional: return DataUsageSummary( count = 0, - data = '', - month = 0, - year = 0 + dataset = '', + timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f') ) else: return DataUsageSummary( count = 0, - data = '', - month = 0, - year = 0, + dataset = '', + timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), ) """ diff --git a/python/test/test_usage_summary_granularity.py b/python/test/test_usage_summary_granularity.py new file mode 100644 index 00000000..bca48741 --- /dev/null +++ b/python/test/test_usage_summary_granularity.py @@ -0,0 +1,35 @@ +# coding: utf-8 + +""" + Geo Engine Pro API + + No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + + The version of the OpenAPI document: 0.8.0 + Contact: dev@geoengine.de + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest +import datetime + +from geoengine_openapi_client.models.usage_summary_granularity import UsageSummaryGranularity # noqa: E501 + +class TestUsageSummaryGranularity(unittest.TestCase): + """UsageSummaryGranularity unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testUsageSummaryGranularity(self): + """Test UsageSummaryGranularity""" + # inst = UsageSummaryGranularity() + +if __name__ == '__main__': + unittest.main() diff --git a/python/test/test_user_api.py b/python/test/test_user_api.py index e5c8c6fb..c336e43f 100644 --- a/python/test/test_user_api.py +++ b/python/test/test_user_api.py @@ -55,6 +55,20 @@ def test_computations_quota_handler(self) -> None: """ pass + def test_data_usage_handler(self) -> None: + """Test case for data_usage_handler + + Retrieves the quota used on data # noqa: E501 + """ + pass + + def test_data_usage_summary_handler(self) -> None: + """Test case for data_usage_summary_handler + + Retrieves the quota used by computations # noqa: E501 + """ + pass + def test_get_role_by_name_handler(self) -> None: """Test case for get_role_by_name_handler diff --git a/typescript/dist/apis/UserApi.d.ts b/typescript/dist/apis/UserApi.d.ts index 6f7444ed..29fd5280 100644 --- a/typescript/dist/apis/UserApi.d.ts +++ b/typescript/dist/apis/UserApi.d.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ import * as runtime from '../runtime'; -import type { AddCollection200Response, AddRole, ComputationQuota, OperatorQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; +import type { AddCollection200Response, AddRole, ComputationQuota, DataUsage, DataUsageSummary, OperatorQuota, Quota, RoleDescription, UpdateQuota, UsageSummaryGranularity } from '../models/index'; export interface AddRoleHandlerRequest { addRole: AddRole; } @@ -25,6 +25,16 @@ export interface ComputationsQuotaHandlerRequest { offset: number; limit: number; } +export interface DataUsageHandlerRequest { + offset: number; + limit: number; +} +export interface DataUsageSummaryHandlerRequest { + granularity: UsageSummaryGranularity; + offset: number; + limit: number; + dataset?: string | null; +} export interface GetRoleByNameHandlerRequest { name: string; } @@ -78,6 +88,22 @@ export declare class UserApi extends runtime.BaseAPI { * Retrieves the quota used by computations */ computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; + /** + * Retrieves the quota used on data + */ + dataUsageHandlerRaw(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used on data + */ + dataUsageHandler(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandlerRaw(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandler(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get role by name */ diff --git a/typescript/dist/apis/UserApi.js b/typescript/dist/apis/UserApi.js index 930b5c79..cbe24cde 100644 --- a/typescript/dist/apis/UserApi.js +++ b/typescript/dist/apis/UserApi.js @@ -187,6 +187,103 @@ class UserApi extends runtime.BaseAPI { return yield response.value(); }); } + /** + * Retrieves the quota used on data + */ + dataUsageHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset', 'Required parameter requestParameters.offset was null or undefined when calling dataUsageHandler.'); + } + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling dataUsageHandler.'); + } + const queryParameters = {}; + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; + } + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/dataUsage`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.DataUsageFromJSON)); + }); + } + /** + * Retrieves the quota used on data + */ + dataUsageHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.dataUsageHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.granularity === null || requestParameters.granularity === undefined) { + throw new runtime.RequiredError('granularity', 'Required parameter requestParameters.granularity was null or undefined when calling dataUsageSummaryHandler.'); + } + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset', 'Required parameter requestParameters.offset was null or undefined when calling dataUsageSummaryHandler.'); + } + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling dataUsageSummaryHandler.'); + } + const queryParameters = {}; + if (requestParameters.granularity !== undefined) { + queryParameters['granularity'] = requestParameters.granularity; + } + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; + } + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + if (requestParameters.dataset !== undefined) { + queryParameters['dataset'] = requestParameters.dataset; + } + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/dataUsage/summary`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.DataUsageSummaryFromJSON)); + }); + } + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.dataUsageSummaryHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } /** * Get role by name */ diff --git a/typescript/dist/esm/apis/UserApi.d.ts b/typescript/dist/esm/apis/UserApi.d.ts index 6f7444ed..29fd5280 100644 --- a/typescript/dist/esm/apis/UserApi.d.ts +++ b/typescript/dist/esm/apis/UserApi.d.ts @@ -10,7 +10,7 @@ * Do not edit the class manually. */ import * as runtime from '../runtime'; -import type { AddCollection200Response, AddRole, ComputationQuota, OperatorQuota, Quota, RoleDescription, UpdateQuota } from '../models/index'; +import type { AddCollection200Response, AddRole, ComputationQuota, DataUsage, DataUsageSummary, OperatorQuota, Quota, RoleDescription, UpdateQuota, UsageSummaryGranularity } from '../models/index'; export interface AddRoleHandlerRequest { addRole: AddRole; } @@ -25,6 +25,16 @@ export interface ComputationsQuotaHandlerRequest { offset: number; limit: number; } +export interface DataUsageHandlerRequest { + offset: number; + limit: number; +} +export interface DataUsageSummaryHandlerRequest { + granularity: UsageSummaryGranularity; + offset: number; + limit: number; + dataset?: string | null; +} export interface GetRoleByNameHandlerRequest { name: string; } @@ -78,6 +88,22 @@ export declare class UserApi extends runtime.BaseAPI { * Retrieves the quota used by computations */ computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; + /** + * Retrieves the quota used on data + */ + dataUsageHandlerRaw(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used on data + */ + dataUsageHandler(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandlerRaw(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandler(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get role by name */ diff --git a/typescript/dist/esm/apis/UserApi.js b/typescript/dist/esm/apis/UserApi.js index bdd1b058..a01641da 100644 --- a/typescript/dist/esm/apis/UserApi.js +++ b/typescript/dist/esm/apis/UserApi.js @@ -21,7 +21,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }); }; import * as runtime from '../runtime'; -import { AddCollection200ResponseFromJSON, AddRoleToJSON, ComputationQuotaFromJSON, OperatorQuotaFromJSON, QuotaFromJSON, RoleDescriptionFromJSON, UpdateQuotaToJSON, } from '../models/index'; +import { AddCollection200ResponseFromJSON, AddRoleToJSON, ComputationQuotaFromJSON, DataUsageFromJSON, DataUsageSummaryFromJSON, OperatorQuotaFromJSON, QuotaFromJSON, RoleDescriptionFromJSON, UpdateQuotaToJSON, } from '../models/index'; /** * */ @@ -184,6 +184,103 @@ export class UserApi extends runtime.BaseAPI { return yield response.value(); }); } + /** + * Retrieves the quota used on data + */ + dataUsageHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset', 'Required parameter requestParameters.offset was null or undefined when calling dataUsageHandler.'); + } + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling dataUsageHandler.'); + } + const queryParameters = {}; + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; + } + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/dataUsage`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(DataUsageFromJSON)); + }); + } + /** + * Retrieves the quota used on data + */ + dataUsageHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.dataUsageHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandlerRaw(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + if (requestParameters.granularity === null || requestParameters.granularity === undefined) { + throw new runtime.RequiredError('granularity', 'Required parameter requestParameters.granularity was null or undefined when calling dataUsageSummaryHandler.'); + } + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset', 'Required parameter requestParameters.offset was null or undefined when calling dataUsageSummaryHandler.'); + } + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit', 'Required parameter requestParameters.limit was null or undefined when calling dataUsageSummaryHandler.'); + } + const queryParameters = {}; + if (requestParameters.granularity !== undefined) { + queryParameters['granularity'] = requestParameters.granularity; + } + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; + } + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + if (requestParameters.dataset !== undefined) { + queryParameters['dataset'] = requestParameters.dataset; + } + const headerParameters = {}; + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = yield token("session_token", []); + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = yield this.request({ + path: `/quota/dataUsage/summary`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(DataUsageSummaryFromJSON)); + }); + } + /** + * Retrieves the quota used by computations + */ + dataUsageSummaryHandler(requestParameters, initOverrides) { + return __awaiter(this, void 0, void 0, function* () { + const response = yield this.dataUsageSummaryHandlerRaw(requestParameters, initOverrides); + return yield response.value(); + }); + } /** * Get role by name */ diff --git a/typescript/dist/esm/models/DataUsage.d.ts b/typescript/dist/esm/models/DataUsage.d.ts index 4243007c..1b77f415 100644 --- a/typescript/dist/esm/models/DataUsage.d.ts +++ b/typescript/dist/esm/models/DataUsage.d.ts @@ -45,12 +45,6 @@ export interface DataUsage { * @memberof DataUsage */ userId: string; - /** - * - * @type {string} - * @memberof DataUsage - */ - workflowId: string; } /** * Check if a given object implements the DataUsage interface. diff --git a/typescript/dist/esm/models/DataUsage.js b/typescript/dist/esm/models/DataUsage.js index b8789738..76e88981 100644 --- a/typescript/dist/esm/models/DataUsage.js +++ b/typescript/dist/esm/models/DataUsage.js @@ -21,7 +21,6 @@ export function instanceOfDataUsage(value) { isInstance = isInstance && "data" in value; isInstance = isInstance && "timestamp" in value; isInstance = isInstance && "userId" in value; - isInstance = isInstance && "workflowId" in value; return isInstance; } export function DataUsageFromJSON(json) { @@ -37,7 +36,6 @@ export function DataUsageFromJSONTyped(json, ignoreDiscriminator) { 'data': json['data'], 'timestamp': (new Date(json['timestamp'])), 'userId': json['userId'], - 'workflowId': json['workflowId'], }; } export function DataUsageToJSON(value) { @@ -53,6 +51,5 @@ export function DataUsageToJSON(value) { 'data': value.data, 'timestamp': (value.timestamp.toISOString()), 'userId': value.userId, - 'workflowId': value.workflowId, }; } diff --git a/typescript/dist/esm/models/DataUsageSummary.d.ts b/typescript/dist/esm/models/DataUsageSummary.d.ts index eb2c113d..c4b6d16a 100644 --- a/typescript/dist/esm/models/DataUsageSummary.d.ts +++ b/typescript/dist/esm/models/DataUsageSummary.d.ts @@ -26,19 +26,13 @@ export interface DataUsageSummary { * @type {string} * @memberof DataUsageSummary */ - data: string; + dataset: string; /** * - * @type {number} - * @memberof DataUsageSummary - */ - month: number; - /** - * - * @type {number} + * @type {Date} * @memberof DataUsageSummary */ - year: number; + timestamp: Date; } /** * Check if a given object implements the DataUsageSummary interface. diff --git a/typescript/dist/esm/models/DataUsageSummary.js b/typescript/dist/esm/models/DataUsageSummary.js index 4870b785..ddcb3aac 100644 --- a/typescript/dist/esm/models/DataUsageSummary.js +++ b/typescript/dist/esm/models/DataUsageSummary.js @@ -17,9 +17,8 @@ export function instanceOfDataUsageSummary(value) { let isInstance = true; isInstance = isInstance && "count" in value; - isInstance = isInstance && "data" in value; - isInstance = isInstance && "month" in value; - isInstance = isInstance && "year" in value; + isInstance = isInstance && "dataset" in value; + isInstance = isInstance && "timestamp" in value; return isInstance; } export function DataUsageSummaryFromJSON(json) { @@ -31,9 +30,8 @@ export function DataUsageSummaryFromJSONTyped(json, ignoreDiscriminator) { } return { 'count': json['count'], - 'data': json['data'], - 'month': json['month'], - 'year': json['year'], + 'dataset': json['dataset'], + 'timestamp': (new Date(json['timestamp'])), }; } export function DataUsageSummaryToJSON(value) { @@ -45,8 +43,7 @@ export function DataUsageSummaryToJSON(value) { } return { 'count': value.count, - 'data': value.data, - 'month': value.month, - 'year': value.year, + 'dataset': value.dataset, + 'timestamp': (value.timestamp.toISOString()), }; } diff --git a/typescript/dist/esm/models/UsageSummaryGranularity.d.ts b/typescript/dist/esm/models/UsageSummaryGranularity.d.ts new file mode 100644 index 00000000..2eeb47c2 --- /dev/null +++ b/typescript/dist/esm/models/UsageSummaryGranularity.d.ts @@ -0,0 +1,26 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + */ +export declare const UsageSummaryGranularity: { + readonly Minutes: "minutes"; + readonly Hours: "hours"; + readonly Days: "days"; + readonly Months: "months"; + readonly Years: "years"; +}; +export type UsageSummaryGranularity = typeof UsageSummaryGranularity[keyof typeof UsageSummaryGranularity]; +export declare function UsageSummaryGranularityFromJSON(json: any): UsageSummaryGranularity; +export declare function UsageSummaryGranularityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsageSummaryGranularity; +export declare function UsageSummaryGranularityToJSON(value?: UsageSummaryGranularity | null): any; diff --git a/typescript/dist/esm/models/UsageSummaryGranularity.js b/typescript/dist/esm/models/UsageSummaryGranularity.js new file mode 100644 index 00000000..cf9d1ffc --- /dev/null +++ b/typescript/dist/esm/models/UsageSummaryGranularity.js @@ -0,0 +1,33 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + */ +export const UsageSummaryGranularity = { + Minutes: 'minutes', + Hours: 'hours', + Days: 'days', + Months: 'months', + Years: 'years' +}; +export function UsageSummaryGranularityFromJSON(json) { + return UsageSummaryGranularityFromJSONTyped(json, false); +} +export function UsageSummaryGranularityFromJSONTyped(json, ignoreDiscriminator) { + return json; +} +export function UsageSummaryGranularityToJSON(value) { + return value; +} diff --git a/typescript/dist/esm/models/index.d.ts b/typescript/dist/esm/models/index.d.ts index 636e41fe..7b745df7 100644 --- a/typescript/dist/esm/models/index.d.ts +++ b/typescript/dist/esm/models/index.d.ts @@ -200,6 +200,7 @@ export * from './UpdateProject'; export * from './UpdateQuota'; export * from './UploadFileLayersResponse'; export * from './UploadFilesResponse'; +export * from './UsageSummaryGranularity'; export * from './UserCredentials'; export * from './UserInfo'; export * from './UserRegistration'; diff --git a/typescript/dist/esm/models/index.js b/typescript/dist/esm/models/index.js index aae64509..84bd63af 100644 --- a/typescript/dist/esm/models/index.js +++ b/typescript/dist/esm/models/index.js @@ -202,6 +202,7 @@ export * from './UpdateProject'; export * from './UpdateQuota'; export * from './UploadFileLayersResponse'; export * from './UploadFilesResponse'; +export * from './UsageSummaryGranularity'; export * from './UserCredentials'; export * from './UserInfo'; export * from './UserRegistration'; diff --git a/typescript/dist/models/DataUsage.d.ts b/typescript/dist/models/DataUsage.d.ts index 4243007c..1b77f415 100644 --- a/typescript/dist/models/DataUsage.d.ts +++ b/typescript/dist/models/DataUsage.d.ts @@ -45,12 +45,6 @@ export interface DataUsage { * @memberof DataUsage */ userId: string; - /** - * - * @type {string} - * @memberof DataUsage - */ - workflowId: string; } /** * Check if a given object implements the DataUsage interface. diff --git a/typescript/dist/models/DataUsage.js b/typescript/dist/models/DataUsage.js index 8153fce1..705e882a 100644 --- a/typescript/dist/models/DataUsage.js +++ b/typescript/dist/models/DataUsage.js @@ -24,7 +24,6 @@ function instanceOfDataUsage(value) { isInstance = isInstance && "data" in value; isInstance = isInstance && "timestamp" in value; isInstance = isInstance && "userId" in value; - isInstance = isInstance && "workflowId" in value; return isInstance; } exports.instanceOfDataUsage = instanceOfDataUsage; @@ -42,7 +41,6 @@ function DataUsageFromJSONTyped(json, ignoreDiscriminator) { 'data': json['data'], 'timestamp': (new Date(json['timestamp'])), 'userId': json['userId'], - 'workflowId': json['workflowId'], }; } exports.DataUsageFromJSONTyped = DataUsageFromJSONTyped; @@ -59,7 +57,6 @@ function DataUsageToJSON(value) { 'data': value.data, 'timestamp': (value.timestamp.toISOString()), 'userId': value.userId, - 'workflowId': value.workflowId, }; } exports.DataUsageToJSON = DataUsageToJSON; diff --git a/typescript/dist/models/DataUsageSummary.d.ts b/typescript/dist/models/DataUsageSummary.d.ts index eb2c113d..c4b6d16a 100644 --- a/typescript/dist/models/DataUsageSummary.d.ts +++ b/typescript/dist/models/DataUsageSummary.d.ts @@ -26,19 +26,13 @@ export interface DataUsageSummary { * @type {string} * @memberof DataUsageSummary */ - data: string; + dataset: string; /** * - * @type {number} - * @memberof DataUsageSummary - */ - month: number; - /** - * - * @type {number} + * @type {Date} * @memberof DataUsageSummary */ - year: number; + timestamp: Date; } /** * Check if a given object implements the DataUsageSummary interface. diff --git a/typescript/dist/models/DataUsageSummary.js b/typescript/dist/models/DataUsageSummary.js index 06cb71d8..b6848c5c 100644 --- a/typescript/dist/models/DataUsageSummary.js +++ b/typescript/dist/models/DataUsageSummary.js @@ -20,9 +20,8 @@ exports.DataUsageSummaryToJSON = exports.DataUsageSummaryFromJSONTyped = exports function instanceOfDataUsageSummary(value) { let isInstance = true; isInstance = isInstance && "count" in value; - isInstance = isInstance && "data" in value; - isInstance = isInstance && "month" in value; - isInstance = isInstance && "year" in value; + isInstance = isInstance && "dataset" in value; + isInstance = isInstance && "timestamp" in value; return isInstance; } exports.instanceOfDataUsageSummary = instanceOfDataUsageSummary; @@ -36,9 +35,8 @@ function DataUsageSummaryFromJSONTyped(json, ignoreDiscriminator) { } return { 'count': json['count'], - 'data': json['data'], - 'month': json['month'], - 'year': json['year'], + 'dataset': json['dataset'], + 'timestamp': (new Date(json['timestamp'])), }; } exports.DataUsageSummaryFromJSONTyped = DataUsageSummaryFromJSONTyped; @@ -51,9 +49,8 @@ function DataUsageSummaryToJSON(value) { } return { 'count': value.count, - 'data': value.data, - 'month': value.month, - 'year': value.year, + 'dataset': value.dataset, + 'timestamp': (value.timestamp.toISOString()), }; } exports.DataUsageSummaryToJSON = DataUsageSummaryToJSON; diff --git a/typescript/dist/models/UsageSummaryGranularity.d.ts b/typescript/dist/models/UsageSummaryGranularity.d.ts new file mode 100644 index 00000000..2eeb47c2 --- /dev/null +++ b/typescript/dist/models/UsageSummaryGranularity.d.ts @@ -0,0 +1,26 @@ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +/** + * + * @export + */ +export declare const UsageSummaryGranularity: { + readonly Minutes: "minutes"; + readonly Hours: "hours"; + readonly Days: "days"; + readonly Months: "months"; + readonly Years: "years"; +}; +export type UsageSummaryGranularity = typeof UsageSummaryGranularity[keyof typeof UsageSummaryGranularity]; +export declare function UsageSummaryGranularityFromJSON(json: any): UsageSummaryGranularity; +export declare function UsageSummaryGranularityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsageSummaryGranularity; +export declare function UsageSummaryGranularityToJSON(value?: UsageSummaryGranularity | null): any; diff --git a/typescript/dist/models/UsageSummaryGranularity.js b/typescript/dist/models/UsageSummaryGranularity.js new file mode 100644 index 00000000..aa485d2e --- /dev/null +++ b/typescript/dist/models/UsageSummaryGranularity.js @@ -0,0 +1,39 @@ +"use strict"; +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UsageSummaryGranularityToJSON = exports.UsageSummaryGranularityFromJSONTyped = exports.UsageSummaryGranularityFromJSON = exports.UsageSummaryGranularity = void 0; +/** + * + * @export + */ +exports.UsageSummaryGranularity = { + Minutes: 'minutes', + Hours: 'hours', + Days: 'days', + Months: 'months', + Years: 'years' +}; +function UsageSummaryGranularityFromJSON(json) { + return UsageSummaryGranularityFromJSONTyped(json, false); +} +exports.UsageSummaryGranularityFromJSON = UsageSummaryGranularityFromJSON; +function UsageSummaryGranularityFromJSONTyped(json, ignoreDiscriminator) { + return json; +} +exports.UsageSummaryGranularityFromJSONTyped = UsageSummaryGranularityFromJSONTyped; +function UsageSummaryGranularityToJSON(value) { + return value; +} +exports.UsageSummaryGranularityToJSON = UsageSummaryGranularityToJSON; diff --git a/typescript/dist/models/index.d.ts b/typescript/dist/models/index.d.ts index 636e41fe..7b745df7 100644 --- a/typescript/dist/models/index.d.ts +++ b/typescript/dist/models/index.d.ts @@ -200,6 +200,7 @@ export * from './UpdateProject'; export * from './UpdateQuota'; export * from './UploadFileLayersResponse'; export * from './UploadFilesResponse'; +export * from './UsageSummaryGranularity'; export * from './UserCredentials'; export * from './UserInfo'; export * from './UserRegistration'; diff --git a/typescript/dist/models/index.js b/typescript/dist/models/index.js index 41c58967..9f52efc3 100644 --- a/typescript/dist/models/index.js +++ b/typescript/dist/models/index.js @@ -218,6 +218,7 @@ __exportStar(require("./UpdateProject"), exports); __exportStar(require("./UpdateQuota"), exports); __exportStar(require("./UploadFileLayersResponse"), exports); __exportStar(require("./UploadFilesResponse"), exports); +__exportStar(require("./UsageSummaryGranularity"), exports); __exportStar(require("./UserCredentials"), exports); __exportStar(require("./UserInfo"), exports); __exportStar(require("./UserRegistration"), exports); diff --git a/typescript/src/apis/UserApi.ts b/typescript/src/apis/UserApi.ts index 46e59945..8f069bd9 100644 --- a/typescript/src/apis/UserApi.ts +++ b/typescript/src/apis/UserApi.ts @@ -18,10 +18,13 @@ import type { AddCollection200Response, AddRole, ComputationQuota, + DataUsage, + DataUsageSummary, OperatorQuota, Quota, RoleDescription, UpdateQuota, + UsageSummaryGranularity, } from '../models/index'; import { AddCollection200ResponseFromJSON, @@ -30,6 +33,10 @@ import { AddRoleToJSON, ComputationQuotaFromJSON, ComputationQuotaToJSON, + DataUsageFromJSON, + DataUsageToJSON, + DataUsageSummaryFromJSON, + DataUsageSummaryToJSON, OperatorQuotaFromJSON, OperatorQuotaToJSON, QuotaFromJSON, @@ -38,6 +45,8 @@ import { RoleDescriptionToJSON, UpdateQuotaFromJSON, UpdateQuotaToJSON, + UsageSummaryGranularityFromJSON, + UsageSummaryGranularityToJSON, } from '../models/index'; export interface AddRoleHandlerRequest { @@ -58,6 +67,18 @@ export interface ComputationsQuotaHandlerRequest { limit: number; } +export interface DataUsageHandlerRequest { + offset: number; + limit: number; +} + +export interface DataUsageSummaryHandlerRequest { + granularity: UsageSummaryGranularity; + offset: number; + limit: number; + dataset?: string | null; +} + export interface GetRoleByNameHandlerRequest { name: string; } @@ -259,6 +280,118 @@ export class UserApi extends runtime.BaseAPI { return await response.value(); } + /** + * Retrieves the quota used on data + */ + async dataUsageHandlerRaw(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>> { + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset','Required parameter requestParameters.offset was null or undefined when calling dataUsageHandler.'); + } + + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit','Required parameter requestParameters.limit was null or undefined when calling dataUsageHandler.'); + } + + const queryParameters: any = {}; + + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; + } + + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + + const headerParameters: runtime.HTTPHeaders = {}; + + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = await token("session_token", []); + + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = await this.request({ + path: `/quota/dataUsage`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(DataUsageFromJSON)); + } + + /** + * Retrieves the quota used on data + */ + async dataUsageHandler(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> { + const response = await this.dataUsageHandlerRaw(requestParameters, initOverrides); + return await response.value(); + } + + /** + * Retrieves the quota used by computations + */ + async dataUsageSummaryHandlerRaw(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>> { + if (requestParameters.granularity === null || requestParameters.granularity === undefined) { + throw new runtime.RequiredError('granularity','Required parameter requestParameters.granularity was null or undefined when calling dataUsageSummaryHandler.'); + } + + if (requestParameters.offset === null || requestParameters.offset === undefined) { + throw new runtime.RequiredError('offset','Required parameter requestParameters.offset was null or undefined when calling dataUsageSummaryHandler.'); + } + + if (requestParameters.limit === null || requestParameters.limit === undefined) { + throw new runtime.RequiredError('limit','Required parameter requestParameters.limit was null or undefined when calling dataUsageSummaryHandler.'); + } + + const queryParameters: any = {}; + + if (requestParameters.granularity !== undefined) { + queryParameters['granularity'] = requestParameters.granularity; + } + + if (requestParameters.offset !== undefined) { + queryParameters['offset'] = requestParameters.offset; + } + + if (requestParameters.limit !== undefined) { + queryParameters['limit'] = requestParameters.limit; + } + + if (requestParameters.dataset !== undefined) { + queryParameters['dataset'] = requestParameters.dataset; + } + + const headerParameters: runtime.HTTPHeaders = {}; + + if (this.configuration && this.configuration.accessToken) { + const token = this.configuration.accessToken; + const tokenString = await token("session_token", []); + + if (tokenString) { + headerParameters["Authorization"] = `Bearer ${tokenString}`; + } + } + const response = await this.request({ + path: `/quota/dataUsage/summary`, + method: 'GET', + headers: headerParameters, + query: queryParameters, + }, initOverrides); + + return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(DataUsageSummaryFromJSON)); + } + + /** + * Retrieves the quota used by computations + */ + async dataUsageSummaryHandler(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> { + const response = await this.dataUsageSummaryHandlerRaw(requestParameters, initOverrides); + return await response.value(); + } + /** * Get role by name */ diff --git a/typescript/src/models/DataUsage.ts b/typescript/src/models/DataUsage.ts index 4db93751..0b7f578c 100644 --- a/typescript/src/models/DataUsage.ts +++ b/typescript/src/models/DataUsage.ts @@ -49,12 +49,6 @@ export interface DataUsage { * @memberof DataUsage */ userId: string; - /** - * - * @type {string} - * @memberof DataUsage - */ - workflowId: string; } /** @@ -67,7 +61,6 @@ export function instanceOfDataUsage(value: object): boolean { isInstance = isInstance && "data" in value; isInstance = isInstance && "timestamp" in value; isInstance = isInstance && "userId" in value; - isInstance = isInstance && "workflowId" in value; return isInstance; } @@ -87,7 +80,6 @@ export function DataUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): 'data': json['data'], 'timestamp': (new Date(json['timestamp'])), 'userId': json['userId'], - 'workflowId': json['workflowId'], }; } @@ -105,7 +97,6 @@ export function DataUsageToJSON(value?: DataUsage | null): any { 'data': value.data, 'timestamp': (value.timestamp.toISOString()), 'userId': value.userId, - 'workflowId': value.workflowId, }; } diff --git a/typescript/src/models/DataUsageSummary.ts b/typescript/src/models/DataUsageSummary.ts index 0ec10efe..939e4611 100644 --- a/typescript/src/models/DataUsageSummary.ts +++ b/typescript/src/models/DataUsageSummary.ts @@ -30,19 +30,13 @@ export interface DataUsageSummary { * @type {string} * @memberof DataUsageSummary */ - data: string; + dataset: string; /** * - * @type {number} - * @memberof DataUsageSummary - */ - month: number; - /** - * - * @type {number} + * @type {Date} * @memberof DataUsageSummary */ - year: number; + timestamp: Date; } /** @@ -51,9 +45,8 @@ export interface DataUsageSummary { export function instanceOfDataUsageSummary(value: object): boolean { let isInstance = true; isInstance = isInstance && "count" in value; - isInstance = isInstance && "data" in value; - isInstance = isInstance && "month" in value; - isInstance = isInstance && "year" in value; + isInstance = isInstance && "dataset" in value; + isInstance = isInstance && "timestamp" in value; return isInstance; } @@ -69,9 +62,8 @@ export function DataUsageSummaryFromJSONTyped(json: any, ignoreDiscriminator: bo return { 'count': json['count'], - 'data': json['data'], - 'month': json['month'], - 'year': json['year'], + 'dataset': json['dataset'], + 'timestamp': (new Date(json['timestamp'])), }; } @@ -85,9 +77,8 @@ export function DataUsageSummaryToJSON(value?: DataUsageSummary | null): any { return { 'count': value.count, - 'data': value.data, - 'month': value.month, - 'year': value.year, + 'dataset': value.dataset, + 'timestamp': (value.timestamp.toISOString()), }; } diff --git a/typescript/src/models/UsageSummaryGranularity.ts b/typescript/src/models/UsageSummaryGranularity.ts new file mode 100644 index 00000000..f6bf98cd --- /dev/null +++ b/typescript/src/models/UsageSummaryGranularity.ts @@ -0,0 +1,41 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Geo Engine Pro API + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 0.8.0 + * Contact: dev@geoengine.de + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +/** + * + * @export + */ +export const UsageSummaryGranularity = { + Minutes: 'minutes', + Hours: 'hours', + Days: 'days', + Months: 'months', + Years: 'years' +} as const; +export type UsageSummaryGranularity = typeof UsageSummaryGranularity[keyof typeof UsageSummaryGranularity]; + + +export function UsageSummaryGranularityFromJSON(json: any): UsageSummaryGranularity { + return UsageSummaryGranularityFromJSONTyped(json, false); +} + +export function UsageSummaryGranularityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsageSummaryGranularity { + return json as UsageSummaryGranularity; +} + +export function UsageSummaryGranularityToJSON(value?: UsageSummaryGranularity | null): any { + return value as any; +} + diff --git a/typescript/src/models/index.ts b/typescript/src/models/index.ts index aae64509..84bd63af 100644 --- a/typescript/src/models/index.ts +++ b/typescript/src/models/index.ts @@ -202,6 +202,7 @@ export * from './UpdateProject'; export * from './UpdateQuota'; export * from './UploadFileLayersResponse'; export * from './UploadFilesResponse'; +export * from './UsageSummaryGranularity'; export * from './UserCredentials'; export * from './UserInfo'; export * from './UserRegistration'; From ae4bc43766b53af95cc2836a24a942ce7d98b76b Mon Sep 17 00:00:00 2001 From: Michael Mattig Date: Thu, 19 Dec 2024 17:38:02 +0100 Subject: [PATCH 8/8] update openapi --- .generation/input/openapi.json | 6 +++--- python/geoengine_openapi_client/__init__.py | 2 +- python/geoengine_openapi_client/api/datasets_api.py | 2 +- python/geoengine_openapi_client/api/general_api.py | 2 +- python/geoengine_openapi_client/api/layers_api.py | 2 +- python/geoengine_openapi_client/api/ml_api.py | 2 +- python/geoengine_openapi_client/api/ogcwcs_api.py | 2 +- python/geoengine_openapi_client/api/ogcwfs_api.py | 2 +- python/geoengine_openapi_client/api/ogcwms_api.py | 2 +- python/geoengine_openapi_client/api/permissions_api.py | 2 +- python/geoengine_openapi_client/api/plots_api.py | 2 +- python/geoengine_openapi_client/api/projects_api.py | 2 +- python/geoengine_openapi_client/api/session_api.py | 2 +- .../api/spatial_references_api.py | 2 +- python/geoengine_openapi_client/api/tasks_api.py | 2 +- python/geoengine_openapi_client/api/uploads_api.py | 2 +- python/geoengine_openapi_client/api/user_api.py | 2 +- python/geoengine_openapi_client/api/workflows_api.py | 2 +- python/geoengine_openapi_client/api_client.py | 2 +- python/geoengine_openapi_client/configuration.py | 2 +- python/geoengine_openapi_client/exceptions.py | 2 +- python/geoengine_openapi_client/models/__init__.py | 2 +- .../models/add_collection200_response.py | 2 +- python/geoengine_openapi_client/models/add_dataset.py | 2 +- python/geoengine_openapi_client/models/add_layer.py | 2 +- .../models/add_layer_collection.py | 2 +- python/geoengine_openapi_client/models/add_role.py | 2 +- .../models/auth_code_request_url.py | 2 +- .../models/auth_code_response.py | 2 +- .../models/auto_create_dataset.py | 2 +- python/geoengine_openapi_client/models/axis_order.py | 2 +- .../geoengine_openapi_client/models/bounding_box2_d.py | 2 +- python/geoengine_openapi_client/models/breakpoint.py | 2 +- .../models/classification_measurement.py | 2 +- .../geoengine_openapi_client/models/collection_item.py | 2 +- .../geoengine_openapi_client/models/collection_type.py | 2 +- python/geoengine_openapi_client/models/color_param.py | 2 +- .../models/color_param_static.py | 2 +- python/geoengine_openapi_client/models/colorizer.py | 2 +- .../models/computation_quota.py | 2 +- .../models/continuous_measurement.py | 2 +- .../geoengine_openapi_client/models/coordinate2_d.py | 2 +- .../geoengine_openapi_client/models/create_dataset.py | 2 +- .../models/create_dataset_handler200_response.py | 2 +- .../geoengine_openapi_client/models/create_project.py | 2 +- python/geoengine_openapi_client/models/csv_header.py | 2 +- python/geoengine_openapi_client/models/data_id.py | 2 +- python/geoengine_openapi_client/models/data_path.py | 2 +- .../models/data_path_one_of.py | 2 +- .../models/data_path_one_of1.py | 2 +- python/geoengine_openapi_client/models/data_usage.py | 2 +- .../models/data_usage_summary.py | 8 ++++---- python/geoengine_openapi_client/models/dataset.py | 2 +- .../models/dataset_definition.py | 2 +- .../geoengine_openapi_client/models/dataset_listing.py | 2 +- .../models/dataset_resource.py | 2 +- python/geoengine_openapi_client/models/date_time.py | 2 +- .../geoengine_openapi_client/models/derived_color.py | 2 +- .../geoengine_openapi_client/models/derived_number.py | 2 +- .../models/describe_coverage_request.py | 2 +- .../geoengine_openapi_client/models/error_response.py | 2 +- .../models/external_data_id.py | 2 +- .../models/feature_data_type.py | 2 +- .../models/file_not_found_handling.py | 2 +- .../models/format_specifics.py | 2 +- .../models/format_specifics_one_of.py | 2 +- .../models/format_specifics_one_of_csv.py | 2 +- .../models/gdal_dataset_geo_transform.py | 2 +- .../models/gdal_dataset_parameters.py | 2 +- .../models/gdal_loading_info_temporal_slice.py | 2 +- .../models/gdal_meta_data_list.py | 2 +- .../models/gdal_meta_data_regular.py | 2 +- .../models/gdal_meta_data_static.py | 2 +- .../models/gdal_metadata_mapping.py | 2 +- .../models/gdal_metadata_net_cdf_cf.py | 2 +- .../models/gdal_source_time_placeholder.py | 2 +- python/geoengine_openapi_client/models/geo_json.py | 2 +- .../models/get_capabilities_format.py | 2 +- .../models/get_capabilities_request.py | 2 +- .../models/get_coverage_format.py | 2 +- .../models/get_coverage_request.py | 2 +- .../models/get_feature_request.py | 2 +- .../models/get_legend_graphic_request.py | 2 +- .../models/get_map_exception_format.py | 2 +- .../geoengine_openapi_client/models/get_map_format.py | 2 +- .../geoengine_openapi_client/models/get_map_request.py | 2 +- .../models/internal_data_id.py | 2 +- python/geoengine_openapi_client/models/layer.py | 2 +- .../models/layer_collection.py | 2 +- .../models/layer_collection_listing.py | 2 +- .../models/layer_collection_resource.py | 2 +- .../geoengine_openapi_client/models/layer_listing.py | 2 +- .../geoengine_openapi_client/models/layer_resource.py | 2 +- python/geoengine_openapi_client/models/layer_update.py | 2 +- .../models/layer_visibility.py | 2 +- .../geoengine_openapi_client/models/line_symbology.py | 2 +- .../geoengine_openapi_client/models/linear_gradient.py | 2 +- .../models/logarithmic_gradient.py | 2 +- python/geoengine_openapi_client/models/measurement.py | 2 +- .../models/meta_data_definition.py | 2 +- .../models/meta_data_suggestion.py | 2 +- python/geoengine_openapi_client/models/ml_model.py | 2 +- .../models/ml_model_metadata.py | 2 +- .../models/mock_dataset_data_source_loading_info.py | 2 +- .../geoengine_openapi_client/models/mock_meta_data.py | 2 +- .../models/multi_band_raster_colorizer.py | 2 +- .../models/multi_line_string.py | 2 +- python/geoengine_openapi_client/models/multi_point.py | 2 +- .../geoengine_openapi_client/models/multi_polygon.py | 2 +- python/geoengine_openapi_client/models/number_param.py | 2 +- .../geoengine_openapi_client/models/ogr_meta_data.py | 2 +- .../models/ogr_source_column_spec.py | 2 +- .../models/ogr_source_dataset.py | 2 +- .../models/ogr_source_dataset_time_type.py | 2 +- .../models/ogr_source_dataset_time_type_none.py | 2 +- .../models/ogr_source_dataset_time_type_start.py | 2 +- .../ogr_source_dataset_time_type_start_duration.py | 2 +- .../models/ogr_source_dataset_time_type_start_end.py | 2 +- .../models/ogr_source_duration_spec.py | 2 +- .../models/ogr_source_duration_spec_infinite.py | 2 +- .../models/ogr_source_duration_spec_value.py | 2 +- .../models/ogr_source_duration_spec_zero.py | 2 +- .../models/ogr_source_error_spec.py | 2 +- .../models/ogr_source_time_format.py | 2 +- .../models/ogr_source_time_format_auto.py | 2 +- .../models/ogr_source_time_format_custom.py | 2 +- .../models/ogr_source_time_format_unix_time_stamp.py | 2 +- .../geoengine_openapi_client/models/operator_quota.py | 2 +- python/geoengine_openapi_client/models/order_by.py | 2 +- .../models/palette_colorizer.py | 2 +- python/geoengine_openapi_client/models/permission.py | 2 +- .../models/permission_list_options.py | 2 +- .../models/permission_listing.py | 2 +- .../models/permission_request.py | 2 +- python/geoengine_openapi_client/models/plot.py | 2 +- .../models/plot_output_format.py | 2 +- .../models/plot_query_rectangle.py | 2 +- .../models/plot_result_descriptor.py | 2 +- python/geoengine_openapi_client/models/plot_update.py | 2 +- .../geoengine_openapi_client/models/point_symbology.py | 2 +- .../models/polygon_symbology.py | 2 +- python/geoengine_openapi_client/models/project.py | 2 +- .../geoengine_openapi_client/models/project_layer.py | 2 +- .../geoengine_openapi_client/models/project_listing.py | 2 +- .../models/project_resource.py | 2 +- .../models/project_update_token.py | 2 +- .../geoengine_openapi_client/models/project_version.py | 2 +- python/geoengine_openapi_client/models/provenance.py | 2 +- .../models/provenance_entry.py | 2 +- .../models/provenance_output.py | 2 +- python/geoengine_openapi_client/models/provenances.py | 2 +- .../models/provider_capabilities.py | 2 +- .../models/provider_layer_collection_id.py | 2 +- .../models/provider_layer_id.py | 2 +- python/geoengine_openapi_client/models/quota.py | 2 +- .../models/raster_band_descriptor.py | 2 +- .../models/raster_colorizer.py | 2 +- .../models/raster_data_type.py | 2 +- .../models/raster_dataset_from_workflow.py | 2 +- .../models/raster_dataset_from_workflow_result.py | 2 +- .../models/raster_properties_entry_type.py | 2 +- .../models/raster_properties_key.py | 2 +- .../models/raster_query_rectangle.py | 2 +- .../models/raster_result_descriptor.py | 2 +- .../models/raster_stream_websocket_result_type.py | 2 +- .../models/raster_symbology.py | 2 +- python/geoengine_openapi_client/models/resource.py | 2 +- python/geoengine_openapi_client/models/resource_id.py | 2 +- .../models/resource_id_dataset_id.py | 2 +- .../models/resource_id_layer.py | 2 +- .../models/resource_id_layer_collection.py | 2 +- .../models/resource_id_ml_model.py | 2 +- .../models/resource_id_project.py | 2 +- python/geoengine_openapi_client/models/role.py | 2 +- .../models/role_description.py | 2 +- .../models/search_capabilities.py | 2 +- python/geoengine_openapi_client/models/search_type.py | 2 +- python/geoengine_openapi_client/models/search_types.py | 2 +- python/geoengine_openapi_client/models/server_info.py | 2 +- .../models/single_band_raster_colorizer.py | 2 +- .../models/spatial_partition2_d.py | 2 +- .../models/spatial_reference_authority.py | 2 +- .../models/spatial_reference_specification.py | 2 +- .../models/spatial_resolution.py | 2 +- python/geoengine_openapi_client/models/st_rectangle.py | 2 +- .../models/static_number_param.py | 2 +- python/geoengine_openapi_client/models/stroke_param.py | 2 +- .../models/suggest_meta_data.py | 2 +- python/geoengine_openapi_client/models/symbology.py | 2 +- .../models/task_abort_options.py | 2 +- python/geoengine_openapi_client/models/task_filter.py | 2 +- .../models/task_list_options.py | 2 +- .../geoengine_openapi_client/models/task_response.py | 2 +- python/geoengine_openapi_client/models/task_status.py | 2 +- .../models/task_status_aborted.py | 2 +- .../models/task_status_completed.py | 2 +- .../models/task_status_failed.py | 2 +- .../models/task_status_running.py | 2 +- .../models/task_status_with_id.py | 2 +- .../geoengine_openapi_client/models/text_symbology.py | 2 +- .../models/time_granularity.py | 2 +- .../geoengine_openapi_client/models/time_interval.py | 2 +- .../geoengine_openapi_client/models/time_reference.py | 2 +- python/geoengine_openapi_client/models/time_step.py | 2 +- .../geoengine_openapi_client/models/typed_geometry.py | 2 +- .../models/typed_geometry_one_of.py | 2 +- .../models/typed_geometry_one_of1.py | 2 +- .../models/typed_geometry_one_of2.py | 2 +- .../models/typed_geometry_one_of3.py | 2 +- .../geoengine_openapi_client/models/typed_operator.py | 2 +- .../models/typed_operator_operator.py | 2 +- .../models/typed_plot_result_descriptor.py | 2 +- .../models/typed_raster_result_descriptor.py | 2 +- .../models/typed_result_descriptor.py | 2 +- .../models/typed_vector_result_descriptor.py | 2 +- .../models/unitless_measurement.py | 2 +- .../models/unix_time_stamp_type.py | 2 +- .../geoengine_openapi_client/models/update_dataset.py | 2 +- python/geoengine_openapi_client/models/update_layer.py | 2 +- .../models/update_layer_collection.py | 2 +- .../geoengine_openapi_client/models/update_project.py | 2 +- python/geoengine_openapi_client/models/update_quota.py | 2 +- .../models/upload_file_layers_response.py | 2 +- .../models/upload_files_response.py | 2 +- .../models/usage_summary_granularity.py | 2 +- .../models/user_credentials.py | 2 +- python/geoengine_openapi_client/models/user_info.py | 2 +- .../models/user_registration.py | 2 +- python/geoengine_openapi_client/models/user_session.py | 2 +- .../models/vector_column_info.py | 2 +- .../models/vector_data_type.py | 2 +- .../models/vector_query_rectangle.py | 2 +- .../models/vector_result_descriptor.py | 2 +- python/geoengine_openapi_client/models/volume.py | 2 +- .../models/volume_file_layers_response.py | 2 +- .../geoengine_openapi_client/models/wcs_boundingbox.py | 2 +- python/geoengine_openapi_client/models/wcs_service.py | 2 +- python/geoengine_openapi_client/models/wcs_version.py | 2 +- python/geoengine_openapi_client/models/wfs_service.py | 2 +- python/geoengine_openapi_client/models/wfs_version.py | 2 +- python/geoengine_openapi_client/models/wms_service.py | 2 +- python/geoengine_openapi_client/models/wms_version.py | 2 +- python/geoengine_openapi_client/models/workflow.py | 2 +- .../models/wrapped_plot_output.py | 2 +- python/geoengine_openapi_client/rest.py | 2 +- python/pyproject.toml | 4 ++-- python/setup.py | 6 +++--- python/test/test_add_collection200_response.py | 2 +- python/test/test_add_dataset.py | 2 +- python/test/test_add_layer.py | 2 +- python/test/test_add_layer_collection.py | 2 +- python/test/test_add_role.py | 2 +- python/test/test_auth_code_request_url.py | 2 +- python/test/test_auth_code_response.py | 2 +- python/test/test_auto_create_dataset.py | 2 +- python/test/test_axis_order.py | 2 +- python/test/test_bounding_box2_d.py | 2 +- python/test/test_breakpoint.py | 2 +- python/test/test_classification_measurement.py | 2 +- python/test/test_collection_item.py | 2 +- python/test/test_collection_type.py | 2 +- python/test/test_color_param.py | 2 +- python/test/test_color_param_static.py | 2 +- python/test/test_colorizer.py | 2 +- python/test/test_computation_quota.py | 2 +- python/test/test_continuous_measurement.py | 2 +- python/test/test_coordinate2_d.py | 2 +- python/test/test_create_dataset.py | 2 +- python/test/test_create_dataset_handler200_response.py | 2 +- python/test/test_create_project.py | 2 +- python/test/test_csv_header.py | 2 +- python/test/test_data_id.py | 2 +- python/test/test_data_path.py | 2 +- python/test/test_data_path_one_of.py | 2 +- python/test/test_data_path_one_of1.py | 2 +- python/test/test_data_usage.py | 2 +- python/test/test_data_usage_summary.py | 6 +++--- python/test/test_dataset.py | 2 +- python/test/test_dataset_definition.py | 2 +- python/test/test_dataset_listing.py | 2 +- python/test/test_dataset_resource.py | 2 +- python/test/test_datasets_api.py | 2 +- python/test/test_date_time.py | 2 +- python/test/test_derived_color.py | 2 +- python/test/test_derived_number.py | 2 +- python/test/test_describe_coverage_request.py | 2 +- python/test/test_error_response.py | 2 +- python/test/test_external_data_id.py | 2 +- python/test/test_feature_data_type.py | 2 +- python/test/test_file_not_found_handling.py | 2 +- python/test/test_format_specifics.py | 2 +- python/test/test_format_specifics_one_of.py | 2 +- python/test/test_format_specifics_one_of_csv.py | 2 +- python/test/test_gdal_dataset_geo_transform.py | 2 +- python/test/test_gdal_dataset_parameters.py | 2 +- python/test/test_gdal_loading_info_temporal_slice.py | 2 +- python/test/test_gdal_meta_data_list.py | 2 +- python/test/test_gdal_meta_data_regular.py | 2 +- python/test/test_gdal_meta_data_static.py | 2 +- python/test/test_gdal_metadata_mapping.py | 2 +- python/test/test_gdal_metadata_net_cdf_cf.py | 2 +- python/test/test_gdal_source_time_placeholder.py | 2 +- python/test/test_general_api.py | 2 +- python/test/test_geo_json.py | 2 +- python/test/test_get_capabilities_format.py | 2 +- python/test/test_get_capabilities_request.py | 2 +- python/test/test_get_coverage_format.py | 2 +- python/test/test_get_coverage_request.py | 2 +- python/test/test_get_feature_request.py | 2 +- python/test/test_get_legend_graphic_request.py | 2 +- python/test/test_get_map_exception_format.py | 2 +- python/test/test_get_map_format.py | 2 +- python/test/test_get_map_request.py | 2 +- python/test/test_internal_data_id.py | 2 +- python/test/test_layer.py | 2 +- python/test/test_layer_collection.py | 2 +- python/test/test_layer_collection_listing.py | 2 +- python/test/test_layer_collection_resource.py | 2 +- python/test/test_layer_listing.py | 2 +- python/test/test_layer_resource.py | 2 +- python/test/test_layer_update.py | 2 +- python/test/test_layer_visibility.py | 2 +- python/test/test_layers_api.py | 2 +- python/test/test_line_symbology.py | 2 +- python/test/test_linear_gradient.py | 2 +- python/test/test_logarithmic_gradient.py | 2 +- python/test/test_measurement.py | 2 +- python/test/test_meta_data_definition.py | 2 +- python/test/test_meta_data_suggestion.py | 2 +- python/test/test_ml_api.py | 2 +- python/test/test_ml_model.py | 2 +- python/test/test_ml_model_metadata.py | 2 +- .../test/test_mock_dataset_data_source_loading_info.py | 2 +- python/test/test_mock_meta_data.py | 2 +- python/test/test_multi_band_raster_colorizer.py | 2 +- python/test/test_multi_line_string.py | 2 +- python/test/test_multi_point.py | 2 +- python/test/test_multi_polygon.py | 2 +- python/test/test_number_param.py | 2 +- python/test/test_ogcwcs_api.py | 2 +- python/test/test_ogcwfs_api.py | 2 +- python/test/test_ogcwms_api.py | 2 +- python/test/test_ogr_meta_data.py | 2 +- python/test/test_ogr_source_column_spec.py | 2 +- python/test/test_ogr_source_dataset.py | 2 +- python/test/test_ogr_source_dataset_time_type.py | 2 +- python/test/test_ogr_source_dataset_time_type_none.py | 2 +- python/test/test_ogr_source_dataset_time_type_start.py | 2 +- ...test_ogr_source_dataset_time_type_start_duration.py | 2 +- .../test_ogr_source_dataset_time_type_start_end.py | 2 +- python/test/test_ogr_source_duration_spec.py | 2 +- python/test/test_ogr_source_duration_spec_infinite.py | 2 +- python/test/test_ogr_source_duration_spec_value.py | 2 +- python/test/test_ogr_source_duration_spec_zero.py | 2 +- python/test/test_ogr_source_error_spec.py | 2 +- python/test/test_ogr_source_time_format.py | 2 +- python/test/test_ogr_source_time_format_auto.py | 2 +- python/test/test_ogr_source_time_format_custom.py | 2 +- .../test_ogr_source_time_format_unix_time_stamp.py | 2 +- python/test/test_operator_quota.py | 2 +- python/test/test_order_by.py | 2 +- python/test/test_palette_colorizer.py | 2 +- python/test/test_permission.py | 2 +- python/test/test_permission_list_options.py | 2 +- python/test/test_permission_listing.py | 2 +- python/test/test_permission_request.py | 2 +- python/test/test_permissions_api.py | 2 +- python/test/test_plot.py | 2 +- python/test/test_plot_output_format.py | 2 +- python/test/test_plot_query_rectangle.py | 2 +- python/test/test_plot_result_descriptor.py | 2 +- python/test/test_plot_update.py | 2 +- python/test/test_plots_api.py | 2 +- python/test/test_point_symbology.py | 2 +- python/test/test_polygon_symbology.py | 2 +- python/test/test_project.py | 2 +- python/test/test_project_layer.py | 2 +- python/test/test_project_listing.py | 2 +- python/test/test_project_resource.py | 2 +- python/test/test_project_update_token.py | 2 +- python/test/test_project_version.py | 2 +- python/test/test_projects_api.py | 2 +- python/test/test_provenance.py | 2 +- python/test/test_provenance_entry.py | 2 +- python/test/test_provenance_output.py | 2 +- python/test/test_provenances.py | 2 +- python/test/test_provider_capabilities.py | 2 +- python/test/test_provider_layer_collection_id.py | 2 +- python/test/test_provider_layer_id.py | 2 +- python/test/test_quota.py | 2 +- python/test/test_raster_band_descriptor.py | 2 +- python/test/test_raster_colorizer.py | 2 +- python/test/test_raster_data_type.py | 2 +- python/test/test_raster_dataset_from_workflow.py | 2 +- .../test/test_raster_dataset_from_workflow_result.py | 2 +- python/test/test_raster_properties_entry_type.py | 2 +- python/test/test_raster_properties_key.py | 2 +- python/test/test_raster_query_rectangle.py | 2 +- python/test/test_raster_result_descriptor.py | 2 +- .../test/test_raster_stream_websocket_result_type.py | 2 +- python/test/test_raster_symbology.py | 2 +- python/test/test_resource.py | 2 +- python/test/test_resource_id.py | 2 +- python/test/test_resource_id_dataset_id.py | 2 +- python/test/test_resource_id_layer.py | 2 +- python/test/test_resource_id_layer_collection.py | 2 +- python/test/test_resource_id_ml_model.py | 2 +- python/test/test_resource_id_project.py | 2 +- python/test/test_role.py | 2 +- python/test/test_role_description.py | 2 +- python/test/test_search_capabilities.py | 2 +- python/test/test_search_type.py | 2 +- python/test/test_search_types.py | 2 +- python/test/test_server_info.py | 2 +- python/test/test_session_api.py | 2 +- python/test/test_single_band_raster_colorizer.py | 2 +- python/test/test_spatial_partition2_d.py | 2 +- python/test/test_spatial_reference_authority.py | 2 +- python/test/test_spatial_reference_specification.py | 2 +- python/test/test_spatial_references_api.py | 2 +- python/test/test_spatial_resolution.py | 2 +- python/test/test_st_rectangle.py | 2 +- python/test/test_static_number_param.py | 2 +- python/test/test_stroke_param.py | 2 +- python/test/test_suggest_meta_data.py | 2 +- python/test/test_symbology.py | 2 +- python/test/test_task_abort_options.py | 2 +- python/test/test_task_filter.py | 2 +- python/test/test_task_list_options.py | 2 +- python/test/test_task_response.py | 2 +- python/test/test_task_status.py | 2 +- python/test/test_task_status_aborted.py | 2 +- python/test/test_task_status_completed.py | 2 +- python/test/test_task_status_failed.py | 2 +- python/test/test_task_status_running.py | 2 +- python/test/test_task_status_with_id.py | 2 +- python/test/test_tasks_api.py | 2 +- python/test/test_text_symbology.py | 2 +- python/test/test_time_granularity.py | 2 +- python/test/test_time_interval.py | 2 +- python/test/test_time_reference.py | 2 +- python/test/test_time_step.py | 2 +- python/test/test_typed_geometry.py | 2 +- python/test/test_typed_geometry_one_of.py | 2 +- python/test/test_typed_geometry_one_of1.py | 2 +- python/test/test_typed_geometry_one_of2.py | 2 +- python/test/test_typed_geometry_one_of3.py | 2 +- python/test/test_typed_operator.py | 2 +- python/test/test_typed_operator_operator.py | 2 +- python/test/test_typed_plot_result_descriptor.py | 2 +- python/test/test_typed_raster_result_descriptor.py | 2 +- python/test/test_typed_result_descriptor.py | 2 +- python/test/test_typed_vector_result_descriptor.py | 2 +- python/test/test_unitless_measurement.py | 2 +- python/test/test_unix_time_stamp_type.py | 2 +- python/test/test_update_dataset.py | 2 +- python/test/test_update_layer.py | 2 +- python/test/test_update_layer_collection.py | 2 +- python/test/test_update_project.py | 2 +- python/test/test_update_quota.py | 2 +- python/test/test_upload_file_layers_response.py | 2 +- python/test/test_upload_files_response.py | 2 +- python/test/test_uploads_api.py | 2 +- python/test/test_usage_summary_granularity.py | 2 +- python/test/test_user_api.py | 2 +- python/test/test_user_credentials.py | 2 +- python/test/test_user_info.py | 2 +- python/test/test_user_registration.py | 2 +- python/test/test_user_session.py | 2 +- python/test/test_vector_column_info.py | 2 +- python/test/test_vector_data_type.py | 2 +- python/test/test_vector_query_rectangle.py | 2 +- python/test/test_vector_result_descriptor.py | 2 +- python/test/test_volume.py | 2 +- python/test/test_volume_file_layers_response.py | 2 +- python/test/test_wcs_boundingbox.py | 2 +- python/test/test_wcs_service.py | 2 +- python/test/test_wcs_version.py | 2 +- python/test/test_wfs_service.py | 2 +- python/test/test_wfs_version.py | 2 +- python/test/test_wms_service.py | 2 +- python/test/test_wms_version.py | 2 +- python/test/test_workflow.py | 2 +- python/test/test_workflows_api.py | 2 +- python/test/test_wrapped_plot_output.py | 2 +- typescript/dist/apis/DatasetsApi.d.ts | 2 +- typescript/dist/apis/DatasetsApi.js | 2 +- typescript/dist/apis/GeneralApi.d.ts | 2 +- typescript/dist/apis/GeneralApi.js | 2 +- typescript/dist/apis/LayersApi.d.ts | 2 +- typescript/dist/apis/LayersApi.js | 2 +- typescript/dist/apis/MLApi.d.ts | 2 +- typescript/dist/apis/MLApi.js | 2 +- typescript/dist/apis/OGCWCSApi.d.ts | 2 +- typescript/dist/apis/OGCWCSApi.js | 2 +- typescript/dist/apis/OGCWFSApi.d.ts | 2 +- typescript/dist/apis/OGCWFSApi.js | 2 +- typescript/dist/apis/OGCWMSApi.d.ts | 2 +- typescript/dist/apis/OGCWMSApi.js | 2 +- typescript/dist/apis/PermissionsApi.d.ts | 2 +- typescript/dist/apis/PermissionsApi.js | 2 +- typescript/dist/apis/PlotsApi.d.ts | 2 +- typescript/dist/apis/PlotsApi.js | 2 +- typescript/dist/apis/ProjectsApi.d.ts | 2 +- typescript/dist/apis/ProjectsApi.js | 2 +- typescript/dist/apis/SessionApi.d.ts | 2 +- typescript/dist/apis/SessionApi.js | 2 +- typescript/dist/apis/SpatialReferencesApi.d.ts | 2 +- typescript/dist/apis/SpatialReferencesApi.js | 2 +- typescript/dist/apis/TasksApi.d.ts | 2 +- typescript/dist/apis/TasksApi.js | 2 +- typescript/dist/apis/UploadsApi.d.ts | 2 +- typescript/dist/apis/UploadsApi.js | 2 +- typescript/dist/apis/UserApi.d.ts | 2 +- typescript/dist/apis/UserApi.js | 2 +- typescript/dist/apis/WorkflowsApi.d.ts | 2 +- typescript/dist/apis/WorkflowsApi.js | 2 +- typescript/dist/esm/apis/DatasetsApi.d.ts | 2 +- typescript/dist/esm/apis/DatasetsApi.js | 2 +- typescript/dist/esm/apis/GeneralApi.d.ts | 2 +- typescript/dist/esm/apis/GeneralApi.js | 2 +- typescript/dist/esm/apis/LayersApi.d.ts | 2 +- typescript/dist/esm/apis/LayersApi.js | 2 +- typescript/dist/esm/apis/MLApi.d.ts | 2 +- typescript/dist/esm/apis/MLApi.js | 2 +- typescript/dist/esm/apis/OGCWCSApi.d.ts | 2 +- typescript/dist/esm/apis/OGCWCSApi.js | 2 +- typescript/dist/esm/apis/OGCWFSApi.d.ts | 2 +- typescript/dist/esm/apis/OGCWFSApi.js | 2 +- typescript/dist/esm/apis/OGCWMSApi.d.ts | 2 +- typescript/dist/esm/apis/OGCWMSApi.js | 2 +- typescript/dist/esm/apis/PermissionsApi.d.ts | 2 +- typescript/dist/esm/apis/PermissionsApi.js | 2 +- typescript/dist/esm/apis/PlotsApi.d.ts | 2 +- typescript/dist/esm/apis/PlotsApi.js | 2 +- typescript/dist/esm/apis/ProjectsApi.d.ts | 2 +- typescript/dist/esm/apis/ProjectsApi.js | 2 +- typescript/dist/esm/apis/SessionApi.d.ts | 2 +- typescript/dist/esm/apis/SessionApi.js | 2 +- typescript/dist/esm/apis/SpatialReferencesApi.d.ts | 2 +- typescript/dist/esm/apis/SpatialReferencesApi.js | 2 +- typescript/dist/esm/apis/TasksApi.d.ts | 2 +- typescript/dist/esm/apis/TasksApi.js | 2 +- typescript/dist/esm/apis/UploadsApi.d.ts | 2 +- typescript/dist/esm/apis/UploadsApi.js | 2 +- typescript/dist/esm/apis/UserApi.d.ts | 2 +- typescript/dist/esm/apis/UserApi.js | 2 +- typescript/dist/esm/apis/WorkflowsApi.d.ts | 2 +- typescript/dist/esm/apis/WorkflowsApi.js | 2 +- .../dist/esm/models/AddCollection200Response.d.ts | 2 +- typescript/dist/esm/models/AddCollection200Response.js | 2 +- typescript/dist/esm/models/AddDataset.d.ts | 2 +- typescript/dist/esm/models/AddDataset.js | 2 +- typescript/dist/esm/models/AddLayer.d.ts | 2 +- typescript/dist/esm/models/AddLayer.js | 2 +- typescript/dist/esm/models/AddLayerCollection.d.ts | 2 +- typescript/dist/esm/models/AddLayerCollection.js | 2 +- typescript/dist/esm/models/AddRole.d.ts | 2 +- typescript/dist/esm/models/AddRole.js | 2 +- typescript/dist/esm/models/AuthCodeRequestURL.d.ts | 2 +- typescript/dist/esm/models/AuthCodeRequestURL.js | 2 +- typescript/dist/esm/models/AuthCodeResponse.d.ts | 2 +- typescript/dist/esm/models/AuthCodeResponse.js | 2 +- typescript/dist/esm/models/AutoCreateDataset.d.ts | 2 +- typescript/dist/esm/models/AutoCreateDataset.js | 2 +- typescript/dist/esm/models/AxisOrder.d.ts | 2 +- typescript/dist/esm/models/AxisOrder.js | 2 +- typescript/dist/esm/models/BoundingBox2D.d.ts | 2 +- typescript/dist/esm/models/BoundingBox2D.js | 2 +- typescript/dist/esm/models/Breakpoint.d.ts | 2 +- typescript/dist/esm/models/Breakpoint.js | 2 +- .../dist/esm/models/ClassificationMeasurement.d.ts | 2 +- .../dist/esm/models/ClassificationMeasurement.js | 2 +- typescript/dist/esm/models/CollectionItem.d.ts | 2 +- typescript/dist/esm/models/CollectionItem.js | 2 +- typescript/dist/esm/models/CollectionType.d.ts | 2 +- typescript/dist/esm/models/CollectionType.js | 2 +- typescript/dist/esm/models/ColorParam.d.ts | 2 +- typescript/dist/esm/models/ColorParam.js | 2 +- typescript/dist/esm/models/ColorParamStatic.d.ts | 2 +- typescript/dist/esm/models/ColorParamStatic.js | 2 +- typescript/dist/esm/models/Colorizer.d.ts | 2 +- typescript/dist/esm/models/Colorizer.js | 2 +- typescript/dist/esm/models/ComputationQuota.d.ts | 2 +- typescript/dist/esm/models/ComputationQuota.js | 2 +- typescript/dist/esm/models/ContinuousMeasurement.d.ts | 2 +- typescript/dist/esm/models/ContinuousMeasurement.js | 2 +- typescript/dist/esm/models/Coordinate2D.d.ts | 2 +- typescript/dist/esm/models/Coordinate2D.js | 2 +- typescript/dist/esm/models/CreateDataset.d.ts | 2 +- typescript/dist/esm/models/CreateDataset.js | 2 +- .../esm/models/CreateDatasetHandler200Response.d.ts | 2 +- .../dist/esm/models/CreateDatasetHandler200Response.js | 2 +- typescript/dist/esm/models/CreateProject.d.ts | 2 +- typescript/dist/esm/models/CreateProject.js | 2 +- typescript/dist/esm/models/CsvHeader.d.ts | 2 +- typescript/dist/esm/models/CsvHeader.js | 2 +- typescript/dist/esm/models/DataId.d.ts | 2 +- typescript/dist/esm/models/DataId.js | 2 +- typescript/dist/esm/models/DataPath.d.ts | 2 +- typescript/dist/esm/models/DataPath.js | 2 +- typescript/dist/esm/models/DataPathOneOf.d.ts | 2 +- typescript/dist/esm/models/DataPathOneOf.js | 2 +- typescript/dist/esm/models/DataPathOneOf1.d.ts | 2 +- typescript/dist/esm/models/DataPathOneOf1.js | 2 +- typescript/dist/esm/models/DataUsage.d.ts | 2 +- typescript/dist/esm/models/DataUsage.js | 2 +- typescript/dist/esm/models/DataUsageSummary.d.ts | 4 ++-- typescript/dist/esm/models/DataUsageSummary.js | 8 ++++---- typescript/dist/esm/models/Dataset.d.ts | 2 +- typescript/dist/esm/models/Dataset.js | 2 +- typescript/dist/esm/models/DatasetDefinition.d.ts | 2 +- typescript/dist/esm/models/DatasetDefinition.js | 2 +- typescript/dist/esm/models/DatasetListing.d.ts | 2 +- typescript/dist/esm/models/DatasetListing.js | 2 +- typescript/dist/esm/models/DatasetResource.d.ts | 2 +- typescript/dist/esm/models/DatasetResource.js | 2 +- typescript/dist/esm/models/DateTime.d.ts | 2 +- typescript/dist/esm/models/DateTime.js | 2 +- typescript/dist/esm/models/DerivedColor.d.ts | 2 +- typescript/dist/esm/models/DerivedColor.js | 2 +- typescript/dist/esm/models/DerivedNumber.d.ts | 2 +- typescript/dist/esm/models/DerivedNumber.js | 2 +- .../dist/esm/models/DescribeCoverageRequest.d.ts | 2 +- typescript/dist/esm/models/DescribeCoverageRequest.js | 2 +- typescript/dist/esm/models/ErrorResponse.d.ts | 2 +- typescript/dist/esm/models/ErrorResponse.js | 2 +- typescript/dist/esm/models/ExternalDataId.d.ts | 2 +- typescript/dist/esm/models/ExternalDataId.js | 2 +- typescript/dist/esm/models/FeatureDataType.d.ts | 2 +- typescript/dist/esm/models/FeatureDataType.js | 2 +- typescript/dist/esm/models/FileNotFoundHandling.d.ts | 2 +- typescript/dist/esm/models/FileNotFoundHandling.js | 2 +- typescript/dist/esm/models/FormatSpecifics.d.ts | 2 +- typescript/dist/esm/models/FormatSpecifics.js | 2 +- typescript/dist/esm/models/FormatSpecificsOneOf.d.ts | 2 +- typescript/dist/esm/models/FormatSpecificsOneOf.js | 2 +- .../dist/esm/models/FormatSpecificsOneOfCsv.d.ts | 2 +- typescript/dist/esm/models/FormatSpecificsOneOfCsv.js | 2 +- .../dist/esm/models/GdalDatasetGeoTransform.d.ts | 2 +- typescript/dist/esm/models/GdalDatasetGeoTransform.js | 2 +- typescript/dist/esm/models/GdalDatasetParameters.d.ts | 2 +- typescript/dist/esm/models/GdalDatasetParameters.js | 2 +- .../dist/esm/models/GdalLoadingInfoTemporalSlice.d.ts | 2 +- .../dist/esm/models/GdalLoadingInfoTemporalSlice.js | 2 +- typescript/dist/esm/models/GdalMetaDataList.d.ts | 2 +- typescript/dist/esm/models/GdalMetaDataList.js | 2 +- typescript/dist/esm/models/GdalMetaDataRegular.d.ts | 2 +- typescript/dist/esm/models/GdalMetaDataRegular.js | 2 +- typescript/dist/esm/models/GdalMetaDataStatic.d.ts | 2 +- typescript/dist/esm/models/GdalMetaDataStatic.js | 2 +- typescript/dist/esm/models/GdalMetadataMapping.d.ts | 2 +- typescript/dist/esm/models/GdalMetadataMapping.js | 2 +- typescript/dist/esm/models/GdalMetadataNetCdfCf.d.ts | 2 +- typescript/dist/esm/models/GdalMetadataNetCdfCf.js | 2 +- .../dist/esm/models/GdalSourceTimePlaceholder.d.ts | 2 +- .../dist/esm/models/GdalSourceTimePlaceholder.js | 2 +- typescript/dist/esm/models/GeoJson.d.ts | 2 +- typescript/dist/esm/models/GeoJson.js | 2 +- typescript/dist/esm/models/GetCapabilitiesFormat.d.ts | 2 +- typescript/dist/esm/models/GetCapabilitiesFormat.js | 2 +- typescript/dist/esm/models/GetCapabilitiesRequest.d.ts | 2 +- typescript/dist/esm/models/GetCapabilitiesRequest.js | 2 +- typescript/dist/esm/models/GetCoverageFormat.d.ts | 2 +- typescript/dist/esm/models/GetCoverageFormat.js | 2 +- typescript/dist/esm/models/GetCoverageRequest.d.ts | 2 +- typescript/dist/esm/models/GetCoverageRequest.js | 2 +- typescript/dist/esm/models/GetFeatureRequest.d.ts | 2 +- typescript/dist/esm/models/GetFeatureRequest.js | 2 +- .../dist/esm/models/GetLegendGraphicRequest.d.ts | 2 +- typescript/dist/esm/models/GetLegendGraphicRequest.js | 2 +- typescript/dist/esm/models/GetMapExceptionFormat.d.ts | 2 +- typescript/dist/esm/models/GetMapExceptionFormat.js | 2 +- typescript/dist/esm/models/GetMapFormat.d.ts | 2 +- typescript/dist/esm/models/GetMapFormat.js | 2 +- typescript/dist/esm/models/GetMapRequest.d.ts | 2 +- typescript/dist/esm/models/GetMapRequest.js | 2 +- typescript/dist/esm/models/InternalDataId.d.ts | 2 +- typescript/dist/esm/models/InternalDataId.js | 2 +- typescript/dist/esm/models/Layer.d.ts | 2 +- typescript/dist/esm/models/Layer.js | 2 +- typescript/dist/esm/models/LayerCollection.d.ts | 2 +- typescript/dist/esm/models/LayerCollection.js | 2 +- typescript/dist/esm/models/LayerCollectionListing.d.ts | 2 +- typescript/dist/esm/models/LayerCollectionListing.js | 2 +- .../dist/esm/models/LayerCollectionResource.d.ts | 2 +- typescript/dist/esm/models/LayerCollectionResource.js | 2 +- typescript/dist/esm/models/LayerListing.d.ts | 2 +- typescript/dist/esm/models/LayerListing.js | 2 +- typescript/dist/esm/models/LayerResource.d.ts | 2 +- typescript/dist/esm/models/LayerResource.js | 2 +- typescript/dist/esm/models/LayerUpdate.d.ts | 2 +- typescript/dist/esm/models/LayerUpdate.js | 2 +- typescript/dist/esm/models/LayerVisibility.d.ts | 2 +- typescript/dist/esm/models/LayerVisibility.js | 2 +- typescript/dist/esm/models/LineSymbology.d.ts | 2 +- typescript/dist/esm/models/LineSymbology.js | 2 +- typescript/dist/esm/models/LinearGradient.d.ts | 2 +- typescript/dist/esm/models/LinearGradient.js | 2 +- typescript/dist/esm/models/LogarithmicGradient.d.ts | 2 +- typescript/dist/esm/models/LogarithmicGradient.js | 2 +- typescript/dist/esm/models/Measurement.d.ts | 2 +- typescript/dist/esm/models/Measurement.js | 2 +- typescript/dist/esm/models/MetaDataDefinition.d.ts | 2 +- typescript/dist/esm/models/MetaDataDefinition.js | 2 +- typescript/dist/esm/models/MetaDataSuggestion.d.ts | 2 +- typescript/dist/esm/models/MetaDataSuggestion.js | 2 +- typescript/dist/esm/models/MlModel.d.ts | 2 +- typescript/dist/esm/models/MlModel.js | 2 +- typescript/dist/esm/models/MlModelMetadata.d.ts | 2 +- typescript/dist/esm/models/MlModelMetadata.js | 2 +- .../esm/models/MockDatasetDataSourceLoadingInfo.d.ts | 2 +- .../esm/models/MockDatasetDataSourceLoadingInfo.js | 2 +- typescript/dist/esm/models/MockMetaData.d.ts | 2 +- typescript/dist/esm/models/MockMetaData.js | 2 +- .../dist/esm/models/MultiBandRasterColorizer.d.ts | 2 +- typescript/dist/esm/models/MultiBandRasterColorizer.js | 2 +- typescript/dist/esm/models/MultiLineString.d.ts | 2 +- typescript/dist/esm/models/MultiLineString.js | 2 +- typescript/dist/esm/models/MultiPoint.d.ts | 2 +- typescript/dist/esm/models/MultiPoint.js | 2 +- typescript/dist/esm/models/MultiPolygon.d.ts | 2 +- typescript/dist/esm/models/MultiPolygon.js | 2 +- typescript/dist/esm/models/NumberParam.d.ts | 2 +- typescript/dist/esm/models/NumberParam.js | 2 +- typescript/dist/esm/models/OgrMetaData.d.ts | 2 +- typescript/dist/esm/models/OgrMetaData.js | 2 +- typescript/dist/esm/models/OgrSourceColumnSpec.d.ts | 2 +- typescript/dist/esm/models/OgrSourceColumnSpec.js | 2 +- typescript/dist/esm/models/OgrSourceDataset.d.ts | 2 +- typescript/dist/esm/models/OgrSourceDataset.js | 2 +- .../dist/esm/models/OgrSourceDatasetTimeType.d.ts | 2 +- typescript/dist/esm/models/OgrSourceDatasetTimeType.js | 2 +- .../dist/esm/models/OgrSourceDatasetTimeTypeNone.d.ts | 2 +- .../dist/esm/models/OgrSourceDatasetTimeTypeNone.js | 2 +- .../dist/esm/models/OgrSourceDatasetTimeTypeStart.d.ts | 2 +- .../dist/esm/models/OgrSourceDatasetTimeTypeStart.js | 2 +- .../models/OgrSourceDatasetTimeTypeStartDuration.d.ts | 2 +- .../models/OgrSourceDatasetTimeTypeStartDuration.js | 2 +- .../esm/models/OgrSourceDatasetTimeTypeStartEnd.d.ts | 2 +- .../esm/models/OgrSourceDatasetTimeTypeStartEnd.js | 2 +- typescript/dist/esm/models/OgrSourceDurationSpec.d.ts | 2 +- typescript/dist/esm/models/OgrSourceDurationSpec.js | 2 +- .../dist/esm/models/OgrSourceDurationSpecInfinite.d.ts | 2 +- .../dist/esm/models/OgrSourceDurationSpecInfinite.js | 2 +- .../dist/esm/models/OgrSourceDurationSpecValue.d.ts | 2 +- .../dist/esm/models/OgrSourceDurationSpecValue.js | 2 +- .../dist/esm/models/OgrSourceDurationSpecZero.d.ts | 2 +- .../dist/esm/models/OgrSourceDurationSpecZero.js | 2 +- typescript/dist/esm/models/OgrSourceErrorSpec.d.ts | 2 +- typescript/dist/esm/models/OgrSourceErrorSpec.js | 2 +- typescript/dist/esm/models/OgrSourceTimeFormat.d.ts | 2 +- typescript/dist/esm/models/OgrSourceTimeFormat.js | 2 +- .../dist/esm/models/OgrSourceTimeFormatAuto.d.ts | 2 +- typescript/dist/esm/models/OgrSourceTimeFormatAuto.js | 2 +- .../dist/esm/models/OgrSourceTimeFormatCustom.d.ts | 2 +- .../dist/esm/models/OgrSourceTimeFormatCustom.js | 2 +- .../esm/models/OgrSourceTimeFormatUnixTimeStamp.d.ts | 2 +- .../esm/models/OgrSourceTimeFormatUnixTimeStamp.js | 2 +- typescript/dist/esm/models/OperatorQuota.d.ts | 2 +- typescript/dist/esm/models/OperatorQuota.js | 2 +- typescript/dist/esm/models/OrderBy.d.ts | 2 +- typescript/dist/esm/models/OrderBy.js | 2 +- typescript/dist/esm/models/PaletteColorizer.d.ts | 2 +- typescript/dist/esm/models/PaletteColorizer.js | 2 +- typescript/dist/esm/models/Permission.d.ts | 2 +- typescript/dist/esm/models/Permission.js | 2 +- typescript/dist/esm/models/PermissionListOptions.d.ts | 2 +- typescript/dist/esm/models/PermissionListOptions.js | 2 +- typescript/dist/esm/models/PermissionListing.d.ts | 2 +- typescript/dist/esm/models/PermissionListing.js | 2 +- typescript/dist/esm/models/PermissionRequest.d.ts | 2 +- typescript/dist/esm/models/PermissionRequest.js | 2 +- typescript/dist/esm/models/Plot.d.ts | 2 +- typescript/dist/esm/models/Plot.js | 2 +- typescript/dist/esm/models/PlotOutputFormat.d.ts | 2 +- typescript/dist/esm/models/PlotOutputFormat.js | 2 +- typescript/dist/esm/models/PlotQueryRectangle.d.ts | 2 +- typescript/dist/esm/models/PlotQueryRectangle.js | 2 +- typescript/dist/esm/models/PlotResultDescriptor.d.ts | 2 +- typescript/dist/esm/models/PlotResultDescriptor.js | 2 +- typescript/dist/esm/models/PlotUpdate.d.ts | 2 +- typescript/dist/esm/models/PlotUpdate.js | 2 +- typescript/dist/esm/models/PointSymbology.d.ts | 2 +- typescript/dist/esm/models/PointSymbology.js | 2 +- typescript/dist/esm/models/PolygonSymbology.d.ts | 2 +- typescript/dist/esm/models/PolygonSymbology.js | 2 +- typescript/dist/esm/models/Project.d.ts | 2 +- typescript/dist/esm/models/Project.js | 2 +- typescript/dist/esm/models/ProjectLayer.d.ts | 2 +- typescript/dist/esm/models/ProjectLayer.js | 2 +- typescript/dist/esm/models/ProjectListing.d.ts | 2 +- typescript/dist/esm/models/ProjectListing.js | 2 +- typescript/dist/esm/models/ProjectResource.d.ts | 2 +- typescript/dist/esm/models/ProjectResource.js | 2 +- typescript/dist/esm/models/ProjectUpdateToken.d.ts | 2 +- typescript/dist/esm/models/ProjectUpdateToken.js | 2 +- typescript/dist/esm/models/ProjectVersion.d.ts | 2 +- typescript/dist/esm/models/ProjectVersion.js | 2 +- typescript/dist/esm/models/Provenance.d.ts | 2 +- typescript/dist/esm/models/Provenance.js | 2 +- typescript/dist/esm/models/ProvenanceEntry.d.ts | 2 +- typescript/dist/esm/models/ProvenanceEntry.js | 2 +- typescript/dist/esm/models/ProvenanceOutput.d.ts | 2 +- typescript/dist/esm/models/ProvenanceOutput.js | 2 +- typescript/dist/esm/models/Provenances.d.ts | 2 +- typescript/dist/esm/models/Provenances.js | 2 +- typescript/dist/esm/models/ProviderCapabilities.d.ts | 2 +- typescript/dist/esm/models/ProviderCapabilities.js | 2 +- .../dist/esm/models/ProviderLayerCollectionId.d.ts | 2 +- .../dist/esm/models/ProviderLayerCollectionId.js | 2 +- typescript/dist/esm/models/ProviderLayerId.d.ts | 2 +- typescript/dist/esm/models/ProviderLayerId.js | 2 +- typescript/dist/esm/models/Quota.d.ts | 2 +- typescript/dist/esm/models/Quota.js | 2 +- typescript/dist/esm/models/RasterBandDescriptor.d.ts | 2 +- typescript/dist/esm/models/RasterBandDescriptor.js | 2 +- typescript/dist/esm/models/RasterColorizer.d.ts | 2 +- typescript/dist/esm/models/RasterColorizer.js | 2 +- typescript/dist/esm/models/RasterDataType.d.ts | 2 +- typescript/dist/esm/models/RasterDataType.js | 2 +- .../dist/esm/models/RasterDatasetFromWorkflow.d.ts | 2 +- .../dist/esm/models/RasterDatasetFromWorkflow.js | 2 +- .../esm/models/RasterDatasetFromWorkflowResult.d.ts | 2 +- .../dist/esm/models/RasterDatasetFromWorkflowResult.js | 2 +- .../dist/esm/models/RasterPropertiesEntryType.d.ts | 2 +- .../dist/esm/models/RasterPropertiesEntryType.js | 2 +- typescript/dist/esm/models/RasterPropertiesKey.d.ts | 2 +- typescript/dist/esm/models/RasterPropertiesKey.js | 2 +- typescript/dist/esm/models/RasterQueryRectangle.d.ts | 2 +- typescript/dist/esm/models/RasterQueryRectangle.js | 2 +- typescript/dist/esm/models/RasterResultDescriptor.d.ts | 2 +- typescript/dist/esm/models/RasterResultDescriptor.js | 2 +- .../esm/models/RasterStreamWebsocketResultType.d.ts | 2 +- .../dist/esm/models/RasterStreamWebsocketResultType.js | 2 +- typescript/dist/esm/models/RasterSymbology.d.ts | 2 +- typescript/dist/esm/models/RasterSymbology.js | 2 +- typescript/dist/esm/models/Resource.d.ts | 2 +- typescript/dist/esm/models/Resource.js | 2 +- typescript/dist/esm/models/ResourceId.d.ts | 2 +- typescript/dist/esm/models/ResourceId.js | 2 +- typescript/dist/esm/models/ResourceIdDatasetId.d.ts | 2 +- typescript/dist/esm/models/ResourceIdDatasetId.js | 2 +- typescript/dist/esm/models/ResourceIdLayer.d.ts | 2 +- typescript/dist/esm/models/ResourceIdLayer.js | 2 +- .../dist/esm/models/ResourceIdLayerCollection.d.ts | 2 +- .../dist/esm/models/ResourceIdLayerCollection.js | 2 +- typescript/dist/esm/models/ResourceIdMlModel.d.ts | 2 +- typescript/dist/esm/models/ResourceIdMlModel.js | 2 +- typescript/dist/esm/models/ResourceIdProject.d.ts | 2 +- typescript/dist/esm/models/ResourceIdProject.js | 2 +- typescript/dist/esm/models/Role.d.ts | 2 +- typescript/dist/esm/models/Role.js | 2 +- typescript/dist/esm/models/RoleDescription.d.ts | 2 +- typescript/dist/esm/models/RoleDescription.js | 2 +- typescript/dist/esm/models/STRectangle.d.ts | 2 +- typescript/dist/esm/models/STRectangle.js | 2 +- typescript/dist/esm/models/SearchCapabilities.d.ts | 2 +- typescript/dist/esm/models/SearchCapabilities.js | 2 +- typescript/dist/esm/models/SearchType.d.ts | 2 +- typescript/dist/esm/models/SearchType.js | 2 +- typescript/dist/esm/models/SearchTypes.d.ts | 2 +- typescript/dist/esm/models/SearchTypes.js | 2 +- typescript/dist/esm/models/ServerInfo.d.ts | 2 +- typescript/dist/esm/models/ServerInfo.js | 2 +- .../dist/esm/models/SingleBandRasterColorizer.d.ts | 2 +- .../dist/esm/models/SingleBandRasterColorizer.js | 2 +- typescript/dist/esm/models/SpatialPartition2D.d.ts | 2 +- typescript/dist/esm/models/SpatialPartition2D.js | 2 +- .../dist/esm/models/SpatialReferenceAuthority.d.ts | 2 +- .../dist/esm/models/SpatialReferenceAuthority.js | 2 +- .../dist/esm/models/SpatialReferenceSpecification.d.ts | 2 +- .../dist/esm/models/SpatialReferenceSpecification.js | 2 +- typescript/dist/esm/models/SpatialResolution.d.ts | 2 +- typescript/dist/esm/models/SpatialResolution.js | 2 +- typescript/dist/esm/models/StaticNumberParam.d.ts | 2 +- typescript/dist/esm/models/StaticNumberParam.js | 2 +- typescript/dist/esm/models/StrokeParam.d.ts | 2 +- typescript/dist/esm/models/StrokeParam.js | 2 +- typescript/dist/esm/models/SuggestMetaData.d.ts | 2 +- typescript/dist/esm/models/SuggestMetaData.js | 2 +- typescript/dist/esm/models/Symbology.d.ts | 2 +- typescript/dist/esm/models/Symbology.js | 2 +- typescript/dist/esm/models/TaskAbortOptions.d.ts | 2 +- typescript/dist/esm/models/TaskAbortOptions.js | 2 +- typescript/dist/esm/models/TaskFilter.d.ts | 2 +- typescript/dist/esm/models/TaskFilter.js | 2 +- typescript/dist/esm/models/TaskListOptions.d.ts | 2 +- typescript/dist/esm/models/TaskListOptions.js | 2 +- typescript/dist/esm/models/TaskResponse.d.ts | 2 +- typescript/dist/esm/models/TaskResponse.js | 2 +- typescript/dist/esm/models/TaskStatus.d.ts | 2 +- typescript/dist/esm/models/TaskStatus.js | 2 +- typescript/dist/esm/models/TaskStatusAborted.d.ts | 2 +- typescript/dist/esm/models/TaskStatusAborted.js | 2 +- typescript/dist/esm/models/TaskStatusCompleted.d.ts | 2 +- typescript/dist/esm/models/TaskStatusCompleted.js | 2 +- typescript/dist/esm/models/TaskStatusFailed.d.ts | 2 +- typescript/dist/esm/models/TaskStatusFailed.js | 2 +- typescript/dist/esm/models/TaskStatusRunning.d.ts | 2 +- typescript/dist/esm/models/TaskStatusRunning.js | 2 +- typescript/dist/esm/models/TaskStatusWithId.d.ts | 2 +- typescript/dist/esm/models/TaskStatusWithId.js | 2 +- typescript/dist/esm/models/TextSymbology.d.ts | 2 +- typescript/dist/esm/models/TextSymbology.js | 2 +- typescript/dist/esm/models/TimeGranularity.d.ts | 2 +- typescript/dist/esm/models/TimeGranularity.js | 2 +- typescript/dist/esm/models/TimeInterval.d.ts | 2 +- typescript/dist/esm/models/TimeInterval.js | 2 +- typescript/dist/esm/models/TimeReference.d.ts | 2 +- typescript/dist/esm/models/TimeReference.js | 2 +- typescript/dist/esm/models/TimeStep.d.ts | 2 +- typescript/dist/esm/models/TimeStep.js | 2 +- typescript/dist/esm/models/TypedGeometry.d.ts | 2 +- typescript/dist/esm/models/TypedGeometry.js | 2 +- typescript/dist/esm/models/TypedGeometryOneOf.d.ts | 2 +- typescript/dist/esm/models/TypedGeometryOneOf.js | 2 +- typescript/dist/esm/models/TypedGeometryOneOf1.d.ts | 2 +- typescript/dist/esm/models/TypedGeometryOneOf1.js | 2 +- typescript/dist/esm/models/TypedGeometryOneOf2.d.ts | 2 +- typescript/dist/esm/models/TypedGeometryOneOf2.js | 2 +- typescript/dist/esm/models/TypedGeometryOneOf3.d.ts | 2 +- typescript/dist/esm/models/TypedGeometryOneOf3.js | 2 +- typescript/dist/esm/models/TypedOperator.d.ts | 2 +- typescript/dist/esm/models/TypedOperator.js | 2 +- typescript/dist/esm/models/TypedOperatorOperator.d.ts | 2 +- typescript/dist/esm/models/TypedOperatorOperator.js | 2 +- .../dist/esm/models/TypedPlotResultDescriptor.d.ts | 2 +- .../dist/esm/models/TypedPlotResultDescriptor.js | 2 +- .../dist/esm/models/TypedRasterResultDescriptor.d.ts | 2 +- .../dist/esm/models/TypedRasterResultDescriptor.js | 2 +- typescript/dist/esm/models/TypedResultDescriptor.d.ts | 2 +- typescript/dist/esm/models/TypedResultDescriptor.js | 2 +- .../dist/esm/models/TypedVectorResultDescriptor.d.ts | 2 +- .../dist/esm/models/TypedVectorResultDescriptor.js | 2 +- typescript/dist/esm/models/UnitlessMeasurement.d.ts | 2 +- typescript/dist/esm/models/UnitlessMeasurement.js | 2 +- typescript/dist/esm/models/UnixTimeStampType.d.ts | 2 +- typescript/dist/esm/models/UnixTimeStampType.js | 2 +- typescript/dist/esm/models/UpdateDataset.d.ts | 2 +- typescript/dist/esm/models/UpdateDataset.js | 2 +- typescript/dist/esm/models/UpdateLayer.d.ts | 2 +- typescript/dist/esm/models/UpdateLayer.js | 2 +- typescript/dist/esm/models/UpdateLayerCollection.d.ts | 2 +- typescript/dist/esm/models/UpdateLayerCollection.js | 2 +- typescript/dist/esm/models/UpdateProject.d.ts | 2 +- typescript/dist/esm/models/UpdateProject.js | 2 +- typescript/dist/esm/models/UpdateQuota.d.ts | 2 +- typescript/dist/esm/models/UpdateQuota.js | 2 +- .../dist/esm/models/UploadFileLayersResponse.d.ts | 2 +- typescript/dist/esm/models/UploadFileLayersResponse.js | 2 +- typescript/dist/esm/models/UploadFilesResponse.d.ts | 2 +- typescript/dist/esm/models/UploadFilesResponse.js | 2 +- .../dist/esm/models/UsageSummaryGranularity.d.ts | 2 +- typescript/dist/esm/models/UsageSummaryGranularity.js | 2 +- typescript/dist/esm/models/UserCredentials.d.ts | 2 +- typescript/dist/esm/models/UserCredentials.js | 2 +- typescript/dist/esm/models/UserInfo.d.ts | 2 +- typescript/dist/esm/models/UserInfo.js | 2 +- typescript/dist/esm/models/UserRegistration.d.ts | 2 +- typescript/dist/esm/models/UserRegistration.js | 2 +- typescript/dist/esm/models/UserSession.d.ts | 2 +- typescript/dist/esm/models/UserSession.js | 2 +- typescript/dist/esm/models/VectorColumnInfo.d.ts | 2 +- typescript/dist/esm/models/VectorColumnInfo.js | 2 +- typescript/dist/esm/models/VectorDataType.d.ts | 2 +- typescript/dist/esm/models/VectorDataType.js | 2 +- typescript/dist/esm/models/VectorQueryRectangle.d.ts | 2 +- typescript/dist/esm/models/VectorQueryRectangle.js | 2 +- typescript/dist/esm/models/VectorResultDescriptor.d.ts | 2 +- typescript/dist/esm/models/VectorResultDescriptor.js | 2 +- typescript/dist/esm/models/Volume.d.ts | 2 +- typescript/dist/esm/models/Volume.js | 2 +- .../dist/esm/models/VolumeFileLayersResponse.d.ts | 2 +- typescript/dist/esm/models/VolumeFileLayersResponse.js | 2 +- typescript/dist/esm/models/WcsBoundingbox.d.ts | 2 +- typescript/dist/esm/models/WcsBoundingbox.js | 2 +- typescript/dist/esm/models/WcsService.d.ts | 2 +- typescript/dist/esm/models/WcsService.js | 2 +- typescript/dist/esm/models/WcsVersion.d.ts | 2 +- typescript/dist/esm/models/WcsVersion.js | 2 +- typescript/dist/esm/models/WfsService.d.ts | 2 +- typescript/dist/esm/models/WfsService.js | 2 +- typescript/dist/esm/models/WfsVersion.d.ts | 2 +- typescript/dist/esm/models/WfsVersion.js | 2 +- typescript/dist/esm/models/WmsService.d.ts | 2 +- typescript/dist/esm/models/WmsService.js | 2 +- typescript/dist/esm/models/WmsVersion.d.ts | 2 +- typescript/dist/esm/models/WmsVersion.js | 2 +- typescript/dist/esm/models/Workflow.d.ts | 2 +- typescript/dist/esm/models/Workflow.js | 2 +- typescript/dist/esm/models/WrappedPlotOutput.d.ts | 2 +- typescript/dist/esm/models/WrappedPlotOutput.js | 2 +- typescript/dist/esm/runtime.d.ts | 2 +- typescript/dist/esm/runtime.js | 2 +- typescript/dist/models/AddCollection200Response.d.ts | 2 +- typescript/dist/models/AddCollection200Response.js | 2 +- typescript/dist/models/AddDataset.d.ts | 2 +- typescript/dist/models/AddDataset.js | 2 +- typescript/dist/models/AddLayer.d.ts | 2 +- typescript/dist/models/AddLayer.js | 2 +- typescript/dist/models/AddLayerCollection.d.ts | 2 +- typescript/dist/models/AddLayerCollection.js | 2 +- typescript/dist/models/AddRole.d.ts | 2 +- typescript/dist/models/AddRole.js | 2 +- typescript/dist/models/AuthCodeRequestURL.d.ts | 2 +- typescript/dist/models/AuthCodeRequestURL.js | 2 +- typescript/dist/models/AuthCodeResponse.d.ts | 2 +- typescript/dist/models/AuthCodeResponse.js | 2 +- typescript/dist/models/AutoCreateDataset.d.ts | 2 +- typescript/dist/models/AutoCreateDataset.js | 2 +- typescript/dist/models/AxisOrder.d.ts | 2 +- typescript/dist/models/AxisOrder.js | 2 +- typescript/dist/models/BoundingBox2D.d.ts | 2 +- typescript/dist/models/BoundingBox2D.js | 2 +- typescript/dist/models/Breakpoint.d.ts | 2 +- typescript/dist/models/Breakpoint.js | 2 +- typescript/dist/models/ClassificationMeasurement.d.ts | 2 +- typescript/dist/models/ClassificationMeasurement.js | 2 +- typescript/dist/models/CollectionItem.d.ts | 2 +- typescript/dist/models/CollectionItem.js | 2 +- typescript/dist/models/CollectionType.d.ts | 2 +- typescript/dist/models/CollectionType.js | 2 +- typescript/dist/models/ColorParam.d.ts | 2 +- typescript/dist/models/ColorParam.js | 2 +- typescript/dist/models/ColorParamStatic.d.ts | 2 +- typescript/dist/models/ColorParamStatic.js | 2 +- typescript/dist/models/Colorizer.d.ts | 2 +- typescript/dist/models/Colorizer.js | 2 +- typescript/dist/models/ComputationQuota.d.ts | 2 +- typescript/dist/models/ComputationQuota.js | 2 +- typescript/dist/models/ContinuousMeasurement.d.ts | 2 +- typescript/dist/models/ContinuousMeasurement.js | 2 +- typescript/dist/models/Coordinate2D.d.ts | 2 +- typescript/dist/models/Coordinate2D.js | 2 +- typescript/dist/models/CreateDataset.d.ts | 2 +- typescript/dist/models/CreateDataset.js | 2 +- .../dist/models/CreateDatasetHandler200Response.d.ts | 2 +- .../dist/models/CreateDatasetHandler200Response.js | 2 +- typescript/dist/models/CreateProject.d.ts | 2 +- typescript/dist/models/CreateProject.js | 2 +- typescript/dist/models/CsvHeader.d.ts | 2 +- typescript/dist/models/CsvHeader.js | 2 +- typescript/dist/models/DataId.d.ts | 2 +- typescript/dist/models/DataId.js | 2 +- typescript/dist/models/DataPath.d.ts | 2 +- typescript/dist/models/DataPath.js | 2 +- typescript/dist/models/DataPathOneOf.d.ts | 2 +- typescript/dist/models/DataPathOneOf.js | 2 +- typescript/dist/models/DataPathOneOf1.d.ts | 2 +- typescript/dist/models/DataPathOneOf1.js | 2 +- typescript/dist/models/DataUsage.d.ts | 2 +- typescript/dist/models/DataUsage.js | 2 +- typescript/dist/models/DataUsageSummary.d.ts | 4 ++-- typescript/dist/models/DataUsageSummary.js | 8 ++++---- typescript/dist/models/Dataset.d.ts | 2 +- typescript/dist/models/Dataset.js | 2 +- typescript/dist/models/DatasetDefinition.d.ts | 2 +- typescript/dist/models/DatasetDefinition.js | 2 +- typescript/dist/models/DatasetListing.d.ts | 2 +- typescript/dist/models/DatasetListing.js | 2 +- typescript/dist/models/DatasetResource.d.ts | 2 +- typescript/dist/models/DatasetResource.js | 2 +- typescript/dist/models/DateTime.d.ts | 2 +- typescript/dist/models/DateTime.js | 2 +- typescript/dist/models/DerivedColor.d.ts | 2 +- typescript/dist/models/DerivedColor.js | 2 +- typescript/dist/models/DerivedNumber.d.ts | 2 +- typescript/dist/models/DerivedNumber.js | 2 +- typescript/dist/models/DescribeCoverageRequest.d.ts | 2 +- typescript/dist/models/DescribeCoverageRequest.js | 2 +- typescript/dist/models/ErrorResponse.d.ts | 2 +- typescript/dist/models/ErrorResponse.js | 2 +- typescript/dist/models/ExternalDataId.d.ts | 2 +- typescript/dist/models/ExternalDataId.js | 2 +- typescript/dist/models/FeatureDataType.d.ts | 2 +- typescript/dist/models/FeatureDataType.js | 2 +- typescript/dist/models/FileNotFoundHandling.d.ts | 2 +- typescript/dist/models/FileNotFoundHandling.js | 2 +- typescript/dist/models/FormatSpecifics.d.ts | 2 +- typescript/dist/models/FormatSpecifics.js | 2 +- typescript/dist/models/FormatSpecificsOneOf.d.ts | 2 +- typescript/dist/models/FormatSpecificsOneOf.js | 2 +- typescript/dist/models/FormatSpecificsOneOfCsv.d.ts | 2 +- typescript/dist/models/FormatSpecificsOneOfCsv.js | 2 +- typescript/dist/models/GdalDatasetGeoTransform.d.ts | 2 +- typescript/dist/models/GdalDatasetGeoTransform.js | 2 +- typescript/dist/models/GdalDatasetParameters.d.ts | 2 +- typescript/dist/models/GdalDatasetParameters.js | 2 +- .../dist/models/GdalLoadingInfoTemporalSlice.d.ts | 2 +- typescript/dist/models/GdalLoadingInfoTemporalSlice.js | 2 +- typescript/dist/models/GdalMetaDataList.d.ts | 2 +- typescript/dist/models/GdalMetaDataList.js | 2 +- typescript/dist/models/GdalMetaDataRegular.d.ts | 2 +- typescript/dist/models/GdalMetaDataRegular.js | 2 +- typescript/dist/models/GdalMetaDataStatic.d.ts | 2 +- typescript/dist/models/GdalMetaDataStatic.js | 2 +- typescript/dist/models/GdalMetadataMapping.d.ts | 2 +- typescript/dist/models/GdalMetadataMapping.js | 2 +- typescript/dist/models/GdalMetadataNetCdfCf.d.ts | 2 +- typescript/dist/models/GdalMetadataNetCdfCf.js | 2 +- typescript/dist/models/GdalSourceTimePlaceholder.d.ts | 2 +- typescript/dist/models/GdalSourceTimePlaceholder.js | 2 +- typescript/dist/models/GeoJson.d.ts | 2 +- typescript/dist/models/GeoJson.js | 2 +- typescript/dist/models/GetCapabilitiesFormat.d.ts | 2 +- typescript/dist/models/GetCapabilitiesFormat.js | 2 +- typescript/dist/models/GetCapabilitiesRequest.d.ts | 2 +- typescript/dist/models/GetCapabilitiesRequest.js | 2 +- typescript/dist/models/GetCoverageFormat.d.ts | 2 +- typescript/dist/models/GetCoverageFormat.js | 2 +- typescript/dist/models/GetCoverageRequest.d.ts | 2 +- typescript/dist/models/GetCoverageRequest.js | 2 +- typescript/dist/models/GetFeatureRequest.d.ts | 2 +- typescript/dist/models/GetFeatureRequest.js | 2 +- typescript/dist/models/GetLegendGraphicRequest.d.ts | 2 +- typescript/dist/models/GetLegendGraphicRequest.js | 2 +- typescript/dist/models/GetMapExceptionFormat.d.ts | 2 +- typescript/dist/models/GetMapExceptionFormat.js | 2 +- typescript/dist/models/GetMapFormat.d.ts | 2 +- typescript/dist/models/GetMapFormat.js | 2 +- typescript/dist/models/GetMapRequest.d.ts | 2 +- typescript/dist/models/GetMapRequest.js | 2 +- typescript/dist/models/InternalDataId.d.ts | 2 +- typescript/dist/models/InternalDataId.js | 2 +- typescript/dist/models/Layer.d.ts | 2 +- typescript/dist/models/Layer.js | 2 +- typescript/dist/models/LayerCollection.d.ts | 2 +- typescript/dist/models/LayerCollection.js | 2 +- typescript/dist/models/LayerCollectionListing.d.ts | 2 +- typescript/dist/models/LayerCollectionListing.js | 2 +- typescript/dist/models/LayerCollectionResource.d.ts | 2 +- typescript/dist/models/LayerCollectionResource.js | 2 +- typescript/dist/models/LayerListing.d.ts | 2 +- typescript/dist/models/LayerListing.js | 2 +- typescript/dist/models/LayerResource.d.ts | 2 +- typescript/dist/models/LayerResource.js | 2 +- typescript/dist/models/LayerUpdate.d.ts | 2 +- typescript/dist/models/LayerUpdate.js | 2 +- typescript/dist/models/LayerVisibility.d.ts | 2 +- typescript/dist/models/LayerVisibility.js | 2 +- typescript/dist/models/LineSymbology.d.ts | 2 +- typescript/dist/models/LineSymbology.js | 2 +- typescript/dist/models/LinearGradient.d.ts | 2 +- typescript/dist/models/LinearGradient.js | 2 +- typescript/dist/models/LogarithmicGradient.d.ts | 2 +- typescript/dist/models/LogarithmicGradient.js | 2 +- typescript/dist/models/Measurement.d.ts | 2 +- typescript/dist/models/Measurement.js | 2 +- typescript/dist/models/MetaDataDefinition.d.ts | 2 +- typescript/dist/models/MetaDataDefinition.js | 2 +- typescript/dist/models/MetaDataSuggestion.d.ts | 2 +- typescript/dist/models/MetaDataSuggestion.js | 2 +- typescript/dist/models/MlModel.d.ts | 2 +- typescript/dist/models/MlModel.js | 2 +- typescript/dist/models/MlModelMetadata.d.ts | 2 +- typescript/dist/models/MlModelMetadata.js | 2 +- .../dist/models/MockDatasetDataSourceLoadingInfo.d.ts | 2 +- .../dist/models/MockDatasetDataSourceLoadingInfo.js | 2 +- typescript/dist/models/MockMetaData.d.ts | 2 +- typescript/dist/models/MockMetaData.js | 2 +- typescript/dist/models/MultiBandRasterColorizer.d.ts | 2 +- typescript/dist/models/MultiBandRasterColorizer.js | 2 +- typescript/dist/models/MultiLineString.d.ts | 2 +- typescript/dist/models/MultiLineString.js | 2 +- typescript/dist/models/MultiPoint.d.ts | 2 +- typescript/dist/models/MultiPoint.js | 2 +- typescript/dist/models/MultiPolygon.d.ts | 2 +- typescript/dist/models/MultiPolygon.js | 2 +- typescript/dist/models/NumberParam.d.ts | 2 +- typescript/dist/models/NumberParam.js | 2 +- typescript/dist/models/OgrMetaData.d.ts | 2 +- typescript/dist/models/OgrMetaData.js | 2 +- typescript/dist/models/OgrSourceColumnSpec.d.ts | 2 +- typescript/dist/models/OgrSourceColumnSpec.js | 2 +- typescript/dist/models/OgrSourceDataset.d.ts | 2 +- typescript/dist/models/OgrSourceDataset.js | 2 +- typescript/dist/models/OgrSourceDatasetTimeType.d.ts | 2 +- typescript/dist/models/OgrSourceDatasetTimeType.js | 2 +- .../dist/models/OgrSourceDatasetTimeTypeNone.d.ts | 2 +- typescript/dist/models/OgrSourceDatasetTimeTypeNone.js | 2 +- .../dist/models/OgrSourceDatasetTimeTypeStart.d.ts | 2 +- .../dist/models/OgrSourceDatasetTimeTypeStart.js | 2 +- .../models/OgrSourceDatasetTimeTypeStartDuration.d.ts | 2 +- .../models/OgrSourceDatasetTimeTypeStartDuration.js | 2 +- .../dist/models/OgrSourceDatasetTimeTypeStartEnd.d.ts | 2 +- .../dist/models/OgrSourceDatasetTimeTypeStartEnd.js | 2 +- typescript/dist/models/OgrSourceDurationSpec.d.ts | 2 +- typescript/dist/models/OgrSourceDurationSpec.js | 2 +- .../dist/models/OgrSourceDurationSpecInfinite.d.ts | 2 +- .../dist/models/OgrSourceDurationSpecInfinite.js | 2 +- typescript/dist/models/OgrSourceDurationSpecValue.d.ts | 2 +- typescript/dist/models/OgrSourceDurationSpecValue.js | 2 +- typescript/dist/models/OgrSourceDurationSpecZero.d.ts | 2 +- typescript/dist/models/OgrSourceDurationSpecZero.js | 2 +- typescript/dist/models/OgrSourceErrorSpec.d.ts | 2 +- typescript/dist/models/OgrSourceErrorSpec.js | 2 +- typescript/dist/models/OgrSourceTimeFormat.d.ts | 2 +- typescript/dist/models/OgrSourceTimeFormat.js | 2 +- typescript/dist/models/OgrSourceTimeFormatAuto.d.ts | 2 +- typescript/dist/models/OgrSourceTimeFormatAuto.js | 2 +- typescript/dist/models/OgrSourceTimeFormatCustom.d.ts | 2 +- typescript/dist/models/OgrSourceTimeFormatCustom.js | 2 +- .../dist/models/OgrSourceTimeFormatUnixTimeStamp.d.ts | 2 +- .../dist/models/OgrSourceTimeFormatUnixTimeStamp.js | 2 +- typescript/dist/models/OperatorQuota.d.ts | 2 +- typescript/dist/models/OperatorQuota.js | 2 +- typescript/dist/models/OrderBy.d.ts | 2 +- typescript/dist/models/OrderBy.js | 2 +- typescript/dist/models/PaletteColorizer.d.ts | 2 +- typescript/dist/models/PaletteColorizer.js | 2 +- typescript/dist/models/Permission.d.ts | 2 +- typescript/dist/models/Permission.js | 2 +- typescript/dist/models/PermissionListOptions.d.ts | 2 +- typescript/dist/models/PermissionListOptions.js | 2 +- typescript/dist/models/PermissionListing.d.ts | 2 +- typescript/dist/models/PermissionListing.js | 2 +- typescript/dist/models/PermissionRequest.d.ts | 2 +- typescript/dist/models/PermissionRequest.js | 2 +- typescript/dist/models/Plot.d.ts | 2 +- typescript/dist/models/Plot.js | 2 +- typescript/dist/models/PlotOutputFormat.d.ts | 2 +- typescript/dist/models/PlotOutputFormat.js | 2 +- typescript/dist/models/PlotQueryRectangle.d.ts | 2 +- typescript/dist/models/PlotQueryRectangle.js | 2 +- typescript/dist/models/PlotResultDescriptor.d.ts | 2 +- typescript/dist/models/PlotResultDescriptor.js | 2 +- typescript/dist/models/PlotUpdate.d.ts | 2 +- typescript/dist/models/PlotUpdate.js | 2 +- typescript/dist/models/PointSymbology.d.ts | 2 +- typescript/dist/models/PointSymbology.js | 2 +- typescript/dist/models/PolygonSymbology.d.ts | 2 +- typescript/dist/models/PolygonSymbology.js | 2 +- typescript/dist/models/Project.d.ts | 2 +- typescript/dist/models/Project.js | 2 +- typescript/dist/models/ProjectLayer.d.ts | 2 +- typescript/dist/models/ProjectLayer.js | 2 +- typescript/dist/models/ProjectListing.d.ts | 2 +- typescript/dist/models/ProjectListing.js | 2 +- typescript/dist/models/ProjectResource.d.ts | 2 +- typescript/dist/models/ProjectResource.js | 2 +- typescript/dist/models/ProjectUpdateToken.d.ts | 2 +- typescript/dist/models/ProjectUpdateToken.js | 2 +- typescript/dist/models/ProjectVersion.d.ts | 2 +- typescript/dist/models/ProjectVersion.js | 2 +- typescript/dist/models/Provenance.d.ts | 2 +- typescript/dist/models/Provenance.js | 2 +- typescript/dist/models/ProvenanceEntry.d.ts | 2 +- typescript/dist/models/ProvenanceEntry.js | 2 +- typescript/dist/models/ProvenanceOutput.d.ts | 2 +- typescript/dist/models/ProvenanceOutput.js | 2 +- typescript/dist/models/Provenances.d.ts | 2 +- typescript/dist/models/Provenances.js | 2 +- typescript/dist/models/ProviderCapabilities.d.ts | 2 +- typescript/dist/models/ProviderCapabilities.js | 2 +- typescript/dist/models/ProviderLayerCollectionId.d.ts | 2 +- typescript/dist/models/ProviderLayerCollectionId.js | 2 +- typescript/dist/models/ProviderLayerId.d.ts | 2 +- typescript/dist/models/ProviderLayerId.js | 2 +- typescript/dist/models/Quota.d.ts | 2 +- typescript/dist/models/Quota.js | 2 +- typescript/dist/models/RasterBandDescriptor.d.ts | 2 +- typescript/dist/models/RasterBandDescriptor.js | 2 +- typescript/dist/models/RasterColorizer.d.ts | 2 +- typescript/dist/models/RasterColorizer.js | 2 +- typescript/dist/models/RasterDataType.d.ts | 2 +- typescript/dist/models/RasterDataType.js | 2 +- typescript/dist/models/RasterDatasetFromWorkflow.d.ts | 2 +- typescript/dist/models/RasterDatasetFromWorkflow.js | 2 +- .../dist/models/RasterDatasetFromWorkflowResult.d.ts | 2 +- .../dist/models/RasterDatasetFromWorkflowResult.js | 2 +- typescript/dist/models/RasterPropertiesEntryType.d.ts | 2 +- typescript/dist/models/RasterPropertiesEntryType.js | 2 +- typescript/dist/models/RasterPropertiesKey.d.ts | 2 +- typescript/dist/models/RasterPropertiesKey.js | 2 +- typescript/dist/models/RasterQueryRectangle.d.ts | 2 +- typescript/dist/models/RasterQueryRectangle.js | 2 +- typescript/dist/models/RasterResultDescriptor.d.ts | 2 +- typescript/dist/models/RasterResultDescriptor.js | 2 +- .../dist/models/RasterStreamWebsocketResultType.d.ts | 2 +- .../dist/models/RasterStreamWebsocketResultType.js | 2 +- typescript/dist/models/RasterSymbology.d.ts | 2 +- typescript/dist/models/RasterSymbology.js | 2 +- typescript/dist/models/Resource.d.ts | 2 +- typescript/dist/models/Resource.js | 2 +- typescript/dist/models/ResourceId.d.ts | 2 +- typescript/dist/models/ResourceId.js | 2 +- typescript/dist/models/ResourceIdDatasetId.d.ts | 2 +- typescript/dist/models/ResourceIdDatasetId.js | 2 +- typescript/dist/models/ResourceIdLayer.d.ts | 2 +- typescript/dist/models/ResourceIdLayer.js | 2 +- typescript/dist/models/ResourceIdLayerCollection.d.ts | 2 +- typescript/dist/models/ResourceIdLayerCollection.js | 2 +- typescript/dist/models/ResourceIdMlModel.d.ts | 2 +- typescript/dist/models/ResourceIdMlModel.js | 2 +- typescript/dist/models/ResourceIdProject.d.ts | 2 +- typescript/dist/models/ResourceIdProject.js | 2 +- typescript/dist/models/Role.d.ts | 2 +- typescript/dist/models/Role.js | 2 +- typescript/dist/models/RoleDescription.d.ts | 2 +- typescript/dist/models/RoleDescription.js | 2 +- typescript/dist/models/STRectangle.d.ts | 2 +- typescript/dist/models/STRectangle.js | 2 +- typescript/dist/models/SearchCapabilities.d.ts | 2 +- typescript/dist/models/SearchCapabilities.js | 2 +- typescript/dist/models/SearchType.d.ts | 2 +- typescript/dist/models/SearchType.js | 2 +- typescript/dist/models/SearchTypes.d.ts | 2 +- typescript/dist/models/SearchTypes.js | 2 +- typescript/dist/models/ServerInfo.d.ts | 2 +- typescript/dist/models/ServerInfo.js | 2 +- typescript/dist/models/SingleBandRasterColorizer.d.ts | 2 +- typescript/dist/models/SingleBandRasterColorizer.js | 2 +- typescript/dist/models/SpatialPartition2D.d.ts | 2 +- typescript/dist/models/SpatialPartition2D.js | 2 +- typescript/dist/models/SpatialReferenceAuthority.d.ts | 2 +- typescript/dist/models/SpatialReferenceAuthority.js | 2 +- .../dist/models/SpatialReferenceSpecification.d.ts | 2 +- .../dist/models/SpatialReferenceSpecification.js | 2 +- typescript/dist/models/SpatialResolution.d.ts | 2 +- typescript/dist/models/SpatialResolution.js | 2 +- typescript/dist/models/StaticNumberParam.d.ts | 2 +- typescript/dist/models/StaticNumberParam.js | 2 +- typescript/dist/models/StrokeParam.d.ts | 2 +- typescript/dist/models/StrokeParam.js | 2 +- typescript/dist/models/SuggestMetaData.d.ts | 2 +- typescript/dist/models/SuggestMetaData.js | 2 +- typescript/dist/models/Symbology.d.ts | 2 +- typescript/dist/models/Symbology.js | 2 +- typescript/dist/models/TaskAbortOptions.d.ts | 2 +- typescript/dist/models/TaskAbortOptions.js | 2 +- typescript/dist/models/TaskFilter.d.ts | 2 +- typescript/dist/models/TaskFilter.js | 2 +- typescript/dist/models/TaskListOptions.d.ts | 2 +- typescript/dist/models/TaskListOptions.js | 2 +- typescript/dist/models/TaskResponse.d.ts | 2 +- typescript/dist/models/TaskResponse.js | 2 +- typescript/dist/models/TaskStatus.d.ts | 2 +- typescript/dist/models/TaskStatus.js | 2 +- typescript/dist/models/TaskStatusAborted.d.ts | 2 +- typescript/dist/models/TaskStatusAborted.js | 2 +- typescript/dist/models/TaskStatusCompleted.d.ts | 2 +- typescript/dist/models/TaskStatusCompleted.js | 2 +- typescript/dist/models/TaskStatusFailed.d.ts | 2 +- typescript/dist/models/TaskStatusFailed.js | 2 +- typescript/dist/models/TaskStatusRunning.d.ts | 2 +- typescript/dist/models/TaskStatusRunning.js | 2 +- typescript/dist/models/TaskStatusWithId.d.ts | 2 +- typescript/dist/models/TaskStatusWithId.js | 2 +- typescript/dist/models/TextSymbology.d.ts | 2 +- typescript/dist/models/TextSymbology.js | 2 +- typescript/dist/models/TimeGranularity.d.ts | 2 +- typescript/dist/models/TimeGranularity.js | 2 +- typescript/dist/models/TimeInterval.d.ts | 2 +- typescript/dist/models/TimeInterval.js | 2 +- typescript/dist/models/TimeReference.d.ts | 2 +- typescript/dist/models/TimeReference.js | 2 +- typescript/dist/models/TimeStep.d.ts | 2 +- typescript/dist/models/TimeStep.js | 2 +- typescript/dist/models/TypedGeometry.d.ts | 2 +- typescript/dist/models/TypedGeometry.js | 2 +- typescript/dist/models/TypedGeometryOneOf.d.ts | 2 +- typescript/dist/models/TypedGeometryOneOf.js | 2 +- typescript/dist/models/TypedGeometryOneOf1.d.ts | 2 +- typescript/dist/models/TypedGeometryOneOf1.js | 2 +- typescript/dist/models/TypedGeometryOneOf2.d.ts | 2 +- typescript/dist/models/TypedGeometryOneOf2.js | 2 +- typescript/dist/models/TypedGeometryOneOf3.d.ts | 2 +- typescript/dist/models/TypedGeometryOneOf3.js | 2 +- typescript/dist/models/TypedOperator.d.ts | 2 +- typescript/dist/models/TypedOperator.js | 2 +- typescript/dist/models/TypedOperatorOperator.d.ts | 2 +- typescript/dist/models/TypedOperatorOperator.js | 2 +- typescript/dist/models/TypedPlotResultDescriptor.d.ts | 2 +- typescript/dist/models/TypedPlotResultDescriptor.js | 2 +- .../dist/models/TypedRasterResultDescriptor.d.ts | 2 +- typescript/dist/models/TypedRasterResultDescriptor.js | 2 +- typescript/dist/models/TypedResultDescriptor.d.ts | 2 +- typescript/dist/models/TypedResultDescriptor.js | 2 +- .../dist/models/TypedVectorResultDescriptor.d.ts | 2 +- typescript/dist/models/TypedVectorResultDescriptor.js | 2 +- typescript/dist/models/UnitlessMeasurement.d.ts | 2 +- typescript/dist/models/UnitlessMeasurement.js | 2 +- typescript/dist/models/UnixTimeStampType.d.ts | 2 +- typescript/dist/models/UnixTimeStampType.js | 2 +- typescript/dist/models/UpdateDataset.d.ts | 2 +- typescript/dist/models/UpdateDataset.js | 2 +- typescript/dist/models/UpdateLayer.d.ts | 2 +- typescript/dist/models/UpdateLayer.js | 2 +- typescript/dist/models/UpdateLayerCollection.d.ts | 2 +- typescript/dist/models/UpdateLayerCollection.js | 2 +- typescript/dist/models/UpdateProject.d.ts | 2 +- typescript/dist/models/UpdateProject.js | 2 +- typescript/dist/models/UpdateQuota.d.ts | 2 +- typescript/dist/models/UpdateQuota.js | 2 +- typescript/dist/models/UploadFileLayersResponse.d.ts | 2 +- typescript/dist/models/UploadFileLayersResponse.js | 2 +- typescript/dist/models/UploadFilesResponse.d.ts | 2 +- typescript/dist/models/UploadFilesResponse.js | 2 +- typescript/dist/models/UsageSummaryGranularity.d.ts | 2 +- typescript/dist/models/UsageSummaryGranularity.js | 2 +- typescript/dist/models/UserCredentials.d.ts | 2 +- typescript/dist/models/UserCredentials.js | 2 +- typescript/dist/models/UserInfo.d.ts | 2 +- typescript/dist/models/UserInfo.js | 2 +- typescript/dist/models/UserRegistration.d.ts | 2 +- typescript/dist/models/UserRegistration.js | 2 +- typescript/dist/models/UserSession.d.ts | 2 +- typescript/dist/models/UserSession.js | 2 +- typescript/dist/models/VectorColumnInfo.d.ts | 2 +- typescript/dist/models/VectorColumnInfo.js | 2 +- typescript/dist/models/VectorDataType.d.ts | 2 +- typescript/dist/models/VectorDataType.js | 2 +- typescript/dist/models/VectorQueryRectangle.d.ts | 2 +- typescript/dist/models/VectorQueryRectangle.js | 2 +- typescript/dist/models/VectorResultDescriptor.d.ts | 2 +- typescript/dist/models/VectorResultDescriptor.js | 2 +- typescript/dist/models/Volume.d.ts | 2 +- typescript/dist/models/Volume.js | 2 +- typescript/dist/models/VolumeFileLayersResponse.d.ts | 2 +- typescript/dist/models/VolumeFileLayersResponse.js | 2 +- typescript/dist/models/WcsBoundingbox.d.ts | 2 +- typescript/dist/models/WcsBoundingbox.js | 2 +- typescript/dist/models/WcsService.d.ts | 2 +- typescript/dist/models/WcsService.js | 2 +- typescript/dist/models/WcsVersion.d.ts | 2 +- typescript/dist/models/WcsVersion.js | 2 +- typescript/dist/models/WfsService.d.ts | 2 +- typescript/dist/models/WfsService.js | 2 +- typescript/dist/models/WfsVersion.d.ts | 2 +- typescript/dist/models/WfsVersion.js | 2 +- typescript/dist/models/WmsService.d.ts | 2 +- typescript/dist/models/WmsService.js | 2 +- typescript/dist/models/WmsVersion.d.ts | 2 +- typescript/dist/models/WmsVersion.js | 2 +- typescript/dist/models/Workflow.d.ts | 2 +- typescript/dist/models/Workflow.js | 2 +- typescript/dist/models/WrappedPlotOutput.d.ts | 2 +- typescript/dist/models/WrappedPlotOutput.js | 2 +- typescript/dist/runtime.d.ts | 2 +- typescript/dist/runtime.js | 2 +- typescript/src/apis/DatasetsApi.ts | 2 +- typescript/src/apis/GeneralApi.ts | 2 +- typescript/src/apis/LayersApi.ts | 2 +- typescript/src/apis/MLApi.ts | 2 +- typescript/src/apis/OGCWCSApi.ts | 2 +- typescript/src/apis/OGCWFSApi.ts | 2 +- typescript/src/apis/OGCWMSApi.ts | 2 +- typescript/src/apis/PermissionsApi.ts | 2 +- typescript/src/apis/PlotsApi.ts | 2 +- typescript/src/apis/ProjectsApi.ts | 2 +- typescript/src/apis/SessionApi.ts | 2 +- typescript/src/apis/SpatialReferencesApi.ts | 2 +- typescript/src/apis/TasksApi.ts | 2 +- typescript/src/apis/UploadsApi.ts | 2 +- typescript/src/apis/UserApi.ts | 2 +- typescript/src/apis/WorkflowsApi.ts | 2 +- typescript/src/models/AddCollection200Response.ts | 2 +- typescript/src/models/AddDataset.ts | 2 +- typescript/src/models/AddLayer.ts | 2 +- typescript/src/models/AddLayerCollection.ts | 2 +- typescript/src/models/AddRole.ts | 2 +- typescript/src/models/AuthCodeRequestURL.ts | 2 +- typescript/src/models/AuthCodeResponse.ts | 2 +- typescript/src/models/AutoCreateDataset.ts | 2 +- typescript/src/models/AxisOrder.ts | 2 +- typescript/src/models/BoundingBox2D.ts | 2 +- typescript/src/models/Breakpoint.ts | 2 +- typescript/src/models/ClassificationMeasurement.ts | 2 +- typescript/src/models/CollectionItem.ts | 2 +- typescript/src/models/CollectionType.ts | 2 +- typescript/src/models/ColorParam.ts | 2 +- typescript/src/models/ColorParamStatic.ts | 2 +- typescript/src/models/Colorizer.ts | 2 +- typescript/src/models/ComputationQuota.ts | 2 +- typescript/src/models/ContinuousMeasurement.ts | 2 +- typescript/src/models/Coordinate2D.ts | 2 +- typescript/src/models/CreateDataset.ts | 2 +- .../src/models/CreateDatasetHandler200Response.ts | 2 +- typescript/src/models/CreateProject.ts | 2 +- typescript/src/models/CsvHeader.ts | 2 +- typescript/src/models/DataId.ts | 2 +- typescript/src/models/DataPath.ts | 2 +- typescript/src/models/DataPathOneOf.ts | 2 +- typescript/src/models/DataPathOneOf1.ts | 2 +- typescript/src/models/DataUsage.ts | 2 +- typescript/src/models/DataUsageSummary.ts | 10 +++++----- typescript/src/models/Dataset.ts | 2 +- typescript/src/models/DatasetDefinition.ts | 2 +- typescript/src/models/DatasetListing.ts | 2 +- typescript/src/models/DatasetResource.ts | 2 +- typescript/src/models/DateTime.ts | 2 +- typescript/src/models/DerivedColor.ts | 2 +- typescript/src/models/DerivedNumber.ts | 2 +- typescript/src/models/DescribeCoverageRequest.ts | 2 +- typescript/src/models/ErrorResponse.ts | 2 +- typescript/src/models/ExternalDataId.ts | 2 +- typescript/src/models/FeatureDataType.ts | 2 +- typescript/src/models/FileNotFoundHandling.ts | 2 +- typescript/src/models/FormatSpecifics.ts | 2 +- typescript/src/models/FormatSpecificsOneOf.ts | 2 +- typescript/src/models/FormatSpecificsOneOfCsv.ts | 2 +- typescript/src/models/GdalDatasetGeoTransform.ts | 2 +- typescript/src/models/GdalDatasetParameters.ts | 2 +- typescript/src/models/GdalLoadingInfoTemporalSlice.ts | 2 +- typescript/src/models/GdalMetaDataList.ts | 2 +- typescript/src/models/GdalMetaDataRegular.ts | 2 +- typescript/src/models/GdalMetaDataStatic.ts | 2 +- typescript/src/models/GdalMetadataMapping.ts | 2 +- typescript/src/models/GdalMetadataNetCdfCf.ts | 2 +- typescript/src/models/GdalSourceTimePlaceholder.ts | 2 +- typescript/src/models/GeoJson.ts | 2 +- typescript/src/models/GetCapabilitiesFormat.ts | 2 +- typescript/src/models/GetCapabilitiesRequest.ts | 2 +- typescript/src/models/GetCoverageFormat.ts | 2 +- typescript/src/models/GetCoverageRequest.ts | 2 +- typescript/src/models/GetFeatureRequest.ts | 2 +- typescript/src/models/GetLegendGraphicRequest.ts | 2 +- typescript/src/models/GetMapExceptionFormat.ts | 2 +- typescript/src/models/GetMapFormat.ts | 2 +- typescript/src/models/GetMapRequest.ts | 2 +- typescript/src/models/InternalDataId.ts | 2 +- typescript/src/models/Layer.ts | 2 +- typescript/src/models/LayerCollection.ts | 2 +- typescript/src/models/LayerCollectionListing.ts | 2 +- typescript/src/models/LayerCollectionResource.ts | 2 +- typescript/src/models/LayerListing.ts | 2 +- typescript/src/models/LayerResource.ts | 2 +- typescript/src/models/LayerUpdate.ts | 2 +- typescript/src/models/LayerVisibility.ts | 2 +- typescript/src/models/LineSymbology.ts | 2 +- typescript/src/models/LinearGradient.ts | 2 +- typescript/src/models/LogarithmicGradient.ts | 2 +- typescript/src/models/Measurement.ts | 2 +- typescript/src/models/MetaDataDefinition.ts | 2 +- typescript/src/models/MetaDataSuggestion.ts | 2 +- typescript/src/models/MlModel.ts | 2 +- typescript/src/models/MlModelMetadata.ts | 2 +- .../src/models/MockDatasetDataSourceLoadingInfo.ts | 2 +- typescript/src/models/MockMetaData.ts | 2 +- typescript/src/models/MultiBandRasterColorizer.ts | 2 +- typescript/src/models/MultiLineString.ts | 2 +- typescript/src/models/MultiPoint.ts | 2 +- typescript/src/models/MultiPolygon.ts | 2 +- typescript/src/models/NumberParam.ts | 2 +- typescript/src/models/OgrMetaData.ts | 2 +- typescript/src/models/OgrSourceColumnSpec.ts | 2 +- typescript/src/models/OgrSourceDataset.ts | 2 +- typescript/src/models/OgrSourceDatasetTimeType.ts | 2 +- typescript/src/models/OgrSourceDatasetTimeTypeNone.ts | 2 +- typescript/src/models/OgrSourceDatasetTimeTypeStart.ts | 2 +- .../models/OgrSourceDatasetTimeTypeStartDuration.ts | 2 +- .../src/models/OgrSourceDatasetTimeTypeStartEnd.ts | 2 +- typescript/src/models/OgrSourceDurationSpec.ts | 2 +- typescript/src/models/OgrSourceDurationSpecInfinite.ts | 2 +- typescript/src/models/OgrSourceDurationSpecValue.ts | 2 +- typescript/src/models/OgrSourceDurationSpecZero.ts | 2 +- typescript/src/models/OgrSourceErrorSpec.ts | 2 +- typescript/src/models/OgrSourceTimeFormat.ts | 2 +- typescript/src/models/OgrSourceTimeFormatAuto.ts | 2 +- typescript/src/models/OgrSourceTimeFormatCustom.ts | 2 +- .../src/models/OgrSourceTimeFormatUnixTimeStamp.ts | 2 +- typescript/src/models/OperatorQuota.ts | 2 +- typescript/src/models/OrderBy.ts | 2 +- typescript/src/models/PaletteColorizer.ts | 2 +- typescript/src/models/Permission.ts | 2 +- typescript/src/models/PermissionListOptions.ts | 2 +- typescript/src/models/PermissionListing.ts | 2 +- typescript/src/models/PermissionRequest.ts | 2 +- typescript/src/models/Plot.ts | 2 +- typescript/src/models/PlotOutputFormat.ts | 2 +- typescript/src/models/PlotQueryRectangle.ts | 2 +- typescript/src/models/PlotResultDescriptor.ts | 2 +- typescript/src/models/PlotUpdate.ts | 2 +- typescript/src/models/PointSymbology.ts | 2 +- typescript/src/models/PolygonSymbology.ts | 2 +- typescript/src/models/Project.ts | 2 +- typescript/src/models/ProjectLayer.ts | 2 +- typescript/src/models/ProjectListing.ts | 2 +- typescript/src/models/ProjectResource.ts | 2 +- typescript/src/models/ProjectUpdateToken.ts | 2 +- typescript/src/models/ProjectVersion.ts | 2 +- typescript/src/models/Provenance.ts | 2 +- typescript/src/models/ProvenanceEntry.ts | 2 +- typescript/src/models/ProvenanceOutput.ts | 2 +- typescript/src/models/Provenances.ts | 2 +- typescript/src/models/ProviderCapabilities.ts | 2 +- typescript/src/models/ProviderLayerCollectionId.ts | 2 +- typescript/src/models/ProviderLayerId.ts | 2 +- typescript/src/models/Quota.ts | 2 +- typescript/src/models/RasterBandDescriptor.ts | 2 +- typescript/src/models/RasterColorizer.ts | 2 +- typescript/src/models/RasterDataType.ts | 2 +- typescript/src/models/RasterDatasetFromWorkflow.ts | 2 +- .../src/models/RasterDatasetFromWorkflowResult.ts | 2 +- typescript/src/models/RasterPropertiesEntryType.ts | 2 +- typescript/src/models/RasterPropertiesKey.ts | 2 +- typescript/src/models/RasterQueryRectangle.ts | 2 +- typescript/src/models/RasterResultDescriptor.ts | 2 +- .../src/models/RasterStreamWebsocketResultType.ts | 2 +- typescript/src/models/RasterSymbology.ts | 2 +- typescript/src/models/Resource.ts | 2 +- typescript/src/models/ResourceId.ts | 2 +- typescript/src/models/ResourceIdDatasetId.ts | 2 +- typescript/src/models/ResourceIdLayer.ts | 2 +- typescript/src/models/ResourceIdLayerCollection.ts | 2 +- typescript/src/models/ResourceIdMlModel.ts | 2 +- typescript/src/models/ResourceIdProject.ts | 2 +- typescript/src/models/Role.ts | 2 +- typescript/src/models/RoleDescription.ts | 2 +- typescript/src/models/STRectangle.ts | 2 +- typescript/src/models/SearchCapabilities.ts | 2 +- typescript/src/models/SearchType.ts | 2 +- typescript/src/models/SearchTypes.ts | 2 +- typescript/src/models/ServerInfo.ts | 2 +- typescript/src/models/SingleBandRasterColorizer.ts | 2 +- typescript/src/models/SpatialPartition2D.ts | 2 +- typescript/src/models/SpatialReferenceAuthority.ts | 2 +- typescript/src/models/SpatialReferenceSpecification.ts | 2 +- typescript/src/models/SpatialResolution.ts | 2 +- typescript/src/models/StaticNumberParam.ts | 2 +- typescript/src/models/StrokeParam.ts | 2 +- typescript/src/models/SuggestMetaData.ts | 2 +- typescript/src/models/Symbology.ts | 2 +- typescript/src/models/TaskAbortOptions.ts | 2 +- typescript/src/models/TaskFilter.ts | 2 +- typescript/src/models/TaskListOptions.ts | 2 +- typescript/src/models/TaskResponse.ts | 2 +- typescript/src/models/TaskStatus.ts | 2 +- typescript/src/models/TaskStatusAborted.ts | 2 +- typescript/src/models/TaskStatusCompleted.ts | 2 +- typescript/src/models/TaskStatusFailed.ts | 2 +- typescript/src/models/TaskStatusRunning.ts | 2 +- typescript/src/models/TaskStatusWithId.ts | 2 +- typescript/src/models/TextSymbology.ts | 2 +- typescript/src/models/TimeGranularity.ts | 2 +- typescript/src/models/TimeInterval.ts | 2 +- typescript/src/models/TimeReference.ts | 2 +- typescript/src/models/TimeStep.ts | 2 +- typescript/src/models/TypedGeometry.ts | 2 +- typescript/src/models/TypedGeometryOneOf.ts | 2 +- typescript/src/models/TypedGeometryOneOf1.ts | 2 +- typescript/src/models/TypedGeometryOneOf2.ts | 2 +- typescript/src/models/TypedGeometryOneOf3.ts | 2 +- typescript/src/models/TypedOperator.ts | 2 +- typescript/src/models/TypedOperatorOperator.ts | 2 +- typescript/src/models/TypedPlotResultDescriptor.ts | 2 +- typescript/src/models/TypedRasterResultDescriptor.ts | 2 +- typescript/src/models/TypedResultDescriptor.ts | 2 +- typescript/src/models/TypedVectorResultDescriptor.ts | 2 +- typescript/src/models/UnitlessMeasurement.ts | 2 +- typescript/src/models/UnixTimeStampType.ts | 2 +- typescript/src/models/UpdateDataset.ts | 2 +- typescript/src/models/UpdateLayer.ts | 2 +- typescript/src/models/UpdateLayerCollection.ts | 2 +- typescript/src/models/UpdateProject.ts | 2 +- typescript/src/models/UpdateQuota.ts | 2 +- typescript/src/models/UploadFileLayersResponse.ts | 2 +- typescript/src/models/UploadFilesResponse.ts | 2 +- typescript/src/models/UsageSummaryGranularity.ts | 2 +- typescript/src/models/UserCredentials.ts | 2 +- typescript/src/models/UserInfo.ts | 2 +- typescript/src/models/UserRegistration.ts | 2 +- typescript/src/models/UserSession.ts | 2 +- typescript/src/models/VectorColumnInfo.ts | 2 +- typescript/src/models/VectorDataType.ts | 2 +- typescript/src/models/VectorQueryRectangle.ts | 2 +- typescript/src/models/VectorResultDescriptor.ts | 2 +- typescript/src/models/Volume.ts | 2 +- typescript/src/models/VolumeFileLayersResponse.ts | 2 +- typescript/src/models/WcsBoundingbox.ts | 2 +- typescript/src/models/WcsService.ts | 2 +- typescript/src/models/WcsVersion.ts | 2 +- typescript/src/models/WfsService.ts | 2 +- typescript/src/models/WfsVersion.ts | 2 +- typescript/src/models/WmsService.ts | 2 +- typescript/src/models/WmsVersion.ts | 2 +- typescript/src/models/Workflow.ts | 2 +- typescript/src/models/WrappedPlotOutput.ts | 2 +- typescript/src/runtime.ts | 2 +- 1680 files changed, 1702 insertions(+), 1702 deletions(-) diff --git a/.generation/input/openapi.json b/.generation/input/openapi.json index 614071f9..45fd4335 100644 --- a/.generation/input/openapi.json +++ b/.generation/input/openapi.json @@ -1,7 +1,7 @@ { "openapi": "3.0.3", "info": { - "title": "Geo Engine Pro API", + "title": "Geo Engine API", "description": "", "contact": { "name": "Geo Engine Developers", @@ -5911,7 +5911,7 @@ "type": "object", "required": [ "timestamp", - "dataset", + "data", "count" ], "properties": { @@ -5920,7 +5920,7 @@ "format": "int64", "minimum": 0 }, - "dataset": { + "data": { "type": "string" }, "timestamp": { diff --git a/python/geoengine_openapi_client/__init__.py b/python/geoengine_openapi_client/__init__.py index 37665373..ed558b52 100644 --- a/python/geoengine_openapi_client/__init__.py +++ b/python/geoengine_openapi_client/__init__.py @@ -3,7 +3,7 @@ # flake8: noqa """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/datasets_api.py b/python/geoengine_openapi_client/api/datasets_api.py index cda8caee..9d8e56bc 100644 --- a/python/geoengine_openapi_client/api/datasets_api.py +++ b/python/geoengine_openapi_client/api/datasets_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/general_api.py b/python/geoengine_openapi_client/api/general_api.py index 2b826d18..3d0a0f88 100644 --- a/python/geoengine_openapi_client/api/general_api.py +++ b/python/geoengine_openapi_client/api/general_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/layers_api.py b/python/geoengine_openapi_client/api/layers_api.py index 52a815ce..1d4668de 100644 --- a/python/geoengine_openapi_client/api/layers_api.py +++ b/python/geoengine_openapi_client/api/layers_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/ml_api.py b/python/geoengine_openapi_client/api/ml_api.py index a4a12254..e9aeabb8 100644 --- a/python/geoengine_openapi_client/api/ml_api.py +++ b/python/geoengine_openapi_client/api/ml_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/ogcwcs_api.py b/python/geoengine_openapi_client/api/ogcwcs_api.py index 7f4ee5db..b968e241 100644 --- a/python/geoengine_openapi_client/api/ogcwcs_api.py +++ b/python/geoengine_openapi_client/api/ogcwcs_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/ogcwfs_api.py b/python/geoengine_openapi_client/api/ogcwfs_api.py index 34defe0c..08c98e08 100644 --- a/python/geoengine_openapi_client/api/ogcwfs_api.py +++ b/python/geoengine_openapi_client/api/ogcwfs_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/ogcwms_api.py b/python/geoengine_openapi_client/api/ogcwms_api.py index a6e7e532..5c2e343a 100644 --- a/python/geoengine_openapi_client/api/ogcwms_api.py +++ b/python/geoengine_openapi_client/api/ogcwms_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/permissions_api.py b/python/geoengine_openapi_client/api/permissions_api.py index 9556dfe9..1ed22602 100644 --- a/python/geoengine_openapi_client/api/permissions_api.py +++ b/python/geoengine_openapi_client/api/permissions_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/plots_api.py b/python/geoengine_openapi_client/api/plots_api.py index bbcd1693..36189e66 100644 --- a/python/geoengine_openapi_client/api/plots_api.py +++ b/python/geoengine_openapi_client/api/plots_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/projects_api.py b/python/geoengine_openapi_client/api/projects_api.py index 08577428..99ed0a52 100644 --- a/python/geoengine_openapi_client/api/projects_api.py +++ b/python/geoengine_openapi_client/api/projects_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/session_api.py b/python/geoengine_openapi_client/api/session_api.py index 9bacc163..f594533d 100644 --- a/python/geoengine_openapi_client/api/session_api.py +++ b/python/geoengine_openapi_client/api/session_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/spatial_references_api.py b/python/geoengine_openapi_client/api/spatial_references_api.py index 51139c13..c7fbff38 100644 --- a/python/geoengine_openapi_client/api/spatial_references_api.py +++ b/python/geoengine_openapi_client/api/spatial_references_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/tasks_api.py b/python/geoengine_openapi_client/api/tasks_api.py index 878ca17d..0bef6cd6 100644 --- a/python/geoengine_openapi_client/api/tasks_api.py +++ b/python/geoengine_openapi_client/api/tasks_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/uploads_api.py b/python/geoengine_openapi_client/api/uploads_api.py index b540f982..58a5720a 100644 --- a/python/geoengine_openapi_client/api/uploads_api.py +++ b/python/geoengine_openapi_client/api/uploads_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/user_api.py b/python/geoengine_openapi_client/api/user_api.py index e758847a..a16d9637 100644 --- a/python/geoengine_openapi_client/api/user_api.py +++ b/python/geoengine_openapi_client/api/user_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api/workflows_api.py b/python/geoengine_openapi_client/api/workflows_api.py index 92bfa183..c59d6eaf 100644 --- a/python/geoengine_openapi_client/api/workflows_api.py +++ b/python/geoengine_openapi_client/api/workflows_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/api_client.py b/python/geoengine_openapi_client/api_client.py index 87cf860e..3ba41464 100644 --- a/python/geoengine_openapi_client/api_client.py +++ b/python/geoengine_openapi_client/api_client.py @@ -1,6 +1,6 @@ """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/configuration.py b/python/geoengine_openapi_client/configuration.py index 34d6a6dc..7c9e80b5 100644 --- a/python/geoengine_openapi_client/configuration.py +++ b/python/geoengine_openapi_client/configuration.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/exceptions.py b/python/geoengine_openapi_client/exceptions.py index b2a3e523..0bfb70c2 100644 --- a/python/geoengine_openapi_client/exceptions.py +++ b/python/geoengine_openapi_client/exceptions.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/__init__.py b/python/geoengine_openapi_client/models/__init__.py index 81d963c0..bb4e4e28 100644 --- a/python/geoengine_openapi_client/models/__init__.py +++ b/python/geoengine_openapi_client/models/__init__.py @@ -2,7 +2,7 @@ # flake8: noqa """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/add_collection200_response.py b/python/geoengine_openapi_client/models/add_collection200_response.py index 871192ff..28749996 100644 --- a/python/geoengine_openapi_client/models/add_collection200_response.py +++ b/python/geoengine_openapi_client/models/add_collection200_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/add_dataset.py b/python/geoengine_openapi_client/models/add_dataset.py index a750d356..8bafb4d5 100644 --- a/python/geoengine_openapi_client/models/add_dataset.py +++ b/python/geoengine_openapi_client/models/add_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/add_layer.py b/python/geoengine_openapi_client/models/add_layer.py index 139c0c83..8a2d48fc 100644 --- a/python/geoengine_openapi_client/models/add_layer.py +++ b/python/geoengine_openapi_client/models/add_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/add_layer_collection.py b/python/geoengine_openapi_client/models/add_layer_collection.py index a443f8f6..0d8009c8 100644 --- a/python/geoengine_openapi_client/models/add_layer_collection.py +++ b/python/geoengine_openapi_client/models/add_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/add_role.py b/python/geoengine_openapi_client/models/add_role.py index 5af4c613..eab22528 100644 --- a/python/geoengine_openapi_client/models/add_role.py +++ b/python/geoengine_openapi_client/models/add_role.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/auth_code_request_url.py b/python/geoengine_openapi_client/models/auth_code_request_url.py index 88fcb749..0e93ad71 100644 --- a/python/geoengine_openapi_client/models/auth_code_request_url.py +++ b/python/geoengine_openapi_client/models/auth_code_request_url.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/auth_code_response.py b/python/geoengine_openapi_client/models/auth_code_response.py index fe307ee8..3834ea0e 100644 --- a/python/geoengine_openapi_client/models/auth_code_response.py +++ b/python/geoengine_openapi_client/models/auth_code_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/auto_create_dataset.py b/python/geoengine_openapi_client/models/auto_create_dataset.py index ce91045f..565f698a 100644 --- a/python/geoengine_openapi_client/models/auto_create_dataset.py +++ b/python/geoengine_openapi_client/models/auto_create_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/axis_order.py b/python/geoengine_openapi_client/models/axis_order.py index 13d39cf9..b7ca6deb 100644 --- a/python/geoengine_openapi_client/models/axis_order.py +++ b/python/geoengine_openapi_client/models/axis_order.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/bounding_box2_d.py b/python/geoengine_openapi_client/models/bounding_box2_d.py index d195ee47..281c51b9 100644 --- a/python/geoengine_openapi_client/models/bounding_box2_d.py +++ b/python/geoengine_openapi_client/models/bounding_box2_d.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/breakpoint.py b/python/geoengine_openapi_client/models/breakpoint.py index 889ff30f..da4df929 100644 --- a/python/geoengine_openapi_client/models/breakpoint.py +++ b/python/geoengine_openapi_client/models/breakpoint.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/classification_measurement.py b/python/geoengine_openapi_client/models/classification_measurement.py index 499b5840..1fdf5188 100644 --- a/python/geoengine_openapi_client/models/classification_measurement.py +++ b/python/geoengine_openapi_client/models/classification_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/collection_item.py b/python/geoengine_openapi_client/models/collection_item.py index c9f8de7a..00c2c6f8 100644 --- a/python/geoengine_openapi_client/models/collection_item.py +++ b/python/geoengine_openapi_client/models/collection_item.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/collection_type.py b/python/geoengine_openapi_client/models/collection_type.py index d5567918..5e3f580b 100644 --- a/python/geoengine_openapi_client/models/collection_type.py +++ b/python/geoengine_openapi_client/models/collection_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/color_param.py b/python/geoengine_openapi_client/models/color_param.py index d7bdf7c9..e7277bc5 100644 --- a/python/geoengine_openapi_client/models/color_param.py +++ b/python/geoengine_openapi_client/models/color_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/color_param_static.py b/python/geoengine_openapi_client/models/color_param_static.py index cfaf113c..810a351a 100644 --- a/python/geoengine_openapi_client/models/color_param_static.py +++ b/python/geoengine_openapi_client/models/color_param_static.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/colorizer.py b/python/geoengine_openapi_client/models/colorizer.py index f000a6f6..17612998 100644 --- a/python/geoengine_openapi_client/models/colorizer.py +++ b/python/geoengine_openapi_client/models/colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/computation_quota.py b/python/geoengine_openapi_client/models/computation_quota.py index 501eb159..faddf435 100644 --- a/python/geoengine_openapi_client/models/computation_quota.py +++ b/python/geoengine_openapi_client/models/computation_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/continuous_measurement.py b/python/geoengine_openapi_client/models/continuous_measurement.py index 9faf8027..c3182066 100644 --- a/python/geoengine_openapi_client/models/continuous_measurement.py +++ b/python/geoengine_openapi_client/models/continuous_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/coordinate2_d.py b/python/geoengine_openapi_client/models/coordinate2_d.py index 00f52cb0..0a425ac8 100644 --- a/python/geoengine_openapi_client/models/coordinate2_d.py +++ b/python/geoengine_openapi_client/models/coordinate2_d.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/create_dataset.py b/python/geoengine_openapi_client/models/create_dataset.py index f490b46e..59755cd0 100644 --- a/python/geoengine_openapi_client/models/create_dataset.py +++ b/python/geoengine_openapi_client/models/create_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/create_dataset_handler200_response.py b/python/geoengine_openapi_client/models/create_dataset_handler200_response.py index ab5e9551..5cf44243 100644 --- a/python/geoengine_openapi_client/models/create_dataset_handler200_response.py +++ b/python/geoengine_openapi_client/models/create_dataset_handler200_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/create_project.py b/python/geoengine_openapi_client/models/create_project.py index b6c44d8f..0a3cf702 100644 --- a/python/geoengine_openapi_client/models/create_project.py +++ b/python/geoengine_openapi_client/models/create_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/csv_header.py b/python/geoengine_openapi_client/models/csv_header.py index ceb21fdf..c4541a8e 100644 --- a/python/geoengine_openapi_client/models/csv_header.py +++ b/python/geoengine_openapi_client/models/csv_header.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/data_id.py b/python/geoengine_openapi_client/models/data_id.py index 2f1f9ddd..10d22660 100644 --- a/python/geoengine_openapi_client/models/data_id.py +++ b/python/geoengine_openapi_client/models/data_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/data_path.py b/python/geoengine_openapi_client/models/data_path.py index ac7491cb..7c575994 100644 --- a/python/geoengine_openapi_client/models/data_path.py +++ b/python/geoengine_openapi_client/models/data_path.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/data_path_one_of.py b/python/geoengine_openapi_client/models/data_path_one_of.py index 36d2c8b1..78b42641 100644 --- a/python/geoengine_openapi_client/models/data_path_one_of.py +++ b/python/geoengine_openapi_client/models/data_path_one_of.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/data_path_one_of1.py b/python/geoengine_openapi_client/models/data_path_one_of1.py index 00d54545..ec5d149d 100644 --- a/python/geoengine_openapi_client/models/data_path_one_of1.py +++ b/python/geoengine_openapi_client/models/data_path_one_of1.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/data_usage.py b/python/geoengine_openapi_client/models/data_usage.py index 80d23db0..af2fa72b 100644 --- a/python/geoengine_openapi_client/models/data_usage.py +++ b/python/geoengine_openapi_client/models/data_usage.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/data_usage_summary.py b/python/geoengine_openapi_client/models/data_usage_summary.py index 77eecb84..a2abbbd2 100644 --- a/python/geoengine_openapi_client/models/data_usage_summary.py +++ b/python/geoengine_openapi_client/models/data_usage_summary.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) @@ -27,9 +27,9 @@ class DataUsageSummary(BaseModel): DataUsageSummary """ count: conint(strict=True, ge=0) = Field(...) - dataset: StrictStr = Field(...) + data: StrictStr = Field(...) timestamp: datetime = Field(...) - __properties = ["count", "dataset", "timestamp"] + __properties = ["count", "data", "timestamp"] class Config: """Pydantic configuration""" @@ -68,7 +68,7 @@ def from_dict(cls, obj: dict) -> DataUsageSummary: _obj = DataUsageSummary.parse_obj({ "count": obj.get("count"), - "dataset": obj.get("dataset"), + "data": obj.get("data"), "timestamp": obj.get("timestamp") }) return _obj diff --git a/python/geoengine_openapi_client/models/dataset.py b/python/geoengine_openapi_client/models/dataset.py index 3d6d3924..f93cf589 100644 --- a/python/geoengine_openapi_client/models/dataset.py +++ b/python/geoengine_openapi_client/models/dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/dataset_definition.py b/python/geoengine_openapi_client/models/dataset_definition.py index 87a1a0ba..a831d24f 100644 --- a/python/geoengine_openapi_client/models/dataset_definition.py +++ b/python/geoengine_openapi_client/models/dataset_definition.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/dataset_listing.py b/python/geoengine_openapi_client/models/dataset_listing.py index 221d5d25..7a81474e 100644 --- a/python/geoengine_openapi_client/models/dataset_listing.py +++ b/python/geoengine_openapi_client/models/dataset_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/dataset_resource.py b/python/geoengine_openapi_client/models/dataset_resource.py index 647d814d..77140160 100644 --- a/python/geoengine_openapi_client/models/dataset_resource.py +++ b/python/geoengine_openapi_client/models/dataset_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/date_time.py b/python/geoengine_openapi_client/models/date_time.py index 139266aa..5176aaf3 100644 --- a/python/geoengine_openapi_client/models/date_time.py +++ b/python/geoengine_openapi_client/models/date_time.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/derived_color.py b/python/geoengine_openapi_client/models/derived_color.py index 0ab82c6b..cc0b7061 100644 --- a/python/geoengine_openapi_client/models/derived_color.py +++ b/python/geoengine_openapi_client/models/derived_color.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/derived_number.py b/python/geoengine_openapi_client/models/derived_number.py index 68c1f528..059d8f45 100644 --- a/python/geoengine_openapi_client/models/derived_number.py +++ b/python/geoengine_openapi_client/models/derived_number.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/describe_coverage_request.py b/python/geoengine_openapi_client/models/describe_coverage_request.py index 2608b5a8..91a0efb6 100644 --- a/python/geoengine_openapi_client/models/describe_coverage_request.py +++ b/python/geoengine_openapi_client/models/describe_coverage_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/error_response.py b/python/geoengine_openapi_client/models/error_response.py index 533b430c..cfe5386e 100644 --- a/python/geoengine_openapi_client/models/error_response.py +++ b/python/geoengine_openapi_client/models/error_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/external_data_id.py b/python/geoengine_openapi_client/models/external_data_id.py index 9b7cbec8..e8d6cc8e 100644 --- a/python/geoengine_openapi_client/models/external_data_id.py +++ b/python/geoengine_openapi_client/models/external_data_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/feature_data_type.py b/python/geoengine_openapi_client/models/feature_data_type.py index c86518c1..3e52f265 100644 --- a/python/geoengine_openapi_client/models/feature_data_type.py +++ b/python/geoengine_openapi_client/models/feature_data_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/file_not_found_handling.py b/python/geoengine_openapi_client/models/file_not_found_handling.py index 485e6cbf..e1da61c4 100644 --- a/python/geoengine_openapi_client/models/file_not_found_handling.py +++ b/python/geoengine_openapi_client/models/file_not_found_handling.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/format_specifics.py b/python/geoengine_openapi_client/models/format_specifics.py index 98ff107d..4fee84d7 100644 --- a/python/geoengine_openapi_client/models/format_specifics.py +++ b/python/geoengine_openapi_client/models/format_specifics.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/format_specifics_one_of.py b/python/geoengine_openapi_client/models/format_specifics_one_of.py index 0cc41cc1..d5964ece 100644 --- a/python/geoengine_openapi_client/models/format_specifics_one_of.py +++ b/python/geoengine_openapi_client/models/format_specifics_one_of.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/format_specifics_one_of_csv.py b/python/geoengine_openapi_client/models/format_specifics_one_of_csv.py index 25f26dea..d450b400 100644 --- a/python/geoengine_openapi_client/models/format_specifics_one_of_csv.py +++ b/python/geoengine_openapi_client/models/format_specifics_one_of_csv.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_dataset_geo_transform.py b/python/geoengine_openapi_client/models/gdal_dataset_geo_transform.py index 76810f5e..65587959 100644 --- a/python/geoengine_openapi_client/models/gdal_dataset_geo_transform.py +++ b/python/geoengine_openapi_client/models/gdal_dataset_geo_transform.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_dataset_parameters.py b/python/geoengine_openapi_client/models/gdal_dataset_parameters.py index 720d5570..793f5f0b 100644 --- a/python/geoengine_openapi_client/models/gdal_dataset_parameters.py +++ b/python/geoengine_openapi_client/models/gdal_dataset_parameters.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_loading_info_temporal_slice.py b/python/geoengine_openapi_client/models/gdal_loading_info_temporal_slice.py index 6a105e4d..df33199e 100644 --- a/python/geoengine_openapi_client/models/gdal_loading_info_temporal_slice.py +++ b/python/geoengine_openapi_client/models/gdal_loading_info_temporal_slice.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_meta_data_list.py b/python/geoengine_openapi_client/models/gdal_meta_data_list.py index 9c99de15..7ffad540 100644 --- a/python/geoengine_openapi_client/models/gdal_meta_data_list.py +++ b/python/geoengine_openapi_client/models/gdal_meta_data_list.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_meta_data_regular.py b/python/geoengine_openapi_client/models/gdal_meta_data_regular.py index c3ecee08..428c14bb 100644 --- a/python/geoengine_openapi_client/models/gdal_meta_data_regular.py +++ b/python/geoengine_openapi_client/models/gdal_meta_data_regular.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_meta_data_static.py b/python/geoengine_openapi_client/models/gdal_meta_data_static.py index 34fff2d1..cfe6ebdc 100644 --- a/python/geoengine_openapi_client/models/gdal_meta_data_static.py +++ b/python/geoengine_openapi_client/models/gdal_meta_data_static.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_metadata_mapping.py b/python/geoengine_openapi_client/models/gdal_metadata_mapping.py index fa0e6a10..df3642db 100644 --- a/python/geoengine_openapi_client/models/gdal_metadata_mapping.py +++ b/python/geoengine_openapi_client/models/gdal_metadata_mapping.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_metadata_net_cdf_cf.py b/python/geoengine_openapi_client/models/gdal_metadata_net_cdf_cf.py index d8ecd24e..38efe1eb 100644 --- a/python/geoengine_openapi_client/models/gdal_metadata_net_cdf_cf.py +++ b/python/geoengine_openapi_client/models/gdal_metadata_net_cdf_cf.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/gdal_source_time_placeholder.py b/python/geoengine_openapi_client/models/gdal_source_time_placeholder.py index f9c95977..47cabb16 100644 --- a/python/geoengine_openapi_client/models/gdal_source_time_placeholder.py +++ b/python/geoengine_openapi_client/models/gdal_source_time_placeholder.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/geo_json.py b/python/geoengine_openapi_client/models/geo_json.py index 8cfeaff1..ff9f114c 100644 --- a/python/geoengine_openapi_client/models/geo_json.py +++ b/python/geoengine_openapi_client/models/geo_json.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_capabilities_format.py b/python/geoengine_openapi_client/models/get_capabilities_format.py index 99431cd3..9061c98c 100644 --- a/python/geoengine_openapi_client/models/get_capabilities_format.py +++ b/python/geoengine_openapi_client/models/get_capabilities_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_capabilities_request.py b/python/geoengine_openapi_client/models/get_capabilities_request.py index abde8b9e..9c101416 100644 --- a/python/geoengine_openapi_client/models/get_capabilities_request.py +++ b/python/geoengine_openapi_client/models/get_capabilities_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_coverage_format.py b/python/geoengine_openapi_client/models/get_coverage_format.py index e72c71a7..cb706fe4 100644 --- a/python/geoengine_openapi_client/models/get_coverage_format.py +++ b/python/geoengine_openapi_client/models/get_coverage_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_coverage_request.py b/python/geoengine_openapi_client/models/get_coverage_request.py index a3583717..7af14cdd 100644 --- a/python/geoengine_openapi_client/models/get_coverage_request.py +++ b/python/geoengine_openapi_client/models/get_coverage_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_feature_request.py b/python/geoengine_openapi_client/models/get_feature_request.py index 4a9d92d5..c0bcbae7 100644 --- a/python/geoengine_openapi_client/models/get_feature_request.py +++ b/python/geoengine_openapi_client/models/get_feature_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_legend_graphic_request.py b/python/geoengine_openapi_client/models/get_legend_graphic_request.py index 1335d3ec..4a1a29b9 100644 --- a/python/geoengine_openapi_client/models/get_legend_graphic_request.py +++ b/python/geoengine_openapi_client/models/get_legend_graphic_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_map_exception_format.py b/python/geoengine_openapi_client/models/get_map_exception_format.py index e9fe5426..3a27ba95 100644 --- a/python/geoengine_openapi_client/models/get_map_exception_format.py +++ b/python/geoengine_openapi_client/models/get_map_exception_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_map_format.py b/python/geoengine_openapi_client/models/get_map_format.py index 6869049b..93434f6f 100644 --- a/python/geoengine_openapi_client/models/get_map_format.py +++ b/python/geoengine_openapi_client/models/get_map_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/get_map_request.py b/python/geoengine_openapi_client/models/get_map_request.py index 6e3bb502..2411dcf5 100644 --- a/python/geoengine_openapi_client/models/get_map_request.py +++ b/python/geoengine_openapi_client/models/get_map_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/internal_data_id.py b/python/geoengine_openapi_client/models/internal_data_id.py index 6bd43901..c25ec397 100644 --- a/python/geoengine_openapi_client/models/internal_data_id.py +++ b/python/geoengine_openapi_client/models/internal_data_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer.py b/python/geoengine_openapi_client/models/layer.py index 77edaa32..2a0f0480 100644 --- a/python/geoengine_openapi_client/models/layer.py +++ b/python/geoengine_openapi_client/models/layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_collection.py b/python/geoengine_openapi_client/models/layer_collection.py index 8f20f599..2e81d393 100644 --- a/python/geoengine_openapi_client/models/layer_collection.py +++ b/python/geoengine_openapi_client/models/layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_collection_listing.py b/python/geoengine_openapi_client/models/layer_collection_listing.py index 2d2457b5..295fa325 100644 --- a/python/geoengine_openapi_client/models/layer_collection_listing.py +++ b/python/geoengine_openapi_client/models/layer_collection_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_collection_resource.py b/python/geoengine_openapi_client/models/layer_collection_resource.py index 3270f496..7c710f88 100644 --- a/python/geoengine_openapi_client/models/layer_collection_resource.py +++ b/python/geoengine_openapi_client/models/layer_collection_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_listing.py b/python/geoengine_openapi_client/models/layer_listing.py index 25ddaf8e..7add001c 100644 --- a/python/geoengine_openapi_client/models/layer_listing.py +++ b/python/geoengine_openapi_client/models/layer_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_resource.py b/python/geoengine_openapi_client/models/layer_resource.py index 2f0abb3b..ebdb399b 100644 --- a/python/geoengine_openapi_client/models/layer_resource.py +++ b/python/geoengine_openapi_client/models/layer_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_update.py b/python/geoengine_openapi_client/models/layer_update.py index a7d6f467..689a360e 100644 --- a/python/geoengine_openapi_client/models/layer_update.py +++ b/python/geoengine_openapi_client/models/layer_update.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/layer_visibility.py b/python/geoengine_openapi_client/models/layer_visibility.py index 26f5725f..4401c3f8 100644 --- a/python/geoengine_openapi_client/models/layer_visibility.py +++ b/python/geoengine_openapi_client/models/layer_visibility.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/line_symbology.py b/python/geoengine_openapi_client/models/line_symbology.py index 9d272b9a..cc72c137 100644 --- a/python/geoengine_openapi_client/models/line_symbology.py +++ b/python/geoengine_openapi_client/models/line_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/linear_gradient.py b/python/geoengine_openapi_client/models/linear_gradient.py index e2107f8f..69fb7431 100644 --- a/python/geoengine_openapi_client/models/linear_gradient.py +++ b/python/geoengine_openapi_client/models/linear_gradient.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/logarithmic_gradient.py b/python/geoengine_openapi_client/models/logarithmic_gradient.py index f8708ef4..cb4737eb 100644 --- a/python/geoengine_openapi_client/models/logarithmic_gradient.py +++ b/python/geoengine_openapi_client/models/logarithmic_gradient.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/measurement.py b/python/geoengine_openapi_client/models/measurement.py index db9865f0..e2dfdbf9 100644 --- a/python/geoengine_openapi_client/models/measurement.py +++ b/python/geoengine_openapi_client/models/measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/meta_data_definition.py b/python/geoengine_openapi_client/models/meta_data_definition.py index faa765ec..46ecccae 100644 --- a/python/geoengine_openapi_client/models/meta_data_definition.py +++ b/python/geoengine_openapi_client/models/meta_data_definition.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/meta_data_suggestion.py b/python/geoengine_openapi_client/models/meta_data_suggestion.py index 8f63c3a1..e75453ba 100644 --- a/python/geoengine_openapi_client/models/meta_data_suggestion.py +++ b/python/geoengine_openapi_client/models/meta_data_suggestion.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ml_model.py b/python/geoengine_openapi_client/models/ml_model.py index da2dfd28..f4b3093d 100644 --- a/python/geoengine_openapi_client/models/ml_model.py +++ b/python/geoengine_openapi_client/models/ml_model.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ml_model_metadata.py b/python/geoengine_openapi_client/models/ml_model_metadata.py index 44254b96..308a5052 100644 --- a/python/geoengine_openapi_client/models/ml_model_metadata.py +++ b/python/geoengine_openapi_client/models/ml_model_metadata.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/mock_dataset_data_source_loading_info.py b/python/geoengine_openapi_client/models/mock_dataset_data_source_loading_info.py index 08a28746..b6763f75 100644 --- a/python/geoengine_openapi_client/models/mock_dataset_data_source_loading_info.py +++ b/python/geoengine_openapi_client/models/mock_dataset_data_source_loading_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/mock_meta_data.py b/python/geoengine_openapi_client/models/mock_meta_data.py index 503911d0..7fdcf25c 100644 --- a/python/geoengine_openapi_client/models/mock_meta_data.py +++ b/python/geoengine_openapi_client/models/mock_meta_data.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/multi_band_raster_colorizer.py b/python/geoengine_openapi_client/models/multi_band_raster_colorizer.py index f7deff3a..873c4f3f 100644 --- a/python/geoengine_openapi_client/models/multi_band_raster_colorizer.py +++ b/python/geoengine_openapi_client/models/multi_band_raster_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/multi_line_string.py b/python/geoengine_openapi_client/models/multi_line_string.py index 95d3838f..79686dde 100644 --- a/python/geoengine_openapi_client/models/multi_line_string.py +++ b/python/geoengine_openapi_client/models/multi_line_string.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/multi_point.py b/python/geoengine_openapi_client/models/multi_point.py index 879b9f9d..d16a104b 100644 --- a/python/geoengine_openapi_client/models/multi_point.py +++ b/python/geoengine_openapi_client/models/multi_point.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/multi_polygon.py b/python/geoengine_openapi_client/models/multi_polygon.py index e4fd3246..0d92d176 100644 --- a/python/geoengine_openapi_client/models/multi_polygon.py +++ b/python/geoengine_openapi_client/models/multi_polygon.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/number_param.py b/python/geoengine_openapi_client/models/number_param.py index e92e3056..c68b0869 100644 --- a/python/geoengine_openapi_client/models/number_param.py +++ b/python/geoengine_openapi_client/models/number_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_meta_data.py b/python/geoengine_openapi_client/models/ogr_meta_data.py index 915a5515..273f99b5 100644 --- a/python/geoengine_openapi_client/models/ogr_meta_data.py +++ b/python/geoengine_openapi_client/models/ogr_meta_data.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_column_spec.py b/python/geoengine_openapi_client/models/ogr_source_column_spec.py index f594dd57..6c46d33a 100644 --- a/python/geoengine_openapi_client/models/ogr_source_column_spec.py +++ b/python/geoengine_openapi_client/models/ogr_source_column_spec.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_dataset.py b/python/geoengine_openapi_client/models/ogr_source_dataset.py index 6a90c935..a951f582 100644 --- a/python/geoengine_openapi_client/models/ogr_source_dataset.py +++ b/python/geoengine_openapi_client/models/ogr_source_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type.py b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type.py index 8b1952d5..6521cce2 100644 --- a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type.py +++ b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_none.py b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_none.py index 3eca15d5..776ed4ce 100644 --- a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_none.py +++ b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_none.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start.py b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start.py index cc09690f..bd1ad3fa 100644 --- a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start.py +++ b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_duration.py b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_duration.py index 2862b72f..687ffcd9 100644 --- a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_duration.py +++ b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_duration.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_end.py b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_end.py index 1eb56c96..3e803586 100644 --- a/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_end.py +++ b/python/geoengine_openapi_client/models/ogr_source_dataset_time_type_start_end.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_duration_spec.py b/python/geoengine_openapi_client/models/ogr_source_duration_spec.py index feb48bea..782ba3f5 100644 --- a/python/geoengine_openapi_client/models/ogr_source_duration_spec.py +++ b/python/geoengine_openapi_client/models/ogr_source_duration_spec.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_duration_spec_infinite.py b/python/geoengine_openapi_client/models/ogr_source_duration_spec_infinite.py index d1f4567a..26edaa40 100644 --- a/python/geoengine_openapi_client/models/ogr_source_duration_spec_infinite.py +++ b/python/geoengine_openapi_client/models/ogr_source_duration_spec_infinite.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_duration_spec_value.py b/python/geoengine_openapi_client/models/ogr_source_duration_spec_value.py index a947652a..2644322c 100644 --- a/python/geoengine_openapi_client/models/ogr_source_duration_spec_value.py +++ b/python/geoengine_openapi_client/models/ogr_source_duration_spec_value.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_duration_spec_zero.py b/python/geoengine_openapi_client/models/ogr_source_duration_spec_zero.py index a397f09b..dde6d994 100644 --- a/python/geoengine_openapi_client/models/ogr_source_duration_spec_zero.py +++ b/python/geoengine_openapi_client/models/ogr_source_duration_spec_zero.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_error_spec.py b/python/geoengine_openapi_client/models/ogr_source_error_spec.py index 3206a6c0..41fa1680 100644 --- a/python/geoengine_openapi_client/models/ogr_source_error_spec.py +++ b/python/geoengine_openapi_client/models/ogr_source_error_spec.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_time_format.py b/python/geoengine_openapi_client/models/ogr_source_time_format.py index cfe4dc96..d4cd6672 100644 --- a/python/geoengine_openapi_client/models/ogr_source_time_format.py +++ b/python/geoengine_openapi_client/models/ogr_source_time_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_time_format_auto.py b/python/geoengine_openapi_client/models/ogr_source_time_format_auto.py index 2fc402fe..3695cdff 100644 --- a/python/geoengine_openapi_client/models/ogr_source_time_format_auto.py +++ b/python/geoengine_openapi_client/models/ogr_source_time_format_auto.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_time_format_custom.py b/python/geoengine_openapi_client/models/ogr_source_time_format_custom.py index 7c532e28..dfb9b771 100644 --- a/python/geoengine_openapi_client/models/ogr_source_time_format_custom.py +++ b/python/geoengine_openapi_client/models/ogr_source_time_format_custom.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/ogr_source_time_format_unix_time_stamp.py b/python/geoengine_openapi_client/models/ogr_source_time_format_unix_time_stamp.py index fa92d1ef..8adf76fa 100644 --- a/python/geoengine_openapi_client/models/ogr_source_time_format_unix_time_stamp.py +++ b/python/geoengine_openapi_client/models/ogr_source_time_format_unix_time_stamp.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/operator_quota.py b/python/geoengine_openapi_client/models/operator_quota.py index 89f16161..47f62608 100644 --- a/python/geoengine_openapi_client/models/operator_quota.py +++ b/python/geoengine_openapi_client/models/operator_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/order_by.py b/python/geoengine_openapi_client/models/order_by.py index 0f5c38c1..e6ce7f14 100644 --- a/python/geoengine_openapi_client/models/order_by.py +++ b/python/geoengine_openapi_client/models/order_by.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/palette_colorizer.py b/python/geoengine_openapi_client/models/palette_colorizer.py index c3dbc645..081b5da7 100644 --- a/python/geoengine_openapi_client/models/palette_colorizer.py +++ b/python/geoengine_openapi_client/models/palette_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/permission.py b/python/geoengine_openapi_client/models/permission.py index 9c891c21..9f444bd4 100644 --- a/python/geoengine_openapi_client/models/permission.py +++ b/python/geoengine_openapi_client/models/permission.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/permission_list_options.py b/python/geoengine_openapi_client/models/permission_list_options.py index 3c2698fe..59431ad4 100644 --- a/python/geoengine_openapi_client/models/permission_list_options.py +++ b/python/geoengine_openapi_client/models/permission_list_options.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/permission_listing.py b/python/geoengine_openapi_client/models/permission_listing.py index 1c895d72..3f38cfd2 100644 --- a/python/geoengine_openapi_client/models/permission_listing.py +++ b/python/geoengine_openapi_client/models/permission_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/permission_request.py b/python/geoengine_openapi_client/models/permission_request.py index 04d874ff..9051ee73 100644 --- a/python/geoengine_openapi_client/models/permission_request.py +++ b/python/geoengine_openapi_client/models/permission_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/plot.py b/python/geoengine_openapi_client/models/plot.py index ca253b29..063aeaf4 100644 --- a/python/geoengine_openapi_client/models/plot.py +++ b/python/geoengine_openapi_client/models/plot.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/plot_output_format.py b/python/geoengine_openapi_client/models/plot_output_format.py index c09f3552..74d1cc0f 100644 --- a/python/geoengine_openapi_client/models/plot_output_format.py +++ b/python/geoengine_openapi_client/models/plot_output_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/plot_query_rectangle.py b/python/geoengine_openapi_client/models/plot_query_rectangle.py index de37b876..e56235fd 100644 --- a/python/geoengine_openapi_client/models/plot_query_rectangle.py +++ b/python/geoengine_openapi_client/models/plot_query_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/plot_result_descriptor.py b/python/geoengine_openapi_client/models/plot_result_descriptor.py index 865b5ebd..602055a5 100644 --- a/python/geoengine_openapi_client/models/plot_result_descriptor.py +++ b/python/geoengine_openapi_client/models/plot_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/plot_update.py b/python/geoengine_openapi_client/models/plot_update.py index 7d2f6abf..58097584 100644 --- a/python/geoengine_openapi_client/models/plot_update.py +++ b/python/geoengine_openapi_client/models/plot_update.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/point_symbology.py b/python/geoengine_openapi_client/models/point_symbology.py index 826b62ae..87ac8dd7 100644 --- a/python/geoengine_openapi_client/models/point_symbology.py +++ b/python/geoengine_openapi_client/models/point_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/polygon_symbology.py b/python/geoengine_openapi_client/models/polygon_symbology.py index 40064123..4ddc9bcf 100644 --- a/python/geoengine_openapi_client/models/polygon_symbology.py +++ b/python/geoengine_openapi_client/models/polygon_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/project.py b/python/geoengine_openapi_client/models/project.py index d3ba4644..3bbc26e2 100644 --- a/python/geoengine_openapi_client/models/project.py +++ b/python/geoengine_openapi_client/models/project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/project_layer.py b/python/geoengine_openapi_client/models/project_layer.py index c9621fbb..0fbc1374 100644 --- a/python/geoengine_openapi_client/models/project_layer.py +++ b/python/geoengine_openapi_client/models/project_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/project_listing.py b/python/geoengine_openapi_client/models/project_listing.py index 907afee5..7fd65772 100644 --- a/python/geoengine_openapi_client/models/project_listing.py +++ b/python/geoengine_openapi_client/models/project_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/project_resource.py b/python/geoengine_openapi_client/models/project_resource.py index 4209dbc7..b5503164 100644 --- a/python/geoengine_openapi_client/models/project_resource.py +++ b/python/geoengine_openapi_client/models/project_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/project_update_token.py b/python/geoengine_openapi_client/models/project_update_token.py index 9a0b6ab0..d5c8ec2d 100644 --- a/python/geoengine_openapi_client/models/project_update_token.py +++ b/python/geoengine_openapi_client/models/project_update_token.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/project_version.py b/python/geoengine_openapi_client/models/project_version.py index eae6524e..4c9126f8 100644 --- a/python/geoengine_openapi_client/models/project_version.py +++ b/python/geoengine_openapi_client/models/project_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provenance.py b/python/geoengine_openapi_client/models/provenance.py index b4bac25f..955225ee 100644 --- a/python/geoengine_openapi_client/models/provenance.py +++ b/python/geoengine_openapi_client/models/provenance.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provenance_entry.py b/python/geoengine_openapi_client/models/provenance_entry.py index d07bf705..9dc18f34 100644 --- a/python/geoengine_openapi_client/models/provenance_entry.py +++ b/python/geoengine_openapi_client/models/provenance_entry.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provenance_output.py b/python/geoengine_openapi_client/models/provenance_output.py index ff2318fe..a2853146 100644 --- a/python/geoengine_openapi_client/models/provenance_output.py +++ b/python/geoengine_openapi_client/models/provenance_output.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provenances.py b/python/geoengine_openapi_client/models/provenances.py index 7b5565e3..16ef2a3f 100644 --- a/python/geoengine_openapi_client/models/provenances.py +++ b/python/geoengine_openapi_client/models/provenances.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provider_capabilities.py b/python/geoengine_openapi_client/models/provider_capabilities.py index 6114970c..d4a3836a 100644 --- a/python/geoengine_openapi_client/models/provider_capabilities.py +++ b/python/geoengine_openapi_client/models/provider_capabilities.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provider_layer_collection_id.py b/python/geoengine_openapi_client/models/provider_layer_collection_id.py index f414b172..12f0fad6 100644 --- a/python/geoengine_openapi_client/models/provider_layer_collection_id.py +++ b/python/geoengine_openapi_client/models/provider_layer_collection_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/provider_layer_id.py b/python/geoengine_openapi_client/models/provider_layer_id.py index 70da6216..54a3afe6 100644 --- a/python/geoengine_openapi_client/models/provider_layer_id.py +++ b/python/geoengine_openapi_client/models/provider_layer_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/quota.py b/python/geoengine_openapi_client/models/quota.py index b974b1f7..b3e6880c 100644 --- a/python/geoengine_openapi_client/models/quota.py +++ b/python/geoengine_openapi_client/models/quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_band_descriptor.py b/python/geoengine_openapi_client/models/raster_band_descriptor.py index 34b205fe..2b02ccc9 100644 --- a/python/geoengine_openapi_client/models/raster_band_descriptor.py +++ b/python/geoengine_openapi_client/models/raster_band_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_colorizer.py b/python/geoengine_openapi_client/models/raster_colorizer.py index e20cfbff..e506a151 100644 --- a/python/geoengine_openapi_client/models/raster_colorizer.py +++ b/python/geoengine_openapi_client/models/raster_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_data_type.py b/python/geoengine_openapi_client/models/raster_data_type.py index cded6317..f3ec3610 100644 --- a/python/geoengine_openapi_client/models/raster_data_type.py +++ b/python/geoengine_openapi_client/models/raster_data_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_dataset_from_workflow.py b/python/geoengine_openapi_client/models/raster_dataset_from_workflow.py index bd926fa5..d65b57ce 100644 --- a/python/geoengine_openapi_client/models/raster_dataset_from_workflow.py +++ b/python/geoengine_openapi_client/models/raster_dataset_from_workflow.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_dataset_from_workflow_result.py b/python/geoengine_openapi_client/models/raster_dataset_from_workflow_result.py index 33e02099..cc3f962c 100644 --- a/python/geoengine_openapi_client/models/raster_dataset_from_workflow_result.py +++ b/python/geoengine_openapi_client/models/raster_dataset_from_workflow_result.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_properties_entry_type.py b/python/geoengine_openapi_client/models/raster_properties_entry_type.py index 334b881a..44a49ab9 100644 --- a/python/geoengine_openapi_client/models/raster_properties_entry_type.py +++ b/python/geoengine_openapi_client/models/raster_properties_entry_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_properties_key.py b/python/geoengine_openapi_client/models/raster_properties_key.py index a57e35f3..5d8c235b 100644 --- a/python/geoengine_openapi_client/models/raster_properties_key.py +++ b/python/geoengine_openapi_client/models/raster_properties_key.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_query_rectangle.py b/python/geoengine_openapi_client/models/raster_query_rectangle.py index 4746eb7c..8a72e94c 100644 --- a/python/geoengine_openapi_client/models/raster_query_rectangle.py +++ b/python/geoengine_openapi_client/models/raster_query_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_result_descriptor.py b/python/geoengine_openapi_client/models/raster_result_descriptor.py index 65173eb0..3947a16c 100644 --- a/python/geoengine_openapi_client/models/raster_result_descriptor.py +++ b/python/geoengine_openapi_client/models/raster_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_stream_websocket_result_type.py b/python/geoengine_openapi_client/models/raster_stream_websocket_result_type.py index a6470484..de617a26 100644 --- a/python/geoengine_openapi_client/models/raster_stream_websocket_result_type.py +++ b/python/geoengine_openapi_client/models/raster_stream_websocket_result_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/raster_symbology.py b/python/geoengine_openapi_client/models/raster_symbology.py index bf7d7612..d3b83553 100644 --- a/python/geoengine_openapi_client/models/raster_symbology.py +++ b/python/geoengine_openapi_client/models/raster_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource.py b/python/geoengine_openapi_client/models/resource.py index b376d474..83b109df 100644 --- a/python/geoengine_openapi_client/models/resource.py +++ b/python/geoengine_openapi_client/models/resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource_id.py b/python/geoengine_openapi_client/models/resource_id.py index 62d31924..4ecdc1d6 100644 --- a/python/geoengine_openapi_client/models/resource_id.py +++ b/python/geoengine_openapi_client/models/resource_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource_id_dataset_id.py b/python/geoengine_openapi_client/models/resource_id_dataset_id.py index aecb2eaa..e877e979 100644 --- a/python/geoengine_openapi_client/models/resource_id_dataset_id.py +++ b/python/geoengine_openapi_client/models/resource_id_dataset_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource_id_layer.py b/python/geoengine_openapi_client/models/resource_id_layer.py index ad6d45bc..e2f90be2 100644 --- a/python/geoengine_openapi_client/models/resource_id_layer.py +++ b/python/geoengine_openapi_client/models/resource_id_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource_id_layer_collection.py b/python/geoengine_openapi_client/models/resource_id_layer_collection.py index 61a104b4..e0097de3 100644 --- a/python/geoengine_openapi_client/models/resource_id_layer_collection.py +++ b/python/geoengine_openapi_client/models/resource_id_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource_id_ml_model.py b/python/geoengine_openapi_client/models/resource_id_ml_model.py index 745e33ff..065318dc 100644 --- a/python/geoengine_openapi_client/models/resource_id_ml_model.py +++ b/python/geoengine_openapi_client/models/resource_id_ml_model.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/resource_id_project.py b/python/geoengine_openapi_client/models/resource_id_project.py index 52a3ab3d..76a5a19c 100644 --- a/python/geoengine_openapi_client/models/resource_id_project.py +++ b/python/geoengine_openapi_client/models/resource_id_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/role.py b/python/geoengine_openapi_client/models/role.py index 1f6e5667..d6723964 100644 --- a/python/geoengine_openapi_client/models/role.py +++ b/python/geoengine_openapi_client/models/role.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/role_description.py b/python/geoengine_openapi_client/models/role_description.py index 6ba076d9..8e9d8b35 100644 --- a/python/geoengine_openapi_client/models/role_description.py +++ b/python/geoengine_openapi_client/models/role_description.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/search_capabilities.py b/python/geoengine_openapi_client/models/search_capabilities.py index 5f6ddaa8..e4b6ba5a 100644 --- a/python/geoengine_openapi_client/models/search_capabilities.py +++ b/python/geoengine_openapi_client/models/search_capabilities.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/search_type.py b/python/geoengine_openapi_client/models/search_type.py index 084dcbd3..c4b7683d 100644 --- a/python/geoengine_openapi_client/models/search_type.py +++ b/python/geoengine_openapi_client/models/search_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/search_types.py b/python/geoengine_openapi_client/models/search_types.py index 1faa3f85..e5d8e9a6 100644 --- a/python/geoengine_openapi_client/models/search_types.py +++ b/python/geoengine_openapi_client/models/search_types.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/server_info.py b/python/geoengine_openapi_client/models/server_info.py index 27723a45..7c706fca 100644 --- a/python/geoengine_openapi_client/models/server_info.py +++ b/python/geoengine_openapi_client/models/server_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/single_band_raster_colorizer.py b/python/geoengine_openapi_client/models/single_band_raster_colorizer.py index ede161f8..69054635 100644 --- a/python/geoengine_openapi_client/models/single_band_raster_colorizer.py +++ b/python/geoengine_openapi_client/models/single_band_raster_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/spatial_partition2_d.py b/python/geoengine_openapi_client/models/spatial_partition2_d.py index f5429738..aa6518fc 100644 --- a/python/geoengine_openapi_client/models/spatial_partition2_d.py +++ b/python/geoengine_openapi_client/models/spatial_partition2_d.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/spatial_reference_authority.py b/python/geoengine_openapi_client/models/spatial_reference_authority.py index ca99b18e..f0445a59 100644 --- a/python/geoengine_openapi_client/models/spatial_reference_authority.py +++ b/python/geoengine_openapi_client/models/spatial_reference_authority.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/spatial_reference_specification.py b/python/geoengine_openapi_client/models/spatial_reference_specification.py index d1307643..29195af5 100644 --- a/python/geoengine_openapi_client/models/spatial_reference_specification.py +++ b/python/geoengine_openapi_client/models/spatial_reference_specification.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/spatial_resolution.py b/python/geoengine_openapi_client/models/spatial_resolution.py index 856aeabc..56f83660 100644 --- a/python/geoengine_openapi_client/models/spatial_resolution.py +++ b/python/geoengine_openapi_client/models/spatial_resolution.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/st_rectangle.py b/python/geoengine_openapi_client/models/st_rectangle.py index 02be9fd1..54ed6e3e 100644 --- a/python/geoengine_openapi_client/models/st_rectangle.py +++ b/python/geoengine_openapi_client/models/st_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/static_number_param.py b/python/geoengine_openapi_client/models/static_number_param.py index 1c879bfb..ad096c79 100644 --- a/python/geoengine_openapi_client/models/static_number_param.py +++ b/python/geoengine_openapi_client/models/static_number_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/stroke_param.py b/python/geoengine_openapi_client/models/stroke_param.py index f1c1f8d6..208624fd 100644 --- a/python/geoengine_openapi_client/models/stroke_param.py +++ b/python/geoengine_openapi_client/models/stroke_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/suggest_meta_data.py b/python/geoengine_openapi_client/models/suggest_meta_data.py index 0a1cff30..330d7b3b 100644 --- a/python/geoengine_openapi_client/models/suggest_meta_data.py +++ b/python/geoengine_openapi_client/models/suggest_meta_data.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/symbology.py b/python/geoengine_openapi_client/models/symbology.py index d186dbf1..3aa9cda5 100644 --- a/python/geoengine_openapi_client/models/symbology.py +++ b/python/geoengine_openapi_client/models/symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_abort_options.py b/python/geoengine_openapi_client/models/task_abort_options.py index f5b3192d..63a37e04 100644 --- a/python/geoengine_openapi_client/models/task_abort_options.py +++ b/python/geoengine_openapi_client/models/task_abort_options.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_filter.py b/python/geoengine_openapi_client/models/task_filter.py index 5d8e36e5..37793161 100644 --- a/python/geoengine_openapi_client/models/task_filter.py +++ b/python/geoengine_openapi_client/models/task_filter.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_list_options.py b/python/geoengine_openapi_client/models/task_list_options.py index eea770fc..d78b15be 100644 --- a/python/geoengine_openapi_client/models/task_list_options.py +++ b/python/geoengine_openapi_client/models/task_list_options.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_response.py b/python/geoengine_openapi_client/models/task_response.py index d55c7dd7..ecae47a5 100644 --- a/python/geoengine_openapi_client/models/task_response.py +++ b/python/geoengine_openapi_client/models/task_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_status.py b/python/geoengine_openapi_client/models/task_status.py index 1d5fe86e..9103730f 100644 --- a/python/geoengine_openapi_client/models/task_status.py +++ b/python/geoengine_openapi_client/models/task_status.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_status_aborted.py b/python/geoengine_openapi_client/models/task_status_aborted.py index 0a030c46..0e9d29ee 100644 --- a/python/geoengine_openapi_client/models/task_status_aborted.py +++ b/python/geoengine_openapi_client/models/task_status_aborted.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_status_completed.py b/python/geoengine_openapi_client/models/task_status_completed.py index 6fa6796c..a859dab7 100644 --- a/python/geoengine_openapi_client/models/task_status_completed.py +++ b/python/geoengine_openapi_client/models/task_status_completed.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_status_failed.py b/python/geoengine_openapi_client/models/task_status_failed.py index 97e91d6a..6c664cc7 100644 --- a/python/geoengine_openapi_client/models/task_status_failed.py +++ b/python/geoengine_openapi_client/models/task_status_failed.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_status_running.py b/python/geoengine_openapi_client/models/task_status_running.py index 53c66248..c3474069 100644 --- a/python/geoengine_openapi_client/models/task_status_running.py +++ b/python/geoengine_openapi_client/models/task_status_running.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/task_status_with_id.py b/python/geoengine_openapi_client/models/task_status_with_id.py index c3853cb5..2ec27f20 100644 --- a/python/geoengine_openapi_client/models/task_status_with_id.py +++ b/python/geoengine_openapi_client/models/task_status_with_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/text_symbology.py b/python/geoengine_openapi_client/models/text_symbology.py index a79928c8..3d452148 100644 --- a/python/geoengine_openapi_client/models/text_symbology.py +++ b/python/geoengine_openapi_client/models/text_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/time_granularity.py b/python/geoengine_openapi_client/models/time_granularity.py index e178861d..e879ed26 100644 --- a/python/geoengine_openapi_client/models/time_granularity.py +++ b/python/geoengine_openapi_client/models/time_granularity.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/time_interval.py b/python/geoengine_openapi_client/models/time_interval.py index 99321da3..ac17f48a 100644 --- a/python/geoengine_openapi_client/models/time_interval.py +++ b/python/geoengine_openapi_client/models/time_interval.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/time_reference.py b/python/geoengine_openapi_client/models/time_reference.py index 751b6f28..3c2c1fb0 100644 --- a/python/geoengine_openapi_client/models/time_reference.py +++ b/python/geoengine_openapi_client/models/time_reference.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/time_step.py b/python/geoengine_openapi_client/models/time_step.py index b11664ec..1e7dc352 100644 --- a/python/geoengine_openapi_client/models/time_step.py +++ b/python/geoengine_openapi_client/models/time_step.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_geometry.py b/python/geoengine_openapi_client/models/typed_geometry.py index 208eb2c5..6028b1f5 100644 --- a/python/geoengine_openapi_client/models/typed_geometry.py +++ b/python/geoengine_openapi_client/models/typed_geometry.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_geometry_one_of.py b/python/geoengine_openapi_client/models/typed_geometry_one_of.py index 556e5e03..e89d66d1 100644 --- a/python/geoengine_openapi_client/models/typed_geometry_one_of.py +++ b/python/geoengine_openapi_client/models/typed_geometry_one_of.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_geometry_one_of1.py b/python/geoengine_openapi_client/models/typed_geometry_one_of1.py index f981ec1d..0d41098b 100644 --- a/python/geoengine_openapi_client/models/typed_geometry_one_of1.py +++ b/python/geoengine_openapi_client/models/typed_geometry_one_of1.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_geometry_one_of2.py b/python/geoengine_openapi_client/models/typed_geometry_one_of2.py index c6bdb152..3abd3c4f 100644 --- a/python/geoengine_openapi_client/models/typed_geometry_one_of2.py +++ b/python/geoengine_openapi_client/models/typed_geometry_one_of2.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_geometry_one_of3.py b/python/geoengine_openapi_client/models/typed_geometry_one_of3.py index d242a1fb..abd97bf2 100644 --- a/python/geoengine_openapi_client/models/typed_geometry_one_of3.py +++ b/python/geoengine_openapi_client/models/typed_geometry_one_of3.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_operator.py b/python/geoengine_openapi_client/models/typed_operator.py index 8f481535..a32032b2 100644 --- a/python/geoengine_openapi_client/models/typed_operator.py +++ b/python/geoengine_openapi_client/models/typed_operator.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_operator_operator.py b/python/geoengine_openapi_client/models/typed_operator_operator.py index 9ce442ac..561df952 100644 --- a/python/geoengine_openapi_client/models/typed_operator_operator.py +++ b/python/geoengine_openapi_client/models/typed_operator_operator.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_plot_result_descriptor.py b/python/geoengine_openapi_client/models/typed_plot_result_descriptor.py index 4e5a0a15..e211bf04 100644 --- a/python/geoengine_openapi_client/models/typed_plot_result_descriptor.py +++ b/python/geoengine_openapi_client/models/typed_plot_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_raster_result_descriptor.py b/python/geoengine_openapi_client/models/typed_raster_result_descriptor.py index 3627dcbe..f926ba10 100644 --- a/python/geoengine_openapi_client/models/typed_raster_result_descriptor.py +++ b/python/geoengine_openapi_client/models/typed_raster_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_result_descriptor.py b/python/geoengine_openapi_client/models/typed_result_descriptor.py index 126d17ac..5bb4794c 100644 --- a/python/geoengine_openapi_client/models/typed_result_descriptor.py +++ b/python/geoengine_openapi_client/models/typed_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/typed_vector_result_descriptor.py b/python/geoengine_openapi_client/models/typed_vector_result_descriptor.py index adac0914..5e151881 100644 --- a/python/geoengine_openapi_client/models/typed_vector_result_descriptor.py +++ b/python/geoengine_openapi_client/models/typed_vector_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/unitless_measurement.py b/python/geoengine_openapi_client/models/unitless_measurement.py index df304882..c0ba7121 100644 --- a/python/geoengine_openapi_client/models/unitless_measurement.py +++ b/python/geoengine_openapi_client/models/unitless_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/unix_time_stamp_type.py b/python/geoengine_openapi_client/models/unix_time_stamp_type.py index f07c6641..c381609e 100644 --- a/python/geoengine_openapi_client/models/unix_time_stamp_type.py +++ b/python/geoengine_openapi_client/models/unix_time_stamp_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/update_dataset.py b/python/geoengine_openapi_client/models/update_dataset.py index bad1382f..23d309d6 100644 --- a/python/geoengine_openapi_client/models/update_dataset.py +++ b/python/geoengine_openapi_client/models/update_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/update_layer.py b/python/geoengine_openapi_client/models/update_layer.py index 8044dd23..ee7faed5 100644 --- a/python/geoengine_openapi_client/models/update_layer.py +++ b/python/geoengine_openapi_client/models/update_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/update_layer_collection.py b/python/geoengine_openapi_client/models/update_layer_collection.py index d322fec8..35c6780d 100644 --- a/python/geoengine_openapi_client/models/update_layer_collection.py +++ b/python/geoengine_openapi_client/models/update_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/update_project.py b/python/geoengine_openapi_client/models/update_project.py index f0049e3c..17eb2601 100644 --- a/python/geoengine_openapi_client/models/update_project.py +++ b/python/geoengine_openapi_client/models/update_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/update_quota.py b/python/geoengine_openapi_client/models/update_quota.py index 9455901c..2c75f7b3 100644 --- a/python/geoengine_openapi_client/models/update_quota.py +++ b/python/geoengine_openapi_client/models/update_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/upload_file_layers_response.py b/python/geoengine_openapi_client/models/upload_file_layers_response.py index 7984166e..34ab5de7 100644 --- a/python/geoengine_openapi_client/models/upload_file_layers_response.py +++ b/python/geoengine_openapi_client/models/upload_file_layers_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/upload_files_response.py b/python/geoengine_openapi_client/models/upload_files_response.py index cecefc89..1da3ffa0 100644 --- a/python/geoengine_openapi_client/models/upload_files_response.py +++ b/python/geoengine_openapi_client/models/upload_files_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/usage_summary_granularity.py b/python/geoengine_openapi_client/models/usage_summary_granularity.py index 921fd3ad..57ed8688 100644 --- a/python/geoengine_openapi_client/models/usage_summary_granularity.py +++ b/python/geoengine_openapi_client/models/usage_summary_granularity.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/user_credentials.py b/python/geoengine_openapi_client/models/user_credentials.py index 7bb6d669..f888b9f7 100644 --- a/python/geoengine_openapi_client/models/user_credentials.py +++ b/python/geoengine_openapi_client/models/user_credentials.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/user_info.py b/python/geoengine_openapi_client/models/user_info.py index dfabdcb7..52ede41c 100644 --- a/python/geoengine_openapi_client/models/user_info.py +++ b/python/geoengine_openapi_client/models/user_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/user_registration.py b/python/geoengine_openapi_client/models/user_registration.py index d432cd9b..66d409d0 100644 --- a/python/geoengine_openapi_client/models/user_registration.py +++ b/python/geoengine_openapi_client/models/user_registration.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/user_session.py b/python/geoengine_openapi_client/models/user_session.py index effdd712..5e5dc940 100644 --- a/python/geoengine_openapi_client/models/user_session.py +++ b/python/geoengine_openapi_client/models/user_session.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/vector_column_info.py b/python/geoengine_openapi_client/models/vector_column_info.py index 40c06fa0..5424a65e 100644 --- a/python/geoengine_openapi_client/models/vector_column_info.py +++ b/python/geoengine_openapi_client/models/vector_column_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/vector_data_type.py b/python/geoengine_openapi_client/models/vector_data_type.py index e04c67ab..38b19dd4 100644 --- a/python/geoengine_openapi_client/models/vector_data_type.py +++ b/python/geoengine_openapi_client/models/vector_data_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/vector_query_rectangle.py b/python/geoengine_openapi_client/models/vector_query_rectangle.py index 92421768..660535fe 100644 --- a/python/geoengine_openapi_client/models/vector_query_rectangle.py +++ b/python/geoengine_openapi_client/models/vector_query_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/vector_result_descriptor.py b/python/geoengine_openapi_client/models/vector_result_descriptor.py index fe51d9b8..7f5c08b8 100644 --- a/python/geoengine_openapi_client/models/vector_result_descriptor.py +++ b/python/geoengine_openapi_client/models/vector_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/volume.py b/python/geoengine_openapi_client/models/volume.py index b283a1bb..3e2f9dbe 100644 --- a/python/geoengine_openapi_client/models/volume.py +++ b/python/geoengine_openapi_client/models/volume.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/volume_file_layers_response.py b/python/geoengine_openapi_client/models/volume_file_layers_response.py index e607186a..05e8f7a7 100644 --- a/python/geoengine_openapi_client/models/volume_file_layers_response.py +++ b/python/geoengine_openapi_client/models/volume_file_layers_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wcs_boundingbox.py b/python/geoengine_openapi_client/models/wcs_boundingbox.py index 489c59c5..6b6fade3 100644 --- a/python/geoengine_openapi_client/models/wcs_boundingbox.py +++ b/python/geoengine_openapi_client/models/wcs_boundingbox.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wcs_service.py b/python/geoengine_openapi_client/models/wcs_service.py index c1c629f2..661f52d8 100644 --- a/python/geoengine_openapi_client/models/wcs_service.py +++ b/python/geoengine_openapi_client/models/wcs_service.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wcs_version.py b/python/geoengine_openapi_client/models/wcs_version.py index d2e31a2a..238f78ba 100644 --- a/python/geoengine_openapi_client/models/wcs_version.py +++ b/python/geoengine_openapi_client/models/wcs_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wfs_service.py b/python/geoengine_openapi_client/models/wfs_service.py index 4fd09959..e6827212 100644 --- a/python/geoengine_openapi_client/models/wfs_service.py +++ b/python/geoengine_openapi_client/models/wfs_service.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wfs_version.py b/python/geoengine_openapi_client/models/wfs_version.py index ea7e4d59..2c278913 100644 --- a/python/geoengine_openapi_client/models/wfs_version.py +++ b/python/geoengine_openapi_client/models/wfs_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wms_service.py b/python/geoengine_openapi_client/models/wms_service.py index df2d5cce..e17d8633 100644 --- a/python/geoengine_openapi_client/models/wms_service.py +++ b/python/geoengine_openapi_client/models/wms_service.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wms_version.py b/python/geoengine_openapi_client/models/wms_version.py index 842f76da..019f76f3 100644 --- a/python/geoengine_openapi_client/models/wms_version.py +++ b/python/geoengine_openapi_client/models/wms_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/workflow.py b/python/geoengine_openapi_client/models/workflow.py index 8c48888e..2809777e 100644 --- a/python/geoengine_openapi_client/models/workflow.py +++ b/python/geoengine_openapi_client/models/workflow.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/models/wrapped_plot_output.py b/python/geoengine_openapi_client/models/wrapped_plot_output.py index b6ace854..0718fda1 100644 --- a/python/geoengine_openapi_client/models/wrapped_plot_output.py +++ b/python/geoengine_openapi_client/models/wrapped_plot_output.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/geoengine_openapi_client/rest.py b/python/geoengine_openapi_client/rest.py index cc235a53..45c90696 100644 --- a/python/geoengine_openapi_client/rest.py +++ b/python/geoengine_openapi_client/rest.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/pyproject.toml b/python/pyproject.toml index 312724cc..c3fefae5 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "geoengine_openapi_client" version = "0.0.17" -description = "Geo Engine Pro API" +description = "Geo Engine API" authors = ["Geo Engine Developers "] license = "Apache-2.0" readme = "README.md" repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" -keywords = ["OpenAPI", "OpenAPI-Generator", "Geo Engine Pro API"] +keywords = ["OpenAPI", "OpenAPI-Generator", "Geo Engine API"] include = ["geoengine_openapi_client/py.typed"] [tool.poetry.dependencies] diff --git a/python/setup.py b/python/setup.py index 4e029bdd..ed13ea19 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) @@ -34,11 +34,11 @@ setup( name=NAME, version=VERSION, - description="Geo Engine Pro API", + description="Geo Engine API", author="Geo Engine Developers", author_email="dev@geoengine.de", url="https://github.com/geo-engine/openapi-client", - keywords=["OpenAPI", "OpenAPI-Generator", "Geo Engine Pro API"], + keywords=["OpenAPI", "OpenAPI-Generator", "Geo Engine API"], install_requires=REQUIRES, packages=find_packages(exclude=["test", "tests"]), include_package_data=True, diff --git a/python/test/test_add_collection200_response.py b/python/test/test_add_collection200_response.py index 43146aa7..69c34b75 100644 --- a/python/test/test_add_collection200_response.py +++ b/python/test/test_add_collection200_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_add_dataset.py b/python/test/test_add_dataset.py index b9c70c45..3c8000fe 100644 --- a/python/test/test_add_dataset.py +++ b/python/test/test_add_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_add_layer.py b/python/test/test_add_layer.py index 1e343004..3b5406ed 100644 --- a/python/test/test_add_layer.py +++ b/python/test/test_add_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_add_layer_collection.py b/python/test/test_add_layer_collection.py index 54ba4893..52efe282 100644 --- a/python/test/test_add_layer_collection.py +++ b/python/test/test_add_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_add_role.py b/python/test/test_add_role.py index 73578436..ef34ac1f 100644 --- a/python/test/test_add_role.py +++ b/python/test/test_add_role.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_auth_code_request_url.py b/python/test/test_auth_code_request_url.py index b60d3a2e..447cf141 100644 --- a/python/test/test_auth_code_request_url.py +++ b/python/test/test_auth_code_request_url.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_auth_code_response.py b/python/test/test_auth_code_response.py index bd4f60fa..5c0b1bea 100644 --- a/python/test/test_auth_code_response.py +++ b/python/test/test_auth_code_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_auto_create_dataset.py b/python/test/test_auto_create_dataset.py index 583efdde..c0fc3e45 100644 --- a/python/test/test_auto_create_dataset.py +++ b/python/test/test_auto_create_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_axis_order.py b/python/test/test_axis_order.py index a8a24767..f5bb91c4 100644 --- a/python/test/test_axis_order.py +++ b/python/test/test_axis_order.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_bounding_box2_d.py b/python/test/test_bounding_box2_d.py index 08999b2e..c6614ac1 100644 --- a/python/test/test_bounding_box2_d.py +++ b/python/test/test_bounding_box2_d.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_breakpoint.py b/python/test/test_breakpoint.py index 17d06de5..9cf896fb 100644 --- a/python/test/test_breakpoint.py +++ b/python/test/test_breakpoint.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_classification_measurement.py b/python/test/test_classification_measurement.py index e4d730de..176e62d5 100644 --- a/python/test/test_classification_measurement.py +++ b/python/test/test_classification_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_collection_item.py b/python/test/test_collection_item.py index 9f782675..9e18e955 100644 --- a/python/test/test_collection_item.py +++ b/python/test/test_collection_item.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_collection_type.py b/python/test/test_collection_type.py index e47d3de0..508329ff 100644 --- a/python/test/test_collection_type.py +++ b/python/test/test_collection_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_color_param.py b/python/test/test_color_param.py index c5e2c120..4aed92f6 100644 --- a/python/test/test_color_param.py +++ b/python/test/test_color_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_color_param_static.py b/python/test/test_color_param_static.py index f74a53d9..b8c6451f 100644 --- a/python/test/test_color_param_static.py +++ b/python/test/test_color_param_static.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_colorizer.py b/python/test/test_colorizer.py index 7712a4f2..19c82ab2 100644 --- a/python/test/test_colorizer.py +++ b/python/test/test_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_computation_quota.py b/python/test/test_computation_quota.py index 341c4cd2..8b929f82 100644 --- a/python/test/test_computation_quota.py +++ b/python/test/test_computation_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_continuous_measurement.py b/python/test/test_continuous_measurement.py index 4e987b93..ad4a7a6e 100644 --- a/python/test/test_continuous_measurement.py +++ b/python/test/test_continuous_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_coordinate2_d.py b/python/test/test_coordinate2_d.py index 15348fbd..5815cd87 100644 --- a/python/test/test_coordinate2_d.py +++ b/python/test/test_coordinate2_d.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_create_dataset.py b/python/test/test_create_dataset.py index 8047a271..2ec87b20 100644 --- a/python/test/test_create_dataset.py +++ b/python/test/test_create_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_create_dataset_handler200_response.py b/python/test/test_create_dataset_handler200_response.py index e89cf396..f862a07e 100644 --- a/python/test/test_create_dataset_handler200_response.py +++ b/python/test/test_create_dataset_handler200_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_create_project.py b/python/test/test_create_project.py index 7f4bdf55..0e889e6f 100644 --- a/python/test/test_create_project.py +++ b/python/test/test_create_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_csv_header.py b/python/test/test_csv_header.py index 4e20a4f7..de610b12 100644 --- a/python/test/test_csv_header.py +++ b/python/test/test_csv_header.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_data_id.py b/python/test/test_data_id.py index 3334eeca..c10c7bc2 100644 --- a/python/test/test_data_id.py +++ b/python/test/test_data_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_data_path.py b/python/test/test_data_path.py index 06887f30..eff78ce3 100644 --- a/python/test/test_data_path.py +++ b/python/test/test_data_path.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_data_path_one_of.py b/python/test/test_data_path_one_of.py index 60038adb..1e51e8e0 100644 --- a/python/test/test_data_path_one_of.py +++ b/python/test/test_data_path_one_of.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_data_path_one_of1.py b/python/test/test_data_path_one_of1.py index 5b249707..51ad7fa0 100644 --- a/python/test/test_data_path_one_of1.py +++ b/python/test/test_data_path_one_of1.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_data_usage.py b/python/test/test_data_usage.py index 2f75c910..03e7d0d5 100644 --- a/python/test/test_data_usage.py +++ b/python/test/test_data_usage.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_data_usage_summary.py b/python/test/test_data_usage_summary.py index aed7a639..c796a1d8 100644 --- a/python/test/test_data_usage_summary.py +++ b/python/test/test_data_usage_summary.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) @@ -38,13 +38,13 @@ def make_instance(self, include_optional) -> DataUsageSummary: if include_optional: return DataUsageSummary( count = 0, - dataset = '', + data = '', timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f') ) else: return DataUsageSummary( count = 0, - dataset = '', + data = '', timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), ) """ diff --git a/python/test/test_dataset.py b/python/test/test_dataset.py index 9e0ba415..01947019 100644 --- a/python/test/test_dataset.py +++ b/python/test/test_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_dataset_definition.py b/python/test/test_dataset_definition.py index ef12cf5e..5caa402c 100644 --- a/python/test/test_dataset_definition.py +++ b/python/test/test_dataset_definition.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_dataset_listing.py b/python/test/test_dataset_listing.py index 8bcf5c25..7e9d6f70 100644 --- a/python/test/test_dataset_listing.py +++ b/python/test/test_dataset_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_dataset_resource.py b/python/test/test_dataset_resource.py index f8100eaf..f85d91ab 100644 --- a/python/test/test_dataset_resource.py +++ b/python/test/test_dataset_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_datasets_api.py b/python/test/test_datasets_api.py index f3967b5f..58e15da9 100644 --- a/python/test/test_datasets_api.py +++ b/python/test/test_datasets_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_date_time.py b/python/test/test_date_time.py index 651495c7..ffbb0092 100644 --- a/python/test/test_date_time.py +++ b/python/test/test_date_time.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_derived_color.py b/python/test/test_derived_color.py index c635a7c7..874dc3a8 100644 --- a/python/test/test_derived_color.py +++ b/python/test/test_derived_color.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_derived_number.py b/python/test/test_derived_number.py index 807bec63..d2ef8aa8 100644 --- a/python/test/test_derived_number.py +++ b/python/test/test_derived_number.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_describe_coverage_request.py b/python/test/test_describe_coverage_request.py index 0465e1f4..e2e1145f 100644 --- a/python/test/test_describe_coverage_request.py +++ b/python/test/test_describe_coverage_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_error_response.py b/python/test/test_error_response.py index 9b0b3b3b..eae9a1a2 100644 --- a/python/test/test_error_response.py +++ b/python/test/test_error_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_external_data_id.py b/python/test/test_external_data_id.py index 0f02e930..e64f1a76 100644 --- a/python/test/test_external_data_id.py +++ b/python/test/test_external_data_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_feature_data_type.py b/python/test/test_feature_data_type.py index d208bc9f..a64c302c 100644 --- a/python/test/test_feature_data_type.py +++ b/python/test/test_feature_data_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_file_not_found_handling.py b/python/test/test_file_not_found_handling.py index 97692337..3d0dbbed 100644 --- a/python/test/test_file_not_found_handling.py +++ b/python/test/test_file_not_found_handling.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_format_specifics.py b/python/test/test_format_specifics.py index 9d5fe0ad..47108da5 100644 --- a/python/test/test_format_specifics.py +++ b/python/test/test_format_specifics.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_format_specifics_one_of.py b/python/test/test_format_specifics_one_of.py index a3e0851d..a203f31e 100644 --- a/python/test/test_format_specifics_one_of.py +++ b/python/test/test_format_specifics_one_of.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_format_specifics_one_of_csv.py b/python/test/test_format_specifics_one_of_csv.py index d9933753..d055473c 100644 --- a/python/test/test_format_specifics_one_of_csv.py +++ b/python/test/test_format_specifics_one_of_csv.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_dataset_geo_transform.py b/python/test/test_gdal_dataset_geo_transform.py index 4b674552..3cf94d75 100644 --- a/python/test/test_gdal_dataset_geo_transform.py +++ b/python/test/test_gdal_dataset_geo_transform.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_dataset_parameters.py b/python/test/test_gdal_dataset_parameters.py index 3f1db7f3..1c436366 100644 --- a/python/test/test_gdal_dataset_parameters.py +++ b/python/test/test_gdal_dataset_parameters.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_loading_info_temporal_slice.py b/python/test/test_gdal_loading_info_temporal_slice.py index bc9e73ed..88afcf68 100644 --- a/python/test/test_gdal_loading_info_temporal_slice.py +++ b/python/test/test_gdal_loading_info_temporal_slice.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_meta_data_list.py b/python/test/test_gdal_meta_data_list.py index 2e34ef1a..eef6f8cd 100644 --- a/python/test/test_gdal_meta_data_list.py +++ b/python/test/test_gdal_meta_data_list.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_meta_data_regular.py b/python/test/test_gdal_meta_data_regular.py index 2ed501c3..7e4f4d04 100644 --- a/python/test/test_gdal_meta_data_regular.py +++ b/python/test/test_gdal_meta_data_regular.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_meta_data_static.py b/python/test/test_gdal_meta_data_static.py index 855b2cf6..597ff43b 100644 --- a/python/test/test_gdal_meta_data_static.py +++ b/python/test/test_gdal_meta_data_static.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_metadata_mapping.py b/python/test/test_gdal_metadata_mapping.py index c726fefc..c6227d89 100644 --- a/python/test/test_gdal_metadata_mapping.py +++ b/python/test/test_gdal_metadata_mapping.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_metadata_net_cdf_cf.py b/python/test/test_gdal_metadata_net_cdf_cf.py index bd5b35e0..241b60fa 100644 --- a/python/test/test_gdal_metadata_net_cdf_cf.py +++ b/python/test/test_gdal_metadata_net_cdf_cf.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_gdal_source_time_placeholder.py b/python/test/test_gdal_source_time_placeholder.py index 0d6b7596..66a0487d 100644 --- a/python/test/test_gdal_source_time_placeholder.py +++ b/python/test/test_gdal_source_time_placeholder.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_general_api.py b/python/test/test_general_api.py index 43bf4185..ccaafa94 100644 --- a/python/test/test_general_api.py +++ b/python/test/test_general_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_geo_json.py b/python/test/test_geo_json.py index 48db9c30..90859b3e 100644 --- a/python/test/test_geo_json.py +++ b/python/test/test_geo_json.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_capabilities_format.py b/python/test/test_get_capabilities_format.py index 296ae09b..a64df5fb 100644 --- a/python/test/test_get_capabilities_format.py +++ b/python/test/test_get_capabilities_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_capabilities_request.py b/python/test/test_get_capabilities_request.py index a95331b7..5271ce9d 100644 --- a/python/test/test_get_capabilities_request.py +++ b/python/test/test_get_capabilities_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_coverage_format.py b/python/test/test_get_coverage_format.py index 01586cd6..44623296 100644 --- a/python/test/test_get_coverage_format.py +++ b/python/test/test_get_coverage_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_coverage_request.py b/python/test/test_get_coverage_request.py index 83f1ed8a..17b1c43e 100644 --- a/python/test/test_get_coverage_request.py +++ b/python/test/test_get_coverage_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_feature_request.py b/python/test/test_get_feature_request.py index f56b201a..f29b55dd 100644 --- a/python/test/test_get_feature_request.py +++ b/python/test/test_get_feature_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_legend_graphic_request.py b/python/test/test_get_legend_graphic_request.py index 50bc19f0..a8b68f2b 100644 --- a/python/test/test_get_legend_graphic_request.py +++ b/python/test/test_get_legend_graphic_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_map_exception_format.py b/python/test/test_get_map_exception_format.py index 1bfc3d7b..f297f80d 100644 --- a/python/test/test_get_map_exception_format.py +++ b/python/test/test_get_map_exception_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_map_format.py b/python/test/test_get_map_format.py index 53a3db15..3c28a242 100644 --- a/python/test/test_get_map_format.py +++ b/python/test/test_get_map_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_get_map_request.py b/python/test/test_get_map_request.py index f26cbbba..1e16a2de 100644 --- a/python/test/test_get_map_request.py +++ b/python/test/test_get_map_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_internal_data_id.py b/python/test/test_internal_data_id.py index becc6737..6e7a9523 100644 --- a/python/test/test_internal_data_id.py +++ b/python/test/test_internal_data_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer.py b/python/test/test_layer.py index ac710a54..09cffc93 100644 --- a/python/test/test_layer.py +++ b/python/test/test_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_collection.py b/python/test/test_layer_collection.py index c4051b0f..58e531eb 100644 --- a/python/test/test_layer_collection.py +++ b/python/test/test_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_collection_listing.py b/python/test/test_layer_collection_listing.py index a76862a9..f472b022 100644 --- a/python/test/test_layer_collection_listing.py +++ b/python/test/test_layer_collection_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_collection_resource.py b/python/test/test_layer_collection_resource.py index 2742726d..d43b6567 100644 --- a/python/test/test_layer_collection_resource.py +++ b/python/test/test_layer_collection_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_listing.py b/python/test/test_layer_listing.py index 9c6f4ab0..ac1b5d87 100644 --- a/python/test/test_layer_listing.py +++ b/python/test/test_layer_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_resource.py b/python/test/test_layer_resource.py index beb88f08..baa77d4d 100644 --- a/python/test/test_layer_resource.py +++ b/python/test/test_layer_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_update.py b/python/test/test_layer_update.py index 45ef5714..64c1d5c9 100644 --- a/python/test/test_layer_update.py +++ b/python/test/test_layer_update.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layer_visibility.py b/python/test/test_layer_visibility.py index 3f12c1ee..1ad762c8 100644 --- a/python/test/test_layer_visibility.py +++ b/python/test/test_layer_visibility.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_layers_api.py b/python/test/test_layers_api.py index 8db84404..bdd3e6c1 100644 --- a/python/test/test_layers_api.py +++ b/python/test/test_layers_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_line_symbology.py b/python/test/test_line_symbology.py index 34f6d5f9..d1f44793 100644 --- a/python/test/test_line_symbology.py +++ b/python/test/test_line_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_linear_gradient.py b/python/test/test_linear_gradient.py index 72ee142a..1e5b8a1d 100644 --- a/python/test/test_linear_gradient.py +++ b/python/test/test_linear_gradient.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_logarithmic_gradient.py b/python/test/test_logarithmic_gradient.py index f0a6fba5..71b9c63b 100644 --- a/python/test/test_logarithmic_gradient.py +++ b/python/test/test_logarithmic_gradient.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_measurement.py b/python/test/test_measurement.py index 398ae075..a9162b97 100644 --- a/python/test/test_measurement.py +++ b/python/test/test_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_meta_data_definition.py b/python/test/test_meta_data_definition.py index aac80492..fa96ca0a 100644 --- a/python/test/test_meta_data_definition.py +++ b/python/test/test_meta_data_definition.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_meta_data_suggestion.py b/python/test/test_meta_data_suggestion.py index 247036ff..b0069977 100644 --- a/python/test/test_meta_data_suggestion.py +++ b/python/test/test_meta_data_suggestion.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ml_api.py b/python/test/test_ml_api.py index e4d409b4..b8428ae7 100644 --- a/python/test/test_ml_api.py +++ b/python/test/test_ml_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ml_model.py b/python/test/test_ml_model.py index b492bfb4..d93cca15 100644 --- a/python/test/test_ml_model.py +++ b/python/test/test_ml_model.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ml_model_metadata.py b/python/test/test_ml_model_metadata.py index a305ad7a..f118df2b 100644 --- a/python/test/test_ml_model_metadata.py +++ b/python/test/test_ml_model_metadata.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_mock_dataset_data_source_loading_info.py b/python/test/test_mock_dataset_data_source_loading_info.py index 3f7e1101..6482c2c6 100644 --- a/python/test/test_mock_dataset_data_source_loading_info.py +++ b/python/test/test_mock_dataset_data_source_loading_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_mock_meta_data.py b/python/test/test_mock_meta_data.py index 9c14e83a..13a61c98 100644 --- a/python/test/test_mock_meta_data.py +++ b/python/test/test_mock_meta_data.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_multi_band_raster_colorizer.py b/python/test/test_multi_band_raster_colorizer.py index cdbb0982..5d589978 100644 --- a/python/test/test_multi_band_raster_colorizer.py +++ b/python/test/test_multi_band_raster_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_multi_line_string.py b/python/test/test_multi_line_string.py index 53241a3f..1534c868 100644 --- a/python/test/test_multi_line_string.py +++ b/python/test/test_multi_line_string.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_multi_point.py b/python/test/test_multi_point.py index 40e83027..cc6d7aae 100644 --- a/python/test/test_multi_point.py +++ b/python/test/test_multi_point.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_multi_polygon.py b/python/test/test_multi_polygon.py index a8aa4574..93bc5481 100644 --- a/python/test/test_multi_polygon.py +++ b/python/test/test_multi_polygon.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_number_param.py b/python/test/test_number_param.py index 4da652ea..84132201 100644 --- a/python/test/test_number_param.py +++ b/python/test/test_number_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogcwcs_api.py b/python/test/test_ogcwcs_api.py index 97e11ea5..6c2b5373 100644 --- a/python/test/test_ogcwcs_api.py +++ b/python/test/test_ogcwcs_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogcwfs_api.py b/python/test/test_ogcwfs_api.py index 9448dd0b..f72c5dd8 100644 --- a/python/test/test_ogcwfs_api.py +++ b/python/test/test_ogcwfs_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogcwms_api.py b/python/test/test_ogcwms_api.py index 6b168d6f..02f8d606 100644 --- a/python/test/test_ogcwms_api.py +++ b/python/test/test_ogcwms_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_meta_data.py b/python/test/test_ogr_meta_data.py index f24fa45a..49f6c33a 100644 --- a/python/test/test_ogr_meta_data.py +++ b/python/test/test_ogr_meta_data.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_column_spec.py b/python/test/test_ogr_source_column_spec.py index dc3ed25f..81e164eb 100644 --- a/python/test/test_ogr_source_column_spec.py +++ b/python/test/test_ogr_source_column_spec.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_dataset.py b/python/test/test_ogr_source_dataset.py index 81f04467..f4c66e98 100644 --- a/python/test/test_ogr_source_dataset.py +++ b/python/test/test_ogr_source_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_dataset_time_type.py b/python/test/test_ogr_source_dataset_time_type.py index 7d36b7c7..148c91e8 100644 --- a/python/test/test_ogr_source_dataset_time_type.py +++ b/python/test/test_ogr_source_dataset_time_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_dataset_time_type_none.py b/python/test/test_ogr_source_dataset_time_type_none.py index 3274e6c6..1ee8db63 100644 --- a/python/test/test_ogr_source_dataset_time_type_none.py +++ b/python/test/test_ogr_source_dataset_time_type_none.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_dataset_time_type_start.py b/python/test/test_ogr_source_dataset_time_type_start.py index 7c7f193d..9aa84cfa 100644 --- a/python/test/test_ogr_source_dataset_time_type_start.py +++ b/python/test/test_ogr_source_dataset_time_type_start.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_dataset_time_type_start_duration.py b/python/test/test_ogr_source_dataset_time_type_start_duration.py index 24671422..8234fd22 100644 --- a/python/test/test_ogr_source_dataset_time_type_start_duration.py +++ b/python/test/test_ogr_source_dataset_time_type_start_duration.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_dataset_time_type_start_end.py b/python/test/test_ogr_source_dataset_time_type_start_end.py index 7702f26d..1176dffe 100644 --- a/python/test/test_ogr_source_dataset_time_type_start_end.py +++ b/python/test/test_ogr_source_dataset_time_type_start_end.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_duration_spec.py b/python/test/test_ogr_source_duration_spec.py index 436d8d59..800a2112 100644 --- a/python/test/test_ogr_source_duration_spec.py +++ b/python/test/test_ogr_source_duration_spec.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_duration_spec_infinite.py b/python/test/test_ogr_source_duration_spec_infinite.py index eb7d0c38..53424f69 100644 --- a/python/test/test_ogr_source_duration_spec_infinite.py +++ b/python/test/test_ogr_source_duration_spec_infinite.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_duration_spec_value.py b/python/test/test_ogr_source_duration_spec_value.py index 96b58bf6..d91d7b57 100644 --- a/python/test/test_ogr_source_duration_spec_value.py +++ b/python/test/test_ogr_source_duration_spec_value.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_duration_spec_zero.py b/python/test/test_ogr_source_duration_spec_zero.py index edc28f31..750bb6de 100644 --- a/python/test/test_ogr_source_duration_spec_zero.py +++ b/python/test/test_ogr_source_duration_spec_zero.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_error_spec.py b/python/test/test_ogr_source_error_spec.py index 02a03dcd..936db630 100644 --- a/python/test/test_ogr_source_error_spec.py +++ b/python/test/test_ogr_source_error_spec.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_time_format.py b/python/test/test_ogr_source_time_format.py index baf98f8b..4494d4fb 100644 --- a/python/test/test_ogr_source_time_format.py +++ b/python/test/test_ogr_source_time_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_time_format_auto.py b/python/test/test_ogr_source_time_format_auto.py index 717fdd14..b99a1355 100644 --- a/python/test/test_ogr_source_time_format_auto.py +++ b/python/test/test_ogr_source_time_format_auto.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_time_format_custom.py b/python/test/test_ogr_source_time_format_custom.py index cfc72c4d..b7620bb7 100644 --- a/python/test/test_ogr_source_time_format_custom.py +++ b/python/test/test_ogr_source_time_format_custom.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_ogr_source_time_format_unix_time_stamp.py b/python/test/test_ogr_source_time_format_unix_time_stamp.py index 9a722cff..6796fd77 100644 --- a/python/test/test_ogr_source_time_format_unix_time_stamp.py +++ b/python/test/test_ogr_source_time_format_unix_time_stamp.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_operator_quota.py b/python/test/test_operator_quota.py index 3f102843..6cbf2de9 100644 --- a/python/test/test_operator_quota.py +++ b/python/test/test_operator_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_order_by.py b/python/test/test_order_by.py index 58603ef4..692f668a 100644 --- a/python/test/test_order_by.py +++ b/python/test/test_order_by.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_palette_colorizer.py b/python/test/test_palette_colorizer.py index 91f29a97..88790f13 100644 --- a/python/test/test_palette_colorizer.py +++ b/python/test/test_palette_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_permission.py b/python/test/test_permission.py index bb207efe..c43def16 100644 --- a/python/test/test_permission.py +++ b/python/test/test_permission.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_permission_list_options.py b/python/test/test_permission_list_options.py index 7c7b3b00..2ab29119 100644 --- a/python/test/test_permission_list_options.py +++ b/python/test/test_permission_list_options.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_permission_listing.py b/python/test/test_permission_listing.py index 810220bf..bb25814f 100644 --- a/python/test/test_permission_listing.py +++ b/python/test/test_permission_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_permission_request.py b/python/test/test_permission_request.py index 9c34d6ba..d3eeaa35 100644 --- a/python/test/test_permission_request.py +++ b/python/test/test_permission_request.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_permissions_api.py b/python/test/test_permissions_api.py index b8585b80..3beaf07e 100644 --- a/python/test/test_permissions_api.py +++ b/python/test/test_permissions_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_plot.py b/python/test/test_plot.py index 0039b1f5..49270606 100644 --- a/python/test/test_plot.py +++ b/python/test/test_plot.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_plot_output_format.py b/python/test/test_plot_output_format.py index 4cc3dbc2..a7ddc5ec 100644 --- a/python/test/test_plot_output_format.py +++ b/python/test/test_plot_output_format.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_plot_query_rectangle.py b/python/test/test_plot_query_rectangle.py index e52e3353..c984e842 100644 --- a/python/test/test_plot_query_rectangle.py +++ b/python/test/test_plot_query_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_plot_result_descriptor.py b/python/test/test_plot_result_descriptor.py index d7b9059e..8c9d5469 100644 --- a/python/test/test_plot_result_descriptor.py +++ b/python/test/test_plot_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_plot_update.py b/python/test/test_plot_update.py index e644590e..28cb70dd 100644 --- a/python/test/test_plot_update.py +++ b/python/test/test_plot_update.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_plots_api.py b/python/test/test_plots_api.py index 386b26e8..801ae52d 100644 --- a/python/test/test_plots_api.py +++ b/python/test/test_plots_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_point_symbology.py b/python/test/test_point_symbology.py index bc898f18..4c4c423a 100644 --- a/python/test/test_point_symbology.py +++ b/python/test/test_point_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_polygon_symbology.py b/python/test/test_polygon_symbology.py index 14e7dadb..75d8dcdc 100644 --- a/python/test/test_polygon_symbology.py +++ b/python/test/test_polygon_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_project.py b/python/test/test_project.py index d78a90a1..79946e26 100644 --- a/python/test/test_project.py +++ b/python/test/test_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_project_layer.py b/python/test/test_project_layer.py index 520d1984..37fe9a17 100644 --- a/python/test/test_project_layer.py +++ b/python/test/test_project_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_project_listing.py b/python/test/test_project_listing.py index 7e8b9a6b..f727143f 100644 --- a/python/test/test_project_listing.py +++ b/python/test/test_project_listing.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_project_resource.py b/python/test/test_project_resource.py index 30339878..7ba319b1 100644 --- a/python/test/test_project_resource.py +++ b/python/test/test_project_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_project_update_token.py b/python/test/test_project_update_token.py index fcd239fc..3804f8f4 100644 --- a/python/test/test_project_update_token.py +++ b/python/test/test_project_update_token.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_project_version.py b/python/test/test_project_version.py index 0ed4d6d4..3b73d581 100644 --- a/python/test/test_project_version.py +++ b/python/test/test_project_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_projects_api.py b/python/test/test_projects_api.py index e1eaf712..edd9f7dd 100644 --- a/python/test/test_projects_api.py +++ b/python/test/test_projects_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provenance.py b/python/test/test_provenance.py index 99ab834c..5e8d3404 100644 --- a/python/test/test_provenance.py +++ b/python/test/test_provenance.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provenance_entry.py b/python/test/test_provenance_entry.py index 4ebd944b..f29a33fa 100644 --- a/python/test/test_provenance_entry.py +++ b/python/test/test_provenance_entry.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provenance_output.py b/python/test/test_provenance_output.py index c2ad4cdf..8f86ac71 100644 --- a/python/test/test_provenance_output.py +++ b/python/test/test_provenance_output.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provenances.py b/python/test/test_provenances.py index f82d096e..2a94547a 100644 --- a/python/test/test_provenances.py +++ b/python/test/test_provenances.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provider_capabilities.py b/python/test/test_provider_capabilities.py index 5c023c14..a12cce2a 100644 --- a/python/test/test_provider_capabilities.py +++ b/python/test/test_provider_capabilities.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provider_layer_collection_id.py b/python/test/test_provider_layer_collection_id.py index 6bf14b73..1c30df71 100644 --- a/python/test/test_provider_layer_collection_id.py +++ b/python/test/test_provider_layer_collection_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_provider_layer_id.py b/python/test/test_provider_layer_id.py index 97bee0e8..d7164b6e 100644 --- a/python/test/test_provider_layer_id.py +++ b/python/test/test_provider_layer_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_quota.py b/python/test/test_quota.py index 1fdf9be8..e4a75128 100644 --- a/python/test/test_quota.py +++ b/python/test/test_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_band_descriptor.py b/python/test/test_raster_band_descriptor.py index eafaa34a..1808fdb1 100644 --- a/python/test/test_raster_band_descriptor.py +++ b/python/test/test_raster_band_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_colorizer.py b/python/test/test_raster_colorizer.py index ab2987bf..7af0490b 100644 --- a/python/test/test_raster_colorizer.py +++ b/python/test/test_raster_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_data_type.py b/python/test/test_raster_data_type.py index 75748ca0..4a409522 100644 --- a/python/test/test_raster_data_type.py +++ b/python/test/test_raster_data_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_dataset_from_workflow.py b/python/test/test_raster_dataset_from_workflow.py index 7fa021b6..a7030b56 100644 --- a/python/test/test_raster_dataset_from_workflow.py +++ b/python/test/test_raster_dataset_from_workflow.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_dataset_from_workflow_result.py b/python/test/test_raster_dataset_from_workflow_result.py index 86ab75cc..807218ae 100644 --- a/python/test/test_raster_dataset_from_workflow_result.py +++ b/python/test/test_raster_dataset_from_workflow_result.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_properties_entry_type.py b/python/test/test_raster_properties_entry_type.py index 1475def1..cc37e8ff 100644 --- a/python/test/test_raster_properties_entry_type.py +++ b/python/test/test_raster_properties_entry_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_properties_key.py b/python/test/test_raster_properties_key.py index 8b7bfc76..7088d238 100644 --- a/python/test/test_raster_properties_key.py +++ b/python/test/test_raster_properties_key.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_query_rectangle.py b/python/test/test_raster_query_rectangle.py index 8c02b2d1..b5d46b77 100644 --- a/python/test/test_raster_query_rectangle.py +++ b/python/test/test_raster_query_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_result_descriptor.py b/python/test/test_raster_result_descriptor.py index 80a79fd1..ace5ee51 100644 --- a/python/test/test_raster_result_descriptor.py +++ b/python/test/test_raster_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_stream_websocket_result_type.py b/python/test/test_raster_stream_websocket_result_type.py index b49b612b..92c93284 100644 --- a/python/test/test_raster_stream_websocket_result_type.py +++ b/python/test/test_raster_stream_websocket_result_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_raster_symbology.py b/python/test/test_raster_symbology.py index 17969d12..4e71494f 100644 --- a/python/test/test_raster_symbology.py +++ b/python/test/test_raster_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource.py b/python/test/test_resource.py index e8845281..d1e154fa 100644 --- a/python/test/test_resource.py +++ b/python/test/test_resource.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource_id.py b/python/test/test_resource_id.py index 44097209..8a75a079 100644 --- a/python/test/test_resource_id.py +++ b/python/test/test_resource_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource_id_dataset_id.py b/python/test/test_resource_id_dataset_id.py index ecc9a5e8..ca158c6d 100644 --- a/python/test/test_resource_id_dataset_id.py +++ b/python/test/test_resource_id_dataset_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource_id_layer.py b/python/test/test_resource_id_layer.py index b372bc13..e8e99cdc 100644 --- a/python/test/test_resource_id_layer.py +++ b/python/test/test_resource_id_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource_id_layer_collection.py b/python/test/test_resource_id_layer_collection.py index 3532623d..9ece6b13 100644 --- a/python/test/test_resource_id_layer_collection.py +++ b/python/test/test_resource_id_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource_id_ml_model.py b/python/test/test_resource_id_ml_model.py index e36eab49..d9b36b52 100644 --- a/python/test/test_resource_id_ml_model.py +++ b/python/test/test_resource_id_ml_model.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_resource_id_project.py b/python/test/test_resource_id_project.py index e3e94d97..102ae43d 100644 --- a/python/test/test_resource_id_project.py +++ b/python/test/test_resource_id_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_role.py b/python/test/test_role.py index 274a7f3d..8e8a6959 100644 --- a/python/test/test_role.py +++ b/python/test/test_role.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_role_description.py b/python/test/test_role_description.py index ec582b4d..db3ea38e 100644 --- a/python/test/test_role_description.py +++ b/python/test/test_role_description.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_search_capabilities.py b/python/test/test_search_capabilities.py index 568a7687..34059791 100644 --- a/python/test/test_search_capabilities.py +++ b/python/test/test_search_capabilities.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_search_type.py b/python/test/test_search_type.py index b6233101..3d8008c5 100644 --- a/python/test/test_search_type.py +++ b/python/test/test_search_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_search_types.py b/python/test/test_search_types.py index 89ad7ff3..4cf1dc0e 100644 --- a/python/test/test_search_types.py +++ b/python/test/test_search_types.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_server_info.py b/python/test/test_server_info.py index d77525a0..6d94e0ca 100644 --- a/python/test/test_server_info.py +++ b/python/test/test_server_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_session_api.py b/python/test/test_session_api.py index 418f92f1..b4cdebc9 100644 --- a/python/test/test_session_api.py +++ b/python/test/test_session_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_single_band_raster_colorizer.py b/python/test/test_single_band_raster_colorizer.py index 60affa17..23fd8b57 100644 --- a/python/test/test_single_band_raster_colorizer.py +++ b/python/test/test_single_band_raster_colorizer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_spatial_partition2_d.py b/python/test/test_spatial_partition2_d.py index 2a70e4c4..2b5d894c 100644 --- a/python/test/test_spatial_partition2_d.py +++ b/python/test/test_spatial_partition2_d.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_spatial_reference_authority.py b/python/test/test_spatial_reference_authority.py index aee59f2f..b95daa96 100644 --- a/python/test/test_spatial_reference_authority.py +++ b/python/test/test_spatial_reference_authority.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_spatial_reference_specification.py b/python/test/test_spatial_reference_specification.py index 6432bd09..b1dd24e8 100644 --- a/python/test/test_spatial_reference_specification.py +++ b/python/test/test_spatial_reference_specification.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_spatial_references_api.py b/python/test/test_spatial_references_api.py index d568249d..a958d0ec 100644 --- a/python/test/test_spatial_references_api.py +++ b/python/test/test_spatial_references_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_spatial_resolution.py b/python/test/test_spatial_resolution.py index 139c84c4..a410eec7 100644 --- a/python/test/test_spatial_resolution.py +++ b/python/test/test_spatial_resolution.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_st_rectangle.py b/python/test/test_st_rectangle.py index 38985b0e..27f21ce3 100644 --- a/python/test/test_st_rectangle.py +++ b/python/test/test_st_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_static_number_param.py b/python/test/test_static_number_param.py index 76975217..e90b10ec 100644 --- a/python/test/test_static_number_param.py +++ b/python/test/test_static_number_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_stroke_param.py b/python/test/test_stroke_param.py index def0a4fe..99cec95c 100644 --- a/python/test/test_stroke_param.py +++ b/python/test/test_stroke_param.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_suggest_meta_data.py b/python/test/test_suggest_meta_data.py index 3633640b..3407e716 100644 --- a/python/test/test_suggest_meta_data.py +++ b/python/test/test_suggest_meta_data.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_symbology.py b/python/test/test_symbology.py index 089c5c04..ab723a76 100644 --- a/python/test/test_symbology.py +++ b/python/test/test_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_abort_options.py b/python/test/test_task_abort_options.py index 0d24c427..8ea2879f 100644 --- a/python/test/test_task_abort_options.py +++ b/python/test/test_task_abort_options.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_filter.py b/python/test/test_task_filter.py index 708d3796..40b81b59 100644 --- a/python/test/test_task_filter.py +++ b/python/test/test_task_filter.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_list_options.py b/python/test/test_task_list_options.py index 2bbbd79b..ae2efa97 100644 --- a/python/test/test_task_list_options.py +++ b/python/test/test_task_list_options.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_response.py b/python/test/test_task_response.py index 02fdd014..c7a3fa26 100644 --- a/python/test/test_task_response.py +++ b/python/test/test_task_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_status.py b/python/test/test_task_status.py index cf3d07ee..2a845e9c 100644 --- a/python/test/test_task_status.py +++ b/python/test/test_task_status.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_status_aborted.py b/python/test/test_task_status_aborted.py index 313c0b5b..0cf42902 100644 --- a/python/test/test_task_status_aborted.py +++ b/python/test/test_task_status_aborted.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_status_completed.py b/python/test/test_task_status_completed.py index e6741b37..f9d41606 100644 --- a/python/test/test_task_status_completed.py +++ b/python/test/test_task_status_completed.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_status_failed.py b/python/test/test_task_status_failed.py index 47cab7c1..40d3131d 100644 --- a/python/test/test_task_status_failed.py +++ b/python/test/test_task_status_failed.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_status_running.py b/python/test/test_task_status_running.py index 5c87594e..4f26fdc8 100644 --- a/python/test/test_task_status_running.py +++ b/python/test/test_task_status_running.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_task_status_with_id.py b/python/test/test_task_status_with_id.py index bc75fddb..4114e961 100644 --- a/python/test/test_task_status_with_id.py +++ b/python/test/test_task_status_with_id.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_tasks_api.py b/python/test/test_tasks_api.py index e3437f5d..0d732241 100644 --- a/python/test/test_tasks_api.py +++ b/python/test/test_tasks_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_text_symbology.py b/python/test/test_text_symbology.py index 8beb39de..8f90ff76 100644 --- a/python/test/test_text_symbology.py +++ b/python/test/test_text_symbology.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_time_granularity.py b/python/test/test_time_granularity.py index 1599d094..9428c7ae 100644 --- a/python/test/test_time_granularity.py +++ b/python/test/test_time_granularity.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_time_interval.py b/python/test/test_time_interval.py index 5036231a..90b54ad3 100644 --- a/python/test/test_time_interval.py +++ b/python/test/test_time_interval.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_time_reference.py b/python/test/test_time_reference.py index f5910bb1..015adede 100644 --- a/python/test/test_time_reference.py +++ b/python/test/test_time_reference.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_time_step.py b/python/test/test_time_step.py index 3f745c59..4eeb13a4 100644 --- a/python/test/test_time_step.py +++ b/python/test/test_time_step.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_geometry.py b/python/test/test_typed_geometry.py index 45c6bce4..7f7a4e23 100644 --- a/python/test/test_typed_geometry.py +++ b/python/test/test_typed_geometry.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_geometry_one_of.py b/python/test/test_typed_geometry_one_of.py index 1d3a960f..11d99add 100644 --- a/python/test/test_typed_geometry_one_of.py +++ b/python/test/test_typed_geometry_one_of.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_geometry_one_of1.py b/python/test/test_typed_geometry_one_of1.py index d8739b42..1d41e8fa 100644 --- a/python/test/test_typed_geometry_one_of1.py +++ b/python/test/test_typed_geometry_one_of1.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_geometry_one_of2.py b/python/test/test_typed_geometry_one_of2.py index 1a564bb2..9b367c04 100644 --- a/python/test/test_typed_geometry_one_of2.py +++ b/python/test/test_typed_geometry_one_of2.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_geometry_one_of3.py b/python/test/test_typed_geometry_one_of3.py index 133ca303..53949b8b 100644 --- a/python/test/test_typed_geometry_one_of3.py +++ b/python/test/test_typed_geometry_one_of3.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_operator.py b/python/test/test_typed_operator.py index 414d9768..8292b549 100644 --- a/python/test/test_typed_operator.py +++ b/python/test/test_typed_operator.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_operator_operator.py b/python/test/test_typed_operator_operator.py index 80a6afba..2083eb93 100644 --- a/python/test/test_typed_operator_operator.py +++ b/python/test/test_typed_operator_operator.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_plot_result_descriptor.py b/python/test/test_typed_plot_result_descriptor.py index c6c37950..8344d178 100644 --- a/python/test/test_typed_plot_result_descriptor.py +++ b/python/test/test_typed_plot_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_raster_result_descriptor.py b/python/test/test_typed_raster_result_descriptor.py index 540d8519..259066f5 100644 --- a/python/test/test_typed_raster_result_descriptor.py +++ b/python/test/test_typed_raster_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_result_descriptor.py b/python/test/test_typed_result_descriptor.py index bd5c2915..b04a9eb1 100644 --- a/python/test/test_typed_result_descriptor.py +++ b/python/test/test_typed_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_typed_vector_result_descriptor.py b/python/test/test_typed_vector_result_descriptor.py index b6c79de3..7afe41cc 100644 --- a/python/test/test_typed_vector_result_descriptor.py +++ b/python/test/test_typed_vector_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_unitless_measurement.py b/python/test/test_unitless_measurement.py index f0fa68b0..7bdb8e7b 100644 --- a/python/test/test_unitless_measurement.py +++ b/python/test/test_unitless_measurement.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_unix_time_stamp_type.py b/python/test/test_unix_time_stamp_type.py index ef596fd9..7a6d991e 100644 --- a/python/test/test_unix_time_stamp_type.py +++ b/python/test/test_unix_time_stamp_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_update_dataset.py b/python/test/test_update_dataset.py index f5b3c790..9192c7fb 100644 --- a/python/test/test_update_dataset.py +++ b/python/test/test_update_dataset.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_update_layer.py b/python/test/test_update_layer.py index b9d0a2e5..dca8f20c 100644 --- a/python/test/test_update_layer.py +++ b/python/test/test_update_layer.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_update_layer_collection.py b/python/test/test_update_layer_collection.py index 3b75aeef..ef07cd14 100644 --- a/python/test/test_update_layer_collection.py +++ b/python/test/test_update_layer_collection.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_update_project.py b/python/test/test_update_project.py index e377859d..6453dbc9 100644 --- a/python/test/test_update_project.py +++ b/python/test/test_update_project.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_update_quota.py b/python/test/test_update_quota.py index a16f9a08..f793034d 100644 --- a/python/test/test_update_quota.py +++ b/python/test/test_update_quota.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_upload_file_layers_response.py b/python/test/test_upload_file_layers_response.py index e9264c21..6ca2b139 100644 --- a/python/test/test_upload_file_layers_response.py +++ b/python/test/test_upload_file_layers_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_upload_files_response.py b/python/test/test_upload_files_response.py index 4c5c205b..4e7218b5 100644 --- a/python/test/test_upload_files_response.py +++ b/python/test/test_upload_files_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_uploads_api.py b/python/test/test_uploads_api.py index 5c8d98f2..19615ffb 100644 --- a/python/test/test_uploads_api.py +++ b/python/test/test_uploads_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_usage_summary_granularity.py b/python/test/test_usage_summary_granularity.py index bca48741..3ff79209 100644 --- a/python/test/test_usage_summary_granularity.py +++ b/python/test/test_usage_summary_granularity.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_user_api.py b/python/test/test_user_api.py index c336e43f..017f13c1 100644 --- a/python/test/test_user_api.py +++ b/python/test/test_user_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_user_credentials.py b/python/test/test_user_credentials.py index 517e610f..870e7d7d 100644 --- a/python/test/test_user_credentials.py +++ b/python/test/test_user_credentials.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_user_info.py b/python/test/test_user_info.py index af1fdf5d..55fc4d74 100644 --- a/python/test/test_user_info.py +++ b/python/test/test_user_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_user_registration.py b/python/test/test_user_registration.py index 3b95b53f..14248155 100644 --- a/python/test/test_user_registration.py +++ b/python/test/test_user_registration.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_user_session.py b/python/test/test_user_session.py index f895ce74..d17c4dc6 100644 --- a/python/test/test_user_session.py +++ b/python/test/test_user_session.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_vector_column_info.py b/python/test/test_vector_column_info.py index 87d355b6..a24a3ae7 100644 --- a/python/test/test_vector_column_info.py +++ b/python/test/test_vector_column_info.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_vector_data_type.py b/python/test/test_vector_data_type.py index 061bb1ad..5858c17f 100644 --- a/python/test/test_vector_data_type.py +++ b/python/test/test_vector_data_type.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_vector_query_rectangle.py b/python/test/test_vector_query_rectangle.py index a54a010e..49a2e3a9 100644 --- a/python/test/test_vector_query_rectangle.py +++ b/python/test/test_vector_query_rectangle.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_vector_result_descriptor.py b/python/test/test_vector_result_descriptor.py index 1bc74980..b850e4d9 100644 --- a/python/test/test_vector_result_descriptor.py +++ b/python/test/test_vector_result_descriptor.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_volume.py b/python/test/test_volume.py index 143accbe..a202f8f9 100644 --- a/python/test/test_volume.py +++ b/python/test/test_volume.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_volume_file_layers_response.py b/python/test/test_volume_file_layers_response.py index baad8599..1519ef81 100644 --- a/python/test/test_volume_file_layers_response.py +++ b/python/test/test_volume_file_layers_response.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wcs_boundingbox.py b/python/test/test_wcs_boundingbox.py index ded5d33c..5d0e40e8 100644 --- a/python/test/test_wcs_boundingbox.py +++ b/python/test/test_wcs_boundingbox.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wcs_service.py b/python/test/test_wcs_service.py index 46563b4d..c9328602 100644 --- a/python/test/test_wcs_service.py +++ b/python/test/test_wcs_service.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wcs_version.py b/python/test/test_wcs_version.py index 8cd975bf..2d5802ff 100644 --- a/python/test/test_wcs_version.py +++ b/python/test/test_wcs_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wfs_service.py b/python/test/test_wfs_service.py index 7b8e9c94..b8619dbb 100644 --- a/python/test/test_wfs_service.py +++ b/python/test/test_wfs_service.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wfs_version.py b/python/test/test_wfs_version.py index 0a74cb7c..a9df7529 100644 --- a/python/test/test_wfs_version.py +++ b/python/test/test_wfs_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wms_service.py b/python/test/test_wms_service.py index cd372794..bbb5e126 100644 --- a/python/test/test_wms_service.py +++ b/python/test/test_wms_service.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wms_version.py b/python/test/test_wms_version.py index fa76d104..eb3b5189 100644 --- a/python/test/test_wms_version.py +++ b/python/test/test_wms_version.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_workflow.py b/python/test/test_workflow.py index dc9fbeba..50293e40 100644 --- a/python/test/test_workflow.py +++ b/python/test/test_workflow.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_workflows_api.py b/python/test/test_workflows_api.py index 1c0fcf58..fbdd0236 100644 --- a/python/test/test_workflows_api.py +++ b/python/test/test_workflows_api.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/python/test/test_wrapped_plot_output.py b/python/test/test_wrapped_plot_output.py index f86c2673..9ff6d690 100644 --- a/python/test/test_wrapped_plot_output.py +++ b/python/test/test_wrapped_plot_output.py @@ -1,7 +1,7 @@ # coding: utf-8 """ - Geo Engine Pro API + Geo Engine API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) diff --git a/typescript/dist/apis/DatasetsApi.d.ts b/typescript/dist/apis/DatasetsApi.d.ts index 0c6f3afc..e0b0422e 100644 --- a/typescript/dist/apis/DatasetsApi.d.ts +++ b/typescript/dist/apis/DatasetsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/DatasetsApi.js b/typescript/dist/apis/DatasetsApi.js index 602d29cf..65ef7d3d 100644 --- a/typescript/dist/apis/DatasetsApi.js +++ b/typescript/dist/apis/DatasetsApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/GeneralApi.d.ts b/typescript/dist/apis/GeneralApi.d.ts index 70e5a149..e2bb908a 100644 --- a/typescript/dist/apis/GeneralApi.d.ts +++ b/typescript/dist/apis/GeneralApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/GeneralApi.js b/typescript/dist/apis/GeneralApi.js index 8cd0c4ac..7cc55137 100644 --- a/typescript/dist/apis/GeneralApi.js +++ b/typescript/dist/apis/GeneralApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/LayersApi.d.ts b/typescript/dist/apis/LayersApi.d.ts index c4edcfb4..7deece7f 100644 --- a/typescript/dist/apis/LayersApi.d.ts +++ b/typescript/dist/apis/LayersApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/LayersApi.js b/typescript/dist/apis/LayersApi.js index 7d963408..8dc0068f 100644 --- a/typescript/dist/apis/LayersApi.js +++ b/typescript/dist/apis/LayersApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/MLApi.d.ts b/typescript/dist/apis/MLApi.d.ts index f665e3f9..7ffb4ba1 100644 --- a/typescript/dist/apis/MLApi.d.ts +++ b/typescript/dist/apis/MLApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/MLApi.js b/typescript/dist/apis/MLApi.js index 7b6fb20e..a7c97a01 100644 --- a/typescript/dist/apis/MLApi.js +++ b/typescript/dist/apis/MLApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/OGCWCSApi.d.ts b/typescript/dist/apis/OGCWCSApi.d.ts index c6332902..1300a177 100644 --- a/typescript/dist/apis/OGCWCSApi.d.ts +++ b/typescript/dist/apis/OGCWCSApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/OGCWCSApi.js b/typescript/dist/apis/OGCWCSApi.js index a3ac2495..c5aaa034 100644 --- a/typescript/dist/apis/OGCWCSApi.js +++ b/typescript/dist/apis/OGCWCSApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/OGCWFSApi.d.ts b/typescript/dist/apis/OGCWFSApi.d.ts index 13c999df..e784296b 100644 --- a/typescript/dist/apis/OGCWFSApi.d.ts +++ b/typescript/dist/apis/OGCWFSApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/OGCWFSApi.js b/typescript/dist/apis/OGCWFSApi.js index a4dccb15..fb4544ea 100644 --- a/typescript/dist/apis/OGCWFSApi.js +++ b/typescript/dist/apis/OGCWFSApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/OGCWMSApi.d.ts b/typescript/dist/apis/OGCWMSApi.d.ts index 4242b51b..abb19f7f 100644 --- a/typescript/dist/apis/OGCWMSApi.d.ts +++ b/typescript/dist/apis/OGCWMSApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/OGCWMSApi.js b/typescript/dist/apis/OGCWMSApi.js index 6bea4667..3fb0b8b8 100644 --- a/typescript/dist/apis/OGCWMSApi.js +++ b/typescript/dist/apis/OGCWMSApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/PermissionsApi.d.ts b/typescript/dist/apis/PermissionsApi.d.ts index 1b5d85a8..d43e3c9a 100644 --- a/typescript/dist/apis/PermissionsApi.d.ts +++ b/typescript/dist/apis/PermissionsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/PermissionsApi.js b/typescript/dist/apis/PermissionsApi.js index 1f21ec5f..b9914e4d 100644 --- a/typescript/dist/apis/PermissionsApi.js +++ b/typescript/dist/apis/PermissionsApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/PlotsApi.d.ts b/typescript/dist/apis/PlotsApi.d.ts index 78a76836..4827ac54 100644 --- a/typescript/dist/apis/PlotsApi.d.ts +++ b/typescript/dist/apis/PlotsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/PlotsApi.js b/typescript/dist/apis/PlotsApi.js index de1ade62..1f7c538a 100644 --- a/typescript/dist/apis/PlotsApi.js +++ b/typescript/dist/apis/PlotsApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/ProjectsApi.d.ts b/typescript/dist/apis/ProjectsApi.d.ts index d86ae9cb..e1dcedd5 100644 --- a/typescript/dist/apis/ProjectsApi.d.ts +++ b/typescript/dist/apis/ProjectsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/ProjectsApi.js b/typescript/dist/apis/ProjectsApi.js index f306740f..e00fdc70 100644 --- a/typescript/dist/apis/ProjectsApi.js +++ b/typescript/dist/apis/ProjectsApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/SessionApi.d.ts b/typescript/dist/apis/SessionApi.d.ts index 2f67d351..06bd9a55 100644 --- a/typescript/dist/apis/SessionApi.d.ts +++ b/typescript/dist/apis/SessionApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/SessionApi.js b/typescript/dist/apis/SessionApi.js index 4033ae05..8b925d67 100644 --- a/typescript/dist/apis/SessionApi.js +++ b/typescript/dist/apis/SessionApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/SpatialReferencesApi.d.ts b/typescript/dist/apis/SpatialReferencesApi.d.ts index c84e5d19..69199a94 100644 --- a/typescript/dist/apis/SpatialReferencesApi.d.ts +++ b/typescript/dist/apis/SpatialReferencesApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/SpatialReferencesApi.js b/typescript/dist/apis/SpatialReferencesApi.js index b90c1c31..69dfc01a 100644 --- a/typescript/dist/apis/SpatialReferencesApi.js +++ b/typescript/dist/apis/SpatialReferencesApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/TasksApi.d.ts b/typescript/dist/apis/TasksApi.d.ts index fc9a9c89..9e02928f 100644 --- a/typescript/dist/apis/TasksApi.d.ts +++ b/typescript/dist/apis/TasksApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/TasksApi.js b/typescript/dist/apis/TasksApi.js index b4dcf38d..0bc1ac99 100644 --- a/typescript/dist/apis/TasksApi.js +++ b/typescript/dist/apis/TasksApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/UploadsApi.d.ts b/typescript/dist/apis/UploadsApi.d.ts index ad5d6c10..698dcbda 100644 --- a/typescript/dist/apis/UploadsApi.d.ts +++ b/typescript/dist/apis/UploadsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/UploadsApi.js b/typescript/dist/apis/UploadsApi.js index 3c1907b2..530e03b7 100644 --- a/typescript/dist/apis/UploadsApi.js +++ b/typescript/dist/apis/UploadsApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/UserApi.d.ts b/typescript/dist/apis/UserApi.d.ts index 29fd5280..0d742dc5 100644 --- a/typescript/dist/apis/UserApi.d.ts +++ b/typescript/dist/apis/UserApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/UserApi.js b/typescript/dist/apis/UserApi.js index cbe24cde..0a96a8fb 100644 --- a/typescript/dist/apis/UserApi.js +++ b/typescript/dist/apis/UserApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/WorkflowsApi.d.ts b/typescript/dist/apis/WorkflowsApi.d.ts index a742d2bf..271ca5cc 100644 --- a/typescript/dist/apis/WorkflowsApi.d.ts +++ b/typescript/dist/apis/WorkflowsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/apis/WorkflowsApi.js b/typescript/dist/apis/WorkflowsApi.js index 381902ac..3596953a 100644 --- a/typescript/dist/apis/WorkflowsApi.js +++ b/typescript/dist/apis/WorkflowsApi.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/DatasetsApi.d.ts b/typescript/dist/esm/apis/DatasetsApi.d.ts index 0c6f3afc..e0b0422e 100644 --- a/typescript/dist/esm/apis/DatasetsApi.d.ts +++ b/typescript/dist/esm/apis/DatasetsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/DatasetsApi.js b/typescript/dist/esm/apis/DatasetsApi.js index 31d488b3..ee45919f 100644 --- a/typescript/dist/esm/apis/DatasetsApi.js +++ b/typescript/dist/esm/apis/DatasetsApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/GeneralApi.d.ts b/typescript/dist/esm/apis/GeneralApi.d.ts index 70e5a149..e2bb908a 100644 --- a/typescript/dist/esm/apis/GeneralApi.d.ts +++ b/typescript/dist/esm/apis/GeneralApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/GeneralApi.js b/typescript/dist/esm/apis/GeneralApi.js index c2b99022..0d4ea1c8 100644 --- a/typescript/dist/esm/apis/GeneralApi.js +++ b/typescript/dist/esm/apis/GeneralApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/LayersApi.d.ts b/typescript/dist/esm/apis/LayersApi.d.ts index c4edcfb4..7deece7f 100644 --- a/typescript/dist/esm/apis/LayersApi.d.ts +++ b/typescript/dist/esm/apis/LayersApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/LayersApi.js b/typescript/dist/esm/apis/LayersApi.js index 77422c02..c3366bc5 100644 --- a/typescript/dist/esm/apis/LayersApi.js +++ b/typescript/dist/esm/apis/LayersApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/MLApi.d.ts b/typescript/dist/esm/apis/MLApi.d.ts index f665e3f9..7ffb4ba1 100644 --- a/typescript/dist/esm/apis/MLApi.d.ts +++ b/typescript/dist/esm/apis/MLApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/MLApi.js b/typescript/dist/esm/apis/MLApi.js index f65b905e..5102e9ed 100644 --- a/typescript/dist/esm/apis/MLApi.js +++ b/typescript/dist/esm/apis/MLApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/OGCWCSApi.d.ts b/typescript/dist/esm/apis/OGCWCSApi.d.ts index c6332902..1300a177 100644 --- a/typescript/dist/esm/apis/OGCWCSApi.d.ts +++ b/typescript/dist/esm/apis/OGCWCSApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/OGCWCSApi.js b/typescript/dist/esm/apis/OGCWCSApi.js index e1e513e0..71b877d4 100644 --- a/typescript/dist/esm/apis/OGCWCSApi.js +++ b/typescript/dist/esm/apis/OGCWCSApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/OGCWFSApi.d.ts b/typescript/dist/esm/apis/OGCWFSApi.d.ts index 13c999df..e784296b 100644 --- a/typescript/dist/esm/apis/OGCWFSApi.d.ts +++ b/typescript/dist/esm/apis/OGCWFSApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/OGCWFSApi.js b/typescript/dist/esm/apis/OGCWFSApi.js index 05b66557..dae797ed 100644 --- a/typescript/dist/esm/apis/OGCWFSApi.js +++ b/typescript/dist/esm/apis/OGCWFSApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/OGCWMSApi.d.ts b/typescript/dist/esm/apis/OGCWMSApi.d.ts index 4242b51b..abb19f7f 100644 --- a/typescript/dist/esm/apis/OGCWMSApi.d.ts +++ b/typescript/dist/esm/apis/OGCWMSApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/OGCWMSApi.js b/typescript/dist/esm/apis/OGCWMSApi.js index 66f2fec1..23d02073 100644 --- a/typescript/dist/esm/apis/OGCWMSApi.js +++ b/typescript/dist/esm/apis/OGCWMSApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/PermissionsApi.d.ts b/typescript/dist/esm/apis/PermissionsApi.d.ts index 1b5d85a8..d43e3c9a 100644 --- a/typescript/dist/esm/apis/PermissionsApi.d.ts +++ b/typescript/dist/esm/apis/PermissionsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/PermissionsApi.js b/typescript/dist/esm/apis/PermissionsApi.js index fc5f063a..539dd213 100644 --- a/typescript/dist/esm/apis/PermissionsApi.js +++ b/typescript/dist/esm/apis/PermissionsApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/PlotsApi.d.ts b/typescript/dist/esm/apis/PlotsApi.d.ts index 78a76836..4827ac54 100644 --- a/typescript/dist/esm/apis/PlotsApi.d.ts +++ b/typescript/dist/esm/apis/PlotsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/PlotsApi.js b/typescript/dist/esm/apis/PlotsApi.js index 32a5e991..941d550a 100644 --- a/typescript/dist/esm/apis/PlotsApi.js +++ b/typescript/dist/esm/apis/PlotsApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/ProjectsApi.d.ts b/typescript/dist/esm/apis/ProjectsApi.d.ts index d86ae9cb..e1dcedd5 100644 --- a/typescript/dist/esm/apis/ProjectsApi.d.ts +++ b/typescript/dist/esm/apis/ProjectsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/ProjectsApi.js b/typescript/dist/esm/apis/ProjectsApi.js index fb10fde9..3b551245 100644 --- a/typescript/dist/esm/apis/ProjectsApi.js +++ b/typescript/dist/esm/apis/ProjectsApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/SessionApi.d.ts b/typescript/dist/esm/apis/SessionApi.d.ts index 2f67d351..06bd9a55 100644 --- a/typescript/dist/esm/apis/SessionApi.d.ts +++ b/typescript/dist/esm/apis/SessionApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/SessionApi.js b/typescript/dist/esm/apis/SessionApi.js index abdaaa65..5331ebb3 100644 --- a/typescript/dist/esm/apis/SessionApi.js +++ b/typescript/dist/esm/apis/SessionApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/SpatialReferencesApi.d.ts b/typescript/dist/esm/apis/SpatialReferencesApi.d.ts index c84e5d19..69199a94 100644 --- a/typescript/dist/esm/apis/SpatialReferencesApi.d.ts +++ b/typescript/dist/esm/apis/SpatialReferencesApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/SpatialReferencesApi.js b/typescript/dist/esm/apis/SpatialReferencesApi.js index 3d62ea28..54c305a2 100644 --- a/typescript/dist/esm/apis/SpatialReferencesApi.js +++ b/typescript/dist/esm/apis/SpatialReferencesApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/TasksApi.d.ts b/typescript/dist/esm/apis/TasksApi.d.ts index fc9a9c89..9e02928f 100644 --- a/typescript/dist/esm/apis/TasksApi.d.ts +++ b/typescript/dist/esm/apis/TasksApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/TasksApi.js b/typescript/dist/esm/apis/TasksApi.js index 86a6778e..a4282b34 100644 --- a/typescript/dist/esm/apis/TasksApi.js +++ b/typescript/dist/esm/apis/TasksApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/UploadsApi.d.ts b/typescript/dist/esm/apis/UploadsApi.d.ts index ad5d6c10..698dcbda 100644 --- a/typescript/dist/esm/apis/UploadsApi.d.ts +++ b/typescript/dist/esm/apis/UploadsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/UploadsApi.js b/typescript/dist/esm/apis/UploadsApi.js index 3e563660..d8de0a28 100644 --- a/typescript/dist/esm/apis/UploadsApi.js +++ b/typescript/dist/esm/apis/UploadsApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/UserApi.d.ts b/typescript/dist/esm/apis/UserApi.d.ts index 29fd5280..0d742dc5 100644 --- a/typescript/dist/esm/apis/UserApi.d.ts +++ b/typescript/dist/esm/apis/UserApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/UserApi.js b/typescript/dist/esm/apis/UserApi.js index a01641da..f9993052 100644 --- a/typescript/dist/esm/apis/UserApi.js +++ b/typescript/dist/esm/apis/UserApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/WorkflowsApi.d.ts b/typescript/dist/esm/apis/WorkflowsApi.d.ts index a742d2bf..271ca5cc 100644 --- a/typescript/dist/esm/apis/WorkflowsApi.d.ts +++ b/typescript/dist/esm/apis/WorkflowsApi.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/apis/WorkflowsApi.js b/typescript/dist/esm/apis/WorkflowsApi.js index ef0bfeae..aef70003 100644 --- a/typescript/dist/esm/apis/WorkflowsApi.js +++ b/typescript/dist/esm/apis/WorkflowsApi.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddCollection200Response.d.ts b/typescript/dist/esm/models/AddCollection200Response.d.ts index 9418a97a..88f8e1b0 100644 --- a/typescript/dist/esm/models/AddCollection200Response.d.ts +++ b/typescript/dist/esm/models/AddCollection200Response.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddCollection200Response.js b/typescript/dist/esm/models/AddCollection200Response.js index a0955c26..d3a44c1b 100644 --- a/typescript/dist/esm/models/AddCollection200Response.js +++ b/typescript/dist/esm/models/AddCollection200Response.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddDataset.d.ts b/typescript/dist/esm/models/AddDataset.d.ts index 5b105a94..4e6ef7b6 100644 --- a/typescript/dist/esm/models/AddDataset.d.ts +++ b/typescript/dist/esm/models/AddDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddDataset.js b/typescript/dist/esm/models/AddDataset.js index a5d02992..ccb7c110 100644 --- a/typescript/dist/esm/models/AddDataset.js +++ b/typescript/dist/esm/models/AddDataset.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddLayer.d.ts b/typescript/dist/esm/models/AddLayer.d.ts index 135273cd..340739e6 100644 --- a/typescript/dist/esm/models/AddLayer.d.ts +++ b/typescript/dist/esm/models/AddLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddLayer.js b/typescript/dist/esm/models/AddLayer.js index 6c1eb6c6..034bef96 100644 --- a/typescript/dist/esm/models/AddLayer.js +++ b/typescript/dist/esm/models/AddLayer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddLayerCollection.d.ts b/typescript/dist/esm/models/AddLayerCollection.d.ts index 4c865268..b3656b4a 100644 --- a/typescript/dist/esm/models/AddLayerCollection.d.ts +++ b/typescript/dist/esm/models/AddLayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddLayerCollection.js b/typescript/dist/esm/models/AddLayerCollection.js index 445b7e73..cac34ee2 100644 --- a/typescript/dist/esm/models/AddLayerCollection.js +++ b/typescript/dist/esm/models/AddLayerCollection.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddRole.d.ts b/typescript/dist/esm/models/AddRole.d.ts index c2a4969a..6a61c006 100644 --- a/typescript/dist/esm/models/AddRole.d.ts +++ b/typescript/dist/esm/models/AddRole.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AddRole.js b/typescript/dist/esm/models/AddRole.js index 3c61b155..4c51a32a 100644 --- a/typescript/dist/esm/models/AddRole.js +++ b/typescript/dist/esm/models/AddRole.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AuthCodeRequestURL.d.ts b/typescript/dist/esm/models/AuthCodeRequestURL.d.ts index 3ff95849..646b5413 100644 --- a/typescript/dist/esm/models/AuthCodeRequestURL.d.ts +++ b/typescript/dist/esm/models/AuthCodeRequestURL.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AuthCodeRequestURL.js b/typescript/dist/esm/models/AuthCodeRequestURL.js index 7df6479e..b81de2eb 100644 --- a/typescript/dist/esm/models/AuthCodeRequestURL.js +++ b/typescript/dist/esm/models/AuthCodeRequestURL.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AuthCodeResponse.d.ts b/typescript/dist/esm/models/AuthCodeResponse.d.ts index 8b32621b..bbcabaa8 100644 --- a/typescript/dist/esm/models/AuthCodeResponse.d.ts +++ b/typescript/dist/esm/models/AuthCodeResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AuthCodeResponse.js b/typescript/dist/esm/models/AuthCodeResponse.js index 51800807..1f935fb1 100644 --- a/typescript/dist/esm/models/AuthCodeResponse.js +++ b/typescript/dist/esm/models/AuthCodeResponse.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AutoCreateDataset.d.ts b/typescript/dist/esm/models/AutoCreateDataset.d.ts index 6c11cc49..e6077852 100644 --- a/typescript/dist/esm/models/AutoCreateDataset.d.ts +++ b/typescript/dist/esm/models/AutoCreateDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AutoCreateDataset.js b/typescript/dist/esm/models/AutoCreateDataset.js index 92552590..993ad8bd 100644 --- a/typescript/dist/esm/models/AutoCreateDataset.js +++ b/typescript/dist/esm/models/AutoCreateDataset.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AxisOrder.d.ts b/typescript/dist/esm/models/AxisOrder.d.ts index 4d1d4841..9bf43dd4 100644 --- a/typescript/dist/esm/models/AxisOrder.d.ts +++ b/typescript/dist/esm/models/AxisOrder.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/AxisOrder.js b/typescript/dist/esm/models/AxisOrder.js index 79b867ff..77eb464c 100644 --- a/typescript/dist/esm/models/AxisOrder.js +++ b/typescript/dist/esm/models/AxisOrder.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/BoundingBox2D.d.ts b/typescript/dist/esm/models/BoundingBox2D.d.ts index 22749240..eb528813 100644 --- a/typescript/dist/esm/models/BoundingBox2D.d.ts +++ b/typescript/dist/esm/models/BoundingBox2D.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/BoundingBox2D.js b/typescript/dist/esm/models/BoundingBox2D.js index 8604653e..ee525088 100644 --- a/typescript/dist/esm/models/BoundingBox2D.js +++ b/typescript/dist/esm/models/BoundingBox2D.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Breakpoint.d.ts b/typescript/dist/esm/models/Breakpoint.d.ts index 9fc4fad1..dbae252d 100644 --- a/typescript/dist/esm/models/Breakpoint.d.ts +++ b/typescript/dist/esm/models/Breakpoint.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Breakpoint.js b/typescript/dist/esm/models/Breakpoint.js index c069ef4a..7ff2caaf 100644 --- a/typescript/dist/esm/models/Breakpoint.js +++ b/typescript/dist/esm/models/Breakpoint.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ClassificationMeasurement.d.ts b/typescript/dist/esm/models/ClassificationMeasurement.d.ts index 5c9b7882..e209302f 100644 --- a/typescript/dist/esm/models/ClassificationMeasurement.d.ts +++ b/typescript/dist/esm/models/ClassificationMeasurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ClassificationMeasurement.js b/typescript/dist/esm/models/ClassificationMeasurement.js index 7df82477..3c4ebe40 100644 --- a/typescript/dist/esm/models/ClassificationMeasurement.js +++ b/typescript/dist/esm/models/ClassificationMeasurement.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CollectionItem.d.ts b/typescript/dist/esm/models/CollectionItem.d.ts index 4943ef32..7cd6117a 100644 --- a/typescript/dist/esm/models/CollectionItem.d.ts +++ b/typescript/dist/esm/models/CollectionItem.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CollectionItem.js b/typescript/dist/esm/models/CollectionItem.js index ca120b6b..7ad8e28f 100644 --- a/typescript/dist/esm/models/CollectionItem.js +++ b/typescript/dist/esm/models/CollectionItem.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CollectionType.d.ts b/typescript/dist/esm/models/CollectionType.d.ts index eb587c39..d3cceb54 100644 --- a/typescript/dist/esm/models/CollectionType.d.ts +++ b/typescript/dist/esm/models/CollectionType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CollectionType.js b/typescript/dist/esm/models/CollectionType.js index 75850b09..e02ecaaa 100644 --- a/typescript/dist/esm/models/CollectionType.js +++ b/typescript/dist/esm/models/CollectionType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ColorParam.d.ts b/typescript/dist/esm/models/ColorParam.d.ts index f47d5557..137c8b33 100644 --- a/typescript/dist/esm/models/ColorParam.d.ts +++ b/typescript/dist/esm/models/ColorParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ColorParam.js b/typescript/dist/esm/models/ColorParam.js index 50533e9b..e0941c50 100644 --- a/typescript/dist/esm/models/ColorParam.js +++ b/typescript/dist/esm/models/ColorParam.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ColorParamStatic.d.ts b/typescript/dist/esm/models/ColorParamStatic.d.ts index bdee30d2..3290501e 100644 --- a/typescript/dist/esm/models/ColorParamStatic.d.ts +++ b/typescript/dist/esm/models/ColorParamStatic.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ColorParamStatic.js b/typescript/dist/esm/models/ColorParamStatic.js index b2690a7a..b42b143e 100644 --- a/typescript/dist/esm/models/ColorParamStatic.js +++ b/typescript/dist/esm/models/ColorParamStatic.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Colorizer.d.ts b/typescript/dist/esm/models/Colorizer.d.ts index 83550c3b..83e37092 100644 --- a/typescript/dist/esm/models/Colorizer.d.ts +++ b/typescript/dist/esm/models/Colorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Colorizer.js b/typescript/dist/esm/models/Colorizer.js index 51182570..a5e4a1b5 100644 --- a/typescript/dist/esm/models/Colorizer.js +++ b/typescript/dist/esm/models/Colorizer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ComputationQuota.d.ts b/typescript/dist/esm/models/ComputationQuota.d.ts index 9b653e9d..7d671174 100644 --- a/typescript/dist/esm/models/ComputationQuota.d.ts +++ b/typescript/dist/esm/models/ComputationQuota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ComputationQuota.js b/typescript/dist/esm/models/ComputationQuota.js index 9c7c3750..b95ee77c 100644 --- a/typescript/dist/esm/models/ComputationQuota.js +++ b/typescript/dist/esm/models/ComputationQuota.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ContinuousMeasurement.d.ts b/typescript/dist/esm/models/ContinuousMeasurement.d.ts index 1b8ca4af..ab24d241 100644 --- a/typescript/dist/esm/models/ContinuousMeasurement.d.ts +++ b/typescript/dist/esm/models/ContinuousMeasurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ContinuousMeasurement.js b/typescript/dist/esm/models/ContinuousMeasurement.js index 3999d169..3e777f48 100644 --- a/typescript/dist/esm/models/ContinuousMeasurement.js +++ b/typescript/dist/esm/models/ContinuousMeasurement.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Coordinate2D.d.ts b/typescript/dist/esm/models/Coordinate2D.d.ts index 33d69db6..4f3192fa 100644 --- a/typescript/dist/esm/models/Coordinate2D.d.ts +++ b/typescript/dist/esm/models/Coordinate2D.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Coordinate2D.js b/typescript/dist/esm/models/Coordinate2D.js index fba5b900..161ecf83 100644 --- a/typescript/dist/esm/models/Coordinate2D.js +++ b/typescript/dist/esm/models/Coordinate2D.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CreateDataset.d.ts b/typescript/dist/esm/models/CreateDataset.d.ts index e8b24b25..fdacea9b 100644 --- a/typescript/dist/esm/models/CreateDataset.d.ts +++ b/typescript/dist/esm/models/CreateDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CreateDataset.js b/typescript/dist/esm/models/CreateDataset.js index 9ee9c2d7..39507102 100644 --- a/typescript/dist/esm/models/CreateDataset.js +++ b/typescript/dist/esm/models/CreateDataset.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CreateDatasetHandler200Response.d.ts b/typescript/dist/esm/models/CreateDatasetHandler200Response.d.ts index e388adb3..713bb809 100644 --- a/typescript/dist/esm/models/CreateDatasetHandler200Response.d.ts +++ b/typescript/dist/esm/models/CreateDatasetHandler200Response.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CreateDatasetHandler200Response.js b/typescript/dist/esm/models/CreateDatasetHandler200Response.js index a5e55add..4011aa2e 100644 --- a/typescript/dist/esm/models/CreateDatasetHandler200Response.js +++ b/typescript/dist/esm/models/CreateDatasetHandler200Response.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CreateProject.d.ts b/typescript/dist/esm/models/CreateProject.d.ts index d90c7499..597e2766 100644 --- a/typescript/dist/esm/models/CreateProject.d.ts +++ b/typescript/dist/esm/models/CreateProject.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CreateProject.js b/typescript/dist/esm/models/CreateProject.js index 71699798..e90bd93f 100644 --- a/typescript/dist/esm/models/CreateProject.js +++ b/typescript/dist/esm/models/CreateProject.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CsvHeader.d.ts b/typescript/dist/esm/models/CsvHeader.d.ts index 2134a86c..eeed3dbc 100644 --- a/typescript/dist/esm/models/CsvHeader.d.ts +++ b/typescript/dist/esm/models/CsvHeader.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/CsvHeader.js b/typescript/dist/esm/models/CsvHeader.js index 7ad1c77b..f233e2a1 100644 --- a/typescript/dist/esm/models/CsvHeader.js +++ b/typescript/dist/esm/models/CsvHeader.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataId.d.ts b/typescript/dist/esm/models/DataId.d.ts index 4f57866d..ab01e7ea 100644 --- a/typescript/dist/esm/models/DataId.d.ts +++ b/typescript/dist/esm/models/DataId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataId.js b/typescript/dist/esm/models/DataId.js index f64074d9..4fa9ca62 100644 --- a/typescript/dist/esm/models/DataId.js +++ b/typescript/dist/esm/models/DataId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataPath.d.ts b/typescript/dist/esm/models/DataPath.d.ts index bec06833..be15a3a0 100644 --- a/typescript/dist/esm/models/DataPath.d.ts +++ b/typescript/dist/esm/models/DataPath.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataPath.js b/typescript/dist/esm/models/DataPath.js index c242eae8..2c8d7e0f 100644 --- a/typescript/dist/esm/models/DataPath.js +++ b/typescript/dist/esm/models/DataPath.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataPathOneOf.d.ts b/typescript/dist/esm/models/DataPathOneOf.d.ts index edbf7468..b0816be4 100644 --- a/typescript/dist/esm/models/DataPathOneOf.d.ts +++ b/typescript/dist/esm/models/DataPathOneOf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataPathOneOf.js b/typescript/dist/esm/models/DataPathOneOf.js index 73ad7965..7518d325 100644 --- a/typescript/dist/esm/models/DataPathOneOf.js +++ b/typescript/dist/esm/models/DataPathOneOf.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataPathOneOf1.d.ts b/typescript/dist/esm/models/DataPathOneOf1.d.ts index 7ab6c1df..31d20891 100644 --- a/typescript/dist/esm/models/DataPathOneOf1.d.ts +++ b/typescript/dist/esm/models/DataPathOneOf1.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataPathOneOf1.js b/typescript/dist/esm/models/DataPathOneOf1.js index 5e5b5eb1..d7d0435a 100644 --- a/typescript/dist/esm/models/DataPathOneOf1.js +++ b/typescript/dist/esm/models/DataPathOneOf1.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataUsage.d.ts b/typescript/dist/esm/models/DataUsage.d.ts index 1b77f415..e4d2035e 100644 --- a/typescript/dist/esm/models/DataUsage.d.ts +++ b/typescript/dist/esm/models/DataUsage.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataUsage.js b/typescript/dist/esm/models/DataUsage.js index 76e88981..553a8c71 100644 --- a/typescript/dist/esm/models/DataUsage.js +++ b/typescript/dist/esm/models/DataUsage.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DataUsageSummary.d.ts b/typescript/dist/esm/models/DataUsageSummary.d.ts index c4b6d16a..37c28d1a 100644 --- a/typescript/dist/esm/models/DataUsageSummary.d.ts +++ b/typescript/dist/esm/models/DataUsageSummary.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 @@ -26,7 +26,7 @@ export interface DataUsageSummary { * @type {string} * @memberof DataUsageSummary */ - dataset: string; + data: string; /** * * @type {Date} diff --git a/typescript/dist/esm/models/DataUsageSummary.js b/typescript/dist/esm/models/DataUsageSummary.js index ddcb3aac..d7e63f62 100644 --- a/typescript/dist/esm/models/DataUsageSummary.js +++ b/typescript/dist/esm/models/DataUsageSummary.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 @@ -17,7 +17,7 @@ export function instanceOfDataUsageSummary(value) { let isInstance = true; isInstance = isInstance && "count" in value; - isInstance = isInstance && "dataset" in value; + isInstance = isInstance && "data" in value; isInstance = isInstance && "timestamp" in value; return isInstance; } @@ -30,7 +30,7 @@ export function DataUsageSummaryFromJSONTyped(json, ignoreDiscriminator) { } return { 'count': json['count'], - 'dataset': json['dataset'], + 'data': json['data'], 'timestamp': (new Date(json['timestamp'])), }; } @@ -43,7 +43,7 @@ export function DataUsageSummaryToJSON(value) { } return { 'count': value.count, - 'dataset': value.dataset, + 'data': value.data, 'timestamp': (value.timestamp.toISOString()), }; } diff --git a/typescript/dist/esm/models/Dataset.d.ts b/typescript/dist/esm/models/Dataset.d.ts index 7987197b..91ca3554 100644 --- a/typescript/dist/esm/models/Dataset.d.ts +++ b/typescript/dist/esm/models/Dataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Dataset.js b/typescript/dist/esm/models/Dataset.js index 340451ea..2f702377 100644 --- a/typescript/dist/esm/models/Dataset.js +++ b/typescript/dist/esm/models/Dataset.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DatasetDefinition.d.ts b/typescript/dist/esm/models/DatasetDefinition.d.ts index 1f3504e9..5f645eec 100644 --- a/typescript/dist/esm/models/DatasetDefinition.d.ts +++ b/typescript/dist/esm/models/DatasetDefinition.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DatasetDefinition.js b/typescript/dist/esm/models/DatasetDefinition.js index b8efe767..f06fa61d 100644 --- a/typescript/dist/esm/models/DatasetDefinition.js +++ b/typescript/dist/esm/models/DatasetDefinition.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DatasetListing.d.ts b/typescript/dist/esm/models/DatasetListing.d.ts index 7f5b18a2..f5c590ad 100644 --- a/typescript/dist/esm/models/DatasetListing.d.ts +++ b/typescript/dist/esm/models/DatasetListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DatasetListing.js b/typescript/dist/esm/models/DatasetListing.js index d66431ca..46943c0d 100644 --- a/typescript/dist/esm/models/DatasetListing.js +++ b/typescript/dist/esm/models/DatasetListing.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DatasetResource.d.ts b/typescript/dist/esm/models/DatasetResource.d.ts index 74b6ac1c..b2267d2d 100644 --- a/typescript/dist/esm/models/DatasetResource.d.ts +++ b/typescript/dist/esm/models/DatasetResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DatasetResource.js b/typescript/dist/esm/models/DatasetResource.js index b97a1758..ee6cd3ed 100644 --- a/typescript/dist/esm/models/DatasetResource.js +++ b/typescript/dist/esm/models/DatasetResource.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DateTime.d.ts b/typescript/dist/esm/models/DateTime.d.ts index 7a1cf7c2..15f27d04 100644 --- a/typescript/dist/esm/models/DateTime.d.ts +++ b/typescript/dist/esm/models/DateTime.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DateTime.js b/typescript/dist/esm/models/DateTime.js index b441fe2e..c6754309 100644 --- a/typescript/dist/esm/models/DateTime.js +++ b/typescript/dist/esm/models/DateTime.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DerivedColor.d.ts b/typescript/dist/esm/models/DerivedColor.d.ts index d0f3219c..d704d4b7 100644 --- a/typescript/dist/esm/models/DerivedColor.d.ts +++ b/typescript/dist/esm/models/DerivedColor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DerivedColor.js b/typescript/dist/esm/models/DerivedColor.js index 62e98553..669a33bc 100644 --- a/typescript/dist/esm/models/DerivedColor.js +++ b/typescript/dist/esm/models/DerivedColor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DerivedNumber.d.ts b/typescript/dist/esm/models/DerivedNumber.d.ts index 0bf8e9ee..6a21127b 100644 --- a/typescript/dist/esm/models/DerivedNumber.d.ts +++ b/typescript/dist/esm/models/DerivedNumber.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DerivedNumber.js b/typescript/dist/esm/models/DerivedNumber.js index f51928b1..146ff45d 100644 --- a/typescript/dist/esm/models/DerivedNumber.js +++ b/typescript/dist/esm/models/DerivedNumber.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DescribeCoverageRequest.d.ts b/typescript/dist/esm/models/DescribeCoverageRequest.d.ts index 72ca9eef..8abf5f19 100644 --- a/typescript/dist/esm/models/DescribeCoverageRequest.d.ts +++ b/typescript/dist/esm/models/DescribeCoverageRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/DescribeCoverageRequest.js b/typescript/dist/esm/models/DescribeCoverageRequest.js index 462c02c9..632e29b8 100644 --- a/typescript/dist/esm/models/DescribeCoverageRequest.js +++ b/typescript/dist/esm/models/DescribeCoverageRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ErrorResponse.d.ts b/typescript/dist/esm/models/ErrorResponse.d.ts index 9b88e83c..75036720 100644 --- a/typescript/dist/esm/models/ErrorResponse.d.ts +++ b/typescript/dist/esm/models/ErrorResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ErrorResponse.js b/typescript/dist/esm/models/ErrorResponse.js index a7b437be..0ccf7781 100644 --- a/typescript/dist/esm/models/ErrorResponse.js +++ b/typescript/dist/esm/models/ErrorResponse.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ExternalDataId.d.ts b/typescript/dist/esm/models/ExternalDataId.d.ts index 1ced1eea..cf1fd7d4 100644 --- a/typescript/dist/esm/models/ExternalDataId.d.ts +++ b/typescript/dist/esm/models/ExternalDataId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ExternalDataId.js b/typescript/dist/esm/models/ExternalDataId.js index f81bb463..7baa3f01 100644 --- a/typescript/dist/esm/models/ExternalDataId.js +++ b/typescript/dist/esm/models/ExternalDataId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FeatureDataType.d.ts b/typescript/dist/esm/models/FeatureDataType.d.ts index bd4c88c2..17a2b28c 100644 --- a/typescript/dist/esm/models/FeatureDataType.d.ts +++ b/typescript/dist/esm/models/FeatureDataType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FeatureDataType.js b/typescript/dist/esm/models/FeatureDataType.js index f8e81aab..4c9db2f0 100644 --- a/typescript/dist/esm/models/FeatureDataType.js +++ b/typescript/dist/esm/models/FeatureDataType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FileNotFoundHandling.d.ts b/typescript/dist/esm/models/FileNotFoundHandling.d.ts index a767d74c..e4aa2e05 100644 --- a/typescript/dist/esm/models/FileNotFoundHandling.d.ts +++ b/typescript/dist/esm/models/FileNotFoundHandling.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FileNotFoundHandling.js b/typescript/dist/esm/models/FileNotFoundHandling.js index 6aef3715..b90453f9 100644 --- a/typescript/dist/esm/models/FileNotFoundHandling.js +++ b/typescript/dist/esm/models/FileNotFoundHandling.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FormatSpecifics.d.ts b/typescript/dist/esm/models/FormatSpecifics.d.ts index d0866cc5..72050a4f 100644 --- a/typescript/dist/esm/models/FormatSpecifics.d.ts +++ b/typescript/dist/esm/models/FormatSpecifics.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FormatSpecifics.js b/typescript/dist/esm/models/FormatSpecifics.js index eb2f8a1f..75cd6ea7 100644 --- a/typescript/dist/esm/models/FormatSpecifics.js +++ b/typescript/dist/esm/models/FormatSpecifics.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FormatSpecificsOneOf.d.ts b/typescript/dist/esm/models/FormatSpecificsOneOf.d.ts index 05945763..fa56f7a9 100644 --- a/typescript/dist/esm/models/FormatSpecificsOneOf.d.ts +++ b/typescript/dist/esm/models/FormatSpecificsOneOf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FormatSpecificsOneOf.js b/typescript/dist/esm/models/FormatSpecificsOneOf.js index 9f33d50f..6473c6f9 100644 --- a/typescript/dist/esm/models/FormatSpecificsOneOf.js +++ b/typescript/dist/esm/models/FormatSpecificsOneOf.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FormatSpecificsOneOfCsv.d.ts b/typescript/dist/esm/models/FormatSpecificsOneOfCsv.d.ts index 7cfee94d..7a244c60 100644 --- a/typescript/dist/esm/models/FormatSpecificsOneOfCsv.d.ts +++ b/typescript/dist/esm/models/FormatSpecificsOneOfCsv.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/FormatSpecificsOneOfCsv.js b/typescript/dist/esm/models/FormatSpecificsOneOfCsv.js index 91417fd6..7170531f 100644 --- a/typescript/dist/esm/models/FormatSpecificsOneOfCsv.js +++ b/typescript/dist/esm/models/FormatSpecificsOneOfCsv.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalDatasetGeoTransform.d.ts b/typescript/dist/esm/models/GdalDatasetGeoTransform.d.ts index c3132b1d..b549b436 100644 --- a/typescript/dist/esm/models/GdalDatasetGeoTransform.d.ts +++ b/typescript/dist/esm/models/GdalDatasetGeoTransform.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalDatasetGeoTransform.js b/typescript/dist/esm/models/GdalDatasetGeoTransform.js index f71ebe24..e27f5b3f 100644 --- a/typescript/dist/esm/models/GdalDatasetGeoTransform.js +++ b/typescript/dist/esm/models/GdalDatasetGeoTransform.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalDatasetParameters.d.ts b/typescript/dist/esm/models/GdalDatasetParameters.d.ts index ae39a139..fa4ce808 100644 --- a/typescript/dist/esm/models/GdalDatasetParameters.d.ts +++ b/typescript/dist/esm/models/GdalDatasetParameters.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalDatasetParameters.js b/typescript/dist/esm/models/GdalDatasetParameters.js index 85ea35c2..615397ec 100644 --- a/typescript/dist/esm/models/GdalDatasetParameters.js +++ b/typescript/dist/esm/models/GdalDatasetParameters.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.d.ts b/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.d.ts index db746807..1d0e7df9 100644 --- a/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.d.ts +++ b/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.js b/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.js index 37a9513d..023b8761 100644 --- a/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.js +++ b/typescript/dist/esm/models/GdalLoadingInfoTemporalSlice.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetaDataList.d.ts b/typescript/dist/esm/models/GdalMetaDataList.d.ts index 1d912263..8f68482c 100644 --- a/typescript/dist/esm/models/GdalMetaDataList.d.ts +++ b/typescript/dist/esm/models/GdalMetaDataList.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetaDataList.js b/typescript/dist/esm/models/GdalMetaDataList.js index 97a6680a..331740d0 100644 --- a/typescript/dist/esm/models/GdalMetaDataList.js +++ b/typescript/dist/esm/models/GdalMetaDataList.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetaDataRegular.d.ts b/typescript/dist/esm/models/GdalMetaDataRegular.d.ts index 4ea5d110..04e5f784 100644 --- a/typescript/dist/esm/models/GdalMetaDataRegular.d.ts +++ b/typescript/dist/esm/models/GdalMetaDataRegular.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetaDataRegular.js b/typescript/dist/esm/models/GdalMetaDataRegular.js index d65c2d92..7f1de9c9 100644 --- a/typescript/dist/esm/models/GdalMetaDataRegular.js +++ b/typescript/dist/esm/models/GdalMetaDataRegular.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetaDataStatic.d.ts b/typescript/dist/esm/models/GdalMetaDataStatic.d.ts index 97e6c672..d06ae93e 100644 --- a/typescript/dist/esm/models/GdalMetaDataStatic.d.ts +++ b/typescript/dist/esm/models/GdalMetaDataStatic.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetaDataStatic.js b/typescript/dist/esm/models/GdalMetaDataStatic.js index 0c42606d..1f2007c4 100644 --- a/typescript/dist/esm/models/GdalMetaDataStatic.js +++ b/typescript/dist/esm/models/GdalMetaDataStatic.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetadataMapping.d.ts b/typescript/dist/esm/models/GdalMetadataMapping.d.ts index b9f87db0..3961e501 100644 --- a/typescript/dist/esm/models/GdalMetadataMapping.d.ts +++ b/typescript/dist/esm/models/GdalMetadataMapping.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetadataMapping.js b/typescript/dist/esm/models/GdalMetadataMapping.js index 5d5c5822..2a7dac15 100644 --- a/typescript/dist/esm/models/GdalMetadataMapping.js +++ b/typescript/dist/esm/models/GdalMetadataMapping.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetadataNetCdfCf.d.ts b/typescript/dist/esm/models/GdalMetadataNetCdfCf.d.ts index 5563fc86..cd177621 100644 --- a/typescript/dist/esm/models/GdalMetadataNetCdfCf.d.ts +++ b/typescript/dist/esm/models/GdalMetadataNetCdfCf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalMetadataNetCdfCf.js b/typescript/dist/esm/models/GdalMetadataNetCdfCf.js index 7fba3bfc..c88588ff 100644 --- a/typescript/dist/esm/models/GdalMetadataNetCdfCf.js +++ b/typescript/dist/esm/models/GdalMetadataNetCdfCf.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalSourceTimePlaceholder.d.ts b/typescript/dist/esm/models/GdalSourceTimePlaceholder.d.ts index 23f95bcb..15214023 100644 --- a/typescript/dist/esm/models/GdalSourceTimePlaceholder.d.ts +++ b/typescript/dist/esm/models/GdalSourceTimePlaceholder.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GdalSourceTimePlaceholder.js b/typescript/dist/esm/models/GdalSourceTimePlaceholder.js index 9e2f45cd..721a7e19 100644 --- a/typescript/dist/esm/models/GdalSourceTimePlaceholder.js +++ b/typescript/dist/esm/models/GdalSourceTimePlaceholder.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GeoJson.d.ts b/typescript/dist/esm/models/GeoJson.d.ts index 510559b4..004ba2d1 100644 --- a/typescript/dist/esm/models/GeoJson.d.ts +++ b/typescript/dist/esm/models/GeoJson.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GeoJson.js b/typescript/dist/esm/models/GeoJson.js index c5dfcb18..1a37daa9 100644 --- a/typescript/dist/esm/models/GeoJson.js +++ b/typescript/dist/esm/models/GeoJson.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCapabilitiesFormat.d.ts b/typescript/dist/esm/models/GetCapabilitiesFormat.d.ts index a822d770..95b0b23f 100644 --- a/typescript/dist/esm/models/GetCapabilitiesFormat.d.ts +++ b/typescript/dist/esm/models/GetCapabilitiesFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCapabilitiesFormat.js b/typescript/dist/esm/models/GetCapabilitiesFormat.js index 86027943..aa564537 100644 --- a/typescript/dist/esm/models/GetCapabilitiesFormat.js +++ b/typescript/dist/esm/models/GetCapabilitiesFormat.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCapabilitiesRequest.d.ts b/typescript/dist/esm/models/GetCapabilitiesRequest.d.ts index 5c91826c..c7df069d 100644 --- a/typescript/dist/esm/models/GetCapabilitiesRequest.d.ts +++ b/typescript/dist/esm/models/GetCapabilitiesRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCapabilitiesRequest.js b/typescript/dist/esm/models/GetCapabilitiesRequest.js index 712a5cf2..1fdb1008 100644 --- a/typescript/dist/esm/models/GetCapabilitiesRequest.js +++ b/typescript/dist/esm/models/GetCapabilitiesRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCoverageFormat.d.ts b/typescript/dist/esm/models/GetCoverageFormat.d.ts index 077351cc..dffbb0e8 100644 --- a/typescript/dist/esm/models/GetCoverageFormat.d.ts +++ b/typescript/dist/esm/models/GetCoverageFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCoverageFormat.js b/typescript/dist/esm/models/GetCoverageFormat.js index e29fc1f6..f30260a8 100644 --- a/typescript/dist/esm/models/GetCoverageFormat.js +++ b/typescript/dist/esm/models/GetCoverageFormat.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCoverageRequest.d.ts b/typescript/dist/esm/models/GetCoverageRequest.d.ts index 0371210d..34801895 100644 --- a/typescript/dist/esm/models/GetCoverageRequest.d.ts +++ b/typescript/dist/esm/models/GetCoverageRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetCoverageRequest.js b/typescript/dist/esm/models/GetCoverageRequest.js index 8381f5f7..ac570e03 100644 --- a/typescript/dist/esm/models/GetCoverageRequest.js +++ b/typescript/dist/esm/models/GetCoverageRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetFeatureRequest.d.ts b/typescript/dist/esm/models/GetFeatureRequest.d.ts index ce2353e3..3118dc0d 100644 --- a/typescript/dist/esm/models/GetFeatureRequest.d.ts +++ b/typescript/dist/esm/models/GetFeatureRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetFeatureRequest.js b/typescript/dist/esm/models/GetFeatureRequest.js index 2f13723c..54223538 100644 --- a/typescript/dist/esm/models/GetFeatureRequest.js +++ b/typescript/dist/esm/models/GetFeatureRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetLegendGraphicRequest.d.ts b/typescript/dist/esm/models/GetLegendGraphicRequest.d.ts index 7640e27f..ee086d0f 100644 --- a/typescript/dist/esm/models/GetLegendGraphicRequest.d.ts +++ b/typescript/dist/esm/models/GetLegendGraphicRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetLegendGraphicRequest.js b/typescript/dist/esm/models/GetLegendGraphicRequest.js index 3ed3a5cd..13069954 100644 --- a/typescript/dist/esm/models/GetLegendGraphicRequest.js +++ b/typescript/dist/esm/models/GetLegendGraphicRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetMapExceptionFormat.d.ts b/typescript/dist/esm/models/GetMapExceptionFormat.d.ts index 342cba80..bec87079 100644 --- a/typescript/dist/esm/models/GetMapExceptionFormat.d.ts +++ b/typescript/dist/esm/models/GetMapExceptionFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetMapExceptionFormat.js b/typescript/dist/esm/models/GetMapExceptionFormat.js index e40f1451..34368c9b 100644 --- a/typescript/dist/esm/models/GetMapExceptionFormat.js +++ b/typescript/dist/esm/models/GetMapExceptionFormat.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetMapFormat.d.ts b/typescript/dist/esm/models/GetMapFormat.d.ts index 898644db..ccbff908 100644 --- a/typescript/dist/esm/models/GetMapFormat.d.ts +++ b/typescript/dist/esm/models/GetMapFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetMapFormat.js b/typescript/dist/esm/models/GetMapFormat.js index 62fbefcb..1c1bff3e 100644 --- a/typescript/dist/esm/models/GetMapFormat.js +++ b/typescript/dist/esm/models/GetMapFormat.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetMapRequest.d.ts b/typescript/dist/esm/models/GetMapRequest.d.ts index fa2ddc77..afd0bf0b 100644 --- a/typescript/dist/esm/models/GetMapRequest.d.ts +++ b/typescript/dist/esm/models/GetMapRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/GetMapRequest.js b/typescript/dist/esm/models/GetMapRequest.js index b8566aa0..2377ff7e 100644 --- a/typescript/dist/esm/models/GetMapRequest.js +++ b/typescript/dist/esm/models/GetMapRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/InternalDataId.d.ts b/typescript/dist/esm/models/InternalDataId.d.ts index 3e144424..d2f3c909 100644 --- a/typescript/dist/esm/models/InternalDataId.d.ts +++ b/typescript/dist/esm/models/InternalDataId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/InternalDataId.js b/typescript/dist/esm/models/InternalDataId.js index 7653193f..41e0f5dd 100644 --- a/typescript/dist/esm/models/InternalDataId.js +++ b/typescript/dist/esm/models/InternalDataId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Layer.d.ts b/typescript/dist/esm/models/Layer.d.ts index f99b91b4..b7002503 100644 --- a/typescript/dist/esm/models/Layer.d.ts +++ b/typescript/dist/esm/models/Layer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Layer.js b/typescript/dist/esm/models/Layer.js index 343e3337..14368bd2 100644 --- a/typescript/dist/esm/models/Layer.js +++ b/typescript/dist/esm/models/Layer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerCollection.d.ts b/typescript/dist/esm/models/LayerCollection.d.ts index 4fb1068f..b9c0e178 100644 --- a/typescript/dist/esm/models/LayerCollection.d.ts +++ b/typescript/dist/esm/models/LayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerCollection.js b/typescript/dist/esm/models/LayerCollection.js index d4facb4c..d1ca0b25 100644 --- a/typescript/dist/esm/models/LayerCollection.js +++ b/typescript/dist/esm/models/LayerCollection.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerCollectionListing.d.ts b/typescript/dist/esm/models/LayerCollectionListing.d.ts index 95a8f513..e3a05c0e 100644 --- a/typescript/dist/esm/models/LayerCollectionListing.d.ts +++ b/typescript/dist/esm/models/LayerCollectionListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerCollectionListing.js b/typescript/dist/esm/models/LayerCollectionListing.js index 3b0d54bc..4d0470fb 100644 --- a/typescript/dist/esm/models/LayerCollectionListing.js +++ b/typescript/dist/esm/models/LayerCollectionListing.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerCollectionResource.d.ts b/typescript/dist/esm/models/LayerCollectionResource.d.ts index 78e48d6f..6daab6d0 100644 --- a/typescript/dist/esm/models/LayerCollectionResource.d.ts +++ b/typescript/dist/esm/models/LayerCollectionResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerCollectionResource.js b/typescript/dist/esm/models/LayerCollectionResource.js index 5d89bfc5..31c90a29 100644 --- a/typescript/dist/esm/models/LayerCollectionResource.js +++ b/typescript/dist/esm/models/LayerCollectionResource.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerListing.d.ts b/typescript/dist/esm/models/LayerListing.d.ts index 24432f77..c8a481ba 100644 --- a/typescript/dist/esm/models/LayerListing.d.ts +++ b/typescript/dist/esm/models/LayerListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerListing.js b/typescript/dist/esm/models/LayerListing.js index 7c8d18ed..9516170c 100644 --- a/typescript/dist/esm/models/LayerListing.js +++ b/typescript/dist/esm/models/LayerListing.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerResource.d.ts b/typescript/dist/esm/models/LayerResource.d.ts index 2d3e565b..70455cdd 100644 --- a/typescript/dist/esm/models/LayerResource.d.ts +++ b/typescript/dist/esm/models/LayerResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerResource.js b/typescript/dist/esm/models/LayerResource.js index 42b17eab..bbb9a101 100644 --- a/typescript/dist/esm/models/LayerResource.js +++ b/typescript/dist/esm/models/LayerResource.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerUpdate.d.ts b/typescript/dist/esm/models/LayerUpdate.d.ts index 9e441a95..ac3cfe51 100644 --- a/typescript/dist/esm/models/LayerUpdate.d.ts +++ b/typescript/dist/esm/models/LayerUpdate.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerUpdate.js b/typescript/dist/esm/models/LayerUpdate.js index c24afd07..15f09aaa 100644 --- a/typescript/dist/esm/models/LayerUpdate.js +++ b/typescript/dist/esm/models/LayerUpdate.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerVisibility.d.ts b/typescript/dist/esm/models/LayerVisibility.d.ts index e28a5041..65dc0aa0 100644 --- a/typescript/dist/esm/models/LayerVisibility.d.ts +++ b/typescript/dist/esm/models/LayerVisibility.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LayerVisibility.js b/typescript/dist/esm/models/LayerVisibility.js index a9ddf2e5..382e3daa 100644 --- a/typescript/dist/esm/models/LayerVisibility.js +++ b/typescript/dist/esm/models/LayerVisibility.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LineSymbology.d.ts b/typescript/dist/esm/models/LineSymbology.d.ts index 6f419be8..7a657fbe 100644 --- a/typescript/dist/esm/models/LineSymbology.d.ts +++ b/typescript/dist/esm/models/LineSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LineSymbology.js b/typescript/dist/esm/models/LineSymbology.js index 3d0161a1..ce4bb5d7 100644 --- a/typescript/dist/esm/models/LineSymbology.js +++ b/typescript/dist/esm/models/LineSymbology.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LinearGradient.d.ts b/typescript/dist/esm/models/LinearGradient.d.ts index 17dff1aa..f11f716f 100644 --- a/typescript/dist/esm/models/LinearGradient.d.ts +++ b/typescript/dist/esm/models/LinearGradient.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LinearGradient.js b/typescript/dist/esm/models/LinearGradient.js index 28071cce..b41bfaca 100644 --- a/typescript/dist/esm/models/LinearGradient.js +++ b/typescript/dist/esm/models/LinearGradient.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LogarithmicGradient.d.ts b/typescript/dist/esm/models/LogarithmicGradient.d.ts index db936c2c..3ca0a5d8 100644 --- a/typescript/dist/esm/models/LogarithmicGradient.d.ts +++ b/typescript/dist/esm/models/LogarithmicGradient.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/LogarithmicGradient.js b/typescript/dist/esm/models/LogarithmicGradient.js index 1b1adf22..3a454638 100644 --- a/typescript/dist/esm/models/LogarithmicGradient.js +++ b/typescript/dist/esm/models/LogarithmicGradient.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Measurement.d.ts b/typescript/dist/esm/models/Measurement.d.ts index 1a670329..6daef098 100644 --- a/typescript/dist/esm/models/Measurement.d.ts +++ b/typescript/dist/esm/models/Measurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Measurement.js b/typescript/dist/esm/models/Measurement.js index f53d9a5c..1c5f4002 100644 --- a/typescript/dist/esm/models/Measurement.js +++ b/typescript/dist/esm/models/Measurement.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MetaDataDefinition.d.ts b/typescript/dist/esm/models/MetaDataDefinition.d.ts index 80e8c10e..6f92b75b 100644 --- a/typescript/dist/esm/models/MetaDataDefinition.d.ts +++ b/typescript/dist/esm/models/MetaDataDefinition.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MetaDataDefinition.js b/typescript/dist/esm/models/MetaDataDefinition.js index b12f528f..25a97940 100644 --- a/typescript/dist/esm/models/MetaDataDefinition.js +++ b/typescript/dist/esm/models/MetaDataDefinition.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MetaDataSuggestion.d.ts b/typescript/dist/esm/models/MetaDataSuggestion.d.ts index b601d2ec..38460fb6 100644 --- a/typescript/dist/esm/models/MetaDataSuggestion.d.ts +++ b/typescript/dist/esm/models/MetaDataSuggestion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MetaDataSuggestion.js b/typescript/dist/esm/models/MetaDataSuggestion.js index d86ea421..14bf0381 100644 --- a/typescript/dist/esm/models/MetaDataSuggestion.js +++ b/typescript/dist/esm/models/MetaDataSuggestion.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MlModel.d.ts b/typescript/dist/esm/models/MlModel.d.ts index 9f01845f..73c636bf 100644 --- a/typescript/dist/esm/models/MlModel.d.ts +++ b/typescript/dist/esm/models/MlModel.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MlModel.js b/typescript/dist/esm/models/MlModel.js index 62b5d4df..f994ca64 100644 --- a/typescript/dist/esm/models/MlModel.js +++ b/typescript/dist/esm/models/MlModel.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MlModelMetadata.d.ts b/typescript/dist/esm/models/MlModelMetadata.d.ts index 8a7f989c..707778e9 100644 --- a/typescript/dist/esm/models/MlModelMetadata.d.ts +++ b/typescript/dist/esm/models/MlModelMetadata.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MlModelMetadata.js b/typescript/dist/esm/models/MlModelMetadata.js index 133947d4..07858d84 100644 --- a/typescript/dist/esm/models/MlModelMetadata.js +++ b/typescript/dist/esm/models/MlModelMetadata.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.d.ts b/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.d.ts index 7be92024..2bf35129 100644 --- a/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.d.ts +++ b/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.js b/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.js index 0543f3f6..0d9fcf44 100644 --- a/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.js +++ b/typescript/dist/esm/models/MockDatasetDataSourceLoadingInfo.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MockMetaData.d.ts b/typescript/dist/esm/models/MockMetaData.d.ts index 1fba07e5..e36586fb 100644 --- a/typescript/dist/esm/models/MockMetaData.d.ts +++ b/typescript/dist/esm/models/MockMetaData.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MockMetaData.js b/typescript/dist/esm/models/MockMetaData.js index fb20f8cf..e202081b 100644 --- a/typescript/dist/esm/models/MockMetaData.js +++ b/typescript/dist/esm/models/MockMetaData.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiBandRasterColorizer.d.ts b/typescript/dist/esm/models/MultiBandRasterColorizer.d.ts index dcb3db4c..c80dbea0 100644 --- a/typescript/dist/esm/models/MultiBandRasterColorizer.d.ts +++ b/typescript/dist/esm/models/MultiBandRasterColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiBandRasterColorizer.js b/typescript/dist/esm/models/MultiBandRasterColorizer.js index 3906d596..292199b4 100644 --- a/typescript/dist/esm/models/MultiBandRasterColorizer.js +++ b/typescript/dist/esm/models/MultiBandRasterColorizer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiLineString.d.ts b/typescript/dist/esm/models/MultiLineString.d.ts index eb5c0291..337af6e5 100644 --- a/typescript/dist/esm/models/MultiLineString.d.ts +++ b/typescript/dist/esm/models/MultiLineString.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiLineString.js b/typescript/dist/esm/models/MultiLineString.js index f6014216..4703b56c 100644 --- a/typescript/dist/esm/models/MultiLineString.js +++ b/typescript/dist/esm/models/MultiLineString.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiPoint.d.ts b/typescript/dist/esm/models/MultiPoint.d.ts index 33f91125..80e81b17 100644 --- a/typescript/dist/esm/models/MultiPoint.d.ts +++ b/typescript/dist/esm/models/MultiPoint.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiPoint.js b/typescript/dist/esm/models/MultiPoint.js index c8a05428..722bd401 100644 --- a/typescript/dist/esm/models/MultiPoint.js +++ b/typescript/dist/esm/models/MultiPoint.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiPolygon.d.ts b/typescript/dist/esm/models/MultiPolygon.d.ts index cbd1a4db..e6dbe06d 100644 --- a/typescript/dist/esm/models/MultiPolygon.d.ts +++ b/typescript/dist/esm/models/MultiPolygon.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/MultiPolygon.js b/typescript/dist/esm/models/MultiPolygon.js index 8957934c..c5943c8e 100644 --- a/typescript/dist/esm/models/MultiPolygon.js +++ b/typescript/dist/esm/models/MultiPolygon.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/NumberParam.d.ts b/typescript/dist/esm/models/NumberParam.d.ts index 5c55d29c..333d7c0c 100644 --- a/typescript/dist/esm/models/NumberParam.d.ts +++ b/typescript/dist/esm/models/NumberParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/NumberParam.js b/typescript/dist/esm/models/NumberParam.js index 0723402d..d9662321 100644 --- a/typescript/dist/esm/models/NumberParam.js +++ b/typescript/dist/esm/models/NumberParam.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrMetaData.d.ts b/typescript/dist/esm/models/OgrMetaData.d.ts index a96ac9ae..c6059211 100644 --- a/typescript/dist/esm/models/OgrMetaData.d.ts +++ b/typescript/dist/esm/models/OgrMetaData.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrMetaData.js b/typescript/dist/esm/models/OgrMetaData.js index 492b5523..0f521c4f 100644 --- a/typescript/dist/esm/models/OgrMetaData.js +++ b/typescript/dist/esm/models/OgrMetaData.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceColumnSpec.d.ts b/typescript/dist/esm/models/OgrSourceColumnSpec.d.ts index e4f5eeb2..f7c7d44a 100644 --- a/typescript/dist/esm/models/OgrSourceColumnSpec.d.ts +++ b/typescript/dist/esm/models/OgrSourceColumnSpec.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceColumnSpec.js b/typescript/dist/esm/models/OgrSourceColumnSpec.js index eff3fcec..0c7b3f82 100644 --- a/typescript/dist/esm/models/OgrSourceColumnSpec.js +++ b/typescript/dist/esm/models/OgrSourceColumnSpec.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDataset.d.ts b/typescript/dist/esm/models/OgrSourceDataset.d.ts index 15851e53..6e5b7de6 100644 --- a/typescript/dist/esm/models/OgrSourceDataset.d.ts +++ b/typescript/dist/esm/models/OgrSourceDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDataset.js b/typescript/dist/esm/models/OgrSourceDataset.js index 678310bd..bcfb9803 100644 --- a/typescript/dist/esm/models/OgrSourceDataset.js +++ b/typescript/dist/esm/models/OgrSourceDataset.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeType.d.ts b/typescript/dist/esm/models/OgrSourceDatasetTimeType.d.ts index a0b2e4c9..51015e5d 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeType.d.ts +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeType.js b/typescript/dist/esm/models/OgrSourceDatasetTimeType.js index d058a12c..e763a0a0 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeType.js +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.d.ts b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.d.ts index f4069167..203a9b35 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.d.ts +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.js b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.js index 7ca0ce73..a07e7154 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.js +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeNone.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.d.ts b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.d.ts index 3e148e3d..531be6c5 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.d.ts +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.js b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.js index 58994e4b..1bf3e281 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.js +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStart.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.d.ts b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.d.ts index fe04b281..82606c14 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.d.ts +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.js b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.js index 5b9b5d9e..ba899596 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.js +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartDuration.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.d.ts b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.d.ts index c3facdee..8b43d91e 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.d.ts +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.js b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.js index 292d50ad..cd3c08bd 100644 --- a/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.js +++ b/typescript/dist/esm/models/OgrSourceDatasetTimeTypeStartEnd.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpec.d.ts b/typescript/dist/esm/models/OgrSourceDurationSpec.d.ts index 5eec41c7..b1f02113 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpec.d.ts +++ b/typescript/dist/esm/models/OgrSourceDurationSpec.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpec.js b/typescript/dist/esm/models/OgrSourceDurationSpec.js index fbe21156..75ca9148 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpec.js +++ b/typescript/dist/esm/models/OgrSourceDurationSpec.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.d.ts b/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.d.ts index eb652503..016d6fdf 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.d.ts +++ b/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.js b/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.js index 152b9950..c7a2741e 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.js +++ b/typescript/dist/esm/models/OgrSourceDurationSpecInfinite.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpecValue.d.ts b/typescript/dist/esm/models/OgrSourceDurationSpecValue.d.ts index 8cb29151..f3d08292 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpecValue.d.ts +++ b/typescript/dist/esm/models/OgrSourceDurationSpecValue.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpecValue.js b/typescript/dist/esm/models/OgrSourceDurationSpecValue.js index 65f28051..c6aaf43f 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpecValue.js +++ b/typescript/dist/esm/models/OgrSourceDurationSpecValue.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpecZero.d.ts b/typescript/dist/esm/models/OgrSourceDurationSpecZero.d.ts index b6f8e85c..8ac91d5d 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpecZero.d.ts +++ b/typescript/dist/esm/models/OgrSourceDurationSpecZero.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceDurationSpecZero.js b/typescript/dist/esm/models/OgrSourceDurationSpecZero.js index c8426df2..9af43899 100644 --- a/typescript/dist/esm/models/OgrSourceDurationSpecZero.js +++ b/typescript/dist/esm/models/OgrSourceDurationSpecZero.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceErrorSpec.d.ts b/typescript/dist/esm/models/OgrSourceErrorSpec.d.ts index a65d12d3..95c78fbc 100644 --- a/typescript/dist/esm/models/OgrSourceErrorSpec.d.ts +++ b/typescript/dist/esm/models/OgrSourceErrorSpec.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceErrorSpec.js b/typescript/dist/esm/models/OgrSourceErrorSpec.js index d20a8e2b..d20a3f96 100644 --- a/typescript/dist/esm/models/OgrSourceErrorSpec.js +++ b/typescript/dist/esm/models/OgrSourceErrorSpec.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormat.d.ts b/typescript/dist/esm/models/OgrSourceTimeFormat.d.ts index 427cba99..b56aa051 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormat.d.ts +++ b/typescript/dist/esm/models/OgrSourceTimeFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormat.js b/typescript/dist/esm/models/OgrSourceTimeFormat.js index 695cc5b7..c962dd74 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormat.js +++ b/typescript/dist/esm/models/OgrSourceTimeFormat.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormatAuto.d.ts b/typescript/dist/esm/models/OgrSourceTimeFormatAuto.d.ts index 26e0087c..d2fd2ec4 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormatAuto.d.ts +++ b/typescript/dist/esm/models/OgrSourceTimeFormatAuto.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormatAuto.js b/typescript/dist/esm/models/OgrSourceTimeFormatAuto.js index abfb9cf7..bdb8a1e1 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormatAuto.js +++ b/typescript/dist/esm/models/OgrSourceTimeFormatAuto.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormatCustom.d.ts b/typescript/dist/esm/models/OgrSourceTimeFormatCustom.d.ts index 24d78d3f..b71778da 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormatCustom.d.ts +++ b/typescript/dist/esm/models/OgrSourceTimeFormatCustom.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormatCustom.js b/typescript/dist/esm/models/OgrSourceTimeFormatCustom.js index d1b11cb8..afc0382b 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormatCustom.js +++ b/typescript/dist/esm/models/OgrSourceTimeFormatCustom.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.d.ts b/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.d.ts index 102719ee..74dea859 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.d.ts +++ b/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.js b/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.js index 6e036e60..0cc43af5 100644 --- a/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.js +++ b/typescript/dist/esm/models/OgrSourceTimeFormatUnixTimeStamp.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OperatorQuota.d.ts b/typescript/dist/esm/models/OperatorQuota.d.ts index e167005d..d49b4a83 100644 --- a/typescript/dist/esm/models/OperatorQuota.d.ts +++ b/typescript/dist/esm/models/OperatorQuota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OperatorQuota.js b/typescript/dist/esm/models/OperatorQuota.js index 8028eac5..38f252f8 100644 --- a/typescript/dist/esm/models/OperatorQuota.js +++ b/typescript/dist/esm/models/OperatorQuota.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OrderBy.d.ts b/typescript/dist/esm/models/OrderBy.d.ts index b69dfab6..a7c3f0d8 100644 --- a/typescript/dist/esm/models/OrderBy.d.ts +++ b/typescript/dist/esm/models/OrderBy.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/OrderBy.js b/typescript/dist/esm/models/OrderBy.js index 086892b2..7ccd343d 100644 --- a/typescript/dist/esm/models/OrderBy.js +++ b/typescript/dist/esm/models/OrderBy.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PaletteColorizer.d.ts b/typescript/dist/esm/models/PaletteColorizer.d.ts index 19ea6217..5bb17d4f 100644 --- a/typescript/dist/esm/models/PaletteColorizer.d.ts +++ b/typescript/dist/esm/models/PaletteColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PaletteColorizer.js b/typescript/dist/esm/models/PaletteColorizer.js index 408607ec..119f69de 100644 --- a/typescript/dist/esm/models/PaletteColorizer.js +++ b/typescript/dist/esm/models/PaletteColorizer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Permission.d.ts b/typescript/dist/esm/models/Permission.d.ts index 67c41fd3..536e9c9b 100644 --- a/typescript/dist/esm/models/Permission.d.ts +++ b/typescript/dist/esm/models/Permission.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Permission.js b/typescript/dist/esm/models/Permission.js index 4a45226c..5b37fb0f 100644 --- a/typescript/dist/esm/models/Permission.js +++ b/typescript/dist/esm/models/Permission.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PermissionListOptions.d.ts b/typescript/dist/esm/models/PermissionListOptions.d.ts index 1dec9d8c..8421c48c 100644 --- a/typescript/dist/esm/models/PermissionListOptions.d.ts +++ b/typescript/dist/esm/models/PermissionListOptions.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PermissionListOptions.js b/typescript/dist/esm/models/PermissionListOptions.js index a510a18d..851ee8d6 100644 --- a/typescript/dist/esm/models/PermissionListOptions.js +++ b/typescript/dist/esm/models/PermissionListOptions.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PermissionListing.d.ts b/typescript/dist/esm/models/PermissionListing.d.ts index ce4766d7..fe90496e 100644 --- a/typescript/dist/esm/models/PermissionListing.d.ts +++ b/typescript/dist/esm/models/PermissionListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PermissionListing.js b/typescript/dist/esm/models/PermissionListing.js index 56c88096..e77018ac 100644 --- a/typescript/dist/esm/models/PermissionListing.js +++ b/typescript/dist/esm/models/PermissionListing.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PermissionRequest.d.ts b/typescript/dist/esm/models/PermissionRequest.d.ts index 68cc3e26..b7d92f5e 100644 --- a/typescript/dist/esm/models/PermissionRequest.d.ts +++ b/typescript/dist/esm/models/PermissionRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PermissionRequest.js b/typescript/dist/esm/models/PermissionRequest.js index ee97242e..1b079130 100644 --- a/typescript/dist/esm/models/PermissionRequest.js +++ b/typescript/dist/esm/models/PermissionRequest.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Plot.d.ts b/typescript/dist/esm/models/Plot.d.ts index 6538d0aa..6d14ad5b 100644 --- a/typescript/dist/esm/models/Plot.d.ts +++ b/typescript/dist/esm/models/Plot.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Plot.js b/typescript/dist/esm/models/Plot.js index 3be40f2a..3e24a8a0 100644 --- a/typescript/dist/esm/models/Plot.js +++ b/typescript/dist/esm/models/Plot.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotOutputFormat.d.ts b/typescript/dist/esm/models/PlotOutputFormat.d.ts index 6dac90ef..ab9a0b29 100644 --- a/typescript/dist/esm/models/PlotOutputFormat.d.ts +++ b/typescript/dist/esm/models/PlotOutputFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotOutputFormat.js b/typescript/dist/esm/models/PlotOutputFormat.js index 2641ef10..10d8d8ef 100644 --- a/typescript/dist/esm/models/PlotOutputFormat.js +++ b/typescript/dist/esm/models/PlotOutputFormat.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotQueryRectangle.d.ts b/typescript/dist/esm/models/PlotQueryRectangle.d.ts index c544b8ad..1262e22d 100644 --- a/typescript/dist/esm/models/PlotQueryRectangle.d.ts +++ b/typescript/dist/esm/models/PlotQueryRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotQueryRectangle.js b/typescript/dist/esm/models/PlotQueryRectangle.js index 177fdf10..4e17b71a 100644 --- a/typescript/dist/esm/models/PlotQueryRectangle.js +++ b/typescript/dist/esm/models/PlotQueryRectangle.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotResultDescriptor.d.ts b/typescript/dist/esm/models/PlotResultDescriptor.d.ts index 38450547..159861ce 100644 --- a/typescript/dist/esm/models/PlotResultDescriptor.d.ts +++ b/typescript/dist/esm/models/PlotResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotResultDescriptor.js b/typescript/dist/esm/models/PlotResultDescriptor.js index 9bedce80..78fc5383 100644 --- a/typescript/dist/esm/models/PlotResultDescriptor.js +++ b/typescript/dist/esm/models/PlotResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotUpdate.d.ts b/typescript/dist/esm/models/PlotUpdate.d.ts index 47662e94..422a95b0 100644 --- a/typescript/dist/esm/models/PlotUpdate.d.ts +++ b/typescript/dist/esm/models/PlotUpdate.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PlotUpdate.js b/typescript/dist/esm/models/PlotUpdate.js index 87cf143a..24f96370 100644 --- a/typescript/dist/esm/models/PlotUpdate.js +++ b/typescript/dist/esm/models/PlotUpdate.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PointSymbology.d.ts b/typescript/dist/esm/models/PointSymbology.d.ts index 8cc9e97f..93f7ef4f 100644 --- a/typescript/dist/esm/models/PointSymbology.d.ts +++ b/typescript/dist/esm/models/PointSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PointSymbology.js b/typescript/dist/esm/models/PointSymbology.js index c3715330..031d130d 100644 --- a/typescript/dist/esm/models/PointSymbology.js +++ b/typescript/dist/esm/models/PointSymbology.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PolygonSymbology.d.ts b/typescript/dist/esm/models/PolygonSymbology.d.ts index 7b0369cf..33e2c149 100644 --- a/typescript/dist/esm/models/PolygonSymbology.d.ts +++ b/typescript/dist/esm/models/PolygonSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/PolygonSymbology.js b/typescript/dist/esm/models/PolygonSymbology.js index 7ff48568..4ae4cb42 100644 --- a/typescript/dist/esm/models/PolygonSymbology.js +++ b/typescript/dist/esm/models/PolygonSymbology.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Project.d.ts b/typescript/dist/esm/models/Project.d.ts index 496cf125..db1736f6 100644 --- a/typescript/dist/esm/models/Project.d.ts +++ b/typescript/dist/esm/models/Project.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Project.js b/typescript/dist/esm/models/Project.js index 55339e4f..26c2b8f4 100644 --- a/typescript/dist/esm/models/Project.js +++ b/typescript/dist/esm/models/Project.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectLayer.d.ts b/typescript/dist/esm/models/ProjectLayer.d.ts index dd40ec88..67280de1 100644 --- a/typescript/dist/esm/models/ProjectLayer.d.ts +++ b/typescript/dist/esm/models/ProjectLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectLayer.js b/typescript/dist/esm/models/ProjectLayer.js index 4d22d060..b2d5c9df 100644 --- a/typescript/dist/esm/models/ProjectLayer.js +++ b/typescript/dist/esm/models/ProjectLayer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectListing.d.ts b/typescript/dist/esm/models/ProjectListing.d.ts index b3f4dfe5..4d755f72 100644 --- a/typescript/dist/esm/models/ProjectListing.d.ts +++ b/typescript/dist/esm/models/ProjectListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectListing.js b/typescript/dist/esm/models/ProjectListing.js index 562ddd4d..7fd3e3bd 100644 --- a/typescript/dist/esm/models/ProjectListing.js +++ b/typescript/dist/esm/models/ProjectListing.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectResource.d.ts b/typescript/dist/esm/models/ProjectResource.d.ts index 8551b02e..3f17fdca 100644 --- a/typescript/dist/esm/models/ProjectResource.d.ts +++ b/typescript/dist/esm/models/ProjectResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectResource.js b/typescript/dist/esm/models/ProjectResource.js index f4aa015c..feff8244 100644 --- a/typescript/dist/esm/models/ProjectResource.js +++ b/typescript/dist/esm/models/ProjectResource.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectUpdateToken.d.ts b/typescript/dist/esm/models/ProjectUpdateToken.d.ts index 85584b5d..b774adf5 100644 --- a/typescript/dist/esm/models/ProjectUpdateToken.d.ts +++ b/typescript/dist/esm/models/ProjectUpdateToken.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectUpdateToken.js b/typescript/dist/esm/models/ProjectUpdateToken.js index ab46ba1f..09db844a 100644 --- a/typescript/dist/esm/models/ProjectUpdateToken.js +++ b/typescript/dist/esm/models/ProjectUpdateToken.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectVersion.d.ts b/typescript/dist/esm/models/ProjectVersion.d.ts index 2f86ea2a..53c498d3 100644 --- a/typescript/dist/esm/models/ProjectVersion.d.ts +++ b/typescript/dist/esm/models/ProjectVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProjectVersion.js b/typescript/dist/esm/models/ProjectVersion.js index 55e9b2b6..0d061e64 100644 --- a/typescript/dist/esm/models/ProjectVersion.js +++ b/typescript/dist/esm/models/ProjectVersion.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Provenance.d.ts b/typescript/dist/esm/models/Provenance.d.ts index a2c29e36..27abef59 100644 --- a/typescript/dist/esm/models/Provenance.d.ts +++ b/typescript/dist/esm/models/Provenance.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Provenance.js b/typescript/dist/esm/models/Provenance.js index 4160e492..037d0df9 100644 --- a/typescript/dist/esm/models/Provenance.js +++ b/typescript/dist/esm/models/Provenance.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProvenanceEntry.d.ts b/typescript/dist/esm/models/ProvenanceEntry.d.ts index ce85000f..201905bc 100644 --- a/typescript/dist/esm/models/ProvenanceEntry.d.ts +++ b/typescript/dist/esm/models/ProvenanceEntry.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProvenanceEntry.js b/typescript/dist/esm/models/ProvenanceEntry.js index 275b38e9..9fcb78a3 100644 --- a/typescript/dist/esm/models/ProvenanceEntry.js +++ b/typescript/dist/esm/models/ProvenanceEntry.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProvenanceOutput.d.ts b/typescript/dist/esm/models/ProvenanceOutput.d.ts index c2c99b80..4db62aef 100644 --- a/typescript/dist/esm/models/ProvenanceOutput.d.ts +++ b/typescript/dist/esm/models/ProvenanceOutput.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProvenanceOutput.js b/typescript/dist/esm/models/ProvenanceOutput.js index 3077a75b..5af6be4e 100644 --- a/typescript/dist/esm/models/ProvenanceOutput.js +++ b/typescript/dist/esm/models/ProvenanceOutput.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Provenances.d.ts b/typescript/dist/esm/models/Provenances.d.ts index 6a77133a..3396296e 100644 --- a/typescript/dist/esm/models/Provenances.d.ts +++ b/typescript/dist/esm/models/Provenances.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Provenances.js b/typescript/dist/esm/models/Provenances.js index 8848fd09..ba78fa91 100644 --- a/typescript/dist/esm/models/Provenances.js +++ b/typescript/dist/esm/models/Provenances.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProviderCapabilities.d.ts b/typescript/dist/esm/models/ProviderCapabilities.d.ts index 2b3b77db..09c7c0ed 100644 --- a/typescript/dist/esm/models/ProviderCapabilities.d.ts +++ b/typescript/dist/esm/models/ProviderCapabilities.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProviderCapabilities.js b/typescript/dist/esm/models/ProviderCapabilities.js index d303dc00..6408fd2c 100644 --- a/typescript/dist/esm/models/ProviderCapabilities.js +++ b/typescript/dist/esm/models/ProviderCapabilities.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProviderLayerCollectionId.d.ts b/typescript/dist/esm/models/ProviderLayerCollectionId.d.ts index 05003061..2ee909ae 100644 --- a/typescript/dist/esm/models/ProviderLayerCollectionId.d.ts +++ b/typescript/dist/esm/models/ProviderLayerCollectionId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProviderLayerCollectionId.js b/typescript/dist/esm/models/ProviderLayerCollectionId.js index a2b61c65..af783993 100644 --- a/typescript/dist/esm/models/ProviderLayerCollectionId.js +++ b/typescript/dist/esm/models/ProviderLayerCollectionId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProviderLayerId.d.ts b/typescript/dist/esm/models/ProviderLayerId.d.ts index c6805a41..a116a721 100644 --- a/typescript/dist/esm/models/ProviderLayerId.d.ts +++ b/typescript/dist/esm/models/ProviderLayerId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ProviderLayerId.js b/typescript/dist/esm/models/ProviderLayerId.js index aad04dfd..f9451905 100644 --- a/typescript/dist/esm/models/ProviderLayerId.js +++ b/typescript/dist/esm/models/ProviderLayerId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Quota.d.ts b/typescript/dist/esm/models/Quota.d.ts index 1fd3dc9c..aacaf997 100644 --- a/typescript/dist/esm/models/Quota.d.ts +++ b/typescript/dist/esm/models/Quota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Quota.js b/typescript/dist/esm/models/Quota.js index b59613ac..ce88880a 100644 --- a/typescript/dist/esm/models/Quota.js +++ b/typescript/dist/esm/models/Quota.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterBandDescriptor.d.ts b/typescript/dist/esm/models/RasterBandDescriptor.d.ts index a79150f8..f92d1e13 100644 --- a/typescript/dist/esm/models/RasterBandDescriptor.d.ts +++ b/typescript/dist/esm/models/RasterBandDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterBandDescriptor.js b/typescript/dist/esm/models/RasterBandDescriptor.js index 325097bf..c7788391 100644 --- a/typescript/dist/esm/models/RasterBandDescriptor.js +++ b/typescript/dist/esm/models/RasterBandDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterColorizer.d.ts b/typescript/dist/esm/models/RasterColorizer.d.ts index 9b879398..419a61ef 100644 --- a/typescript/dist/esm/models/RasterColorizer.d.ts +++ b/typescript/dist/esm/models/RasterColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterColorizer.js b/typescript/dist/esm/models/RasterColorizer.js index 4ec21694..3a832721 100644 --- a/typescript/dist/esm/models/RasterColorizer.js +++ b/typescript/dist/esm/models/RasterColorizer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterDataType.d.ts b/typescript/dist/esm/models/RasterDataType.d.ts index 6102d482..1bc186b0 100644 --- a/typescript/dist/esm/models/RasterDataType.d.ts +++ b/typescript/dist/esm/models/RasterDataType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterDataType.js b/typescript/dist/esm/models/RasterDataType.js index 09c410c6..19d7d5c8 100644 --- a/typescript/dist/esm/models/RasterDataType.js +++ b/typescript/dist/esm/models/RasterDataType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterDatasetFromWorkflow.d.ts b/typescript/dist/esm/models/RasterDatasetFromWorkflow.d.ts index 078dfeff..befa1f2f 100644 --- a/typescript/dist/esm/models/RasterDatasetFromWorkflow.d.ts +++ b/typescript/dist/esm/models/RasterDatasetFromWorkflow.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterDatasetFromWorkflow.js b/typescript/dist/esm/models/RasterDatasetFromWorkflow.js index 62dcb012..d7f3a118 100644 --- a/typescript/dist/esm/models/RasterDatasetFromWorkflow.js +++ b/typescript/dist/esm/models/RasterDatasetFromWorkflow.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.d.ts b/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.d.ts index f13b406c..ae2bc1b7 100644 --- a/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.d.ts +++ b/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.js b/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.js index 0fe4142c..9ca558f4 100644 --- a/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.js +++ b/typescript/dist/esm/models/RasterDatasetFromWorkflowResult.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterPropertiesEntryType.d.ts b/typescript/dist/esm/models/RasterPropertiesEntryType.d.ts index 8616a2fa..e099bc24 100644 --- a/typescript/dist/esm/models/RasterPropertiesEntryType.d.ts +++ b/typescript/dist/esm/models/RasterPropertiesEntryType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterPropertiesEntryType.js b/typescript/dist/esm/models/RasterPropertiesEntryType.js index 340e2577..e2468b40 100644 --- a/typescript/dist/esm/models/RasterPropertiesEntryType.js +++ b/typescript/dist/esm/models/RasterPropertiesEntryType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterPropertiesKey.d.ts b/typescript/dist/esm/models/RasterPropertiesKey.d.ts index 96af5946..1651e0c6 100644 --- a/typescript/dist/esm/models/RasterPropertiesKey.d.ts +++ b/typescript/dist/esm/models/RasterPropertiesKey.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterPropertiesKey.js b/typescript/dist/esm/models/RasterPropertiesKey.js index 9ba2e1d2..cbc7f92d 100644 --- a/typescript/dist/esm/models/RasterPropertiesKey.js +++ b/typescript/dist/esm/models/RasterPropertiesKey.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterQueryRectangle.d.ts b/typescript/dist/esm/models/RasterQueryRectangle.d.ts index 14c180af..38c6b2a7 100644 --- a/typescript/dist/esm/models/RasterQueryRectangle.d.ts +++ b/typescript/dist/esm/models/RasterQueryRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterQueryRectangle.js b/typescript/dist/esm/models/RasterQueryRectangle.js index c6561087..05611829 100644 --- a/typescript/dist/esm/models/RasterQueryRectangle.js +++ b/typescript/dist/esm/models/RasterQueryRectangle.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterResultDescriptor.d.ts b/typescript/dist/esm/models/RasterResultDescriptor.d.ts index c9a4cc04..681b9aee 100644 --- a/typescript/dist/esm/models/RasterResultDescriptor.d.ts +++ b/typescript/dist/esm/models/RasterResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterResultDescriptor.js b/typescript/dist/esm/models/RasterResultDescriptor.js index 4c7ba061..a729b7a4 100644 --- a/typescript/dist/esm/models/RasterResultDescriptor.js +++ b/typescript/dist/esm/models/RasterResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterStreamWebsocketResultType.d.ts b/typescript/dist/esm/models/RasterStreamWebsocketResultType.d.ts index b2f39431..7d6d304b 100644 --- a/typescript/dist/esm/models/RasterStreamWebsocketResultType.d.ts +++ b/typescript/dist/esm/models/RasterStreamWebsocketResultType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterStreamWebsocketResultType.js b/typescript/dist/esm/models/RasterStreamWebsocketResultType.js index 8c72cbc9..d7d6d3fd 100644 --- a/typescript/dist/esm/models/RasterStreamWebsocketResultType.js +++ b/typescript/dist/esm/models/RasterStreamWebsocketResultType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterSymbology.d.ts b/typescript/dist/esm/models/RasterSymbology.d.ts index 76e7950d..9ae2052d 100644 --- a/typescript/dist/esm/models/RasterSymbology.d.ts +++ b/typescript/dist/esm/models/RasterSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RasterSymbology.js b/typescript/dist/esm/models/RasterSymbology.js index 230c0ddc..48fd6584 100644 --- a/typescript/dist/esm/models/RasterSymbology.js +++ b/typescript/dist/esm/models/RasterSymbology.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Resource.d.ts b/typescript/dist/esm/models/Resource.d.ts index f9c81c0e..9dbc0d1c 100644 --- a/typescript/dist/esm/models/Resource.d.ts +++ b/typescript/dist/esm/models/Resource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Resource.js b/typescript/dist/esm/models/Resource.js index 36349af0..add55604 100644 --- a/typescript/dist/esm/models/Resource.js +++ b/typescript/dist/esm/models/Resource.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceId.d.ts b/typescript/dist/esm/models/ResourceId.d.ts index bbad54b7..71315089 100644 --- a/typescript/dist/esm/models/ResourceId.d.ts +++ b/typescript/dist/esm/models/ResourceId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceId.js b/typescript/dist/esm/models/ResourceId.js index 2d973f4f..414ebb14 100644 --- a/typescript/dist/esm/models/ResourceId.js +++ b/typescript/dist/esm/models/ResourceId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdDatasetId.d.ts b/typescript/dist/esm/models/ResourceIdDatasetId.d.ts index 6f9f6d3d..8f275dd2 100644 --- a/typescript/dist/esm/models/ResourceIdDatasetId.d.ts +++ b/typescript/dist/esm/models/ResourceIdDatasetId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdDatasetId.js b/typescript/dist/esm/models/ResourceIdDatasetId.js index d6ffaf54..7d2aabab 100644 --- a/typescript/dist/esm/models/ResourceIdDatasetId.js +++ b/typescript/dist/esm/models/ResourceIdDatasetId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdLayer.d.ts b/typescript/dist/esm/models/ResourceIdLayer.d.ts index 8c391c14..5d47d9ca 100644 --- a/typescript/dist/esm/models/ResourceIdLayer.d.ts +++ b/typescript/dist/esm/models/ResourceIdLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdLayer.js b/typescript/dist/esm/models/ResourceIdLayer.js index d103903a..8c8d625a 100644 --- a/typescript/dist/esm/models/ResourceIdLayer.js +++ b/typescript/dist/esm/models/ResourceIdLayer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdLayerCollection.d.ts b/typescript/dist/esm/models/ResourceIdLayerCollection.d.ts index 442ed165..a94a4755 100644 --- a/typescript/dist/esm/models/ResourceIdLayerCollection.d.ts +++ b/typescript/dist/esm/models/ResourceIdLayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdLayerCollection.js b/typescript/dist/esm/models/ResourceIdLayerCollection.js index 2a3acc90..24500270 100644 --- a/typescript/dist/esm/models/ResourceIdLayerCollection.js +++ b/typescript/dist/esm/models/ResourceIdLayerCollection.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdMlModel.d.ts b/typescript/dist/esm/models/ResourceIdMlModel.d.ts index 5545ffcd..98bf3fb7 100644 --- a/typescript/dist/esm/models/ResourceIdMlModel.d.ts +++ b/typescript/dist/esm/models/ResourceIdMlModel.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdMlModel.js b/typescript/dist/esm/models/ResourceIdMlModel.js index 5a3b2946..c37eeaed 100644 --- a/typescript/dist/esm/models/ResourceIdMlModel.js +++ b/typescript/dist/esm/models/ResourceIdMlModel.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdProject.d.ts b/typescript/dist/esm/models/ResourceIdProject.d.ts index 09e9ccb1..e084783a 100644 --- a/typescript/dist/esm/models/ResourceIdProject.d.ts +++ b/typescript/dist/esm/models/ResourceIdProject.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ResourceIdProject.js b/typescript/dist/esm/models/ResourceIdProject.js index c8d8f6e8..74bc9698 100644 --- a/typescript/dist/esm/models/ResourceIdProject.js +++ b/typescript/dist/esm/models/ResourceIdProject.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Role.d.ts b/typescript/dist/esm/models/Role.d.ts index 86c4711b..94df2ecd 100644 --- a/typescript/dist/esm/models/Role.d.ts +++ b/typescript/dist/esm/models/Role.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Role.js b/typescript/dist/esm/models/Role.js index 872b180e..1b07c3ce 100644 --- a/typescript/dist/esm/models/Role.js +++ b/typescript/dist/esm/models/Role.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RoleDescription.d.ts b/typescript/dist/esm/models/RoleDescription.d.ts index 1f27c5e2..90f7a05c 100644 --- a/typescript/dist/esm/models/RoleDescription.d.ts +++ b/typescript/dist/esm/models/RoleDescription.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/RoleDescription.js b/typescript/dist/esm/models/RoleDescription.js index c1175b02..a57571d2 100644 --- a/typescript/dist/esm/models/RoleDescription.js +++ b/typescript/dist/esm/models/RoleDescription.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/STRectangle.d.ts b/typescript/dist/esm/models/STRectangle.d.ts index bf22a333..cd9273b8 100644 --- a/typescript/dist/esm/models/STRectangle.d.ts +++ b/typescript/dist/esm/models/STRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/STRectangle.js b/typescript/dist/esm/models/STRectangle.js index df8517c6..4efbbd57 100644 --- a/typescript/dist/esm/models/STRectangle.js +++ b/typescript/dist/esm/models/STRectangle.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SearchCapabilities.d.ts b/typescript/dist/esm/models/SearchCapabilities.d.ts index af9d8541..5569fc6d 100644 --- a/typescript/dist/esm/models/SearchCapabilities.d.ts +++ b/typescript/dist/esm/models/SearchCapabilities.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SearchCapabilities.js b/typescript/dist/esm/models/SearchCapabilities.js index 2970af73..2b3cf0f4 100644 --- a/typescript/dist/esm/models/SearchCapabilities.js +++ b/typescript/dist/esm/models/SearchCapabilities.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SearchType.d.ts b/typescript/dist/esm/models/SearchType.d.ts index b27e8647..d18be08e 100644 --- a/typescript/dist/esm/models/SearchType.d.ts +++ b/typescript/dist/esm/models/SearchType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SearchType.js b/typescript/dist/esm/models/SearchType.js index f4f1054f..4eb25816 100644 --- a/typescript/dist/esm/models/SearchType.js +++ b/typescript/dist/esm/models/SearchType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SearchTypes.d.ts b/typescript/dist/esm/models/SearchTypes.d.ts index e4d0f1c9..b65c95c4 100644 --- a/typescript/dist/esm/models/SearchTypes.d.ts +++ b/typescript/dist/esm/models/SearchTypes.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SearchTypes.js b/typescript/dist/esm/models/SearchTypes.js index 150c276d..65af8549 100644 --- a/typescript/dist/esm/models/SearchTypes.js +++ b/typescript/dist/esm/models/SearchTypes.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ServerInfo.d.ts b/typescript/dist/esm/models/ServerInfo.d.ts index 584980e9..d74cf3e6 100644 --- a/typescript/dist/esm/models/ServerInfo.d.ts +++ b/typescript/dist/esm/models/ServerInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/ServerInfo.js b/typescript/dist/esm/models/ServerInfo.js index ee6606fa..8fbdef1a 100644 --- a/typescript/dist/esm/models/ServerInfo.js +++ b/typescript/dist/esm/models/ServerInfo.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SingleBandRasterColorizer.d.ts b/typescript/dist/esm/models/SingleBandRasterColorizer.d.ts index a717c6ca..6968e547 100644 --- a/typescript/dist/esm/models/SingleBandRasterColorizer.d.ts +++ b/typescript/dist/esm/models/SingleBandRasterColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SingleBandRasterColorizer.js b/typescript/dist/esm/models/SingleBandRasterColorizer.js index 71447311..24305de7 100644 --- a/typescript/dist/esm/models/SingleBandRasterColorizer.js +++ b/typescript/dist/esm/models/SingleBandRasterColorizer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialPartition2D.d.ts b/typescript/dist/esm/models/SpatialPartition2D.d.ts index 9779af67..04e34749 100644 --- a/typescript/dist/esm/models/SpatialPartition2D.d.ts +++ b/typescript/dist/esm/models/SpatialPartition2D.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialPartition2D.js b/typescript/dist/esm/models/SpatialPartition2D.js index c64ffff3..887ed14d 100644 --- a/typescript/dist/esm/models/SpatialPartition2D.js +++ b/typescript/dist/esm/models/SpatialPartition2D.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialReferenceAuthority.d.ts b/typescript/dist/esm/models/SpatialReferenceAuthority.d.ts index 84382dd5..5c8ed9ee 100644 --- a/typescript/dist/esm/models/SpatialReferenceAuthority.d.ts +++ b/typescript/dist/esm/models/SpatialReferenceAuthority.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialReferenceAuthority.js b/typescript/dist/esm/models/SpatialReferenceAuthority.js index 20189a6b..f3f31a73 100644 --- a/typescript/dist/esm/models/SpatialReferenceAuthority.js +++ b/typescript/dist/esm/models/SpatialReferenceAuthority.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialReferenceSpecification.d.ts b/typescript/dist/esm/models/SpatialReferenceSpecification.d.ts index 0ef0685f..955a2fae 100644 --- a/typescript/dist/esm/models/SpatialReferenceSpecification.d.ts +++ b/typescript/dist/esm/models/SpatialReferenceSpecification.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialReferenceSpecification.js b/typescript/dist/esm/models/SpatialReferenceSpecification.js index 5af191a0..076aaf34 100644 --- a/typescript/dist/esm/models/SpatialReferenceSpecification.js +++ b/typescript/dist/esm/models/SpatialReferenceSpecification.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialResolution.d.ts b/typescript/dist/esm/models/SpatialResolution.d.ts index 3a9d7d3e..4300e098 100644 --- a/typescript/dist/esm/models/SpatialResolution.d.ts +++ b/typescript/dist/esm/models/SpatialResolution.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SpatialResolution.js b/typescript/dist/esm/models/SpatialResolution.js index 139736f1..9077ff6c 100644 --- a/typescript/dist/esm/models/SpatialResolution.js +++ b/typescript/dist/esm/models/SpatialResolution.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/StaticNumberParam.d.ts b/typescript/dist/esm/models/StaticNumberParam.d.ts index d4aa96d4..9b97064f 100644 --- a/typescript/dist/esm/models/StaticNumberParam.d.ts +++ b/typescript/dist/esm/models/StaticNumberParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/StaticNumberParam.js b/typescript/dist/esm/models/StaticNumberParam.js index e538d6de..9bc59341 100644 --- a/typescript/dist/esm/models/StaticNumberParam.js +++ b/typescript/dist/esm/models/StaticNumberParam.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/StrokeParam.d.ts b/typescript/dist/esm/models/StrokeParam.d.ts index 83a62ea3..4e8d0aa0 100644 --- a/typescript/dist/esm/models/StrokeParam.d.ts +++ b/typescript/dist/esm/models/StrokeParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/StrokeParam.js b/typescript/dist/esm/models/StrokeParam.js index ca208f47..4a09e3e9 100644 --- a/typescript/dist/esm/models/StrokeParam.js +++ b/typescript/dist/esm/models/StrokeParam.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SuggestMetaData.d.ts b/typescript/dist/esm/models/SuggestMetaData.d.ts index 019e4d54..ade70e93 100644 --- a/typescript/dist/esm/models/SuggestMetaData.d.ts +++ b/typescript/dist/esm/models/SuggestMetaData.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/SuggestMetaData.js b/typescript/dist/esm/models/SuggestMetaData.js index 72f45b41..edacebdb 100644 --- a/typescript/dist/esm/models/SuggestMetaData.js +++ b/typescript/dist/esm/models/SuggestMetaData.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Symbology.d.ts b/typescript/dist/esm/models/Symbology.d.ts index f46afbdb..d3d086d9 100644 --- a/typescript/dist/esm/models/Symbology.d.ts +++ b/typescript/dist/esm/models/Symbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Symbology.js b/typescript/dist/esm/models/Symbology.js index 4a73dc13..4445798c 100644 --- a/typescript/dist/esm/models/Symbology.js +++ b/typescript/dist/esm/models/Symbology.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskAbortOptions.d.ts b/typescript/dist/esm/models/TaskAbortOptions.d.ts index 21a5ad0a..da84a7fc 100644 --- a/typescript/dist/esm/models/TaskAbortOptions.d.ts +++ b/typescript/dist/esm/models/TaskAbortOptions.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskAbortOptions.js b/typescript/dist/esm/models/TaskAbortOptions.js index e8749b78..f3cda928 100644 --- a/typescript/dist/esm/models/TaskAbortOptions.js +++ b/typescript/dist/esm/models/TaskAbortOptions.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskFilter.d.ts b/typescript/dist/esm/models/TaskFilter.d.ts index 8ae36937..b680418d 100644 --- a/typescript/dist/esm/models/TaskFilter.d.ts +++ b/typescript/dist/esm/models/TaskFilter.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskFilter.js b/typescript/dist/esm/models/TaskFilter.js index dae0be87..b3853448 100644 --- a/typescript/dist/esm/models/TaskFilter.js +++ b/typescript/dist/esm/models/TaskFilter.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskListOptions.d.ts b/typescript/dist/esm/models/TaskListOptions.d.ts index cd32e95e..a92ba661 100644 --- a/typescript/dist/esm/models/TaskListOptions.d.ts +++ b/typescript/dist/esm/models/TaskListOptions.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskListOptions.js b/typescript/dist/esm/models/TaskListOptions.js index f170e554..2d033030 100644 --- a/typescript/dist/esm/models/TaskListOptions.js +++ b/typescript/dist/esm/models/TaskListOptions.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskResponse.d.ts b/typescript/dist/esm/models/TaskResponse.d.ts index 48f6f19e..1ea10c47 100644 --- a/typescript/dist/esm/models/TaskResponse.d.ts +++ b/typescript/dist/esm/models/TaskResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskResponse.js b/typescript/dist/esm/models/TaskResponse.js index f7082ffd..14261c8d 100644 --- a/typescript/dist/esm/models/TaskResponse.js +++ b/typescript/dist/esm/models/TaskResponse.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatus.d.ts b/typescript/dist/esm/models/TaskStatus.d.ts index e9aedbc5..cd0e0bd9 100644 --- a/typescript/dist/esm/models/TaskStatus.d.ts +++ b/typescript/dist/esm/models/TaskStatus.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatus.js b/typescript/dist/esm/models/TaskStatus.js index 4207e77e..9a5a8fb9 100644 --- a/typescript/dist/esm/models/TaskStatus.js +++ b/typescript/dist/esm/models/TaskStatus.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusAborted.d.ts b/typescript/dist/esm/models/TaskStatusAborted.d.ts index f2f0c04f..ac5d9bb1 100644 --- a/typescript/dist/esm/models/TaskStatusAborted.d.ts +++ b/typescript/dist/esm/models/TaskStatusAborted.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusAborted.js b/typescript/dist/esm/models/TaskStatusAborted.js index 25955d4b..a14997b9 100644 --- a/typescript/dist/esm/models/TaskStatusAborted.js +++ b/typescript/dist/esm/models/TaskStatusAborted.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusCompleted.d.ts b/typescript/dist/esm/models/TaskStatusCompleted.d.ts index 60f12f64..1798b6b9 100644 --- a/typescript/dist/esm/models/TaskStatusCompleted.d.ts +++ b/typescript/dist/esm/models/TaskStatusCompleted.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusCompleted.js b/typescript/dist/esm/models/TaskStatusCompleted.js index c6b7fc6b..5d672713 100644 --- a/typescript/dist/esm/models/TaskStatusCompleted.js +++ b/typescript/dist/esm/models/TaskStatusCompleted.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusFailed.d.ts b/typescript/dist/esm/models/TaskStatusFailed.d.ts index 91cacc05..504596a0 100644 --- a/typescript/dist/esm/models/TaskStatusFailed.d.ts +++ b/typescript/dist/esm/models/TaskStatusFailed.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusFailed.js b/typescript/dist/esm/models/TaskStatusFailed.js index edd7bbac..5bf8dbf8 100644 --- a/typescript/dist/esm/models/TaskStatusFailed.js +++ b/typescript/dist/esm/models/TaskStatusFailed.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusRunning.d.ts b/typescript/dist/esm/models/TaskStatusRunning.d.ts index dc42d964..8a344871 100644 --- a/typescript/dist/esm/models/TaskStatusRunning.d.ts +++ b/typescript/dist/esm/models/TaskStatusRunning.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusRunning.js b/typescript/dist/esm/models/TaskStatusRunning.js index 3965bed3..6d48890c 100644 --- a/typescript/dist/esm/models/TaskStatusRunning.js +++ b/typescript/dist/esm/models/TaskStatusRunning.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusWithId.d.ts b/typescript/dist/esm/models/TaskStatusWithId.d.ts index 5551b959..1ec8a3d8 100644 --- a/typescript/dist/esm/models/TaskStatusWithId.d.ts +++ b/typescript/dist/esm/models/TaskStatusWithId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TaskStatusWithId.js b/typescript/dist/esm/models/TaskStatusWithId.js index 58979442..2fbdda53 100644 --- a/typescript/dist/esm/models/TaskStatusWithId.js +++ b/typescript/dist/esm/models/TaskStatusWithId.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TextSymbology.d.ts b/typescript/dist/esm/models/TextSymbology.d.ts index 3220dbfd..f991cf0a 100644 --- a/typescript/dist/esm/models/TextSymbology.d.ts +++ b/typescript/dist/esm/models/TextSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TextSymbology.js b/typescript/dist/esm/models/TextSymbology.js index fec8c891..3a3b02f9 100644 --- a/typescript/dist/esm/models/TextSymbology.js +++ b/typescript/dist/esm/models/TextSymbology.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeGranularity.d.ts b/typescript/dist/esm/models/TimeGranularity.d.ts index 427721af..4844814e 100644 --- a/typescript/dist/esm/models/TimeGranularity.d.ts +++ b/typescript/dist/esm/models/TimeGranularity.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeGranularity.js b/typescript/dist/esm/models/TimeGranularity.js index 97a9e924..d30bbb4b 100644 --- a/typescript/dist/esm/models/TimeGranularity.js +++ b/typescript/dist/esm/models/TimeGranularity.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeInterval.d.ts b/typescript/dist/esm/models/TimeInterval.d.ts index a81bb42f..a438b433 100644 --- a/typescript/dist/esm/models/TimeInterval.d.ts +++ b/typescript/dist/esm/models/TimeInterval.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeInterval.js b/typescript/dist/esm/models/TimeInterval.js index 9e78ee35..82d496d4 100644 --- a/typescript/dist/esm/models/TimeInterval.js +++ b/typescript/dist/esm/models/TimeInterval.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeReference.d.ts b/typescript/dist/esm/models/TimeReference.d.ts index f7711035..95a1a237 100644 --- a/typescript/dist/esm/models/TimeReference.d.ts +++ b/typescript/dist/esm/models/TimeReference.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeReference.js b/typescript/dist/esm/models/TimeReference.js index 9ec36659..4b8fd608 100644 --- a/typescript/dist/esm/models/TimeReference.js +++ b/typescript/dist/esm/models/TimeReference.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeStep.d.ts b/typescript/dist/esm/models/TimeStep.d.ts index 21da322f..a3e6fd56 100644 --- a/typescript/dist/esm/models/TimeStep.d.ts +++ b/typescript/dist/esm/models/TimeStep.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TimeStep.js b/typescript/dist/esm/models/TimeStep.js index 71f2c928..5be03b37 100644 --- a/typescript/dist/esm/models/TimeStep.js +++ b/typescript/dist/esm/models/TimeStep.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometry.d.ts b/typescript/dist/esm/models/TypedGeometry.d.ts index ca39482b..8fb9a5aa 100644 --- a/typescript/dist/esm/models/TypedGeometry.d.ts +++ b/typescript/dist/esm/models/TypedGeometry.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometry.js b/typescript/dist/esm/models/TypedGeometry.js index 45f9743d..78c7c1a3 100644 --- a/typescript/dist/esm/models/TypedGeometry.js +++ b/typescript/dist/esm/models/TypedGeometry.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf.d.ts b/typescript/dist/esm/models/TypedGeometryOneOf.d.ts index 46088d03..144d3260 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf.d.ts +++ b/typescript/dist/esm/models/TypedGeometryOneOf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf.js b/typescript/dist/esm/models/TypedGeometryOneOf.js index 34c50958..5882f9a0 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf.js +++ b/typescript/dist/esm/models/TypedGeometryOneOf.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf1.d.ts b/typescript/dist/esm/models/TypedGeometryOneOf1.d.ts index 5c7e97d9..c0f65753 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf1.d.ts +++ b/typescript/dist/esm/models/TypedGeometryOneOf1.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf1.js b/typescript/dist/esm/models/TypedGeometryOneOf1.js index a1d75dda..68f5cbf0 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf1.js +++ b/typescript/dist/esm/models/TypedGeometryOneOf1.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf2.d.ts b/typescript/dist/esm/models/TypedGeometryOneOf2.d.ts index 7f762491..bb17369f 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf2.d.ts +++ b/typescript/dist/esm/models/TypedGeometryOneOf2.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf2.js b/typescript/dist/esm/models/TypedGeometryOneOf2.js index e86cc948..072c6982 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf2.js +++ b/typescript/dist/esm/models/TypedGeometryOneOf2.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf3.d.ts b/typescript/dist/esm/models/TypedGeometryOneOf3.d.ts index afef53bc..10252452 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf3.d.ts +++ b/typescript/dist/esm/models/TypedGeometryOneOf3.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedGeometryOneOf3.js b/typescript/dist/esm/models/TypedGeometryOneOf3.js index 426a5644..147b7dce 100644 --- a/typescript/dist/esm/models/TypedGeometryOneOf3.js +++ b/typescript/dist/esm/models/TypedGeometryOneOf3.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedOperator.d.ts b/typescript/dist/esm/models/TypedOperator.d.ts index 592ae030..7da0150b 100644 --- a/typescript/dist/esm/models/TypedOperator.d.ts +++ b/typescript/dist/esm/models/TypedOperator.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedOperator.js b/typescript/dist/esm/models/TypedOperator.js index c178ec15..7787a1e4 100644 --- a/typescript/dist/esm/models/TypedOperator.js +++ b/typescript/dist/esm/models/TypedOperator.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedOperatorOperator.d.ts b/typescript/dist/esm/models/TypedOperatorOperator.d.ts index a1f120e1..f963ebb2 100644 --- a/typescript/dist/esm/models/TypedOperatorOperator.d.ts +++ b/typescript/dist/esm/models/TypedOperatorOperator.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedOperatorOperator.js b/typescript/dist/esm/models/TypedOperatorOperator.js index 01ccd45e..fdcda8e9 100644 --- a/typescript/dist/esm/models/TypedOperatorOperator.js +++ b/typescript/dist/esm/models/TypedOperatorOperator.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedPlotResultDescriptor.d.ts b/typescript/dist/esm/models/TypedPlotResultDescriptor.d.ts index 072a307e..4c2d4c1e 100644 --- a/typescript/dist/esm/models/TypedPlotResultDescriptor.d.ts +++ b/typescript/dist/esm/models/TypedPlotResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedPlotResultDescriptor.js b/typescript/dist/esm/models/TypedPlotResultDescriptor.js index 6362489e..d15fe648 100644 --- a/typescript/dist/esm/models/TypedPlotResultDescriptor.js +++ b/typescript/dist/esm/models/TypedPlotResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedRasterResultDescriptor.d.ts b/typescript/dist/esm/models/TypedRasterResultDescriptor.d.ts index 9c32a9dc..582712a7 100644 --- a/typescript/dist/esm/models/TypedRasterResultDescriptor.d.ts +++ b/typescript/dist/esm/models/TypedRasterResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedRasterResultDescriptor.js b/typescript/dist/esm/models/TypedRasterResultDescriptor.js index 8608b98a..89b67b5a 100644 --- a/typescript/dist/esm/models/TypedRasterResultDescriptor.js +++ b/typescript/dist/esm/models/TypedRasterResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedResultDescriptor.d.ts b/typescript/dist/esm/models/TypedResultDescriptor.d.ts index 1c237eb3..dfae9e11 100644 --- a/typescript/dist/esm/models/TypedResultDescriptor.d.ts +++ b/typescript/dist/esm/models/TypedResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedResultDescriptor.js b/typescript/dist/esm/models/TypedResultDescriptor.js index eee07869..be4f933b 100644 --- a/typescript/dist/esm/models/TypedResultDescriptor.js +++ b/typescript/dist/esm/models/TypedResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedVectorResultDescriptor.d.ts b/typescript/dist/esm/models/TypedVectorResultDescriptor.d.ts index 86e64b45..ca993dac 100644 --- a/typescript/dist/esm/models/TypedVectorResultDescriptor.d.ts +++ b/typescript/dist/esm/models/TypedVectorResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/TypedVectorResultDescriptor.js b/typescript/dist/esm/models/TypedVectorResultDescriptor.js index 7cef0e51..243fb807 100644 --- a/typescript/dist/esm/models/TypedVectorResultDescriptor.js +++ b/typescript/dist/esm/models/TypedVectorResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UnitlessMeasurement.d.ts b/typescript/dist/esm/models/UnitlessMeasurement.d.ts index 2577e835..47b244dc 100644 --- a/typescript/dist/esm/models/UnitlessMeasurement.d.ts +++ b/typescript/dist/esm/models/UnitlessMeasurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UnitlessMeasurement.js b/typescript/dist/esm/models/UnitlessMeasurement.js index 394ca908..df014753 100644 --- a/typescript/dist/esm/models/UnitlessMeasurement.js +++ b/typescript/dist/esm/models/UnitlessMeasurement.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UnixTimeStampType.d.ts b/typescript/dist/esm/models/UnixTimeStampType.d.ts index d8db17b8..60a36181 100644 --- a/typescript/dist/esm/models/UnixTimeStampType.d.ts +++ b/typescript/dist/esm/models/UnixTimeStampType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UnixTimeStampType.js b/typescript/dist/esm/models/UnixTimeStampType.js index a9d4a653..aea766be 100644 --- a/typescript/dist/esm/models/UnixTimeStampType.js +++ b/typescript/dist/esm/models/UnixTimeStampType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateDataset.d.ts b/typescript/dist/esm/models/UpdateDataset.d.ts index 5328e1aa..5b25bb01 100644 --- a/typescript/dist/esm/models/UpdateDataset.d.ts +++ b/typescript/dist/esm/models/UpdateDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateDataset.js b/typescript/dist/esm/models/UpdateDataset.js index 7d17162b..28fd7b3b 100644 --- a/typescript/dist/esm/models/UpdateDataset.js +++ b/typescript/dist/esm/models/UpdateDataset.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateLayer.d.ts b/typescript/dist/esm/models/UpdateLayer.d.ts index d00e51eb..6a59ada2 100644 --- a/typescript/dist/esm/models/UpdateLayer.d.ts +++ b/typescript/dist/esm/models/UpdateLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateLayer.js b/typescript/dist/esm/models/UpdateLayer.js index f894050a..ec239ac8 100644 --- a/typescript/dist/esm/models/UpdateLayer.js +++ b/typescript/dist/esm/models/UpdateLayer.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateLayerCollection.d.ts b/typescript/dist/esm/models/UpdateLayerCollection.d.ts index 948a5a57..7af58d48 100644 --- a/typescript/dist/esm/models/UpdateLayerCollection.d.ts +++ b/typescript/dist/esm/models/UpdateLayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateLayerCollection.js b/typescript/dist/esm/models/UpdateLayerCollection.js index 02c897a6..7a6bc1bf 100644 --- a/typescript/dist/esm/models/UpdateLayerCollection.js +++ b/typescript/dist/esm/models/UpdateLayerCollection.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateProject.d.ts b/typescript/dist/esm/models/UpdateProject.d.ts index a53b1612..011b258b 100644 --- a/typescript/dist/esm/models/UpdateProject.d.ts +++ b/typescript/dist/esm/models/UpdateProject.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateProject.js b/typescript/dist/esm/models/UpdateProject.js index 0d8ebf56..b452e058 100644 --- a/typescript/dist/esm/models/UpdateProject.js +++ b/typescript/dist/esm/models/UpdateProject.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateQuota.d.ts b/typescript/dist/esm/models/UpdateQuota.d.ts index a9654bbb..fa6a8c7a 100644 --- a/typescript/dist/esm/models/UpdateQuota.d.ts +++ b/typescript/dist/esm/models/UpdateQuota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UpdateQuota.js b/typescript/dist/esm/models/UpdateQuota.js index edf1371f..d0b96470 100644 --- a/typescript/dist/esm/models/UpdateQuota.js +++ b/typescript/dist/esm/models/UpdateQuota.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UploadFileLayersResponse.d.ts b/typescript/dist/esm/models/UploadFileLayersResponse.d.ts index 52e710cd..d0f22470 100644 --- a/typescript/dist/esm/models/UploadFileLayersResponse.d.ts +++ b/typescript/dist/esm/models/UploadFileLayersResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UploadFileLayersResponse.js b/typescript/dist/esm/models/UploadFileLayersResponse.js index 624061f6..53977174 100644 --- a/typescript/dist/esm/models/UploadFileLayersResponse.js +++ b/typescript/dist/esm/models/UploadFileLayersResponse.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UploadFilesResponse.d.ts b/typescript/dist/esm/models/UploadFilesResponse.d.ts index af150457..73676cfc 100644 --- a/typescript/dist/esm/models/UploadFilesResponse.d.ts +++ b/typescript/dist/esm/models/UploadFilesResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UploadFilesResponse.js b/typescript/dist/esm/models/UploadFilesResponse.js index 61b96d6d..2454620b 100644 --- a/typescript/dist/esm/models/UploadFilesResponse.js +++ b/typescript/dist/esm/models/UploadFilesResponse.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UsageSummaryGranularity.d.ts b/typescript/dist/esm/models/UsageSummaryGranularity.d.ts index 2eeb47c2..ff762ef8 100644 --- a/typescript/dist/esm/models/UsageSummaryGranularity.d.ts +++ b/typescript/dist/esm/models/UsageSummaryGranularity.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UsageSummaryGranularity.js b/typescript/dist/esm/models/UsageSummaryGranularity.js index cf9d1ffc..8cdbf691 100644 --- a/typescript/dist/esm/models/UsageSummaryGranularity.js +++ b/typescript/dist/esm/models/UsageSummaryGranularity.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserCredentials.d.ts b/typescript/dist/esm/models/UserCredentials.d.ts index 9f6f5327..f1f68f1b 100644 --- a/typescript/dist/esm/models/UserCredentials.d.ts +++ b/typescript/dist/esm/models/UserCredentials.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserCredentials.js b/typescript/dist/esm/models/UserCredentials.js index dc6a1792..c66be60c 100644 --- a/typescript/dist/esm/models/UserCredentials.js +++ b/typescript/dist/esm/models/UserCredentials.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserInfo.d.ts b/typescript/dist/esm/models/UserInfo.d.ts index c4238f12..3df6b91f 100644 --- a/typescript/dist/esm/models/UserInfo.d.ts +++ b/typescript/dist/esm/models/UserInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserInfo.js b/typescript/dist/esm/models/UserInfo.js index a797935a..6ea55373 100644 --- a/typescript/dist/esm/models/UserInfo.js +++ b/typescript/dist/esm/models/UserInfo.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserRegistration.d.ts b/typescript/dist/esm/models/UserRegistration.d.ts index 3edef0d7..895ff879 100644 --- a/typescript/dist/esm/models/UserRegistration.d.ts +++ b/typescript/dist/esm/models/UserRegistration.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserRegistration.js b/typescript/dist/esm/models/UserRegistration.js index 17888e8e..be3d960f 100644 --- a/typescript/dist/esm/models/UserRegistration.js +++ b/typescript/dist/esm/models/UserRegistration.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserSession.d.ts b/typescript/dist/esm/models/UserSession.d.ts index 414011fa..f24076af 100644 --- a/typescript/dist/esm/models/UserSession.d.ts +++ b/typescript/dist/esm/models/UserSession.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/UserSession.js b/typescript/dist/esm/models/UserSession.js index 496279bd..1a5ec0d7 100644 --- a/typescript/dist/esm/models/UserSession.js +++ b/typescript/dist/esm/models/UserSession.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorColumnInfo.d.ts b/typescript/dist/esm/models/VectorColumnInfo.d.ts index 8bf26bfd..4a7538d5 100644 --- a/typescript/dist/esm/models/VectorColumnInfo.d.ts +++ b/typescript/dist/esm/models/VectorColumnInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorColumnInfo.js b/typescript/dist/esm/models/VectorColumnInfo.js index adc4b800..6dd5344f 100644 --- a/typescript/dist/esm/models/VectorColumnInfo.js +++ b/typescript/dist/esm/models/VectorColumnInfo.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorDataType.d.ts b/typescript/dist/esm/models/VectorDataType.d.ts index d8c56beb..90d65659 100644 --- a/typescript/dist/esm/models/VectorDataType.d.ts +++ b/typescript/dist/esm/models/VectorDataType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorDataType.js b/typescript/dist/esm/models/VectorDataType.js index 540fa2be..3748e3f6 100644 --- a/typescript/dist/esm/models/VectorDataType.js +++ b/typescript/dist/esm/models/VectorDataType.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorQueryRectangle.d.ts b/typescript/dist/esm/models/VectorQueryRectangle.d.ts index 92a3b99f..d2cb9126 100644 --- a/typescript/dist/esm/models/VectorQueryRectangle.d.ts +++ b/typescript/dist/esm/models/VectorQueryRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorQueryRectangle.js b/typescript/dist/esm/models/VectorQueryRectangle.js index 76e3ae30..1cfddbeb 100644 --- a/typescript/dist/esm/models/VectorQueryRectangle.js +++ b/typescript/dist/esm/models/VectorQueryRectangle.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorResultDescriptor.d.ts b/typescript/dist/esm/models/VectorResultDescriptor.d.ts index 41871f6f..4170742f 100644 --- a/typescript/dist/esm/models/VectorResultDescriptor.d.ts +++ b/typescript/dist/esm/models/VectorResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VectorResultDescriptor.js b/typescript/dist/esm/models/VectorResultDescriptor.js index fa03f850..c42e3459 100644 --- a/typescript/dist/esm/models/VectorResultDescriptor.js +++ b/typescript/dist/esm/models/VectorResultDescriptor.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Volume.d.ts b/typescript/dist/esm/models/Volume.d.ts index fc7f7536..597f4625 100644 --- a/typescript/dist/esm/models/Volume.d.ts +++ b/typescript/dist/esm/models/Volume.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Volume.js b/typescript/dist/esm/models/Volume.js index 5a6cdc35..c1c7cca1 100644 --- a/typescript/dist/esm/models/Volume.js +++ b/typescript/dist/esm/models/Volume.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VolumeFileLayersResponse.d.ts b/typescript/dist/esm/models/VolumeFileLayersResponse.d.ts index 68c0b9eb..77be37b3 100644 --- a/typescript/dist/esm/models/VolumeFileLayersResponse.d.ts +++ b/typescript/dist/esm/models/VolumeFileLayersResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/VolumeFileLayersResponse.js b/typescript/dist/esm/models/VolumeFileLayersResponse.js index f6936655..9854bff6 100644 --- a/typescript/dist/esm/models/VolumeFileLayersResponse.js +++ b/typescript/dist/esm/models/VolumeFileLayersResponse.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WcsBoundingbox.d.ts b/typescript/dist/esm/models/WcsBoundingbox.d.ts index b396f757..3ddd2f6e 100644 --- a/typescript/dist/esm/models/WcsBoundingbox.d.ts +++ b/typescript/dist/esm/models/WcsBoundingbox.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WcsBoundingbox.js b/typescript/dist/esm/models/WcsBoundingbox.js index 65fe7779..9377c8d0 100644 --- a/typescript/dist/esm/models/WcsBoundingbox.js +++ b/typescript/dist/esm/models/WcsBoundingbox.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WcsService.d.ts b/typescript/dist/esm/models/WcsService.d.ts index 9c5a3e50..3893f5d8 100644 --- a/typescript/dist/esm/models/WcsService.d.ts +++ b/typescript/dist/esm/models/WcsService.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WcsService.js b/typescript/dist/esm/models/WcsService.js index d4cf3b50..1a4effb7 100644 --- a/typescript/dist/esm/models/WcsService.js +++ b/typescript/dist/esm/models/WcsService.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WcsVersion.d.ts b/typescript/dist/esm/models/WcsVersion.d.ts index 1aed05f4..de362b0f 100644 --- a/typescript/dist/esm/models/WcsVersion.d.ts +++ b/typescript/dist/esm/models/WcsVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WcsVersion.js b/typescript/dist/esm/models/WcsVersion.js index 791adab5..eeb24d93 100644 --- a/typescript/dist/esm/models/WcsVersion.js +++ b/typescript/dist/esm/models/WcsVersion.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WfsService.d.ts b/typescript/dist/esm/models/WfsService.d.ts index b1e084e7..9f8070d3 100644 --- a/typescript/dist/esm/models/WfsService.d.ts +++ b/typescript/dist/esm/models/WfsService.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WfsService.js b/typescript/dist/esm/models/WfsService.js index af9191e6..b70ea424 100644 --- a/typescript/dist/esm/models/WfsService.js +++ b/typescript/dist/esm/models/WfsService.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WfsVersion.d.ts b/typescript/dist/esm/models/WfsVersion.d.ts index a8324d4d..9d1d2e9f 100644 --- a/typescript/dist/esm/models/WfsVersion.d.ts +++ b/typescript/dist/esm/models/WfsVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WfsVersion.js b/typescript/dist/esm/models/WfsVersion.js index 149bae9c..c193ec29 100644 --- a/typescript/dist/esm/models/WfsVersion.js +++ b/typescript/dist/esm/models/WfsVersion.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WmsService.d.ts b/typescript/dist/esm/models/WmsService.d.ts index 7d7167f5..8038d8f6 100644 --- a/typescript/dist/esm/models/WmsService.d.ts +++ b/typescript/dist/esm/models/WmsService.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WmsService.js b/typescript/dist/esm/models/WmsService.js index 252b82ee..fc337bff 100644 --- a/typescript/dist/esm/models/WmsService.js +++ b/typescript/dist/esm/models/WmsService.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WmsVersion.d.ts b/typescript/dist/esm/models/WmsVersion.d.ts index 01dc3876..b30c4c79 100644 --- a/typescript/dist/esm/models/WmsVersion.d.ts +++ b/typescript/dist/esm/models/WmsVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WmsVersion.js b/typescript/dist/esm/models/WmsVersion.js index 47463998..a5c90307 100644 --- a/typescript/dist/esm/models/WmsVersion.js +++ b/typescript/dist/esm/models/WmsVersion.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Workflow.d.ts b/typescript/dist/esm/models/Workflow.d.ts index 671d985a..277ea139 100644 --- a/typescript/dist/esm/models/Workflow.d.ts +++ b/typescript/dist/esm/models/Workflow.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/Workflow.js b/typescript/dist/esm/models/Workflow.js index 5c509ad5..b7bfe51e 100644 --- a/typescript/dist/esm/models/Workflow.js +++ b/typescript/dist/esm/models/Workflow.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WrappedPlotOutput.d.ts b/typescript/dist/esm/models/WrappedPlotOutput.d.ts index de84d7a3..b5295159 100644 --- a/typescript/dist/esm/models/WrappedPlotOutput.d.ts +++ b/typescript/dist/esm/models/WrappedPlotOutput.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/models/WrappedPlotOutput.js b/typescript/dist/esm/models/WrappedPlotOutput.js index d89f8404..d3886137 100644 --- a/typescript/dist/esm/models/WrappedPlotOutput.js +++ b/typescript/dist/esm/models/WrappedPlotOutput.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/runtime.d.ts b/typescript/dist/esm/runtime.d.ts index 76b20dcb..391b42be 100644 --- a/typescript/dist/esm/runtime.d.ts +++ b/typescript/dist/esm/runtime.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/esm/runtime.js b/typescript/dist/esm/runtime.js index fa80bad1..d50e434a 100644 --- a/typescript/dist/esm/runtime.js +++ b/typescript/dist/esm/runtime.js @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddCollection200Response.d.ts b/typescript/dist/models/AddCollection200Response.d.ts index 9418a97a..88f8e1b0 100644 --- a/typescript/dist/models/AddCollection200Response.d.ts +++ b/typescript/dist/models/AddCollection200Response.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddCollection200Response.js b/typescript/dist/models/AddCollection200Response.js index c98fc03a..465a7815 100644 --- a/typescript/dist/models/AddCollection200Response.js +++ b/typescript/dist/models/AddCollection200Response.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddDataset.d.ts b/typescript/dist/models/AddDataset.d.ts index 5b105a94..4e6ef7b6 100644 --- a/typescript/dist/models/AddDataset.d.ts +++ b/typescript/dist/models/AddDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddDataset.js b/typescript/dist/models/AddDataset.js index a1fe341c..315bbb2e 100644 --- a/typescript/dist/models/AddDataset.js +++ b/typescript/dist/models/AddDataset.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddLayer.d.ts b/typescript/dist/models/AddLayer.d.ts index 135273cd..340739e6 100644 --- a/typescript/dist/models/AddLayer.d.ts +++ b/typescript/dist/models/AddLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddLayer.js b/typescript/dist/models/AddLayer.js index 37f30f3a..cae0b4cc 100644 --- a/typescript/dist/models/AddLayer.js +++ b/typescript/dist/models/AddLayer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddLayerCollection.d.ts b/typescript/dist/models/AddLayerCollection.d.ts index 4c865268..b3656b4a 100644 --- a/typescript/dist/models/AddLayerCollection.d.ts +++ b/typescript/dist/models/AddLayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddLayerCollection.js b/typescript/dist/models/AddLayerCollection.js index e41f24d5..b7addee2 100644 --- a/typescript/dist/models/AddLayerCollection.js +++ b/typescript/dist/models/AddLayerCollection.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddRole.d.ts b/typescript/dist/models/AddRole.d.ts index c2a4969a..6a61c006 100644 --- a/typescript/dist/models/AddRole.d.ts +++ b/typescript/dist/models/AddRole.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AddRole.js b/typescript/dist/models/AddRole.js index b7007bba..6260daf5 100644 --- a/typescript/dist/models/AddRole.js +++ b/typescript/dist/models/AddRole.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AuthCodeRequestURL.d.ts b/typescript/dist/models/AuthCodeRequestURL.d.ts index 3ff95849..646b5413 100644 --- a/typescript/dist/models/AuthCodeRequestURL.d.ts +++ b/typescript/dist/models/AuthCodeRequestURL.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AuthCodeRequestURL.js b/typescript/dist/models/AuthCodeRequestURL.js index 00873152..6f92d0ee 100644 --- a/typescript/dist/models/AuthCodeRequestURL.js +++ b/typescript/dist/models/AuthCodeRequestURL.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AuthCodeResponse.d.ts b/typescript/dist/models/AuthCodeResponse.d.ts index 8b32621b..bbcabaa8 100644 --- a/typescript/dist/models/AuthCodeResponse.d.ts +++ b/typescript/dist/models/AuthCodeResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AuthCodeResponse.js b/typescript/dist/models/AuthCodeResponse.js index 27d042aa..42758ee2 100644 --- a/typescript/dist/models/AuthCodeResponse.js +++ b/typescript/dist/models/AuthCodeResponse.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AutoCreateDataset.d.ts b/typescript/dist/models/AutoCreateDataset.d.ts index 6c11cc49..e6077852 100644 --- a/typescript/dist/models/AutoCreateDataset.d.ts +++ b/typescript/dist/models/AutoCreateDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AutoCreateDataset.js b/typescript/dist/models/AutoCreateDataset.js index 4fde0ca7..34b97ced 100644 --- a/typescript/dist/models/AutoCreateDataset.js +++ b/typescript/dist/models/AutoCreateDataset.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AxisOrder.d.ts b/typescript/dist/models/AxisOrder.d.ts index 4d1d4841..9bf43dd4 100644 --- a/typescript/dist/models/AxisOrder.d.ts +++ b/typescript/dist/models/AxisOrder.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/AxisOrder.js b/typescript/dist/models/AxisOrder.js index 337de445..360c22fd 100644 --- a/typescript/dist/models/AxisOrder.js +++ b/typescript/dist/models/AxisOrder.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/BoundingBox2D.d.ts b/typescript/dist/models/BoundingBox2D.d.ts index 22749240..eb528813 100644 --- a/typescript/dist/models/BoundingBox2D.d.ts +++ b/typescript/dist/models/BoundingBox2D.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/BoundingBox2D.js b/typescript/dist/models/BoundingBox2D.js index 8657ce12..e48fdc8f 100644 --- a/typescript/dist/models/BoundingBox2D.js +++ b/typescript/dist/models/BoundingBox2D.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Breakpoint.d.ts b/typescript/dist/models/Breakpoint.d.ts index 9fc4fad1..dbae252d 100644 --- a/typescript/dist/models/Breakpoint.d.ts +++ b/typescript/dist/models/Breakpoint.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Breakpoint.js b/typescript/dist/models/Breakpoint.js index ec98e4cf..916095d8 100644 --- a/typescript/dist/models/Breakpoint.js +++ b/typescript/dist/models/Breakpoint.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ClassificationMeasurement.d.ts b/typescript/dist/models/ClassificationMeasurement.d.ts index 5c9b7882..e209302f 100644 --- a/typescript/dist/models/ClassificationMeasurement.d.ts +++ b/typescript/dist/models/ClassificationMeasurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ClassificationMeasurement.js b/typescript/dist/models/ClassificationMeasurement.js index 23405fb5..d6c90f63 100644 --- a/typescript/dist/models/ClassificationMeasurement.js +++ b/typescript/dist/models/ClassificationMeasurement.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CollectionItem.d.ts b/typescript/dist/models/CollectionItem.d.ts index 4943ef32..7cd6117a 100644 --- a/typescript/dist/models/CollectionItem.d.ts +++ b/typescript/dist/models/CollectionItem.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CollectionItem.js b/typescript/dist/models/CollectionItem.js index f96cdf21..ed82ba6e 100644 --- a/typescript/dist/models/CollectionItem.js +++ b/typescript/dist/models/CollectionItem.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CollectionType.d.ts b/typescript/dist/models/CollectionType.d.ts index eb587c39..d3cceb54 100644 --- a/typescript/dist/models/CollectionType.d.ts +++ b/typescript/dist/models/CollectionType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CollectionType.js b/typescript/dist/models/CollectionType.js index 87d77e09..1765a051 100644 --- a/typescript/dist/models/CollectionType.js +++ b/typescript/dist/models/CollectionType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ColorParam.d.ts b/typescript/dist/models/ColorParam.d.ts index f47d5557..137c8b33 100644 --- a/typescript/dist/models/ColorParam.d.ts +++ b/typescript/dist/models/ColorParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ColorParam.js b/typescript/dist/models/ColorParam.js index 429efed7..7a5ad0db 100644 --- a/typescript/dist/models/ColorParam.js +++ b/typescript/dist/models/ColorParam.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ColorParamStatic.d.ts b/typescript/dist/models/ColorParamStatic.d.ts index bdee30d2..3290501e 100644 --- a/typescript/dist/models/ColorParamStatic.d.ts +++ b/typescript/dist/models/ColorParamStatic.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ColorParamStatic.js b/typescript/dist/models/ColorParamStatic.js index ce88fc1d..4c502af3 100644 --- a/typescript/dist/models/ColorParamStatic.js +++ b/typescript/dist/models/ColorParamStatic.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Colorizer.d.ts b/typescript/dist/models/Colorizer.d.ts index 83550c3b..83e37092 100644 --- a/typescript/dist/models/Colorizer.d.ts +++ b/typescript/dist/models/Colorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Colorizer.js b/typescript/dist/models/Colorizer.js index a84a7f65..a369c06f 100644 --- a/typescript/dist/models/Colorizer.js +++ b/typescript/dist/models/Colorizer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ComputationQuota.d.ts b/typescript/dist/models/ComputationQuota.d.ts index 9b653e9d..7d671174 100644 --- a/typescript/dist/models/ComputationQuota.d.ts +++ b/typescript/dist/models/ComputationQuota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ComputationQuota.js b/typescript/dist/models/ComputationQuota.js index 3471a28b..f49ef8bd 100644 --- a/typescript/dist/models/ComputationQuota.js +++ b/typescript/dist/models/ComputationQuota.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ContinuousMeasurement.d.ts b/typescript/dist/models/ContinuousMeasurement.d.ts index 1b8ca4af..ab24d241 100644 --- a/typescript/dist/models/ContinuousMeasurement.d.ts +++ b/typescript/dist/models/ContinuousMeasurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ContinuousMeasurement.js b/typescript/dist/models/ContinuousMeasurement.js index 2dc5b326..196ef905 100644 --- a/typescript/dist/models/ContinuousMeasurement.js +++ b/typescript/dist/models/ContinuousMeasurement.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Coordinate2D.d.ts b/typescript/dist/models/Coordinate2D.d.ts index 33d69db6..4f3192fa 100644 --- a/typescript/dist/models/Coordinate2D.d.ts +++ b/typescript/dist/models/Coordinate2D.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Coordinate2D.js b/typescript/dist/models/Coordinate2D.js index 2ed7593c..15b05d8e 100644 --- a/typescript/dist/models/Coordinate2D.js +++ b/typescript/dist/models/Coordinate2D.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CreateDataset.d.ts b/typescript/dist/models/CreateDataset.d.ts index e8b24b25..fdacea9b 100644 --- a/typescript/dist/models/CreateDataset.d.ts +++ b/typescript/dist/models/CreateDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CreateDataset.js b/typescript/dist/models/CreateDataset.js index 5597b7e0..38b5d3d3 100644 --- a/typescript/dist/models/CreateDataset.js +++ b/typescript/dist/models/CreateDataset.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CreateDatasetHandler200Response.d.ts b/typescript/dist/models/CreateDatasetHandler200Response.d.ts index e388adb3..713bb809 100644 --- a/typescript/dist/models/CreateDatasetHandler200Response.d.ts +++ b/typescript/dist/models/CreateDatasetHandler200Response.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CreateDatasetHandler200Response.js b/typescript/dist/models/CreateDatasetHandler200Response.js index 306a9620..330a9ae4 100644 --- a/typescript/dist/models/CreateDatasetHandler200Response.js +++ b/typescript/dist/models/CreateDatasetHandler200Response.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CreateProject.d.ts b/typescript/dist/models/CreateProject.d.ts index d90c7499..597e2766 100644 --- a/typescript/dist/models/CreateProject.d.ts +++ b/typescript/dist/models/CreateProject.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CreateProject.js b/typescript/dist/models/CreateProject.js index fcd895af..14127738 100644 --- a/typescript/dist/models/CreateProject.js +++ b/typescript/dist/models/CreateProject.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CsvHeader.d.ts b/typescript/dist/models/CsvHeader.d.ts index 2134a86c..eeed3dbc 100644 --- a/typescript/dist/models/CsvHeader.d.ts +++ b/typescript/dist/models/CsvHeader.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/CsvHeader.js b/typescript/dist/models/CsvHeader.js index e9f43973..410ccc0a 100644 --- a/typescript/dist/models/CsvHeader.js +++ b/typescript/dist/models/CsvHeader.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataId.d.ts b/typescript/dist/models/DataId.d.ts index 4f57866d..ab01e7ea 100644 --- a/typescript/dist/models/DataId.d.ts +++ b/typescript/dist/models/DataId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataId.js b/typescript/dist/models/DataId.js index e00eb43f..b869fbbe 100644 --- a/typescript/dist/models/DataId.js +++ b/typescript/dist/models/DataId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataPath.d.ts b/typescript/dist/models/DataPath.d.ts index bec06833..be15a3a0 100644 --- a/typescript/dist/models/DataPath.d.ts +++ b/typescript/dist/models/DataPath.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataPath.js b/typescript/dist/models/DataPath.js index 8e9ad679..8984cfb4 100644 --- a/typescript/dist/models/DataPath.js +++ b/typescript/dist/models/DataPath.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataPathOneOf.d.ts b/typescript/dist/models/DataPathOneOf.d.ts index edbf7468..b0816be4 100644 --- a/typescript/dist/models/DataPathOneOf.d.ts +++ b/typescript/dist/models/DataPathOneOf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataPathOneOf.js b/typescript/dist/models/DataPathOneOf.js index 3d1a289a..f55c11b6 100644 --- a/typescript/dist/models/DataPathOneOf.js +++ b/typescript/dist/models/DataPathOneOf.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataPathOneOf1.d.ts b/typescript/dist/models/DataPathOneOf1.d.ts index 7ab6c1df..31d20891 100644 --- a/typescript/dist/models/DataPathOneOf1.d.ts +++ b/typescript/dist/models/DataPathOneOf1.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataPathOneOf1.js b/typescript/dist/models/DataPathOneOf1.js index 6884c44c..2a6bd637 100644 --- a/typescript/dist/models/DataPathOneOf1.js +++ b/typescript/dist/models/DataPathOneOf1.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataUsage.d.ts b/typescript/dist/models/DataUsage.d.ts index 1b77f415..e4d2035e 100644 --- a/typescript/dist/models/DataUsage.d.ts +++ b/typescript/dist/models/DataUsage.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataUsage.js b/typescript/dist/models/DataUsage.js index 705e882a..b9a1440a 100644 --- a/typescript/dist/models/DataUsage.js +++ b/typescript/dist/models/DataUsage.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DataUsageSummary.d.ts b/typescript/dist/models/DataUsageSummary.d.ts index c4b6d16a..37c28d1a 100644 --- a/typescript/dist/models/DataUsageSummary.d.ts +++ b/typescript/dist/models/DataUsageSummary.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 @@ -26,7 +26,7 @@ export interface DataUsageSummary { * @type {string} * @memberof DataUsageSummary */ - dataset: string; + data: string; /** * * @type {Date} diff --git a/typescript/dist/models/DataUsageSummary.js b/typescript/dist/models/DataUsageSummary.js index b6848c5c..8f6063fe 100644 --- a/typescript/dist/models/DataUsageSummary.js +++ b/typescript/dist/models/DataUsageSummary.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 @@ -20,7 +20,7 @@ exports.DataUsageSummaryToJSON = exports.DataUsageSummaryFromJSONTyped = exports function instanceOfDataUsageSummary(value) { let isInstance = true; isInstance = isInstance && "count" in value; - isInstance = isInstance && "dataset" in value; + isInstance = isInstance && "data" in value; isInstance = isInstance && "timestamp" in value; return isInstance; } @@ -35,7 +35,7 @@ function DataUsageSummaryFromJSONTyped(json, ignoreDiscriminator) { } return { 'count': json['count'], - 'dataset': json['dataset'], + 'data': json['data'], 'timestamp': (new Date(json['timestamp'])), }; } @@ -49,7 +49,7 @@ function DataUsageSummaryToJSON(value) { } return { 'count': value.count, - 'dataset': value.dataset, + 'data': value.data, 'timestamp': (value.timestamp.toISOString()), }; } diff --git a/typescript/dist/models/Dataset.d.ts b/typescript/dist/models/Dataset.d.ts index 7987197b..91ca3554 100644 --- a/typescript/dist/models/Dataset.d.ts +++ b/typescript/dist/models/Dataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Dataset.js b/typescript/dist/models/Dataset.js index 8ae7e952..bb2b3e11 100644 --- a/typescript/dist/models/Dataset.js +++ b/typescript/dist/models/Dataset.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DatasetDefinition.d.ts b/typescript/dist/models/DatasetDefinition.d.ts index 1f3504e9..5f645eec 100644 --- a/typescript/dist/models/DatasetDefinition.d.ts +++ b/typescript/dist/models/DatasetDefinition.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DatasetDefinition.js b/typescript/dist/models/DatasetDefinition.js index b104d315..af46c2a9 100644 --- a/typescript/dist/models/DatasetDefinition.js +++ b/typescript/dist/models/DatasetDefinition.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DatasetListing.d.ts b/typescript/dist/models/DatasetListing.d.ts index 7f5b18a2..f5c590ad 100644 --- a/typescript/dist/models/DatasetListing.d.ts +++ b/typescript/dist/models/DatasetListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DatasetListing.js b/typescript/dist/models/DatasetListing.js index 0ade5433..86048f20 100644 --- a/typescript/dist/models/DatasetListing.js +++ b/typescript/dist/models/DatasetListing.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DatasetResource.d.ts b/typescript/dist/models/DatasetResource.d.ts index 74b6ac1c..b2267d2d 100644 --- a/typescript/dist/models/DatasetResource.d.ts +++ b/typescript/dist/models/DatasetResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DatasetResource.js b/typescript/dist/models/DatasetResource.js index 5dfb06c1..3d1a4894 100644 --- a/typescript/dist/models/DatasetResource.js +++ b/typescript/dist/models/DatasetResource.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DateTime.d.ts b/typescript/dist/models/DateTime.d.ts index 7a1cf7c2..15f27d04 100644 --- a/typescript/dist/models/DateTime.d.ts +++ b/typescript/dist/models/DateTime.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DateTime.js b/typescript/dist/models/DateTime.js index 727181c3..18d7b38b 100644 --- a/typescript/dist/models/DateTime.js +++ b/typescript/dist/models/DateTime.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DerivedColor.d.ts b/typescript/dist/models/DerivedColor.d.ts index d0f3219c..d704d4b7 100644 --- a/typescript/dist/models/DerivedColor.d.ts +++ b/typescript/dist/models/DerivedColor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DerivedColor.js b/typescript/dist/models/DerivedColor.js index 73d2c845..5c461584 100644 --- a/typescript/dist/models/DerivedColor.js +++ b/typescript/dist/models/DerivedColor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DerivedNumber.d.ts b/typescript/dist/models/DerivedNumber.d.ts index 0bf8e9ee..6a21127b 100644 --- a/typescript/dist/models/DerivedNumber.d.ts +++ b/typescript/dist/models/DerivedNumber.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DerivedNumber.js b/typescript/dist/models/DerivedNumber.js index cbfdba9c..30f82699 100644 --- a/typescript/dist/models/DerivedNumber.js +++ b/typescript/dist/models/DerivedNumber.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DescribeCoverageRequest.d.ts b/typescript/dist/models/DescribeCoverageRequest.d.ts index 72ca9eef..8abf5f19 100644 --- a/typescript/dist/models/DescribeCoverageRequest.d.ts +++ b/typescript/dist/models/DescribeCoverageRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/DescribeCoverageRequest.js b/typescript/dist/models/DescribeCoverageRequest.js index f507c5c2..58b48635 100644 --- a/typescript/dist/models/DescribeCoverageRequest.js +++ b/typescript/dist/models/DescribeCoverageRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ErrorResponse.d.ts b/typescript/dist/models/ErrorResponse.d.ts index 9b88e83c..75036720 100644 --- a/typescript/dist/models/ErrorResponse.d.ts +++ b/typescript/dist/models/ErrorResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ErrorResponse.js b/typescript/dist/models/ErrorResponse.js index 2fe659bd..83bc0ca5 100644 --- a/typescript/dist/models/ErrorResponse.js +++ b/typescript/dist/models/ErrorResponse.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ExternalDataId.d.ts b/typescript/dist/models/ExternalDataId.d.ts index 1ced1eea..cf1fd7d4 100644 --- a/typescript/dist/models/ExternalDataId.d.ts +++ b/typescript/dist/models/ExternalDataId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ExternalDataId.js b/typescript/dist/models/ExternalDataId.js index bddde95b..b1d0a776 100644 --- a/typescript/dist/models/ExternalDataId.js +++ b/typescript/dist/models/ExternalDataId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FeatureDataType.d.ts b/typescript/dist/models/FeatureDataType.d.ts index bd4c88c2..17a2b28c 100644 --- a/typescript/dist/models/FeatureDataType.d.ts +++ b/typescript/dist/models/FeatureDataType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FeatureDataType.js b/typescript/dist/models/FeatureDataType.js index be3d30c2..c20163b3 100644 --- a/typescript/dist/models/FeatureDataType.js +++ b/typescript/dist/models/FeatureDataType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FileNotFoundHandling.d.ts b/typescript/dist/models/FileNotFoundHandling.d.ts index a767d74c..e4aa2e05 100644 --- a/typescript/dist/models/FileNotFoundHandling.d.ts +++ b/typescript/dist/models/FileNotFoundHandling.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FileNotFoundHandling.js b/typescript/dist/models/FileNotFoundHandling.js index c05d687f..ff27ccd2 100644 --- a/typescript/dist/models/FileNotFoundHandling.js +++ b/typescript/dist/models/FileNotFoundHandling.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FormatSpecifics.d.ts b/typescript/dist/models/FormatSpecifics.d.ts index d0866cc5..72050a4f 100644 --- a/typescript/dist/models/FormatSpecifics.d.ts +++ b/typescript/dist/models/FormatSpecifics.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FormatSpecifics.js b/typescript/dist/models/FormatSpecifics.js index 87a21e43..013aa772 100644 --- a/typescript/dist/models/FormatSpecifics.js +++ b/typescript/dist/models/FormatSpecifics.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FormatSpecificsOneOf.d.ts b/typescript/dist/models/FormatSpecificsOneOf.d.ts index 05945763..fa56f7a9 100644 --- a/typescript/dist/models/FormatSpecificsOneOf.d.ts +++ b/typescript/dist/models/FormatSpecificsOneOf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FormatSpecificsOneOf.js b/typescript/dist/models/FormatSpecificsOneOf.js index cce05389..ef169685 100644 --- a/typescript/dist/models/FormatSpecificsOneOf.js +++ b/typescript/dist/models/FormatSpecificsOneOf.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FormatSpecificsOneOfCsv.d.ts b/typescript/dist/models/FormatSpecificsOneOfCsv.d.ts index 7cfee94d..7a244c60 100644 --- a/typescript/dist/models/FormatSpecificsOneOfCsv.d.ts +++ b/typescript/dist/models/FormatSpecificsOneOfCsv.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/FormatSpecificsOneOfCsv.js b/typescript/dist/models/FormatSpecificsOneOfCsv.js index 2f86e79f..03c96053 100644 --- a/typescript/dist/models/FormatSpecificsOneOfCsv.js +++ b/typescript/dist/models/FormatSpecificsOneOfCsv.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalDatasetGeoTransform.d.ts b/typescript/dist/models/GdalDatasetGeoTransform.d.ts index c3132b1d..b549b436 100644 --- a/typescript/dist/models/GdalDatasetGeoTransform.d.ts +++ b/typescript/dist/models/GdalDatasetGeoTransform.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalDatasetGeoTransform.js b/typescript/dist/models/GdalDatasetGeoTransform.js index e124ef8d..a4108887 100644 --- a/typescript/dist/models/GdalDatasetGeoTransform.js +++ b/typescript/dist/models/GdalDatasetGeoTransform.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalDatasetParameters.d.ts b/typescript/dist/models/GdalDatasetParameters.d.ts index ae39a139..fa4ce808 100644 --- a/typescript/dist/models/GdalDatasetParameters.d.ts +++ b/typescript/dist/models/GdalDatasetParameters.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalDatasetParameters.js b/typescript/dist/models/GdalDatasetParameters.js index d42a7207..6a7d99fa 100644 --- a/typescript/dist/models/GdalDatasetParameters.js +++ b/typescript/dist/models/GdalDatasetParameters.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalLoadingInfoTemporalSlice.d.ts b/typescript/dist/models/GdalLoadingInfoTemporalSlice.d.ts index db746807..1d0e7df9 100644 --- a/typescript/dist/models/GdalLoadingInfoTemporalSlice.d.ts +++ b/typescript/dist/models/GdalLoadingInfoTemporalSlice.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalLoadingInfoTemporalSlice.js b/typescript/dist/models/GdalLoadingInfoTemporalSlice.js index 25603990..d2404d54 100644 --- a/typescript/dist/models/GdalLoadingInfoTemporalSlice.js +++ b/typescript/dist/models/GdalLoadingInfoTemporalSlice.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetaDataList.d.ts b/typescript/dist/models/GdalMetaDataList.d.ts index 1d912263..8f68482c 100644 --- a/typescript/dist/models/GdalMetaDataList.d.ts +++ b/typescript/dist/models/GdalMetaDataList.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetaDataList.js b/typescript/dist/models/GdalMetaDataList.js index 46a8557d..cc29d0ed 100644 --- a/typescript/dist/models/GdalMetaDataList.js +++ b/typescript/dist/models/GdalMetaDataList.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetaDataRegular.d.ts b/typescript/dist/models/GdalMetaDataRegular.d.ts index 4ea5d110..04e5f784 100644 --- a/typescript/dist/models/GdalMetaDataRegular.d.ts +++ b/typescript/dist/models/GdalMetaDataRegular.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetaDataRegular.js b/typescript/dist/models/GdalMetaDataRegular.js index 35e5b8c1..60411ef1 100644 --- a/typescript/dist/models/GdalMetaDataRegular.js +++ b/typescript/dist/models/GdalMetaDataRegular.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetaDataStatic.d.ts b/typescript/dist/models/GdalMetaDataStatic.d.ts index 97e6c672..d06ae93e 100644 --- a/typescript/dist/models/GdalMetaDataStatic.d.ts +++ b/typescript/dist/models/GdalMetaDataStatic.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetaDataStatic.js b/typescript/dist/models/GdalMetaDataStatic.js index 3c46d394..37e89fb8 100644 --- a/typescript/dist/models/GdalMetaDataStatic.js +++ b/typescript/dist/models/GdalMetaDataStatic.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetadataMapping.d.ts b/typescript/dist/models/GdalMetadataMapping.d.ts index b9f87db0..3961e501 100644 --- a/typescript/dist/models/GdalMetadataMapping.d.ts +++ b/typescript/dist/models/GdalMetadataMapping.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetadataMapping.js b/typescript/dist/models/GdalMetadataMapping.js index 5a1e2b05..97ff7d6d 100644 --- a/typescript/dist/models/GdalMetadataMapping.js +++ b/typescript/dist/models/GdalMetadataMapping.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetadataNetCdfCf.d.ts b/typescript/dist/models/GdalMetadataNetCdfCf.d.ts index 5563fc86..cd177621 100644 --- a/typescript/dist/models/GdalMetadataNetCdfCf.d.ts +++ b/typescript/dist/models/GdalMetadataNetCdfCf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalMetadataNetCdfCf.js b/typescript/dist/models/GdalMetadataNetCdfCf.js index 715c912e..7683e2a0 100644 --- a/typescript/dist/models/GdalMetadataNetCdfCf.js +++ b/typescript/dist/models/GdalMetadataNetCdfCf.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalSourceTimePlaceholder.d.ts b/typescript/dist/models/GdalSourceTimePlaceholder.d.ts index 23f95bcb..15214023 100644 --- a/typescript/dist/models/GdalSourceTimePlaceholder.d.ts +++ b/typescript/dist/models/GdalSourceTimePlaceholder.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GdalSourceTimePlaceholder.js b/typescript/dist/models/GdalSourceTimePlaceholder.js index 38526a0d..50ee7f0f 100644 --- a/typescript/dist/models/GdalSourceTimePlaceholder.js +++ b/typescript/dist/models/GdalSourceTimePlaceholder.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GeoJson.d.ts b/typescript/dist/models/GeoJson.d.ts index 510559b4..004ba2d1 100644 --- a/typescript/dist/models/GeoJson.d.ts +++ b/typescript/dist/models/GeoJson.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GeoJson.js b/typescript/dist/models/GeoJson.js index be9140cd..4422a361 100644 --- a/typescript/dist/models/GeoJson.js +++ b/typescript/dist/models/GeoJson.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCapabilitiesFormat.d.ts b/typescript/dist/models/GetCapabilitiesFormat.d.ts index a822d770..95b0b23f 100644 --- a/typescript/dist/models/GetCapabilitiesFormat.d.ts +++ b/typescript/dist/models/GetCapabilitiesFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCapabilitiesFormat.js b/typescript/dist/models/GetCapabilitiesFormat.js index 65579e6b..ac9ba6c9 100644 --- a/typescript/dist/models/GetCapabilitiesFormat.js +++ b/typescript/dist/models/GetCapabilitiesFormat.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCapabilitiesRequest.d.ts b/typescript/dist/models/GetCapabilitiesRequest.d.ts index 5c91826c..c7df069d 100644 --- a/typescript/dist/models/GetCapabilitiesRequest.d.ts +++ b/typescript/dist/models/GetCapabilitiesRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCapabilitiesRequest.js b/typescript/dist/models/GetCapabilitiesRequest.js index 09c603e8..91429981 100644 --- a/typescript/dist/models/GetCapabilitiesRequest.js +++ b/typescript/dist/models/GetCapabilitiesRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCoverageFormat.d.ts b/typescript/dist/models/GetCoverageFormat.d.ts index 077351cc..dffbb0e8 100644 --- a/typescript/dist/models/GetCoverageFormat.d.ts +++ b/typescript/dist/models/GetCoverageFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCoverageFormat.js b/typescript/dist/models/GetCoverageFormat.js index 413c0f49..9720b77e 100644 --- a/typescript/dist/models/GetCoverageFormat.js +++ b/typescript/dist/models/GetCoverageFormat.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCoverageRequest.d.ts b/typescript/dist/models/GetCoverageRequest.d.ts index 0371210d..34801895 100644 --- a/typescript/dist/models/GetCoverageRequest.d.ts +++ b/typescript/dist/models/GetCoverageRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetCoverageRequest.js b/typescript/dist/models/GetCoverageRequest.js index b0b56425..73ab125b 100644 --- a/typescript/dist/models/GetCoverageRequest.js +++ b/typescript/dist/models/GetCoverageRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetFeatureRequest.d.ts b/typescript/dist/models/GetFeatureRequest.d.ts index ce2353e3..3118dc0d 100644 --- a/typescript/dist/models/GetFeatureRequest.d.ts +++ b/typescript/dist/models/GetFeatureRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetFeatureRequest.js b/typescript/dist/models/GetFeatureRequest.js index 4bd41620..a44fafbd 100644 --- a/typescript/dist/models/GetFeatureRequest.js +++ b/typescript/dist/models/GetFeatureRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetLegendGraphicRequest.d.ts b/typescript/dist/models/GetLegendGraphicRequest.d.ts index 7640e27f..ee086d0f 100644 --- a/typescript/dist/models/GetLegendGraphicRequest.d.ts +++ b/typescript/dist/models/GetLegendGraphicRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetLegendGraphicRequest.js b/typescript/dist/models/GetLegendGraphicRequest.js index 3d88ea8b..1defdcc8 100644 --- a/typescript/dist/models/GetLegendGraphicRequest.js +++ b/typescript/dist/models/GetLegendGraphicRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetMapExceptionFormat.d.ts b/typescript/dist/models/GetMapExceptionFormat.d.ts index 342cba80..bec87079 100644 --- a/typescript/dist/models/GetMapExceptionFormat.d.ts +++ b/typescript/dist/models/GetMapExceptionFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetMapExceptionFormat.js b/typescript/dist/models/GetMapExceptionFormat.js index 00cf2e20..ea1ca60d 100644 --- a/typescript/dist/models/GetMapExceptionFormat.js +++ b/typescript/dist/models/GetMapExceptionFormat.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetMapFormat.d.ts b/typescript/dist/models/GetMapFormat.d.ts index 898644db..ccbff908 100644 --- a/typescript/dist/models/GetMapFormat.d.ts +++ b/typescript/dist/models/GetMapFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetMapFormat.js b/typescript/dist/models/GetMapFormat.js index ed67c4a1..835ef329 100644 --- a/typescript/dist/models/GetMapFormat.js +++ b/typescript/dist/models/GetMapFormat.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetMapRequest.d.ts b/typescript/dist/models/GetMapRequest.d.ts index fa2ddc77..afd0bf0b 100644 --- a/typescript/dist/models/GetMapRequest.d.ts +++ b/typescript/dist/models/GetMapRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/GetMapRequest.js b/typescript/dist/models/GetMapRequest.js index 78e158b4..e3710476 100644 --- a/typescript/dist/models/GetMapRequest.js +++ b/typescript/dist/models/GetMapRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/InternalDataId.d.ts b/typescript/dist/models/InternalDataId.d.ts index 3e144424..d2f3c909 100644 --- a/typescript/dist/models/InternalDataId.d.ts +++ b/typescript/dist/models/InternalDataId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/InternalDataId.js b/typescript/dist/models/InternalDataId.js index acf73bfa..12ba0c20 100644 --- a/typescript/dist/models/InternalDataId.js +++ b/typescript/dist/models/InternalDataId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Layer.d.ts b/typescript/dist/models/Layer.d.ts index f99b91b4..b7002503 100644 --- a/typescript/dist/models/Layer.d.ts +++ b/typescript/dist/models/Layer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Layer.js b/typescript/dist/models/Layer.js index ac52f93d..9103ee9a 100644 --- a/typescript/dist/models/Layer.js +++ b/typescript/dist/models/Layer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerCollection.d.ts b/typescript/dist/models/LayerCollection.d.ts index 4fb1068f..b9c0e178 100644 --- a/typescript/dist/models/LayerCollection.d.ts +++ b/typescript/dist/models/LayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerCollection.js b/typescript/dist/models/LayerCollection.js index baa5d17a..40d471c2 100644 --- a/typescript/dist/models/LayerCollection.js +++ b/typescript/dist/models/LayerCollection.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerCollectionListing.d.ts b/typescript/dist/models/LayerCollectionListing.d.ts index 95a8f513..e3a05c0e 100644 --- a/typescript/dist/models/LayerCollectionListing.d.ts +++ b/typescript/dist/models/LayerCollectionListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerCollectionListing.js b/typescript/dist/models/LayerCollectionListing.js index 8b89d395..af970fdc 100644 --- a/typescript/dist/models/LayerCollectionListing.js +++ b/typescript/dist/models/LayerCollectionListing.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerCollectionResource.d.ts b/typescript/dist/models/LayerCollectionResource.d.ts index 78e48d6f..6daab6d0 100644 --- a/typescript/dist/models/LayerCollectionResource.d.ts +++ b/typescript/dist/models/LayerCollectionResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerCollectionResource.js b/typescript/dist/models/LayerCollectionResource.js index cac85efb..84d0d1dc 100644 --- a/typescript/dist/models/LayerCollectionResource.js +++ b/typescript/dist/models/LayerCollectionResource.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerListing.d.ts b/typescript/dist/models/LayerListing.d.ts index 24432f77..c8a481ba 100644 --- a/typescript/dist/models/LayerListing.d.ts +++ b/typescript/dist/models/LayerListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerListing.js b/typescript/dist/models/LayerListing.js index 6ae148b8..defdef1a 100644 --- a/typescript/dist/models/LayerListing.js +++ b/typescript/dist/models/LayerListing.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerResource.d.ts b/typescript/dist/models/LayerResource.d.ts index 2d3e565b..70455cdd 100644 --- a/typescript/dist/models/LayerResource.d.ts +++ b/typescript/dist/models/LayerResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerResource.js b/typescript/dist/models/LayerResource.js index 073cd93c..d2bf4776 100644 --- a/typescript/dist/models/LayerResource.js +++ b/typescript/dist/models/LayerResource.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerUpdate.d.ts b/typescript/dist/models/LayerUpdate.d.ts index 9e441a95..ac3cfe51 100644 --- a/typescript/dist/models/LayerUpdate.d.ts +++ b/typescript/dist/models/LayerUpdate.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerUpdate.js b/typescript/dist/models/LayerUpdate.js index 3ff57df0..929c1ccd 100644 --- a/typescript/dist/models/LayerUpdate.js +++ b/typescript/dist/models/LayerUpdate.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerVisibility.d.ts b/typescript/dist/models/LayerVisibility.d.ts index e28a5041..65dc0aa0 100644 --- a/typescript/dist/models/LayerVisibility.d.ts +++ b/typescript/dist/models/LayerVisibility.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LayerVisibility.js b/typescript/dist/models/LayerVisibility.js index 23a9aa48..1dd5f0ee 100644 --- a/typescript/dist/models/LayerVisibility.js +++ b/typescript/dist/models/LayerVisibility.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LineSymbology.d.ts b/typescript/dist/models/LineSymbology.d.ts index 6f419be8..7a657fbe 100644 --- a/typescript/dist/models/LineSymbology.d.ts +++ b/typescript/dist/models/LineSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LineSymbology.js b/typescript/dist/models/LineSymbology.js index faa0c7a0..f11a4b26 100644 --- a/typescript/dist/models/LineSymbology.js +++ b/typescript/dist/models/LineSymbology.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LinearGradient.d.ts b/typescript/dist/models/LinearGradient.d.ts index 17dff1aa..f11f716f 100644 --- a/typescript/dist/models/LinearGradient.d.ts +++ b/typescript/dist/models/LinearGradient.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LinearGradient.js b/typescript/dist/models/LinearGradient.js index 4e93c762..bfcb1839 100644 --- a/typescript/dist/models/LinearGradient.js +++ b/typescript/dist/models/LinearGradient.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LogarithmicGradient.d.ts b/typescript/dist/models/LogarithmicGradient.d.ts index db936c2c..3ca0a5d8 100644 --- a/typescript/dist/models/LogarithmicGradient.d.ts +++ b/typescript/dist/models/LogarithmicGradient.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/LogarithmicGradient.js b/typescript/dist/models/LogarithmicGradient.js index f69015d0..d11e3121 100644 --- a/typescript/dist/models/LogarithmicGradient.js +++ b/typescript/dist/models/LogarithmicGradient.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Measurement.d.ts b/typescript/dist/models/Measurement.d.ts index 1a670329..6daef098 100644 --- a/typescript/dist/models/Measurement.d.ts +++ b/typescript/dist/models/Measurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Measurement.js b/typescript/dist/models/Measurement.js index f6ec85f4..a19e4922 100644 --- a/typescript/dist/models/Measurement.js +++ b/typescript/dist/models/Measurement.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MetaDataDefinition.d.ts b/typescript/dist/models/MetaDataDefinition.d.ts index 80e8c10e..6f92b75b 100644 --- a/typescript/dist/models/MetaDataDefinition.d.ts +++ b/typescript/dist/models/MetaDataDefinition.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MetaDataDefinition.js b/typescript/dist/models/MetaDataDefinition.js index bd537d99..84435969 100644 --- a/typescript/dist/models/MetaDataDefinition.js +++ b/typescript/dist/models/MetaDataDefinition.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MetaDataSuggestion.d.ts b/typescript/dist/models/MetaDataSuggestion.d.ts index b601d2ec..38460fb6 100644 --- a/typescript/dist/models/MetaDataSuggestion.d.ts +++ b/typescript/dist/models/MetaDataSuggestion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MetaDataSuggestion.js b/typescript/dist/models/MetaDataSuggestion.js index 990b8066..b6078b39 100644 --- a/typescript/dist/models/MetaDataSuggestion.js +++ b/typescript/dist/models/MetaDataSuggestion.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MlModel.d.ts b/typescript/dist/models/MlModel.d.ts index 9f01845f..73c636bf 100644 --- a/typescript/dist/models/MlModel.d.ts +++ b/typescript/dist/models/MlModel.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MlModel.js b/typescript/dist/models/MlModel.js index e7f6213e..444c91b6 100644 --- a/typescript/dist/models/MlModel.js +++ b/typescript/dist/models/MlModel.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MlModelMetadata.d.ts b/typescript/dist/models/MlModelMetadata.d.ts index 8a7f989c..707778e9 100644 --- a/typescript/dist/models/MlModelMetadata.d.ts +++ b/typescript/dist/models/MlModelMetadata.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MlModelMetadata.js b/typescript/dist/models/MlModelMetadata.js index c8fe0382..ff2af007 100644 --- a/typescript/dist/models/MlModelMetadata.js +++ b/typescript/dist/models/MlModelMetadata.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MockDatasetDataSourceLoadingInfo.d.ts b/typescript/dist/models/MockDatasetDataSourceLoadingInfo.d.ts index 7be92024..2bf35129 100644 --- a/typescript/dist/models/MockDatasetDataSourceLoadingInfo.d.ts +++ b/typescript/dist/models/MockDatasetDataSourceLoadingInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MockDatasetDataSourceLoadingInfo.js b/typescript/dist/models/MockDatasetDataSourceLoadingInfo.js index e0e61f91..b8492737 100644 --- a/typescript/dist/models/MockDatasetDataSourceLoadingInfo.js +++ b/typescript/dist/models/MockDatasetDataSourceLoadingInfo.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MockMetaData.d.ts b/typescript/dist/models/MockMetaData.d.ts index 1fba07e5..e36586fb 100644 --- a/typescript/dist/models/MockMetaData.d.ts +++ b/typescript/dist/models/MockMetaData.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MockMetaData.js b/typescript/dist/models/MockMetaData.js index 6767fd81..d08cde94 100644 --- a/typescript/dist/models/MockMetaData.js +++ b/typescript/dist/models/MockMetaData.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiBandRasterColorizer.d.ts b/typescript/dist/models/MultiBandRasterColorizer.d.ts index dcb3db4c..c80dbea0 100644 --- a/typescript/dist/models/MultiBandRasterColorizer.d.ts +++ b/typescript/dist/models/MultiBandRasterColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiBandRasterColorizer.js b/typescript/dist/models/MultiBandRasterColorizer.js index 101cab13..d1e8207b 100644 --- a/typescript/dist/models/MultiBandRasterColorizer.js +++ b/typescript/dist/models/MultiBandRasterColorizer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiLineString.d.ts b/typescript/dist/models/MultiLineString.d.ts index eb5c0291..337af6e5 100644 --- a/typescript/dist/models/MultiLineString.d.ts +++ b/typescript/dist/models/MultiLineString.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiLineString.js b/typescript/dist/models/MultiLineString.js index 9804b411..502976e8 100644 --- a/typescript/dist/models/MultiLineString.js +++ b/typescript/dist/models/MultiLineString.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiPoint.d.ts b/typescript/dist/models/MultiPoint.d.ts index 33f91125..80e81b17 100644 --- a/typescript/dist/models/MultiPoint.d.ts +++ b/typescript/dist/models/MultiPoint.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiPoint.js b/typescript/dist/models/MultiPoint.js index 0a0a3b08..dafa0100 100644 --- a/typescript/dist/models/MultiPoint.js +++ b/typescript/dist/models/MultiPoint.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiPolygon.d.ts b/typescript/dist/models/MultiPolygon.d.ts index cbd1a4db..e6dbe06d 100644 --- a/typescript/dist/models/MultiPolygon.d.ts +++ b/typescript/dist/models/MultiPolygon.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/MultiPolygon.js b/typescript/dist/models/MultiPolygon.js index 3aafc62e..d22ac803 100644 --- a/typescript/dist/models/MultiPolygon.js +++ b/typescript/dist/models/MultiPolygon.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/NumberParam.d.ts b/typescript/dist/models/NumberParam.d.ts index 5c55d29c..333d7c0c 100644 --- a/typescript/dist/models/NumberParam.d.ts +++ b/typescript/dist/models/NumberParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/NumberParam.js b/typescript/dist/models/NumberParam.js index ad614847..2acc3763 100644 --- a/typescript/dist/models/NumberParam.js +++ b/typescript/dist/models/NumberParam.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrMetaData.d.ts b/typescript/dist/models/OgrMetaData.d.ts index a96ac9ae..c6059211 100644 --- a/typescript/dist/models/OgrMetaData.d.ts +++ b/typescript/dist/models/OgrMetaData.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrMetaData.js b/typescript/dist/models/OgrMetaData.js index ee14035b..34b066d3 100644 --- a/typescript/dist/models/OgrMetaData.js +++ b/typescript/dist/models/OgrMetaData.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceColumnSpec.d.ts b/typescript/dist/models/OgrSourceColumnSpec.d.ts index e4f5eeb2..f7c7d44a 100644 --- a/typescript/dist/models/OgrSourceColumnSpec.d.ts +++ b/typescript/dist/models/OgrSourceColumnSpec.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceColumnSpec.js b/typescript/dist/models/OgrSourceColumnSpec.js index 94601897..4656641b 100644 --- a/typescript/dist/models/OgrSourceColumnSpec.js +++ b/typescript/dist/models/OgrSourceColumnSpec.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDataset.d.ts b/typescript/dist/models/OgrSourceDataset.d.ts index 15851e53..6e5b7de6 100644 --- a/typescript/dist/models/OgrSourceDataset.d.ts +++ b/typescript/dist/models/OgrSourceDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDataset.js b/typescript/dist/models/OgrSourceDataset.js index f9693cca..48ce5e9e 100644 --- a/typescript/dist/models/OgrSourceDataset.js +++ b/typescript/dist/models/OgrSourceDataset.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeType.d.ts b/typescript/dist/models/OgrSourceDatasetTimeType.d.ts index a0b2e4c9..51015e5d 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeType.d.ts +++ b/typescript/dist/models/OgrSourceDatasetTimeType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeType.js b/typescript/dist/models/OgrSourceDatasetTimeType.js index a2f3be97..79455e4a 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeType.js +++ b/typescript/dist/models/OgrSourceDatasetTimeType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeNone.d.ts b/typescript/dist/models/OgrSourceDatasetTimeTypeNone.d.ts index f4069167..203a9b35 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeNone.d.ts +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeNone.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeNone.js b/typescript/dist/models/OgrSourceDatasetTimeTypeNone.js index 563023d5..bb6a67aa 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeNone.js +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeNone.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeStart.d.ts b/typescript/dist/models/OgrSourceDatasetTimeTypeStart.d.ts index 3e148e3d..531be6c5 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeStart.d.ts +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeStart.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeStart.js b/typescript/dist/models/OgrSourceDatasetTimeTypeStart.js index f7f7e1a7..5c4f6c99 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeStart.js +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeStart.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.d.ts b/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.d.ts index fe04b281..82606c14 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.d.ts +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.js b/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.js index 310d125b..11e7eacf 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.js +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeStartDuration.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.d.ts b/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.d.ts index c3facdee..8b43d91e 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.d.ts +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.js b/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.js index b4b3b754..c8f8d64e 100644 --- a/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.js +++ b/typescript/dist/models/OgrSourceDatasetTimeTypeStartEnd.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpec.d.ts b/typescript/dist/models/OgrSourceDurationSpec.d.ts index 5eec41c7..b1f02113 100644 --- a/typescript/dist/models/OgrSourceDurationSpec.d.ts +++ b/typescript/dist/models/OgrSourceDurationSpec.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpec.js b/typescript/dist/models/OgrSourceDurationSpec.js index ee6f4d68..2453ac6d 100644 --- a/typescript/dist/models/OgrSourceDurationSpec.js +++ b/typescript/dist/models/OgrSourceDurationSpec.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpecInfinite.d.ts b/typescript/dist/models/OgrSourceDurationSpecInfinite.d.ts index eb652503..016d6fdf 100644 --- a/typescript/dist/models/OgrSourceDurationSpecInfinite.d.ts +++ b/typescript/dist/models/OgrSourceDurationSpecInfinite.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpecInfinite.js b/typescript/dist/models/OgrSourceDurationSpecInfinite.js index a00663bd..399d924c 100644 --- a/typescript/dist/models/OgrSourceDurationSpecInfinite.js +++ b/typescript/dist/models/OgrSourceDurationSpecInfinite.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpecValue.d.ts b/typescript/dist/models/OgrSourceDurationSpecValue.d.ts index 8cb29151..f3d08292 100644 --- a/typescript/dist/models/OgrSourceDurationSpecValue.d.ts +++ b/typescript/dist/models/OgrSourceDurationSpecValue.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpecValue.js b/typescript/dist/models/OgrSourceDurationSpecValue.js index 0f5f1c6c..1236b788 100644 --- a/typescript/dist/models/OgrSourceDurationSpecValue.js +++ b/typescript/dist/models/OgrSourceDurationSpecValue.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpecZero.d.ts b/typescript/dist/models/OgrSourceDurationSpecZero.d.ts index b6f8e85c..8ac91d5d 100644 --- a/typescript/dist/models/OgrSourceDurationSpecZero.d.ts +++ b/typescript/dist/models/OgrSourceDurationSpecZero.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceDurationSpecZero.js b/typescript/dist/models/OgrSourceDurationSpecZero.js index 8ccfd8a8..5cda40fc 100644 --- a/typescript/dist/models/OgrSourceDurationSpecZero.js +++ b/typescript/dist/models/OgrSourceDurationSpecZero.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceErrorSpec.d.ts b/typescript/dist/models/OgrSourceErrorSpec.d.ts index a65d12d3..95c78fbc 100644 --- a/typescript/dist/models/OgrSourceErrorSpec.d.ts +++ b/typescript/dist/models/OgrSourceErrorSpec.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceErrorSpec.js b/typescript/dist/models/OgrSourceErrorSpec.js index e68b8906..5ffdfcba 100644 --- a/typescript/dist/models/OgrSourceErrorSpec.js +++ b/typescript/dist/models/OgrSourceErrorSpec.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormat.d.ts b/typescript/dist/models/OgrSourceTimeFormat.d.ts index 427cba99..b56aa051 100644 --- a/typescript/dist/models/OgrSourceTimeFormat.d.ts +++ b/typescript/dist/models/OgrSourceTimeFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormat.js b/typescript/dist/models/OgrSourceTimeFormat.js index 5d8bbef0..c55a2baf 100644 --- a/typescript/dist/models/OgrSourceTimeFormat.js +++ b/typescript/dist/models/OgrSourceTimeFormat.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormatAuto.d.ts b/typescript/dist/models/OgrSourceTimeFormatAuto.d.ts index 26e0087c..d2fd2ec4 100644 --- a/typescript/dist/models/OgrSourceTimeFormatAuto.d.ts +++ b/typescript/dist/models/OgrSourceTimeFormatAuto.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormatAuto.js b/typescript/dist/models/OgrSourceTimeFormatAuto.js index 66e67cf2..baa8c3b7 100644 --- a/typescript/dist/models/OgrSourceTimeFormatAuto.js +++ b/typescript/dist/models/OgrSourceTimeFormatAuto.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormatCustom.d.ts b/typescript/dist/models/OgrSourceTimeFormatCustom.d.ts index 24d78d3f..b71778da 100644 --- a/typescript/dist/models/OgrSourceTimeFormatCustom.d.ts +++ b/typescript/dist/models/OgrSourceTimeFormatCustom.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormatCustom.js b/typescript/dist/models/OgrSourceTimeFormatCustom.js index 6fbea6ab..e31a22b3 100644 --- a/typescript/dist/models/OgrSourceTimeFormatCustom.js +++ b/typescript/dist/models/OgrSourceTimeFormatCustom.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.d.ts b/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.d.ts index 102719ee..74dea859 100644 --- a/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.d.ts +++ b/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.js b/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.js index 62c6665c..2b7e4a75 100644 --- a/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.js +++ b/typescript/dist/models/OgrSourceTimeFormatUnixTimeStamp.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OperatorQuota.d.ts b/typescript/dist/models/OperatorQuota.d.ts index e167005d..d49b4a83 100644 --- a/typescript/dist/models/OperatorQuota.d.ts +++ b/typescript/dist/models/OperatorQuota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OperatorQuota.js b/typescript/dist/models/OperatorQuota.js index b212818e..db2f7c9c 100644 --- a/typescript/dist/models/OperatorQuota.js +++ b/typescript/dist/models/OperatorQuota.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OrderBy.d.ts b/typescript/dist/models/OrderBy.d.ts index b69dfab6..a7c3f0d8 100644 --- a/typescript/dist/models/OrderBy.d.ts +++ b/typescript/dist/models/OrderBy.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/OrderBy.js b/typescript/dist/models/OrderBy.js index 810e87d4..df1c08d9 100644 --- a/typescript/dist/models/OrderBy.js +++ b/typescript/dist/models/OrderBy.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PaletteColorizer.d.ts b/typescript/dist/models/PaletteColorizer.d.ts index 19ea6217..5bb17d4f 100644 --- a/typescript/dist/models/PaletteColorizer.d.ts +++ b/typescript/dist/models/PaletteColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PaletteColorizer.js b/typescript/dist/models/PaletteColorizer.js index b48d557a..cb86c03b 100644 --- a/typescript/dist/models/PaletteColorizer.js +++ b/typescript/dist/models/PaletteColorizer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Permission.d.ts b/typescript/dist/models/Permission.d.ts index 67c41fd3..536e9c9b 100644 --- a/typescript/dist/models/Permission.d.ts +++ b/typescript/dist/models/Permission.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Permission.js b/typescript/dist/models/Permission.js index 1d3e4647..02e0fdfc 100644 --- a/typescript/dist/models/Permission.js +++ b/typescript/dist/models/Permission.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PermissionListOptions.d.ts b/typescript/dist/models/PermissionListOptions.d.ts index 1dec9d8c..8421c48c 100644 --- a/typescript/dist/models/PermissionListOptions.d.ts +++ b/typescript/dist/models/PermissionListOptions.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PermissionListOptions.js b/typescript/dist/models/PermissionListOptions.js index 35def78b..80e2329e 100644 --- a/typescript/dist/models/PermissionListOptions.js +++ b/typescript/dist/models/PermissionListOptions.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PermissionListing.d.ts b/typescript/dist/models/PermissionListing.d.ts index ce4766d7..fe90496e 100644 --- a/typescript/dist/models/PermissionListing.d.ts +++ b/typescript/dist/models/PermissionListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PermissionListing.js b/typescript/dist/models/PermissionListing.js index 681786de..95bbbc87 100644 --- a/typescript/dist/models/PermissionListing.js +++ b/typescript/dist/models/PermissionListing.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PermissionRequest.d.ts b/typescript/dist/models/PermissionRequest.d.ts index 68cc3e26..b7d92f5e 100644 --- a/typescript/dist/models/PermissionRequest.d.ts +++ b/typescript/dist/models/PermissionRequest.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PermissionRequest.js b/typescript/dist/models/PermissionRequest.js index 82e9d3a7..88d9d855 100644 --- a/typescript/dist/models/PermissionRequest.js +++ b/typescript/dist/models/PermissionRequest.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Plot.d.ts b/typescript/dist/models/Plot.d.ts index 6538d0aa..6d14ad5b 100644 --- a/typescript/dist/models/Plot.d.ts +++ b/typescript/dist/models/Plot.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Plot.js b/typescript/dist/models/Plot.js index 94aefcb2..9f84da9a 100644 --- a/typescript/dist/models/Plot.js +++ b/typescript/dist/models/Plot.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotOutputFormat.d.ts b/typescript/dist/models/PlotOutputFormat.d.ts index 6dac90ef..ab9a0b29 100644 --- a/typescript/dist/models/PlotOutputFormat.d.ts +++ b/typescript/dist/models/PlotOutputFormat.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotOutputFormat.js b/typescript/dist/models/PlotOutputFormat.js index 4015489d..8d50e4c3 100644 --- a/typescript/dist/models/PlotOutputFormat.js +++ b/typescript/dist/models/PlotOutputFormat.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotQueryRectangle.d.ts b/typescript/dist/models/PlotQueryRectangle.d.ts index c544b8ad..1262e22d 100644 --- a/typescript/dist/models/PlotQueryRectangle.d.ts +++ b/typescript/dist/models/PlotQueryRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotQueryRectangle.js b/typescript/dist/models/PlotQueryRectangle.js index f1473023..56f80e43 100644 --- a/typescript/dist/models/PlotQueryRectangle.js +++ b/typescript/dist/models/PlotQueryRectangle.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotResultDescriptor.d.ts b/typescript/dist/models/PlotResultDescriptor.d.ts index 38450547..159861ce 100644 --- a/typescript/dist/models/PlotResultDescriptor.d.ts +++ b/typescript/dist/models/PlotResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotResultDescriptor.js b/typescript/dist/models/PlotResultDescriptor.js index 7f7f3745..2aa324af 100644 --- a/typescript/dist/models/PlotResultDescriptor.js +++ b/typescript/dist/models/PlotResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotUpdate.d.ts b/typescript/dist/models/PlotUpdate.d.ts index 47662e94..422a95b0 100644 --- a/typescript/dist/models/PlotUpdate.d.ts +++ b/typescript/dist/models/PlotUpdate.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PlotUpdate.js b/typescript/dist/models/PlotUpdate.js index 8d76cd0a..0d09e282 100644 --- a/typescript/dist/models/PlotUpdate.js +++ b/typescript/dist/models/PlotUpdate.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PointSymbology.d.ts b/typescript/dist/models/PointSymbology.d.ts index 8cc9e97f..93f7ef4f 100644 --- a/typescript/dist/models/PointSymbology.d.ts +++ b/typescript/dist/models/PointSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PointSymbology.js b/typescript/dist/models/PointSymbology.js index 4ebdb4f3..2f198304 100644 --- a/typescript/dist/models/PointSymbology.js +++ b/typescript/dist/models/PointSymbology.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PolygonSymbology.d.ts b/typescript/dist/models/PolygonSymbology.d.ts index 7b0369cf..33e2c149 100644 --- a/typescript/dist/models/PolygonSymbology.d.ts +++ b/typescript/dist/models/PolygonSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/PolygonSymbology.js b/typescript/dist/models/PolygonSymbology.js index d48e5496..5d849d7b 100644 --- a/typescript/dist/models/PolygonSymbology.js +++ b/typescript/dist/models/PolygonSymbology.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Project.d.ts b/typescript/dist/models/Project.d.ts index 496cf125..db1736f6 100644 --- a/typescript/dist/models/Project.d.ts +++ b/typescript/dist/models/Project.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Project.js b/typescript/dist/models/Project.js index df21172e..bad1b92f 100644 --- a/typescript/dist/models/Project.js +++ b/typescript/dist/models/Project.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectLayer.d.ts b/typescript/dist/models/ProjectLayer.d.ts index dd40ec88..67280de1 100644 --- a/typescript/dist/models/ProjectLayer.d.ts +++ b/typescript/dist/models/ProjectLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectLayer.js b/typescript/dist/models/ProjectLayer.js index af35c999..f55c636c 100644 --- a/typescript/dist/models/ProjectLayer.js +++ b/typescript/dist/models/ProjectLayer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectListing.d.ts b/typescript/dist/models/ProjectListing.d.ts index b3f4dfe5..4d755f72 100644 --- a/typescript/dist/models/ProjectListing.d.ts +++ b/typescript/dist/models/ProjectListing.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectListing.js b/typescript/dist/models/ProjectListing.js index 657058b0..c3261137 100644 --- a/typescript/dist/models/ProjectListing.js +++ b/typescript/dist/models/ProjectListing.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectResource.d.ts b/typescript/dist/models/ProjectResource.d.ts index 8551b02e..3f17fdca 100644 --- a/typescript/dist/models/ProjectResource.d.ts +++ b/typescript/dist/models/ProjectResource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectResource.js b/typescript/dist/models/ProjectResource.js index 4a66ff7f..5cfe8ff5 100644 --- a/typescript/dist/models/ProjectResource.js +++ b/typescript/dist/models/ProjectResource.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectUpdateToken.d.ts b/typescript/dist/models/ProjectUpdateToken.d.ts index 85584b5d..b774adf5 100644 --- a/typescript/dist/models/ProjectUpdateToken.d.ts +++ b/typescript/dist/models/ProjectUpdateToken.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectUpdateToken.js b/typescript/dist/models/ProjectUpdateToken.js index 509b385b..8ef45bac 100644 --- a/typescript/dist/models/ProjectUpdateToken.js +++ b/typescript/dist/models/ProjectUpdateToken.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectVersion.d.ts b/typescript/dist/models/ProjectVersion.d.ts index 2f86ea2a..53c498d3 100644 --- a/typescript/dist/models/ProjectVersion.d.ts +++ b/typescript/dist/models/ProjectVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProjectVersion.js b/typescript/dist/models/ProjectVersion.js index 47e90306..09ce6ea2 100644 --- a/typescript/dist/models/ProjectVersion.js +++ b/typescript/dist/models/ProjectVersion.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Provenance.d.ts b/typescript/dist/models/Provenance.d.ts index a2c29e36..27abef59 100644 --- a/typescript/dist/models/Provenance.d.ts +++ b/typescript/dist/models/Provenance.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Provenance.js b/typescript/dist/models/Provenance.js index 2c728854..9598375b 100644 --- a/typescript/dist/models/Provenance.js +++ b/typescript/dist/models/Provenance.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProvenanceEntry.d.ts b/typescript/dist/models/ProvenanceEntry.d.ts index ce85000f..201905bc 100644 --- a/typescript/dist/models/ProvenanceEntry.d.ts +++ b/typescript/dist/models/ProvenanceEntry.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProvenanceEntry.js b/typescript/dist/models/ProvenanceEntry.js index 60ef0c09..b9de60e0 100644 --- a/typescript/dist/models/ProvenanceEntry.js +++ b/typescript/dist/models/ProvenanceEntry.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProvenanceOutput.d.ts b/typescript/dist/models/ProvenanceOutput.d.ts index c2c99b80..4db62aef 100644 --- a/typescript/dist/models/ProvenanceOutput.d.ts +++ b/typescript/dist/models/ProvenanceOutput.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProvenanceOutput.js b/typescript/dist/models/ProvenanceOutput.js index c882cd3a..b1174c01 100644 --- a/typescript/dist/models/ProvenanceOutput.js +++ b/typescript/dist/models/ProvenanceOutput.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Provenances.d.ts b/typescript/dist/models/Provenances.d.ts index 6a77133a..3396296e 100644 --- a/typescript/dist/models/Provenances.d.ts +++ b/typescript/dist/models/Provenances.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Provenances.js b/typescript/dist/models/Provenances.js index 5a497a22..e9aaee1a 100644 --- a/typescript/dist/models/Provenances.js +++ b/typescript/dist/models/Provenances.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProviderCapabilities.d.ts b/typescript/dist/models/ProviderCapabilities.d.ts index 2b3b77db..09c7c0ed 100644 --- a/typescript/dist/models/ProviderCapabilities.d.ts +++ b/typescript/dist/models/ProviderCapabilities.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProviderCapabilities.js b/typescript/dist/models/ProviderCapabilities.js index b416ccdd..9b420f9b 100644 --- a/typescript/dist/models/ProviderCapabilities.js +++ b/typescript/dist/models/ProviderCapabilities.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProviderLayerCollectionId.d.ts b/typescript/dist/models/ProviderLayerCollectionId.d.ts index 05003061..2ee909ae 100644 --- a/typescript/dist/models/ProviderLayerCollectionId.d.ts +++ b/typescript/dist/models/ProviderLayerCollectionId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProviderLayerCollectionId.js b/typescript/dist/models/ProviderLayerCollectionId.js index 28b8e003..4aee36ca 100644 --- a/typescript/dist/models/ProviderLayerCollectionId.js +++ b/typescript/dist/models/ProviderLayerCollectionId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProviderLayerId.d.ts b/typescript/dist/models/ProviderLayerId.d.ts index c6805a41..a116a721 100644 --- a/typescript/dist/models/ProviderLayerId.d.ts +++ b/typescript/dist/models/ProviderLayerId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ProviderLayerId.js b/typescript/dist/models/ProviderLayerId.js index 8773e90e..af0db8ed 100644 --- a/typescript/dist/models/ProviderLayerId.js +++ b/typescript/dist/models/ProviderLayerId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Quota.d.ts b/typescript/dist/models/Quota.d.ts index 1fd3dc9c..aacaf997 100644 --- a/typescript/dist/models/Quota.d.ts +++ b/typescript/dist/models/Quota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Quota.js b/typescript/dist/models/Quota.js index 4ba09415..407e151b 100644 --- a/typescript/dist/models/Quota.js +++ b/typescript/dist/models/Quota.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterBandDescriptor.d.ts b/typescript/dist/models/RasterBandDescriptor.d.ts index a79150f8..f92d1e13 100644 --- a/typescript/dist/models/RasterBandDescriptor.d.ts +++ b/typescript/dist/models/RasterBandDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterBandDescriptor.js b/typescript/dist/models/RasterBandDescriptor.js index f8603a74..b4125e01 100644 --- a/typescript/dist/models/RasterBandDescriptor.js +++ b/typescript/dist/models/RasterBandDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterColorizer.d.ts b/typescript/dist/models/RasterColorizer.d.ts index 9b879398..419a61ef 100644 --- a/typescript/dist/models/RasterColorizer.d.ts +++ b/typescript/dist/models/RasterColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterColorizer.js b/typescript/dist/models/RasterColorizer.js index 323209a0..4323cec5 100644 --- a/typescript/dist/models/RasterColorizer.js +++ b/typescript/dist/models/RasterColorizer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterDataType.d.ts b/typescript/dist/models/RasterDataType.d.ts index 6102d482..1bc186b0 100644 --- a/typescript/dist/models/RasterDataType.d.ts +++ b/typescript/dist/models/RasterDataType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterDataType.js b/typescript/dist/models/RasterDataType.js index ebc8decf..b7fcabfe 100644 --- a/typescript/dist/models/RasterDataType.js +++ b/typescript/dist/models/RasterDataType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterDatasetFromWorkflow.d.ts b/typescript/dist/models/RasterDatasetFromWorkflow.d.ts index 078dfeff..befa1f2f 100644 --- a/typescript/dist/models/RasterDatasetFromWorkflow.d.ts +++ b/typescript/dist/models/RasterDatasetFromWorkflow.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterDatasetFromWorkflow.js b/typescript/dist/models/RasterDatasetFromWorkflow.js index 543a9328..4c67f7c9 100644 --- a/typescript/dist/models/RasterDatasetFromWorkflow.js +++ b/typescript/dist/models/RasterDatasetFromWorkflow.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterDatasetFromWorkflowResult.d.ts b/typescript/dist/models/RasterDatasetFromWorkflowResult.d.ts index f13b406c..ae2bc1b7 100644 --- a/typescript/dist/models/RasterDatasetFromWorkflowResult.d.ts +++ b/typescript/dist/models/RasterDatasetFromWorkflowResult.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterDatasetFromWorkflowResult.js b/typescript/dist/models/RasterDatasetFromWorkflowResult.js index a502148c..a533619b 100644 --- a/typescript/dist/models/RasterDatasetFromWorkflowResult.js +++ b/typescript/dist/models/RasterDatasetFromWorkflowResult.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterPropertiesEntryType.d.ts b/typescript/dist/models/RasterPropertiesEntryType.d.ts index 8616a2fa..e099bc24 100644 --- a/typescript/dist/models/RasterPropertiesEntryType.d.ts +++ b/typescript/dist/models/RasterPropertiesEntryType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterPropertiesEntryType.js b/typescript/dist/models/RasterPropertiesEntryType.js index 1f3a5687..84175e6e 100644 --- a/typescript/dist/models/RasterPropertiesEntryType.js +++ b/typescript/dist/models/RasterPropertiesEntryType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterPropertiesKey.d.ts b/typescript/dist/models/RasterPropertiesKey.d.ts index 96af5946..1651e0c6 100644 --- a/typescript/dist/models/RasterPropertiesKey.d.ts +++ b/typescript/dist/models/RasterPropertiesKey.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterPropertiesKey.js b/typescript/dist/models/RasterPropertiesKey.js index 1efb922e..45c2d981 100644 --- a/typescript/dist/models/RasterPropertiesKey.js +++ b/typescript/dist/models/RasterPropertiesKey.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterQueryRectangle.d.ts b/typescript/dist/models/RasterQueryRectangle.d.ts index 14c180af..38c6b2a7 100644 --- a/typescript/dist/models/RasterQueryRectangle.d.ts +++ b/typescript/dist/models/RasterQueryRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterQueryRectangle.js b/typescript/dist/models/RasterQueryRectangle.js index 72cab089..0c39224e 100644 --- a/typescript/dist/models/RasterQueryRectangle.js +++ b/typescript/dist/models/RasterQueryRectangle.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterResultDescriptor.d.ts b/typescript/dist/models/RasterResultDescriptor.d.ts index c9a4cc04..681b9aee 100644 --- a/typescript/dist/models/RasterResultDescriptor.d.ts +++ b/typescript/dist/models/RasterResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterResultDescriptor.js b/typescript/dist/models/RasterResultDescriptor.js index 48ff619a..9838acc1 100644 --- a/typescript/dist/models/RasterResultDescriptor.js +++ b/typescript/dist/models/RasterResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterStreamWebsocketResultType.d.ts b/typescript/dist/models/RasterStreamWebsocketResultType.d.ts index b2f39431..7d6d304b 100644 --- a/typescript/dist/models/RasterStreamWebsocketResultType.d.ts +++ b/typescript/dist/models/RasterStreamWebsocketResultType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterStreamWebsocketResultType.js b/typescript/dist/models/RasterStreamWebsocketResultType.js index 7824b059..cd4cdf5c 100644 --- a/typescript/dist/models/RasterStreamWebsocketResultType.js +++ b/typescript/dist/models/RasterStreamWebsocketResultType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterSymbology.d.ts b/typescript/dist/models/RasterSymbology.d.ts index 76e7950d..9ae2052d 100644 --- a/typescript/dist/models/RasterSymbology.d.ts +++ b/typescript/dist/models/RasterSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RasterSymbology.js b/typescript/dist/models/RasterSymbology.js index c229bf04..d1e2b5df 100644 --- a/typescript/dist/models/RasterSymbology.js +++ b/typescript/dist/models/RasterSymbology.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Resource.d.ts b/typescript/dist/models/Resource.d.ts index f9c81c0e..9dbc0d1c 100644 --- a/typescript/dist/models/Resource.d.ts +++ b/typescript/dist/models/Resource.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Resource.js b/typescript/dist/models/Resource.js index f391ed1e..814fcea3 100644 --- a/typescript/dist/models/Resource.js +++ b/typescript/dist/models/Resource.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceId.d.ts b/typescript/dist/models/ResourceId.d.ts index bbad54b7..71315089 100644 --- a/typescript/dist/models/ResourceId.d.ts +++ b/typescript/dist/models/ResourceId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceId.js b/typescript/dist/models/ResourceId.js index a2c83752..c92967f3 100644 --- a/typescript/dist/models/ResourceId.js +++ b/typescript/dist/models/ResourceId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdDatasetId.d.ts b/typescript/dist/models/ResourceIdDatasetId.d.ts index 6f9f6d3d..8f275dd2 100644 --- a/typescript/dist/models/ResourceIdDatasetId.d.ts +++ b/typescript/dist/models/ResourceIdDatasetId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdDatasetId.js b/typescript/dist/models/ResourceIdDatasetId.js index d787416d..08d2809f 100644 --- a/typescript/dist/models/ResourceIdDatasetId.js +++ b/typescript/dist/models/ResourceIdDatasetId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdLayer.d.ts b/typescript/dist/models/ResourceIdLayer.d.ts index 8c391c14..5d47d9ca 100644 --- a/typescript/dist/models/ResourceIdLayer.d.ts +++ b/typescript/dist/models/ResourceIdLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdLayer.js b/typescript/dist/models/ResourceIdLayer.js index 63379c59..d1355e3f 100644 --- a/typescript/dist/models/ResourceIdLayer.js +++ b/typescript/dist/models/ResourceIdLayer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdLayerCollection.d.ts b/typescript/dist/models/ResourceIdLayerCollection.d.ts index 442ed165..a94a4755 100644 --- a/typescript/dist/models/ResourceIdLayerCollection.d.ts +++ b/typescript/dist/models/ResourceIdLayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdLayerCollection.js b/typescript/dist/models/ResourceIdLayerCollection.js index 65b3661b..8bed4565 100644 --- a/typescript/dist/models/ResourceIdLayerCollection.js +++ b/typescript/dist/models/ResourceIdLayerCollection.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdMlModel.d.ts b/typescript/dist/models/ResourceIdMlModel.d.ts index 5545ffcd..98bf3fb7 100644 --- a/typescript/dist/models/ResourceIdMlModel.d.ts +++ b/typescript/dist/models/ResourceIdMlModel.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdMlModel.js b/typescript/dist/models/ResourceIdMlModel.js index d90cc77a..0b9ca791 100644 --- a/typescript/dist/models/ResourceIdMlModel.js +++ b/typescript/dist/models/ResourceIdMlModel.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdProject.d.ts b/typescript/dist/models/ResourceIdProject.d.ts index 09e9ccb1..e084783a 100644 --- a/typescript/dist/models/ResourceIdProject.d.ts +++ b/typescript/dist/models/ResourceIdProject.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ResourceIdProject.js b/typescript/dist/models/ResourceIdProject.js index 79027ee3..5a96db76 100644 --- a/typescript/dist/models/ResourceIdProject.js +++ b/typescript/dist/models/ResourceIdProject.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Role.d.ts b/typescript/dist/models/Role.d.ts index 86c4711b..94df2ecd 100644 --- a/typescript/dist/models/Role.d.ts +++ b/typescript/dist/models/Role.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Role.js b/typescript/dist/models/Role.js index 557124bb..1fe38f05 100644 --- a/typescript/dist/models/Role.js +++ b/typescript/dist/models/Role.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RoleDescription.d.ts b/typescript/dist/models/RoleDescription.d.ts index 1f27c5e2..90f7a05c 100644 --- a/typescript/dist/models/RoleDescription.d.ts +++ b/typescript/dist/models/RoleDescription.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/RoleDescription.js b/typescript/dist/models/RoleDescription.js index b22c1641..01e22406 100644 --- a/typescript/dist/models/RoleDescription.js +++ b/typescript/dist/models/RoleDescription.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/STRectangle.d.ts b/typescript/dist/models/STRectangle.d.ts index bf22a333..cd9273b8 100644 --- a/typescript/dist/models/STRectangle.d.ts +++ b/typescript/dist/models/STRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/STRectangle.js b/typescript/dist/models/STRectangle.js index 7158bc1b..6eb3d435 100644 --- a/typescript/dist/models/STRectangle.js +++ b/typescript/dist/models/STRectangle.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SearchCapabilities.d.ts b/typescript/dist/models/SearchCapabilities.d.ts index af9d8541..5569fc6d 100644 --- a/typescript/dist/models/SearchCapabilities.d.ts +++ b/typescript/dist/models/SearchCapabilities.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SearchCapabilities.js b/typescript/dist/models/SearchCapabilities.js index 49691ca0..46d5e6cf 100644 --- a/typescript/dist/models/SearchCapabilities.js +++ b/typescript/dist/models/SearchCapabilities.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SearchType.d.ts b/typescript/dist/models/SearchType.d.ts index b27e8647..d18be08e 100644 --- a/typescript/dist/models/SearchType.d.ts +++ b/typescript/dist/models/SearchType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SearchType.js b/typescript/dist/models/SearchType.js index b0e8f488..1bc2d313 100644 --- a/typescript/dist/models/SearchType.js +++ b/typescript/dist/models/SearchType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SearchTypes.d.ts b/typescript/dist/models/SearchTypes.d.ts index e4d0f1c9..b65c95c4 100644 --- a/typescript/dist/models/SearchTypes.d.ts +++ b/typescript/dist/models/SearchTypes.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SearchTypes.js b/typescript/dist/models/SearchTypes.js index a29caeb2..f14e0e07 100644 --- a/typescript/dist/models/SearchTypes.js +++ b/typescript/dist/models/SearchTypes.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ServerInfo.d.ts b/typescript/dist/models/ServerInfo.d.ts index 584980e9..d74cf3e6 100644 --- a/typescript/dist/models/ServerInfo.d.ts +++ b/typescript/dist/models/ServerInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/ServerInfo.js b/typescript/dist/models/ServerInfo.js index 91fa2a82..34665214 100644 --- a/typescript/dist/models/ServerInfo.js +++ b/typescript/dist/models/ServerInfo.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SingleBandRasterColorizer.d.ts b/typescript/dist/models/SingleBandRasterColorizer.d.ts index a717c6ca..6968e547 100644 --- a/typescript/dist/models/SingleBandRasterColorizer.d.ts +++ b/typescript/dist/models/SingleBandRasterColorizer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SingleBandRasterColorizer.js b/typescript/dist/models/SingleBandRasterColorizer.js index 1e8bc664..fbb6cb90 100644 --- a/typescript/dist/models/SingleBandRasterColorizer.js +++ b/typescript/dist/models/SingleBandRasterColorizer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialPartition2D.d.ts b/typescript/dist/models/SpatialPartition2D.d.ts index 9779af67..04e34749 100644 --- a/typescript/dist/models/SpatialPartition2D.d.ts +++ b/typescript/dist/models/SpatialPartition2D.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialPartition2D.js b/typescript/dist/models/SpatialPartition2D.js index b72bd6bb..666a652c 100644 --- a/typescript/dist/models/SpatialPartition2D.js +++ b/typescript/dist/models/SpatialPartition2D.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialReferenceAuthority.d.ts b/typescript/dist/models/SpatialReferenceAuthority.d.ts index 84382dd5..5c8ed9ee 100644 --- a/typescript/dist/models/SpatialReferenceAuthority.d.ts +++ b/typescript/dist/models/SpatialReferenceAuthority.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialReferenceAuthority.js b/typescript/dist/models/SpatialReferenceAuthority.js index 7e40c327..ee8b915f 100644 --- a/typescript/dist/models/SpatialReferenceAuthority.js +++ b/typescript/dist/models/SpatialReferenceAuthority.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialReferenceSpecification.d.ts b/typescript/dist/models/SpatialReferenceSpecification.d.ts index 0ef0685f..955a2fae 100644 --- a/typescript/dist/models/SpatialReferenceSpecification.d.ts +++ b/typescript/dist/models/SpatialReferenceSpecification.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialReferenceSpecification.js b/typescript/dist/models/SpatialReferenceSpecification.js index 7102976b..e6274c28 100644 --- a/typescript/dist/models/SpatialReferenceSpecification.js +++ b/typescript/dist/models/SpatialReferenceSpecification.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialResolution.d.ts b/typescript/dist/models/SpatialResolution.d.ts index 3a9d7d3e..4300e098 100644 --- a/typescript/dist/models/SpatialResolution.d.ts +++ b/typescript/dist/models/SpatialResolution.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SpatialResolution.js b/typescript/dist/models/SpatialResolution.js index 66894ecd..435151b7 100644 --- a/typescript/dist/models/SpatialResolution.js +++ b/typescript/dist/models/SpatialResolution.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/StaticNumberParam.d.ts b/typescript/dist/models/StaticNumberParam.d.ts index d4aa96d4..9b97064f 100644 --- a/typescript/dist/models/StaticNumberParam.d.ts +++ b/typescript/dist/models/StaticNumberParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/StaticNumberParam.js b/typescript/dist/models/StaticNumberParam.js index 3edf3592..aedc91af 100644 --- a/typescript/dist/models/StaticNumberParam.js +++ b/typescript/dist/models/StaticNumberParam.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/StrokeParam.d.ts b/typescript/dist/models/StrokeParam.d.ts index 83a62ea3..4e8d0aa0 100644 --- a/typescript/dist/models/StrokeParam.d.ts +++ b/typescript/dist/models/StrokeParam.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/StrokeParam.js b/typescript/dist/models/StrokeParam.js index bbd0ad48..374714ef 100644 --- a/typescript/dist/models/StrokeParam.js +++ b/typescript/dist/models/StrokeParam.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SuggestMetaData.d.ts b/typescript/dist/models/SuggestMetaData.d.ts index 019e4d54..ade70e93 100644 --- a/typescript/dist/models/SuggestMetaData.d.ts +++ b/typescript/dist/models/SuggestMetaData.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/SuggestMetaData.js b/typescript/dist/models/SuggestMetaData.js index ceeb438c..df5dff56 100644 --- a/typescript/dist/models/SuggestMetaData.js +++ b/typescript/dist/models/SuggestMetaData.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Symbology.d.ts b/typescript/dist/models/Symbology.d.ts index f46afbdb..d3d086d9 100644 --- a/typescript/dist/models/Symbology.d.ts +++ b/typescript/dist/models/Symbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Symbology.js b/typescript/dist/models/Symbology.js index b550f744..e13dd261 100644 --- a/typescript/dist/models/Symbology.js +++ b/typescript/dist/models/Symbology.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskAbortOptions.d.ts b/typescript/dist/models/TaskAbortOptions.d.ts index 21a5ad0a..da84a7fc 100644 --- a/typescript/dist/models/TaskAbortOptions.d.ts +++ b/typescript/dist/models/TaskAbortOptions.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskAbortOptions.js b/typescript/dist/models/TaskAbortOptions.js index 0453c127..9af1b195 100644 --- a/typescript/dist/models/TaskAbortOptions.js +++ b/typescript/dist/models/TaskAbortOptions.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskFilter.d.ts b/typescript/dist/models/TaskFilter.d.ts index 8ae36937..b680418d 100644 --- a/typescript/dist/models/TaskFilter.d.ts +++ b/typescript/dist/models/TaskFilter.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskFilter.js b/typescript/dist/models/TaskFilter.js index b694dc03..be6c476b 100644 --- a/typescript/dist/models/TaskFilter.js +++ b/typescript/dist/models/TaskFilter.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskListOptions.d.ts b/typescript/dist/models/TaskListOptions.d.ts index cd32e95e..a92ba661 100644 --- a/typescript/dist/models/TaskListOptions.d.ts +++ b/typescript/dist/models/TaskListOptions.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskListOptions.js b/typescript/dist/models/TaskListOptions.js index bc03e769..bb4920ec 100644 --- a/typescript/dist/models/TaskListOptions.js +++ b/typescript/dist/models/TaskListOptions.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskResponse.d.ts b/typescript/dist/models/TaskResponse.d.ts index 48f6f19e..1ea10c47 100644 --- a/typescript/dist/models/TaskResponse.d.ts +++ b/typescript/dist/models/TaskResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskResponse.js b/typescript/dist/models/TaskResponse.js index ff42a59d..954ffce2 100644 --- a/typescript/dist/models/TaskResponse.js +++ b/typescript/dist/models/TaskResponse.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatus.d.ts b/typescript/dist/models/TaskStatus.d.ts index e9aedbc5..cd0e0bd9 100644 --- a/typescript/dist/models/TaskStatus.d.ts +++ b/typescript/dist/models/TaskStatus.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatus.js b/typescript/dist/models/TaskStatus.js index 39198f27..dd183212 100644 --- a/typescript/dist/models/TaskStatus.js +++ b/typescript/dist/models/TaskStatus.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusAborted.d.ts b/typescript/dist/models/TaskStatusAborted.d.ts index f2f0c04f..ac5d9bb1 100644 --- a/typescript/dist/models/TaskStatusAborted.d.ts +++ b/typescript/dist/models/TaskStatusAborted.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusAborted.js b/typescript/dist/models/TaskStatusAborted.js index a48dfbd4..cd0cb4bd 100644 --- a/typescript/dist/models/TaskStatusAborted.js +++ b/typescript/dist/models/TaskStatusAborted.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusCompleted.d.ts b/typescript/dist/models/TaskStatusCompleted.d.ts index 60f12f64..1798b6b9 100644 --- a/typescript/dist/models/TaskStatusCompleted.d.ts +++ b/typescript/dist/models/TaskStatusCompleted.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusCompleted.js b/typescript/dist/models/TaskStatusCompleted.js index f63ada9a..af562e59 100644 --- a/typescript/dist/models/TaskStatusCompleted.js +++ b/typescript/dist/models/TaskStatusCompleted.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusFailed.d.ts b/typescript/dist/models/TaskStatusFailed.d.ts index 91cacc05..504596a0 100644 --- a/typescript/dist/models/TaskStatusFailed.d.ts +++ b/typescript/dist/models/TaskStatusFailed.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusFailed.js b/typescript/dist/models/TaskStatusFailed.js index 43fb71dc..f3bc6eee 100644 --- a/typescript/dist/models/TaskStatusFailed.js +++ b/typescript/dist/models/TaskStatusFailed.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusRunning.d.ts b/typescript/dist/models/TaskStatusRunning.d.ts index dc42d964..8a344871 100644 --- a/typescript/dist/models/TaskStatusRunning.d.ts +++ b/typescript/dist/models/TaskStatusRunning.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusRunning.js b/typescript/dist/models/TaskStatusRunning.js index 7dc160c1..05ee00f0 100644 --- a/typescript/dist/models/TaskStatusRunning.js +++ b/typescript/dist/models/TaskStatusRunning.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusWithId.d.ts b/typescript/dist/models/TaskStatusWithId.d.ts index 5551b959..1ec8a3d8 100644 --- a/typescript/dist/models/TaskStatusWithId.d.ts +++ b/typescript/dist/models/TaskStatusWithId.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TaskStatusWithId.js b/typescript/dist/models/TaskStatusWithId.js index e40c79cb..d1fd1fe7 100644 --- a/typescript/dist/models/TaskStatusWithId.js +++ b/typescript/dist/models/TaskStatusWithId.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TextSymbology.d.ts b/typescript/dist/models/TextSymbology.d.ts index 3220dbfd..f991cf0a 100644 --- a/typescript/dist/models/TextSymbology.d.ts +++ b/typescript/dist/models/TextSymbology.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TextSymbology.js b/typescript/dist/models/TextSymbology.js index e77c560b..7cdab580 100644 --- a/typescript/dist/models/TextSymbology.js +++ b/typescript/dist/models/TextSymbology.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeGranularity.d.ts b/typescript/dist/models/TimeGranularity.d.ts index 427721af..4844814e 100644 --- a/typescript/dist/models/TimeGranularity.d.ts +++ b/typescript/dist/models/TimeGranularity.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeGranularity.js b/typescript/dist/models/TimeGranularity.js index 80a3072e..6dd7f2b8 100644 --- a/typescript/dist/models/TimeGranularity.js +++ b/typescript/dist/models/TimeGranularity.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeInterval.d.ts b/typescript/dist/models/TimeInterval.d.ts index a81bb42f..a438b433 100644 --- a/typescript/dist/models/TimeInterval.d.ts +++ b/typescript/dist/models/TimeInterval.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeInterval.js b/typescript/dist/models/TimeInterval.js index 00e82fe1..0e63d6f0 100644 --- a/typescript/dist/models/TimeInterval.js +++ b/typescript/dist/models/TimeInterval.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeReference.d.ts b/typescript/dist/models/TimeReference.d.ts index f7711035..95a1a237 100644 --- a/typescript/dist/models/TimeReference.d.ts +++ b/typescript/dist/models/TimeReference.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeReference.js b/typescript/dist/models/TimeReference.js index 307b4524..566483f0 100644 --- a/typescript/dist/models/TimeReference.js +++ b/typescript/dist/models/TimeReference.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeStep.d.ts b/typescript/dist/models/TimeStep.d.ts index 21da322f..a3e6fd56 100644 --- a/typescript/dist/models/TimeStep.d.ts +++ b/typescript/dist/models/TimeStep.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TimeStep.js b/typescript/dist/models/TimeStep.js index 32646d94..d56bac4d 100644 --- a/typescript/dist/models/TimeStep.js +++ b/typescript/dist/models/TimeStep.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometry.d.ts b/typescript/dist/models/TypedGeometry.d.ts index ca39482b..8fb9a5aa 100644 --- a/typescript/dist/models/TypedGeometry.d.ts +++ b/typescript/dist/models/TypedGeometry.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometry.js b/typescript/dist/models/TypedGeometry.js index 94d8f81d..3ef4975f 100644 --- a/typescript/dist/models/TypedGeometry.js +++ b/typescript/dist/models/TypedGeometry.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf.d.ts b/typescript/dist/models/TypedGeometryOneOf.d.ts index 46088d03..144d3260 100644 --- a/typescript/dist/models/TypedGeometryOneOf.d.ts +++ b/typescript/dist/models/TypedGeometryOneOf.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf.js b/typescript/dist/models/TypedGeometryOneOf.js index ae389077..ad2d375a 100644 --- a/typescript/dist/models/TypedGeometryOneOf.js +++ b/typescript/dist/models/TypedGeometryOneOf.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf1.d.ts b/typescript/dist/models/TypedGeometryOneOf1.d.ts index 5c7e97d9..c0f65753 100644 --- a/typescript/dist/models/TypedGeometryOneOf1.d.ts +++ b/typescript/dist/models/TypedGeometryOneOf1.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf1.js b/typescript/dist/models/TypedGeometryOneOf1.js index 6b5f4660..5da85afd 100644 --- a/typescript/dist/models/TypedGeometryOneOf1.js +++ b/typescript/dist/models/TypedGeometryOneOf1.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf2.d.ts b/typescript/dist/models/TypedGeometryOneOf2.d.ts index 7f762491..bb17369f 100644 --- a/typescript/dist/models/TypedGeometryOneOf2.d.ts +++ b/typescript/dist/models/TypedGeometryOneOf2.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf2.js b/typescript/dist/models/TypedGeometryOneOf2.js index 4894bb49..db54e7a2 100644 --- a/typescript/dist/models/TypedGeometryOneOf2.js +++ b/typescript/dist/models/TypedGeometryOneOf2.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf3.d.ts b/typescript/dist/models/TypedGeometryOneOf3.d.ts index afef53bc..10252452 100644 --- a/typescript/dist/models/TypedGeometryOneOf3.d.ts +++ b/typescript/dist/models/TypedGeometryOneOf3.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedGeometryOneOf3.js b/typescript/dist/models/TypedGeometryOneOf3.js index 6676280e..2433f0e2 100644 --- a/typescript/dist/models/TypedGeometryOneOf3.js +++ b/typescript/dist/models/TypedGeometryOneOf3.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedOperator.d.ts b/typescript/dist/models/TypedOperator.d.ts index 592ae030..7da0150b 100644 --- a/typescript/dist/models/TypedOperator.d.ts +++ b/typescript/dist/models/TypedOperator.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedOperator.js b/typescript/dist/models/TypedOperator.js index b7ba15b4..31f1a135 100644 --- a/typescript/dist/models/TypedOperator.js +++ b/typescript/dist/models/TypedOperator.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedOperatorOperator.d.ts b/typescript/dist/models/TypedOperatorOperator.d.ts index a1f120e1..f963ebb2 100644 --- a/typescript/dist/models/TypedOperatorOperator.d.ts +++ b/typescript/dist/models/TypedOperatorOperator.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedOperatorOperator.js b/typescript/dist/models/TypedOperatorOperator.js index 272cc293..6d9b1744 100644 --- a/typescript/dist/models/TypedOperatorOperator.js +++ b/typescript/dist/models/TypedOperatorOperator.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedPlotResultDescriptor.d.ts b/typescript/dist/models/TypedPlotResultDescriptor.d.ts index 072a307e..4c2d4c1e 100644 --- a/typescript/dist/models/TypedPlotResultDescriptor.d.ts +++ b/typescript/dist/models/TypedPlotResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedPlotResultDescriptor.js b/typescript/dist/models/TypedPlotResultDescriptor.js index 04f0bf4c..a2a22eb4 100644 --- a/typescript/dist/models/TypedPlotResultDescriptor.js +++ b/typescript/dist/models/TypedPlotResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedRasterResultDescriptor.d.ts b/typescript/dist/models/TypedRasterResultDescriptor.d.ts index 9c32a9dc..582712a7 100644 --- a/typescript/dist/models/TypedRasterResultDescriptor.d.ts +++ b/typescript/dist/models/TypedRasterResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedRasterResultDescriptor.js b/typescript/dist/models/TypedRasterResultDescriptor.js index aa42f540..b402725b 100644 --- a/typescript/dist/models/TypedRasterResultDescriptor.js +++ b/typescript/dist/models/TypedRasterResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedResultDescriptor.d.ts b/typescript/dist/models/TypedResultDescriptor.d.ts index 1c237eb3..dfae9e11 100644 --- a/typescript/dist/models/TypedResultDescriptor.d.ts +++ b/typescript/dist/models/TypedResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedResultDescriptor.js b/typescript/dist/models/TypedResultDescriptor.js index b25a202b..3657755b 100644 --- a/typescript/dist/models/TypedResultDescriptor.js +++ b/typescript/dist/models/TypedResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedVectorResultDescriptor.d.ts b/typescript/dist/models/TypedVectorResultDescriptor.d.ts index 86e64b45..ca993dac 100644 --- a/typescript/dist/models/TypedVectorResultDescriptor.d.ts +++ b/typescript/dist/models/TypedVectorResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/TypedVectorResultDescriptor.js b/typescript/dist/models/TypedVectorResultDescriptor.js index 4e9d1450..0e343c46 100644 --- a/typescript/dist/models/TypedVectorResultDescriptor.js +++ b/typescript/dist/models/TypedVectorResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UnitlessMeasurement.d.ts b/typescript/dist/models/UnitlessMeasurement.d.ts index 2577e835..47b244dc 100644 --- a/typescript/dist/models/UnitlessMeasurement.d.ts +++ b/typescript/dist/models/UnitlessMeasurement.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UnitlessMeasurement.js b/typescript/dist/models/UnitlessMeasurement.js index 4f223de1..966ae014 100644 --- a/typescript/dist/models/UnitlessMeasurement.js +++ b/typescript/dist/models/UnitlessMeasurement.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UnixTimeStampType.d.ts b/typescript/dist/models/UnixTimeStampType.d.ts index d8db17b8..60a36181 100644 --- a/typescript/dist/models/UnixTimeStampType.d.ts +++ b/typescript/dist/models/UnixTimeStampType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UnixTimeStampType.js b/typescript/dist/models/UnixTimeStampType.js index 4714186d..da09977a 100644 --- a/typescript/dist/models/UnixTimeStampType.js +++ b/typescript/dist/models/UnixTimeStampType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateDataset.d.ts b/typescript/dist/models/UpdateDataset.d.ts index 5328e1aa..5b25bb01 100644 --- a/typescript/dist/models/UpdateDataset.d.ts +++ b/typescript/dist/models/UpdateDataset.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateDataset.js b/typescript/dist/models/UpdateDataset.js index 263d3d4f..04c04036 100644 --- a/typescript/dist/models/UpdateDataset.js +++ b/typescript/dist/models/UpdateDataset.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateLayer.d.ts b/typescript/dist/models/UpdateLayer.d.ts index d00e51eb..6a59ada2 100644 --- a/typescript/dist/models/UpdateLayer.d.ts +++ b/typescript/dist/models/UpdateLayer.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateLayer.js b/typescript/dist/models/UpdateLayer.js index e2afa508..9523e107 100644 --- a/typescript/dist/models/UpdateLayer.js +++ b/typescript/dist/models/UpdateLayer.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateLayerCollection.d.ts b/typescript/dist/models/UpdateLayerCollection.d.ts index 948a5a57..7af58d48 100644 --- a/typescript/dist/models/UpdateLayerCollection.d.ts +++ b/typescript/dist/models/UpdateLayerCollection.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateLayerCollection.js b/typescript/dist/models/UpdateLayerCollection.js index b8f1a49e..871cd079 100644 --- a/typescript/dist/models/UpdateLayerCollection.js +++ b/typescript/dist/models/UpdateLayerCollection.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateProject.d.ts b/typescript/dist/models/UpdateProject.d.ts index a53b1612..011b258b 100644 --- a/typescript/dist/models/UpdateProject.d.ts +++ b/typescript/dist/models/UpdateProject.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateProject.js b/typescript/dist/models/UpdateProject.js index 82672ea8..41e255ca 100644 --- a/typescript/dist/models/UpdateProject.js +++ b/typescript/dist/models/UpdateProject.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateQuota.d.ts b/typescript/dist/models/UpdateQuota.d.ts index a9654bbb..fa6a8c7a 100644 --- a/typescript/dist/models/UpdateQuota.d.ts +++ b/typescript/dist/models/UpdateQuota.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UpdateQuota.js b/typescript/dist/models/UpdateQuota.js index 2574b351..a4cca011 100644 --- a/typescript/dist/models/UpdateQuota.js +++ b/typescript/dist/models/UpdateQuota.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UploadFileLayersResponse.d.ts b/typescript/dist/models/UploadFileLayersResponse.d.ts index 52e710cd..d0f22470 100644 --- a/typescript/dist/models/UploadFileLayersResponse.d.ts +++ b/typescript/dist/models/UploadFileLayersResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UploadFileLayersResponse.js b/typescript/dist/models/UploadFileLayersResponse.js index 7f771339..52c41f12 100644 --- a/typescript/dist/models/UploadFileLayersResponse.js +++ b/typescript/dist/models/UploadFileLayersResponse.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UploadFilesResponse.d.ts b/typescript/dist/models/UploadFilesResponse.d.ts index af150457..73676cfc 100644 --- a/typescript/dist/models/UploadFilesResponse.d.ts +++ b/typescript/dist/models/UploadFilesResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UploadFilesResponse.js b/typescript/dist/models/UploadFilesResponse.js index e143e67a..7ed4bd3c 100644 --- a/typescript/dist/models/UploadFilesResponse.js +++ b/typescript/dist/models/UploadFilesResponse.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UsageSummaryGranularity.d.ts b/typescript/dist/models/UsageSummaryGranularity.d.ts index 2eeb47c2..ff762ef8 100644 --- a/typescript/dist/models/UsageSummaryGranularity.d.ts +++ b/typescript/dist/models/UsageSummaryGranularity.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UsageSummaryGranularity.js b/typescript/dist/models/UsageSummaryGranularity.js index aa485d2e..3230a92e 100644 --- a/typescript/dist/models/UsageSummaryGranularity.js +++ b/typescript/dist/models/UsageSummaryGranularity.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserCredentials.d.ts b/typescript/dist/models/UserCredentials.d.ts index 9f6f5327..f1f68f1b 100644 --- a/typescript/dist/models/UserCredentials.d.ts +++ b/typescript/dist/models/UserCredentials.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserCredentials.js b/typescript/dist/models/UserCredentials.js index 29c915db..fcb01d3f 100644 --- a/typescript/dist/models/UserCredentials.js +++ b/typescript/dist/models/UserCredentials.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserInfo.d.ts b/typescript/dist/models/UserInfo.d.ts index c4238f12..3df6b91f 100644 --- a/typescript/dist/models/UserInfo.d.ts +++ b/typescript/dist/models/UserInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserInfo.js b/typescript/dist/models/UserInfo.js index b6aedf1c..fcbba95a 100644 --- a/typescript/dist/models/UserInfo.js +++ b/typescript/dist/models/UserInfo.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserRegistration.d.ts b/typescript/dist/models/UserRegistration.d.ts index 3edef0d7..895ff879 100644 --- a/typescript/dist/models/UserRegistration.d.ts +++ b/typescript/dist/models/UserRegistration.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserRegistration.js b/typescript/dist/models/UserRegistration.js index 2ef9f3f4..e5f8ff6b 100644 --- a/typescript/dist/models/UserRegistration.js +++ b/typescript/dist/models/UserRegistration.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserSession.d.ts b/typescript/dist/models/UserSession.d.ts index 414011fa..f24076af 100644 --- a/typescript/dist/models/UserSession.d.ts +++ b/typescript/dist/models/UserSession.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/UserSession.js b/typescript/dist/models/UserSession.js index 2315658f..82398831 100644 --- a/typescript/dist/models/UserSession.js +++ b/typescript/dist/models/UserSession.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorColumnInfo.d.ts b/typescript/dist/models/VectorColumnInfo.d.ts index 8bf26bfd..4a7538d5 100644 --- a/typescript/dist/models/VectorColumnInfo.d.ts +++ b/typescript/dist/models/VectorColumnInfo.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorColumnInfo.js b/typescript/dist/models/VectorColumnInfo.js index c2b30e9d..14f9e225 100644 --- a/typescript/dist/models/VectorColumnInfo.js +++ b/typescript/dist/models/VectorColumnInfo.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorDataType.d.ts b/typescript/dist/models/VectorDataType.d.ts index d8c56beb..90d65659 100644 --- a/typescript/dist/models/VectorDataType.d.ts +++ b/typescript/dist/models/VectorDataType.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorDataType.js b/typescript/dist/models/VectorDataType.js index 25c21734..183fae01 100644 --- a/typescript/dist/models/VectorDataType.js +++ b/typescript/dist/models/VectorDataType.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorQueryRectangle.d.ts b/typescript/dist/models/VectorQueryRectangle.d.ts index 92a3b99f..d2cb9126 100644 --- a/typescript/dist/models/VectorQueryRectangle.d.ts +++ b/typescript/dist/models/VectorQueryRectangle.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorQueryRectangle.js b/typescript/dist/models/VectorQueryRectangle.js index 9be4f695..9b18e8b8 100644 --- a/typescript/dist/models/VectorQueryRectangle.js +++ b/typescript/dist/models/VectorQueryRectangle.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorResultDescriptor.d.ts b/typescript/dist/models/VectorResultDescriptor.d.ts index 41871f6f..4170742f 100644 --- a/typescript/dist/models/VectorResultDescriptor.d.ts +++ b/typescript/dist/models/VectorResultDescriptor.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VectorResultDescriptor.js b/typescript/dist/models/VectorResultDescriptor.js index c8024109..ad56d452 100644 --- a/typescript/dist/models/VectorResultDescriptor.js +++ b/typescript/dist/models/VectorResultDescriptor.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Volume.d.ts b/typescript/dist/models/Volume.d.ts index fc7f7536..597f4625 100644 --- a/typescript/dist/models/Volume.d.ts +++ b/typescript/dist/models/Volume.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Volume.js b/typescript/dist/models/Volume.js index 5df8ad0e..497b58bc 100644 --- a/typescript/dist/models/Volume.js +++ b/typescript/dist/models/Volume.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VolumeFileLayersResponse.d.ts b/typescript/dist/models/VolumeFileLayersResponse.d.ts index 68c0b9eb..77be37b3 100644 --- a/typescript/dist/models/VolumeFileLayersResponse.d.ts +++ b/typescript/dist/models/VolumeFileLayersResponse.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/VolumeFileLayersResponse.js b/typescript/dist/models/VolumeFileLayersResponse.js index 1b20c052..e5761070 100644 --- a/typescript/dist/models/VolumeFileLayersResponse.js +++ b/typescript/dist/models/VolumeFileLayersResponse.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WcsBoundingbox.d.ts b/typescript/dist/models/WcsBoundingbox.d.ts index b396f757..3ddd2f6e 100644 --- a/typescript/dist/models/WcsBoundingbox.d.ts +++ b/typescript/dist/models/WcsBoundingbox.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WcsBoundingbox.js b/typescript/dist/models/WcsBoundingbox.js index ac92a6ec..90199245 100644 --- a/typescript/dist/models/WcsBoundingbox.js +++ b/typescript/dist/models/WcsBoundingbox.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WcsService.d.ts b/typescript/dist/models/WcsService.d.ts index 9c5a3e50..3893f5d8 100644 --- a/typescript/dist/models/WcsService.d.ts +++ b/typescript/dist/models/WcsService.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WcsService.js b/typescript/dist/models/WcsService.js index 147c9a9d..e287db69 100644 --- a/typescript/dist/models/WcsService.js +++ b/typescript/dist/models/WcsService.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WcsVersion.d.ts b/typescript/dist/models/WcsVersion.d.ts index 1aed05f4..de362b0f 100644 --- a/typescript/dist/models/WcsVersion.d.ts +++ b/typescript/dist/models/WcsVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WcsVersion.js b/typescript/dist/models/WcsVersion.js index 6fc2dee3..72413be2 100644 --- a/typescript/dist/models/WcsVersion.js +++ b/typescript/dist/models/WcsVersion.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WfsService.d.ts b/typescript/dist/models/WfsService.d.ts index b1e084e7..9f8070d3 100644 --- a/typescript/dist/models/WfsService.d.ts +++ b/typescript/dist/models/WfsService.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WfsService.js b/typescript/dist/models/WfsService.js index fcb5a1dd..b6be229b 100644 --- a/typescript/dist/models/WfsService.js +++ b/typescript/dist/models/WfsService.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WfsVersion.d.ts b/typescript/dist/models/WfsVersion.d.ts index a8324d4d..9d1d2e9f 100644 --- a/typescript/dist/models/WfsVersion.d.ts +++ b/typescript/dist/models/WfsVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WfsVersion.js b/typescript/dist/models/WfsVersion.js index bd20630b..908354cd 100644 --- a/typescript/dist/models/WfsVersion.js +++ b/typescript/dist/models/WfsVersion.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WmsService.d.ts b/typescript/dist/models/WmsService.d.ts index 7d7167f5..8038d8f6 100644 --- a/typescript/dist/models/WmsService.d.ts +++ b/typescript/dist/models/WmsService.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WmsService.js b/typescript/dist/models/WmsService.js index 5dcaf436..9b101fa1 100644 --- a/typescript/dist/models/WmsService.js +++ b/typescript/dist/models/WmsService.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WmsVersion.d.ts b/typescript/dist/models/WmsVersion.d.ts index 01dc3876..b30c4c79 100644 --- a/typescript/dist/models/WmsVersion.d.ts +++ b/typescript/dist/models/WmsVersion.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WmsVersion.js b/typescript/dist/models/WmsVersion.js index 5f261196..026c5580 100644 --- a/typescript/dist/models/WmsVersion.js +++ b/typescript/dist/models/WmsVersion.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Workflow.d.ts b/typescript/dist/models/Workflow.d.ts index 671d985a..277ea139 100644 --- a/typescript/dist/models/Workflow.d.ts +++ b/typescript/dist/models/Workflow.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/Workflow.js b/typescript/dist/models/Workflow.js index d2f40f0d..448410c9 100644 --- a/typescript/dist/models/Workflow.js +++ b/typescript/dist/models/Workflow.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WrappedPlotOutput.d.ts b/typescript/dist/models/WrappedPlotOutput.d.ts index de84d7a3..b5295159 100644 --- a/typescript/dist/models/WrappedPlotOutput.d.ts +++ b/typescript/dist/models/WrappedPlotOutput.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/models/WrappedPlotOutput.js b/typescript/dist/models/WrappedPlotOutput.js index c5c9ed18..f9733d4f 100644 --- a/typescript/dist/models/WrappedPlotOutput.js +++ b/typescript/dist/models/WrappedPlotOutput.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/runtime.d.ts b/typescript/dist/runtime.d.ts index 76b20dcb..391b42be 100644 --- a/typescript/dist/runtime.d.ts +++ b/typescript/dist/runtime.d.ts @@ -1,5 +1,5 @@ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/dist/runtime.js b/typescript/dist/runtime.js index 66c92ae9..9fe90556 100644 --- a/typescript/dist/runtime.js +++ b/typescript/dist/runtime.js @@ -2,7 +2,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/DatasetsApi.ts b/typescript/src/apis/DatasetsApi.ts index aaefe80e..27401d20 100644 --- a/typescript/src/apis/DatasetsApi.ts +++ b/typescript/src/apis/DatasetsApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/GeneralApi.ts b/typescript/src/apis/GeneralApi.ts index 8c526a72..4e97333d 100644 --- a/typescript/src/apis/GeneralApi.ts +++ b/typescript/src/apis/GeneralApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/LayersApi.ts b/typescript/src/apis/LayersApi.ts index b78ddf83..13579b84 100644 --- a/typescript/src/apis/LayersApi.ts +++ b/typescript/src/apis/LayersApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/MLApi.ts b/typescript/src/apis/MLApi.ts index c4043581..7afac21a 100644 --- a/typescript/src/apis/MLApi.ts +++ b/typescript/src/apis/MLApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/OGCWCSApi.ts b/typescript/src/apis/OGCWCSApi.ts index b04e76f9..04b5eec0 100644 --- a/typescript/src/apis/OGCWCSApi.ts +++ b/typescript/src/apis/OGCWCSApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/OGCWFSApi.ts b/typescript/src/apis/OGCWFSApi.ts index be1d6731..e950dca8 100644 --- a/typescript/src/apis/OGCWFSApi.ts +++ b/typescript/src/apis/OGCWFSApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/OGCWMSApi.ts b/typescript/src/apis/OGCWMSApi.ts index e21b1572..54d30352 100644 --- a/typescript/src/apis/OGCWMSApi.ts +++ b/typescript/src/apis/OGCWMSApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/PermissionsApi.ts b/typescript/src/apis/PermissionsApi.ts index 6b167718..1b561d23 100644 --- a/typescript/src/apis/PermissionsApi.ts +++ b/typescript/src/apis/PermissionsApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/PlotsApi.ts b/typescript/src/apis/PlotsApi.ts index 30fbbe9c..22897ee9 100644 --- a/typescript/src/apis/PlotsApi.ts +++ b/typescript/src/apis/PlotsApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/ProjectsApi.ts b/typescript/src/apis/ProjectsApi.ts index bdde45aa..e5b749c3 100644 --- a/typescript/src/apis/ProjectsApi.ts +++ b/typescript/src/apis/ProjectsApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/SessionApi.ts b/typescript/src/apis/SessionApi.ts index 99a12a77..317a3ac1 100644 --- a/typescript/src/apis/SessionApi.ts +++ b/typescript/src/apis/SessionApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/SpatialReferencesApi.ts b/typescript/src/apis/SpatialReferencesApi.ts index 6e57b2ef..b75cfb83 100644 --- a/typescript/src/apis/SpatialReferencesApi.ts +++ b/typescript/src/apis/SpatialReferencesApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/TasksApi.ts b/typescript/src/apis/TasksApi.ts index 34788014..dd1ced52 100644 --- a/typescript/src/apis/TasksApi.ts +++ b/typescript/src/apis/TasksApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/UploadsApi.ts b/typescript/src/apis/UploadsApi.ts index 6d7c70ac..c6404a01 100644 --- a/typescript/src/apis/UploadsApi.ts +++ b/typescript/src/apis/UploadsApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/UserApi.ts b/typescript/src/apis/UserApi.ts index 8f069bd9..2b7910f0 100644 --- a/typescript/src/apis/UserApi.ts +++ b/typescript/src/apis/UserApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/apis/WorkflowsApi.ts b/typescript/src/apis/WorkflowsApi.ts index bfb94f1a..074d5db1 100644 --- a/typescript/src/apis/WorkflowsApi.ts +++ b/typescript/src/apis/WorkflowsApi.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AddCollection200Response.ts b/typescript/src/models/AddCollection200Response.ts index cb295629..94ebe9b5 100644 --- a/typescript/src/models/AddCollection200Response.ts +++ b/typescript/src/models/AddCollection200Response.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AddDataset.ts b/typescript/src/models/AddDataset.ts index a686961a..fa9a0f57 100644 --- a/typescript/src/models/AddDataset.ts +++ b/typescript/src/models/AddDataset.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AddLayer.ts b/typescript/src/models/AddLayer.ts index 343b0e42..f86efee1 100644 --- a/typescript/src/models/AddLayer.ts +++ b/typescript/src/models/AddLayer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AddLayerCollection.ts b/typescript/src/models/AddLayerCollection.ts index 35faf60c..a5c05676 100644 --- a/typescript/src/models/AddLayerCollection.ts +++ b/typescript/src/models/AddLayerCollection.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AddRole.ts b/typescript/src/models/AddRole.ts index a986f9e7..ef684293 100644 --- a/typescript/src/models/AddRole.ts +++ b/typescript/src/models/AddRole.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AuthCodeRequestURL.ts b/typescript/src/models/AuthCodeRequestURL.ts index b979e410..423457b9 100644 --- a/typescript/src/models/AuthCodeRequestURL.ts +++ b/typescript/src/models/AuthCodeRequestURL.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AuthCodeResponse.ts b/typescript/src/models/AuthCodeResponse.ts index 2b2c8021..ac753460 100644 --- a/typescript/src/models/AuthCodeResponse.ts +++ b/typescript/src/models/AuthCodeResponse.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AutoCreateDataset.ts b/typescript/src/models/AutoCreateDataset.ts index 01346978..461705e8 100644 --- a/typescript/src/models/AutoCreateDataset.ts +++ b/typescript/src/models/AutoCreateDataset.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/AxisOrder.ts b/typescript/src/models/AxisOrder.ts index 39b2a849..c790cf8d 100644 --- a/typescript/src/models/AxisOrder.ts +++ b/typescript/src/models/AxisOrder.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/BoundingBox2D.ts b/typescript/src/models/BoundingBox2D.ts index 312cddeb..85fff6a3 100644 --- a/typescript/src/models/BoundingBox2D.ts +++ b/typescript/src/models/BoundingBox2D.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Breakpoint.ts b/typescript/src/models/Breakpoint.ts index c452b91f..4f041bdc 100644 --- a/typescript/src/models/Breakpoint.ts +++ b/typescript/src/models/Breakpoint.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ClassificationMeasurement.ts b/typescript/src/models/ClassificationMeasurement.ts index d47be9bd..c11d8e06 100644 --- a/typescript/src/models/ClassificationMeasurement.ts +++ b/typescript/src/models/ClassificationMeasurement.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/CollectionItem.ts b/typescript/src/models/CollectionItem.ts index 088e66a0..0e39c872 100644 --- a/typescript/src/models/CollectionItem.ts +++ b/typescript/src/models/CollectionItem.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/CollectionType.ts b/typescript/src/models/CollectionType.ts index c1a2514d..846092f7 100644 --- a/typescript/src/models/CollectionType.ts +++ b/typescript/src/models/CollectionType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ColorParam.ts b/typescript/src/models/ColorParam.ts index bfb5cdcc..014632fe 100644 --- a/typescript/src/models/ColorParam.ts +++ b/typescript/src/models/ColorParam.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ColorParamStatic.ts b/typescript/src/models/ColorParamStatic.ts index 3dd6455b..ddd9c506 100644 --- a/typescript/src/models/ColorParamStatic.ts +++ b/typescript/src/models/ColorParamStatic.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Colorizer.ts b/typescript/src/models/Colorizer.ts index e55b1ff1..257609b8 100644 --- a/typescript/src/models/Colorizer.ts +++ b/typescript/src/models/Colorizer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ComputationQuota.ts b/typescript/src/models/ComputationQuota.ts index ca35c804..92bc43fe 100644 --- a/typescript/src/models/ComputationQuota.ts +++ b/typescript/src/models/ComputationQuota.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ContinuousMeasurement.ts b/typescript/src/models/ContinuousMeasurement.ts index 4749efd9..736fbed1 100644 --- a/typescript/src/models/ContinuousMeasurement.ts +++ b/typescript/src/models/ContinuousMeasurement.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Coordinate2D.ts b/typescript/src/models/Coordinate2D.ts index deada03e..3659cf80 100644 --- a/typescript/src/models/Coordinate2D.ts +++ b/typescript/src/models/Coordinate2D.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/CreateDataset.ts b/typescript/src/models/CreateDataset.ts index d2eccf43..6061d1f6 100644 --- a/typescript/src/models/CreateDataset.ts +++ b/typescript/src/models/CreateDataset.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/CreateDatasetHandler200Response.ts b/typescript/src/models/CreateDatasetHandler200Response.ts index 5f8adac8..fa91ba1d 100644 --- a/typescript/src/models/CreateDatasetHandler200Response.ts +++ b/typescript/src/models/CreateDatasetHandler200Response.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/CreateProject.ts b/typescript/src/models/CreateProject.ts index cd08ad21..85a5cbdd 100644 --- a/typescript/src/models/CreateProject.ts +++ b/typescript/src/models/CreateProject.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/CsvHeader.ts b/typescript/src/models/CsvHeader.ts index aac3a45e..ab5888ad 100644 --- a/typescript/src/models/CsvHeader.ts +++ b/typescript/src/models/CsvHeader.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DataId.ts b/typescript/src/models/DataId.ts index cb8e5574..25e81b38 100644 --- a/typescript/src/models/DataId.ts +++ b/typescript/src/models/DataId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DataPath.ts b/typescript/src/models/DataPath.ts index 78874583..351bdf23 100644 --- a/typescript/src/models/DataPath.ts +++ b/typescript/src/models/DataPath.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DataPathOneOf.ts b/typescript/src/models/DataPathOneOf.ts index 4c164730..b05e7239 100644 --- a/typescript/src/models/DataPathOneOf.ts +++ b/typescript/src/models/DataPathOneOf.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DataPathOneOf1.ts b/typescript/src/models/DataPathOneOf1.ts index 3a40b4cb..52ec8051 100644 --- a/typescript/src/models/DataPathOneOf1.ts +++ b/typescript/src/models/DataPathOneOf1.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DataUsage.ts b/typescript/src/models/DataUsage.ts index 0b7f578c..39586ffe 100644 --- a/typescript/src/models/DataUsage.ts +++ b/typescript/src/models/DataUsage.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DataUsageSummary.ts b/typescript/src/models/DataUsageSummary.ts index 939e4611..c8f0cb18 100644 --- a/typescript/src/models/DataUsageSummary.ts +++ b/typescript/src/models/DataUsageSummary.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 @@ -30,7 +30,7 @@ export interface DataUsageSummary { * @type {string} * @memberof DataUsageSummary */ - dataset: string; + data: string; /** * * @type {Date} @@ -45,7 +45,7 @@ export interface DataUsageSummary { export function instanceOfDataUsageSummary(value: object): boolean { let isInstance = true; isInstance = isInstance && "count" in value; - isInstance = isInstance && "dataset" in value; + isInstance = isInstance && "data" in value; isInstance = isInstance && "timestamp" in value; return isInstance; @@ -62,7 +62,7 @@ export function DataUsageSummaryFromJSONTyped(json: any, ignoreDiscriminator: bo return { 'count': json['count'], - 'dataset': json['dataset'], + 'data': json['data'], 'timestamp': (new Date(json['timestamp'])), }; } @@ -77,7 +77,7 @@ export function DataUsageSummaryToJSON(value?: DataUsageSummary | null): any { return { 'count': value.count, - 'dataset': value.dataset, + 'data': value.data, 'timestamp': (value.timestamp.toISOString()), }; } diff --git a/typescript/src/models/Dataset.ts b/typescript/src/models/Dataset.ts index f94a788e..51ca110d 100644 --- a/typescript/src/models/Dataset.ts +++ b/typescript/src/models/Dataset.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DatasetDefinition.ts b/typescript/src/models/DatasetDefinition.ts index a3dbd3d9..869f3d7b 100644 --- a/typescript/src/models/DatasetDefinition.ts +++ b/typescript/src/models/DatasetDefinition.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DatasetListing.ts b/typescript/src/models/DatasetListing.ts index 601fb009..f397ad93 100644 --- a/typescript/src/models/DatasetListing.ts +++ b/typescript/src/models/DatasetListing.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DatasetResource.ts b/typescript/src/models/DatasetResource.ts index 4eeee02d..059d57fb 100644 --- a/typescript/src/models/DatasetResource.ts +++ b/typescript/src/models/DatasetResource.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DateTime.ts b/typescript/src/models/DateTime.ts index 53546ffb..9f2b0619 100644 --- a/typescript/src/models/DateTime.ts +++ b/typescript/src/models/DateTime.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DerivedColor.ts b/typescript/src/models/DerivedColor.ts index 6b49b16a..1ed2300f 100644 --- a/typescript/src/models/DerivedColor.ts +++ b/typescript/src/models/DerivedColor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DerivedNumber.ts b/typescript/src/models/DerivedNumber.ts index 6f344705..c8ab21da 100644 --- a/typescript/src/models/DerivedNumber.ts +++ b/typescript/src/models/DerivedNumber.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/DescribeCoverageRequest.ts b/typescript/src/models/DescribeCoverageRequest.ts index fb9378ee..0e34c414 100644 --- a/typescript/src/models/DescribeCoverageRequest.ts +++ b/typescript/src/models/DescribeCoverageRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ErrorResponse.ts b/typescript/src/models/ErrorResponse.ts index 5f3cd7f6..1798279e 100644 --- a/typescript/src/models/ErrorResponse.ts +++ b/typescript/src/models/ErrorResponse.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ExternalDataId.ts b/typescript/src/models/ExternalDataId.ts index 00db02ce..b12bea13 100644 --- a/typescript/src/models/ExternalDataId.ts +++ b/typescript/src/models/ExternalDataId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/FeatureDataType.ts b/typescript/src/models/FeatureDataType.ts index 4308afcd..23cdcc53 100644 --- a/typescript/src/models/FeatureDataType.ts +++ b/typescript/src/models/FeatureDataType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/FileNotFoundHandling.ts b/typescript/src/models/FileNotFoundHandling.ts index 02d86a2f..11da7644 100644 --- a/typescript/src/models/FileNotFoundHandling.ts +++ b/typescript/src/models/FileNotFoundHandling.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/FormatSpecifics.ts b/typescript/src/models/FormatSpecifics.ts index 0cb1b67c..30d595c9 100644 --- a/typescript/src/models/FormatSpecifics.ts +++ b/typescript/src/models/FormatSpecifics.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/FormatSpecificsOneOf.ts b/typescript/src/models/FormatSpecificsOneOf.ts index 242df85a..811d5dbb 100644 --- a/typescript/src/models/FormatSpecificsOneOf.ts +++ b/typescript/src/models/FormatSpecificsOneOf.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/FormatSpecificsOneOfCsv.ts b/typescript/src/models/FormatSpecificsOneOfCsv.ts index 66889a2b..5325d556 100644 --- a/typescript/src/models/FormatSpecificsOneOfCsv.ts +++ b/typescript/src/models/FormatSpecificsOneOfCsv.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalDatasetGeoTransform.ts b/typescript/src/models/GdalDatasetGeoTransform.ts index e0be8a30..4f2a0261 100644 --- a/typescript/src/models/GdalDatasetGeoTransform.ts +++ b/typescript/src/models/GdalDatasetGeoTransform.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalDatasetParameters.ts b/typescript/src/models/GdalDatasetParameters.ts index 47a47b62..6a0e6f2c 100644 --- a/typescript/src/models/GdalDatasetParameters.ts +++ b/typescript/src/models/GdalDatasetParameters.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalLoadingInfoTemporalSlice.ts b/typescript/src/models/GdalLoadingInfoTemporalSlice.ts index eb9d6c4d..17a0d309 100644 --- a/typescript/src/models/GdalLoadingInfoTemporalSlice.ts +++ b/typescript/src/models/GdalLoadingInfoTemporalSlice.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalMetaDataList.ts b/typescript/src/models/GdalMetaDataList.ts index ac0529ae..1d877bf7 100644 --- a/typescript/src/models/GdalMetaDataList.ts +++ b/typescript/src/models/GdalMetaDataList.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalMetaDataRegular.ts b/typescript/src/models/GdalMetaDataRegular.ts index 9799b014..63e19d34 100644 --- a/typescript/src/models/GdalMetaDataRegular.ts +++ b/typescript/src/models/GdalMetaDataRegular.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalMetaDataStatic.ts b/typescript/src/models/GdalMetaDataStatic.ts index 0e192a7e..3c777164 100644 --- a/typescript/src/models/GdalMetaDataStatic.ts +++ b/typescript/src/models/GdalMetaDataStatic.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalMetadataMapping.ts b/typescript/src/models/GdalMetadataMapping.ts index 7ba77e8f..d89ea4d1 100644 --- a/typescript/src/models/GdalMetadataMapping.ts +++ b/typescript/src/models/GdalMetadataMapping.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalMetadataNetCdfCf.ts b/typescript/src/models/GdalMetadataNetCdfCf.ts index e5c9cf4c..4f71e7a7 100644 --- a/typescript/src/models/GdalMetadataNetCdfCf.ts +++ b/typescript/src/models/GdalMetadataNetCdfCf.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GdalSourceTimePlaceholder.ts b/typescript/src/models/GdalSourceTimePlaceholder.ts index 514db801..983b8f1d 100644 --- a/typescript/src/models/GdalSourceTimePlaceholder.ts +++ b/typescript/src/models/GdalSourceTimePlaceholder.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GeoJson.ts b/typescript/src/models/GeoJson.ts index dadbbf85..ba7619d3 100644 --- a/typescript/src/models/GeoJson.ts +++ b/typescript/src/models/GeoJson.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetCapabilitiesFormat.ts b/typescript/src/models/GetCapabilitiesFormat.ts index b2d5606b..cb1131d8 100644 --- a/typescript/src/models/GetCapabilitiesFormat.ts +++ b/typescript/src/models/GetCapabilitiesFormat.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetCapabilitiesRequest.ts b/typescript/src/models/GetCapabilitiesRequest.ts index ffdd0552..ed171378 100644 --- a/typescript/src/models/GetCapabilitiesRequest.ts +++ b/typescript/src/models/GetCapabilitiesRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetCoverageFormat.ts b/typescript/src/models/GetCoverageFormat.ts index d9cc23c1..e85394df 100644 --- a/typescript/src/models/GetCoverageFormat.ts +++ b/typescript/src/models/GetCoverageFormat.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetCoverageRequest.ts b/typescript/src/models/GetCoverageRequest.ts index 0fe8c1fc..7b346cc0 100644 --- a/typescript/src/models/GetCoverageRequest.ts +++ b/typescript/src/models/GetCoverageRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetFeatureRequest.ts b/typescript/src/models/GetFeatureRequest.ts index 2dc90ad9..afb70db1 100644 --- a/typescript/src/models/GetFeatureRequest.ts +++ b/typescript/src/models/GetFeatureRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetLegendGraphicRequest.ts b/typescript/src/models/GetLegendGraphicRequest.ts index 554d2b5e..2f846a44 100644 --- a/typescript/src/models/GetLegendGraphicRequest.ts +++ b/typescript/src/models/GetLegendGraphicRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetMapExceptionFormat.ts b/typescript/src/models/GetMapExceptionFormat.ts index d7d90cf2..26e6d772 100644 --- a/typescript/src/models/GetMapExceptionFormat.ts +++ b/typescript/src/models/GetMapExceptionFormat.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetMapFormat.ts b/typescript/src/models/GetMapFormat.ts index 1fc528a7..4fb0f971 100644 --- a/typescript/src/models/GetMapFormat.ts +++ b/typescript/src/models/GetMapFormat.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/GetMapRequest.ts b/typescript/src/models/GetMapRequest.ts index 43b58da3..6f795e63 100644 --- a/typescript/src/models/GetMapRequest.ts +++ b/typescript/src/models/GetMapRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/InternalDataId.ts b/typescript/src/models/InternalDataId.ts index 820ad431..d9f81fc1 100644 --- a/typescript/src/models/InternalDataId.ts +++ b/typescript/src/models/InternalDataId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Layer.ts b/typescript/src/models/Layer.ts index e2003e2f..9102779e 100644 --- a/typescript/src/models/Layer.ts +++ b/typescript/src/models/Layer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerCollection.ts b/typescript/src/models/LayerCollection.ts index 052d5616..3a2306ab 100644 --- a/typescript/src/models/LayerCollection.ts +++ b/typescript/src/models/LayerCollection.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerCollectionListing.ts b/typescript/src/models/LayerCollectionListing.ts index c9eff0dd..a4b93000 100644 --- a/typescript/src/models/LayerCollectionListing.ts +++ b/typescript/src/models/LayerCollectionListing.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerCollectionResource.ts b/typescript/src/models/LayerCollectionResource.ts index 667389f5..df288bc5 100644 --- a/typescript/src/models/LayerCollectionResource.ts +++ b/typescript/src/models/LayerCollectionResource.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerListing.ts b/typescript/src/models/LayerListing.ts index e8d25625..34f15c17 100644 --- a/typescript/src/models/LayerListing.ts +++ b/typescript/src/models/LayerListing.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerResource.ts b/typescript/src/models/LayerResource.ts index 1f0750fc..ce091d55 100644 --- a/typescript/src/models/LayerResource.ts +++ b/typescript/src/models/LayerResource.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerUpdate.ts b/typescript/src/models/LayerUpdate.ts index dc957f08..c0f03977 100644 --- a/typescript/src/models/LayerUpdate.ts +++ b/typescript/src/models/LayerUpdate.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LayerVisibility.ts b/typescript/src/models/LayerVisibility.ts index 819b6f9c..3722cdab 100644 --- a/typescript/src/models/LayerVisibility.ts +++ b/typescript/src/models/LayerVisibility.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LineSymbology.ts b/typescript/src/models/LineSymbology.ts index 0912269f..3b008a26 100644 --- a/typescript/src/models/LineSymbology.ts +++ b/typescript/src/models/LineSymbology.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LinearGradient.ts b/typescript/src/models/LinearGradient.ts index d8e31a9a..5a1610bf 100644 --- a/typescript/src/models/LinearGradient.ts +++ b/typescript/src/models/LinearGradient.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/LogarithmicGradient.ts b/typescript/src/models/LogarithmicGradient.ts index cc4e7774..16198af6 100644 --- a/typescript/src/models/LogarithmicGradient.ts +++ b/typescript/src/models/LogarithmicGradient.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Measurement.ts b/typescript/src/models/Measurement.ts index c6fd826e..8eeb9818 100644 --- a/typescript/src/models/Measurement.ts +++ b/typescript/src/models/Measurement.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MetaDataDefinition.ts b/typescript/src/models/MetaDataDefinition.ts index 734874c9..8dd9957f 100644 --- a/typescript/src/models/MetaDataDefinition.ts +++ b/typescript/src/models/MetaDataDefinition.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MetaDataSuggestion.ts b/typescript/src/models/MetaDataSuggestion.ts index b42ba2cc..8b0e637c 100644 --- a/typescript/src/models/MetaDataSuggestion.ts +++ b/typescript/src/models/MetaDataSuggestion.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MlModel.ts b/typescript/src/models/MlModel.ts index be9dd7b3..36e5d4cb 100644 --- a/typescript/src/models/MlModel.ts +++ b/typescript/src/models/MlModel.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MlModelMetadata.ts b/typescript/src/models/MlModelMetadata.ts index 32ecac00..c0d2f9e8 100644 --- a/typescript/src/models/MlModelMetadata.ts +++ b/typescript/src/models/MlModelMetadata.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MockDatasetDataSourceLoadingInfo.ts b/typescript/src/models/MockDatasetDataSourceLoadingInfo.ts index 27d89ad5..179973ea 100644 --- a/typescript/src/models/MockDatasetDataSourceLoadingInfo.ts +++ b/typescript/src/models/MockDatasetDataSourceLoadingInfo.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MockMetaData.ts b/typescript/src/models/MockMetaData.ts index 4e2f3aaf..6c881f01 100644 --- a/typescript/src/models/MockMetaData.ts +++ b/typescript/src/models/MockMetaData.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MultiBandRasterColorizer.ts b/typescript/src/models/MultiBandRasterColorizer.ts index aabc8f4c..c4d0e9aa 100644 --- a/typescript/src/models/MultiBandRasterColorizer.ts +++ b/typescript/src/models/MultiBandRasterColorizer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MultiLineString.ts b/typescript/src/models/MultiLineString.ts index 87c9e9a2..dc64448d 100644 --- a/typescript/src/models/MultiLineString.ts +++ b/typescript/src/models/MultiLineString.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MultiPoint.ts b/typescript/src/models/MultiPoint.ts index 4a933ac6..24221f3b 100644 --- a/typescript/src/models/MultiPoint.ts +++ b/typescript/src/models/MultiPoint.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/MultiPolygon.ts b/typescript/src/models/MultiPolygon.ts index cc26f8cd..ee4635b2 100644 --- a/typescript/src/models/MultiPolygon.ts +++ b/typescript/src/models/MultiPolygon.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/NumberParam.ts b/typescript/src/models/NumberParam.ts index 1b1e09c2..7605eb85 100644 --- a/typescript/src/models/NumberParam.ts +++ b/typescript/src/models/NumberParam.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrMetaData.ts b/typescript/src/models/OgrMetaData.ts index 8f3f1682..f4e87c06 100644 --- a/typescript/src/models/OgrMetaData.ts +++ b/typescript/src/models/OgrMetaData.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceColumnSpec.ts b/typescript/src/models/OgrSourceColumnSpec.ts index b85b01e0..eff0c21d 100644 --- a/typescript/src/models/OgrSourceColumnSpec.ts +++ b/typescript/src/models/OgrSourceColumnSpec.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDataset.ts b/typescript/src/models/OgrSourceDataset.ts index cb100f34..4b28354e 100644 --- a/typescript/src/models/OgrSourceDataset.ts +++ b/typescript/src/models/OgrSourceDataset.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDatasetTimeType.ts b/typescript/src/models/OgrSourceDatasetTimeType.ts index d02a14e0..3763ba97 100644 --- a/typescript/src/models/OgrSourceDatasetTimeType.ts +++ b/typescript/src/models/OgrSourceDatasetTimeType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDatasetTimeTypeNone.ts b/typescript/src/models/OgrSourceDatasetTimeTypeNone.ts index c1514fac..6950cd06 100644 --- a/typescript/src/models/OgrSourceDatasetTimeTypeNone.ts +++ b/typescript/src/models/OgrSourceDatasetTimeTypeNone.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDatasetTimeTypeStart.ts b/typescript/src/models/OgrSourceDatasetTimeTypeStart.ts index d37b46af..e0cb022d 100644 --- a/typescript/src/models/OgrSourceDatasetTimeTypeStart.ts +++ b/typescript/src/models/OgrSourceDatasetTimeTypeStart.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDatasetTimeTypeStartDuration.ts b/typescript/src/models/OgrSourceDatasetTimeTypeStartDuration.ts index e0af7fe1..06b18e1d 100644 --- a/typescript/src/models/OgrSourceDatasetTimeTypeStartDuration.ts +++ b/typescript/src/models/OgrSourceDatasetTimeTypeStartDuration.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDatasetTimeTypeStartEnd.ts b/typescript/src/models/OgrSourceDatasetTimeTypeStartEnd.ts index bb68058d..b0226de2 100644 --- a/typescript/src/models/OgrSourceDatasetTimeTypeStartEnd.ts +++ b/typescript/src/models/OgrSourceDatasetTimeTypeStartEnd.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDurationSpec.ts b/typescript/src/models/OgrSourceDurationSpec.ts index b61b2380..f607836a 100644 --- a/typescript/src/models/OgrSourceDurationSpec.ts +++ b/typescript/src/models/OgrSourceDurationSpec.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDurationSpecInfinite.ts b/typescript/src/models/OgrSourceDurationSpecInfinite.ts index c6b1f43b..9eaebbf5 100644 --- a/typescript/src/models/OgrSourceDurationSpecInfinite.ts +++ b/typescript/src/models/OgrSourceDurationSpecInfinite.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDurationSpecValue.ts b/typescript/src/models/OgrSourceDurationSpecValue.ts index 36b2128d..65fb2d84 100644 --- a/typescript/src/models/OgrSourceDurationSpecValue.ts +++ b/typescript/src/models/OgrSourceDurationSpecValue.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceDurationSpecZero.ts b/typescript/src/models/OgrSourceDurationSpecZero.ts index d4a61cac..fb15487c 100644 --- a/typescript/src/models/OgrSourceDurationSpecZero.ts +++ b/typescript/src/models/OgrSourceDurationSpecZero.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceErrorSpec.ts b/typescript/src/models/OgrSourceErrorSpec.ts index 23a66577..e8d52b4d 100644 --- a/typescript/src/models/OgrSourceErrorSpec.ts +++ b/typescript/src/models/OgrSourceErrorSpec.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceTimeFormat.ts b/typescript/src/models/OgrSourceTimeFormat.ts index 1fb51bb2..e103fe63 100644 --- a/typescript/src/models/OgrSourceTimeFormat.ts +++ b/typescript/src/models/OgrSourceTimeFormat.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceTimeFormatAuto.ts b/typescript/src/models/OgrSourceTimeFormatAuto.ts index 9d0683bb..4e18dec8 100644 --- a/typescript/src/models/OgrSourceTimeFormatAuto.ts +++ b/typescript/src/models/OgrSourceTimeFormatAuto.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceTimeFormatCustom.ts b/typescript/src/models/OgrSourceTimeFormatCustom.ts index 77bccc8f..63c2b30e 100644 --- a/typescript/src/models/OgrSourceTimeFormatCustom.ts +++ b/typescript/src/models/OgrSourceTimeFormatCustom.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OgrSourceTimeFormatUnixTimeStamp.ts b/typescript/src/models/OgrSourceTimeFormatUnixTimeStamp.ts index a473b3b9..9884584a 100644 --- a/typescript/src/models/OgrSourceTimeFormatUnixTimeStamp.ts +++ b/typescript/src/models/OgrSourceTimeFormatUnixTimeStamp.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OperatorQuota.ts b/typescript/src/models/OperatorQuota.ts index dc920d6b..b7067a3e 100644 --- a/typescript/src/models/OperatorQuota.ts +++ b/typescript/src/models/OperatorQuota.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/OrderBy.ts b/typescript/src/models/OrderBy.ts index b5e98b4e..24a856ca 100644 --- a/typescript/src/models/OrderBy.ts +++ b/typescript/src/models/OrderBy.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PaletteColorizer.ts b/typescript/src/models/PaletteColorizer.ts index 77936b27..ae826a0d 100644 --- a/typescript/src/models/PaletteColorizer.ts +++ b/typescript/src/models/PaletteColorizer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Permission.ts b/typescript/src/models/Permission.ts index 55073b86..f5ad5a78 100644 --- a/typescript/src/models/Permission.ts +++ b/typescript/src/models/Permission.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PermissionListOptions.ts b/typescript/src/models/PermissionListOptions.ts index 5bd39a64..e5c33bf0 100644 --- a/typescript/src/models/PermissionListOptions.ts +++ b/typescript/src/models/PermissionListOptions.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PermissionListing.ts b/typescript/src/models/PermissionListing.ts index 3e26d5d4..5436881d 100644 --- a/typescript/src/models/PermissionListing.ts +++ b/typescript/src/models/PermissionListing.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PermissionRequest.ts b/typescript/src/models/PermissionRequest.ts index 3c05c3ba..d332d5cf 100644 --- a/typescript/src/models/PermissionRequest.ts +++ b/typescript/src/models/PermissionRequest.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Plot.ts b/typescript/src/models/Plot.ts index 79bc8319..d0a987ba 100644 --- a/typescript/src/models/Plot.ts +++ b/typescript/src/models/Plot.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PlotOutputFormat.ts b/typescript/src/models/PlotOutputFormat.ts index 3775566b..7bbfbc55 100644 --- a/typescript/src/models/PlotOutputFormat.ts +++ b/typescript/src/models/PlotOutputFormat.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PlotQueryRectangle.ts b/typescript/src/models/PlotQueryRectangle.ts index d106e9f2..93549eac 100644 --- a/typescript/src/models/PlotQueryRectangle.ts +++ b/typescript/src/models/PlotQueryRectangle.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PlotResultDescriptor.ts b/typescript/src/models/PlotResultDescriptor.ts index 66637ee4..aaf1df8e 100644 --- a/typescript/src/models/PlotResultDescriptor.ts +++ b/typescript/src/models/PlotResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PlotUpdate.ts b/typescript/src/models/PlotUpdate.ts index d270ed50..8b452091 100644 --- a/typescript/src/models/PlotUpdate.ts +++ b/typescript/src/models/PlotUpdate.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PointSymbology.ts b/typescript/src/models/PointSymbology.ts index 1aeb8e98..f1a5fa46 100644 --- a/typescript/src/models/PointSymbology.ts +++ b/typescript/src/models/PointSymbology.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/PolygonSymbology.ts b/typescript/src/models/PolygonSymbology.ts index cbe82e3b..972419cf 100644 --- a/typescript/src/models/PolygonSymbology.ts +++ b/typescript/src/models/PolygonSymbology.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Project.ts b/typescript/src/models/Project.ts index 204334f6..117a42d6 100644 --- a/typescript/src/models/Project.ts +++ b/typescript/src/models/Project.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProjectLayer.ts b/typescript/src/models/ProjectLayer.ts index bbf17ba2..36a11de6 100644 --- a/typescript/src/models/ProjectLayer.ts +++ b/typescript/src/models/ProjectLayer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProjectListing.ts b/typescript/src/models/ProjectListing.ts index 125ada17..bce30e15 100644 --- a/typescript/src/models/ProjectListing.ts +++ b/typescript/src/models/ProjectListing.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProjectResource.ts b/typescript/src/models/ProjectResource.ts index 99570884..e0d208c6 100644 --- a/typescript/src/models/ProjectResource.ts +++ b/typescript/src/models/ProjectResource.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProjectUpdateToken.ts b/typescript/src/models/ProjectUpdateToken.ts index 760fcdef..0d5917ef 100644 --- a/typescript/src/models/ProjectUpdateToken.ts +++ b/typescript/src/models/ProjectUpdateToken.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProjectVersion.ts b/typescript/src/models/ProjectVersion.ts index 2062ce1b..6a88e7cc 100644 --- a/typescript/src/models/ProjectVersion.ts +++ b/typescript/src/models/ProjectVersion.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Provenance.ts b/typescript/src/models/Provenance.ts index 71c58bcf..b879dd8d 100644 --- a/typescript/src/models/Provenance.ts +++ b/typescript/src/models/Provenance.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProvenanceEntry.ts b/typescript/src/models/ProvenanceEntry.ts index d629f161..41e3d51f 100644 --- a/typescript/src/models/ProvenanceEntry.ts +++ b/typescript/src/models/ProvenanceEntry.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProvenanceOutput.ts b/typescript/src/models/ProvenanceOutput.ts index 01cb248c..60c45628 100644 --- a/typescript/src/models/ProvenanceOutput.ts +++ b/typescript/src/models/ProvenanceOutput.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Provenances.ts b/typescript/src/models/Provenances.ts index c99ab155..01d51f2b 100644 --- a/typescript/src/models/Provenances.ts +++ b/typescript/src/models/Provenances.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProviderCapabilities.ts b/typescript/src/models/ProviderCapabilities.ts index 3a53fbab..362e17f2 100644 --- a/typescript/src/models/ProviderCapabilities.ts +++ b/typescript/src/models/ProviderCapabilities.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProviderLayerCollectionId.ts b/typescript/src/models/ProviderLayerCollectionId.ts index 61013b34..b5d36fbc 100644 --- a/typescript/src/models/ProviderLayerCollectionId.ts +++ b/typescript/src/models/ProviderLayerCollectionId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ProviderLayerId.ts b/typescript/src/models/ProviderLayerId.ts index 20939fba..69fcee0c 100644 --- a/typescript/src/models/ProviderLayerId.ts +++ b/typescript/src/models/ProviderLayerId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Quota.ts b/typescript/src/models/Quota.ts index cd14ec57..e2b2addc 100644 --- a/typescript/src/models/Quota.ts +++ b/typescript/src/models/Quota.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterBandDescriptor.ts b/typescript/src/models/RasterBandDescriptor.ts index b2bd1436..3f75d3b9 100644 --- a/typescript/src/models/RasterBandDescriptor.ts +++ b/typescript/src/models/RasterBandDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterColorizer.ts b/typescript/src/models/RasterColorizer.ts index c2dd8484..f1d2e775 100644 --- a/typescript/src/models/RasterColorizer.ts +++ b/typescript/src/models/RasterColorizer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterDataType.ts b/typescript/src/models/RasterDataType.ts index 1a33e606..0df20448 100644 --- a/typescript/src/models/RasterDataType.ts +++ b/typescript/src/models/RasterDataType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterDatasetFromWorkflow.ts b/typescript/src/models/RasterDatasetFromWorkflow.ts index ffd8b78c..59e8d69a 100644 --- a/typescript/src/models/RasterDatasetFromWorkflow.ts +++ b/typescript/src/models/RasterDatasetFromWorkflow.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterDatasetFromWorkflowResult.ts b/typescript/src/models/RasterDatasetFromWorkflowResult.ts index 92bf263f..2bfac7a6 100644 --- a/typescript/src/models/RasterDatasetFromWorkflowResult.ts +++ b/typescript/src/models/RasterDatasetFromWorkflowResult.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterPropertiesEntryType.ts b/typescript/src/models/RasterPropertiesEntryType.ts index e4b5ea71..70fda690 100644 --- a/typescript/src/models/RasterPropertiesEntryType.ts +++ b/typescript/src/models/RasterPropertiesEntryType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterPropertiesKey.ts b/typescript/src/models/RasterPropertiesKey.ts index b4b2abbe..c8ecd8c1 100644 --- a/typescript/src/models/RasterPropertiesKey.ts +++ b/typescript/src/models/RasterPropertiesKey.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterQueryRectangle.ts b/typescript/src/models/RasterQueryRectangle.ts index 1f8b7407..585e803f 100644 --- a/typescript/src/models/RasterQueryRectangle.ts +++ b/typescript/src/models/RasterQueryRectangle.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterResultDescriptor.ts b/typescript/src/models/RasterResultDescriptor.ts index e97c761b..b44a9de2 100644 --- a/typescript/src/models/RasterResultDescriptor.ts +++ b/typescript/src/models/RasterResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterStreamWebsocketResultType.ts b/typescript/src/models/RasterStreamWebsocketResultType.ts index 60b5ce38..61830f90 100644 --- a/typescript/src/models/RasterStreamWebsocketResultType.ts +++ b/typescript/src/models/RasterStreamWebsocketResultType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RasterSymbology.ts b/typescript/src/models/RasterSymbology.ts index 3b94ea0a..0531b329 100644 --- a/typescript/src/models/RasterSymbology.ts +++ b/typescript/src/models/RasterSymbology.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Resource.ts b/typescript/src/models/Resource.ts index 5b1a46e2..0938bcba 100644 --- a/typescript/src/models/Resource.ts +++ b/typescript/src/models/Resource.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ResourceId.ts b/typescript/src/models/ResourceId.ts index 44ef18a3..af317b3d 100644 --- a/typescript/src/models/ResourceId.ts +++ b/typescript/src/models/ResourceId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ResourceIdDatasetId.ts b/typescript/src/models/ResourceIdDatasetId.ts index afa70b77..53efd56b 100644 --- a/typescript/src/models/ResourceIdDatasetId.ts +++ b/typescript/src/models/ResourceIdDatasetId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ResourceIdLayer.ts b/typescript/src/models/ResourceIdLayer.ts index d93cd968..01424df5 100644 --- a/typescript/src/models/ResourceIdLayer.ts +++ b/typescript/src/models/ResourceIdLayer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ResourceIdLayerCollection.ts b/typescript/src/models/ResourceIdLayerCollection.ts index 615a42d3..455dc86a 100644 --- a/typescript/src/models/ResourceIdLayerCollection.ts +++ b/typescript/src/models/ResourceIdLayerCollection.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ResourceIdMlModel.ts b/typescript/src/models/ResourceIdMlModel.ts index 3f0f8070..09822686 100644 --- a/typescript/src/models/ResourceIdMlModel.ts +++ b/typescript/src/models/ResourceIdMlModel.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ResourceIdProject.ts b/typescript/src/models/ResourceIdProject.ts index 05a0fd4d..721e6f45 100644 --- a/typescript/src/models/ResourceIdProject.ts +++ b/typescript/src/models/ResourceIdProject.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Role.ts b/typescript/src/models/Role.ts index b1b835c5..fce27b71 100644 --- a/typescript/src/models/Role.ts +++ b/typescript/src/models/Role.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/RoleDescription.ts b/typescript/src/models/RoleDescription.ts index c708ec4b..2e9c0f27 100644 --- a/typescript/src/models/RoleDescription.ts +++ b/typescript/src/models/RoleDescription.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/STRectangle.ts b/typescript/src/models/STRectangle.ts index 5c2d05b3..ee8bc76d 100644 --- a/typescript/src/models/STRectangle.ts +++ b/typescript/src/models/STRectangle.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SearchCapabilities.ts b/typescript/src/models/SearchCapabilities.ts index 9831395e..32d4a662 100644 --- a/typescript/src/models/SearchCapabilities.ts +++ b/typescript/src/models/SearchCapabilities.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SearchType.ts b/typescript/src/models/SearchType.ts index aad40b6f..d3808e6a 100644 --- a/typescript/src/models/SearchType.ts +++ b/typescript/src/models/SearchType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SearchTypes.ts b/typescript/src/models/SearchTypes.ts index d3b262a8..93a55e15 100644 --- a/typescript/src/models/SearchTypes.ts +++ b/typescript/src/models/SearchTypes.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/ServerInfo.ts b/typescript/src/models/ServerInfo.ts index 10e6eec7..95629b96 100644 --- a/typescript/src/models/ServerInfo.ts +++ b/typescript/src/models/ServerInfo.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SingleBandRasterColorizer.ts b/typescript/src/models/SingleBandRasterColorizer.ts index 3daee8b8..687e3ef2 100644 --- a/typescript/src/models/SingleBandRasterColorizer.ts +++ b/typescript/src/models/SingleBandRasterColorizer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SpatialPartition2D.ts b/typescript/src/models/SpatialPartition2D.ts index 8030d6fa..cb8038d4 100644 --- a/typescript/src/models/SpatialPartition2D.ts +++ b/typescript/src/models/SpatialPartition2D.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SpatialReferenceAuthority.ts b/typescript/src/models/SpatialReferenceAuthority.ts index 0d9917f9..c62a0433 100644 --- a/typescript/src/models/SpatialReferenceAuthority.ts +++ b/typescript/src/models/SpatialReferenceAuthority.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SpatialReferenceSpecification.ts b/typescript/src/models/SpatialReferenceSpecification.ts index f9392367..2dec601d 100644 --- a/typescript/src/models/SpatialReferenceSpecification.ts +++ b/typescript/src/models/SpatialReferenceSpecification.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SpatialResolution.ts b/typescript/src/models/SpatialResolution.ts index 369d1b1b..778d0bd8 100644 --- a/typescript/src/models/SpatialResolution.ts +++ b/typescript/src/models/SpatialResolution.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/StaticNumberParam.ts b/typescript/src/models/StaticNumberParam.ts index a8ff2446..05edc0a5 100644 --- a/typescript/src/models/StaticNumberParam.ts +++ b/typescript/src/models/StaticNumberParam.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/StrokeParam.ts b/typescript/src/models/StrokeParam.ts index 93463a42..ee1e14cb 100644 --- a/typescript/src/models/StrokeParam.ts +++ b/typescript/src/models/StrokeParam.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/SuggestMetaData.ts b/typescript/src/models/SuggestMetaData.ts index e65db8e5..35206d23 100644 --- a/typescript/src/models/SuggestMetaData.ts +++ b/typescript/src/models/SuggestMetaData.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Symbology.ts b/typescript/src/models/Symbology.ts index 6727b077..1e9c994e 100644 --- a/typescript/src/models/Symbology.ts +++ b/typescript/src/models/Symbology.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskAbortOptions.ts b/typescript/src/models/TaskAbortOptions.ts index 77378091..b27fe222 100644 --- a/typescript/src/models/TaskAbortOptions.ts +++ b/typescript/src/models/TaskAbortOptions.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskFilter.ts b/typescript/src/models/TaskFilter.ts index e6605713..affe047a 100644 --- a/typescript/src/models/TaskFilter.ts +++ b/typescript/src/models/TaskFilter.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskListOptions.ts b/typescript/src/models/TaskListOptions.ts index def46976..e037b829 100644 --- a/typescript/src/models/TaskListOptions.ts +++ b/typescript/src/models/TaskListOptions.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskResponse.ts b/typescript/src/models/TaskResponse.ts index 05be0a14..6c7c04d5 100644 --- a/typescript/src/models/TaskResponse.ts +++ b/typescript/src/models/TaskResponse.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskStatus.ts b/typescript/src/models/TaskStatus.ts index 42535514..9d801b0b 100644 --- a/typescript/src/models/TaskStatus.ts +++ b/typescript/src/models/TaskStatus.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskStatusAborted.ts b/typescript/src/models/TaskStatusAborted.ts index 5d6fad28..574f1b5e 100644 --- a/typescript/src/models/TaskStatusAborted.ts +++ b/typescript/src/models/TaskStatusAborted.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskStatusCompleted.ts b/typescript/src/models/TaskStatusCompleted.ts index c3316595..4b6ddef1 100644 --- a/typescript/src/models/TaskStatusCompleted.ts +++ b/typescript/src/models/TaskStatusCompleted.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskStatusFailed.ts b/typescript/src/models/TaskStatusFailed.ts index bab7afba..1ed2730f 100644 --- a/typescript/src/models/TaskStatusFailed.ts +++ b/typescript/src/models/TaskStatusFailed.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskStatusRunning.ts b/typescript/src/models/TaskStatusRunning.ts index 1f371407..7b9c5512 100644 --- a/typescript/src/models/TaskStatusRunning.ts +++ b/typescript/src/models/TaskStatusRunning.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TaskStatusWithId.ts b/typescript/src/models/TaskStatusWithId.ts index a923c24e..4cb2b619 100644 --- a/typescript/src/models/TaskStatusWithId.ts +++ b/typescript/src/models/TaskStatusWithId.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TextSymbology.ts b/typescript/src/models/TextSymbology.ts index 7c8a302a..828f2a78 100644 --- a/typescript/src/models/TextSymbology.ts +++ b/typescript/src/models/TextSymbology.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TimeGranularity.ts b/typescript/src/models/TimeGranularity.ts index 1a3448e2..4ca124d5 100644 --- a/typescript/src/models/TimeGranularity.ts +++ b/typescript/src/models/TimeGranularity.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TimeInterval.ts b/typescript/src/models/TimeInterval.ts index 24691219..68be97ae 100644 --- a/typescript/src/models/TimeInterval.ts +++ b/typescript/src/models/TimeInterval.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TimeReference.ts b/typescript/src/models/TimeReference.ts index 5dff3ded..25f15334 100644 --- a/typescript/src/models/TimeReference.ts +++ b/typescript/src/models/TimeReference.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TimeStep.ts b/typescript/src/models/TimeStep.ts index 9f0f6329..b86d7b72 100644 --- a/typescript/src/models/TimeStep.ts +++ b/typescript/src/models/TimeStep.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedGeometry.ts b/typescript/src/models/TypedGeometry.ts index 2888f97c..bf7fb0bd 100644 --- a/typescript/src/models/TypedGeometry.ts +++ b/typescript/src/models/TypedGeometry.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedGeometryOneOf.ts b/typescript/src/models/TypedGeometryOneOf.ts index d313c0a6..71009ab8 100644 --- a/typescript/src/models/TypedGeometryOneOf.ts +++ b/typescript/src/models/TypedGeometryOneOf.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedGeometryOneOf1.ts b/typescript/src/models/TypedGeometryOneOf1.ts index ac6a7884..447c0db1 100644 --- a/typescript/src/models/TypedGeometryOneOf1.ts +++ b/typescript/src/models/TypedGeometryOneOf1.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedGeometryOneOf2.ts b/typescript/src/models/TypedGeometryOneOf2.ts index 77babe17..4c9d955c 100644 --- a/typescript/src/models/TypedGeometryOneOf2.ts +++ b/typescript/src/models/TypedGeometryOneOf2.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedGeometryOneOf3.ts b/typescript/src/models/TypedGeometryOneOf3.ts index 5b110979..d5b99512 100644 --- a/typescript/src/models/TypedGeometryOneOf3.ts +++ b/typescript/src/models/TypedGeometryOneOf3.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedOperator.ts b/typescript/src/models/TypedOperator.ts index 4ad9153a..7b2c3d3d 100644 --- a/typescript/src/models/TypedOperator.ts +++ b/typescript/src/models/TypedOperator.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedOperatorOperator.ts b/typescript/src/models/TypedOperatorOperator.ts index f16051a5..ff3ee3ae 100644 --- a/typescript/src/models/TypedOperatorOperator.ts +++ b/typescript/src/models/TypedOperatorOperator.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedPlotResultDescriptor.ts b/typescript/src/models/TypedPlotResultDescriptor.ts index 6856d406..291b4ce6 100644 --- a/typescript/src/models/TypedPlotResultDescriptor.ts +++ b/typescript/src/models/TypedPlotResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedRasterResultDescriptor.ts b/typescript/src/models/TypedRasterResultDescriptor.ts index 75f88c66..08b0e5fc 100644 --- a/typescript/src/models/TypedRasterResultDescriptor.ts +++ b/typescript/src/models/TypedRasterResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedResultDescriptor.ts b/typescript/src/models/TypedResultDescriptor.ts index 3cd8b7ab..39e35f81 100644 --- a/typescript/src/models/TypedResultDescriptor.ts +++ b/typescript/src/models/TypedResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/TypedVectorResultDescriptor.ts b/typescript/src/models/TypedVectorResultDescriptor.ts index f091b404..9f9f81e1 100644 --- a/typescript/src/models/TypedVectorResultDescriptor.ts +++ b/typescript/src/models/TypedVectorResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UnitlessMeasurement.ts b/typescript/src/models/UnitlessMeasurement.ts index c1a72e95..d0278107 100644 --- a/typescript/src/models/UnitlessMeasurement.ts +++ b/typescript/src/models/UnitlessMeasurement.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UnixTimeStampType.ts b/typescript/src/models/UnixTimeStampType.ts index c29d7073..cef6eb04 100644 --- a/typescript/src/models/UnixTimeStampType.ts +++ b/typescript/src/models/UnixTimeStampType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UpdateDataset.ts b/typescript/src/models/UpdateDataset.ts index 9abfe786..31196975 100644 --- a/typescript/src/models/UpdateDataset.ts +++ b/typescript/src/models/UpdateDataset.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UpdateLayer.ts b/typescript/src/models/UpdateLayer.ts index 9031531f..f40a5a19 100644 --- a/typescript/src/models/UpdateLayer.ts +++ b/typescript/src/models/UpdateLayer.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UpdateLayerCollection.ts b/typescript/src/models/UpdateLayerCollection.ts index f3081bfe..fb314925 100644 --- a/typescript/src/models/UpdateLayerCollection.ts +++ b/typescript/src/models/UpdateLayerCollection.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UpdateProject.ts b/typescript/src/models/UpdateProject.ts index b54bab68..a676a6be 100644 --- a/typescript/src/models/UpdateProject.ts +++ b/typescript/src/models/UpdateProject.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UpdateQuota.ts b/typescript/src/models/UpdateQuota.ts index 1f5f713e..fe39970b 100644 --- a/typescript/src/models/UpdateQuota.ts +++ b/typescript/src/models/UpdateQuota.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UploadFileLayersResponse.ts b/typescript/src/models/UploadFileLayersResponse.ts index e14eb8af..bc8e5917 100644 --- a/typescript/src/models/UploadFileLayersResponse.ts +++ b/typescript/src/models/UploadFileLayersResponse.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UploadFilesResponse.ts b/typescript/src/models/UploadFilesResponse.ts index ff3d8e16..3e65a89c 100644 --- a/typescript/src/models/UploadFilesResponse.ts +++ b/typescript/src/models/UploadFilesResponse.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UsageSummaryGranularity.ts b/typescript/src/models/UsageSummaryGranularity.ts index f6bf98cd..85d3d84b 100644 --- a/typescript/src/models/UsageSummaryGranularity.ts +++ b/typescript/src/models/UsageSummaryGranularity.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UserCredentials.ts b/typescript/src/models/UserCredentials.ts index 3a8b5b0d..66697de0 100644 --- a/typescript/src/models/UserCredentials.ts +++ b/typescript/src/models/UserCredentials.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UserInfo.ts b/typescript/src/models/UserInfo.ts index 331bbf40..1461dd49 100644 --- a/typescript/src/models/UserInfo.ts +++ b/typescript/src/models/UserInfo.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UserRegistration.ts b/typescript/src/models/UserRegistration.ts index a3855f18..1c28e304 100644 --- a/typescript/src/models/UserRegistration.ts +++ b/typescript/src/models/UserRegistration.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/UserSession.ts b/typescript/src/models/UserSession.ts index e2294199..329ff59a 100644 --- a/typescript/src/models/UserSession.ts +++ b/typescript/src/models/UserSession.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/VectorColumnInfo.ts b/typescript/src/models/VectorColumnInfo.ts index 40702b8a..4ba165f5 100644 --- a/typescript/src/models/VectorColumnInfo.ts +++ b/typescript/src/models/VectorColumnInfo.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/VectorDataType.ts b/typescript/src/models/VectorDataType.ts index eb5d1254..2d118901 100644 --- a/typescript/src/models/VectorDataType.ts +++ b/typescript/src/models/VectorDataType.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/VectorQueryRectangle.ts b/typescript/src/models/VectorQueryRectangle.ts index 96aaf93c..b8401817 100644 --- a/typescript/src/models/VectorQueryRectangle.ts +++ b/typescript/src/models/VectorQueryRectangle.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/VectorResultDescriptor.ts b/typescript/src/models/VectorResultDescriptor.ts index a090a73c..e47063c7 100644 --- a/typescript/src/models/VectorResultDescriptor.ts +++ b/typescript/src/models/VectorResultDescriptor.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Volume.ts b/typescript/src/models/Volume.ts index d550f81c..57d80047 100644 --- a/typescript/src/models/Volume.ts +++ b/typescript/src/models/Volume.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/VolumeFileLayersResponse.ts b/typescript/src/models/VolumeFileLayersResponse.ts index 782b8851..28aa2f87 100644 --- a/typescript/src/models/VolumeFileLayersResponse.ts +++ b/typescript/src/models/VolumeFileLayersResponse.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WcsBoundingbox.ts b/typescript/src/models/WcsBoundingbox.ts index 8ca1ca21..6f99dfaf 100644 --- a/typescript/src/models/WcsBoundingbox.ts +++ b/typescript/src/models/WcsBoundingbox.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WcsService.ts b/typescript/src/models/WcsService.ts index cdabd81f..89bdd256 100644 --- a/typescript/src/models/WcsService.ts +++ b/typescript/src/models/WcsService.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WcsVersion.ts b/typescript/src/models/WcsVersion.ts index 0d6bf36d..43385ced 100644 --- a/typescript/src/models/WcsVersion.ts +++ b/typescript/src/models/WcsVersion.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WfsService.ts b/typescript/src/models/WfsService.ts index 77e3ae93..2af42b47 100644 --- a/typescript/src/models/WfsService.ts +++ b/typescript/src/models/WfsService.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WfsVersion.ts b/typescript/src/models/WfsVersion.ts index 1a7b37ac..acc8f82e 100644 --- a/typescript/src/models/WfsVersion.ts +++ b/typescript/src/models/WfsVersion.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WmsService.ts b/typescript/src/models/WmsService.ts index 1f0c012e..b34355f5 100644 --- a/typescript/src/models/WmsService.ts +++ b/typescript/src/models/WmsService.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WmsVersion.ts b/typescript/src/models/WmsVersion.ts index 49d14824..cf7c526d 100644 --- a/typescript/src/models/WmsVersion.ts +++ b/typescript/src/models/WmsVersion.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/Workflow.ts b/typescript/src/models/Workflow.ts index e2cc8702..cb7468c0 100644 --- a/typescript/src/models/Workflow.ts +++ b/typescript/src/models/Workflow.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/models/WrappedPlotOutput.ts b/typescript/src/models/WrappedPlotOutput.ts index 27ab1d00..90e045d3 100644 --- a/typescript/src/models/WrappedPlotOutput.ts +++ b/typescript/src/models/WrappedPlotOutput.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0 diff --git a/typescript/src/runtime.ts b/typescript/src/runtime.ts index d3e4da16..0b9a523b 100644 --- a/typescript/src/runtime.ts +++ b/typescript/src/runtime.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ /** - * Geo Engine Pro API + * Geo Engine API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.8.0