-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade OpenAPI generator to v7.9.0 (was v7.8.0)
- Loading branch information
1 parent
e5ff99a
commit 4046307
Showing
15 changed files
with
58 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
16502193337397367078434a27f67edfc6410f4c06d12db876155885d6a49394 ./README.mustache | ||
9866a9e83531d72f155a0fdea252cfe5d340deea3d6e2da7eb64c941dc88577a ./libraries/okhttp-gson/ApiClient.mustache | ||
1cf200f8d6f6a64eb2f0d88169691b5702dc944e801c615d02db33daee46c55c ./libraries/okhttp-gson/api.mustache | ||
7db4829dd39d1e769cfe38a07e976684f71e5db4077030ea1b423703958da223 ./libraries/okhttp-gson/api.mustache | ||
0e77feaf2d6b0818194161ac7e621189aa6e7900b45d46fa4ff1232894bb1a7a ./libraries/okhttp-gson/oneof_model.mustache | ||
f20b6129f3b473ecaa4e39f760bb1028d6c1f832928fa2f460131e2c54d66ed0 ./libraries/okhttp-gson/pojo.mustache | ||
5866ce4047537e9b5d1038155599b8bad2f13a523ff5710ec29f16c6122ac7d7 ./libraries/okhttp-gson/pom.mustache | ||
2f63581598dd2ba1373a51c0c3dfbcfa2a43d25f278a048c04c6679ef03f1224 ./libraries/okhttp-gson/pom.mustache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
bb92a3f3107664c296ebc45c75bff7c88abf8b765565f4656a05e24234cb6d67 ./Configuration.mustache | ||
270c3ec9312d3cb2c5317a1df29ffb5365ff8624f1d165a1e9e356b4ea57a7f3 ./ObjectSerializer.mustache | ||
76386901de81eba7d06fa8be77fc23e319bf7deb904cce3eea7edab7bdfb55ad ./ObjectSerializer.mustache | ||
8eebaed003795c011df87fecd1f89c630dd3f23282d80e7f407f62009e2cd0ee ./README.mustache | ||
2d94750ad5d913f8b7fbba24681c7cc1d75e96c89ec46c379e6625c825b39020 ./model_generic.mustache | ||
37d3333c7c3dbc6f6bffe64ce076bc512a2a1e61e986738c8e023bb745168e9a ./phpunit.xml.mustache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,40 +5,40 @@ description = "Python library for the Onfido API" {{! customized | |
authors = ["OpenAPI Generator Community <{{infoEmail}}{{^infoEmail}}[email protected]{{/infoEmail}}>"] {{! removed infoName field since wronlgy set }} | ||
license = "{{{licenseInfo}}}{{^licenseInfo}}NoLicense{{/licenseInfo}}" | ||
readme = "README.md" | ||
repository = "https://github.com/{{{gitUserId}}}/{{{gitRepoId}}}" | ||
repository = "https://{{{gitHost}}}/{{{gitUserId}}}/{{{gitRepoId}}}" | ||
keywords = ["OpenAPI", "OpenAPI-Generator", "onfido", "identity"] {{! cutomized keywords }} | ||
include = ["{{packageName}}/py.typed"] | ||
packages = [{ include = "{{{packageName}}}" }] | ||
|
||
{{! Added section }} | ||
[tool.poetry.urls] | ||
"Onfido API documentation" = "{{ documentationUrl }}" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = "^3.8" | ||
|
||
urllib3 = ">= 1.25.3" | ||
python-dateutil = ">=2.8.2" | ||
urllib3 = ">= 1.25.3 < 3.0.0" | ||
python-dateutil = ">= 2.8.2" | ||
{{#asyncio}} | ||
aiohttp = ">= 3.8.4" | ||
aiohttp-retry = ">= 2.8.3" | ||
{{/asyncio}} | ||
{{#tornado}} | ||
tornado = ">=4.2,<5" | ||
tornado = ">=4.2 <5" | ||
{{/tornado}} | ||
{{#hasHttpSignatureMethods}} | ||
pem = ">= 19.3.0" | ||
pycryptodome = ">= 3.9.0" | ||
{{/hasHttpSignatureMethods}} | ||
pydantic = ">=2" | ||
typing-extensions = ">=4.7.1" | ||
pydantic = ">= 2" | ||
typing-extensions = ">= 4.7.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = ">=7.2.1" | ||
tox = ">=3.9.0" | ||
flake8 = ">=4.0.0" | ||
types-python-dateutil = ">=2.8.19.14" | ||
mypy = "1.4.1" | ||
pytest = ">= 7.2.1" | ||
pytest-cov = ">= 2.8.1" | ||
tox = ">= 3.9.0" | ||
flake8 = ">= 4.0.0" | ||
types-python-dateutil = ">= 2.8.19.14" | ||
mypy = ">= 1.5" | ||
|
||
|
||
[build-system] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
631eea1aeb59eff826cd4975334d66bdf7ad14d3feacdf35ed5b07f33548981e ./Gemfile.mustache | ||
88dc22838f416232553b387453a2ebecf01d66508d8657d5313320cc03ceb6a2 ./README.mustache | ||
0770a6caea12e1d33baf4eafc3bbbf5ec4325be84c776b64f966956c3e4e68eb ./configuration.mustache | ||
0394740e8dc344748f61724a7fb304c23daf1e66922efa995c195968a0919ef4 ./README.mustache | ||
8d952d2c3d4d49e0811a470b7e5e8c7c8dc798cf2f32e69d4501fc26be91a29a ./configuration.mustache | ||
e66f0139c35c8b1d88c19787b2379ee9e6857ced963624c9a945ee68f3b41b2f ./gemspec.mustache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters