Skip to content

Commit

Permalink
increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
1lutz committed Aug 30, 2024
1 parent 25ccfec commit 380b71f
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 31 deletions.
6 changes: 3 additions & 3 deletions .generation/config.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[input]
backendTag = pro-nightly-2024-08-23
backendTag = pro-nightly-2024-08-31

[general]
githubUrl = https://github.com/geo-engine/openapi-client

[python]
name = geoengine_openapi_client
version = 0.0.11
version = 0.0.12

[typescript]
name = @geoengine/openapi-client
version = 0.0.11
version = 0.0.12

32 changes: 16 additions & 16 deletions .generation/input/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
"Admin tried to create dataset from an upload": {
"value": {
"error": "AdminsCannotCreateDatasetFromUpload",
"message": "AdminsCannotCreateDatasetFromUpload"
"message": "Admins cannot create dataset from upload"
}
},
"Body is invalid json": {
Expand All @@ -219,7 +219,7 @@
"Normal user tried to create dataset from a volume": {
"value": {
"error": "OnlyAdminsCanCreateDatasetFromVolume",
"message": "OnlyAdminsCanCreateDatasetFromVolume"
"message": "Only admins can create dataset from volume"
}
},
"Referenced an unknown upload": {
Expand All @@ -231,7 +231,7 @@
"Referenced an unknown volume": {
"value": {
"error": "UnknownVolume",
"message": "UnknownVolume"
"message": "Unknown volume"
}
}
}
Expand Down Expand Up @@ -318,13 +318,13 @@
"Dataset has no auto-importable layer": {
"value": {
"error": "DatasetHasNoAutoImportableLayer",
"message": "DatasetHasNoAutoImportableLayer"
"message": "Dataset has no auto importable layer"
}
},
"Dataset name is empty": {
"value": {
"error": "InvalidDatasetName",
"message": "InvalidDatasetName"
"message": "Invalid dataset name"
}
},
"Failed to read body": {
Expand All @@ -335,20 +335,20 @@
},
"File does not exist": {
"value": {
"error": "Operator",
"message": "Operator: GdalError: GDAL method 'GDALOpenEx' returned a NULL pointer. Error msg: 'upload/0bdd1062-7796-4d44-a655-e548144281a6/asdf: No such file or directory'"
"error": "GdalError",
"message": "GdalError: GDAL method 'GDALOpenEx' returned a NULL pointer. Error msg: 'upload/0bdd1062-7796-4d44-a655-e548144281a6/asdf: No such file or directory'"
}
},
"Referenced an unknown upload": {
"value": {
"error": "UnknownUploadId",
"message": "UnknownUploadId"
"message": "Unknown upload id"
}
},
"Upload filename is invalid": {
"value": {
"error": "InvalidUploadFileName",
"message": "InvalidUploadFileName"
"message": "Invalid upload file name"
}
}
}
Expand Down Expand Up @@ -450,13 +450,13 @@
"Dataset has no auto-importable layer": {
"value": {
"error": "DatasetHasNoAutoImportableLayer",
"message": "DatasetHasNoAutoImportableLayer"
"message": "Dataset has no auto importable layer"
}
},
"File does not exist": {
"value": {
"error": "Operator",
"message": "Operator: GdalError: GDAL method 'GDALOpenEx' returned a NULL pointer. Error msg: 'upload/0bdd1062-7796-4d44-a655-e548144281a6/asdf: No such file or directory'"
"error": "GdalError",
"message": "GdalError: GDAL method 'GDALOpenEx' returned a NULL pointer. Error msg: 'upload/0bdd1062-7796-4d44-a655-e548144281a6/asdf: No such file or directory'"
}
},
"Missing field in query string": {
Expand All @@ -468,7 +468,7 @@
"No suitable mainfile found": {
"value": {
"error": "NoMainFileCandidateFound",
"message": "NoMainFileCandidateFound"
"message": "No main file candidate found"
}
},
"Number in query string contains letters": {
Expand All @@ -480,7 +480,7 @@
"Referenced an unknown upload": {
"value": {
"error": "UnknownUploadId",
"message": "UnknownUploadId"
"message": "Unknown upload id"
}
}
}
Expand Down Expand Up @@ -699,13 +699,13 @@
"Given dataset can only be deleted by owner": {
"value": {
"error": "OperationRequiresOwnerPermission",
"message": "OperationRequiresOwnerPermission"
"message": "Operation requires owner permission"
}
},
"Referenced an unknown dataset": {
"value": {
"error": "UnknownDatasetName",
"message": "UnknownDatasetName"
"message": "Unknown dataset name"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.8.0
- Package version: 0.0.11
- Package version: 0.0.12
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "0.0.11"
__version__ = "0.0.12"

# import apis into sdk package
from geoengine_openapi_client.api.datasets_api import DatasetsApi
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'geoengine/openapi-client/python/0.0.11'
self.user_agent = 'geoengine/openapi-client/python/0.0.12'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.8.0\n"\
"SDK Package Version: 0.0.11".\
"SDK Package Version: 0.0.12".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geoengine_openapi_client"
version = "0.0.11"
version = "0.0.12"
description = "Geo Engine Pro API"
authors = ["Geo Engine Developers <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "geoengine-openapi-client"
VERSION = "0.0.11"
VERSION = "0.0.12"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down
4 changes: 2 additions & 2 deletions typescript/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## @geoengine/openapi-client@0.0.11
## @geoengine/openapi-client@0.0.12

This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:

Expand Down Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @geoengine/[email protected].11 --save
npm install @geoengine/[email protected].12 --save
```

_unPublished (not recommended):_
Expand Down
2 changes: 1 addition & 1 deletion typescript/dist/esm/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Configuration {
}
export const DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.11'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.12'
}
});
/**
Expand Down
2 changes: 1 addition & 1 deletion typescript/dist/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Configuration {
exports.Configuration = Configuration;
exports.DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.11'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.12'
}
});
/**
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@geoengine/openapi-client",
"version": "0.0.11",
"version": "0.0.12",
"description": "OpenAPI client for @geoengine/openapi-client",
"author": "OpenAPI-Generator",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class Configuration {

export const DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.11'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.12'
}
});

Expand Down

0 comments on commit 380b71f

Please sign in to comment.