sowhat-types 2.0.83 → 2.0.84

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 CHANGED
@@ -185,6 +185,7 @@ interface UpdateBudgetExpensesAllocationInput {
185
185
  icon?: string;
186
186
  color?: string;
187
187
  currency?: string;
188
+ position?: number;
188
189
  theoricalValuePerMonth?: number;
189
190
  bankAccountId?: string | null;
190
191
  }
@@ -209,6 +210,7 @@ interface UpdateBudgetIncomesAllocationInput {
209
210
  icon?: string;
210
211
  color?: string;
211
212
  currency?: string;
213
+ position?: number;
212
214
  theoricalValuePerMonth?: number;
213
215
  bankAccountId?: string | null;
214
216
  }
@@ -294,6 +296,7 @@ interface BudgetIncomesAllocationResponse {
294
296
  isDefault: boolean;
295
297
  value: number;
296
298
  currency: string;
299
+ position: number;
297
300
  transactions: BankAccountTransactionResponse[];
298
301
  bankAccount: BankAccountResponse | null;
299
302
  updatedAt: Date | null;
@@ -348,6 +351,7 @@ interface BudgetExpensesAllocationResponse {
348
351
  isDefault: boolean;
349
352
  value: number;
350
353
  currency: string;
354
+ position: number;
351
355
  transactions: BankAccountTransactionResponse[];
352
356
  bankAccount: BankAccountResponse | null;
353
357
  updatedAt: Date | null;
package/dist/index.d.ts CHANGED
@@ -185,6 +185,7 @@ interface UpdateBudgetExpensesAllocationInput {
185
185
  icon?: string;
186
186
  color?: string;
187
187
  currency?: string;
188
+ position?: number;
188
189
  theoricalValuePerMonth?: number;
189
190
  bankAccountId?: string | null;
190
191
  }
@@ -209,6 +210,7 @@ interface UpdateBudgetIncomesAllocationInput {
209
210
  icon?: string;
210
211
  color?: string;
211
212
  currency?: string;
213
+ position?: number;
212
214
  theoricalValuePerMonth?: number;
213
215
  bankAccountId?: string | null;
214
216
  }
@@ -294,6 +296,7 @@ interface BudgetIncomesAllocationResponse {
294
296
  isDefault: boolean;
295
297
  value: number;
296
298
  currency: string;
299
+ position: number;
297
300
  transactions: BankAccountTransactionResponse[];
298
301
  bankAccount: BankAccountResponse | null;
299
302
  updatedAt: Date | null;
@@ -348,6 +351,7 @@ interface BudgetExpensesAllocationResponse {
348
351
  isDefault: boolean;
349
352
  value: number;
350
353
  currency: string;
354
+ position: number;
351
355
  transactions: BankAccountTransactionResponse[];
352
356
  bankAccount: BankAccountResponse | null;
353
357
  updatedAt: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.83",
3
+ "version": "2.0.84",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",