sowhat-types 2.0.219 → 2.0.220
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 +11 -10
- package/dist/index.d.ts +11 -10
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -643,6 +643,16 @@ interface UserAuthenticatedResponse {
|
|
|
643
643
|
hasPincode: boolean;
|
|
644
644
|
}
|
|
645
645
|
|
|
646
|
+
interface UserAiSummaryResponse {
|
|
647
|
+
id: string;
|
|
648
|
+
status: UserAiSummaryStatusEnum;
|
|
649
|
+
version: number;
|
|
650
|
+
rawResponse: string | null;
|
|
651
|
+
parsedAdvisorResponseStringified: string | null;
|
|
652
|
+
updatedAt: Date;
|
|
653
|
+
createdAt: Date;
|
|
654
|
+
}
|
|
655
|
+
|
|
646
656
|
interface FullLeadResponse {
|
|
647
657
|
userId: string;
|
|
648
658
|
initialAmount: number;
|
|
@@ -676,6 +686,7 @@ interface FullLeadResponse {
|
|
|
676
686
|
totalLoansBankAccounts: number | null;
|
|
677
687
|
totalLoansBankAccountsBalance: number | null;
|
|
678
688
|
lastFinancialSummaryUpdatedAt: Date;
|
|
689
|
+
aiSummary: UserAiSummaryResponse | null;
|
|
679
690
|
}
|
|
680
691
|
|
|
681
692
|
interface LeadResponse {
|
|
@@ -798,16 +809,6 @@ interface AnonymousUsersResponse {
|
|
|
798
809
|
pagination: PaginationResponse;
|
|
799
810
|
}
|
|
800
811
|
|
|
801
|
-
interface UserAiSummaryResponse {
|
|
802
|
-
id: string;
|
|
803
|
-
status: UserAiSummaryStatusEnum;
|
|
804
|
-
version: number;
|
|
805
|
-
rawResponse: string | null;
|
|
806
|
-
parsedAdvisorResponseStringified: string | null;
|
|
807
|
-
updatedAt: Date;
|
|
808
|
-
createdAt: Date;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
812
|
interface UserFinancialSummaryResponse {
|
|
812
813
|
currency: AvailableCurrencyEnum;
|
|
813
814
|
projectNeeds: ProjectNeedEnum[];
|
package/dist/index.d.ts
CHANGED
|
@@ -643,6 +643,16 @@ interface UserAuthenticatedResponse {
|
|
|
643
643
|
hasPincode: boolean;
|
|
644
644
|
}
|
|
645
645
|
|
|
646
|
+
interface UserAiSummaryResponse {
|
|
647
|
+
id: string;
|
|
648
|
+
status: UserAiSummaryStatusEnum;
|
|
649
|
+
version: number;
|
|
650
|
+
rawResponse: string | null;
|
|
651
|
+
parsedAdvisorResponseStringified: string | null;
|
|
652
|
+
updatedAt: Date;
|
|
653
|
+
createdAt: Date;
|
|
654
|
+
}
|
|
655
|
+
|
|
646
656
|
interface FullLeadResponse {
|
|
647
657
|
userId: string;
|
|
648
658
|
initialAmount: number;
|
|
@@ -676,6 +686,7 @@ interface FullLeadResponse {
|
|
|
676
686
|
totalLoansBankAccounts: number | null;
|
|
677
687
|
totalLoansBankAccountsBalance: number | null;
|
|
678
688
|
lastFinancialSummaryUpdatedAt: Date;
|
|
689
|
+
aiSummary: UserAiSummaryResponse | null;
|
|
679
690
|
}
|
|
680
691
|
|
|
681
692
|
interface LeadResponse {
|
|
@@ -798,16 +809,6 @@ interface AnonymousUsersResponse {
|
|
|
798
809
|
pagination: PaginationResponse;
|
|
799
810
|
}
|
|
800
811
|
|
|
801
|
-
interface UserAiSummaryResponse {
|
|
802
|
-
id: string;
|
|
803
|
-
status: UserAiSummaryStatusEnum;
|
|
804
|
-
version: number;
|
|
805
|
-
rawResponse: string | null;
|
|
806
|
-
parsedAdvisorResponseStringified: string | null;
|
|
807
|
-
updatedAt: Date;
|
|
808
|
-
createdAt: Date;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
812
|
interface UserFinancialSummaryResponse {
|
|
812
813
|
currency: AvailableCurrencyEnum;
|
|
813
814
|
projectNeeds: ProjectNeedEnum[];
|