sowhat-types 2.0.77 → 2.0.79

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
@@ -82,7 +82,6 @@ interface UpdateBankAccountInput {
82
82
 
83
83
  interface AllocateTransactionInput {
84
84
  transactionId: string;
85
- budgetId: string;
86
85
  allocationId: string | null;
87
86
  applicationDate: Date;
88
87
  type: BudgetTypeEnum;
@@ -173,6 +172,7 @@ interface CreateBudgetExpensesAllocationInput {
173
172
  currency: string;
174
173
  theoricalValuePerMonth: number;
175
174
  bankAccountId: string | null;
175
+ createPreviousMonth: boolean;
176
176
  }
177
177
 
178
178
  interface DeleteBudgetExpensesAllocationInput {
@@ -196,6 +196,7 @@ interface CreateBudgetIncomesAllocationInput {
196
196
  currency: string;
197
197
  theoricalValuePerMonth: number;
198
198
  bankAccountId: string | null;
199
+ createPreviousMonth: boolean;
199
200
  }
200
201
 
201
202
  interface DeleteBudgetIncomesAllocationInput {
@@ -400,7 +401,6 @@ interface BankAccountTransactionCounterpartyResponse {
400
401
  interface TimePaginationResponse {
401
402
  startDate: Date;
402
403
  endDate: Date;
403
- hasMore: boolean;
404
404
  }
405
405
 
406
406
  interface BankAccountTransactionsResponse {
package/dist/index.d.ts CHANGED
@@ -82,7 +82,6 @@ interface UpdateBankAccountInput {
82
82
 
83
83
  interface AllocateTransactionInput {
84
84
  transactionId: string;
85
- budgetId: string;
86
85
  allocationId: string | null;
87
86
  applicationDate: Date;
88
87
  type: BudgetTypeEnum;
@@ -173,6 +172,7 @@ interface CreateBudgetExpensesAllocationInput {
173
172
  currency: string;
174
173
  theoricalValuePerMonth: number;
175
174
  bankAccountId: string | null;
175
+ createPreviousMonth: boolean;
176
176
  }
177
177
 
178
178
  interface DeleteBudgetExpensesAllocationInput {
@@ -196,6 +196,7 @@ interface CreateBudgetIncomesAllocationInput {
196
196
  currency: string;
197
197
  theoricalValuePerMonth: number;
198
198
  bankAccountId: string | null;
199
+ createPreviousMonth: boolean;
199
200
  }
200
201
 
201
202
  interface DeleteBudgetIncomesAllocationInput {
@@ -400,7 +401,6 @@ interface BankAccountTransactionCounterpartyResponse {
400
401
  interface TimePaginationResponse {
401
402
  startDate: Date;
402
403
  endDate: Date;
403
- hasMore: boolean;
404
404
  }
405
405
 
406
406
  interface BankAccountTransactionsResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.77",
3
+ "version": "2.0.79",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",