From f8a978fd4a78b46cbfdf08c561e31847fee1ef81 Mon Sep 17 00:00:00 2001 From: Mike Ossig Date: Mon, 5 Feb 2024 20:23:54 -0500 Subject: [PATCH 1/2] adds fingerprint, bumps version --- method/resources/Account.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/method/resources/Account.py b/method/resources/Account.py index dfd94e8..44bb227 100644 --- a/method/resources/Account.py +++ b/method/resources/Account.py @@ -321,6 +321,7 @@ class AccountLiability(TypedDict): data_sync_type: AccountLiabilitySyncTypesLiterals ownership: TradelineAccountOwnershipLiterals hash: str + fingerprint:str type: AccountLiabilityTypesLiterals loan: Optional[AccountLiabilityLoan] student_loan: Optional[AccountLiabilityStudentLoan] diff --git a/setup.py b/setup.py index 6a712b1..2381af8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='method-python', - version='0.0.36', + version='0.0.37', description='Python library for the Method API', long_description='Python library for the Method API', long_description_content_type='text/x-rst', From ecd1742621f45a04becd9eb78513f6681a2615f1 Mon Sep 17 00:00:00 2001 From: Mike Ossig Date: Mon, 5 Feb 2024 20:25:03 -0500 Subject: [PATCH 2/2] nit spacing --- method/resources/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/method/resources/Account.py b/method/resources/Account.py index 44bb227..c311b69 100644 --- a/method/resources/Account.py +++ b/method/resources/Account.py @@ -321,7 +321,7 @@ class AccountLiability(TypedDict): data_sync_type: AccountLiabilitySyncTypesLiterals ownership: TradelineAccountOwnershipLiterals hash: str - fingerprint:str + fingerprint: str type: AccountLiabilityTypesLiterals loan: Optional[AccountLiabilityLoan] student_loan: Optional[AccountLiabilityStudentLoan]