-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DE-766 Bug fix: listEvents endpoint deserialisation problem
- Loading branch information
1 parent
94412f2
commit c946062
Showing
5 changed files
with
60 additions
and
54 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
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 |
---|---|---|
|
@@ -4,13 +4,13 @@ requires = ["setuptools>=61.0"] | |
[project] | ||
name = "maxio-advanced-billing-sdk" | ||
description = "Ultimate billing and pricing flexibility for B2B SaaS.\nMaxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments." | ||
version = "1.0.1" | ||
version = "2.0.0" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
keywords = ["Maxio", "Advaced Billing", "Payments", "Subscription"] | ||
authors = [{name = "Maxio SDK", email = "[email protected]"}] | ||
urls = {Homepage = "https://www.maxio.com/product/advanced-billing"} | ||
dependencies = ["apimatic-core~=0.2.0", "apimatic-core-interfaces~=0.1.0", "apimatic-requests-client-adapter~=0.1.0", "python-dateutil~=2.8.1", "enum34~=1.1, >=1.1.10", "deprecation~=2.1", "jsonschema~=3.2.0"] | ||
dependencies = ["apimatic-core~=0.2.0", "apimatic-core-interfaces~=0.1.0", "apimatic-requests-client-adapter~=0.1.0", "enum34~=1.1, >=1.1.10", "deprecation~=2.1", "python-dateutil~=2.8.1", "jsonschema~=3.2.0"] | ||
classifiers = [] | ||
[project.optional-dependencies] | ||
testutils = ["pytest>=7.2.2"] | ||
|