sowhat-types 2.0.20 → 2.0.21

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.
package/dist/index.d.mts CHANGED
@@ -250,11 +250,12 @@ interface BankAccountTransactionsResponse {
250
250
  }
251
251
 
252
252
  interface BankAccountResponse {
253
- id: number;
253
+ id: string;
254
+ powensId: number;
254
255
  balance: number | null;
256
+ comingBalance: number | null;
255
257
  name: string;
256
- originalName: string;
257
- currency: string;
258
+ currency: string | null;
258
259
  type: BankAccountTypeEnum;
259
260
  gotLoan: boolean;
260
261
  iban: string | null;
package/dist/index.d.ts CHANGED
@@ -250,11 +250,12 @@ interface BankAccountTransactionsResponse {
250
250
  }
251
251
 
252
252
  interface BankAccountResponse {
253
- id: number;
253
+ id: string;
254
+ powensId: number;
254
255
  balance: number | null;
256
+ comingBalance: number | null;
255
257
  name: string;
256
- originalName: string;
257
- currency: string;
258
+ currency: string | null;
258
259
  type: BankAccountTypeEnum;
259
260
  gotLoan: boolean;
260
261
  iban: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.20",
3
+ "version": "2.0.21",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",