sowhat-types 2.0.124 → 2.0.126
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -297,6 +297,7 @@ interface BatchUpdateBudgetSavingsAllocationInput {
|
|
|
297
297
|
theoricalValuePerMonth?: number;
|
|
298
298
|
balance?: number;
|
|
299
299
|
currency: string;
|
|
300
|
+
position?: number;
|
|
300
301
|
}
|
|
301
302
|
|
|
302
303
|
interface BatchUpdateBudgetSavingsAllocationsInput {
|
|
@@ -466,6 +467,7 @@ interface BankAccountTransactionResponse {
|
|
|
466
467
|
value: number | null;
|
|
467
468
|
currency: string | null;
|
|
468
469
|
name: string;
|
|
470
|
+
originalName: string;
|
|
469
471
|
coming: boolean;
|
|
470
472
|
active: boolean;
|
|
471
473
|
cardNumber: string | null;
|
|
@@ -665,6 +667,7 @@ interface BudgetSavingsAllocationResponse {
|
|
|
665
667
|
currency: string;
|
|
666
668
|
currentMonthlyOperation: SavingsMonthlyOperationResponse | null;
|
|
667
669
|
monthlyOperations: SavingsMonthlyOperationResponse[];
|
|
670
|
+
position: number;
|
|
668
671
|
isDefault: boolean;
|
|
669
672
|
createdAt: Date;
|
|
670
673
|
updatedAt: Date | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -297,6 +297,7 @@ interface BatchUpdateBudgetSavingsAllocationInput {
|
|
|
297
297
|
theoricalValuePerMonth?: number;
|
|
298
298
|
balance?: number;
|
|
299
299
|
currency: string;
|
|
300
|
+
position?: number;
|
|
300
301
|
}
|
|
301
302
|
|
|
302
303
|
interface BatchUpdateBudgetSavingsAllocationsInput {
|
|
@@ -466,6 +467,7 @@ interface BankAccountTransactionResponse {
|
|
|
466
467
|
value: number | null;
|
|
467
468
|
currency: string | null;
|
|
468
469
|
name: string;
|
|
470
|
+
originalName: string;
|
|
469
471
|
coming: boolean;
|
|
470
472
|
active: boolean;
|
|
471
473
|
cardNumber: string | null;
|
|
@@ -665,6 +667,7 @@ interface BudgetSavingsAllocationResponse {
|
|
|
665
667
|
currency: string;
|
|
666
668
|
currentMonthlyOperation: SavingsMonthlyOperationResponse | null;
|
|
667
669
|
monthlyOperations: SavingsMonthlyOperationResponse[];
|
|
670
|
+
position: number;
|
|
668
671
|
isDefault: boolean;
|
|
669
672
|
createdAt: Date;
|
|
670
673
|
updatedAt: Date | null;
|