async commentCard()

in src/Worker.ts [441:452]


  async commentCard() {
    const client = await this.kintoneClientCreator.createKintoneClient([
      this.apps.cards.token,
    ]);
    const recordId = await this.getCardRecordIdIfNotExistsCreateCard(client);
    return ApiExecutor.commentCard(
      client,
      this.apps.cards.id,
      this.trelloAction.display.entities,
      recordId as string
    );
  }