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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +462 -459
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +7 -5
- package/package.json +1 -1
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
|
-
|
4737
|
+
createdBy: User$1;
|
4737
4738
|
createdAt: Date;
|
4738
|
-
|
4739
|
+
updatedAt: Date;
|
4739
4740
|
}
|
4740
4741
|
|
4741
4742
|
declare class BankTransactionComment extends AbstractModel implements BankTransactionCommentInterface {
|
4743
|
+
bankTransaction: BankTransaction;
|
4742
4744
|
content: string;
|
4743
|
-
|
4745
|
+
createdBy: User$1;
|
4744
4746
|
createdAt: Date;
|
4745
|
-
|
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
|
8062
|
+
collectionClass: typeof Collection<HoldingTradeImport>;
|
8061
8063
|
endpointUri: string;
|
8062
8064
|
disabledMethods: RestMethod[];
|
8063
8065
|
roles: UserRolesEnum[];
|