Skip to content

Commit 4ac8b2d

Browse files
authored
Merge pull request #37 from XeroAPI/sid-development
Build from OAS 2.9.3
2 parents dbc790a + 7ed345c commit 4ac8b2d

File tree

268 files changed

+2407
-2271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+2407
-2271
lines changed

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.3.0",
51+
version="1.4.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.3.0"
5+
__version__ = "1.4.0"

xero_python/accounting/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# flake8: noqa
44

55
"""
6-
Accounting API
6+
Xero Accounting API
77
88
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
99
@@ -45,6 +45,7 @@
4545
from xero_python.accounting.models.branding_theme import BrandingTheme
4646
from xero_python.accounting.models.branding_themes import BrandingThemes
4747
from xero_python.accounting.models.cis_org_setting import CISOrgSetting
48+
from xero_python.accounting.models.cis_org_settings import CISOrgSettings
4849
from xero_python.accounting.models.cis_setting import CISSetting
4950
from xero_python.accounting.models.cis_settings import CISSettings
5051
from xero_python.accounting.models.contact import Contact

xero_python/accounting/api/accounting_api.py

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

xero_python/accounting/docs/AccountingApi.md

Lines changed: 861 additions & 861 deletions
Large diffs are not rendered by default.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CISOrgSettings
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**cis_settings** | [**list[CISOrgSetting]**](CISOrgSetting.md) | | [optional]
7+
8+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+

xero_python/accounting/docs/CreditNote.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Name | Type | Description | Notes
3232
**has_attachments** | **bool** | boolean to indicate if a credit note has an attachment | [optional] [default to False]
3333
**has_errors** | **bool** | A boolean to indicate if a credit note has an validation errors | [optional] [default to False]
3434
**validation_errors** | [**list[ValidationError]**](ValidationError.md) | Displays array of validation error messages from the API | [optional]
35+
**warnings** | [**list[ValidationError]**](ValidationError.md) | Displays array of warning messages from the API | [optional]
3536

3637
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3738

xero_python/accounting/docs/Payment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**payment_type** | **str** | See Payment Types. | [optional]
2121
**updated_date_utc** | **datetime** | UTC timestamp of last update to the payment | [optional]
2222
**payment_id** | **str** | The Xero identifier for an Payment e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9 | [optional]
23+
**batch_payment_id** | **str** | Present if the payment was created as part of a batch. | [optional]
2324
**bank_account_number** | **str** | The suppliers bank account number the payment is being made to | [optional]
2425
**particulars** | **str** | The suppliers bank account number the payment is being made to | [optional]
2526
**details** | **str** | The information to appear on the supplier's bank account | [optional]

xero_python/accounting/models/__init__.py

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

33
# flake8: noqa
44
"""
5-
Accounting API
5+
Xero Accounting API
66
77
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
88
@@ -40,6 +40,7 @@
4040
from xero_python.accounting.models.branding_theme import BrandingTheme
4141
from xero_python.accounting.models.branding_themes import BrandingThemes
4242
from xero_python.accounting.models.cis_org_setting import CISOrgSetting
43+
from xero_python.accounting.models.cis_org_settings import CISOrgSettings
4344
from xero_python.accounting.models.cis_setting import CISSetting
4445
from xero_python.accounting.models.cis_settings import CISSettings
4546
from xero_python.accounting.models.contact import Contact

xero_python/accounting/models/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Accounting API
4+
Xero Accounting API
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

0 commit comments

Comments
 (0)