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 +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -85,7 +85,8 @@ interface FetchBankAccountsListInput {
|
|
|
85
85
|
|
|
86
86
|
interface UpdateBankAccountInput {
|
|
87
87
|
id: string;
|
|
88
|
-
|
|
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
|
-
|
|
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;
|