sowhat-types 2.0.196 → 2.0.197

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
@@ -496,6 +496,9 @@ interface UpdateUserPersonalSummaryInput {
496
496
  postalCode?: string | null;
497
497
  loanMonthlyPayment?: number | null;
498
498
  financialProductsOwned?: FinancialProductEnum[] | null;
499
+ isMainResidenceOwner?: boolean | null;
500
+ personalNetWorthRange?: string | null;
501
+ grossAnnualHouseholdIncomeRange?: string | null;
499
502
  }
500
503
 
501
504
  interface UpdateUserInput {
@@ -1021,6 +1024,9 @@ interface UserPersonalSummaryResponse {
1021
1024
  postalCode: string | null;
1022
1025
  loanMonthlyPayment: number | null;
1023
1026
  financialProductsOwned: FinancialProductEnum[] | null;
1027
+ isMainResidenceOwner: boolean | null;
1028
+ personalNetWorthRange: string | null;
1029
+ grossAnnualHouseholdIncomeRange: string | null;
1024
1030
  }
1025
1031
 
1026
1032
  interface UserProfileResponse {
package/dist/index.d.ts CHANGED
@@ -496,6 +496,9 @@ interface UpdateUserPersonalSummaryInput {
496
496
  postalCode?: string | null;
497
497
  loanMonthlyPayment?: number | null;
498
498
  financialProductsOwned?: FinancialProductEnum[] | null;
499
+ isMainResidenceOwner?: boolean | null;
500
+ personalNetWorthRange?: string | null;
501
+ grossAnnualHouseholdIncomeRange?: string | null;
499
502
  }
500
503
 
501
504
  interface UpdateUserInput {
@@ -1021,6 +1024,9 @@ interface UserPersonalSummaryResponse {
1021
1024
  postalCode: string | null;
1022
1025
  loanMonthlyPayment: number | null;
1023
1026
  financialProductsOwned: FinancialProductEnum[] | null;
1027
+ isMainResidenceOwner: boolean | null;
1028
+ personalNetWorthRange: string | null;
1029
+ grossAnnualHouseholdIncomeRange: string | null;
1024
1030
  }
1025
1031
 
1026
1032
  interface UserProfileResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.196",
3
+ "version": "2.0.197",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",