sowhat-types 2.0.183 → 2.0.185

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
@@ -441,7 +441,7 @@ interface CreateProjectInput {
441
441
  initialAmount: number;
442
442
  monthlyAmount: number;
443
443
  need: ProjectNeedEnum;
444
- financialProduct: FinancialProductEnum;
444
+ financialProduct: FinancialProductEnum | null;
445
445
  note: string | null;
446
446
  }
447
447
 
@@ -451,7 +451,7 @@ interface UpdateProjectInput {
451
451
  initialAmount?: number;
452
452
  monthlyAmount?: number;
453
453
  need?: ProjectNeedEnum;
454
- financialProduct?: FinancialProductEnum;
454
+ financialProduct?: FinancialProductEnum | null;
455
455
  note?: string | null;
456
456
  }
457
457
 
@@ -516,7 +516,7 @@ interface UpdateUserPersonalSummaryInput {
516
516
  professionDetails?: string | null;
517
517
  postalCode?: string | null;
518
518
  loanMonthlyPayment?: number | null;
519
- financialProductsOwn?: FinancialProductOwnedEnum[] | null;
519
+ financialProductsOwned?: FinancialProductOwnedEnum[] | null;
520
520
  }
521
521
 
522
522
  interface UpdateUserInput {
@@ -973,7 +973,7 @@ interface ProjectResponse {
973
973
  initialAmount: number;
974
974
  monthlyAmount: number;
975
975
  need: ProjectNeedEnum;
976
- financialProduct: FinancialProductEnum;
976
+ financialProduct: FinancialProductEnum | null;
977
977
  note: string | null;
978
978
  updatedAt: Date;
979
979
  createdAt: Date;
@@ -1033,6 +1033,7 @@ interface UserConsentsResponse {
1033
1033
 
1034
1034
  interface UserFinancialSummaryResponse {
1035
1035
  currency: string;
1036
+ projectNeeds: ProjectNeedEnum[];
1036
1037
  totalRealEstatesValue: number | null;
1037
1038
  totalMobilitiesValue: number | null;
1038
1039
  totalOtherAssetsValue: number | null;
@@ -1058,7 +1059,7 @@ interface UserPersonalSummaryResponse {
1058
1059
  salaryRange: string | null;
1059
1060
  postalCode: string | null;
1060
1061
  loanMonthlyPayment: number | null;
1061
- financialProductsOwn: FinancialProductOwnedEnum[] | null;
1062
+ financialProductsOwned: FinancialProductOwnedEnum[] | null;
1062
1063
  }
1063
1064
 
1064
1065
  interface UserProfileResponse {
package/dist/index.d.ts CHANGED
@@ -441,7 +441,7 @@ interface CreateProjectInput {
441
441
  initialAmount: number;
442
442
  monthlyAmount: number;
443
443
  need: ProjectNeedEnum;
444
- financialProduct: FinancialProductEnum;
444
+ financialProduct: FinancialProductEnum | null;
445
445
  note: string | null;
446
446
  }
447
447
 
@@ -451,7 +451,7 @@ interface UpdateProjectInput {
451
451
  initialAmount?: number;
452
452
  monthlyAmount?: number;
453
453
  need?: ProjectNeedEnum;
454
- financialProduct?: FinancialProductEnum;
454
+ financialProduct?: FinancialProductEnum | null;
455
455
  note?: string | null;
456
456
  }
457
457
 
@@ -516,7 +516,7 @@ interface UpdateUserPersonalSummaryInput {
516
516
  professionDetails?: string | null;
517
517
  postalCode?: string | null;
518
518
  loanMonthlyPayment?: number | null;
519
- financialProductsOwn?: FinancialProductOwnedEnum[] | null;
519
+ financialProductsOwned?: FinancialProductOwnedEnum[] | null;
520
520
  }
521
521
 
522
522
  interface UpdateUserInput {
@@ -973,7 +973,7 @@ interface ProjectResponse {
973
973
  initialAmount: number;
974
974
  monthlyAmount: number;
975
975
  need: ProjectNeedEnum;
976
- financialProduct: FinancialProductEnum;
976
+ financialProduct: FinancialProductEnum | null;
977
977
  note: string | null;
978
978
  updatedAt: Date;
979
979
  createdAt: Date;
@@ -1033,6 +1033,7 @@ interface UserConsentsResponse {
1033
1033
 
1034
1034
  interface UserFinancialSummaryResponse {
1035
1035
  currency: string;
1036
+ projectNeeds: ProjectNeedEnum[];
1036
1037
  totalRealEstatesValue: number | null;
1037
1038
  totalMobilitiesValue: number | null;
1038
1039
  totalOtherAssetsValue: number | null;
@@ -1058,7 +1059,7 @@ interface UserPersonalSummaryResponse {
1058
1059
  salaryRange: string | null;
1059
1060
  postalCode: string | null;
1060
1061
  loanMonthlyPayment: number | null;
1061
- financialProductsOwn: FinancialProductOwnedEnum[] | null;
1062
+ financialProductsOwned: FinancialProductOwnedEnum[] | null;
1062
1063
  }
1063
1064
 
1064
1065
  interface UserProfileResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.183",
3
+ "version": "2.0.185",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",