Skip to content

Commit afb0203

Browse files
committed
Build against OAS 2.4.0
ACCOUNTING
 Add specs for the Organisation endpoint subresource Action
Add two components Actions and Action
BatchPaymentDetails remove max length from Details property Adding History for Manual Journals Rename two problem currencies to TRY_LIRA and EMPTY_CURRENCY AU PAYROLL
 Add Timesheet Status enum REJECTED and REQUESTED NZ PAYROLL fix casing on tag for PayrollNZ …should be PayrollNz Merge PR changes #28
1 parent 0921c8a commit afb0203

File tree

343 files changed

+1094
-482
lines changed

Some content is hidden

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

343 files changed

+1094
-482
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.0.12",
51+
version="1.0.13",
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.0.12"
5+
__version__ = "1.0.13"

xero_python/accounting/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
99
10-
OpenAPI spec version: 2.3.4
10+
OpenAPI spec version: 2.4.0
1111
1212
Generated by: https://openapi-generator.tech
1313
"""
@@ -23,6 +23,8 @@
2323
from xero_python.accounting.models.accounts import Accounts
2424
from xero_python.accounting.models.accounts_payable import AccountsPayable
2525
from xero_python.accounting.models.accounts_receivable import AccountsReceivable
26+
from xero_python.accounting.models.action import Action
27+
from xero_python.accounting.models.actions import Actions
2628
from xero_python.accounting.models.address import Address
2729
from xero_python.accounting.models.allocation import Allocation
2830
from xero_python.accounting.models.allocations import Allocations

xero_python/accounting/api/accounting_api.py

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

xero_python/accounting/docs/AccountingApi.md

Lines changed: 303 additions & 111 deletions
Large diffs are not rendered by default.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Action
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **str** | Name of the actions for this organisation | [optional]
7+
**status** | **str** | Status of the action for this organisation | [optional]
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Actions
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**actions** | [**list[Action]**](Action.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/ExpenseClaim.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
1414
**amount_paid** | **float** | The amount still to pay for an expense claim | [optional]
1515
**payment_due_date** | **date** | The date when the expense claim is due to be paid YYYY-MM-DD | [optional]
1616
**reporting_date** | **date** | The date the expense claim will be reported in Xero YYYY-MM-DD | [optional]
17-
**receipt_id** | **str** | The Xero identifier for the Receipt e.g. e59a2c7f-1306-4078-a0f3-73537afcbba9 | [optional]
17+
**receipt_id** | **str** | The Xero identifier for the Receipt e.g. e59a2c7f-1306-4078-a0f3-73537afcbba9 | [optional]
1818

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

xero_python/accounting/models/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
88
9-
OpenAPI spec version: 2.3.4
9+
OpenAPI spec version: 2.4.0
1010
1111
Generated by: https://openapi-generator.tech
1212
"""
@@ -18,6 +18,8 @@
1818
from xero_python.accounting.models.accounts import Accounts
1919
from xero_python.accounting.models.accounts_payable import AccountsPayable
2020
from xero_python.accounting.models.accounts_receivable import AccountsReceivable
21+
from xero_python.accounting.models.action import Action
22+
from xero_python.accounting.models.actions import Actions
2123
from xero_python.accounting.models.address import Address
2224
from xero_python.accounting.models.allocation import Allocation
2325
from xero_python.accounting.models.allocations import Allocations

xero_python/accounting/models/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
OpenAPI spec version: 2.3.4
8+
OpenAPI spec version: 2.4.0
99
1010
Generated by: https://openapi-generator.tech
1111
"""

0 commit comments

Comments
 (0)