taxtank-core 0.16.4 → 0.16.5

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.
@@ -831,7 +831,8 @@
831
831
  BANK_TRANSACTIONS_GET: new Endpoint('GET', '\\/bank-transactions'),
832
832
  BANK_TRANSACTIONS_DELETE: new Endpoint('DELETE', '\\/bank-transactions\\/\\d+'),
833
833
  BANK_TRANSACTIONS_IMPORT_POST: new Endpoint('POST', '\\/bank-transactions\\/\\d+\\/import'),
834
- BASIQ_ACCOUNTS_GET: new Endpoint('GET', '\\/basiq\\/\\accounts'),
834
+ BASIQ_ACCOUNTS_GET: new Endpoint('GET', '\\/basiq\\/accounts'),
835
+ BASIQ_TOKEN_GET: new Endpoint('GET', '\\/basiq\\/tokens'),
835
836
  CHARTS_INCOME_GET: new Endpoint('GET', '\\/charts\\/\\incomes'),
836
837
  CHARTS_EXPENSES_GET: new Endpoint('GET', '\\/charts\\/\\expenses'),
837
838
  CHART_ACCOUNTS_GET: new Endpoint('GET', '\\/chart-accounts'),
@@ -10509,6 +10510,7 @@
10509
10510
  return new BasiqToken(response['access_token'], new Date(now + response['expires_in'] * 1000));
10510
10511
  }))
10511
10512
  .subscribe(function (token) {
10513
+ _this.token = token;
10512
10514
  _this.tokenSubject.next(token);
10513
10515
  });
10514
10516
  }