sowhat-types 2.0.222 → 2.0.223

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
@@ -694,7 +694,6 @@ interface UserAiSummaryResponse {
694
694
 
695
695
  interface UserFinancialSummaryResponse {
696
696
  currency: AvailableCurrencyEnum;
697
- projectNeeds: ProjectNeedEnum[];
698
697
  totalRealEstatesValue: number | null;
699
698
  totalMobilitiesValue: number | null;
700
699
  totalOtherAssetsValue: number | null;
@@ -748,9 +747,9 @@ interface LeadAiSummaryResponse {
748
747
 
749
748
  interface FullLeadResponse {
750
749
  userId: string;
751
- initialAmount: number;
752
- monthlyAmount: number;
753
- need: ProjectNeedEnum;
750
+ initialAmount: number | null;
751
+ monthlyAmount: number | null;
752
+ need: ProjectNeedEnum | null;
754
753
  financialProduct: FinancialProductEnum | null;
755
754
  note: string | null;
756
755
  birthYear: number | null;
package/dist/index.d.ts CHANGED
@@ -694,7 +694,6 @@ interface UserAiSummaryResponse {
694
694
 
695
695
  interface UserFinancialSummaryResponse {
696
696
  currency: AvailableCurrencyEnum;
697
- projectNeeds: ProjectNeedEnum[];
698
697
  totalRealEstatesValue: number | null;
699
698
  totalMobilitiesValue: number | null;
700
699
  totalOtherAssetsValue: number | null;
@@ -748,9 +747,9 @@ interface LeadAiSummaryResponse {
748
747
 
749
748
  interface FullLeadResponse {
750
749
  userId: string;
751
- initialAmount: number;
752
- monthlyAmount: number;
753
- need: ProjectNeedEnum;
750
+ initialAmount: number | null;
751
+ monthlyAmount: number | null;
752
+ need: ProjectNeedEnum | null;
754
753
  financialProduct: FinancialProductEnum | null;
755
754
  note: string | null;
756
755
  birthYear: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.222",
3
+ "version": "2.0.223",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",