Skip to content

Commit d243195

Browse files
authored
Merge pull request #54 from XeroAPI/add_budgets_fix_reports_and_update_from_spec
Reports / Budgets / Spec updates
2 parents 22c322c + 7bd2030 commit d243195

32 files changed

+1772
-601
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,4 @@ xeroapi-sdk-codegen/
113113
# test specific configuration files
114114
/tests/oauth2_client.py
115115
/tests/oauth2_token.py
116+
.build_notes.md

docs/v1/accounting/index.html

Lines changed: 650 additions & 269 deletions
Large diffs are not rendered by default.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ def read_file(filename):
4848
keywords="xero python sdk API oAuth",
4949
name="xero_python",
5050
packages=find_packages(include=["xero_python", "xero_python.*"]),
51-
version="1.6.0",
51+
version="1.7.0",
5252
)

xero_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Xero Developer API"""
44
__email__ = "[email protected]"
5-
__version__ = "1.6.0"
5+
__version__ = "1.7.0"

xero_python/accounting/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
from xero_python.accounting.models.bill import Bill
4545
from xero_python.accounting.models.branding_theme import BrandingTheme
4646
from xero_python.accounting.models.branding_themes import BrandingThemes
47+
from xero_python.accounting.models.budget import Budget
48+
from xero_python.accounting.models.budget_lines import BudgetLines
49+
from xero_python.accounting.models.budgets import Budgets
4750
from xero_python.accounting.models.cis_org_setting import CISOrgSetting
4851
from xero_python.accounting.models.cis_org_settings import CISOrgSettings
4952
from xero_python.accounting.models.cis_setting import CISSetting

0 commit comments

Comments
 (0)