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.
1 parent a34446a commit 5b3f343Copy full SHA for 5b3f343
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "breakout-api-client",
3
- "version": "0.13.0",
+ "version": "0.14.0",
4
"description": "A JS Api client for the breakout-backend",
5
"main": "src/BreakoutApi.js",
6
"directories": {
src/BreakoutApi.js
@@ -452,6 +452,11 @@ class BreakoutApi {
452
.then(resp => resp.data);
453
}
454
455
+ addSponsoring(teamId, sponsoring) {
456
+ return this.instance.post(`event/-1/team/${teamId}/sponsoring/`, sponsoring)
457
+ .then(resp => resp.data);
458
+ }
459
+
460
461
462
module.exports = BreakoutApi;
0 commit comments