sowhat-types 2.0.80 → 2.0.82
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 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -334,6 +334,7 @@ interface BankAccountResponse {
|
|
|
334
334
|
gotLoan: boolean;
|
|
335
335
|
iban: string | null;
|
|
336
336
|
position: number;
|
|
337
|
+
deletedByBank: Date | null;
|
|
337
338
|
transactions: BankAccountTransactionResponse[];
|
|
338
339
|
}
|
|
339
340
|
|
|
@@ -593,6 +594,9 @@ interface BudgetResponse {
|
|
|
593
594
|
id: string;
|
|
594
595
|
expenses: BudgetExpensesAllocationResponse[];
|
|
595
596
|
incomes: BudgetIncomesAllocationResponse[];
|
|
597
|
+
unallocatedExpensesTransactionsBalance: number;
|
|
598
|
+
unallocatedIncomesTransactionsBalance: number;
|
|
599
|
+
currency: string;
|
|
596
600
|
}
|
|
597
601
|
|
|
598
602
|
interface CoOwnerDeletedResponse {
|
package/dist/index.d.ts
CHANGED
|
@@ -334,6 +334,7 @@ interface BankAccountResponse {
|
|
|
334
334
|
gotLoan: boolean;
|
|
335
335
|
iban: string | null;
|
|
336
336
|
position: number;
|
|
337
|
+
deletedByBank: Date | null;
|
|
337
338
|
transactions: BankAccountTransactionResponse[];
|
|
338
339
|
}
|
|
339
340
|
|
|
@@ -593,6 +594,9 @@ interface BudgetResponse {
|
|
|
593
594
|
id: string;
|
|
594
595
|
expenses: BudgetExpensesAllocationResponse[];
|
|
595
596
|
incomes: BudgetIncomesAllocationResponse[];
|
|
597
|
+
unallocatedExpensesTransactionsBalance: number;
|
|
598
|
+
unallocatedIncomesTransactionsBalance: number;
|
|
599
|
+
currency: string;
|
|
596
600
|
}
|
|
597
601
|
|
|
598
602
|
interface CoOwnerDeletedResponse {
|