Skip to content

Commit 83de2d1

Browse files
committed
Generate against v1.76
1 parent eaf10aa commit 83de2d1

File tree

115 files changed

+136
-121
lines changed

Some content is hidden

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

115 files changed

+136
-121
lines changed

docs/Category.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Name | Type | Description | Notes
2828
**goal_under_funded** | **int** | The amount of funding still needed in the current month to stay on track towards completing the goal within the current goal period. This amount will generally correspond to the 'Underfunded' amount in the web and mobile clients except when viewing a category with a Needed for Spending Goal in a future month. The web and mobile clients will ignore any funding from a prior goal period when viewing category with a Needed for Spending Goal in a future month. | [optional]
2929
**goal_overall_funded** | **int** | The total amount funded towards the goal within the current goal period. | [optional]
3030
**goal_overall_left** | **int** | The amount of funding still needed to complete the goal within the current goal period. | [optional]
31+
**goal_snoozed_at** | **datetime** | The date/time the goal was snoozed. If the goal is not snoozed, this will be null. | [optional]
3132
**deleted** | **bool** | Whether or not the category has been deleted. Deleted categories will only be included in delta requests. |
3233

3334
## Example

open_api_spec.yaml

Lines changed: 8 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.75.0
9+
version: 1.76.0
1010
servers:
1111
- url: https://api.ynab.com/v1
1212
security:
@@ -2304,6 +2304,13 @@ components:
23042304
current goal period.
23052305
format: int64
23062306
nullable: true
2307+
goal_snoozed_at:
2308+
type: string
2309+
description: >-
2310+
The date/time the goal was snoozed. If the goal is not snoozed, this
2311+
will be null.
2312+
format: date-time
2313+
nullable: true
23072314
deleted:
23082315
type: boolean
23092316
description: >-

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.6.0
2+
packageVersion: 1.7.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.6.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"
3+
version = "1.7.0"
4+
description = "Official Python client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.76.0"
55
authors = ["YNAB"]
66
license = "Apache-2.0"
77
readme = "README.md"

ynab/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
88
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
99
10-
The version of the OpenAPI document: 1.75.0
10+
The version of the OpenAPI document: 1.76.0
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
1414
""" # noqa: E501
1515

1616

17-
__version__ = "1.5.0"
17+
__version__ = "1.7.0"
1818

1919
# Define package exports
2020
__all__ = [

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.75.0
8+
The version of the OpenAPI document: 1.76.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.75.0
8+
The version of the OpenAPI document: 1.76.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.75.0
8+
The version of the OpenAPI document: 1.76.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

ynab/api/months_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.75.0
8+
The version of the OpenAPI document: 1.76.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

ynab/api/payee_locations_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.75.0
8+
The version of the OpenAPI document: 1.76.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)