taxtank-core 2.1.60 → 2.1.62
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/fesm2022/taxtank-core.mjs +157 -2
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5124,13 +5124,13 @@ declare class BankTransactionComment extends AbstractModel implements BankTransa
|
|
|
5124
5124
|
|
|
5125
5125
|
interface ExchangeRateInterface {
|
|
5126
5126
|
date: Date;
|
|
5127
|
-
|
|
5127
|
+
currency: string;
|
|
5128
5128
|
rate: number;
|
|
5129
5129
|
}
|
|
5130
5130
|
|
|
5131
5131
|
declare class ExchangeRate extends AbstractModel implements ExchangeRateInterface {
|
|
5132
5132
|
date: Date;
|
|
5133
|
-
|
|
5133
|
+
currency: string;
|
|
5134
5134
|
rate: number;
|
|
5135
5135
|
}
|
|
5136
5136
|
|