@arsedizioni/ars-utils 21.2.301 → 21.2.303

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.
@@ -2207,11 +2207,6 @@ class ClipperService {
2207
2207
  this.bagTotal = computed(() => this.bag().length, ...(ngDevMode ? [{ debugName: "bagTotal" }] : /* istanbul ignore next */ []));
2208
2208
  this.visible = signal(false, ...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
2209
2209
  this._teams = [];
2210
- this.currentTeamId = signal(SystemUtils.emptyUUID(), ...(ngDevMode ? [{ debugName: "currentTeamId" }] : /* istanbul ignore next */ []));
2211
- this.currentTeamName = signal("PERSONALE", ...(ngDevMode ? [{ debugName: "currentTeamName" }] : /* istanbul ignore next */ []));
2212
- this.currentTeamIsPrivate = computed(() => {
2213
- return this.currentTeamId() !== SystemUtils.emptyUUID();
2214
- }, ...(ngDevMode ? [{ debugName: "currentTeamIsPrivate" }] : /* istanbul ignore next */ []));
2215
2210
  this.availableChannels = signal([], ...(ngDevMode ? [{ debugName: "availableChannels" }] : /* istanbul ignore next */ []));
2216
2211
  this.activeChannels = computed(() => {
2217
2212
  return this.availableChannels()?.filter(x => !x.suspended && !x.disabled && x.active === true);
@@ -3254,10 +3249,11 @@ class ClipperService {
3254
3249
  }
3255
3250
  /**
3256
3251
  * Removes the specified members from the team.
3252
+ * @param teamId - The ID of the team.
3257
3253
  * @param ids - The numeric IDs of the team members to remove.
3258
3254
  */
3259
- deleteTeamMembers(ids) {
3260
- return this.httpClient.post(this._serviceUri + '/account/teams/members/delete', { ids: ids });
3255
+ deleteTeamMembers(teamId, ids) {
3256
+ return this.httpClient.post(this._serviceUri + '/account/teams/members/delete', { teamId: teamId, ids: ids });
3261
3257
  }
3262
3258
  /**
3263
3259
  * Creates or updates a team member record.