node-zendesk
Advanced tools
Comparing version 0.0.14 to 0.0.15
@@ -46,2 +46,12 @@ //Organizations.js: Client for the zendesk API. | ||
this.request('DELETE', ['organizations', organizationID], cb); | ||
}; | ||
}; | ||
// ====================================== Search Organizations | ||
Organizations.prototype.search = function (params, cb) { | ||
this.requestAll('GET', ['organizations', 'search', params], cb); | ||
}; | ||
// ====================================== Autocomplete Organizations | ||
Organizations.prototype.autocomplete = function (params, cb) { | ||
this.requestAll('GET', ['organizations', 'autocomplete', params], cb); | ||
}; |
{ | ||
"name": "node-zendesk", | ||
"version": "0.0.14", | ||
"version": "0.0.15", | ||
"description": "zendesk API client wrapper", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
70893
1562
70898
2