sowhat-types 2.0.206 → 2.0.207

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
@@ -449,7 +449,7 @@ interface BankAccountTransactionResponse {
449
449
  applicationDate: Date;
450
450
  date: Date;
451
451
  value: number | null;
452
- currency: string | null;
452
+ currency: AvailableCurrencyEnum | null;
453
453
  name: string;
454
454
  originalName: string;
455
455
  coming: boolean;
@@ -706,7 +706,7 @@ interface UserAiSummaryResponse {
706
706
  }
707
707
 
708
708
  interface UserFinancialSummaryResponse {
709
- currency: string;
709
+ currency: AvailableCurrencyEnum;
710
710
  projectNeeds: ProjectNeedEnum[];
711
711
  totalRealEstatesValue: number | null;
712
712
  totalMobilitiesValue: number | null;
package/dist/index.d.ts CHANGED
@@ -449,7 +449,7 @@ interface BankAccountTransactionResponse {
449
449
  applicationDate: Date;
450
450
  date: Date;
451
451
  value: number | null;
452
- currency: string | null;
452
+ currency: AvailableCurrencyEnum | null;
453
453
  name: string;
454
454
  originalName: string;
455
455
  coming: boolean;
@@ -706,7 +706,7 @@ interface UserAiSummaryResponse {
706
706
  }
707
707
 
708
708
  interface UserFinancialSummaryResponse {
709
- currency: string;
709
+ currency: AvailableCurrencyEnum;
710
710
  projectNeeds: ProjectNeedEnum[];
711
711
  totalRealEstatesValue: number | null;
712
712
  totalMobilitiesValue: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.206",
3
+ "version": "2.0.207",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",