taxtank-core 2.0.26 → 2.0.27

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/index.d.ts CHANGED
@@ -4732,17 +4732,19 @@ declare enum BankTransactionSummaryFieldsEnum {
4732
4732
  declare const TYPE_LOAN: BankAccountTypeEnum[];
4733
4733
 
4734
4734
  interface BankTransactionCommentInterface {
4735
+ bankTransaction: BankTransaction;
4735
4736
  content: string;
4736
- updatedAt: Date;
4737
+ createdBy: User$1;
4737
4738
  createdAt: Date;
4738
- bankTransaction: BankTransaction;
4739
+ updatedAt: Date;
4739
4740
  }
4740
4741
 
4741
4742
  declare class BankTransactionComment extends AbstractModel implements BankTransactionCommentInterface {
4743
+ bankTransaction: BankTransaction;
4742
4744
  content: string;
4743
- updatedAt: Date;
4745
+ createdBy: User$1;
4744
4746
  createdAt: Date;
4745
- bankTransaction: BankTransaction;
4747
+ updatedAt: Date;
4746
4748
  }
4747
4749
 
4748
4750
  declare class BorrowingExpenseLoan extends BorrowingExpenseLoan$1 {
@@ -8057,7 +8059,7 @@ declare class HoldingTradeImport {
8057
8059
 
8058
8060
  declare class HoldingTradeImportService extends RestService$1<HoldingTradeImport, HoldingTradeImport$1, Collection<HoldingTradeImport$1>> {
8059
8061
  modelClass: typeof HoldingTradeImport$1;
8060
- collectionClass: typeof Collection<HoldingTradeImport$1>;
8062
+ collectionClass: typeof Collection<HoldingTradeImport>;
8061
8063
  endpointUri: string;
8062
8064
  disabledMethods: RestMethod[];
8063
8065
  roles: UserRolesEnum[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "2.0.26",
3
+ "version": "2.0.27",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.3",