async removeLabelFromCard()

in src/Worker.ts [380:393]


  async removeLabelFromCard() {
    const client = await this.kintoneClientCreator.createKintoneClient([
      this.apps.cards.token,
      this.apps.labels.token,
    ]);
    const cardInfo = await this.getRecordIdAndLabelIdsFromCard();
    return ApiExecutor.removeLabelFromCard(
      client,
      this.apps.cards.id,
      this.trelloAction.data,
      cardInfo.recordId,
      cardInfo.tableIds
    );
  }