-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update test_usage_api.py (#9) * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle date from test_get_billing_cycles (#10) * Removed log function from test base * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle from test_get_billing_cycles * Merging changes to testing test workflows (#12) * Update test_usage_api.py * Sync dev with main (#11) * Update test_usage_api.py (#9) * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle date from test_get_billing_cycles (#10) * Removed log function from test base * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle from test_get_billing_cycles --------- Co-authored-by: santhosh-uc <[email protected]> * Update test_party_analytics_api.py --------- Co-authored-by: santhosh-uc <[email protected]> * New SDK changes (#13) * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge (#14) * Change to run test * Change to run test (#15) * Adding statement to echo secrets * Update run_sdk_test.yml * Update run_sdk_test.yml * Updated test workflow * Adding statement to echo secrets in GitHub action workflow (#16) * Change to run test * Adding statement to echo secrets * Update run_sdk_test.yml * Update run_sdk_test.yml * Updated test workflow * Dev to master (#18) * Update test_usage_api.py * Sync dev with main (#11) * Update test_usage_api.py (#9) * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle date from test_get_billing_cycles (#10) * Removed log function from test base * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle from test_get_billing_cycles --------- Co-authored-by: santhosh-uc <[email protected]> * Update test_party_analytics_api.py * New SDK changes (#17) * Update test_usage_api.py (#9) * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle date from test_get_billing_cycles (#10) * Removed log function from test base * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle from test_get_billing_cycles * Merging changes to testing test workflows (#12) * Update test_usage_api.py * Sync dev with main (#11) * Update test_usage_api.py (#9) * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle date from test_get_billing_cycles (#10) * Removed log function from test base * Updated test_get_billing_usage_by_billing_cycle to fetch billing cycle from test_get_billing_cycles --------- Co-authored-by: santhosh-uc <[email protected]> * Update test_party_analytics_api.py --------- Co-authored-by: santhosh-uc <[email protected]> * New SDK changes (#13) * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge * Initial merge (#14) * Change to run test * Change to run test (#15) * Adding statement to echo secrets * Update run_sdk_test.yml * Update run_sdk_test.yml * Updated test workflow * Adding statement to echo secrets in GitHub action workflow (#16) * Change to run test * Adding statement to echo secrets * Update run_sdk_test.yml * Update run_sdk_test.yml * Updated test workflow * Initial merge --------- Co-authored-by: pshenoy-uc <[email protected]> Co-authored-by: santhosh-uc <[email protected]> --------- Co-authored-by: santhosh-uc <[email protected]> Co-authored-by: Snehal Sakhardande <[email protected]> * Initial merge * Initial merge --------- Co-authored-by: pshenoy-uc <[email protected]> Co-authored-by: santhosh-uc <[email protected]>
- Loading branch information
1 parent
f05014a
commit 61a0a71
Showing
334 changed files
with
102,219 additions
and
112,272 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
SDK Release Note | ||
----------------- | ||
* SDK upgrade from current version 1.0.1 to new version 1.1.0 | ||
* Supports OAS 3.1 standards | ||
* JSON schema validation of request and response objects | ||
* SDK objects are python objects so can be pickled and unpickled | ||
* Supports python version >= 3.7 |
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
[tool.poetry] | ||
name = "unicourt" | ||
version = "1.1.0" | ||
description = "UniCourt Enterprise APIs" | ||
authors = ["OpenAPI Generator Community <[email protected]>"] | ||
license = "NoLicense" | ||
readme = "README.md" | ||
repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" | ||
keywords = ["OpenAPI", "OpenAPI-Generator", "UniCourt Enterprise APIs"] | ||
include = ["unicourt/py.typed"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
|
||
urllib3 = ">= 1.25.3" | ||
python-dateutil = ">=2.8.2" | ||
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" | ||
|
||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.pylint.'MESSAGES CONTROL'] | ||
extension-pkg-whitelist = "pydantic" | ||
|
||
[tool.mypy] | ||
files = [ | ||
"unicourt", | ||
#"test", # auto-generated tests | ||
"tests", # hand-written tests | ||
] | ||
# TODO: enable "strict" once all these individual checks are passing | ||
# strict = true | ||
|
||
# List from: https://mypy.readthedocs.io/en/stable/existing_code.html#introduce-stricter-options | ||
warn_unused_configs = true | ||
warn_redundant_casts = true | ||
warn_unused_ignores = true | ||
|
||
## Getting these passing should be easy | ||
strict_equality = true | ||
strict_concatenate = true | ||
|
||
## Strongly recommend enabling this one as soon as you can | ||
check_untyped_defs = true | ||
|
||
## These shouldn't be too much additional work, but may be tricky to | ||
## get passing if you use a lot of untyped libraries | ||
disallow_subclassing_any = true | ||
disallow_untyped_decorators = true | ||
disallow_any_generics = true | ||
|
||
### These next few are various gradations of forcing use of type annotations | ||
#disallow_untyped_calls = true | ||
#disallow_incomplete_defs = true | ||
#disallow_untyped_defs = true | ||
# | ||
### This one isn't too hard to get passing, but return on investment is lower | ||
#no_implicit_reexport = true | ||
# | ||
### This one can be tricky to get passing if you use a lot of untyped libraries | ||
#warn_return_any = true |
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,3 +1,5 @@ | ||
python_dateutil >= 2.5.3 | ||
setuptools >= 21.0.0 | ||
urllib3 >= 1.25.3 | ||
urllib3 >= 1.25.3, < 2.1.0 | ||
pydantic >= 2 | ||
typing-extensions >= 4.7.1 |
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
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
|
||
|
||
class TestAuthentication: | ||
|
||
def test_list_all_token_ids(): | ||
return Authentication.list_all_token_ids() | ||
|
||
|
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
Oops, something went wrong.