sowhat-types 2.0.28 → 2.0.29

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
@@ -181,7 +181,6 @@ interface FetchUserCoOwnerInput {
181
181
 
182
182
  interface BudgetExpensesAllocationResponse {
183
183
  id: string;
184
- userId: string;
185
184
  name: string;
186
185
  budget: string;
187
186
  icon: string;
@@ -199,7 +198,6 @@ interface BudgetExpensesAllocationsResponse {
199
198
 
200
199
  interface BudgetIncomesAllocationResponse {
201
200
  id: string;
202
- userId: string;
203
201
  name: string;
204
202
  budget: string;
205
203
  icon: string;
@@ -274,6 +272,8 @@ interface BankAccountTransactionResponse {
274
272
  type: BankAccountTransactionTypeEnum;
275
273
  originalTransaction: BankAccountOriginalTransactionResponse | null;
276
274
  country: string | null;
275
+ allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
276
+ allocated: Date | null;
277
277
  }
278
278
 
279
279
  interface PaginationResponse {
package/dist/index.d.ts CHANGED
@@ -181,7 +181,6 @@ interface FetchUserCoOwnerInput {
181
181
 
182
182
  interface BudgetExpensesAllocationResponse {
183
183
  id: string;
184
- userId: string;
185
184
  name: string;
186
185
  budget: string;
187
186
  icon: string;
@@ -199,7 +198,6 @@ interface BudgetExpensesAllocationsResponse {
199
198
 
200
199
  interface BudgetIncomesAllocationResponse {
201
200
  id: string;
202
- userId: string;
203
201
  name: string;
204
202
  budget: string;
205
203
  icon: string;
@@ -274,6 +272,8 @@ interface BankAccountTransactionResponse {
274
272
  type: BankAccountTransactionTypeEnum;
275
273
  originalTransaction: BankAccountOriginalTransactionResponse | null;
276
274
  country: string | null;
275
+ allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
276
+ allocated: Date | null;
277
277
  }
278
278
 
279
279
  interface PaginationResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",