We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c684c2e + 3ccd35e commit 8dea6d8Copy full SHA for 8dea6d8
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "breakout-api-client",
3
- "version": "0.15.0",
+ "version": "0.15.1",
4
"description": "A JS Api client for the breakout-backend",
5
"main": "src/BreakoutApi.js",
6
"directories": {
src/BreakoutApi.js
@@ -298,6 +298,12 @@ class BreakoutApi {
298
.then(resp => resp.data);
299
}
300
301
+ searchInvoices(params) {
302
+ let formData = qs.stringify(params);
303
+ return this.instance.get(`sponsoringinvoice/search/?${formData}`)
304
+ .then(resp => resp.data);
305
+ }
306
+
307
signCloudinaryParams(params = {}) {
308
309
const data = params;
0 commit comments