sowhat-types 2.0.116 → 2.0.118
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 +6 -2
- package/dist/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -171,8 +171,9 @@ interface UpdateBankAccountInput {
|
|
|
171
171
|
interface AllocateTransactionInput {
|
|
172
172
|
transactionId: string;
|
|
173
173
|
allocationId: string | null;
|
|
174
|
-
applicationDate: Date;
|
|
175
174
|
type: BudgetTypeEnum;
|
|
175
|
+
applicationDate: Date;
|
|
176
|
+
internalTransfer: boolean;
|
|
176
177
|
}
|
|
177
178
|
|
|
178
179
|
interface UpdateBankAccountTransactionInput {
|
|
@@ -465,6 +466,7 @@ interface BankAccountTransactionResponse {
|
|
|
465
466
|
lastUpdate: Date | null;
|
|
466
467
|
deleted: Date | null;
|
|
467
468
|
type: BankAccountTransactionTypeEnum;
|
|
469
|
+
internalTransfer: boolean;
|
|
468
470
|
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
469
471
|
country: string | null;
|
|
470
472
|
category: BudgetTypeEnum;
|
|
@@ -686,9 +688,11 @@ interface UserSavingsBudgetResponse {
|
|
|
686
688
|
interface BudgetResponse {
|
|
687
689
|
id: string;
|
|
688
690
|
expenses: BudgetExpensesAllocationResponse[];
|
|
689
|
-
incomes: BudgetIncomesAllocationResponse[];
|
|
690
691
|
unallocatedExpensesTransactionsBalance: number;
|
|
692
|
+
internalTransfersExpensesBalance: number;
|
|
693
|
+
incomes: BudgetIncomesAllocationResponse[];
|
|
691
694
|
unallocatedIncomesTransactionsBalance: number;
|
|
695
|
+
internalTransfersIncomesBalance: number;
|
|
692
696
|
currency: string;
|
|
693
697
|
}
|
|
694
698
|
|
package/dist/index.d.ts
CHANGED
|
@@ -171,8 +171,9 @@ interface UpdateBankAccountInput {
|
|
|
171
171
|
interface AllocateTransactionInput {
|
|
172
172
|
transactionId: string;
|
|
173
173
|
allocationId: string | null;
|
|
174
|
-
applicationDate: Date;
|
|
175
174
|
type: BudgetTypeEnum;
|
|
175
|
+
applicationDate: Date;
|
|
176
|
+
internalTransfer: boolean;
|
|
176
177
|
}
|
|
177
178
|
|
|
178
179
|
interface UpdateBankAccountTransactionInput {
|
|
@@ -465,6 +466,7 @@ interface BankAccountTransactionResponse {
|
|
|
465
466
|
lastUpdate: Date | null;
|
|
466
467
|
deleted: Date | null;
|
|
467
468
|
type: BankAccountTransactionTypeEnum;
|
|
469
|
+
internalTransfer: boolean;
|
|
468
470
|
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
469
471
|
country: string | null;
|
|
470
472
|
category: BudgetTypeEnum;
|
|
@@ -686,9 +688,11 @@ interface UserSavingsBudgetResponse {
|
|
|
686
688
|
interface BudgetResponse {
|
|
687
689
|
id: string;
|
|
688
690
|
expenses: BudgetExpensesAllocationResponse[];
|
|
689
|
-
incomes: BudgetIncomesAllocationResponse[];
|
|
690
691
|
unallocatedExpensesTransactionsBalance: number;
|
|
692
|
+
internalTransfersExpensesBalance: number;
|
|
693
|
+
incomes: BudgetIncomesAllocationResponse[];
|
|
691
694
|
unallocatedIncomesTransactionsBalance: number;
|
|
695
|
+
internalTransfersIncomesBalance: number;
|
|
692
696
|
currency: string;
|
|
693
697
|
}
|
|
694
698
|
|