Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions method/resources/Entities/Attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class EntityAttributesType(TypedDict):
credit_health_total_accounts: CreditHealthAttribute
credit_health_credit_age: CreditHealthAttribute
credit_health_payment_history: CreditHealthAttribute
credit_health_open_accounts: CreditHealthAttribute


class EntityAttributes(TypedDict):
Expand Down
4 changes: 3 additions & 1 deletion method/resources/Webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@
'attribute.credit_health_credit_age.increased',
'attribute.credit_health_credit_age.decreased',
'attribute.credit_health_payment_history.increased',
'attribute.credit_health_payment_history.decreased'
'attribute.credit_health_payment_history.decreased',
'attribute.credit_health_open_accounts.increased',
'attribute.credit_health_open_accounts.decreased',
]


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='method-python',
version='1.1.5',
version='1.1.6',
description='Python library for the Method API',
long_description='Python library for the Method API',
long_description_content_type='text/x-rst',
Expand Down
Loading