@arsedizioni/ars-utils 21.2.300 → 21.2.302
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +3 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +20 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +2 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +6 -1
|
@@ -3254,10 +3254,11 @@ class ClipperService {
|
|
|
3254
3254
|
}
|
|
3255
3255
|
/**
|
|
3256
3256
|
* Removes the specified members from the team.
|
|
3257
|
+
* @param teamId - The ID of the team.
|
|
3257
3258
|
* @param ids - The numeric IDs of the team members to remove.
|
|
3258
3259
|
*/
|
|
3259
|
-
deleteTeamMembers(ids) {
|
|
3260
|
-
return this.httpClient.post(this._serviceUri + '/account/teams/members/delete', { ids: ids });
|
|
3260
|
+
deleteTeamMembers(teamId, ids) {
|
|
3261
|
+
return this.httpClient.post(this._serviceUri + '/account/teams/members/delete', { teamId: teamId, ids: ids });
|
|
3261
3262
|
}
|
|
3262
3263
|
/**
|
|
3263
3264
|
* Creates or updates a team member record.
|