diff --git a/method/resources/Entities/Subscriptions.py b/method/resources/Entities/Subscriptions.py index 955948b..feca862 100644 --- a/method/resources/Entities/Subscriptions.py +++ b/method/resources/Entities/Subscriptions.py @@ -7,7 +7,8 @@ EntitySubscriptionNamesLiterals = Literal[ 'connect', - 'credit_score' + 'credit_score', + 'attribute' ] diff --git a/setup.py b/setup.py index f5bc969..3cacde7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='method-python', - version='1.1.9', + version='1.1.10', description='Python library for the Method API', long_description='Python library for the Method API', long_description_content_type='text/x-rst', diff --git a/test/resources/Entity_test.py b/test/resources/Entity_test.py index 02589fa..6858914 100644 --- a/test/resources/Entity_test.py +++ b/test/resources/Entity_test.py @@ -765,7 +765,7 @@ def test_retrieve_entity_product_list(): 'status': 'available', 'status_error': None, 'latest_request_id': entities_retrieve_product_list_response.get('attribute', {}).get('latest_request_id', None), - 'is_subscribable': False, + 'is_subscribable': True, 'created_at': entities_retrieve_product_list_response.get('attribute', {}).get('created_at', ''), 'updated_at': entities_retrieve_product_list_response.get('attribute', {}).get('updated_at', ''), }, @@ -831,7 +831,7 @@ def test_retrieve_entity_product(): 'status': 'available', 'status_error': None, 'latest_request_id': entities_retrieve_product_list_response.get('attribute', {}).get('latest_request_id', None), - 'is_subscribable': False, + 'is_subscribable': True, 'created_at': entities_retrieve_product_list_response.get('attribute', {}).get('created_at', ''), 'updated_at': entities_retrieve_product_list_response.get('attribute', {}).get('updated_at', ''), }