Comparing version 0.25.7 to 0.25.8
@@ -8,2 +8,6 @@ # Changelog | ||
## [Unreleased] | ||
### Changed | ||
- extended account query to return cardHolderRepresentation and cardHolderRepresentations fields | ||
## [0.25.7] - 2020-03-06 | ||
### Added | ||
@@ -10,0 +14,0 @@ - Card model now has a method to set card holder representation independently (`card.setCardHolderRepresentation`) |
@@ -54,3 +54,3 @@ "use strict"; | ||
var model_1 = require("./model"); | ||
var GET_ACCOUNT = "query {\n viewer {\n mainAccount {\n iban\n balance\n }\n }\n}"; | ||
var GET_ACCOUNT = "query {\n viewer {\n mainAccount {\n iban\n balance\n cardHolderRepresentation\n cardHolderRepresentations\n }\n }\n}"; | ||
var Account = /** @class */ (function (_super) { | ||
@@ -57,0 +57,0 @@ __extends(Account, _super); |
{ | ||
"name": "kontist", | ||
"version": "0.25.7", | ||
"version": "0.25.8", | ||
"description": "Kontist client SDK", | ||
@@ -5,0 +5,0 @@ "main": "dist/lib/index.js", |
@@ -60,2 +60,4 @@ import { expect } from "chai"; | ||
balance: 1234, | ||
cardHolderRepresentation: null, | ||
cardHolderRepresentations: ["STEPHEN/JAMES"] | ||
}, | ||
@@ -62,0 +64,0 @@ }, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
500758
7560