diff --git a/method/resources/Entities/Attributes.py b/method/resources/Entities/Attributes.py index a109129..f7fa4ed 100644 --- a/method/resources/Entities/Attributes.py +++ b/method/resources/Entities/Attributes.py @@ -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): diff --git a/method/resources/Webhook.py b/method/resources/Webhook.py index 320759c..3a90011 100644 --- a/method/resources/Webhook.py +++ b/method/resources/Webhook.py @@ -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', ] diff --git a/setup.py b/setup.py index 1821ac1..7d8f79d 100644 --- a/setup.py +++ b/setup.py @@ -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',