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 +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -250,11 +250,12 @@ interface BankAccountTransactionsResponse {
|
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
interface BankAccountResponse {
|
|
253
|
-
id:
|
|
253
|
+
id: string;
|
|
254
|
+
powensId: number;
|
|
254
255
|
balance: number | null;
|
|
256
|
+
comingBalance: number | null;
|
|
255
257
|
name: string;
|
|
256
|
-
|
|
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:
|
|
253
|
+
id: string;
|
|
254
|
+
powensId: number;
|
|
254
255
|
balance: number | null;
|
|
256
|
+
comingBalance: number | null;
|
|
255
257
|
name: string;
|
|
256
|
-
|
|
257
|
-
currency: string;
|
|
258
|
+
currency: string | null;
|
|
258
259
|
type: BankAccountTypeEnum;
|
|
259
260
|
gotLoan: boolean;
|
|
260
261
|
iban: string | null;
|