sowhat-types 2.0.115 → 2.0.117
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 -6
- package/dist/index.d.ts +4 -6
- 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 {
|
|
@@ -316,6 +317,7 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
316
317
|
interface UpdateUserInput {
|
|
317
318
|
currency?: AvailableCurrencyEnum;
|
|
318
319
|
consentToBudget?: boolean;
|
|
320
|
+
newTransferIntoDefault?: boolean;
|
|
319
321
|
}
|
|
320
322
|
|
|
321
323
|
interface CreateUserCoOwnerInput {
|
|
@@ -464,6 +466,7 @@ interface BankAccountTransactionResponse {
|
|
|
464
466
|
lastUpdate: Date | null;
|
|
465
467
|
deleted: Date | null;
|
|
466
468
|
type: BankAccountTransactionTypeEnum;
|
|
469
|
+
internalTransfer: boolean;
|
|
467
470
|
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
468
471
|
country: string | null;
|
|
469
472
|
category: BudgetTypeEnum;
|
|
@@ -680,11 +683,6 @@ interface UserSavingsBudgetResponse {
|
|
|
680
683
|
lockedInSavingsBalance: number;
|
|
681
684
|
currency: string;
|
|
682
685
|
allocations: BudgetSavingsAllocationResponse[];
|
|
683
|
-
/**
|
|
684
|
-
* Boolean to notify the front-end that the default allocation balance has been updated a short time ago
|
|
685
|
-
* It means some bank accounts of type savings have been updated
|
|
686
|
-
*/
|
|
687
|
-
newTransferIntoDefault: boolean;
|
|
688
686
|
}
|
|
689
687
|
|
|
690
688
|
interface BudgetResponse {
|
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 {
|
|
@@ -316,6 +317,7 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
316
317
|
interface UpdateUserInput {
|
|
317
318
|
currency?: AvailableCurrencyEnum;
|
|
318
319
|
consentToBudget?: boolean;
|
|
320
|
+
newTransferIntoDefault?: boolean;
|
|
319
321
|
}
|
|
320
322
|
|
|
321
323
|
interface CreateUserCoOwnerInput {
|
|
@@ -464,6 +466,7 @@ interface BankAccountTransactionResponse {
|
|
|
464
466
|
lastUpdate: Date | null;
|
|
465
467
|
deleted: Date | null;
|
|
466
468
|
type: BankAccountTransactionTypeEnum;
|
|
469
|
+
internalTransfer: boolean;
|
|
467
470
|
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
468
471
|
country: string | null;
|
|
469
472
|
category: BudgetTypeEnum;
|
|
@@ -680,11 +683,6 @@ interface UserSavingsBudgetResponse {
|
|
|
680
683
|
lockedInSavingsBalance: number;
|
|
681
684
|
currency: string;
|
|
682
685
|
allocations: BudgetSavingsAllocationResponse[];
|
|
683
|
-
/**
|
|
684
|
-
* Boolean to notify the front-end that the default allocation balance has been updated a short time ago
|
|
685
|
-
* It means some bank accounts of type savings have been updated
|
|
686
|
-
*/
|
|
687
|
-
newTransferIntoDefault: boolean;
|
|
688
686
|
}
|
|
689
687
|
|
|
690
688
|
interface BudgetResponse {
|