sowhat-types 2.0.116 → 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 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 {
@@ -465,6 +466,7 @@ interface BankAccountTransactionResponse {
465
466
  lastUpdate: Date | null;
466
467
  deleted: Date | null;
467
468
  type: BankAccountTransactionTypeEnum;
469
+ internalTransfer: boolean;
468
470
  originalTransaction: BankAccountOriginalTransactionResponse | null;
469
471
  country: string | null;
470
472
  category: BudgetTypeEnum;
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 {
@@ -465,6 +466,7 @@ interface BankAccountTransactionResponse {
465
466
  lastUpdate: Date | null;
466
467
  deleted: Date | null;
467
468
  type: BankAccountTransactionTypeEnum;
469
+ internalTransfer: boolean;
468
470
  originalTransaction: BankAccountOriginalTransactionResponse | null;
469
471
  country: string | null;
470
472
  category: BudgetTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.116",
3
+ "version": "2.0.117",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",