File tree 3 files changed +7
-5
lines changed 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -247,14 +247,17 @@ Object {
247
247
" countReset" : [Function ],
248
248
" debug" : [Function ],
249
249
" dir" : [Function ],
250
+ " dirxml" : [Function ],
250
251
" error" : [Function ],
251
252
" group" : [Function ],
252
253
" groupCollapsed" : [Function ],
253
254
" groupEnd" : [Function ],
254
255
" info" : [Function ],
255
256
" log" : [Function ],
257
+ " table" : [Function ],
256
258
" time" : [Function ],
257
259
" timeEnd" : [Function ],
260
+ " timeLog" : [Function ],
258
261
" trace" : [Function ],
259
262
" warn" : [Function ],
260
263
},
Original file line number Diff line number Diff line change 31
31
"lint:js" : " ./node_modules/.bin/eslint --ext .js,.jsx ." ,
32
32
"test" : " npm run lint && npm run jest"
33
33
},
34
- "version" : " 1000.5.9 " ,
34
+ "version" : " 1000.5.10 " ,
35
35
"dependencies" : {
36
36
"auth0-js" : " ^6.8.4" ,
37
37
"config" : " ^3.2.0" ,
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ class GroupService {
172
172
*/
173
173
constructor ( tokenV3 ) {
174
174
this . private = {
175
- api : getApi ( 'V3 ' , tokenV3 ) ,
175
+ api : getApi ( 'V5 ' , tokenV3 ) ,
176
176
tokenV3,
177
177
} ;
178
178
}
@@ -185,9 +185,8 @@ class GroupService {
185
185
* @return {Promise }
186
186
*/
187
187
addMember ( groupId , memberId , membershipType ) {
188
- return this . private . api . postJson ( `/groups/${ groupId } /members` , {
189
- param : { memberId, membershipType } ,
190
- } ) . then ( handleApiResponse ) ;
188
+ return this . private . api . postJson ( `/groups/${ groupId } /members` , { memberId, membershipType } )
189
+ . then ( handleApiResponse ) ;
191
190
}
192
191
193
192
/**
You can’t perform that action at this time.
0 commit comments