async performTeamAction()

in lib/client/services/team/team.service.ts [24:36]


  async performTeamAction(
    teamAction: TeamAction,
    filterStatement: Statement,
  ): Promise<UpdateResult> {
    return this._client.performTeamAction({
      teamAction: {
        attributes: {
          "xsi:type": teamAction.constructor.name,
        },
      },
      filterStatement,
    });
  }