Skip to content

Commit 57d8a6a

Browse files
committed
Use latest generator to add __all__ variable and version at 1.5.0
1 parent ae7a6af commit 57d8a6a

File tree

117 files changed

+368
-238
lines changed

Some content is hidden

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

117 files changed

+368
-238
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.12.0
1+
7.14.0

docs/TransactionResponseData.md

Lines changed: 1 addition & 0 deletions

open_api_spec.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ info:
66
upon HTTPS for transport. We respond with meaningful HTTP response codes and
77
if an error occurs, we include error details in the response body. API
88
Documentation is at https://api.ynab.com
9-
version: 1.74.0
9+
version: 1.75.0
1010
servers:
1111
- url: https://api.ynab.com/v1
1212
security:
@@ -2715,10 +2715,15 @@ components:
27152715
data:
27162716
required:
27172717
- transaction
2718+
- server_knowledge
27182719
type: object
27192720
properties:
27202721
transaction:
27212722
$ref: "#/components/schemas/TransactionDetail"
2723+
server_knowledge:
2724+
type: integer
2725+
description: The knowledge of the server
2726+
format: int64
27222727
TransactionSummary:
27232728
required:
27242729
- account_id

openapi-generator-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
packageName: ynab
2-
packageVersion: 1.4.0
2+
packageVersion: 1.5.0
33
packageDescription: Official Python client for the YNAB API. API documentation available at https://api.ynab.com.
44
licenseInfo:
55
name: Apache-2.0

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "ynab"
3-
version = "1.4.0"
4-
description = "Official Python client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.74.0"
3+
version = "1.5.0"
4+
description = "Official Python client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.75.0"
55
authors = ["YNAB"]
66
license = "Apache-2.0"
77
readme = "README.md"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
urllib3 >= 1.25.3, < 3.0.0
1+
urllib3 >= 2.1.0, < 3.0.0
22
python_dateutil >= 2.8.2
33
pydantic >= 2
44
typing-extensions >= 4.7.1

ynab/__init__.py

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

ynab/api/accounts_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com
77
8-
The version of the OpenAPI document: 1.74.0
8+
The version of the OpenAPI document: 1.75.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

ynab/api/budgets_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com
77
8-
The version of the OpenAPI document: 1.74.0
8+
The version of the OpenAPI document: 1.75.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

ynab/api/categories_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com
77
8-
The version of the OpenAPI document: 1.74.0
8+
The version of the OpenAPI document: 1.75.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)