Skip to content

Commit c9b92d8

Browse files
committed
generates xero-python 1.13.1 from OAS 2.19.3
1 parent 66856a7 commit c9b92d8

File tree

23 files changed

+43
-41
lines changed

23 files changed

+43
-41
lines changed

docs/v1/accounting/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3931,7 +3931,7 @@
39313931
"OrganisationType" : {
39323932
"type" : "string",
39333933
"description" : "Organisation Type",
3934-
"enum" : [ "ACCOUNTING_PRACTICE", "COMPANY", "CHARITY", "CLUB_OR_SOCIETY", "LOOK_THROUGH_COMPANY", "NOT_FOR_PROFIT", "PARTNERSHIP", "S_CORPORATION", "SELF_MANAGED_SUPERANNUATION_FUND", "SOLE_TRADER", "SUPERANNUATION_FUND", "TRUST" ]
3934+
"enum" : [ "ACCOUNTING_PRACTICE", "COMPANY", "CHARITY", "CLUB_OR_SOCIETY", "INDIVIDUAL", "LOOK_THROUGH_COMPANY", "NOT_FOR_PROFIT", "PARTNERSHIP", "S_CORPORATION", "SELF_MANAGED_SUPERANNUATION_FUND", "SOLE_TRADER", "SUPERANNUATION_FUND", "TRUST" ]
39353935
},
39363936
"BaseCurrency" : {
39373937
"$ref" : "#/components/schemas/CurrencyCode"
@@ -4008,7 +4008,7 @@
40084008
"OrganisationEntityType" : {
40094009
"type" : "string",
40104010
"description" : "Organisation Entity Type",
4011-
"enum" : [ "ACCOUNTING_PRACTICE", "COMPANY", "CHARITY", "CLUB_OR_SOCIETY", "LOOK_THROUGH_COMPANY", "NOT_FOR_PROFIT", "PARTNERSHIP", "S_CORPORATION", "SELF_MANAGED_SUPERANNUATION_FUND", "SOLE_TRADER", "SUPERANNUATION_FUND", "TRUST" ]
4011+
"enum" : [ "ACCOUNTING_PRACTICE", "COMPANY", "CHARITY", "CLUB_OR_SOCIETY", "INDIVIDUAL", "LOOK_THROUGH_COMPANY", "NOT_FOR_PROFIT", "PARTNERSHIP", "S_CORPORATION", "SELF_MANAGED_SUPERANNUATION_FUND", "SOLE_TRADER", "SUPERANNUATION_FUND", "TRUST" ]
40124012
},
40134013
"ShortCode" : {
40144014
"type" : "string",
@@ -6000,7 +6000,7 @@
60006000
<nav id="scrollingNav">
60016001
<ul class="sidenav nav nav-list">
60026002
<li class="nav-header" data-group="Accounting"><strong>SDK: </strong><span id='sdk-name'></span></li>
6003-
<li class="nav-header" data-group="Accounting"><strong>VSN: </strong>1.13.0</li>
6003+
<li class="nav-header" data-group="Accounting"><strong>VSN: </strong>1.13.1</li>
60046004
<li class="nav-header" data-group="Accounting"><a href="#api-Accounting">Methods</a></li>
60056005
<li data-group="Accounting" data-name="createAccount" class="">
60066006
<a href="#api-Accounting-createAccount">createAccount</a>

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.13.0",
51+
version="1.13.1",
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.13.0"
5+
__version__ = "1.13.1"

xero_python/accounting/api/accounting_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
"""
13-
OpenAPI spec version: 2.19.1
13+
OpenAPI spec version: 2.19.3
1414
"""
1515

1616
import importlib

xero_python/accounting/models/organisation.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ def organisation_type(self, organisation_type):
425425
"COMPANY",
426426
"CHARITY",
427427
"CLUB_OR_SOCIETY",
428+
"INDIVIDUAL",
428429
"LOOK_THROUGH_COMPANY",
429430
"NOT_FOR_PROFIT",
430431
"PARTNERSHIP",
@@ -901,6 +902,7 @@ def organisation_entity_type(self, organisation_entity_type):
901902
"COMPANY",
902903
"CHARITY",
903904
"CLUB_OR_SOCIETY",
905+
"INDIVIDUAL",
904906
"LOOK_THROUGH_COMPANY",
905907
"NOT_FOR_PROFIT",
906908
"PARTNERSHIP",

xero_python/appstore/api/app_store_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
"""
13-
OpenAPI spec version: 2.19.1
13+
OpenAPI spec version: 2.19.3
1414
"""
1515

1616
import importlib

xero_python/assets/api/asset_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
"""
13-
OpenAPI spec version: 2.19.1
13+
OpenAPI spec version: 2.19.3
1414
"""
1515

1616
import importlib

xero_python/docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ These endpoints are related to managing authentication tokens and identity for X
33

44
The `xero_python` package is automatically generated by the [XeroAPI SDK 2.0 Codegen](https://github.com/xero-github/xeroapi-sdk-codegen) project:
55

6-
- API version: 2.19.1
7-
- Package version: 1.13.0
6+
- API version: 2.19.3
7+
- Package version: 1.13.1
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://developer.xero.com](https://developer.xero.com)
1010

xero_python/file/api/files_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
"""
13-
OpenAPI spec version: 2.19.1
13+
OpenAPI spec version: 2.19.3
1414
"""
1515

1616
import importlib

xero_python/finance/api/finance_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
"""
13-
OpenAPI spec version: 2.19.1
13+
OpenAPI spec version: 2.19.3
1414
"""
1515

1616
import importlib

0 commit comments

Comments
 (0)