sowhat-types 2.0.61 → 2.0.62

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
@@ -85,7 +85,8 @@ interface FetchBankAccountsListInput {
85
85
 
86
86
  interface UpdateBankAccountInput {
87
87
  id: string;
88
- newName?: string;
88
+ name?: string;
89
+ alertThreshold?: number;
89
90
  position?: number;
90
91
  }
91
92
 
@@ -238,10 +239,11 @@ interface PaginationInput {
238
239
  interface BankAccountResponse {
239
240
  id: string;
240
241
  powensId: number;
242
+ name: string;
241
243
  balance: number | null;
242
244
  comingBalance: number | null;
243
- name: string;
244
245
  currency: string | null;
246
+ alertThreshold: number;
245
247
  type: BankAccountTypeEnum;
246
248
  gotLoan: boolean;
247
249
  iban: string | null;
package/dist/index.d.ts CHANGED
@@ -85,7 +85,8 @@ interface FetchBankAccountsListInput {
85
85
 
86
86
  interface UpdateBankAccountInput {
87
87
  id: string;
88
- newName?: string;
88
+ name?: string;
89
+ alertThreshold?: number;
89
90
  position?: number;
90
91
  }
91
92
 
@@ -238,10 +239,11 @@ interface PaginationInput {
238
239
  interface BankAccountResponse {
239
240
  id: string;
240
241
  powensId: number;
242
+ name: string;
241
243
  balance: number | null;
242
244
  comingBalance: number | null;
243
- name: string;
244
245
  currency: string | null;
246
+ alertThreshold: number;
245
247
  type: BankAccountTypeEnum;
246
248
  gotLoan: boolean;
247
249
  iban: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.61",
3
+ "version": "2.0.62",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",