Comparing version 1.8.0 to 1.9.0
# CHANGELOG | ||
### v1.9.0 (2020-07-22) | ||
##### New Features | ||
* **resources:** SIM Card Enable/Disable Methods | ||
### v1.8.0 (2020-07-14) | ||
@@ -4,0 +10,0 @@ |
@@ -31,3 +31,3 @@ 'use strict'; | ||
method: 'POST', | ||
path: '/{sim_card_id}/actions/activate', | ||
path: '/{sim_card_id}/actions/enable', | ||
urlParams: ['sim_card_id'], | ||
@@ -40,3 +40,3 @@ paramsValues: [response.data.id], | ||
method: 'POST', | ||
path: '/{sim_card_id}/actions/deactivate', | ||
path: '/{sim_card_id}/actions/disable', | ||
urlParams: ['sim_card_id'], | ||
@@ -47,2 +47,18 @@ paramsValues: [response.data.id], | ||
enable: telnyxMethod({ | ||
method: 'POST', | ||
path: '/{sim_card_id}/actions/enable', | ||
urlParams: ['sim_card_id'], | ||
paramsValues: [response.data.id], | ||
paramsNames: ['id'], | ||
}), | ||
disable: telnyxMethod({ | ||
method: 'POST', | ||
path: '/{sim_card_id}/actions/disable', | ||
urlParams: ['sim_card_id'], | ||
paramsValues: [response.data.id], | ||
paramsNames: ['id'], | ||
}), | ||
retrieveNetworkPreferences: telnyxMethod({ | ||
@@ -49,0 +65,0 @@ method: 'GET', |
{ | ||
"name": "telnyx", | ||
"version": "1.8.0", | ||
"version": "1.9.0", | ||
"description": "Telnyx API Node SDK", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
195768
5265