sowhat-types 2.0.231 → 2.0.233

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
@@ -779,6 +779,7 @@ interface ProCommercialOfferResponse {
779
779
 
780
780
  interface FullLeadResponse {
781
781
  userId: string;
782
+ updatedAt: Date;
782
783
  initialAmount: number | null;
783
784
  monthlyAmount: number | null;
784
785
  need: ProjectNeedEnum | null;
@@ -812,6 +813,8 @@ interface FullLeadResponse {
812
813
  lastFinancialSummaryUpdatedAt: Date;
813
814
  aiSummary: LeadAiSummaryResponse | null;
814
815
  offer: ProCommercialOfferResponse | null;
816
+ totalOffersReceived: number;
817
+ totalOffersAccepted: number;
815
818
  likedAt: Date | null;
816
819
  }
817
820
 
@@ -820,7 +823,10 @@ interface LeadResponse {
820
823
  initialAmount: number;
821
824
  need: ProjectNeedEnum;
822
825
  financialProduct: FinancialProductEnum | null;
823
- profession: ProfessionEnum | null;
826
+ financialProductsOwned: FinancialProductEnum[] | null;
827
+ postalCode: string | null;
828
+ totalOffersReceived: number;
829
+ professionStatus: ProfessionStatusEnum | null;
824
830
  birthYear: number | null;
825
831
  likedAt: Date | null;
826
832
  hasBeenOfferedAt: Date | null;
package/dist/index.d.ts CHANGED
@@ -779,6 +779,7 @@ interface ProCommercialOfferResponse {
779
779
 
780
780
  interface FullLeadResponse {
781
781
  userId: string;
782
+ updatedAt: Date;
782
783
  initialAmount: number | null;
783
784
  monthlyAmount: number | null;
784
785
  need: ProjectNeedEnum | null;
@@ -812,6 +813,8 @@ interface FullLeadResponse {
812
813
  lastFinancialSummaryUpdatedAt: Date;
813
814
  aiSummary: LeadAiSummaryResponse | null;
814
815
  offer: ProCommercialOfferResponse | null;
816
+ totalOffersReceived: number;
817
+ totalOffersAccepted: number;
815
818
  likedAt: Date | null;
816
819
  }
817
820
 
@@ -820,7 +823,10 @@ interface LeadResponse {
820
823
  initialAmount: number;
821
824
  need: ProjectNeedEnum;
822
825
  financialProduct: FinancialProductEnum | null;
823
- profession: ProfessionEnum | null;
826
+ financialProductsOwned: FinancialProductEnum[] | null;
827
+ postalCode: string | null;
828
+ totalOffersReceived: number;
829
+ professionStatus: ProfessionStatusEnum | null;
824
830
  birthYear: number | null;
825
831
  likedAt: Date | null;
826
832
  hasBeenOfferedAt: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.231",
3
+ "version": "2.0.233",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",